]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-arm.c
Allow extension availability to depend on several architecture bits
[thirdparty/binutils-gdb.git] / gas / config / tc-arm.c
CommitLineData
b99bd4ef 1/* tc-arm.c -- Assemble for the ARM
6f2750fe 2 Copyright (C) 1994-2016 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;
150static const arm_feature_set *mcpu_fpu_opt = NULL;
151static const arm_feature_set *march_cpu_opt = NULL;
152static const arm_feature_set *march_fpu_opt = NULL;
153static const arm_feature_set *mfpu_opt = NULL;
7a1d4c38 154static const arm_feature_set *object_arch = NULL;
e74cfd16
PB
155
156/* Constants for known architecture features. */
157static const arm_feature_set fpu_default = FPU_DEFAULT;
f85d59c3 158static const arm_feature_set fpu_arch_vfp_v1 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V1;
e74cfd16 159static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
f85d59c3
KT
160static const arm_feature_set fpu_arch_vfp_v3 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V3;
161static const arm_feature_set fpu_arch_neon_v1 ATTRIBUTE_UNUSED = FPU_ARCH_NEON_V1;
e74cfd16
PB
162static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
163static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
164static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
165static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
166
167#ifdef CPU_DEFAULT
168static const arm_feature_set cpu_default = CPU_DEFAULT;
169#endif
170
823d2571
TG
171static const arm_feature_set arm_ext_v1 = ARM_FEATURE_CORE_LOW (ARM_EXT_V1);
172static const arm_feature_set arm_ext_v2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V1);
173static const arm_feature_set arm_ext_v2s = ARM_FEATURE_CORE_LOW (ARM_EXT_V2S);
174static const arm_feature_set arm_ext_v3 = ARM_FEATURE_CORE_LOW (ARM_EXT_V3);
175static const arm_feature_set arm_ext_v3m = ARM_FEATURE_CORE_LOW (ARM_EXT_V3M);
176static const arm_feature_set arm_ext_v4 = ARM_FEATURE_CORE_LOW (ARM_EXT_V4);
177static const arm_feature_set arm_ext_v4t = ARM_FEATURE_CORE_LOW (ARM_EXT_V4T);
178static const arm_feature_set arm_ext_v5 = ARM_FEATURE_CORE_LOW (ARM_EXT_V5);
e74cfd16 179static const arm_feature_set arm_ext_v4t_5 =
823d2571
TG
180 ARM_FEATURE_CORE_LOW (ARM_EXT_V4T | ARM_EXT_V5);
181static const arm_feature_set arm_ext_v5t = ARM_FEATURE_CORE_LOW (ARM_EXT_V5T);
182static const arm_feature_set arm_ext_v5e = ARM_FEATURE_CORE_LOW (ARM_EXT_V5E);
183static const arm_feature_set arm_ext_v5exp = ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP);
184static const arm_feature_set arm_ext_v5j = ARM_FEATURE_CORE_LOW (ARM_EXT_V5J);
185static const arm_feature_set arm_ext_v6 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6);
186static const arm_feature_set arm_ext_v6k = ARM_FEATURE_CORE_LOW (ARM_EXT_V6K);
187static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6T2);
188static const arm_feature_set arm_ext_v6m = ARM_FEATURE_CORE_LOW (ARM_EXT_V6M);
189static const arm_feature_set arm_ext_v6_notm =
190 ARM_FEATURE_CORE_LOW (ARM_EXT_V6_NOTM);
191static const arm_feature_set arm_ext_v6_dsp =
192 ARM_FEATURE_CORE_LOW (ARM_EXT_V6_DSP);
193static const arm_feature_set arm_ext_barrier =
194 ARM_FEATURE_CORE_LOW (ARM_EXT_BARRIER);
195static const arm_feature_set arm_ext_msr =
196 ARM_FEATURE_CORE_LOW (ARM_EXT_THUMB_MSR);
197static const arm_feature_set arm_ext_div = ARM_FEATURE_CORE_LOW (ARM_EXT_DIV);
198static const arm_feature_set arm_ext_v7 = ARM_FEATURE_CORE_LOW (ARM_EXT_V7);
199static const arm_feature_set arm_ext_v7a = ARM_FEATURE_CORE_LOW (ARM_EXT_V7A);
200static const arm_feature_set arm_ext_v7r = ARM_FEATURE_CORE_LOW (ARM_EXT_V7R);
201static const arm_feature_set arm_ext_v7m = ARM_FEATURE_CORE_LOW (ARM_EXT_V7M);
202static const arm_feature_set arm_ext_v8 = ARM_FEATURE_CORE_LOW (ARM_EXT_V8);
7e806470 203static const arm_feature_set arm_ext_m =
16a1fa25
TP
204 ARM_FEATURE_CORE (ARM_EXT_V6M | ARM_EXT_OS | ARM_EXT_V7M,
205 ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
823d2571
TG
206static const arm_feature_set arm_ext_mp = ARM_FEATURE_CORE_LOW (ARM_EXT_MP);
207static const arm_feature_set arm_ext_sec = ARM_FEATURE_CORE_LOW (ARM_EXT_SEC);
208static const arm_feature_set arm_ext_os = ARM_FEATURE_CORE_LOW (ARM_EXT_OS);
209static const arm_feature_set arm_ext_adiv = ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV);
210static const arm_feature_set arm_ext_virt = ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT);
ddfded2f 211static const arm_feature_set arm_ext_pan = ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN);
4ed7ed8d 212static const arm_feature_set arm_ext_v8m = ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M);
16a1fa25
TP
213static const arm_feature_set arm_ext_v8m_main =
214 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M_MAIN);
215/* Instructions in ARMv8-M only found in M profile architectures. */
216static const arm_feature_set arm_ext_v8m_m_only =
217 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
ff8646ee
TP
218static const arm_feature_set arm_ext_v6t2_v8m =
219 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V6T2_V8M);
4ed7ed8d
TP
220/* Instructions shared between ARMv8-A and ARMv8-M. */
221static const arm_feature_set arm_ext_atomics =
222 ARM_FEATURE_CORE_HIGH (ARM_EXT2_ATOMICS);
105bde57
MW
223static const arm_feature_set arm_ext_v8_2 =
224 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_2A);
b8ec4e87
JW
225/* FP16 instructions. */
226static const arm_feature_set arm_ext_fp16 =
227 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST);
e74cfd16
PB
228
229static const arm_feature_set arm_arch_any = ARM_ANY;
f85d59c3 230static const arm_feature_set arm_arch_full ATTRIBUTE_UNUSED = ARM_FEATURE (-1, -1, -1);
e74cfd16
PB
231static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
232static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
251665fc 233static const arm_feature_set arm_arch_v6m_only = ARM_ARCH_V6M_ONLY;
e74cfd16 234
2d447fca 235static const arm_feature_set arm_cext_iwmmxt2 =
823d2571 236 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2);
e74cfd16 237static const arm_feature_set arm_cext_iwmmxt =
823d2571 238 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT);
e74cfd16 239static const arm_feature_set arm_cext_xscale =
823d2571 240 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE);
e74cfd16 241static const arm_feature_set arm_cext_maverick =
823d2571
TG
242 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK);
243static const arm_feature_set fpu_fpa_ext_v1 =
244 ARM_FEATURE_COPROC (FPU_FPA_EXT_V1);
245static const arm_feature_set fpu_fpa_ext_v2 =
246 ARM_FEATURE_COPROC (FPU_FPA_EXT_V2);
e74cfd16 247static const arm_feature_set fpu_vfp_ext_v1xd =
823d2571
TG
248 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1xD);
249static const arm_feature_set fpu_vfp_ext_v1 =
250 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1);
251static const arm_feature_set fpu_vfp_ext_v2 =
252 ARM_FEATURE_COPROC (FPU_VFP_EXT_V2);
253static const arm_feature_set fpu_vfp_ext_v3xd =
254 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3xD);
255static const arm_feature_set fpu_vfp_ext_v3 =
256 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3);
b1cc4aeb 257static const arm_feature_set fpu_vfp_ext_d32 =
823d2571
TG
258 ARM_FEATURE_COPROC (FPU_VFP_EXT_D32);
259static const arm_feature_set fpu_neon_ext_v1 =
260 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1);
5287ad62 261static const arm_feature_set fpu_vfp_v3_or_neon_ext =
823d2571
TG
262 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
263static const arm_feature_set fpu_vfp_fp16 =
264 ARM_FEATURE_COPROC (FPU_VFP_EXT_FP16);
265static const arm_feature_set fpu_neon_ext_fma =
266 ARM_FEATURE_COPROC (FPU_NEON_EXT_FMA);
267static const arm_feature_set fpu_vfp_ext_fma =
268 ARM_FEATURE_COPROC (FPU_VFP_EXT_FMA);
bca38921 269static const arm_feature_set fpu_vfp_ext_armv8 =
823d2571 270 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8);
a715796b 271static const arm_feature_set fpu_vfp_ext_armv8xd =
823d2571 272 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8xD);
bca38921 273static const arm_feature_set fpu_neon_ext_armv8 =
823d2571 274 ARM_FEATURE_COPROC (FPU_NEON_EXT_ARMV8);
bca38921 275static const arm_feature_set fpu_crypto_ext_armv8 =
823d2571 276 ARM_FEATURE_COPROC (FPU_CRYPTO_EXT_ARMV8);
dd5181d5 277static const arm_feature_set crc_ext_armv8 =
823d2571 278 ARM_FEATURE_COPROC (CRC_EXT_ARMV8);
d6b4b13e 279static const arm_feature_set fpu_neon_ext_v8_1 =
643afb90 280 ARM_FEATURE_COPROC (FPU_NEON_EXT_RDMA);
e74cfd16 281
33a392fb 282static int mfloat_abi_opt = -1;
e74cfd16
PB
283/* Record user cpu selection for object attributes. */
284static arm_feature_set selected_cpu = ARM_ARCH_NONE;
ee065d83 285/* Must be long enough to hold any of the names in arm_cpus. */
ef8e6722 286static char selected_cpu_name[20];
8d67f500 287
aacf0b33
KT
288extern FLONUM_TYPE generic_floating_point_number;
289
8d67f500
NC
290/* Return if no cpu was selected on command-line. */
291static bfd_boolean
292no_cpu_selected (void)
293{
823d2571 294 return ARM_FEATURE_EQUAL (selected_cpu, arm_arch_none);
8d67f500
NC
295}
296
7cc69913 297#ifdef OBJ_ELF
deeaaff8
DJ
298# ifdef EABI_DEFAULT
299static int meabi_flags = EABI_DEFAULT;
300# else
d507cf36 301static int meabi_flags = EF_ARM_EABI_UNKNOWN;
deeaaff8 302# endif
e1da3f5b 303
ee3c0378
AS
304static int attributes_set_explicitly[NUM_KNOWN_OBJ_ATTRIBUTES];
305
e1da3f5b 306bfd_boolean
5f4273c7 307arm_is_eabi (void)
e1da3f5b
PB
308{
309 return (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4);
310}
7cc69913 311#endif
b99bd4ef 312
b99bd4ef 313#ifdef OBJ_ELF
c19d1205 314/* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
b99bd4ef
NC
315symbolS * GOT_symbol;
316#endif
317
b99bd4ef
NC
318/* 0: assemble for ARM,
319 1: assemble for Thumb,
320 2: assemble for Thumb even though target CPU does not support thumb
321 instructions. */
322static int thumb_mode = 0;
8dc2430f
NC
323/* A value distinct from the possible values for thumb_mode that we
324 can use to record whether thumb_mode has been copied into the
325 tc_frag_data field of a frag. */
326#define MODE_RECORDED (1 << 4)
b99bd4ef 327
e07e6e58
NC
328/* Specifies the intrinsic IT insn behavior mode. */
329enum implicit_it_mode
330{
331 IMPLICIT_IT_MODE_NEVER = 0x00,
332 IMPLICIT_IT_MODE_ARM = 0x01,
333 IMPLICIT_IT_MODE_THUMB = 0x02,
334 IMPLICIT_IT_MODE_ALWAYS = (IMPLICIT_IT_MODE_ARM | IMPLICIT_IT_MODE_THUMB)
335};
336static int implicit_it_mode = IMPLICIT_IT_MODE_ARM;
337
c19d1205
ZW
338/* If unified_syntax is true, we are processing the new unified
339 ARM/Thumb syntax. Important differences from the old ARM mode:
340
341 - Immediate operands do not require a # prefix.
342 - Conditional affixes always appear at the end of the
343 instruction. (For backward compatibility, those instructions
344 that formerly had them in the middle, continue to accept them
345 there.)
346 - The IT instruction may appear, and if it does is validated
347 against subsequent conditional affixes. It does not generate
348 machine code.
349
350 Important differences from the old Thumb mode:
351
352 - Immediate operands do not require a # prefix.
353 - Most of the V6T2 instructions are only available in unified mode.
354 - The .N and .W suffixes are recognized and honored (it is an error
355 if they cannot be honored).
356 - All instructions set the flags if and only if they have an 's' affix.
357 - Conditional affixes may be used. They are validated against
358 preceding IT instructions. Unlike ARM mode, you cannot use a
359 conditional affix except in the scope of an IT instruction. */
360
361static bfd_boolean unified_syntax = FALSE;
b99bd4ef 362
bacebabc
RM
363/* An immediate operand can start with #, and ld*, st*, pld operands
364 can contain [ and ]. We need to tell APP not to elide whitespace
477330fc
RM
365 before a [, which can appear as the first operand for pld.
366 Likewise, a { can appear as the first operand for push, pop, vld*, etc. */
367const char arm_symbol_chars[] = "#[]{}";
bacebabc 368
5287ad62
JB
369enum neon_el_type
370{
dcbf9037 371 NT_invtype,
5287ad62
JB
372 NT_untyped,
373 NT_integer,
374 NT_float,
375 NT_poly,
376 NT_signed,
dcbf9037 377 NT_unsigned
5287ad62
JB
378};
379
380struct neon_type_el
381{
382 enum neon_el_type type;
383 unsigned size;
384};
385
386#define NEON_MAX_TYPE_ELS 4
387
388struct neon_type
389{
390 struct neon_type_el el[NEON_MAX_TYPE_ELS];
391 unsigned elems;
392};
393
e07e6e58
NC
394enum it_instruction_type
395{
396 OUTSIDE_IT_INSN,
397 INSIDE_IT_INSN,
398 INSIDE_IT_LAST_INSN,
399 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
477330fc 400 if inside, should be the last one. */
e07e6e58 401 NEUTRAL_IT_INSN, /* This could be either inside or outside,
477330fc 402 i.e. BKPT and NOP. */
e07e6e58
NC
403 IT_INSN /* The IT insn has been parsed. */
404};
405
ad6cec43
MGD
406/* The maximum number of operands we need. */
407#define ARM_IT_MAX_OPERANDS 6
408
b99bd4ef
NC
409struct arm_it
410{
c19d1205 411 const char * error;
b99bd4ef 412 unsigned long instruction;
c19d1205
ZW
413 int size;
414 int size_req;
415 int cond;
037e8744
JB
416 /* "uncond_value" is set to the value in place of the conditional field in
417 unconditional versions of the instruction, or -1 if nothing is
418 appropriate. */
419 int uncond_value;
5287ad62 420 struct neon_type vectype;
88714cb8
DG
421 /* This does not indicate an actual NEON instruction, only that
422 the mnemonic accepts neon-style type suffixes. */
423 int is_neon;
0110f2b8
PB
424 /* Set to the opcode if the instruction needs relaxation.
425 Zero if the instruction is not relaxed. */
426 unsigned long relax;
b99bd4ef
NC
427 struct
428 {
429 bfd_reloc_code_real_type type;
c19d1205
ZW
430 expressionS exp;
431 int pc_rel;
b99bd4ef 432 } reloc;
b99bd4ef 433
e07e6e58
NC
434 enum it_instruction_type it_insn_type;
435
c19d1205
ZW
436 struct
437 {
438 unsigned reg;
ca3f61f7 439 signed int imm;
dcbf9037 440 struct neon_type_el vectype;
ca3f61f7
NC
441 unsigned present : 1; /* Operand present. */
442 unsigned isreg : 1; /* Operand was a register. */
443 unsigned immisreg : 1; /* .imm field is a second register. */
5287ad62
JB
444 unsigned isscalar : 1; /* Operand is a (Neon) scalar. */
445 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
c96612cc 446 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
5287ad62
JB
447 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
448 instructions. This allows us to disambiguate ARM <-> vector insns. */
449 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
037e8744 450 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
5287ad62 451 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
037e8744 452 unsigned issingle : 1; /* Operand is VFP single-precision register. */
ca3f61f7
NC
453 unsigned hasreloc : 1; /* Operand has relocation suffix. */
454 unsigned writeback : 1; /* Operand has trailing ! */
455 unsigned preind : 1; /* Preindexed address. */
456 unsigned postind : 1; /* Postindexed address. */
457 unsigned negative : 1; /* Index register was negated. */
458 unsigned shifted : 1; /* Shift applied to operation. */
459 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
ad6cec43 460 } operands[ARM_IT_MAX_OPERANDS];
b99bd4ef
NC
461};
462
c19d1205 463static struct arm_it inst;
b99bd4ef
NC
464
465#define NUM_FLOAT_VALS 8
466
05d2d07e 467const char * fp_const[] =
b99bd4ef
NC
468{
469 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
470};
471
c19d1205 472/* Number of littlenums required to hold an extended precision number. */
b99bd4ef
NC
473#define MAX_LITTLENUMS 6
474
475LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
476
477#define FAIL (-1)
478#define SUCCESS (0)
479
480#define SUFF_S 1
481#define SUFF_D 2
482#define SUFF_E 3
483#define SUFF_P 4
484
c19d1205
ZW
485#define CP_T_X 0x00008000
486#define CP_T_Y 0x00400000
b99bd4ef 487
c19d1205
ZW
488#define CONDS_BIT 0x00100000
489#define LOAD_BIT 0x00100000
b99bd4ef
NC
490
491#define DOUBLE_LOAD_FLAG 0x00000001
492
493struct asm_cond
494{
d3ce72d0 495 const char * template_name;
c921be7d 496 unsigned long value;
b99bd4ef
NC
497};
498
c19d1205 499#define COND_ALWAYS 0xE
b99bd4ef 500
b99bd4ef
NC
501struct asm_psr
502{
d3ce72d0 503 const char * template_name;
c921be7d 504 unsigned long field;
b99bd4ef
NC
505};
506
62b3e311
PB
507struct asm_barrier_opt
508{
e797f7e0
MGD
509 const char * template_name;
510 unsigned long value;
511 const arm_feature_set arch;
62b3e311
PB
512};
513
2d2255b5 514/* The bit that distinguishes CPSR and SPSR. */
b99bd4ef
NC
515#define SPSR_BIT (1 << 22)
516
c19d1205
ZW
517/* The individual PSR flag bits. */
518#define PSR_c (1 << 16)
519#define PSR_x (1 << 17)
520#define PSR_s (1 << 18)
521#define PSR_f (1 << 19)
b99bd4ef 522
c19d1205 523struct reloc_entry
bfae80f2 524{
e0471c16 525 const char * name;
c921be7d 526 bfd_reloc_code_real_type reloc;
bfae80f2
RE
527};
528
5287ad62 529enum vfp_reg_pos
bfae80f2 530{
5287ad62
JB
531 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
532 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
bfae80f2
RE
533};
534
535enum vfp_ldstm_type
536{
537 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
538};
539
dcbf9037
JB
540/* Bits for DEFINED field in neon_typed_alias. */
541#define NTA_HASTYPE 1
542#define NTA_HASINDEX 2
543
544struct neon_typed_alias
545{
c921be7d
NC
546 unsigned char defined;
547 unsigned char index;
548 struct neon_type_el eltype;
dcbf9037
JB
549};
550
c19d1205
ZW
551/* ARM register categories. This includes coprocessor numbers and various
552 architecture extensions' registers. */
553enum arm_reg_type
bfae80f2 554{
c19d1205
ZW
555 REG_TYPE_RN,
556 REG_TYPE_CP,
557 REG_TYPE_CN,
558 REG_TYPE_FN,
559 REG_TYPE_VFS,
560 REG_TYPE_VFD,
5287ad62 561 REG_TYPE_NQ,
037e8744 562 REG_TYPE_VFSD,
5287ad62 563 REG_TYPE_NDQ,
037e8744 564 REG_TYPE_NSDQ,
c19d1205
ZW
565 REG_TYPE_VFC,
566 REG_TYPE_MVF,
567 REG_TYPE_MVD,
568 REG_TYPE_MVFX,
569 REG_TYPE_MVDX,
570 REG_TYPE_MVAX,
571 REG_TYPE_DSPSC,
572 REG_TYPE_MMXWR,
573 REG_TYPE_MMXWC,
574 REG_TYPE_MMXWCG,
575 REG_TYPE_XSCALE,
90ec0d68 576 REG_TYPE_RNB
bfae80f2
RE
577};
578
dcbf9037
JB
579/* Structure for a hash table entry for a register.
580 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
581 information which states whether a vector type or index is specified (for a
582 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
6c43fab6
RE
583struct reg_entry
584{
c921be7d 585 const char * name;
90ec0d68 586 unsigned int number;
c921be7d
NC
587 unsigned char type;
588 unsigned char builtin;
589 struct neon_typed_alias * neon;
6c43fab6
RE
590};
591
c19d1205 592/* Diagnostics used when we don't get a register of the expected type. */
c921be7d 593const char * const reg_expected_msgs[] =
c19d1205
ZW
594{
595 N_("ARM register expected"),
596 N_("bad or missing co-processor number"),
597 N_("co-processor register expected"),
598 N_("FPA register expected"),
599 N_("VFP single precision register expected"),
5287ad62
JB
600 N_("VFP/Neon double precision register expected"),
601 N_("Neon quad precision register expected"),
037e8744 602 N_("VFP single or double precision register expected"),
5287ad62 603 N_("Neon double or quad precision register expected"),
037e8744 604 N_("VFP single, double or Neon quad precision register expected"),
c19d1205
ZW
605 N_("VFP system register expected"),
606 N_("Maverick MVF register expected"),
607 N_("Maverick MVD register expected"),
608 N_("Maverick MVFX register expected"),
609 N_("Maverick MVDX register expected"),
610 N_("Maverick MVAX register expected"),
611 N_("Maverick DSPSC register expected"),
612 N_("iWMMXt data register expected"),
613 N_("iWMMXt control register expected"),
614 N_("iWMMXt scalar register expected"),
615 N_("XScale accumulator register expected"),
6c43fab6
RE
616};
617
c19d1205 618/* Some well known registers that we refer to directly elsewhere. */
bd340a04 619#define REG_R12 12
c19d1205
ZW
620#define REG_SP 13
621#define REG_LR 14
622#define REG_PC 15
404ff6b5 623
b99bd4ef
NC
624/* ARM instructions take 4bytes in the object file, Thumb instructions
625 take 2: */
c19d1205 626#define INSN_SIZE 4
b99bd4ef
NC
627
628struct asm_opcode
629{
630 /* Basic string to match. */
d3ce72d0 631 const char * template_name;
c19d1205
ZW
632
633 /* Parameters to instruction. */
5be8be5d 634 unsigned int operands[8];
c19d1205
ZW
635
636 /* Conditional tag - see opcode_lookup. */
637 unsigned int tag : 4;
b99bd4ef
NC
638
639 /* Basic instruction code. */
c19d1205 640 unsigned int avalue : 28;
b99bd4ef 641
c19d1205
ZW
642 /* Thumb-format instruction code. */
643 unsigned int tvalue;
b99bd4ef 644
90e4755a 645 /* Which architecture variant provides this instruction. */
c921be7d
NC
646 const arm_feature_set * avariant;
647 const arm_feature_set * tvariant;
c19d1205
ZW
648
649 /* Function to call to encode instruction in ARM format. */
650 void (* aencode) (void);
b99bd4ef 651
c19d1205
ZW
652 /* Function to call to encode instruction in Thumb format. */
653 void (* tencode) (void);
b99bd4ef
NC
654};
655
a737bd4d
NC
656/* Defines for various bits that we will want to toggle. */
657#define INST_IMMEDIATE 0x02000000
658#define OFFSET_REG 0x02000000
c19d1205 659#define HWOFFSET_IMM 0x00400000
a737bd4d
NC
660#define SHIFT_BY_REG 0x00000010
661#define PRE_INDEX 0x01000000
662#define INDEX_UP 0x00800000
663#define WRITE_BACK 0x00200000
664#define LDM_TYPE_2_OR_3 0x00400000
a028a6f5 665#define CPSI_MMOD 0x00020000
90e4755a 666
a737bd4d
NC
667#define LITERAL_MASK 0xf000f000
668#define OPCODE_MASK 0xfe1fffff
669#define V4_STR_BIT 0x00000020
8335d6aa 670#define VLDR_VMOV_SAME 0x0040f000
90e4755a 671
efd81785
PB
672#define T2_SUBS_PC_LR 0xf3de8f00
673
a737bd4d 674#define DATA_OP_SHIFT 21
90e4755a 675
ef8d22e6
PB
676#define T2_OPCODE_MASK 0xfe1fffff
677#define T2_DATA_OP_SHIFT 21
678
6530b175
NC
679#define A_COND_MASK 0xf0000000
680#define A_PUSH_POP_OP_MASK 0x0fff0000
681
682/* Opcodes for pushing/poping registers to/from the stack. */
683#define A1_OPCODE_PUSH 0x092d0000
684#define A2_OPCODE_PUSH 0x052d0004
685#define A2_OPCODE_POP 0x049d0004
686
a737bd4d
NC
687/* Codes to distinguish the arithmetic instructions. */
688#define OPCODE_AND 0
689#define OPCODE_EOR 1
690#define OPCODE_SUB 2
691#define OPCODE_RSB 3
692#define OPCODE_ADD 4
693#define OPCODE_ADC 5
694#define OPCODE_SBC 6
695#define OPCODE_RSC 7
696#define OPCODE_TST 8
697#define OPCODE_TEQ 9
698#define OPCODE_CMP 10
699#define OPCODE_CMN 11
700#define OPCODE_ORR 12
701#define OPCODE_MOV 13
702#define OPCODE_BIC 14
703#define OPCODE_MVN 15
90e4755a 704
ef8d22e6
PB
705#define T2_OPCODE_AND 0
706#define T2_OPCODE_BIC 1
707#define T2_OPCODE_ORR 2
708#define T2_OPCODE_ORN 3
709#define T2_OPCODE_EOR 4
710#define T2_OPCODE_ADD 8
711#define T2_OPCODE_ADC 10
712#define T2_OPCODE_SBC 11
713#define T2_OPCODE_SUB 13
714#define T2_OPCODE_RSB 14
715
a737bd4d
NC
716#define T_OPCODE_MUL 0x4340
717#define T_OPCODE_TST 0x4200
718#define T_OPCODE_CMN 0x42c0
719#define T_OPCODE_NEG 0x4240
720#define T_OPCODE_MVN 0x43c0
90e4755a 721
a737bd4d
NC
722#define T_OPCODE_ADD_R3 0x1800
723#define T_OPCODE_SUB_R3 0x1a00
724#define T_OPCODE_ADD_HI 0x4400
725#define T_OPCODE_ADD_ST 0xb000
726#define T_OPCODE_SUB_ST 0xb080
727#define T_OPCODE_ADD_SP 0xa800
728#define T_OPCODE_ADD_PC 0xa000
729#define T_OPCODE_ADD_I8 0x3000
730#define T_OPCODE_SUB_I8 0x3800
731#define T_OPCODE_ADD_I3 0x1c00
732#define T_OPCODE_SUB_I3 0x1e00
b99bd4ef 733
a737bd4d
NC
734#define T_OPCODE_ASR_R 0x4100
735#define T_OPCODE_LSL_R 0x4080
c19d1205
ZW
736#define T_OPCODE_LSR_R 0x40c0
737#define T_OPCODE_ROR_R 0x41c0
a737bd4d
NC
738#define T_OPCODE_ASR_I 0x1000
739#define T_OPCODE_LSL_I 0x0000
740#define T_OPCODE_LSR_I 0x0800
b99bd4ef 741
a737bd4d
NC
742#define T_OPCODE_MOV_I8 0x2000
743#define T_OPCODE_CMP_I8 0x2800
744#define T_OPCODE_CMP_LR 0x4280
745#define T_OPCODE_MOV_HR 0x4600
746#define T_OPCODE_CMP_HR 0x4500
b99bd4ef 747
a737bd4d
NC
748#define T_OPCODE_LDR_PC 0x4800
749#define T_OPCODE_LDR_SP 0x9800
750#define T_OPCODE_STR_SP 0x9000
751#define T_OPCODE_LDR_IW 0x6800
752#define T_OPCODE_STR_IW 0x6000
753#define T_OPCODE_LDR_IH 0x8800
754#define T_OPCODE_STR_IH 0x8000
755#define T_OPCODE_LDR_IB 0x7800
756#define T_OPCODE_STR_IB 0x7000
757#define T_OPCODE_LDR_RW 0x5800
758#define T_OPCODE_STR_RW 0x5000
759#define T_OPCODE_LDR_RH 0x5a00
760#define T_OPCODE_STR_RH 0x5200
761#define T_OPCODE_LDR_RB 0x5c00
762#define T_OPCODE_STR_RB 0x5400
c9b604bd 763
a737bd4d
NC
764#define T_OPCODE_PUSH 0xb400
765#define T_OPCODE_POP 0xbc00
b99bd4ef 766
2fc8bdac 767#define T_OPCODE_BRANCH 0xe000
b99bd4ef 768
a737bd4d 769#define THUMB_SIZE 2 /* Size of thumb instruction. */
a737bd4d 770#define THUMB_PP_PC_LR 0x0100
c19d1205 771#define THUMB_LOAD_BIT 0x0800
53365c0d 772#define THUMB2_LOAD_BIT 0x00100000
c19d1205
ZW
773
774#define BAD_ARGS _("bad arguments to instruction")
fdfde340 775#define BAD_SP _("r13 not allowed here")
c19d1205
ZW
776#define BAD_PC _("r15 not allowed here")
777#define BAD_COND _("instruction cannot be conditional")
778#define BAD_OVERLAP _("registers may not be the same")
779#define BAD_HIREG _("lo register required")
780#define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
01cfc07f 781#define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
dfa9f0d5
PB
782#define BAD_BRANCH _("branch must be last instruction in IT block")
783#define BAD_NOT_IT _("instruction not allowed in IT block")
037e8744 784#define BAD_FPU _("selected FPU does not support instruction")
e07e6e58
NC
785#define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
786#define BAD_IT_COND _("incorrect condition in IT block")
787#define BAD_IT_IT _("IT falling in the range of a previous IT block")
921e5f0a 788#define MISSING_FNSTART _("missing .fnstart before unwinding directive")
5be8be5d
DG
789#define BAD_PC_ADDRESSING \
790 _("cannot use register index with PC-relative addressing")
791#define BAD_PC_WRITEBACK \
792 _("cannot use writeback with PC-relative addressing")
9db2f6b4
RL
793#define BAD_RANGE _("branch out of range")
794#define BAD_FP16 _("selected processor does not support fp16 instruction")
dd5181d5 795#define UNPRED_REG(R) _("using " R " results in unpredictable behaviour")
a9f02af8 796#define THUMB1_RELOC_ONLY _("relocation valid in thumb1 code only")
c19d1205 797
c921be7d
NC
798static struct hash_control * arm_ops_hsh;
799static struct hash_control * arm_cond_hsh;
800static struct hash_control * arm_shift_hsh;
801static struct hash_control * arm_psr_hsh;
802static struct hash_control * arm_v7m_psr_hsh;
803static struct hash_control * arm_reg_hsh;
804static struct hash_control * arm_reloc_hsh;
805static struct hash_control * arm_barrier_opt_hsh;
b99bd4ef 806
b99bd4ef
NC
807/* Stuff needed to resolve the label ambiguity
808 As:
809 ...
810 label: <insn>
811 may differ from:
812 ...
813 label:
5f4273c7 814 <insn> */
b99bd4ef
NC
815
816symbolS * last_label_seen;
b34976b6 817static int label_is_thumb_function_name = FALSE;
e07e6e58 818
3d0c9500
NC
819/* Literal pool structure. Held on a per-section
820 and per-sub-section basis. */
a737bd4d 821
c19d1205 822#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 823typedef struct literal_pool
b99bd4ef 824{
c921be7d
NC
825 expressionS literals [MAX_LITERAL_POOL_SIZE];
826 unsigned int next_free_entry;
827 unsigned int id;
828 symbolS * symbol;
829 segT section;
830 subsegT sub_section;
a8040cf2
NC
831#ifdef OBJ_ELF
832 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
833#endif
c921be7d 834 struct literal_pool * next;
8335d6aa 835 unsigned int alignment;
3d0c9500 836} literal_pool;
b99bd4ef 837
3d0c9500
NC
838/* Pointer to a linked list of literal pools. */
839literal_pool * list_of_pools = NULL;
e27ec89e 840
2e6976a8
DG
841typedef enum asmfunc_states
842{
843 OUTSIDE_ASMFUNC,
844 WAITING_ASMFUNC_NAME,
845 WAITING_ENDASMFUNC
846} asmfunc_states;
847
848static asmfunc_states asmfunc_state = OUTSIDE_ASMFUNC;
849
e07e6e58
NC
850#ifdef OBJ_ELF
851# define now_it seg_info (now_seg)->tc_segment_info_data.current_it
852#else
853static struct current_it now_it;
854#endif
855
856static inline int
857now_it_compatible (int cond)
858{
859 return (cond & ~1) == (now_it.cc & ~1);
860}
861
862static inline int
863conditional_insn (void)
864{
865 return inst.cond != COND_ALWAYS;
866}
867
868static int in_it_block (void);
869
870static int handle_it_state (void);
871
872static void force_automatic_it_block_close (void);
873
c921be7d
NC
874static void it_fsm_post_encode (void);
875
e07e6e58
NC
876#define set_it_insn_type(type) \
877 do \
878 { \
879 inst.it_insn_type = type; \
880 if (handle_it_state () == FAIL) \
477330fc 881 return; \
e07e6e58
NC
882 } \
883 while (0)
884
c921be7d
NC
885#define set_it_insn_type_nonvoid(type, failret) \
886 do \
887 { \
888 inst.it_insn_type = type; \
889 if (handle_it_state () == FAIL) \
477330fc 890 return failret; \
c921be7d
NC
891 } \
892 while(0)
893
e07e6e58
NC
894#define set_it_insn_type_last() \
895 do \
896 { \
897 if (inst.cond == COND_ALWAYS) \
477330fc 898 set_it_insn_type (IF_INSIDE_IT_LAST_INSN); \
e07e6e58 899 else \
477330fc 900 set_it_insn_type (INSIDE_IT_LAST_INSN); \
e07e6e58
NC
901 } \
902 while (0)
903
c19d1205 904/* Pure syntax. */
b99bd4ef 905
c19d1205
ZW
906/* This array holds the chars that always start a comment. If the
907 pre-processor is disabled, these aren't very useful. */
2e6976a8 908char arm_comment_chars[] = "@";
3d0c9500 909
c19d1205
ZW
910/* This array holds the chars that only start a comment at the beginning of
911 a line. If the line seems to have the form '# 123 filename'
912 .line and .file directives will appear in the pre-processed output. */
913/* Note that input_file.c hand checks for '#' at the beginning of the
914 first line of the input file. This is because the compiler outputs
915 #NO_APP at the beginning of its output. */
916/* Also note that comments like this one will always work. */
917const char line_comment_chars[] = "#";
3d0c9500 918
2e6976a8 919char arm_line_separator_chars[] = ";";
b99bd4ef 920
c19d1205
ZW
921/* Chars that can be used to separate mant
922 from exp in floating point numbers. */
923const char EXP_CHARS[] = "eE";
3d0c9500 924
c19d1205
ZW
925/* Chars that mean this number is a floating point constant. */
926/* As in 0f12.456 */
927/* or 0d1.2345e12 */
b99bd4ef 928
c19d1205 929const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 930
c19d1205
ZW
931/* Prefix characters that indicate the start of an immediate
932 value. */
933#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 934
c19d1205
ZW
935/* Separator character handling. */
936
937#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
938
939static inline int
940skip_past_char (char ** str, char c)
941{
8ab8155f
NC
942 /* PR gas/14987: Allow for whitespace before the expected character. */
943 skip_whitespace (*str);
427d0db6 944
c19d1205
ZW
945 if (**str == c)
946 {
947 (*str)++;
948 return SUCCESS;
3d0c9500 949 }
c19d1205
ZW
950 else
951 return FAIL;
952}
c921be7d 953
c19d1205 954#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 955
c19d1205
ZW
956/* Arithmetic expressions (possibly involving symbols). */
957
958/* Return TRUE if anything in the expression is a bignum. */
959
960static int
961walk_no_bignums (symbolS * sp)
962{
963 if (symbol_get_value_expression (sp)->X_op == O_big)
964 return 1;
965
966 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 967 {
c19d1205
ZW
968 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
969 || (symbol_get_value_expression (sp)->X_op_symbol
970 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
971 }
972
c19d1205 973 return 0;
3d0c9500
NC
974}
975
c19d1205
ZW
976static int in_my_get_expression = 0;
977
978/* Third argument to my_get_expression. */
979#define GE_NO_PREFIX 0
980#define GE_IMM_PREFIX 1
981#define GE_OPT_PREFIX 2
5287ad62
JB
982/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
983 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
984#define GE_OPT_PREFIX_BIG 3
a737bd4d 985
b99bd4ef 986static int
c19d1205 987my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 988{
c19d1205
ZW
989 char * save_in;
990 segT seg;
b99bd4ef 991
c19d1205
ZW
992 /* In unified syntax, all prefixes are optional. */
993 if (unified_syntax)
5287ad62 994 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
477330fc 995 : GE_OPT_PREFIX;
b99bd4ef 996
c19d1205 997 switch (prefix_mode)
b99bd4ef 998 {
c19d1205
ZW
999 case GE_NO_PREFIX: break;
1000 case GE_IMM_PREFIX:
1001 if (!is_immediate_prefix (**str))
1002 {
1003 inst.error = _("immediate expression requires a # prefix");
1004 return FAIL;
1005 }
1006 (*str)++;
1007 break;
1008 case GE_OPT_PREFIX:
5287ad62 1009 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
1010 if (is_immediate_prefix (**str))
1011 (*str)++;
1012 break;
1013 default: abort ();
1014 }
b99bd4ef 1015
c19d1205 1016 memset (ep, 0, sizeof (expressionS));
b99bd4ef 1017
c19d1205
ZW
1018 save_in = input_line_pointer;
1019 input_line_pointer = *str;
1020 in_my_get_expression = 1;
1021 seg = expression (ep);
1022 in_my_get_expression = 0;
1023
f86adc07 1024 if (ep->X_op == O_illegal || ep->X_op == O_absent)
b99bd4ef 1025 {
f86adc07 1026 /* We found a bad or missing expression in md_operand(). */
c19d1205
ZW
1027 *str = input_line_pointer;
1028 input_line_pointer = save_in;
1029 if (inst.error == NULL)
f86adc07
NS
1030 inst.error = (ep->X_op == O_absent
1031 ? _("missing expression") :_("bad expression"));
c19d1205
ZW
1032 return 1;
1033 }
b99bd4ef 1034
c19d1205
ZW
1035#ifdef OBJ_AOUT
1036 if (seg != absolute_section
1037 && seg != text_section
1038 && seg != data_section
1039 && seg != bss_section
1040 && seg != undefined_section)
1041 {
1042 inst.error = _("bad segment");
1043 *str = input_line_pointer;
1044 input_line_pointer = save_in;
1045 return 1;
b99bd4ef 1046 }
87975d2a
AM
1047#else
1048 (void) seg;
c19d1205 1049#endif
b99bd4ef 1050
c19d1205
ZW
1051 /* Get rid of any bignums now, so that we don't generate an error for which
1052 we can't establish a line number later on. Big numbers are never valid
1053 in instructions, which is where this routine is always called. */
5287ad62
JB
1054 if (prefix_mode != GE_OPT_PREFIX_BIG
1055 && (ep->X_op == O_big
477330fc 1056 || (ep->X_add_symbol
5287ad62 1057 && (walk_no_bignums (ep->X_add_symbol)
477330fc 1058 || (ep->X_op_symbol
5287ad62 1059 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
1060 {
1061 inst.error = _("invalid constant");
1062 *str = input_line_pointer;
1063 input_line_pointer = save_in;
1064 return 1;
1065 }
b99bd4ef 1066
c19d1205
ZW
1067 *str = input_line_pointer;
1068 input_line_pointer = save_in;
1069 return 0;
b99bd4ef
NC
1070}
1071
c19d1205
ZW
1072/* Turn a string in input_line_pointer into a floating point constant
1073 of type TYPE, and store the appropriate bytes in *LITP. The number
1074 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1075 returned, or NULL on OK.
b99bd4ef 1076
c19d1205
ZW
1077 Note that fp constants aren't represent in the normal way on the ARM.
1078 In big endian mode, things are as expected. However, in little endian
1079 mode fp constants are big-endian word-wise, and little-endian byte-wise
1080 within the words. For example, (double) 1.1 in big endian mode is
1081 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1082 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 1083
c19d1205 1084 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 1085
6d4af3c2 1086const char *
c19d1205
ZW
1087md_atof (int type, char * litP, int * sizeP)
1088{
1089 int prec;
1090 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1091 char *t;
1092 int i;
b99bd4ef 1093
c19d1205
ZW
1094 switch (type)
1095 {
1096 case 'f':
1097 case 'F':
1098 case 's':
1099 case 'S':
1100 prec = 2;
1101 break;
b99bd4ef 1102
c19d1205
ZW
1103 case 'd':
1104 case 'D':
1105 case 'r':
1106 case 'R':
1107 prec = 4;
1108 break;
b99bd4ef 1109
c19d1205
ZW
1110 case 'x':
1111 case 'X':
499ac353 1112 prec = 5;
c19d1205 1113 break;
b99bd4ef 1114
c19d1205
ZW
1115 case 'p':
1116 case 'P':
499ac353 1117 prec = 5;
c19d1205 1118 break;
a737bd4d 1119
c19d1205
ZW
1120 default:
1121 *sizeP = 0;
499ac353 1122 return _("Unrecognized or unsupported floating point constant");
c19d1205 1123 }
b99bd4ef 1124
c19d1205
ZW
1125 t = atof_ieee (input_line_pointer, type, words);
1126 if (t)
1127 input_line_pointer = t;
499ac353 1128 *sizeP = prec * sizeof (LITTLENUM_TYPE);
b99bd4ef 1129
c19d1205
ZW
1130 if (target_big_endian)
1131 {
1132 for (i = 0; i < prec; i++)
1133 {
499ac353
NC
1134 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1135 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1136 }
1137 }
1138 else
1139 {
e74cfd16 1140 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
1141 for (i = prec - 1; i >= 0; i--)
1142 {
499ac353
NC
1143 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1144 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1145 }
1146 else
1147 /* For a 4 byte float the order of elements in `words' is 1 0.
1148 For an 8 byte float the order is 1 0 3 2. */
1149 for (i = 0; i < prec; i += 2)
1150 {
499ac353
NC
1151 md_number_to_chars (litP, (valueT) words[i + 1],
1152 sizeof (LITTLENUM_TYPE));
1153 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1154 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1155 litP += 2 * sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1156 }
1157 }
b99bd4ef 1158
499ac353 1159 return NULL;
c19d1205 1160}
b99bd4ef 1161
c19d1205
ZW
1162/* We handle all bad expressions here, so that we can report the faulty
1163 instruction in the error message. */
1164void
91d6fa6a 1165md_operand (expressionS * exp)
c19d1205
ZW
1166{
1167 if (in_my_get_expression)
91d6fa6a 1168 exp->X_op = O_illegal;
b99bd4ef
NC
1169}
1170
c19d1205 1171/* Immediate values. */
b99bd4ef 1172
c19d1205
ZW
1173/* Generic immediate-value read function for use in directives.
1174 Accepts anything that 'expression' can fold to a constant.
1175 *val receives the number. */
1176#ifdef OBJ_ELF
1177static int
1178immediate_for_directive (int *val)
b99bd4ef 1179{
c19d1205
ZW
1180 expressionS exp;
1181 exp.X_op = O_illegal;
b99bd4ef 1182
c19d1205
ZW
1183 if (is_immediate_prefix (*input_line_pointer))
1184 {
1185 input_line_pointer++;
1186 expression (&exp);
1187 }
b99bd4ef 1188
c19d1205
ZW
1189 if (exp.X_op != O_constant)
1190 {
1191 as_bad (_("expected #constant"));
1192 ignore_rest_of_line ();
1193 return FAIL;
1194 }
1195 *val = exp.X_add_number;
1196 return SUCCESS;
b99bd4ef 1197}
c19d1205 1198#endif
b99bd4ef 1199
c19d1205 1200/* Register parsing. */
b99bd4ef 1201
c19d1205
ZW
1202/* Generic register parser. CCP points to what should be the
1203 beginning of a register name. If it is indeed a valid register
1204 name, advance CCP over it and return the reg_entry structure;
1205 otherwise return NULL. Does not issue diagnostics. */
1206
1207static struct reg_entry *
1208arm_reg_parse_multi (char **ccp)
b99bd4ef 1209{
c19d1205
ZW
1210 char *start = *ccp;
1211 char *p;
1212 struct reg_entry *reg;
b99bd4ef 1213
477330fc
RM
1214 skip_whitespace (start);
1215
c19d1205
ZW
1216#ifdef REGISTER_PREFIX
1217 if (*start != REGISTER_PREFIX)
01cfc07f 1218 return NULL;
c19d1205
ZW
1219 start++;
1220#endif
1221#ifdef OPTIONAL_REGISTER_PREFIX
1222 if (*start == OPTIONAL_REGISTER_PREFIX)
1223 start++;
1224#endif
b99bd4ef 1225
c19d1205
ZW
1226 p = start;
1227 if (!ISALPHA (*p) || !is_name_beginner (*p))
1228 return NULL;
b99bd4ef 1229
c19d1205
ZW
1230 do
1231 p++;
1232 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1233
1234 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1235
1236 if (!reg)
1237 return NULL;
1238
1239 *ccp = p;
1240 return reg;
b99bd4ef
NC
1241}
1242
1243static int
dcbf9037 1244arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
477330fc 1245 enum arm_reg_type type)
b99bd4ef 1246{
c19d1205
ZW
1247 /* Alternative syntaxes are accepted for a few register classes. */
1248 switch (type)
1249 {
1250 case REG_TYPE_MVF:
1251 case REG_TYPE_MVD:
1252 case REG_TYPE_MVFX:
1253 case REG_TYPE_MVDX:
1254 /* Generic coprocessor register names are allowed for these. */
79134647 1255 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1256 return reg->number;
1257 break;
69b97547 1258
c19d1205
ZW
1259 case REG_TYPE_CP:
1260 /* For backward compatibility, a bare number is valid here. */
1261 {
1262 unsigned long processor = strtoul (start, ccp, 10);
1263 if (*ccp != start && processor <= 15)
1264 return processor;
1265 }
6057a28f 1266
c19d1205
ZW
1267 case REG_TYPE_MMXWC:
1268 /* WC includes WCG. ??? I'm not sure this is true for all
1269 instructions that take WC registers. */
79134647 1270 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1271 return reg->number;
6057a28f 1272 break;
c19d1205 1273
6057a28f 1274 default:
c19d1205 1275 break;
6057a28f
NC
1276 }
1277
dcbf9037
JB
1278 return FAIL;
1279}
1280
1281/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1282 return value is the register number or FAIL. */
1283
1284static int
1285arm_reg_parse (char **ccp, enum arm_reg_type type)
1286{
1287 char *start = *ccp;
1288 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1289 int ret;
1290
1291 /* Do not allow a scalar (reg+index) to parse as a register. */
1292 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1293 return FAIL;
1294
1295 if (reg && reg->type == type)
1296 return reg->number;
1297
1298 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1299 return ret;
1300
c19d1205
ZW
1301 *ccp = start;
1302 return FAIL;
1303}
69b97547 1304
dcbf9037
JB
1305/* Parse a Neon type specifier. *STR should point at the leading '.'
1306 character. Does no verification at this stage that the type fits the opcode
1307 properly. E.g.,
1308
1309 .i32.i32.s16
1310 .s32.f32
1311 .u16
1312
1313 Can all be legally parsed by this function.
1314
1315 Fills in neon_type struct pointer with parsed information, and updates STR
1316 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1317 type, FAIL if not. */
1318
1319static int
1320parse_neon_type (struct neon_type *type, char **str)
1321{
1322 char *ptr = *str;
1323
1324 if (type)
1325 type->elems = 0;
1326
1327 while (type->elems < NEON_MAX_TYPE_ELS)
1328 {
1329 enum neon_el_type thistype = NT_untyped;
1330 unsigned thissize = -1u;
1331
1332 if (*ptr != '.')
1333 break;
1334
1335 ptr++;
1336
1337 /* Just a size without an explicit type. */
1338 if (ISDIGIT (*ptr))
1339 goto parsesize;
1340
1341 switch (TOLOWER (*ptr))
1342 {
1343 case 'i': thistype = NT_integer; break;
1344 case 'f': thistype = NT_float; break;
1345 case 'p': thistype = NT_poly; break;
1346 case 's': thistype = NT_signed; break;
1347 case 'u': thistype = NT_unsigned; break;
477330fc
RM
1348 case 'd':
1349 thistype = NT_float;
1350 thissize = 64;
1351 ptr++;
1352 goto done;
dcbf9037
JB
1353 default:
1354 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1355 return FAIL;
1356 }
1357
1358 ptr++;
1359
1360 /* .f is an abbreviation for .f32. */
1361 if (thistype == NT_float && !ISDIGIT (*ptr))
1362 thissize = 32;
1363 else
1364 {
1365 parsesize:
1366 thissize = strtoul (ptr, &ptr, 10);
1367
1368 if (thissize != 8 && thissize != 16 && thissize != 32
477330fc
RM
1369 && thissize != 64)
1370 {
1371 as_bad (_("bad size %d in type specifier"), thissize);
dcbf9037
JB
1372 return FAIL;
1373 }
1374 }
1375
037e8744 1376 done:
dcbf9037 1377 if (type)
477330fc
RM
1378 {
1379 type->el[type->elems].type = thistype;
dcbf9037
JB
1380 type->el[type->elems].size = thissize;
1381 type->elems++;
1382 }
1383 }
1384
1385 /* Empty/missing type is not a successful parse. */
1386 if (type->elems == 0)
1387 return FAIL;
1388
1389 *str = ptr;
1390
1391 return SUCCESS;
1392}
1393
1394/* Errors may be set multiple times during parsing or bit encoding
1395 (particularly in the Neon bits), but usually the earliest error which is set
1396 will be the most meaningful. Avoid overwriting it with later (cascading)
1397 errors by calling this function. */
1398
1399static void
1400first_error (const char *err)
1401{
1402 if (!inst.error)
1403 inst.error = err;
1404}
1405
1406/* Parse a single type, e.g. ".s32", leading period included. */
1407static int
1408parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1409{
1410 char *str = *ccp;
1411 struct neon_type optype;
1412
1413 if (*str == '.')
1414 {
1415 if (parse_neon_type (&optype, &str) == SUCCESS)
477330fc
RM
1416 {
1417 if (optype.elems == 1)
1418 *vectype = optype.el[0];
1419 else
1420 {
1421 first_error (_("only one type should be specified for operand"));
1422 return FAIL;
1423 }
1424 }
dcbf9037 1425 else
477330fc
RM
1426 {
1427 first_error (_("vector type expected"));
1428 return FAIL;
1429 }
dcbf9037
JB
1430 }
1431 else
1432 return FAIL;
5f4273c7 1433
dcbf9037 1434 *ccp = str;
5f4273c7 1435
dcbf9037
JB
1436 return SUCCESS;
1437}
1438
1439/* Special meanings for indices (which have a range of 0-7), which will fit into
1440 a 4-bit integer. */
1441
1442#define NEON_ALL_LANES 15
1443#define NEON_INTERLEAVE_LANES 14
1444
1445/* Parse either a register or a scalar, with an optional type. Return the
1446 register number, and optionally fill in the actual type of the register
1447 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1448 type/index information in *TYPEINFO. */
1449
1450static int
1451parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
477330fc
RM
1452 enum arm_reg_type *rtype,
1453 struct neon_typed_alias *typeinfo)
dcbf9037
JB
1454{
1455 char *str = *ccp;
1456 struct reg_entry *reg = arm_reg_parse_multi (&str);
1457 struct neon_typed_alias atype;
1458 struct neon_type_el parsetype;
1459
1460 atype.defined = 0;
1461 atype.index = -1;
1462 atype.eltype.type = NT_invtype;
1463 atype.eltype.size = -1;
1464
1465 /* Try alternate syntax for some types of register. Note these are mutually
1466 exclusive with the Neon syntax extensions. */
1467 if (reg == NULL)
1468 {
1469 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1470 if (altreg != FAIL)
477330fc 1471 *ccp = str;
dcbf9037 1472 if (typeinfo)
477330fc 1473 *typeinfo = atype;
dcbf9037
JB
1474 return altreg;
1475 }
1476
037e8744
JB
1477 /* Undo polymorphism when a set of register types may be accepted. */
1478 if ((type == REG_TYPE_NDQ
1479 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1480 || (type == REG_TYPE_VFSD
477330fc 1481 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
037e8744 1482 || (type == REG_TYPE_NSDQ
477330fc
RM
1483 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
1484 || reg->type == REG_TYPE_NQ))
f512f76f
NC
1485 || (type == REG_TYPE_MMXWC
1486 && (reg->type == REG_TYPE_MMXWCG)))
21d799b5 1487 type = (enum arm_reg_type) reg->type;
dcbf9037
JB
1488
1489 if (type != reg->type)
1490 return FAIL;
1491
1492 if (reg->neon)
1493 atype = *reg->neon;
5f4273c7 1494
dcbf9037
JB
1495 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1496 {
1497 if ((atype.defined & NTA_HASTYPE) != 0)
477330fc
RM
1498 {
1499 first_error (_("can't redefine type for operand"));
1500 return FAIL;
1501 }
dcbf9037
JB
1502 atype.defined |= NTA_HASTYPE;
1503 atype.eltype = parsetype;
1504 }
5f4273c7 1505
dcbf9037
JB
1506 if (skip_past_char (&str, '[') == SUCCESS)
1507 {
1508 if (type != REG_TYPE_VFD)
477330fc
RM
1509 {
1510 first_error (_("only D registers may be indexed"));
1511 return FAIL;
1512 }
5f4273c7 1513
dcbf9037 1514 if ((atype.defined & NTA_HASINDEX) != 0)
477330fc
RM
1515 {
1516 first_error (_("can't change index for operand"));
1517 return FAIL;
1518 }
dcbf9037
JB
1519
1520 atype.defined |= NTA_HASINDEX;
1521
1522 if (skip_past_char (&str, ']') == SUCCESS)
477330fc 1523 atype.index = NEON_ALL_LANES;
dcbf9037 1524 else
477330fc
RM
1525 {
1526 expressionS exp;
dcbf9037 1527
477330fc 1528 my_get_expression (&exp, &str, GE_NO_PREFIX);
dcbf9037 1529
477330fc
RM
1530 if (exp.X_op != O_constant)
1531 {
1532 first_error (_("constant expression required"));
1533 return FAIL;
1534 }
dcbf9037 1535
477330fc
RM
1536 if (skip_past_char (&str, ']') == FAIL)
1537 return FAIL;
dcbf9037 1538
477330fc
RM
1539 atype.index = exp.X_add_number;
1540 }
dcbf9037 1541 }
5f4273c7 1542
dcbf9037
JB
1543 if (typeinfo)
1544 *typeinfo = atype;
5f4273c7 1545
dcbf9037
JB
1546 if (rtype)
1547 *rtype = type;
5f4273c7 1548
dcbf9037 1549 *ccp = str;
5f4273c7 1550
dcbf9037
JB
1551 return reg->number;
1552}
1553
1554/* Like arm_reg_parse, but allow allow the following extra features:
1555 - If RTYPE is non-zero, return the (possibly restricted) type of the
1556 register (e.g. Neon double or quad reg when either has been requested).
1557 - If this is a Neon vector type with additional type information, fill
1558 in the struct pointed to by VECTYPE (if non-NULL).
5f4273c7 1559 This function will fault on encountering a scalar. */
dcbf9037
JB
1560
1561static int
1562arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
477330fc 1563 enum arm_reg_type *rtype, struct neon_type_el *vectype)
dcbf9037
JB
1564{
1565 struct neon_typed_alias atype;
1566 char *str = *ccp;
1567 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1568
1569 if (reg == FAIL)
1570 return FAIL;
1571
0855e32b
NS
1572 /* Do not allow regname(... to parse as a register. */
1573 if (*str == '(')
1574 return FAIL;
1575
dcbf9037
JB
1576 /* Do not allow a scalar (reg+index) to parse as a register. */
1577 if ((atype.defined & NTA_HASINDEX) != 0)
1578 {
1579 first_error (_("register operand expected, but got scalar"));
1580 return FAIL;
1581 }
1582
1583 if (vectype)
1584 *vectype = atype.eltype;
1585
1586 *ccp = str;
1587
1588 return reg;
1589}
1590
1591#define NEON_SCALAR_REG(X) ((X) >> 4)
1592#define NEON_SCALAR_INDEX(X) ((X) & 15)
1593
5287ad62
JB
1594/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1595 have enough information to be able to do a good job bounds-checking. So, we
1596 just do easy checks here, and do further checks later. */
1597
1598static int
dcbf9037 1599parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1600{
dcbf9037 1601 int reg;
5287ad62 1602 char *str = *ccp;
dcbf9037 1603 struct neon_typed_alias atype;
5f4273c7 1604
dcbf9037 1605 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5f4273c7 1606
dcbf9037 1607 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62 1608 return FAIL;
5f4273c7 1609
dcbf9037 1610 if (atype.index == NEON_ALL_LANES)
5287ad62 1611 {
dcbf9037 1612 first_error (_("scalar must have an index"));
5287ad62
JB
1613 return FAIL;
1614 }
dcbf9037 1615 else if (atype.index >= 64 / elsize)
5287ad62 1616 {
dcbf9037 1617 first_error (_("scalar index out of range"));
5287ad62
JB
1618 return FAIL;
1619 }
5f4273c7 1620
dcbf9037
JB
1621 if (type)
1622 *type = atype.eltype;
5f4273c7 1623
5287ad62 1624 *ccp = str;
5f4273c7 1625
dcbf9037 1626 return reg * 16 + atype.index;
5287ad62
JB
1627}
1628
c19d1205 1629/* Parse an ARM register list. Returns the bitmask, or FAIL. */
e07e6e58 1630
c19d1205
ZW
1631static long
1632parse_reg_list (char ** strp)
1633{
1634 char * str = * strp;
1635 long range = 0;
1636 int another_range;
a737bd4d 1637
c19d1205
ZW
1638 /* We come back here if we get ranges concatenated by '+' or '|'. */
1639 do
6057a28f 1640 {
477330fc
RM
1641 skip_whitespace (str);
1642
c19d1205 1643 another_range = 0;
a737bd4d 1644
c19d1205
ZW
1645 if (*str == '{')
1646 {
1647 int in_range = 0;
1648 int cur_reg = -1;
a737bd4d 1649
c19d1205
ZW
1650 str++;
1651 do
1652 {
1653 int reg;
6057a28f 1654
dcbf9037 1655 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1656 {
dcbf9037 1657 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1658 return FAIL;
1659 }
a737bd4d 1660
c19d1205
ZW
1661 if (in_range)
1662 {
1663 int i;
a737bd4d 1664
c19d1205
ZW
1665 if (reg <= cur_reg)
1666 {
dcbf9037 1667 first_error (_("bad range in register list"));
c19d1205
ZW
1668 return FAIL;
1669 }
40a18ebd 1670
c19d1205
ZW
1671 for (i = cur_reg + 1; i < reg; i++)
1672 {
1673 if (range & (1 << i))
1674 as_tsktsk
1675 (_("Warning: duplicated register (r%d) in register list"),
1676 i);
1677 else
1678 range |= 1 << i;
1679 }
1680 in_range = 0;
1681 }
a737bd4d 1682
c19d1205
ZW
1683 if (range & (1 << reg))
1684 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1685 reg);
1686 else if (reg <= cur_reg)
1687 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1688
c19d1205
ZW
1689 range |= 1 << reg;
1690 cur_reg = reg;
1691 }
1692 while (skip_past_comma (&str) != FAIL
1693 || (in_range = 1, *str++ == '-'));
1694 str--;
a737bd4d 1695
d996d970 1696 if (skip_past_char (&str, '}') == FAIL)
c19d1205 1697 {
dcbf9037 1698 first_error (_("missing `}'"));
c19d1205
ZW
1699 return FAIL;
1700 }
1701 }
1702 else
1703 {
91d6fa6a 1704 expressionS exp;
40a18ebd 1705
91d6fa6a 1706 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
c19d1205 1707 return FAIL;
40a18ebd 1708
91d6fa6a 1709 if (exp.X_op == O_constant)
c19d1205 1710 {
91d6fa6a
NC
1711 if (exp.X_add_number
1712 != (exp.X_add_number & 0x0000ffff))
c19d1205
ZW
1713 {
1714 inst.error = _("invalid register mask");
1715 return FAIL;
1716 }
a737bd4d 1717
91d6fa6a 1718 if ((range & exp.X_add_number) != 0)
c19d1205 1719 {
91d6fa6a 1720 int regno = range & exp.X_add_number;
a737bd4d 1721
c19d1205
ZW
1722 regno &= -regno;
1723 regno = (1 << regno) - 1;
1724 as_tsktsk
1725 (_("Warning: duplicated register (r%d) in register list"),
1726 regno);
1727 }
a737bd4d 1728
91d6fa6a 1729 range |= exp.X_add_number;
c19d1205
ZW
1730 }
1731 else
1732 {
1733 if (inst.reloc.type != 0)
1734 {
1735 inst.error = _("expression too complex");
1736 return FAIL;
1737 }
a737bd4d 1738
91d6fa6a 1739 memcpy (&inst.reloc.exp, &exp, sizeof (expressionS));
c19d1205
ZW
1740 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1741 inst.reloc.pc_rel = 0;
1742 }
1743 }
a737bd4d 1744
c19d1205
ZW
1745 if (*str == '|' || *str == '+')
1746 {
1747 str++;
1748 another_range = 1;
1749 }
a737bd4d 1750 }
c19d1205 1751 while (another_range);
a737bd4d 1752
c19d1205
ZW
1753 *strp = str;
1754 return range;
a737bd4d
NC
1755}
1756
5287ad62
JB
1757/* Types of registers in a list. */
1758
1759enum reg_list_els
1760{
1761 REGLIST_VFP_S,
1762 REGLIST_VFP_D,
1763 REGLIST_NEON_D
1764};
1765
c19d1205
ZW
1766/* Parse a VFP register list. If the string is invalid return FAIL.
1767 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1768 register. Parses registers of type ETYPE.
1769 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1770 - Q registers can be used to specify pairs of D registers
1771 - { } can be omitted from around a singleton register list
477330fc
RM
1772 FIXME: This is not implemented, as it would require backtracking in
1773 some cases, e.g.:
1774 vtbl.8 d3,d4,d5
1775 This could be done (the meaning isn't really ambiguous), but doesn't
1776 fit in well with the current parsing framework.
dcbf9037
JB
1777 - 32 D registers may be used (also true for VFPv3).
1778 FIXME: Types are ignored in these register lists, which is probably a
1779 bug. */
6057a28f 1780
c19d1205 1781static int
037e8744 1782parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1783{
037e8744 1784 char *str = *ccp;
c19d1205
ZW
1785 int base_reg;
1786 int new_base;
21d799b5 1787 enum arm_reg_type regtype = (enum arm_reg_type) 0;
5287ad62 1788 int max_regs = 0;
c19d1205
ZW
1789 int count = 0;
1790 int warned = 0;
1791 unsigned long mask = 0;
a737bd4d 1792 int i;
6057a28f 1793
477330fc 1794 if (skip_past_char (&str, '{') == FAIL)
5287ad62
JB
1795 {
1796 inst.error = _("expecting {");
1797 return FAIL;
1798 }
6057a28f 1799
5287ad62 1800 switch (etype)
c19d1205 1801 {
5287ad62 1802 case REGLIST_VFP_S:
c19d1205
ZW
1803 regtype = REG_TYPE_VFS;
1804 max_regs = 32;
5287ad62 1805 break;
5f4273c7 1806
5287ad62
JB
1807 case REGLIST_VFP_D:
1808 regtype = REG_TYPE_VFD;
b7fc2769 1809 break;
5f4273c7 1810
b7fc2769
JB
1811 case REGLIST_NEON_D:
1812 regtype = REG_TYPE_NDQ;
1813 break;
1814 }
1815
1816 if (etype != REGLIST_VFP_S)
1817 {
b1cc4aeb
PB
1818 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
1819 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
477330fc
RM
1820 {
1821 max_regs = 32;
1822 if (thumb_mode)
1823 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
1824 fpu_vfp_ext_d32);
1825 else
1826 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
1827 fpu_vfp_ext_d32);
1828 }
5287ad62 1829 else
477330fc 1830 max_regs = 16;
c19d1205 1831 }
6057a28f 1832
c19d1205 1833 base_reg = max_regs;
a737bd4d 1834
c19d1205
ZW
1835 do
1836 {
5287ad62 1837 int setmask = 1, addregs = 1;
dcbf9037 1838
037e8744 1839 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1840
c19d1205 1841 if (new_base == FAIL)
a737bd4d 1842 {
dcbf9037 1843 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1844 return FAIL;
1845 }
5f4273c7 1846
b7fc2769 1847 if (new_base >= max_regs)
477330fc
RM
1848 {
1849 first_error (_("register out of range in list"));
1850 return FAIL;
1851 }
5f4273c7 1852
5287ad62
JB
1853 /* Note: a value of 2 * n is returned for the register Q<n>. */
1854 if (regtype == REG_TYPE_NQ)
477330fc
RM
1855 {
1856 setmask = 3;
1857 addregs = 2;
1858 }
5287ad62 1859
c19d1205
ZW
1860 if (new_base < base_reg)
1861 base_reg = new_base;
a737bd4d 1862
5287ad62 1863 if (mask & (setmask << new_base))
c19d1205 1864 {
dcbf9037 1865 first_error (_("invalid register list"));
c19d1205 1866 return FAIL;
a737bd4d 1867 }
a737bd4d 1868
c19d1205
ZW
1869 if ((mask >> new_base) != 0 && ! warned)
1870 {
1871 as_tsktsk (_("register list not in ascending order"));
1872 warned = 1;
1873 }
0bbf2aa4 1874
5287ad62
JB
1875 mask |= setmask << new_base;
1876 count += addregs;
0bbf2aa4 1877
037e8744 1878 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1879 {
1880 int high_range;
0bbf2aa4 1881
037e8744 1882 str++;
0bbf2aa4 1883
037e8744 1884 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
477330fc 1885 == FAIL)
c19d1205
ZW
1886 {
1887 inst.error = gettext (reg_expected_msgs[regtype]);
1888 return FAIL;
1889 }
0bbf2aa4 1890
477330fc
RM
1891 if (high_range >= max_regs)
1892 {
1893 first_error (_("register out of range in list"));
1894 return FAIL;
1895 }
b7fc2769 1896
477330fc
RM
1897 if (regtype == REG_TYPE_NQ)
1898 high_range = high_range + 1;
5287ad62 1899
c19d1205
ZW
1900 if (high_range <= new_base)
1901 {
1902 inst.error = _("register range not in ascending order");
1903 return FAIL;
1904 }
0bbf2aa4 1905
5287ad62 1906 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1907 {
5287ad62 1908 if (mask & (setmask << new_base))
0bbf2aa4 1909 {
c19d1205
ZW
1910 inst.error = _("invalid register list");
1911 return FAIL;
0bbf2aa4 1912 }
c19d1205 1913
5287ad62
JB
1914 mask |= setmask << new_base;
1915 count += addregs;
0bbf2aa4 1916 }
0bbf2aa4 1917 }
0bbf2aa4 1918 }
037e8744 1919 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1920
037e8744 1921 str++;
0bbf2aa4 1922
c19d1205
ZW
1923 /* Sanity check -- should have raised a parse error above. */
1924 if (count == 0 || count > max_regs)
1925 abort ();
1926
1927 *pbase = base_reg;
1928
1929 /* Final test -- the registers must be consecutive. */
1930 mask >>= base_reg;
1931 for (i = 0; i < count; i++)
1932 {
1933 if ((mask & (1u << i)) == 0)
1934 {
1935 inst.error = _("non-contiguous register range");
1936 return FAIL;
1937 }
1938 }
1939
037e8744
JB
1940 *ccp = str;
1941
c19d1205 1942 return count;
b99bd4ef
NC
1943}
1944
dcbf9037
JB
1945/* True if two alias types are the same. */
1946
c921be7d 1947static bfd_boolean
dcbf9037
JB
1948neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1949{
1950 if (!a && !b)
c921be7d 1951 return TRUE;
5f4273c7 1952
dcbf9037 1953 if (!a || !b)
c921be7d 1954 return FALSE;
dcbf9037
JB
1955
1956 if (a->defined != b->defined)
c921be7d 1957 return FALSE;
5f4273c7 1958
dcbf9037
JB
1959 if ((a->defined & NTA_HASTYPE) != 0
1960 && (a->eltype.type != b->eltype.type
477330fc 1961 || a->eltype.size != b->eltype.size))
c921be7d 1962 return FALSE;
dcbf9037
JB
1963
1964 if ((a->defined & NTA_HASINDEX) != 0
1965 && (a->index != b->index))
c921be7d 1966 return FALSE;
5f4273c7 1967
c921be7d 1968 return TRUE;
dcbf9037
JB
1969}
1970
5287ad62
JB
1971/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1972 The base register is put in *PBASE.
dcbf9037 1973 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1974 the return value.
1975 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1976 Bits [6:5] encode the list length (minus one).
1977 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1978
5287ad62 1979#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1980#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1981#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1982
1983static int
dcbf9037 1984parse_neon_el_struct_list (char **str, unsigned *pbase,
477330fc 1985 struct neon_type_el *eltype)
5287ad62
JB
1986{
1987 char *ptr = *str;
1988 int base_reg = -1;
1989 int reg_incr = -1;
1990 int count = 0;
1991 int lane = -1;
1992 int leading_brace = 0;
1993 enum arm_reg_type rtype = REG_TYPE_NDQ;
20203fb9
NC
1994 const char *const incr_error = _("register stride must be 1 or 2");
1995 const char *const type_error = _("mismatched element/structure types in list");
dcbf9037 1996 struct neon_typed_alias firsttype;
f85d59c3
KT
1997 firsttype.defined = 0;
1998 firsttype.eltype.type = NT_invtype;
1999 firsttype.eltype.size = -1;
2000 firsttype.index = -1;
5f4273c7 2001
5287ad62
JB
2002 if (skip_past_char (&ptr, '{') == SUCCESS)
2003 leading_brace = 1;
5f4273c7 2004
5287ad62
JB
2005 do
2006 {
dcbf9037
JB
2007 struct neon_typed_alias atype;
2008 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
2009
5287ad62 2010 if (getreg == FAIL)
477330fc
RM
2011 {
2012 first_error (_(reg_expected_msgs[rtype]));
2013 return FAIL;
2014 }
5f4273c7 2015
5287ad62 2016 if (base_reg == -1)
477330fc
RM
2017 {
2018 base_reg = getreg;
2019 if (rtype == REG_TYPE_NQ)
2020 {
2021 reg_incr = 1;
2022 }
2023 firsttype = atype;
2024 }
5287ad62 2025 else if (reg_incr == -1)
477330fc
RM
2026 {
2027 reg_incr = getreg - base_reg;
2028 if (reg_incr < 1 || reg_incr > 2)
2029 {
2030 first_error (_(incr_error));
2031 return FAIL;
2032 }
2033 }
5287ad62 2034 else if (getreg != base_reg + reg_incr * count)
477330fc
RM
2035 {
2036 first_error (_(incr_error));
2037 return FAIL;
2038 }
dcbf9037 2039
c921be7d 2040 if (! neon_alias_types_same (&atype, &firsttype))
477330fc
RM
2041 {
2042 first_error (_(type_error));
2043 return FAIL;
2044 }
5f4273c7 2045
5287ad62 2046 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
477330fc 2047 modes. */
5287ad62 2048 if (ptr[0] == '-')
477330fc
RM
2049 {
2050 struct neon_typed_alias htype;
2051 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
2052 if (lane == -1)
2053 lane = NEON_INTERLEAVE_LANES;
2054 else if (lane != NEON_INTERLEAVE_LANES)
2055 {
2056 first_error (_(type_error));
2057 return FAIL;
2058 }
2059 if (reg_incr == -1)
2060 reg_incr = 1;
2061 else if (reg_incr != 1)
2062 {
2063 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
2064 return FAIL;
2065 }
2066 ptr++;
2067 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
2068 if (hireg == FAIL)
2069 {
2070 first_error (_(reg_expected_msgs[rtype]));
2071 return FAIL;
2072 }
2073 if (! neon_alias_types_same (&htype, &firsttype))
2074 {
2075 first_error (_(type_error));
2076 return FAIL;
2077 }
2078 count += hireg + dregs - getreg;
2079 continue;
2080 }
5f4273c7 2081
5287ad62
JB
2082 /* If we're using Q registers, we can't use [] or [n] syntax. */
2083 if (rtype == REG_TYPE_NQ)
477330fc
RM
2084 {
2085 count += 2;
2086 continue;
2087 }
5f4273c7 2088
dcbf9037 2089 if ((atype.defined & NTA_HASINDEX) != 0)
477330fc
RM
2090 {
2091 if (lane == -1)
2092 lane = atype.index;
2093 else if (lane != atype.index)
2094 {
2095 first_error (_(type_error));
2096 return FAIL;
2097 }
2098 }
5287ad62 2099 else if (lane == -1)
477330fc 2100 lane = NEON_INTERLEAVE_LANES;
5287ad62 2101 else if (lane != NEON_INTERLEAVE_LANES)
477330fc
RM
2102 {
2103 first_error (_(type_error));
2104 return FAIL;
2105 }
5287ad62
JB
2106 count++;
2107 }
2108 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
5f4273c7 2109
5287ad62
JB
2110 /* No lane set by [x]. We must be interleaving structures. */
2111 if (lane == -1)
2112 lane = NEON_INTERLEAVE_LANES;
5f4273c7 2113
5287ad62
JB
2114 /* Sanity check. */
2115 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
2116 || (count > 1 && reg_incr == -1))
2117 {
dcbf9037 2118 first_error (_("error parsing element/structure list"));
5287ad62
JB
2119 return FAIL;
2120 }
2121
2122 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2123 {
dcbf9037 2124 first_error (_("expected }"));
5287ad62
JB
2125 return FAIL;
2126 }
5f4273c7 2127
5287ad62
JB
2128 if (reg_incr == -1)
2129 reg_incr = 1;
2130
dcbf9037
JB
2131 if (eltype)
2132 *eltype = firsttype.eltype;
2133
5287ad62
JB
2134 *pbase = base_reg;
2135 *str = ptr;
5f4273c7 2136
5287ad62
JB
2137 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2138}
2139
c19d1205
ZW
2140/* Parse an explicit relocation suffix on an expression. This is
2141 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2142 arm_reloc_hsh contains no entries, so this function can only
2143 succeed if there is no () after the word. Returns -1 on error,
2144 BFD_RELOC_UNUSED if there wasn't any suffix. */
3da1d841 2145
c19d1205
ZW
2146static int
2147parse_reloc (char **str)
b99bd4ef 2148{
c19d1205
ZW
2149 struct reloc_entry *r;
2150 char *p, *q;
b99bd4ef 2151
c19d1205
ZW
2152 if (**str != '(')
2153 return BFD_RELOC_UNUSED;
b99bd4ef 2154
c19d1205
ZW
2155 p = *str + 1;
2156 q = p;
2157
2158 while (*q && *q != ')' && *q != ',')
2159 q++;
2160 if (*q != ')')
2161 return -1;
2162
21d799b5
NC
2163 if ((r = (struct reloc_entry *)
2164 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
c19d1205
ZW
2165 return -1;
2166
2167 *str = q + 1;
2168 return r->reloc;
b99bd4ef
NC
2169}
2170
c19d1205
ZW
2171/* Directives: register aliases. */
2172
dcbf9037 2173static struct reg_entry *
90ec0d68 2174insert_reg_alias (char *str, unsigned number, int type)
b99bd4ef 2175{
d3ce72d0 2176 struct reg_entry *new_reg;
c19d1205 2177 const char *name;
b99bd4ef 2178
d3ce72d0 2179 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
c19d1205 2180 {
d3ce72d0 2181 if (new_reg->builtin)
c19d1205 2182 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 2183
c19d1205
ZW
2184 /* Only warn about a redefinition if it's not defined as the
2185 same register. */
d3ce72d0 2186 else if (new_reg->number != number || new_reg->type != type)
c19d1205 2187 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 2188
d929913e 2189 return NULL;
c19d1205 2190 }
b99bd4ef 2191
c19d1205 2192 name = xstrdup (str);
325801bd 2193 new_reg = XNEW (struct reg_entry);
b99bd4ef 2194
d3ce72d0
NC
2195 new_reg->name = name;
2196 new_reg->number = number;
2197 new_reg->type = type;
2198 new_reg->builtin = FALSE;
2199 new_reg->neon = NULL;
b99bd4ef 2200
d3ce72d0 2201 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
c19d1205 2202 abort ();
5f4273c7 2203
d3ce72d0 2204 return new_reg;
dcbf9037
JB
2205}
2206
2207static void
2208insert_neon_reg_alias (char *str, int number, int type,
477330fc 2209 struct neon_typed_alias *atype)
dcbf9037
JB
2210{
2211 struct reg_entry *reg = insert_reg_alias (str, number, type);
5f4273c7 2212
dcbf9037
JB
2213 if (!reg)
2214 {
2215 first_error (_("attempt to redefine typed alias"));
2216 return;
2217 }
5f4273c7 2218
dcbf9037
JB
2219 if (atype)
2220 {
325801bd 2221 reg->neon = XNEW (struct neon_typed_alias);
dcbf9037
JB
2222 *reg->neon = *atype;
2223 }
c19d1205 2224}
b99bd4ef 2225
c19d1205 2226/* Look for the .req directive. This is of the form:
b99bd4ef 2227
c19d1205 2228 new_register_name .req existing_register_name
b99bd4ef 2229
c19d1205 2230 If we find one, or if it looks sufficiently like one that we want to
d929913e 2231 handle any error here, return TRUE. Otherwise return FALSE. */
b99bd4ef 2232
d929913e 2233static bfd_boolean
c19d1205
ZW
2234create_register_alias (char * newname, char *p)
2235{
2236 struct reg_entry *old;
2237 char *oldname, *nbuf;
2238 size_t nlen;
b99bd4ef 2239
c19d1205
ZW
2240 /* The input scrubber ensures that whitespace after the mnemonic is
2241 collapsed to single spaces. */
2242 oldname = p;
2243 if (strncmp (oldname, " .req ", 6) != 0)
d929913e 2244 return FALSE;
b99bd4ef 2245
c19d1205
ZW
2246 oldname += 6;
2247 if (*oldname == '\0')
d929913e 2248 return FALSE;
b99bd4ef 2249
21d799b5 2250 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
c19d1205 2251 if (!old)
b99bd4ef 2252 {
c19d1205 2253 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
d929913e 2254 return TRUE;
b99bd4ef
NC
2255 }
2256
c19d1205
ZW
2257 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2258 the desired alias name, and p points to its end. If not, then
2259 the desired alias name is in the global original_case_string. */
2260#ifdef TC_CASE_SENSITIVE
2261 nlen = p - newname;
2262#else
2263 newname = original_case_string;
2264 nlen = strlen (newname);
2265#endif
b99bd4ef 2266
e1fa0163 2267 nbuf = xmalloc (nlen + 1);
c19d1205
ZW
2268 memcpy (nbuf, newname, nlen);
2269 nbuf[nlen] = '\0';
b99bd4ef 2270
c19d1205
ZW
2271 /* Create aliases under the new name as stated; an all-lowercase
2272 version of the new name; and an all-uppercase version of the new
2273 name. */
d929913e
NC
2274 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2275 {
2276 for (p = nbuf; *p; p++)
2277 *p = TOUPPER (*p);
c19d1205 2278
d929913e
NC
2279 if (strncmp (nbuf, newname, nlen))
2280 {
2281 /* If this attempt to create an additional alias fails, do not bother
2282 trying to create the all-lower case alias. We will fail and issue
2283 a second, duplicate error message. This situation arises when the
2284 programmer does something like:
2285 foo .req r0
2286 Foo .req r1
2287 The second .req creates the "Foo" alias but then fails to create
5f4273c7 2288 the artificial FOO alias because it has already been created by the
d929913e
NC
2289 first .req. */
2290 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
e1fa0163
NC
2291 {
2292 free (nbuf);
2293 return TRUE;
2294 }
d929913e 2295 }
c19d1205 2296
d929913e
NC
2297 for (p = nbuf; *p; p++)
2298 *p = TOLOWER (*p);
c19d1205 2299
d929913e
NC
2300 if (strncmp (nbuf, newname, nlen))
2301 insert_reg_alias (nbuf, old->number, old->type);
2302 }
c19d1205 2303
e1fa0163 2304 free (nbuf);
d929913e 2305 return TRUE;
b99bd4ef
NC
2306}
2307
dcbf9037
JB
2308/* Create a Neon typed/indexed register alias using directives, e.g.:
2309 X .dn d5.s32[1]
2310 Y .qn 6.s16
2311 Z .dn d7
2312 T .dn Z[0]
2313 These typed registers can be used instead of the types specified after the
2314 Neon mnemonic, so long as all operands given have types. Types can also be
2315 specified directly, e.g.:
5f4273c7 2316 vadd d0.s32, d1.s32, d2.s32 */
dcbf9037 2317
c921be7d 2318static bfd_boolean
dcbf9037
JB
2319create_neon_reg_alias (char *newname, char *p)
2320{
2321 enum arm_reg_type basetype;
2322 struct reg_entry *basereg;
2323 struct reg_entry mybasereg;
2324 struct neon_type ntype;
2325 struct neon_typed_alias typeinfo;
12d6b0b7 2326 char *namebuf, *nameend ATTRIBUTE_UNUSED;
dcbf9037 2327 int namelen;
5f4273c7 2328
dcbf9037
JB
2329 typeinfo.defined = 0;
2330 typeinfo.eltype.type = NT_invtype;
2331 typeinfo.eltype.size = -1;
2332 typeinfo.index = -1;
5f4273c7 2333
dcbf9037 2334 nameend = p;
5f4273c7 2335
dcbf9037
JB
2336 if (strncmp (p, " .dn ", 5) == 0)
2337 basetype = REG_TYPE_VFD;
2338 else if (strncmp (p, " .qn ", 5) == 0)
2339 basetype = REG_TYPE_NQ;
2340 else
c921be7d 2341 return FALSE;
5f4273c7 2342
dcbf9037 2343 p += 5;
5f4273c7 2344
dcbf9037 2345 if (*p == '\0')
c921be7d 2346 return FALSE;
5f4273c7 2347
dcbf9037
JB
2348 basereg = arm_reg_parse_multi (&p);
2349
2350 if (basereg && basereg->type != basetype)
2351 {
2352 as_bad (_("bad type for register"));
c921be7d 2353 return FALSE;
dcbf9037
JB
2354 }
2355
2356 if (basereg == NULL)
2357 {
2358 expressionS exp;
2359 /* Try parsing as an integer. */
2360 my_get_expression (&exp, &p, GE_NO_PREFIX);
2361 if (exp.X_op != O_constant)
477330fc
RM
2362 {
2363 as_bad (_("expression must be constant"));
2364 return FALSE;
2365 }
dcbf9037
JB
2366 basereg = &mybasereg;
2367 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
477330fc 2368 : exp.X_add_number;
dcbf9037
JB
2369 basereg->neon = 0;
2370 }
2371
2372 if (basereg->neon)
2373 typeinfo = *basereg->neon;
2374
2375 if (parse_neon_type (&ntype, &p) == SUCCESS)
2376 {
2377 /* We got a type. */
2378 if (typeinfo.defined & NTA_HASTYPE)
477330fc
RM
2379 {
2380 as_bad (_("can't redefine the type of a register alias"));
2381 return FALSE;
2382 }
5f4273c7 2383
dcbf9037
JB
2384 typeinfo.defined |= NTA_HASTYPE;
2385 if (ntype.elems != 1)
477330fc
RM
2386 {
2387 as_bad (_("you must specify a single type only"));
2388 return FALSE;
2389 }
dcbf9037
JB
2390 typeinfo.eltype = ntype.el[0];
2391 }
5f4273c7 2392
dcbf9037
JB
2393 if (skip_past_char (&p, '[') == SUCCESS)
2394 {
2395 expressionS exp;
2396 /* We got a scalar index. */
5f4273c7 2397
dcbf9037 2398 if (typeinfo.defined & NTA_HASINDEX)
477330fc
RM
2399 {
2400 as_bad (_("can't redefine the index of a scalar alias"));
2401 return FALSE;
2402 }
5f4273c7 2403
dcbf9037 2404 my_get_expression (&exp, &p, GE_NO_PREFIX);
5f4273c7 2405
dcbf9037 2406 if (exp.X_op != O_constant)
477330fc
RM
2407 {
2408 as_bad (_("scalar index must be constant"));
2409 return FALSE;
2410 }
5f4273c7 2411
dcbf9037
JB
2412 typeinfo.defined |= NTA_HASINDEX;
2413 typeinfo.index = exp.X_add_number;
5f4273c7 2414
dcbf9037 2415 if (skip_past_char (&p, ']') == FAIL)
477330fc
RM
2416 {
2417 as_bad (_("expecting ]"));
2418 return FALSE;
2419 }
dcbf9037
JB
2420 }
2421
15735687
NS
2422 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2423 the desired alias name, and p points to its end. If not, then
2424 the desired alias name is in the global original_case_string. */
2425#ifdef TC_CASE_SENSITIVE
dcbf9037 2426 namelen = nameend - newname;
15735687
NS
2427#else
2428 newname = original_case_string;
2429 namelen = strlen (newname);
2430#endif
2431
e1fa0163 2432 namebuf = xmalloc (namelen + 1);
dcbf9037
JB
2433 strncpy (namebuf, newname, namelen);
2434 namebuf[namelen] = '\0';
5f4273c7 2435
dcbf9037 2436 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2437 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2438
dcbf9037
JB
2439 /* Insert name in all uppercase. */
2440 for (p = namebuf; *p; p++)
2441 *p = TOUPPER (*p);
5f4273c7 2442
dcbf9037
JB
2443 if (strncmp (namebuf, newname, namelen))
2444 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2445 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2446
dcbf9037
JB
2447 /* Insert name in all lowercase. */
2448 for (p = namebuf; *p; p++)
2449 *p = TOLOWER (*p);
5f4273c7 2450
dcbf9037
JB
2451 if (strncmp (namebuf, newname, namelen))
2452 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2453 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2454
e1fa0163 2455 free (namebuf);
c921be7d 2456 return TRUE;
dcbf9037
JB
2457}
2458
c19d1205
ZW
2459/* Should never be called, as .req goes between the alias and the
2460 register name, not at the beginning of the line. */
c921be7d 2461
b99bd4ef 2462static void
c19d1205 2463s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2464{
c19d1205
ZW
2465 as_bad (_("invalid syntax for .req directive"));
2466}
b99bd4ef 2467
dcbf9037
JB
2468static void
2469s_dn (int a ATTRIBUTE_UNUSED)
2470{
2471 as_bad (_("invalid syntax for .dn directive"));
2472}
2473
2474static void
2475s_qn (int a ATTRIBUTE_UNUSED)
2476{
2477 as_bad (_("invalid syntax for .qn directive"));
2478}
2479
c19d1205
ZW
2480/* The .unreq directive deletes an alias which was previously defined
2481 by .req. For example:
b99bd4ef 2482
c19d1205
ZW
2483 my_alias .req r11
2484 .unreq my_alias */
b99bd4ef
NC
2485
2486static void
c19d1205 2487s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2488{
c19d1205
ZW
2489 char * name;
2490 char saved_char;
b99bd4ef 2491
c19d1205
ZW
2492 name = input_line_pointer;
2493
2494 while (*input_line_pointer != 0
2495 && *input_line_pointer != ' '
2496 && *input_line_pointer != '\n')
2497 ++input_line_pointer;
2498
2499 saved_char = *input_line_pointer;
2500 *input_line_pointer = 0;
2501
2502 if (!*name)
2503 as_bad (_("invalid syntax for .unreq directive"));
2504 else
2505 {
21d799b5 2506 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
477330fc 2507 name);
c19d1205
ZW
2508
2509 if (!reg)
2510 as_bad (_("unknown register alias '%s'"), name);
2511 else if (reg->builtin)
a1727c1a 2512 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
c19d1205
ZW
2513 name);
2514 else
2515 {
d929913e
NC
2516 char * p;
2517 char * nbuf;
2518
db0bc284 2519 hash_delete (arm_reg_hsh, name, FALSE);
c19d1205 2520 free ((char *) reg->name);
477330fc
RM
2521 if (reg->neon)
2522 free (reg->neon);
c19d1205 2523 free (reg);
d929913e
NC
2524
2525 /* Also locate the all upper case and all lower case versions.
2526 Do not complain if we cannot find one or the other as it
2527 was probably deleted above. */
5f4273c7 2528
d929913e
NC
2529 nbuf = strdup (name);
2530 for (p = nbuf; *p; p++)
2531 *p = TOUPPER (*p);
21d799b5 2532 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2533 if (reg)
2534 {
db0bc284 2535 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2536 free ((char *) reg->name);
2537 if (reg->neon)
2538 free (reg->neon);
2539 free (reg);
2540 }
2541
2542 for (p = nbuf; *p; p++)
2543 *p = TOLOWER (*p);
21d799b5 2544 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2545 if (reg)
2546 {
db0bc284 2547 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2548 free ((char *) reg->name);
2549 if (reg->neon)
2550 free (reg->neon);
2551 free (reg);
2552 }
2553
2554 free (nbuf);
c19d1205
ZW
2555 }
2556 }
b99bd4ef 2557
c19d1205 2558 *input_line_pointer = saved_char;
b99bd4ef
NC
2559 demand_empty_rest_of_line ();
2560}
2561
c19d1205
ZW
2562/* Directives: Instruction set selection. */
2563
2564#ifdef OBJ_ELF
2565/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2566 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2567 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2568 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2569
cd000bff
DJ
2570/* Create a new mapping symbol for the transition to STATE. */
2571
2572static void
2573make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
b99bd4ef 2574{
a737bd4d 2575 symbolS * symbolP;
c19d1205
ZW
2576 const char * symname;
2577 int type;
b99bd4ef 2578
c19d1205 2579 switch (state)
b99bd4ef 2580 {
c19d1205
ZW
2581 case MAP_DATA:
2582 symname = "$d";
2583 type = BSF_NO_FLAGS;
2584 break;
2585 case MAP_ARM:
2586 symname = "$a";
2587 type = BSF_NO_FLAGS;
2588 break;
2589 case MAP_THUMB:
2590 symname = "$t";
2591 type = BSF_NO_FLAGS;
2592 break;
c19d1205
ZW
2593 default:
2594 abort ();
2595 }
2596
cd000bff 2597 symbolP = symbol_new (symname, now_seg, value, frag);
c19d1205
ZW
2598 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2599
2600 switch (state)
2601 {
2602 case MAP_ARM:
2603 THUMB_SET_FUNC (symbolP, 0);
2604 ARM_SET_THUMB (symbolP, 0);
2605 ARM_SET_INTERWORK (symbolP, support_interwork);
2606 break;
2607
2608 case MAP_THUMB:
2609 THUMB_SET_FUNC (symbolP, 1);
2610 ARM_SET_THUMB (symbolP, 1);
2611 ARM_SET_INTERWORK (symbolP, support_interwork);
2612 break;
2613
2614 case MAP_DATA:
2615 default:
cd000bff
DJ
2616 break;
2617 }
2618
2619 /* Save the mapping symbols for future reference. Also check that
2620 we do not place two mapping symbols at the same offset within a
2621 frag. We'll handle overlap between frags in
2de7820f
JZ
2622 check_mapping_symbols.
2623
2624 If .fill or other data filling directive generates zero sized data,
2625 the mapping symbol for the following code will have the same value
2626 as the one generated for the data filling directive. In this case,
2627 we replace the old symbol with the new one at the same address. */
cd000bff
DJ
2628 if (value == 0)
2629 {
2de7820f
JZ
2630 if (frag->tc_frag_data.first_map != NULL)
2631 {
2632 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2633 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2634 }
cd000bff
DJ
2635 frag->tc_frag_data.first_map = symbolP;
2636 }
2637 if (frag->tc_frag_data.last_map != NULL)
0f020cef
JZ
2638 {
2639 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
0f020cef
JZ
2640 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2641 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2642 }
cd000bff
DJ
2643 frag->tc_frag_data.last_map = symbolP;
2644}
2645
2646/* We must sometimes convert a region marked as code to data during
2647 code alignment, if an odd number of bytes have to be padded. The
2648 code mapping symbol is pushed to an aligned address. */
2649
2650static void
2651insert_data_mapping_symbol (enum mstate state,
2652 valueT value, fragS *frag, offsetT bytes)
2653{
2654 /* If there was already a mapping symbol, remove it. */
2655 if (frag->tc_frag_data.last_map != NULL
2656 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2657 {
2658 symbolS *symp = frag->tc_frag_data.last_map;
2659
2660 if (value == 0)
2661 {
2662 know (frag->tc_frag_data.first_map == symp);
2663 frag->tc_frag_data.first_map = NULL;
2664 }
2665 frag->tc_frag_data.last_map = NULL;
2666 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
c19d1205 2667 }
cd000bff
DJ
2668
2669 make_mapping_symbol (MAP_DATA, value, frag);
2670 make_mapping_symbol (state, value + bytes, frag);
2671}
2672
2673static void mapping_state_2 (enum mstate state, int max_chars);
2674
2675/* Set the mapping state to STATE. Only call this when about to
2676 emit some STATE bytes to the file. */
2677
4e9aaefb 2678#define TRANSITION(from, to) (mapstate == (from) && state == (to))
cd000bff
DJ
2679void
2680mapping_state (enum mstate state)
2681{
940b5ce0
DJ
2682 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2683
cd000bff
DJ
2684 if (mapstate == state)
2685 /* The mapping symbol has already been emitted.
2686 There is nothing else to do. */
2687 return;
49c62a33
NC
2688
2689 if (state == MAP_ARM || state == MAP_THUMB)
2690 /* PR gas/12931
2691 All ARM instructions require 4-byte alignment.
2692 (Almost) all Thumb instructions require 2-byte alignment.
2693
2694 When emitting instructions into any section, mark the section
2695 appropriately.
2696
2697 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2698 but themselves require 2-byte alignment; this applies to some
2699 PC- relative forms. However, these cases will invovle implicit
2700 literal pool generation or an explicit .align >=2, both of
2701 which will cause the section to me marked with sufficient
2702 alignment. Thus, we don't handle those cases here. */
2703 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2704
2705 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
4e9aaefb 2706 /* This case will be evaluated later. */
cd000bff 2707 return;
cd000bff
DJ
2708
2709 mapping_state_2 (state, 0);
cd000bff
DJ
2710}
2711
2712/* Same as mapping_state, but MAX_CHARS bytes have already been
2713 allocated. Put the mapping symbol that far back. */
2714
2715static void
2716mapping_state_2 (enum mstate state, int max_chars)
2717{
940b5ce0
DJ
2718 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2719
2720 if (!SEG_NORMAL (now_seg))
2721 return;
2722
cd000bff
DJ
2723 if (mapstate == state)
2724 /* The mapping symbol has already been emitted.
2725 There is nothing else to do. */
2726 return;
2727
4e9aaefb
SA
2728 if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
2729 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
2730 {
2731 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
2732 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
2733
2734 if (add_symbol)
2735 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
2736 }
2737
cd000bff
DJ
2738 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2739 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
c19d1205 2740}
4e9aaefb 2741#undef TRANSITION
c19d1205 2742#else
d3106081
NS
2743#define mapping_state(x) ((void)0)
2744#define mapping_state_2(x, y) ((void)0)
c19d1205
ZW
2745#endif
2746
2747/* Find the real, Thumb encoded start of a Thumb function. */
2748
4343666d 2749#ifdef OBJ_COFF
c19d1205
ZW
2750static symbolS *
2751find_real_start (symbolS * symbolP)
2752{
2753 char * real_start;
2754 const char * name = S_GET_NAME (symbolP);
2755 symbolS * new_target;
2756
2757 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2758#define STUB_NAME ".real_start_of"
2759
2760 if (name == NULL)
2761 abort ();
2762
37f6032b
ZW
2763 /* The compiler may generate BL instructions to local labels because
2764 it needs to perform a branch to a far away location. These labels
2765 do not have a corresponding ".real_start_of" label. We check
2766 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2767 the ".real_start_of" convention for nonlocal branches. */
2768 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2769 return symbolP;
2770
e1fa0163 2771 real_start = concat (STUB_NAME, name, NULL);
c19d1205 2772 new_target = symbol_find (real_start);
e1fa0163 2773 free (real_start);
c19d1205
ZW
2774
2775 if (new_target == NULL)
2776 {
bd3ba5d1 2777 as_warn (_("Failed to find real start of function: %s\n"), name);
c19d1205
ZW
2778 new_target = symbolP;
2779 }
2780
c19d1205
ZW
2781 return new_target;
2782}
4343666d 2783#endif
c19d1205
ZW
2784
2785static void
2786opcode_select (int width)
2787{
2788 switch (width)
2789 {
2790 case 16:
2791 if (! thumb_mode)
2792 {
e74cfd16 2793 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2794 as_bad (_("selected processor does not support THUMB opcodes"));
2795
2796 thumb_mode = 1;
2797 /* No need to force the alignment, since we will have been
2798 coming from ARM mode, which is word-aligned. */
2799 record_alignment (now_seg, 1);
2800 }
c19d1205
ZW
2801 break;
2802
2803 case 32:
2804 if (thumb_mode)
2805 {
e74cfd16 2806 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2807 as_bad (_("selected processor does not support ARM opcodes"));
2808
2809 thumb_mode = 0;
2810
2811 if (!need_pass_2)
2812 frag_align (2, 0, 0);
2813
2814 record_alignment (now_seg, 1);
2815 }
c19d1205
ZW
2816 break;
2817
2818 default:
2819 as_bad (_("invalid instruction size selected (%d)"), width);
2820 }
2821}
2822
2823static void
2824s_arm (int ignore ATTRIBUTE_UNUSED)
2825{
2826 opcode_select (32);
2827 demand_empty_rest_of_line ();
2828}
2829
2830static void
2831s_thumb (int ignore ATTRIBUTE_UNUSED)
2832{
2833 opcode_select (16);
2834 demand_empty_rest_of_line ();
2835}
2836
2837static void
2838s_code (int unused ATTRIBUTE_UNUSED)
2839{
2840 int temp;
2841
2842 temp = get_absolute_expression ();
2843 switch (temp)
2844 {
2845 case 16:
2846 case 32:
2847 opcode_select (temp);
2848 break;
2849
2850 default:
2851 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2852 }
2853}
2854
2855static void
2856s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2857{
2858 /* If we are not already in thumb mode go into it, EVEN if
2859 the target processor does not support thumb instructions.
2860 This is used by gcc/config/arm/lib1funcs.asm for example
2861 to compile interworking support functions even if the
2862 target processor should not support interworking. */
2863 if (! thumb_mode)
2864 {
2865 thumb_mode = 2;
2866 record_alignment (now_seg, 1);
2867 }
2868
2869 demand_empty_rest_of_line ();
2870}
2871
2872static void
2873s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2874{
2875 s_thumb (0);
2876
2877 /* The following label is the name/address of the start of a Thumb function.
2878 We need to know this for the interworking support. */
2879 label_is_thumb_function_name = TRUE;
2880}
2881
2882/* Perform a .set directive, but also mark the alias as
2883 being a thumb function. */
2884
2885static void
2886s_thumb_set (int equiv)
2887{
2888 /* XXX the following is a duplicate of the code for s_set() in read.c
2889 We cannot just call that code as we need to get at the symbol that
2890 is created. */
2891 char * name;
2892 char delim;
2893 char * end_name;
2894 symbolS * symbolP;
2895
2896 /* Especial apologies for the random logic:
2897 This just grew, and could be parsed much more simply!
2898 Dean - in haste. */
d02603dc 2899 delim = get_symbol_name (& name);
c19d1205 2900 end_name = input_line_pointer;
d02603dc 2901 (void) restore_line_pointer (delim);
c19d1205
ZW
2902
2903 if (*input_line_pointer != ',')
2904 {
2905 *end_name = 0;
2906 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2907 *end_name = delim;
2908 ignore_rest_of_line ();
2909 return;
2910 }
2911
2912 input_line_pointer++;
2913 *end_name = 0;
2914
2915 if (name[0] == '.' && name[1] == '\0')
2916 {
2917 /* XXX - this should not happen to .thumb_set. */
2918 abort ();
2919 }
2920
2921 if ((symbolP = symbol_find (name)) == NULL
2922 && (symbolP = md_undefined_symbol (name)) == NULL)
2923 {
2924#ifndef NO_LISTING
2925 /* When doing symbol listings, play games with dummy fragments living
2926 outside the normal fragment chain to record the file and line info
c19d1205 2927 for this symbol. */
b99bd4ef
NC
2928 if (listing & LISTING_SYMBOLS)
2929 {
2930 extern struct list_info_struct * listing_tail;
21d799b5 2931 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
b99bd4ef
NC
2932
2933 memset (dummy_frag, 0, sizeof (fragS));
2934 dummy_frag->fr_type = rs_fill;
2935 dummy_frag->line = listing_tail;
2936 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2937 dummy_frag->fr_symbol = symbolP;
2938 }
2939 else
2940#endif
2941 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2942
2943#ifdef OBJ_COFF
2944 /* "set" symbols are local unless otherwise specified. */
2945 SF_SET_LOCAL (symbolP);
2946#endif /* OBJ_COFF */
2947 } /* Make a new symbol. */
2948
2949 symbol_table_insert (symbolP);
2950
2951 * end_name = delim;
2952
2953 if (equiv
2954 && S_IS_DEFINED (symbolP)
2955 && S_GET_SEGMENT (symbolP) != reg_section)
2956 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2957
2958 pseudo_set (symbolP);
2959
2960 demand_empty_rest_of_line ();
2961
c19d1205 2962 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2963
2964 THUMB_SET_FUNC (symbolP, 1);
2965 ARM_SET_THUMB (symbolP, 1);
2966#if defined OBJ_ELF || defined OBJ_COFF
2967 ARM_SET_INTERWORK (symbolP, support_interwork);
2968#endif
2969}
2970
c19d1205 2971/* Directives: Mode selection. */
b99bd4ef 2972
c19d1205
ZW
2973/* .syntax [unified|divided] - choose the new unified syntax
2974 (same for Arm and Thumb encoding, modulo slight differences in what
2975 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2976static void
c19d1205 2977s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2978{
c19d1205
ZW
2979 char *name, delim;
2980
d02603dc 2981 delim = get_symbol_name (& name);
c19d1205
ZW
2982
2983 if (!strcasecmp (name, "unified"))
2984 unified_syntax = TRUE;
2985 else if (!strcasecmp (name, "divided"))
2986 unified_syntax = FALSE;
2987 else
2988 {
2989 as_bad (_("unrecognized syntax mode \"%s\""), name);
2990 return;
2991 }
d02603dc 2992 (void) restore_line_pointer (delim);
b99bd4ef
NC
2993 demand_empty_rest_of_line ();
2994}
2995
c19d1205
ZW
2996/* Directives: sectioning and alignment. */
2997
c19d1205
ZW
2998static void
2999s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 3000{
c19d1205
ZW
3001 /* We don't support putting frags in the BSS segment, we fake it by
3002 marking in_bss, then looking at s_skip for clues. */
3003 subseg_set (bss_section, 0);
3004 demand_empty_rest_of_line ();
cd000bff
DJ
3005
3006#ifdef md_elf_section_change_hook
3007 md_elf_section_change_hook ();
3008#endif
c19d1205 3009}
b99bd4ef 3010
c19d1205
ZW
3011static void
3012s_even (int ignore ATTRIBUTE_UNUSED)
3013{
3014 /* Never make frag if expect extra pass. */
3015 if (!need_pass_2)
3016 frag_align (1, 0, 0);
b99bd4ef 3017
c19d1205 3018 record_alignment (now_seg, 1);
b99bd4ef 3019
c19d1205 3020 demand_empty_rest_of_line ();
b99bd4ef
NC
3021}
3022
2e6976a8
DG
3023/* Directives: CodeComposer Studio. */
3024
3025/* .ref (for CodeComposer Studio syntax only). */
3026static void
3027s_ccs_ref (int unused ATTRIBUTE_UNUSED)
3028{
3029 if (codecomposer_syntax)
3030 ignore_rest_of_line ();
3031 else
3032 as_bad (_(".ref pseudo-op only available with -mccs flag."));
3033}
3034
3035/* If name is not NULL, then it is used for marking the beginning of a
3036 function, wherease if it is NULL then it means the function end. */
3037static void
3038asmfunc_debug (const char * name)
3039{
3040 static const char * last_name = NULL;
3041
3042 if (name != NULL)
3043 {
3044 gas_assert (last_name == NULL);
3045 last_name = name;
3046
3047 if (debug_type == DEBUG_STABS)
3048 stabs_generate_asm_func (name, name);
3049 }
3050 else
3051 {
3052 gas_assert (last_name != NULL);
3053
3054 if (debug_type == DEBUG_STABS)
3055 stabs_generate_asm_endfunc (last_name, last_name);
3056
3057 last_name = NULL;
3058 }
3059}
3060
3061static void
3062s_ccs_asmfunc (int unused ATTRIBUTE_UNUSED)
3063{
3064 if (codecomposer_syntax)
3065 {
3066 switch (asmfunc_state)
3067 {
3068 case OUTSIDE_ASMFUNC:
3069 asmfunc_state = WAITING_ASMFUNC_NAME;
3070 break;
3071
3072 case WAITING_ASMFUNC_NAME:
3073 as_bad (_(".asmfunc repeated."));
3074 break;
3075
3076 case WAITING_ENDASMFUNC:
3077 as_bad (_(".asmfunc without function."));
3078 break;
3079 }
3080 demand_empty_rest_of_line ();
3081 }
3082 else
3083 as_bad (_(".asmfunc pseudo-op only available with -mccs flag."));
3084}
3085
3086static void
3087s_ccs_endasmfunc (int unused ATTRIBUTE_UNUSED)
3088{
3089 if (codecomposer_syntax)
3090 {
3091 switch (asmfunc_state)
3092 {
3093 case OUTSIDE_ASMFUNC:
3094 as_bad (_(".endasmfunc without a .asmfunc."));
3095 break;
3096
3097 case WAITING_ASMFUNC_NAME:
3098 as_bad (_(".endasmfunc without function."));
3099 break;
3100
3101 case WAITING_ENDASMFUNC:
3102 asmfunc_state = OUTSIDE_ASMFUNC;
3103 asmfunc_debug (NULL);
3104 break;
3105 }
3106 demand_empty_rest_of_line ();
3107 }
3108 else
3109 as_bad (_(".endasmfunc pseudo-op only available with -mccs flag."));
3110}
3111
3112static void
3113s_ccs_def (int name)
3114{
3115 if (codecomposer_syntax)
3116 s_globl (name);
3117 else
3118 as_bad (_(".def pseudo-op only available with -mccs flag."));
3119}
3120
c19d1205 3121/* Directives: Literal pools. */
a737bd4d 3122
c19d1205
ZW
3123static literal_pool *
3124find_literal_pool (void)
a737bd4d 3125{
c19d1205 3126 literal_pool * pool;
a737bd4d 3127
c19d1205 3128 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 3129 {
c19d1205
ZW
3130 if (pool->section == now_seg
3131 && pool->sub_section == now_subseg)
3132 break;
a737bd4d
NC
3133 }
3134
c19d1205 3135 return pool;
a737bd4d
NC
3136}
3137
c19d1205
ZW
3138static literal_pool *
3139find_or_make_literal_pool (void)
a737bd4d 3140{
c19d1205
ZW
3141 /* Next literal pool ID number. */
3142 static unsigned int latest_pool_num = 1;
3143 literal_pool * pool;
a737bd4d 3144
c19d1205 3145 pool = find_literal_pool ();
a737bd4d 3146
c19d1205 3147 if (pool == NULL)
a737bd4d 3148 {
c19d1205 3149 /* Create a new pool. */
325801bd 3150 pool = XNEW (literal_pool);
c19d1205
ZW
3151 if (! pool)
3152 return NULL;
a737bd4d 3153
c19d1205
ZW
3154 pool->next_free_entry = 0;
3155 pool->section = now_seg;
3156 pool->sub_section = now_subseg;
3157 pool->next = list_of_pools;
3158 pool->symbol = NULL;
8335d6aa 3159 pool->alignment = 2;
c19d1205
ZW
3160
3161 /* Add it to the list. */
3162 list_of_pools = pool;
a737bd4d 3163 }
a737bd4d 3164
c19d1205
ZW
3165 /* New pools, and emptied pools, will have a NULL symbol. */
3166 if (pool->symbol == NULL)
a737bd4d 3167 {
c19d1205
ZW
3168 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3169 (valueT) 0, &zero_address_frag);
3170 pool->id = latest_pool_num ++;
a737bd4d
NC
3171 }
3172
c19d1205
ZW
3173 /* Done. */
3174 return pool;
a737bd4d
NC
3175}
3176
c19d1205 3177/* Add the literal in the global 'inst'
5f4273c7 3178 structure to the relevant literal pool. */
b99bd4ef
NC
3179
3180static int
8335d6aa 3181add_to_lit_pool (unsigned int nbytes)
b99bd4ef 3182{
8335d6aa
JW
3183#define PADDING_SLOT 0x1
3184#define LIT_ENTRY_SIZE_MASK 0xFF
c19d1205 3185 literal_pool * pool;
8335d6aa
JW
3186 unsigned int entry, pool_size = 0;
3187 bfd_boolean padding_slot_p = FALSE;
e56c722b 3188 unsigned imm1 = 0;
8335d6aa
JW
3189 unsigned imm2 = 0;
3190
3191 if (nbytes == 8)
3192 {
3193 imm1 = inst.operands[1].imm;
3194 imm2 = (inst.operands[1].regisimm ? inst.operands[1].reg
3195 : inst.reloc.exp.X_unsigned ? 0
2569ceb0 3196 : ((bfd_int64_t) inst.operands[1].imm) >> 32);
8335d6aa
JW
3197 if (target_big_endian)
3198 {
3199 imm1 = imm2;
3200 imm2 = inst.operands[1].imm;
3201 }
3202 }
b99bd4ef 3203
c19d1205
ZW
3204 pool = find_or_make_literal_pool ();
3205
3206 /* Check if this literal value is already in the pool. */
3207 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 3208 {
8335d6aa
JW
3209 if (nbytes == 4)
3210 {
3211 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3212 && (inst.reloc.exp.X_op == O_constant)
3213 && (pool->literals[entry].X_add_number
3214 == inst.reloc.exp.X_add_number)
3215 && (pool->literals[entry].X_md == nbytes)
3216 && (pool->literals[entry].X_unsigned
3217 == inst.reloc.exp.X_unsigned))
3218 break;
3219
3220 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3221 && (inst.reloc.exp.X_op == O_symbol)
3222 && (pool->literals[entry].X_add_number
3223 == inst.reloc.exp.X_add_number)
3224 && (pool->literals[entry].X_add_symbol
3225 == inst.reloc.exp.X_add_symbol)
3226 && (pool->literals[entry].X_op_symbol
3227 == inst.reloc.exp.X_op_symbol)
3228 && (pool->literals[entry].X_md == nbytes))
3229 break;
3230 }
3231 else if ((nbytes == 8)
3232 && !(pool_size & 0x7)
3233 && ((entry + 1) != pool->next_free_entry)
3234 && (pool->literals[entry].X_op == O_constant)
19f2f6a9 3235 && (pool->literals[entry].X_add_number == (offsetT) imm1)
8335d6aa
JW
3236 && (pool->literals[entry].X_unsigned
3237 == inst.reloc.exp.X_unsigned)
3238 && (pool->literals[entry + 1].X_op == O_constant)
19f2f6a9 3239 && (pool->literals[entry + 1].X_add_number == (offsetT) imm2)
8335d6aa
JW
3240 && (pool->literals[entry + 1].X_unsigned
3241 == inst.reloc.exp.X_unsigned))
c19d1205
ZW
3242 break;
3243
8335d6aa
JW
3244 padding_slot_p = ((pool->literals[entry].X_md >> 8) == PADDING_SLOT);
3245 if (padding_slot_p && (nbytes == 4))
c19d1205 3246 break;
8335d6aa
JW
3247
3248 pool_size += 4;
b99bd4ef
NC
3249 }
3250
c19d1205
ZW
3251 /* Do we need to create a new entry? */
3252 if (entry == pool->next_free_entry)
3253 {
3254 if (entry >= MAX_LITERAL_POOL_SIZE)
3255 {
3256 inst.error = _("literal pool overflow");
3257 return FAIL;
3258 }
3259
8335d6aa
JW
3260 if (nbytes == 8)
3261 {
3262 /* For 8-byte entries, we align to an 8-byte boundary,
3263 and split it into two 4-byte entries, because on 32-bit
3264 host, 8-byte constants are treated as big num, thus
3265 saved in "generic_bignum" which will be overwritten
3266 by later assignments.
3267
3268 We also need to make sure there is enough space for
3269 the split.
3270
3271 We also check to make sure the literal operand is a
3272 constant number. */
19f2f6a9
JW
3273 if (!(inst.reloc.exp.X_op == O_constant
3274 || inst.reloc.exp.X_op == O_big))
8335d6aa
JW
3275 {
3276 inst.error = _("invalid type for literal pool");
3277 return FAIL;
3278 }
3279 else if (pool_size & 0x7)
3280 {
3281 if ((entry + 2) >= MAX_LITERAL_POOL_SIZE)
3282 {
3283 inst.error = _("literal pool overflow");
3284 return FAIL;
3285 }
3286
3287 pool->literals[entry] = inst.reloc.exp;
3288 pool->literals[entry].X_add_number = 0;
3289 pool->literals[entry++].X_md = (PADDING_SLOT << 8) | 4;
3290 pool->next_free_entry += 1;
3291 pool_size += 4;
3292 }
3293 else if ((entry + 1) >= MAX_LITERAL_POOL_SIZE)
3294 {
3295 inst.error = _("literal pool overflow");
3296 return FAIL;
3297 }
3298
3299 pool->literals[entry] = inst.reloc.exp;
3300 pool->literals[entry].X_op = O_constant;
3301 pool->literals[entry].X_add_number = imm1;
3302 pool->literals[entry].X_unsigned = inst.reloc.exp.X_unsigned;
3303 pool->literals[entry++].X_md = 4;
3304 pool->literals[entry] = inst.reloc.exp;
3305 pool->literals[entry].X_op = O_constant;
3306 pool->literals[entry].X_add_number = imm2;
3307 pool->literals[entry].X_unsigned = inst.reloc.exp.X_unsigned;
3308 pool->literals[entry].X_md = 4;
3309 pool->alignment = 3;
3310 pool->next_free_entry += 1;
3311 }
3312 else
3313 {
3314 pool->literals[entry] = inst.reloc.exp;
3315 pool->literals[entry].X_md = 4;
3316 }
3317
a8040cf2
NC
3318#ifdef OBJ_ELF
3319 /* PR ld/12974: Record the location of the first source line to reference
3320 this entry in the literal pool. If it turns out during linking that the
3321 symbol does not exist we will be able to give an accurate line number for
3322 the (first use of the) missing reference. */
3323 if (debug_type == DEBUG_DWARF2)
3324 dwarf2_where (pool->locs + entry);
3325#endif
c19d1205
ZW
3326 pool->next_free_entry += 1;
3327 }
8335d6aa
JW
3328 else if (padding_slot_p)
3329 {
3330 pool->literals[entry] = inst.reloc.exp;
3331 pool->literals[entry].X_md = nbytes;
3332 }
b99bd4ef 3333
c19d1205 3334 inst.reloc.exp.X_op = O_symbol;
8335d6aa 3335 inst.reloc.exp.X_add_number = pool_size;
c19d1205 3336 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 3337
c19d1205 3338 return SUCCESS;
b99bd4ef
NC
3339}
3340
2e6976a8 3341bfd_boolean
2e57ce7b 3342tc_start_label_without_colon (void)
2e6976a8
DG
3343{
3344 bfd_boolean ret = TRUE;
3345
3346 if (codecomposer_syntax && asmfunc_state == WAITING_ASMFUNC_NAME)
3347 {
2e57ce7b 3348 const char *label = input_line_pointer;
2e6976a8
DG
3349
3350 while (!is_end_of_line[(int) label[-1]])
3351 --label;
3352
3353 if (*label == '.')
3354 {
3355 as_bad (_("Invalid label '%s'"), label);
3356 ret = FALSE;
3357 }
3358
3359 asmfunc_debug (label);
3360
3361 asmfunc_state = WAITING_ENDASMFUNC;
3362 }
3363
3364 return ret;
3365}
3366
c19d1205
ZW
3367/* Can't use symbol_new here, so have to create a symbol and then at
3368 a later date assign it a value. Thats what these functions do. */
e16bb312 3369
c19d1205
ZW
3370static void
3371symbol_locate (symbolS * symbolP,
3372 const char * name, /* It is copied, the caller can modify. */
3373 segT segment, /* Segment identifier (SEG_<something>). */
3374 valueT valu, /* Symbol value. */
3375 fragS * frag) /* Associated fragment. */
3376{
e57e6ddc 3377 size_t name_length;
c19d1205 3378 char * preserved_copy_of_name;
e16bb312 3379
c19d1205
ZW
3380 name_length = strlen (name) + 1; /* +1 for \0. */
3381 obstack_grow (&notes, name, name_length);
21d799b5 3382 preserved_copy_of_name = (char *) obstack_finish (&notes);
e16bb312 3383
c19d1205
ZW
3384#ifdef tc_canonicalize_symbol_name
3385 preserved_copy_of_name =
3386 tc_canonicalize_symbol_name (preserved_copy_of_name);
3387#endif
b99bd4ef 3388
c19d1205 3389 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 3390
c19d1205
ZW
3391 S_SET_SEGMENT (symbolP, segment);
3392 S_SET_VALUE (symbolP, valu);
3393 symbol_clear_list_pointers (symbolP);
b99bd4ef 3394
c19d1205 3395 symbol_set_frag (symbolP, frag);
b99bd4ef 3396
c19d1205
ZW
3397 /* Link to end of symbol chain. */
3398 {
3399 extern int symbol_table_frozen;
b99bd4ef 3400
c19d1205
ZW
3401 if (symbol_table_frozen)
3402 abort ();
3403 }
b99bd4ef 3404
c19d1205 3405 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 3406
c19d1205 3407 obj_symbol_new_hook (symbolP);
b99bd4ef 3408
c19d1205
ZW
3409#ifdef tc_symbol_new_hook
3410 tc_symbol_new_hook (symbolP);
3411#endif
3412
3413#ifdef DEBUG_SYMS
3414 verify_symbol_chain (symbol_rootP, symbol_lastP);
3415#endif /* DEBUG_SYMS */
b99bd4ef
NC
3416}
3417
c19d1205
ZW
3418static void
3419s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3420{
c19d1205
ZW
3421 unsigned int entry;
3422 literal_pool * pool;
3423 char sym_name[20];
b99bd4ef 3424
c19d1205
ZW
3425 pool = find_literal_pool ();
3426 if (pool == NULL
3427 || pool->symbol == NULL
3428 || pool->next_free_entry == 0)
3429 return;
b99bd4ef 3430
c19d1205
ZW
3431 /* Align pool as you have word accesses.
3432 Only make a frag if we have to. */
3433 if (!need_pass_2)
8335d6aa 3434 frag_align (pool->alignment, 0, 0);
b99bd4ef 3435
c19d1205 3436 record_alignment (now_seg, 2);
b99bd4ef 3437
aaca88ef 3438#ifdef OBJ_ELF
47fc6e36
WN
3439 seg_info (now_seg)->tc_segment_info_data.mapstate = MAP_DATA;
3440 make_mapping_symbol (MAP_DATA, (valueT) frag_now_fix (), frag_now);
aaca88ef 3441#endif
c19d1205 3442 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 3443
c19d1205
ZW
3444 symbol_locate (pool->symbol, sym_name, now_seg,
3445 (valueT) frag_now_fix (), frag_now);
3446 symbol_table_insert (pool->symbol);
b99bd4ef 3447
c19d1205 3448 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 3449
c19d1205
ZW
3450#if defined OBJ_COFF || defined OBJ_ELF
3451 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3452#endif
6c43fab6 3453
c19d1205 3454 for (entry = 0; entry < pool->next_free_entry; entry ++)
a8040cf2
NC
3455 {
3456#ifdef OBJ_ELF
3457 if (debug_type == DEBUG_DWARF2)
3458 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3459#endif
3460 /* First output the expression in the instruction to the pool. */
8335d6aa
JW
3461 emit_expr (&(pool->literals[entry]),
3462 pool->literals[entry].X_md & LIT_ENTRY_SIZE_MASK);
a8040cf2 3463 }
b99bd4ef 3464
c19d1205
ZW
3465 /* Mark the pool as empty. */
3466 pool->next_free_entry = 0;
3467 pool->symbol = NULL;
b99bd4ef
NC
3468}
3469
c19d1205
ZW
3470#ifdef OBJ_ELF
3471/* Forward declarations for functions below, in the MD interface
3472 section. */
3473static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3474static valueT create_unwind_entry (int);
3475static void start_unwind_section (const segT, int);
3476static void add_unwind_opcode (valueT, int);
3477static void flush_pending_unwind (void);
b99bd4ef 3478
c19d1205 3479/* Directives: Data. */
b99bd4ef 3480
c19d1205
ZW
3481static void
3482s_arm_elf_cons (int nbytes)
3483{
3484 expressionS exp;
b99bd4ef 3485
c19d1205
ZW
3486#ifdef md_flush_pending_output
3487 md_flush_pending_output ();
3488#endif
b99bd4ef 3489
c19d1205 3490 if (is_it_end_of_statement ())
b99bd4ef 3491 {
c19d1205
ZW
3492 demand_empty_rest_of_line ();
3493 return;
b99bd4ef
NC
3494 }
3495
c19d1205
ZW
3496#ifdef md_cons_align
3497 md_cons_align (nbytes);
3498#endif
b99bd4ef 3499
c19d1205
ZW
3500 mapping_state (MAP_DATA);
3501 do
b99bd4ef 3502 {
c19d1205
ZW
3503 int reloc;
3504 char *base = input_line_pointer;
b99bd4ef 3505
c19d1205 3506 expression (& exp);
b99bd4ef 3507
c19d1205
ZW
3508 if (exp.X_op != O_symbol)
3509 emit_expr (&exp, (unsigned int) nbytes);
3510 else
3511 {
3512 char *before_reloc = input_line_pointer;
3513 reloc = parse_reloc (&input_line_pointer);
3514 if (reloc == -1)
3515 {
3516 as_bad (_("unrecognized relocation suffix"));
3517 ignore_rest_of_line ();
3518 return;
3519 }
3520 else if (reloc == BFD_RELOC_UNUSED)
3521 emit_expr (&exp, (unsigned int) nbytes);
3522 else
3523 {
21d799b5 3524 reloc_howto_type *howto = (reloc_howto_type *)
477330fc
RM
3525 bfd_reloc_type_lookup (stdoutput,
3526 (bfd_reloc_code_real_type) reloc);
c19d1205 3527 int size = bfd_get_reloc_size (howto);
b99bd4ef 3528
2fc8bdac
ZW
3529 if (reloc == BFD_RELOC_ARM_PLT32)
3530 {
3531 as_bad (_("(plt) is only valid on branch targets"));
3532 reloc = BFD_RELOC_UNUSED;
3533 size = 0;
3534 }
3535
c19d1205 3536 if (size > nbytes)
2fc8bdac 3537 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
3538 howto->name, nbytes);
3539 else
3540 {
3541 /* We've parsed an expression stopping at O_symbol.
3542 But there may be more expression left now that we
3543 have parsed the relocation marker. Parse it again.
3544 XXX Surely there is a cleaner way to do this. */
3545 char *p = input_line_pointer;
3546 int offset;
325801bd 3547 char *save_buf = XNEWVEC (char, input_line_pointer - base);
e1fa0163 3548
c19d1205
ZW
3549 memcpy (save_buf, base, input_line_pointer - base);
3550 memmove (base + (input_line_pointer - before_reloc),
3551 base, before_reloc - base);
3552
3553 input_line_pointer = base + (input_line_pointer-before_reloc);
3554 expression (&exp);
3555 memcpy (base, save_buf, p - base);
3556
3557 offset = nbytes - size;
4b1a927e
AM
3558 p = frag_more (nbytes);
3559 memset (p, 0, nbytes);
c19d1205 3560 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
21d799b5 3561 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
e1fa0163 3562 free (save_buf);
c19d1205
ZW
3563 }
3564 }
3565 }
b99bd4ef 3566 }
c19d1205 3567 while (*input_line_pointer++ == ',');
b99bd4ef 3568
c19d1205
ZW
3569 /* Put terminator back into stream. */
3570 input_line_pointer --;
3571 demand_empty_rest_of_line ();
b99bd4ef
NC
3572}
3573
c921be7d
NC
3574/* Emit an expression containing a 32-bit thumb instruction.
3575 Implementation based on put_thumb32_insn. */
3576
3577static void
3578emit_thumb32_expr (expressionS * exp)
3579{
3580 expressionS exp_high = *exp;
3581
3582 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3583 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3584 exp->X_add_number &= 0xffff;
3585 emit_expr (exp, (unsigned int) THUMB_SIZE);
3586}
3587
3588/* Guess the instruction size based on the opcode. */
3589
3590static int
3591thumb_insn_size (int opcode)
3592{
3593 if ((unsigned int) opcode < 0xe800u)
3594 return 2;
3595 else if ((unsigned int) opcode >= 0xe8000000u)
3596 return 4;
3597 else
3598 return 0;
3599}
3600
3601static bfd_boolean
3602emit_insn (expressionS *exp, int nbytes)
3603{
3604 int size = 0;
3605
3606 if (exp->X_op == O_constant)
3607 {
3608 size = nbytes;
3609
3610 if (size == 0)
3611 size = thumb_insn_size (exp->X_add_number);
3612
3613 if (size != 0)
3614 {
3615 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3616 {
3617 as_bad (_(".inst.n operand too big. "\
3618 "Use .inst.w instead"));
3619 size = 0;
3620 }
3621 else
3622 {
3623 if (now_it.state == AUTOMATIC_IT_BLOCK)
3624 set_it_insn_type_nonvoid (OUTSIDE_IT_INSN, 0);
3625 else
3626 set_it_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3627
3628 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3629 emit_thumb32_expr (exp);
3630 else
3631 emit_expr (exp, (unsigned int) size);
3632
3633 it_fsm_post_encode ();
3634 }
3635 }
3636 else
3637 as_bad (_("cannot determine Thumb instruction size. " \
3638 "Use .inst.n/.inst.w instead"));
3639 }
3640 else
3641 as_bad (_("constant expression required"));
3642
3643 return (size != 0);
3644}
3645
3646/* Like s_arm_elf_cons but do not use md_cons_align and
3647 set the mapping state to MAP_ARM/MAP_THUMB. */
3648
3649static void
3650s_arm_elf_inst (int nbytes)
3651{
3652 if (is_it_end_of_statement ())
3653 {
3654 demand_empty_rest_of_line ();
3655 return;
3656 }
3657
3658 /* Calling mapping_state () here will not change ARM/THUMB,
3659 but will ensure not to be in DATA state. */
3660
3661 if (thumb_mode)
3662 mapping_state (MAP_THUMB);
3663 else
3664 {
3665 if (nbytes != 0)
3666 {
3667 as_bad (_("width suffixes are invalid in ARM mode"));
3668 ignore_rest_of_line ();
3669 return;
3670 }
3671
3672 nbytes = 4;
3673
3674 mapping_state (MAP_ARM);
3675 }
3676
3677 do
3678 {
3679 expressionS exp;
3680
3681 expression (& exp);
3682
3683 if (! emit_insn (& exp, nbytes))
3684 {
3685 ignore_rest_of_line ();
3686 return;
3687 }
3688 }
3689 while (*input_line_pointer++ == ',');
3690
3691 /* Put terminator back into stream. */
3692 input_line_pointer --;
3693 demand_empty_rest_of_line ();
3694}
b99bd4ef 3695
c19d1205 3696/* Parse a .rel31 directive. */
b99bd4ef 3697
c19d1205
ZW
3698static void
3699s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3700{
3701 expressionS exp;
3702 char *p;
3703 valueT highbit;
b99bd4ef 3704
c19d1205
ZW
3705 highbit = 0;
3706 if (*input_line_pointer == '1')
3707 highbit = 0x80000000;
3708 else if (*input_line_pointer != '0')
3709 as_bad (_("expected 0 or 1"));
b99bd4ef 3710
c19d1205
ZW
3711 input_line_pointer++;
3712 if (*input_line_pointer != ',')
3713 as_bad (_("missing comma"));
3714 input_line_pointer++;
b99bd4ef 3715
c19d1205
ZW
3716#ifdef md_flush_pending_output
3717 md_flush_pending_output ();
3718#endif
b99bd4ef 3719
c19d1205
ZW
3720#ifdef md_cons_align
3721 md_cons_align (4);
3722#endif
b99bd4ef 3723
c19d1205 3724 mapping_state (MAP_DATA);
b99bd4ef 3725
c19d1205 3726 expression (&exp);
b99bd4ef 3727
c19d1205
ZW
3728 p = frag_more (4);
3729 md_number_to_chars (p, highbit, 4);
3730 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
3731 BFD_RELOC_ARM_PREL31);
b99bd4ef 3732
c19d1205 3733 demand_empty_rest_of_line ();
b99bd4ef
NC
3734}
3735
c19d1205 3736/* Directives: AEABI stack-unwind tables. */
b99bd4ef 3737
c19d1205 3738/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3739
c19d1205
ZW
3740static void
3741s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3742{
3743 demand_empty_rest_of_line ();
921e5f0a
PB
3744 if (unwind.proc_start)
3745 {
c921be7d 3746 as_bad (_("duplicate .fnstart directive"));
921e5f0a
PB
3747 return;
3748 }
3749
c19d1205
ZW
3750 /* Mark the start of the function. */
3751 unwind.proc_start = expr_build_dot ();
b99bd4ef 3752
c19d1205
ZW
3753 /* Reset the rest of the unwind info. */
3754 unwind.opcode_count = 0;
3755 unwind.table_entry = NULL;
3756 unwind.personality_routine = NULL;
3757 unwind.personality_index = -1;
3758 unwind.frame_size = 0;
3759 unwind.fp_offset = 0;
fdfde340 3760 unwind.fp_reg = REG_SP;
c19d1205
ZW
3761 unwind.fp_used = 0;
3762 unwind.sp_restored = 0;
3763}
b99bd4ef 3764
b99bd4ef 3765
c19d1205
ZW
3766/* Parse a handlerdata directive. Creates the exception handling table entry
3767 for the function. */
b99bd4ef 3768
c19d1205
ZW
3769static void
3770s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3771{
3772 demand_empty_rest_of_line ();
921e5f0a 3773 if (!unwind.proc_start)
c921be7d 3774 as_bad (MISSING_FNSTART);
921e5f0a 3775
c19d1205 3776 if (unwind.table_entry)
6decc662 3777 as_bad (_("duplicate .handlerdata directive"));
f02232aa 3778
c19d1205
ZW
3779 create_unwind_entry (1);
3780}
a737bd4d 3781
c19d1205 3782/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3783
c19d1205
ZW
3784static void
3785s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3786{
3787 long where;
3788 char *ptr;
3789 valueT val;
940b5ce0 3790 unsigned int marked_pr_dependency;
f02232aa 3791
c19d1205 3792 demand_empty_rest_of_line ();
f02232aa 3793
921e5f0a
PB
3794 if (!unwind.proc_start)
3795 {
c921be7d 3796 as_bad (_(".fnend directive without .fnstart"));
921e5f0a
PB
3797 return;
3798 }
3799
c19d1205
ZW
3800 /* Add eh table entry. */
3801 if (unwind.table_entry == NULL)
3802 val = create_unwind_entry (0);
3803 else
3804 val = 0;
f02232aa 3805
c19d1205
ZW
3806 /* Add index table entry. This is two words. */
3807 start_unwind_section (unwind.saved_seg, 1);
3808 frag_align (2, 0, 0);
3809 record_alignment (now_seg, 2);
b99bd4ef 3810
c19d1205 3811 ptr = frag_more (8);
5011093d 3812 memset (ptr, 0, 8);
c19d1205 3813 where = frag_now_fix () - 8;
f02232aa 3814
c19d1205
ZW
3815 /* Self relative offset of the function start. */
3816 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3817 BFD_RELOC_ARM_PREL31);
f02232aa 3818
c19d1205
ZW
3819 /* Indicate dependency on EHABI-defined personality routines to the
3820 linker, if it hasn't been done already. */
940b5ce0
DJ
3821 marked_pr_dependency
3822 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
c19d1205
ZW
3823 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3824 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3825 {
5f4273c7
NC
3826 static const char *const name[] =
3827 {
3828 "__aeabi_unwind_cpp_pr0",
3829 "__aeabi_unwind_cpp_pr1",
3830 "__aeabi_unwind_cpp_pr2"
3831 };
c19d1205
ZW
3832 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3833 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
c19d1205 3834 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
940b5ce0 3835 |= 1 << unwind.personality_index;
c19d1205 3836 }
f02232aa 3837
c19d1205
ZW
3838 if (val)
3839 /* Inline exception table entry. */
3840 md_number_to_chars (ptr + 4, val, 4);
3841 else
3842 /* Self relative offset of the table entry. */
3843 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3844 BFD_RELOC_ARM_PREL31);
f02232aa 3845
c19d1205
ZW
3846 /* Restore the original section. */
3847 subseg_set (unwind.saved_seg, unwind.saved_subseg);
921e5f0a
PB
3848
3849 unwind.proc_start = NULL;
c19d1205 3850}
f02232aa 3851
f02232aa 3852
c19d1205 3853/* Parse an unwind_cantunwind directive. */
b99bd4ef 3854
c19d1205
ZW
3855static void
3856s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3857{
3858 demand_empty_rest_of_line ();
921e5f0a 3859 if (!unwind.proc_start)
c921be7d 3860 as_bad (MISSING_FNSTART);
921e5f0a 3861
c19d1205
ZW
3862 if (unwind.personality_routine || unwind.personality_index != -1)
3863 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3864
c19d1205
ZW
3865 unwind.personality_index = -2;
3866}
b99bd4ef 3867
b99bd4ef 3868
c19d1205 3869/* Parse a personalityindex directive. */
b99bd4ef 3870
c19d1205
ZW
3871static void
3872s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3873{
3874 expressionS exp;
b99bd4ef 3875
921e5f0a 3876 if (!unwind.proc_start)
c921be7d 3877 as_bad (MISSING_FNSTART);
921e5f0a 3878
c19d1205
ZW
3879 if (unwind.personality_routine || unwind.personality_index != -1)
3880 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3881
c19d1205 3882 expression (&exp);
b99bd4ef 3883
c19d1205
ZW
3884 if (exp.X_op != O_constant
3885 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3886 {
c19d1205
ZW
3887 as_bad (_("bad personality routine number"));
3888 ignore_rest_of_line ();
3889 return;
b99bd4ef
NC
3890 }
3891
c19d1205 3892 unwind.personality_index = exp.X_add_number;
b99bd4ef 3893
c19d1205
ZW
3894 demand_empty_rest_of_line ();
3895}
e16bb312 3896
e16bb312 3897
c19d1205 3898/* Parse a personality directive. */
e16bb312 3899
c19d1205
ZW
3900static void
3901s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3902{
3903 char *name, *p, c;
a737bd4d 3904
921e5f0a 3905 if (!unwind.proc_start)
c921be7d 3906 as_bad (MISSING_FNSTART);
921e5f0a 3907
c19d1205
ZW
3908 if (unwind.personality_routine || unwind.personality_index != -1)
3909 as_bad (_("duplicate .personality directive"));
a737bd4d 3910
d02603dc 3911 c = get_symbol_name (& name);
c19d1205 3912 p = input_line_pointer;
d02603dc
NC
3913 if (c == '"')
3914 ++ input_line_pointer;
c19d1205
ZW
3915 unwind.personality_routine = symbol_find_or_make (name);
3916 *p = c;
3917 demand_empty_rest_of_line ();
3918}
e16bb312 3919
e16bb312 3920
c19d1205 3921/* Parse a directive saving core registers. */
e16bb312 3922
c19d1205
ZW
3923static void
3924s_arm_unwind_save_core (void)
e16bb312 3925{
c19d1205
ZW
3926 valueT op;
3927 long range;
3928 int n;
e16bb312 3929
c19d1205
ZW
3930 range = parse_reg_list (&input_line_pointer);
3931 if (range == FAIL)
e16bb312 3932 {
c19d1205
ZW
3933 as_bad (_("expected register list"));
3934 ignore_rest_of_line ();
3935 return;
3936 }
e16bb312 3937
c19d1205 3938 demand_empty_rest_of_line ();
e16bb312 3939
c19d1205
ZW
3940 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3941 into .unwind_save {..., sp...}. We aren't bothered about the value of
3942 ip because it is clobbered by calls. */
3943 if (unwind.sp_restored && unwind.fp_reg == 12
3944 && (range & 0x3000) == 0x1000)
3945 {
3946 unwind.opcode_count--;
3947 unwind.sp_restored = 0;
3948 range = (range | 0x2000) & ~0x1000;
3949 unwind.pending_offset = 0;
3950 }
e16bb312 3951
01ae4198
DJ
3952 /* Pop r4-r15. */
3953 if (range & 0xfff0)
c19d1205 3954 {
01ae4198
DJ
3955 /* See if we can use the short opcodes. These pop a block of up to 8
3956 registers starting with r4, plus maybe r14. */
3957 for (n = 0; n < 8; n++)
3958 {
3959 /* Break at the first non-saved register. */
3960 if ((range & (1 << (n + 4))) == 0)
3961 break;
3962 }
3963 /* See if there are any other bits set. */
3964 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3965 {
3966 /* Use the long form. */
3967 op = 0x8000 | ((range >> 4) & 0xfff);
3968 add_unwind_opcode (op, 2);
3969 }
0dd132b6 3970 else
01ae4198
DJ
3971 {
3972 /* Use the short form. */
3973 if (range & 0x4000)
3974 op = 0xa8; /* Pop r14. */
3975 else
3976 op = 0xa0; /* Do not pop r14. */
3977 op |= (n - 1);
3978 add_unwind_opcode (op, 1);
3979 }
c19d1205 3980 }
0dd132b6 3981
c19d1205
ZW
3982 /* Pop r0-r3. */
3983 if (range & 0xf)
3984 {
3985 op = 0xb100 | (range & 0xf);
3986 add_unwind_opcode (op, 2);
0dd132b6
NC
3987 }
3988
c19d1205
ZW
3989 /* Record the number of bytes pushed. */
3990 for (n = 0; n < 16; n++)
3991 {
3992 if (range & (1 << n))
3993 unwind.frame_size += 4;
3994 }
0dd132b6
NC
3995}
3996
c19d1205
ZW
3997
3998/* Parse a directive saving FPA registers. */
b99bd4ef
NC
3999
4000static void
c19d1205 4001s_arm_unwind_save_fpa (int reg)
b99bd4ef 4002{
c19d1205
ZW
4003 expressionS exp;
4004 int num_regs;
4005 valueT op;
b99bd4ef 4006
c19d1205
ZW
4007 /* Get Number of registers to transfer. */
4008 if (skip_past_comma (&input_line_pointer) != FAIL)
4009 expression (&exp);
4010 else
4011 exp.X_op = O_illegal;
b99bd4ef 4012
c19d1205 4013 if (exp.X_op != O_constant)
b99bd4ef 4014 {
c19d1205
ZW
4015 as_bad (_("expected , <constant>"));
4016 ignore_rest_of_line ();
b99bd4ef
NC
4017 return;
4018 }
4019
c19d1205
ZW
4020 num_regs = exp.X_add_number;
4021
4022 if (num_regs < 1 || num_regs > 4)
b99bd4ef 4023 {
c19d1205
ZW
4024 as_bad (_("number of registers must be in the range [1:4]"));
4025 ignore_rest_of_line ();
b99bd4ef
NC
4026 return;
4027 }
4028
c19d1205 4029 demand_empty_rest_of_line ();
b99bd4ef 4030
c19d1205
ZW
4031 if (reg == 4)
4032 {
4033 /* Short form. */
4034 op = 0xb4 | (num_regs - 1);
4035 add_unwind_opcode (op, 1);
4036 }
b99bd4ef
NC
4037 else
4038 {
c19d1205
ZW
4039 /* Long form. */
4040 op = 0xc800 | (reg << 4) | (num_regs - 1);
4041 add_unwind_opcode (op, 2);
b99bd4ef 4042 }
c19d1205 4043 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
4044}
4045
c19d1205 4046
fa073d69
MS
4047/* Parse a directive saving VFP registers for ARMv6 and above. */
4048
4049static void
4050s_arm_unwind_save_vfp_armv6 (void)
4051{
4052 int count;
4053 unsigned int start;
4054 valueT op;
4055 int num_vfpv3_regs = 0;
4056 int num_regs_below_16;
4057
4058 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
4059 if (count == FAIL)
4060 {
4061 as_bad (_("expected register list"));
4062 ignore_rest_of_line ();
4063 return;
4064 }
4065
4066 demand_empty_rest_of_line ();
4067
4068 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
4069 than FSTMX/FLDMX-style ones). */
4070
4071 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
4072 if (start >= 16)
4073 num_vfpv3_regs = count;
4074 else if (start + count > 16)
4075 num_vfpv3_regs = start + count - 16;
4076
4077 if (num_vfpv3_regs > 0)
4078 {
4079 int start_offset = start > 16 ? start - 16 : 0;
4080 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
4081 add_unwind_opcode (op, 2);
4082 }
4083
4084 /* Generate opcode for registers numbered in the range 0 .. 15. */
4085 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
9c2799c2 4086 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
fa073d69
MS
4087 if (num_regs_below_16 > 0)
4088 {
4089 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
4090 add_unwind_opcode (op, 2);
4091 }
4092
4093 unwind.frame_size += count * 8;
4094}
4095
4096
4097/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
4098
4099static void
c19d1205 4100s_arm_unwind_save_vfp (void)
b99bd4ef 4101{
c19d1205 4102 int count;
ca3f61f7 4103 unsigned int reg;
c19d1205 4104 valueT op;
b99bd4ef 4105
5287ad62 4106 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 4107 if (count == FAIL)
b99bd4ef 4108 {
c19d1205
ZW
4109 as_bad (_("expected register list"));
4110 ignore_rest_of_line ();
b99bd4ef
NC
4111 return;
4112 }
4113
c19d1205 4114 demand_empty_rest_of_line ();
b99bd4ef 4115
c19d1205 4116 if (reg == 8)
b99bd4ef 4117 {
c19d1205
ZW
4118 /* Short form. */
4119 op = 0xb8 | (count - 1);
4120 add_unwind_opcode (op, 1);
b99bd4ef 4121 }
c19d1205 4122 else
b99bd4ef 4123 {
c19d1205
ZW
4124 /* Long form. */
4125 op = 0xb300 | (reg << 4) | (count - 1);
4126 add_unwind_opcode (op, 2);
b99bd4ef 4127 }
c19d1205
ZW
4128 unwind.frame_size += count * 8 + 4;
4129}
b99bd4ef 4130
b99bd4ef 4131
c19d1205
ZW
4132/* Parse a directive saving iWMMXt data registers. */
4133
4134static void
4135s_arm_unwind_save_mmxwr (void)
4136{
4137 int reg;
4138 int hi_reg;
4139 int i;
4140 unsigned mask = 0;
4141 valueT op;
b99bd4ef 4142
c19d1205
ZW
4143 if (*input_line_pointer == '{')
4144 input_line_pointer++;
b99bd4ef 4145
c19d1205 4146 do
b99bd4ef 4147 {
dcbf9037 4148 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 4149
c19d1205 4150 if (reg == FAIL)
b99bd4ef 4151 {
9b7132d3 4152 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205 4153 goto error;
b99bd4ef
NC
4154 }
4155
c19d1205
ZW
4156 if (mask >> reg)
4157 as_tsktsk (_("register list not in ascending order"));
4158 mask |= 1 << reg;
b99bd4ef 4159
c19d1205
ZW
4160 if (*input_line_pointer == '-')
4161 {
4162 input_line_pointer++;
dcbf9037 4163 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
4164 if (hi_reg == FAIL)
4165 {
9b7132d3 4166 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205
ZW
4167 goto error;
4168 }
4169 else if (reg >= hi_reg)
4170 {
4171 as_bad (_("bad register range"));
4172 goto error;
4173 }
4174 for (; reg < hi_reg; reg++)
4175 mask |= 1 << reg;
4176 }
4177 }
4178 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4179
d996d970 4180 skip_past_char (&input_line_pointer, '}');
b99bd4ef 4181
c19d1205 4182 demand_empty_rest_of_line ();
b99bd4ef 4183
708587a4 4184 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4185 the list. */
4186 flush_pending_unwind ();
b99bd4ef 4187
c19d1205 4188 for (i = 0; i < 16; i++)
b99bd4ef 4189 {
c19d1205
ZW
4190 if (mask & (1 << i))
4191 unwind.frame_size += 8;
b99bd4ef
NC
4192 }
4193
c19d1205
ZW
4194 /* Attempt to combine with a previous opcode. We do this because gcc
4195 likes to output separate unwind directives for a single block of
4196 registers. */
4197 if (unwind.opcode_count > 0)
b99bd4ef 4198 {
c19d1205
ZW
4199 i = unwind.opcodes[unwind.opcode_count - 1];
4200 if ((i & 0xf8) == 0xc0)
4201 {
4202 i &= 7;
4203 /* Only merge if the blocks are contiguous. */
4204 if (i < 6)
4205 {
4206 if ((mask & 0xfe00) == (1 << 9))
4207 {
4208 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
4209 unwind.opcode_count--;
4210 }
4211 }
4212 else if (i == 6 && unwind.opcode_count >= 2)
4213 {
4214 i = unwind.opcodes[unwind.opcode_count - 2];
4215 reg = i >> 4;
4216 i &= 0xf;
b99bd4ef 4217
c19d1205
ZW
4218 op = 0xffff << (reg - 1);
4219 if (reg > 0
87a1fd79 4220 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
4221 {
4222 op = (1 << (reg + i + 1)) - 1;
4223 op &= ~((1 << reg) - 1);
4224 mask |= op;
4225 unwind.opcode_count -= 2;
4226 }
4227 }
4228 }
b99bd4ef
NC
4229 }
4230
c19d1205
ZW
4231 hi_reg = 15;
4232 /* We want to generate opcodes in the order the registers have been
4233 saved, ie. descending order. */
4234 for (reg = 15; reg >= -1; reg--)
b99bd4ef 4235 {
c19d1205
ZW
4236 /* Save registers in blocks. */
4237 if (reg < 0
4238 || !(mask & (1 << reg)))
4239 {
4240 /* We found an unsaved reg. Generate opcodes to save the
5f4273c7 4241 preceding block. */
c19d1205
ZW
4242 if (reg != hi_reg)
4243 {
4244 if (reg == 9)
4245 {
4246 /* Short form. */
4247 op = 0xc0 | (hi_reg - 10);
4248 add_unwind_opcode (op, 1);
4249 }
4250 else
4251 {
4252 /* Long form. */
4253 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4254 add_unwind_opcode (op, 2);
4255 }
4256 }
4257 hi_reg = reg - 1;
4258 }
b99bd4ef
NC
4259 }
4260
c19d1205
ZW
4261 return;
4262error:
4263 ignore_rest_of_line ();
b99bd4ef
NC
4264}
4265
4266static void
c19d1205 4267s_arm_unwind_save_mmxwcg (void)
b99bd4ef 4268{
c19d1205
ZW
4269 int reg;
4270 int hi_reg;
4271 unsigned mask = 0;
4272 valueT op;
b99bd4ef 4273
c19d1205
ZW
4274 if (*input_line_pointer == '{')
4275 input_line_pointer++;
b99bd4ef 4276
477330fc
RM
4277 skip_whitespace (input_line_pointer);
4278
c19d1205 4279 do
b99bd4ef 4280 {
dcbf9037 4281 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 4282
c19d1205
ZW
4283 if (reg == FAIL)
4284 {
9b7132d3 4285 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4286 goto error;
4287 }
b99bd4ef 4288
c19d1205
ZW
4289 reg -= 8;
4290 if (mask >> reg)
4291 as_tsktsk (_("register list not in ascending order"));
4292 mask |= 1 << reg;
b99bd4ef 4293
c19d1205
ZW
4294 if (*input_line_pointer == '-')
4295 {
4296 input_line_pointer++;
dcbf9037 4297 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
4298 if (hi_reg == FAIL)
4299 {
9b7132d3 4300 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4301 goto error;
4302 }
4303 else if (reg >= hi_reg)
4304 {
4305 as_bad (_("bad register range"));
4306 goto error;
4307 }
4308 for (; reg < hi_reg; reg++)
4309 mask |= 1 << reg;
4310 }
b99bd4ef 4311 }
c19d1205 4312 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4313
d996d970 4314 skip_past_char (&input_line_pointer, '}');
b99bd4ef 4315
c19d1205
ZW
4316 demand_empty_rest_of_line ();
4317
708587a4 4318 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4319 the list. */
4320 flush_pending_unwind ();
b99bd4ef 4321
c19d1205 4322 for (reg = 0; reg < 16; reg++)
b99bd4ef 4323 {
c19d1205
ZW
4324 if (mask & (1 << reg))
4325 unwind.frame_size += 4;
b99bd4ef 4326 }
c19d1205
ZW
4327 op = 0xc700 | mask;
4328 add_unwind_opcode (op, 2);
4329 return;
4330error:
4331 ignore_rest_of_line ();
b99bd4ef
NC
4332}
4333
c19d1205 4334
fa073d69
MS
4335/* Parse an unwind_save directive.
4336 If the argument is non-zero, this is a .vsave directive. */
c19d1205 4337
b99bd4ef 4338static void
fa073d69 4339s_arm_unwind_save (int arch_v6)
b99bd4ef 4340{
c19d1205
ZW
4341 char *peek;
4342 struct reg_entry *reg;
4343 bfd_boolean had_brace = FALSE;
b99bd4ef 4344
921e5f0a 4345 if (!unwind.proc_start)
c921be7d 4346 as_bad (MISSING_FNSTART);
921e5f0a 4347
c19d1205
ZW
4348 /* Figure out what sort of save we have. */
4349 peek = input_line_pointer;
b99bd4ef 4350
c19d1205 4351 if (*peek == '{')
b99bd4ef 4352 {
c19d1205
ZW
4353 had_brace = TRUE;
4354 peek++;
b99bd4ef
NC
4355 }
4356
c19d1205 4357 reg = arm_reg_parse_multi (&peek);
b99bd4ef 4358
c19d1205 4359 if (!reg)
b99bd4ef 4360 {
c19d1205
ZW
4361 as_bad (_("register expected"));
4362 ignore_rest_of_line ();
b99bd4ef
NC
4363 return;
4364 }
4365
c19d1205 4366 switch (reg->type)
b99bd4ef 4367 {
c19d1205
ZW
4368 case REG_TYPE_FN:
4369 if (had_brace)
4370 {
4371 as_bad (_("FPA .unwind_save does not take a register list"));
4372 ignore_rest_of_line ();
4373 return;
4374 }
93ac2687 4375 input_line_pointer = peek;
c19d1205 4376 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 4377 return;
c19d1205 4378
1f5afe1c
NC
4379 case REG_TYPE_RN:
4380 s_arm_unwind_save_core ();
4381 return;
4382
fa073d69
MS
4383 case REG_TYPE_VFD:
4384 if (arch_v6)
477330fc 4385 s_arm_unwind_save_vfp_armv6 ();
fa073d69 4386 else
477330fc 4387 s_arm_unwind_save_vfp ();
fa073d69 4388 return;
1f5afe1c
NC
4389
4390 case REG_TYPE_MMXWR:
4391 s_arm_unwind_save_mmxwr ();
4392 return;
4393
4394 case REG_TYPE_MMXWCG:
4395 s_arm_unwind_save_mmxwcg ();
4396 return;
c19d1205
ZW
4397
4398 default:
4399 as_bad (_(".unwind_save does not support this kind of register"));
4400 ignore_rest_of_line ();
b99bd4ef 4401 }
c19d1205 4402}
b99bd4ef 4403
b99bd4ef 4404
c19d1205
ZW
4405/* Parse an unwind_movsp directive. */
4406
4407static void
4408s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4409{
4410 int reg;
4411 valueT op;
4fa3602b 4412 int offset;
c19d1205 4413
921e5f0a 4414 if (!unwind.proc_start)
c921be7d 4415 as_bad (MISSING_FNSTART);
921e5f0a 4416
dcbf9037 4417 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 4418 if (reg == FAIL)
b99bd4ef 4419 {
9b7132d3 4420 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
c19d1205 4421 ignore_rest_of_line ();
b99bd4ef
NC
4422 return;
4423 }
4fa3602b
PB
4424
4425 /* Optional constant. */
4426 if (skip_past_comma (&input_line_pointer) != FAIL)
4427 {
4428 if (immediate_for_directive (&offset) == FAIL)
4429 return;
4430 }
4431 else
4432 offset = 0;
4433
c19d1205 4434 demand_empty_rest_of_line ();
b99bd4ef 4435
c19d1205 4436 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 4437 {
c19d1205 4438 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
4439 return;
4440 }
4441
c19d1205
ZW
4442 if (unwind.fp_reg != REG_SP)
4443 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 4444
c19d1205
ZW
4445 /* Generate opcode to restore the value. */
4446 op = 0x90 | reg;
4447 add_unwind_opcode (op, 1);
4448
4449 /* Record the information for later. */
4450 unwind.fp_reg = reg;
4fa3602b 4451 unwind.fp_offset = unwind.frame_size - offset;
c19d1205 4452 unwind.sp_restored = 1;
b05fe5cf
ZW
4453}
4454
c19d1205
ZW
4455/* Parse an unwind_pad directive. */
4456
b05fe5cf 4457static void
c19d1205 4458s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 4459{
c19d1205 4460 int offset;
b05fe5cf 4461
921e5f0a 4462 if (!unwind.proc_start)
c921be7d 4463 as_bad (MISSING_FNSTART);
921e5f0a 4464
c19d1205
ZW
4465 if (immediate_for_directive (&offset) == FAIL)
4466 return;
b99bd4ef 4467
c19d1205
ZW
4468 if (offset & 3)
4469 {
4470 as_bad (_("stack increment must be multiple of 4"));
4471 ignore_rest_of_line ();
4472 return;
4473 }
b99bd4ef 4474
c19d1205
ZW
4475 /* Don't generate any opcodes, just record the details for later. */
4476 unwind.frame_size += offset;
4477 unwind.pending_offset += offset;
4478
4479 demand_empty_rest_of_line ();
4480}
4481
4482/* Parse an unwind_setfp directive. */
4483
4484static void
4485s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 4486{
c19d1205
ZW
4487 int sp_reg;
4488 int fp_reg;
4489 int offset;
4490
921e5f0a 4491 if (!unwind.proc_start)
c921be7d 4492 as_bad (MISSING_FNSTART);
921e5f0a 4493
dcbf9037 4494 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
4495 if (skip_past_comma (&input_line_pointer) == FAIL)
4496 sp_reg = FAIL;
4497 else
dcbf9037 4498 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 4499
c19d1205
ZW
4500 if (fp_reg == FAIL || sp_reg == FAIL)
4501 {
4502 as_bad (_("expected <reg>, <reg>"));
4503 ignore_rest_of_line ();
4504 return;
4505 }
b99bd4ef 4506
c19d1205
ZW
4507 /* Optional constant. */
4508 if (skip_past_comma (&input_line_pointer) != FAIL)
4509 {
4510 if (immediate_for_directive (&offset) == FAIL)
4511 return;
4512 }
4513 else
4514 offset = 0;
a737bd4d 4515
c19d1205 4516 demand_empty_rest_of_line ();
a737bd4d 4517
fdfde340 4518 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
a737bd4d 4519 {
c19d1205
ZW
4520 as_bad (_("register must be either sp or set by a previous"
4521 "unwind_movsp directive"));
4522 return;
a737bd4d
NC
4523 }
4524
c19d1205
ZW
4525 /* Don't generate any opcodes, just record the information for later. */
4526 unwind.fp_reg = fp_reg;
4527 unwind.fp_used = 1;
fdfde340 4528 if (sp_reg == REG_SP)
c19d1205
ZW
4529 unwind.fp_offset = unwind.frame_size - offset;
4530 else
4531 unwind.fp_offset -= offset;
a737bd4d
NC
4532}
4533
c19d1205
ZW
4534/* Parse an unwind_raw directive. */
4535
4536static void
4537s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 4538{
c19d1205 4539 expressionS exp;
708587a4 4540 /* This is an arbitrary limit. */
c19d1205
ZW
4541 unsigned char op[16];
4542 int count;
a737bd4d 4543
921e5f0a 4544 if (!unwind.proc_start)
c921be7d 4545 as_bad (MISSING_FNSTART);
921e5f0a 4546
c19d1205
ZW
4547 expression (&exp);
4548 if (exp.X_op == O_constant
4549 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 4550 {
c19d1205
ZW
4551 unwind.frame_size += exp.X_add_number;
4552 expression (&exp);
4553 }
4554 else
4555 exp.X_op = O_illegal;
a737bd4d 4556
c19d1205
ZW
4557 if (exp.X_op != O_constant)
4558 {
4559 as_bad (_("expected <offset>, <opcode>"));
4560 ignore_rest_of_line ();
4561 return;
4562 }
a737bd4d 4563
c19d1205 4564 count = 0;
a737bd4d 4565
c19d1205
ZW
4566 /* Parse the opcode. */
4567 for (;;)
4568 {
4569 if (count >= 16)
4570 {
4571 as_bad (_("unwind opcode too long"));
4572 ignore_rest_of_line ();
a737bd4d 4573 }
c19d1205 4574 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 4575 {
c19d1205
ZW
4576 as_bad (_("invalid unwind opcode"));
4577 ignore_rest_of_line ();
4578 return;
a737bd4d 4579 }
c19d1205 4580 op[count++] = exp.X_add_number;
a737bd4d 4581
c19d1205
ZW
4582 /* Parse the next byte. */
4583 if (skip_past_comma (&input_line_pointer) == FAIL)
4584 break;
a737bd4d 4585
c19d1205
ZW
4586 expression (&exp);
4587 }
b99bd4ef 4588
c19d1205
ZW
4589 /* Add the opcode bytes in reverse order. */
4590 while (count--)
4591 add_unwind_opcode (op[count], 1);
b99bd4ef 4592
c19d1205 4593 demand_empty_rest_of_line ();
b99bd4ef 4594}
ee065d83
PB
4595
4596
4597/* Parse a .eabi_attribute directive. */
4598
4599static void
4600s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4601{
0420f52b 4602 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
ee3c0378
AS
4603
4604 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4605 attributes_set_explicitly[tag] = 1;
ee065d83
PB
4606}
4607
0855e32b
NS
4608/* Emit a tls fix for the symbol. */
4609
4610static void
4611s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4612{
4613 char *p;
4614 expressionS exp;
4615#ifdef md_flush_pending_output
4616 md_flush_pending_output ();
4617#endif
4618
4619#ifdef md_cons_align
4620 md_cons_align (4);
4621#endif
4622
4623 /* Since we're just labelling the code, there's no need to define a
4624 mapping symbol. */
4625 expression (&exp);
4626 p = obstack_next_free (&frchain_now->frch_obstack);
4627 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4628 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4629 : BFD_RELOC_ARM_TLS_DESCSEQ);
4630}
cdf9ccec 4631#endif /* OBJ_ELF */
0855e32b 4632
ee065d83 4633static void s_arm_arch (int);
7a1d4c38 4634static void s_arm_object_arch (int);
ee065d83
PB
4635static void s_arm_cpu (int);
4636static void s_arm_fpu (int);
69133863 4637static void s_arm_arch_extension (int);
b99bd4ef 4638
f0927246
NC
4639#ifdef TE_PE
4640
4641static void
5f4273c7 4642pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
f0927246
NC
4643{
4644 expressionS exp;
4645
4646 do
4647 {
4648 expression (&exp);
4649 if (exp.X_op == O_symbol)
4650 exp.X_op = O_secrel;
4651
4652 emit_expr (&exp, 4);
4653 }
4654 while (*input_line_pointer++ == ',');
4655
4656 input_line_pointer--;
4657 demand_empty_rest_of_line ();
4658}
4659#endif /* TE_PE */
4660
c19d1205
ZW
4661/* This table describes all the machine specific pseudo-ops the assembler
4662 has to support. The fields are:
4663 pseudo-op name without dot
4664 function to call to execute this pseudo-op
4665 Integer arg to pass to the function. */
b99bd4ef 4666
c19d1205 4667const pseudo_typeS md_pseudo_table[] =
b99bd4ef 4668{
c19d1205
ZW
4669 /* Never called because '.req' does not start a line. */
4670 { "req", s_req, 0 },
dcbf9037
JB
4671 /* Following two are likewise never called. */
4672 { "dn", s_dn, 0 },
4673 { "qn", s_qn, 0 },
c19d1205
ZW
4674 { "unreq", s_unreq, 0 },
4675 { "bss", s_bss, 0 },
db2ed2e0 4676 { "align", s_align_ptwo, 2 },
c19d1205
ZW
4677 { "arm", s_arm, 0 },
4678 { "thumb", s_thumb, 0 },
4679 { "code", s_code, 0 },
4680 { "force_thumb", s_force_thumb, 0 },
4681 { "thumb_func", s_thumb_func, 0 },
4682 { "thumb_set", s_thumb_set, 0 },
4683 { "even", s_even, 0 },
4684 { "ltorg", s_ltorg, 0 },
4685 { "pool", s_ltorg, 0 },
4686 { "syntax", s_syntax, 0 },
8463be01
PB
4687 { "cpu", s_arm_cpu, 0 },
4688 { "arch", s_arm_arch, 0 },
7a1d4c38 4689 { "object_arch", s_arm_object_arch, 0 },
8463be01 4690 { "fpu", s_arm_fpu, 0 },
69133863 4691 { "arch_extension", s_arm_arch_extension, 0 },
c19d1205 4692#ifdef OBJ_ELF
c921be7d
NC
4693 { "word", s_arm_elf_cons, 4 },
4694 { "long", s_arm_elf_cons, 4 },
4695 { "inst.n", s_arm_elf_inst, 2 },
4696 { "inst.w", s_arm_elf_inst, 4 },
4697 { "inst", s_arm_elf_inst, 0 },
4698 { "rel31", s_arm_rel31, 0 },
c19d1205
ZW
4699 { "fnstart", s_arm_unwind_fnstart, 0 },
4700 { "fnend", s_arm_unwind_fnend, 0 },
4701 { "cantunwind", s_arm_unwind_cantunwind, 0 },
4702 { "personality", s_arm_unwind_personality, 0 },
4703 { "personalityindex", s_arm_unwind_personalityindex, 0 },
4704 { "handlerdata", s_arm_unwind_handlerdata, 0 },
4705 { "save", s_arm_unwind_save, 0 },
fa073d69 4706 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
4707 { "movsp", s_arm_unwind_movsp, 0 },
4708 { "pad", s_arm_unwind_pad, 0 },
4709 { "setfp", s_arm_unwind_setfp, 0 },
4710 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 4711 { "eabi_attribute", s_arm_eabi_attribute, 0 },
0855e32b 4712 { "tlsdescseq", s_arm_tls_descseq, 0 },
c19d1205
ZW
4713#else
4714 { "word", cons, 4},
f0927246
NC
4715
4716 /* These are used for dwarf. */
4717 {"2byte", cons, 2},
4718 {"4byte", cons, 4},
4719 {"8byte", cons, 8},
4720 /* These are used for dwarf2. */
4721 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
4722 { "loc", dwarf2_directive_loc, 0 },
4723 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
4724#endif
4725 { "extend", float_cons, 'x' },
4726 { "ldouble", float_cons, 'x' },
4727 { "packed", float_cons, 'p' },
f0927246
NC
4728#ifdef TE_PE
4729 {"secrel32", pe_directive_secrel, 0},
4730#endif
2e6976a8
DG
4731
4732 /* These are for compatibility with CodeComposer Studio. */
4733 {"ref", s_ccs_ref, 0},
4734 {"def", s_ccs_def, 0},
4735 {"asmfunc", s_ccs_asmfunc, 0},
4736 {"endasmfunc", s_ccs_endasmfunc, 0},
4737
c19d1205
ZW
4738 { 0, 0, 0 }
4739};
4740\f
4741/* Parser functions used exclusively in instruction operands. */
b99bd4ef 4742
c19d1205
ZW
4743/* Generic immediate-value read function for use in insn parsing.
4744 STR points to the beginning of the immediate (the leading #);
4745 VAL receives the value; if the value is outside [MIN, MAX]
4746 issue an error. PREFIX_OPT is true if the immediate prefix is
4747 optional. */
b99bd4ef 4748
c19d1205
ZW
4749static int
4750parse_immediate (char **str, int *val, int min, int max,
4751 bfd_boolean prefix_opt)
4752{
4753 expressionS exp;
4754 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
4755 if (exp.X_op != O_constant)
b99bd4ef 4756 {
c19d1205
ZW
4757 inst.error = _("constant expression required");
4758 return FAIL;
4759 }
b99bd4ef 4760
c19d1205
ZW
4761 if (exp.X_add_number < min || exp.X_add_number > max)
4762 {
4763 inst.error = _("immediate value out of range");
4764 return FAIL;
4765 }
b99bd4ef 4766
c19d1205
ZW
4767 *val = exp.X_add_number;
4768 return SUCCESS;
4769}
b99bd4ef 4770
5287ad62 4771/* Less-generic immediate-value read function with the possibility of loading a
036dc3f7 4772 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5287ad62
JB
4773 instructions. Puts the result directly in inst.operands[i]. */
4774
4775static int
8335d6aa
JW
4776parse_big_immediate (char **str, int i, expressionS *in_exp,
4777 bfd_boolean allow_symbol_p)
5287ad62
JB
4778{
4779 expressionS exp;
8335d6aa 4780 expressionS *exp_p = in_exp ? in_exp : &exp;
5287ad62
JB
4781 char *ptr = *str;
4782
8335d6aa 4783 my_get_expression (exp_p, &ptr, GE_OPT_PREFIX_BIG);
5287ad62 4784
8335d6aa 4785 if (exp_p->X_op == O_constant)
036dc3f7 4786 {
8335d6aa 4787 inst.operands[i].imm = exp_p->X_add_number & 0xffffffff;
036dc3f7
PB
4788 /* If we're on a 64-bit host, then a 64-bit number can be returned using
4789 O_constant. We have to be careful not to break compilation for
4790 32-bit X_add_number, though. */
8335d6aa 4791 if ((exp_p->X_add_number & ~(offsetT)(0xffffffffU)) != 0)
036dc3f7 4792 {
8335d6aa
JW
4793 /* X >> 32 is illegal if sizeof (exp_p->X_add_number) == 4. */
4794 inst.operands[i].reg = (((exp_p->X_add_number >> 16) >> 16)
4795 & 0xffffffff);
036dc3f7
PB
4796 inst.operands[i].regisimm = 1;
4797 }
4798 }
8335d6aa
JW
4799 else if (exp_p->X_op == O_big
4800 && LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 32)
5287ad62
JB
4801 {
4802 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
95b75c01 4803
5287ad62 4804 /* Bignums have their least significant bits in
477330fc
RM
4805 generic_bignum[0]. Make sure we put 32 bits in imm and
4806 32 bits in reg, in a (hopefully) portable way. */
9c2799c2 4807 gas_assert (parts != 0);
95b75c01
NC
4808
4809 /* Make sure that the number is not too big.
4810 PR 11972: Bignums can now be sign-extended to the
4811 size of a .octa so check that the out of range bits
4812 are all zero or all one. */
8335d6aa 4813 if (LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 64)
95b75c01
NC
4814 {
4815 LITTLENUM_TYPE m = -1;
4816
4817 if (generic_bignum[parts * 2] != 0
4818 && generic_bignum[parts * 2] != m)
4819 return FAIL;
4820
8335d6aa 4821 for (j = parts * 2 + 1; j < (unsigned) exp_p->X_add_number; j++)
95b75c01
NC
4822 if (generic_bignum[j] != generic_bignum[j-1])
4823 return FAIL;
4824 }
4825
5287ad62
JB
4826 inst.operands[i].imm = 0;
4827 for (j = 0; j < parts; j++, idx++)
477330fc
RM
4828 inst.operands[i].imm |= generic_bignum[idx]
4829 << (LITTLENUM_NUMBER_OF_BITS * j);
5287ad62
JB
4830 inst.operands[i].reg = 0;
4831 for (j = 0; j < parts; j++, idx++)
477330fc
RM
4832 inst.operands[i].reg |= generic_bignum[idx]
4833 << (LITTLENUM_NUMBER_OF_BITS * j);
5287ad62
JB
4834 inst.operands[i].regisimm = 1;
4835 }
8335d6aa 4836 else if (!(exp_p->X_op == O_symbol && allow_symbol_p))
5287ad62 4837 return FAIL;
5f4273c7 4838
5287ad62
JB
4839 *str = ptr;
4840
4841 return SUCCESS;
4842}
4843
c19d1205
ZW
4844/* Returns the pseudo-register number of an FPA immediate constant,
4845 or FAIL if there isn't a valid constant here. */
b99bd4ef 4846
c19d1205
ZW
4847static int
4848parse_fpa_immediate (char ** str)
4849{
4850 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4851 char * save_in;
4852 expressionS exp;
4853 int i;
4854 int j;
b99bd4ef 4855
c19d1205
ZW
4856 /* First try and match exact strings, this is to guarantee
4857 that some formats will work even for cross assembly. */
b99bd4ef 4858
c19d1205
ZW
4859 for (i = 0; fp_const[i]; i++)
4860 {
4861 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4862 {
c19d1205 4863 char *start = *str;
b99bd4ef 4864
c19d1205
ZW
4865 *str += strlen (fp_const[i]);
4866 if (is_end_of_line[(unsigned char) **str])
4867 return i + 8;
4868 *str = start;
4869 }
4870 }
b99bd4ef 4871
c19d1205
ZW
4872 /* Just because we didn't get a match doesn't mean that the constant
4873 isn't valid, just that it is in a format that we don't
4874 automatically recognize. Try parsing it with the standard
4875 expression routines. */
b99bd4ef 4876
c19d1205 4877 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4878
c19d1205
ZW
4879 /* Look for a raw floating point number. */
4880 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4881 && is_end_of_line[(unsigned char) *save_in])
4882 {
4883 for (i = 0; i < NUM_FLOAT_VALS; i++)
4884 {
4885 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4886 {
c19d1205
ZW
4887 if (words[j] != fp_values[i][j])
4888 break;
b99bd4ef
NC
4889 }
4890
c19d1205 4891 if (j == MAX_LITTLENUMS)
b99bd4ef 4892 {
c19d1205
ZW
4893 *str = save_in;
4894 return i + 8;
b99bd4ef
NC
4895 }
4896 }
4897 }
b99bd4ef 4898
c19d1205
ZW
4899 /* Try and parse a more complex expression, this will probably fail
4900 unless the code uses a floating point prefix (eg "0f"). */
4901 save_in = input_line_pointer;
4902 input_line_pointer = *str;
4903 if (expression (&exp) == absolute_section
4904 && exp.X_op == O_big
4905 && exp.X_add_number < 0)
4906 {
4907 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4908 Ditto for 15. */
ba592044
AM
4909#define X_PRECISION 5
4910#define E_PRECISION 15L
4911 if (gen_to_words (words, X_PRECISION, E_PRECISION) == 0)
c19d1205
ZW
4912 {
4913 for (i = 0; i < NUM_FLOAT_VALS; i++)
4914 {
4915 for (j = 0; j < MAX_LITTLENUMS; j++)
4916 {
4917 if (words[j] != fp_values[i][j])
4918 break;
4919 }
b99bd4ef 4920
c19d1205
ZW
4921 if (j == MAX_LITTLENUMS)
4922 {
4923 *str = input_line_pointer;
4924 input_line_pointer = save_in;
4925 return i + 8;
4926 }
4927 }
4928 }
b99bd4ef
NC
4929 }
4930
c19d1205
ZW
4931 *str = input_line_pointer;
4932 input_line_pointer = save_in;
4933 inst.error = _("invalid FPA immediate expression");
4934 return FAIL;
b99bd4ef
NC
4935}
4936
136da414
JB
4937/* Returns 1 if a number has "quarter-precision" float format
4938 0baBbbbbbc defgh000 00000000 00000000. */
4939
4940static int
4941is_quarter_float (unsigned imm)
4942{
4943 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4944 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4945}
4946
aacf0b33
KT
4947
4948/* Detect the presence of a floating point or integer zero constant,
4949 i.e. #0.0 or #0. */
4950
4951static bfd_boolean
4952parse_ifimm_zero (char **in)
4953{
4954 int error_code;
4955
4956 if (!is_immediate_prefix (**in))
4957 return FALSE;
4958
4959 ++*in;
0900a05b
JW
4960
4961 /* Accept #0x0 as a synonym for #0. */
4962 if (strncmp (*in, "0x", 2) == 0)
4963 {
4964 int val;
4965 if (parse_immediate (in, &val, 0, 0, TRUE) == FAIL)
4966 return FALSE;
4967 return TRUE;
4968 }
4969
aacf0b33
KT
4970 error_code = atof_generic (in, ".", EXP_CHARS,
4971 &generic_floating_point_number);
4972
4973 if (!error_code
4974 && generic_floating_point_number.sign == '+'
4975 && (generic_floating_point_number.low
4976 > generic_floating_point_number.leader))
4977 return TRUE;
4978
4979 return FALSE;
4980}
4981
136da414
JB
4982/* Parse an 8-bit "quarter-precision" floating point number of the form:
4983 0baBbbbbbc defgh000 00000000 00000000.
c96612cc
JB
4984 The zero and minus-zero cases need special handling, since they can't be
4985 encoded in the "quarter-precision" float format, but can nonetheless be
4986 loaded as integer constants. */
136da414
JB
4987
4988static unsigned
4989parse_qfloat_immediate (char **ccp, int *immed)
4990{
4991 char *str = *ccp;
c96612cc 4992 char *fpnum;
136da414 4993 LITTLENUM_TYPE words[MAX_LITTLENUMS];
c96612cc 4994 int found_fpchar = 0;
5f4273c7 4995
136da414 4996 skip_past_char (&str, '#');
5f4273c7 4997
c96612cc
JB
4998 /* We must not accidentally parse an integer as a floating-point number. Make
4999 sure that the value we parse is not an integer by checking for special
5000 characters '.' or 'e'.
5001 FIXME: This is a horrible hack, but doing better is tricky because type
5002 information isn't in a very usable state at parse time. */
5003 fpnum = str;
5004 skip_whitespace (fpnum);
5005
5006 if (strncmp (fpnum, "0x", 2) == 0)
5007 return FAIL;
5008 else
5009 {
5010 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
477330fc
RM
5011 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
5012 {
5013 found_fpchar = 1;
5014 break;
5015 }
c96612cc
JB
5016
5017 if (!found_fpchar)
477330fc 5018 return FAIL;
c96612cc 5019 }
5f4273c7 5020
136da414
JB
5021 if ((str = atof_ieee (str, 's', words)) != NULL)
5022 {
5023 unsigned fpword = 0;
5024 int i;
5f4273c7 5025
136da414
JB
5026 /* Our FP word must be 32 bits (single-precision FP). */
5027 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
477330fc
RM
5028 {
5029 fpword <<= LITTLENUM_NUMBER_OF_BITS;
5030 fpword |= words[i];
5031 }
5f4273c7 5032
c96612cc 5033 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
477330fc 5034 *immed = fpword;
136da414 5035 else
477330fc 5036 return FAIL;
136da414
JB
5037
5038 *ccp = str;
5f4273c7 5039
136da414
JB
5040 return SUCCESS;
5041 }
5f4273c7 5042
136da414
JB
5043 return FAIL;
5044}
5045
c19d1205
ZW
5046/* Shift operands. */
5047enum shift_kind
b99bd4ef 5048{
c19d1205
ZW
5049 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
5050};
b99bd4ef 5051
c19d1205
ZW
5052struct asm_shift_name
5053{
5054 const char *name;
5055 enum shift_kind kind;
5056};
b99bd4ef 5057
c19d1205
ZW
5058/* Third argument to parse_shift. */
5059enum parse_shift_mode
5060{
5061 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
5062 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
5063 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
5064 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
5065 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
5066};
b99bd4ef 5067
c19d1205
ZW
5068/* Parse a <shift> specifier on an ARM data processing instruction.
5069 This has three forms:
b99bd4ef 5070
c19d1205
ZW
5071 (LSL|LSR|ASL|ASR|ROR) Rs
5072 (LSL|LSR|ASL|ASR|ROR) #imm
5073 RRX
b99bd4ef 5074
c19d1205
ZW
5075 Note that ASL is assimilated to LSL in the instruction encoding, and
5076 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 5077
c19d1205
ZW
5078static int
5079parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 5080{
c19d1205
ZW
5081 const struct asm_shift_name *shift_name;
5082 enum shift_kind shift;
5083 char *s = *str;
5084 char *p = s;
5085 int reg;
b99bd4ef 5086
c19d1205
ZW
5087 for (p = *str; ISALPHA (*p); p++)
5088 ;
b99bd4ef 5089
c19d1205 5090 if (p == *str)
b99bd4ef 5091 {
c19d1205
ZW
5092 inst.error = _("shift expression expected");
5093 return FAIL;
b99bd4ef
NC
5094 }
5095
21d799b5 5096 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
477330fc 5097 p - *str);
c19d1205
ZW
5098
5099 if (shift_name == NULL)
b99bd4ef 5100 {
c19d1205
ZW
5101 inst.error = _("shift expression expected");
5102 return FAIL;
b99bd4ef
NC
5103 }
5104
c19d1205 5105 shift = shift_name->kind;
b99bd4ef 5106
c19d1205
ZW
5107 switch (mode)
5108 {
5109 case NO_SHIFT_RESTRICT:
5110 case SHIFT_IMMEDIATE: break;
b99bd4ef 5111
c19d1205
ZW
5112 case SHIFT_LSL_OR_ASR_IMMEDIATE:
5113 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
5114 {
5115 inst.error = _("'LSL' or 'ASR' required");
5116 return FAIL;
5117 }
5118 break;
b99bd4ef 5119
c19d1205
ZW
5120 case SHIFT_LSL_IMMEDIATE:
5121 if (shift != SHIFT_LSL)
5122 {
5123 inst.error = _("'LSL' required");
5124 return FAIL;
5125 }
5126 break;
b99bd4ef 5127
c19d1205
ZW
5128 case SHIFT_ASR_IMMEDIATE:
5129 if (shift != SHIFT_ASR)
5130 {
5131 inst.error = _("'ASR' required");
5132 return FAIL;
5133 }
5134 break;
b99bd4ef 5135
c19d1205
ZW
5136 default: abort ();
5137 }
b99bd4ef 5138
c19d1205
ZW
5139 if (shift != SHIFT_RRX)
5140 {
5141 /* Whitespace can appear here if the next thing is a bare digit. */
5142 skip_whitespace (p);
b99bd4ef 5143
c19d1205 5144 if (mode == NO_SHIFT_RESTRICT
dcbf9037 5145 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
5146 {
5147 inst.operands[i].imm = reg;
5148 inst.operands[i].immisreg = 1;
5149 }
5150 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5151 return FAIL;
5152 }
5153 inst.operands[i].shift_kind = shift;
5154 inst.operands[i].shifted = 1;
5155 *str = p;
5156 return SUCCESS;
b99bd4ef
NC
5157}
5158
c19d1205 5159/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 5160
c19d1205
ZW
5161 #<immediate>
5162 #<immediate>, <rotate>
5163 <Rm>
5164 <Rm>, <shift>
b99bd4ef 5165
c19d1205
ZW
5166 where <shift> is defined by parse_shift above, and <rotate> is a
5167 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 5168 is deferred to md_apply_fix. */
b99bd4ef 5169
c19d1205
ZW
5170static int
5171parse_shifter_operand (char **str, int i)
5172{
5173 int value;
91d6fa6a 5174 expressionS exp;
b99bd4ef 5175
dcbf9037 5176 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
5177 {
5178 inst.operands[i].reg = value;
5179 inst.operands[i].isreg = 1;
b99bd4ef 5180
c19d1205
ZW
5181 /* parse_shift will override this if appropriate */
5182 inst.reloc.exp.X_op = O_constant;
5183 inst.reloc.exp.X_add_number = 0;
b99bd4ef 5184
c19d1205
ZW
5185 if (skip_past_comma (str) == FAIL)
5186 return SUCCESS;
b99bd4ef 5187
c19d1205
ZW
5188 /* Shift operation on register. */
5189 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
5190 }
5191
c19d1205
ZW
5192 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
5193 return FAIL;
b99bd4ef 5194
c19d1205 5195 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 5196 {
c19d1205 5197 /* #x, y -- ie explicit rotation by Y. */
91d6fa6a 5198 if (my_get_expression (&exp, str, GE_NO_PREFIX))
c19d1205 5199 return FAIL;
b99bd4ef 5200
91d6fa6a 5201 if (exp.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
c19d1205
ZW
5202 {
5203 inst.error = _("constant expression expected");
5204 return FAIL;
5205 }
b99bd4ef 5206
91d6fa6a 5207 value = exp.X_add_number;
c19d1205
ZW
5208 if (value < 0 || value > 30 || value % 2 != 0)
5209 {
5210 inst.error = _("invalid rotation");
5211 return FAIL;
5212 }
5213 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
5214 {
5215 inst.error = _("invalid constant");
5216 return FAIL;
5217 }
09d92015 5218
a415b1cd
JB
5219 /* Encode as specified. */
5220 inst.operands[i].imm = inst.reloc.exp.X_add_number | value << 7;
5221 return SUCCESS;
09d92015
MM
5222 }
5223
c19d1205
ZW
5224 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
5225 inst.reloc.pc_rel = 0;
5226 return SUCCESS;
09d92015
MM
5227}
5228
4962c51a
MS
5229/* Group relocation information. Each entry in the table contains the
5230 textual name of the relocation as may appear in assembler source
5231 and must end with a colon.
5232 Along with this textual name are the relocation codes to be used if
5233 the corresponding instruction is an ALU instruction (ADD or SUB only),
5234 an LDR, an LDRS, or an LDC. */
5235
5236struct group_reloc_table_entry
5237{
5238 const char *name;
5239 int alu_code;
5240 int ldr_code;
5241 int ldrs_code;
5242 int ldc_code;
5243};
5244
5245typedef enum
5246{
5247 /* Varieties of non-ALU group relocation. */
5248
5249 GROUP_LDR,
5250 GROUP_LDRS,
5251 GROUP_LDC
5252} group_reloc_type;
5253
5254static struct group_reloc_table_entry group_reloc_table[] =
5255 { /* Program counter relative: */
5256 { "pc_g0_nc",
5257 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
5258 0, /* LDR */
5259 0, /* LDRS */
5260 0 }, /* LDC */
5261 { "pc_g0",
5262 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
5263 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
5264 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
5265 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
5266 { "pc_g1_nc",
5267 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
5268 0, /* LDR */
5269 0, /* LDRS */
5270 0 }, /* LDC */
5271 { "pc_g1",
5272 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
5273 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
5274 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
5275 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
5276 { "pc_g2",
5277 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
5278 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
5279 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
5280 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
5281 /* Section base relative */
5282 { "sb_g0_nc",
5283 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
5284 0, /* LDR */
5285 0, /* LDRS */
5286 0 }, /* LDC */
5287 { "sb_g0",
5288 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
5289 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
5290 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
5291 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
5292 { "sb_g1_nc",
5293 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
5294 0, /* LDR */
5295 0, /* LDRS */
5296 0 }, /* LDC */
5297 { "sb_g1",
5298 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
5299 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
5300 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
5301 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
5302 { "sb_g2",
5303 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
5304 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5305 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
72d98d16
MG
5306 BFD_RELOC_ARM_LDC_SB_G2 }, /* LDC */
5307 /* Absolute thumb alu relocations. */
5308 { "lower0_7",
5309 BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC,/* ALU. */
5310 0, /* LDR. */
5311 0, /* LDRS. */
5312 0 }, /* LDC. */
5313 { "lower8_15",
5314 BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC,/* ALU. */
5315 0, /* LDR. */
5316 0, /* LDRS. */
5317 0 }, /* LDC. */
5318 { "upper0_7",
5319 BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC,/* ALU. */
5320 0, /* LDR. */
5321 0, /* LDRS. */
5322 0 }, /* LDC. */
5323 { "upper8_15",
5324 BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC,/* ALU. */
5325 0, /* LDR. */
5326 0, /* LDRS. */
5327 0 } }; /* LDC. */
4962c51a
MS
5328
5329/* Given the address of a pointer pointing to the textual name of a group
5330 relocation as may appear in assembler source, attempt to find its details
5331 in group_reloc_table. The pointer will be updated to the character after
5332 the trailing colon. On failure, FAIL will be returned; SUCCESS
5333 otherwise. On success, *entry will be updated to point at the relevant
5334 group_reloc_table entry. */
5335
5336static int
5337find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5338{
5339 unsigned int i;
5340 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5341 {
5342 int length = strlen (group_reloc_table[i].name);
5343
5f4273c7
NC
5344 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5345 && (*str)[length] == ':')
477330fc
RM
5346 {
5347 *out = &group_reloc_table[i];
5348 *str += (length + 1);
5349 return SUCCESS;
5350 }
4962c51a
MS
5351 }
5352
5353 return FAIL;
5354}
5355
5356/* Parse a <shifter_operand> for an ARM data processing instruction
5357 (as for parse_shifter_operand) where group relocations are allowed:
5358
5359 #<immediate>
5360 #<immediate>, <rotate>
5361 #:<group_reloc>:<expression>
5362 <Rm>
5363 <Rm>, <shift>
5364
5365 where <group_reloc> is one of the strings defined in group_reloc_table.
5366 The hashes are optional.
5367
5368 Everything else is as for parse_shifter_operand. */
5369
5370static parse_operand_result
5371parse_shifter_operand_group_reloc (char **str, int i)
5372{
5373 /* Determine if we have the sequence of characters #: or just :
5374 coming next. If we do, then we check for a group relocation.
5375 If we don't, punt the whole lot to parse_shifter_operand. */
5376
5377 if (((*str)[0] == '#' && (*str)[1] == ':')
5378 || (*str)[0] == ':')
5379 {
5380 struct group_reloc_table_entry *entry;
5381
5382 if ((*str)[0] == '#')
477330fc 5383 (*str) += 2;
4962c51a 5384 else
477330fc 5385 (*str)++;
4962c51a
MS
5386
5387 /* Try to parse a group relocation. Anything else is an error. */
5388 if (find_group_reloc_table_entry (str, &entry) == FAIL)
477330fc
RM
5389 {
5390 inst.error = _("unknown group relocation");
5391 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5392 }
4962c51a
MS
5393
5394 /* We now have the group relocation table entry corresponding to
477330fc 5395 the name in the assembler source. Next, we parse the expression. */
4962c51a 5396 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
477330fc 5397 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4962c51a
MS
5398
5399 /* Record the relocation type (always the ALU variant here). */
21d799b5 5400 inst.reloc.type = (bfd_reloc_code_real_type) entry->alu_code;
9c2799c2 5401 gas_assert (inst.reloc.type != 0);
4962c51a
MS
5402
5403 return PARSE_OPERAND_SUCCESS;
5404 }
5405 else
5406 return parse_shifter_operand (str, i) == SUCCESS
477330fc 5407 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
4962c51a
MS
5408
5409 /* Never reached. */
5410}
5411
8e560766
MGD
5412/* Parse a Neon alignment expression. Information is written to
5413 inst.operands[i]. We assume the initial ':' has been skipped.
fa94de6b 5414
8e560766
MGD
5415 align .imm = align << 8, .immisalign=1, .preind=0 */
5416static parse_operand_result
5417parse_neon_alignment (char **str, int i)
5418{
5419 char *p = *str;
5420 expressionS exp;
5421
5422 my_get_expression (&exp, &p, GE_NO_PREFIX);
5423
5424 if (exp.X_op != O_constant)
5425 {
5426 inst.error = _("alignment must be constant");
5427 return PARSE_OPERAND_FAIL;
5428 }
5429
5430 inst.operands[i].imm = exp.X_add_number << 8;
5431 inst.operands[i].immisalign = 1;
5432 /* Alignments are not pre-indexes. */
5433 inst.operands[i].preind = 0;
5434
5435 *str = p;
5436 return PARSE_OPERAND_SUCCESS;
5437}
5438
c19d1205
ZW
5439/* Parse all forms of an ARM address expression. Information is written
5440 to inst.operands[i] and/or inst.reloc.
09d92015 5441
c19d1205 5442 Preindexed addressing (.preind=1):
09d92015 5443
c19d1205
ZW
5444 [Rn, #offset] .reg=Rn .reloc.exp=offset
5445 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5446 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5447 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5448
c19d1205 5449 These three may have a trailing ! which causes .writeback to be set also.
09d92015 5450
c19d1205 5451 Postindexed addressing (.postind=1, .writeback=1):
09d92015 5452
c19d1205
ZW
5453 [Rn], #offset .reg=Rn .reloc.exp=offset
5454 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5455 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5456 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5457
c19d1205 5458 Unindexed addressing (.preind=0, .postind=0):
09d92015 5459
c19d1205 5460 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 5461
c19d1205 5462 Other:
09d92015 5463
c19d1205
ZW
5464 [Rn]{!} shorthand for [Rn,#0]{!}
5465 =immediate .isreg=0 .reloc.exp=immediate
5466 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 5467
c19d1205
ZW
5468 It is the caller's responsibility to check for addressing modes not
5469 supported by the instruction, and to set inst.reloc.type. */
5470
4962c51a
MS
5471static parse_operand_result
5472parse_address_main (char **str, int i, int group_relocations,
477330fc 5473 group_reloc_type group_type)
09d92015 5474{
c19d1205
ZW
5475 char *p = *str;
5476 int reg;
09d92015 5477
c19d1205 5478 if (skip_past_char (&p, '[') == FAIL)
09d92015 5479 {
c19d1205
ZW
5480 if (skip_past_char (&p, '=') == FAIL)
5481 {
974da60d 5482 /* Bare address - translate to PC-relative offset. */
c19d1205
ZW
5483 inst.reloc.pc_rel = 1;
5484 inst.operands[i].reg = REG_PC;
5485 inst.operands[i].isreg = 1;
5486 inst.operands[i].preind = 1;
09d92015 5487
8335d6aa
JW
5488 if (my_get_expression (&inst.reloc.exp, &p, GE_OPT_PREFIX_BIG))
5489 return PARSE_OPERAND_FAIL;
5490 }
5491 else if (parse_big_immediate (&p, i, &inst.reloc.exp,
5492 /*allow_symbol_p=*/TRUE))
4962c51a 5493 return PARSE_OPERAND_FAIL;
09d92015 5494
c19d1205 5495 *str = p;
4962c51a 5496 return PARSE_OPERAND_SUCCESS;
09d92015
MM
5497 }
5498
8ab8155f
NC
5499 /* PR gas/14887: Allow for whitespace after the opening bracket. */
5500 skip_whitespace (p);
5501
dcbf9037 5502 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 5503 {
c19d1205 5504 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 5505 return PARSE_OPERAND_FAIL;
09d92015 5506 }
c19d1205
ZW
5507 inst.operands[i].reg = reg;
5508 inst.operands[i].isreg = 1;
09d92015 5509
c19d1205 5510 if (skip_past_comma (&p) == SUCCESS)
09d92015 5511 {
c19d1205 5512 inst.operands[i].preind = 1;
09d92015 5513
c19d1205
ZW
5514 if (*p == '+') p++;
5515 else if (*p == '-') p++, inst.operands[i].negative = 1;
5516
dcbf9037 5517 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 5518 {
c19d1205
ZW
5519 inst.operands[i].imm = reg;
5520 inst.operands[i].immisreg = 1;
5521
5522 if (skip_past_comma (&p) == SUCCESS)
5523 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5524 return PARSE_OPERAND_FAIL;
c19d1205 5525 }
5287ad62 5526 else if (skip_past_char (&p, ':') == SUCCESS)
8e560766
MGD
5527 {
5528 /* FIXME: '@' should be used here, but it's filtered out by generic
5529 code before we get to see it here. This may be subject to
5530 change. */
5531 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5532
8e560766
MGD
5533 if (result != PARSE_OPERAND_SUCCESS)
5534 return result;
5535 }
c19d1205
ZW
5536 else
5537 {
5538 if (inst.operands[i].negative)
5539 {
5540 inst.operands[i].negative = 0;
5541 p--;
5542 }
4962c51a 5543
5f4273c7
NC
5544 if (group_relocations
5545 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4962c51a
MS
5546 {
5547 struct group_reloc_table_entry *entry;
5548
477330fc
RM
5549 /* Skip over the #: or : sequence. */
5550 if (*p == '#')
5551 p += 2;
5552 else
5553 p++;
4962c51a
MS
5554
5555 /* Try to parse a group relocation. Anything else is an
477330fc 5556 error. */
4962c51a
MS
5557 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5558 {
5559 inst.error = _("unknown group relocation");
5560 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5561 }
5562
5563 /* We now have the group relocation table entry corresponding to
5564 the name in the assembler source. Next, we parse the
477330fc 5565 expression. */
4962c51a
MS
5566 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5567 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5568
5569 /* Record the relocation type. */
477330fc
RM
5570 switch (group_type)
5571 {
5572 case GROUP_LDR:
5573 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldr_code;
5574 break;
4962c51a 5575
477330fc
RM
5576 case GROUP_LDRS:
5577 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldrs_code;
5578 break;
4962c51a 5579
477330fc
RM
5580 case GROUP_LDC:
5581 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldc_code;
5582 break;
4962c51a 5583
477330fc
RM
5584 default:
5585 gas_assert (0);
5586 }
4962c51a 5587
477330fc 5588 if (inst.reloc.type == 0)
4962c51a
MS
5589 {
5590 inst.error = _("this group relocation is not allowed on this instruction");
5591 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5592 }
477330fc
RM
5593 }
5594 else
26d97720
NS
5595 {
5596 char *q = p;
5597 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5598 return PARSE_OPERAND_FAIL;
5599 /* If the offset is 0, find out if it's a +0 or -0. */
5600 if (inst.reloc.exp.X_op == O_constant
5601 && inst.reloc.exp.X_add_number == 0)
5602 {
5603 skip_whitespace (q);
5604 if (*q == '#')
5605 {
5606 q++;
5607 skip_whitespace (q);
5608 }
5609 if (*q == '-')
5610 inst.operands[i].negative = 1;
5611 }
5612 }
09d92015
MM
5613 }
5614 }
8e560766
MGD
5615 else if (skip_past_char (&p, ':') == SUCCESS)
5616 {
5617 /* FIXME: '@' should be used here, but it's filtered out by generic code
5618 before we get to see it here. This may be subject to change. */
5619 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5620
8e560766
MGD
5621 if (result != PARSE_OPERAND_SUCCESS)
5622 return result;
5623 }
09d92015 5624
c19d1205 5625 if (skip_past_char (&p, ']') == FAIL)
09d92015 5626 {
c19d1205 5627 inst.error = _("']' expected");
4962c51a 5628 return PARSE_OPERAND_FAIL;
09d92015
MM
5629 }
5630
c19d1205
ZW
5631 if (skip_past_char (&p, '!') == SUCCESS)
5632 inst.operands[i].writeback = 1;
09d92015 5633
c19d1205 5634 else if (skip_past_comma (&p) == SUCCESS)
09d92015 5635 {
c19d1205
ZW
5636 if (skip_past_char (&p, '{') == SUCCESS)
5637 {
5638 /* [Rn], {expr} - unindexed, with option */
5639 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 5640 0, 255, TRUE) == FAIL)
4962c51a 5641 return PARSE_OPERAND_FAIL;
09d92015 5642
c19d1205
ZW
5643 if (skip_past_char (&p, '}') == FAIL)
5644 {
5645 inst.error = _("'}' expected at end of 'option' field");
4962c51a 5646 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5647 }
5648 if (inst.operands[i].preind)
5649 {
5650 inst.error = _("cannot combine index with option");
4962c51a 5651 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5652 }
5653 *str = p;
4962c51a 5654 return PARSE_OPERAND_SUCCESS;
09d92015 5655 }
c19d1205
ZW
5656 else
5657 {
5658 inst.operands[i].postind = 1;
5659 inst.operands[i].writeback = 1;
09d92015 5660
c19d1205
ZW
5661 if (inst.operands[i].preind)
5662 {
5663 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 5664 return PARSE_OPERAND_FAIL;
c19d1205 5665 }
09d92015 5666
c19d1205
ZW
5667 if (*p == '+') p++;
5668 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 5669
dcbf9037 5670 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 5671 {
477330fc
RM
5672 /* We might be using the immediate for alignment already. If we
5673 are, OR the register number into the low-order bits. */
5674 if (inst.operands[i].immisalign)
5675 inst.operands[i].imm |= reg;
5676 else
5677 inst.operands[i].imm = reg;
c19d1205 5678 inst.operands[i].immisreg = 1;
a737bd4d 5679
c19d1205
ZW
5680 if (skip_past_comma (&p) == SUCCESS)
5681 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5682 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5683 }
5684 else
5685 {
26d97720 5686 char *q = p;
c19d1205
ZW
5687 if (inst.operands[i].negative)
5688 {
5689 inst.operands[i].negative = 0;
5690 p--;
5691 }
5692 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 5693 return PARSE_OPERAND_FAIL;
26d97720
NS
5694 /* If the offset is 0, find out if it's a +0 or -0. */
5695 if (inst.reloc.exp.X_op == O_constant
5696 && inst.reloc.exp.X_add_number == 0)
5697 {
5698 skip_whitespace (q);
5699 if (*q == '#')
5700 {
5701 q++;
5702 skip_whitespace (q);
5703 }
5704 if (*q == '-')
5705 inst.operands[i].negative = 1;
5706 }
c19d1205
ZW
5707 }
5708 }
a737bd4d
NC
5709 }
5710
c19d1205
ZW
5711 /* If at this point neither .preind nor .postind is set, we have a
5712 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
5713 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
5714 {
5715 inst.operands[i].preind = 1;
5716 inst.reloc.exp.X_op = O_constant;
5717 inst.reloc.exp.X_add_number = 0;
5718 }
5719 *str = p;
4962c51a
MS
5720 return PARSE_OPERAND_SUCCESS;
5721}
5722
5723static int
5724parse_address (char **str, int i)
5725{
21d799b5 5726 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
477330fc 5727 ? SUCCESS : FAIL;
4962c51a
MS
5728}
5729
5730static parse_operand_result
5731parse_address_group_reloc (char **str, int i, group_reloc_type type)
5732{
5733 return parse_address_main (str, i, 1, type);
a737bd4d
NC
5734}
5735
b6895b4f
PB
5736/* Parse an operand for a MOVW or MOVT instruction. */
5737static int
5738parse_half (char **str)
5739{
5740 char * p;
5f4273c7 5741
b6895b4f
PB
5742 p = *str;
5743 skip_past_char (&p, '#');
5f4273c7 5744 if (strncasecmp (p, ":lower16:", 9) == 0)
b6895b4f
PB
5745 inst.reloc.type = BFD_RELOC_ARM_MOVW;
5746 else if (strncasecmp (p, ":upper16:", 9) == 0)
5747 inst.reloc.type = BFD_RELOC_ARM_MOVT;
5748
5749 if (inst.reloc.type != BFD_RELOC_UNUSED)
5750 {
5751 p += 9;
5f4273c7 5752 skip_whitespace (p);
b6895b4f
PB
5753 }
5754
5755 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5756 return FAIL;
5757
5758 if (inst.reloc.type == BFD_RELOC_UNUSED)
5759 {
5760 if (inst.reloc.exp.X_op != O_constant)
5761 {
5762 inst.error = _("constant expression expected");
5763 return FAIL;
5764 }
5765 if (inst.reloc.exp.X_add_number < 0
5766 || inst.reloc.exp.X_add_number > 0xffff)
5767 {
5768 inst.error = _("immediate value out of range");
5769 return FAIL;
5770 }
5771 }
5772 *str = p;
5773 return SUCCESS;
5774}
5775
c19d1205 5776/* Miscellaneous. */
a737bd4d 5777
c19d1205
ZW
5778/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
5779 or a bitmask suitable to be or-ed into the ARM msr instruction. */
5780static int
d2cd1205 5781parse_psr (char **str, bfd_boolean lhs)
09d92015 5782{
c19d1205
ZW
5783 char *p;
5784 unsigned long psr_field;
62b3e311
PB
5785 const struct asm_psr *psr;
5786 char *start;
d2cd1205 5787 bfd_boolean is_apsr = FALSE;
ac7f631b 5788 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
09d92015 5789
a4482bb6
NC
5790 /* PR gas/12698: If the user has specified -march=all then m_profile will
5791 be TRUE, but we want to ignore it in this case as we are building for any
5792 CPU type, including non-m variants. */
823d2571 5793 if (ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any))
a4482bb6
NC
5794 m_profile = FALSE;
5795
c19d1205
ZW
5796 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
5797 feature for ease of use and backwards compatibility. */
5798 p = *str;
62b3e311 5799 if (strncasecmp (p, "SPSR", 4) == 0)
d2cd1205
JB
5800 {
5801 if (m_profile)
5802 goto unsupported_psr;
fa94de6b 5803
d2cd1205
JB
5804 psr_field = SPSR_BIT;
5805 }
5806 else if (strncasecmp (p, "CPSR", 4) == 0)
5807 {
5808 if (m_profile)
5809 goto unsupported_psr;
5810
5811 psr_field = 0;
5812 }
5813 else if (strncasecmp (p, "APSR", 4) == 0)
5814 {
5815 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
5816 and ARMv7-R architecture CPUs. */
5817 is_apsr = TRUE;
5818 psr_field = 0;
5819 }
5820 else if (m_profile)
62b3e311
PB
5821 {
5822 start = p;
5823 do
5824 p++;
5825 while (ISALNUM (*p) || *p == '_');
5826
d2cd1205
JB
5827 if (strncasecmp (start, "iapsr", 5) == 0
5828 || strncasecmp (start, "eapsr", 5) == 0
5829 || strncasecmp (start, "xpsr", 4) == 0
5830 || strncasecmp (start, "psr", 3) == 0)
5831 p = start + strcspn (start, "rR") + 1;
5832
21d799b5 5833 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
477330fc 5834 p - start);
d2cd1205 5835
62b3e311
PB
5836 if (!psr)
5837 return FAIL;
09d92015 5838
d2cd1205
JB
5839 /* If APSR is being written, a bitfield may be specified. Note that
5840 APSR itself is handled above. */
5841 if (psr->field <= 3)
5842 {
5843 psr_field = psr->field;
5844 is_apsr = TRUE;
5845 goto check_suffix;
5846 }
5847
62b3e311 5848 *str = p;
d2cd1205
JB
5849 /* M-profile MSR instructions have the mask field set to "10", except
5850 *PSR variants which modify APSR, which may use a different mask (and
5851 have been handled already). Do that by setting the PSR_f field
5852 here. */
5853 return psr->field | (lhs ? PSR_f : 0);
62b3e311 5854 }
d2cd1205
JB
5855 else
5856 goto unsupported_psr;
09d92015 5857
62b3e311 5858 p += 4;
d2cd1205 5859check_suffix:
c19d1205
ZW
5860 if (*p == '_')
5861 {
5862 /* A suffix follows. */
c19d1205
ZW
5863 p++;
5864 start = p;
a737bd4d 5865
c19d1205
ZW
5866 do
5867 p++;
5868 while (ISALNUM (*p) || *p == '_');
a737bd4d 5869
d2cd1205
JB
5870 if (is_apsr)
5871 {
5872 /* APSR uses a notation for bits, rather than fields. */
5873 unsigned int nzcvq_bits = 0;
5874 unsigned int g_bit = 0;
5875 char *bit;
fa94de6b 5876
d2cd1205
JB
5877 for (bit = start; bit != p; bit++)
5878 {
5879 switch (TOLOWER (*bit))
477330fc 5880 {
d2cd1205
JB
5881 case 'n':
5882 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
5883 break;
5884
5885 case 'z':
5886 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
5887 break;
5888
5889 case 'c':
5890 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
5891 break;
5892
5893 case 'v':
5894 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
5895 break;
fa94de6b 5896
d2cd1205
JB
5897 case 'q':
5898 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
5899 break;
fa94de6b 5900
d2cd1205
JB
5901 case 'g':
5902 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
5903 break;
fa94de6b 5904
d2cd1205
JB
5905 default:
5906 inst.error = _("unexpected bit specified after APSR");
5907 return FAIL;
5908 }
5909 }
fa94de6b 5910
d2cd1205
JB
5911 if (nzcvq_bits == 0x1f)
5912 psr_field |= PSR_f;
fa94de6b 5913
d2cd1205
JB
5914 if (g_bit == 0x1)
5915 {
5916 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
477330fc 5917 {
d2cd1205
JB
5918 inst.error = _("selected processor does not "
5919 "support DSP extension");
5920 return FAIL;
5921 }
5922
5923 psr_field |= PSR_s;
5924 }
fa94de6b 5925
d2cd1205
JB
5926 if ((nzcvq_bits & 0x20) != 0
5927 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
5928 || (g_bit & 0x2) != 0)
5929 {
5930 inst.error = _("bad bitmask specified after APSR");
5931 return FAIL;
5932 }
5933 }
5934 else
477330fc 5935 {
d2cd1205 5936 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
477330fc 5937 p - start);
d2cd1205 5938 if (!psr)
477330fc 5939 goto error;
a737bd4d 5940
d2cd1205
JB
5941 psr_field |= psr->field;
5942 }
a737bd4d 5943 }
c19d1205 5944 else
a737bd4d 5945 {
c19d1205
ZW
5946 if (ISALNUM (*p))
5947 goto error; /* Garbage after "[CS]PSR". */
5948
d2cd1205 5949 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
477330fc 5950 is deprecated, but allow it anyway. */
d2cd1205
JB
5951 if (is_apsr && lhs)
5952 {
5953 psr_field |= PSR_f;
5954 as_tsktsk (_("writing to APSR without specifying a bitmask is "
5955 "deprecated"));
5956 }
5957 else if (!m_profile)
5958 /* These bits are never right for M-profile devices: don't set them
5959 (only code paths which read/write APSR reach here). */
5960 psr_field |= (PSR_c | PSR_f);
a737bd4d 5961 }
c19d1205
ZW
5962 *str = p;
5963 return psr_field;
a737bd4d 5964
d2cd1205
JB
5965 unsupported_psr:
5966 inst.error = _("selected processor does not support requested special "
5967 "purpose register");
5968 return FAIL;
5969
c19d1205
ZW
5970 error:
5971 inst.error = _("flag for {c}psr instruction expected");
5972 return FAIL;
a737bd4d
NC
5973}
5974
c19d1205
ZW
5975/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
5976 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 5977
c19d1205
ZW
5978static int
5979parse_cps_flags (char **str)
a737bd4d 5980{
c19d1205
ZW
5981 int val = 0;
5982 int saw_a_flag = 0;
5983 char *s = *str;
a737bd4d 5984
c19d1205
ZW
5985 for (;;)
5986 switch (*s++)
5987 {
5988 case '\0': case ',':
5989 goto done;
a737bd4d 5990
c19d1205
ZW
5991 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
5992 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
5993 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 5994
c19d1205
ZW
5995 default:
5996 inst.error = _("unrecognized CPS flag");
5997 return FAIL;
5998 }
a737bd4d 5999
c19d1205
ZW
6000 done:
6001 if (saw_a_flag == 0)
a737bd4d 6002 {
c19d1205
ZW
6003 inst.error = _("missing CPS flags");
6004 return FAIL;
a737bd4d 6005 }
a737bd4d 6006
c19d1205
ZW
6007 *str = s - 1;
6008 return val;
a737bd4d
NC
6009}
6010
c19d1205
ZW
6011/* Parse an endian specifier ("BE" or "LE", case insensitive);
6012 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
6013
6014static int
c19d1205 6015parse_endian_specifier (char **str)
a737bd4d 6016{
c19d1205
ZW
6017 int little_endian;
6018 char *s = *str;
a737bd4d 6019
c19d1205
ZW
6020 if (strncasecmp (s, "BE", 2))
6021 little_endian = 0;
6022 else if (strncasecmp (s, "LE", 2))
6023 little_endian = 1;
6024 else
a737bd4d 6025 {
c19d1205 6026 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
6027 return FAIL;
6028 }
6029
c19d1205 6030 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 6031 {
c19d1205 6032 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
6033 return FAIL;
6034 }
6035
c19d1205
ZW
6036 *str = s + 2;
6037 return little_endian;
6038}
a737bd4d 6039
c19d1205
ZW
6040/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
6041 value suitable for poking into the rotate field of an sxt or sxta
6042 instruction, or FAIL on error. */
6043
6044static int
6045parse_ror (char **str)
6046{
6047 int rot;
6048 char *s = *str;
6049
6050 if (strncasecmp (s, "ROR", 3) == 0)
6051 s += 3;
6052 else
a737bd4d 6053 {
c19d1205 6054 inst.error = _("missing rotation field after comma");
a737bd4d
NC
6055 return FAIL;
6056 }
c19d1205
ZW
6057
6058 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
6059 return FAIL;
6060
6061 switch (rot)
a737bd4d 6062 {
c19d1205
ZW
6063 case 0: *str = s; return 0x0;
6064 case 8: *str = s; return 0x1;
6065 case 16: *str = s; return 0x2;
6066 case 24: *str = s; return 0x3;
6067
6068 default:
6069 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
6070 return FAIL;
6071 }
c19d1205 6072}
a737bd4d 6073
c19d1205
ZW
6074/* Parse a conditional code (from conds[] below). The value returned is in the
6075 range 0 .. 14, or FAIL. */
6076static int
6077parse_cond (char **str)
6078{
c462b453 6079 char *q;
c19d1205 6080 const struct asm_cond *c;
c462b453
PB
6081 int n;
6082 /* Condition codes are always 2 characters, so matching up to
6083 3 characters is sufficient. */
6084 char cond[3];
a737bd4d 6085
c462b453
PB
6086 q = *str;
6087 n = 0;
6088 while (ISALPHA (*q) && n < 3)
6089 {
e07e6e58 6090 cond[n] = TOLOWER (*q);
c462b453
PB
6091 q++;
6092 n++;
6093 }
a737bd4d 6094
21d799b5 6095 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
c19d1205 6096 if (!c)
a737bd4d 6097 {
c19d1205 6098 inst.error = _("condition required");
a737bd4d
NC
6099 return FAIL;
6100 }
6101
c19d1205
ZW
6102 *str = q;
6103 return c->value;
6104}
6105
643afb90
MW
6106/* Record a use of the given feature. */
6107static void
6108record_feature_use (const arm_feature_set *feature)
6109{
6110 if (thumb_mode)
6111 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
6112 else
6113 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
6114}
6115
e797f7e0
MGD
6116/* If the given feature available in the selected CPU, mark it as used.
6117 Returns TRUE iff feature is available. */
6118static bfd_boolean
6119mark_feature_used (const arm_feature_set *feature)
6120{
6121 /* Ensure the option is valid on the current architecture. */
6122 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
6123 return FALSE;
6124
6125 /* Add the appropriate architecture feature for the barrier option used.
6126 */
643afb90 6127 record_feature_use (feature);
e797f7e0
MGD
6128
6129 return TRUE;
6130}
6131
62b3e311
PB
6132/* Parse an option for a barrier instruction. Returns the encoding for the
6133 option, or FAIL. */
6134static int
6135parse_barrier (char **str)
6136{
6137 char *p, *q;
6138 const struct asm_barrier_opt *o;
6139
6140 p = q = *str;
6141 while (ISALPHA (*q))
6142 q++;
6143
21d799b5 6144 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
477330fc 6145 q - p);
62b3e311
PB
6146 if (!o)
6147 return FAIL;
6148
e797f7e0
MGD
6149 if (!mark_feature_used (&o->arch))
6150 return FAIL;
6151
62b3e311
PB
6152 *str = q;
6153 return o->value;
6154}
6155
92e90b6e
PB
6156/* Parse the operands of a table branch instruction. Similar to a memory
6157 operand. */
6158static int
6159parse_tb (char **str)
6160{
6161 char * p = *str;
6162 int reg;
6163
6164 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
6165 {
6166 inst.error = _("'[' expected");
6167 return FAIL;
6168 }
92e90b6e 6169
dcbf9037 6170 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
6171 {
6172 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6173 return FAIL;
6174 }
6175 inst.operands[0].reg = reg;
6176
6177 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
6178 {
6179 inst.error = _("',' expected");
6180 return FAIL;
6181 }
5f4273c7 6182
dcbf9037 6183 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
6184 {
6185 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6186 return FAIL;
6187 }
6188 inst.operands[0].imm = reg;
6189
6190 if (skip_past_comma (&p) == SUCCESS)
6191 {
6192 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
6193 return FAIL;
6194 if (inst.reloc.exp.X_add_number != 1)
6195 {
6196 inst.error = _("invalid shift");
6197 return FAIL;
6198 }
6199 inst.operands[0].shifted = 1;
6200 }
6201
6202 if (skip_past_char (&p, ']') == FAIL)
6203 {
6204 inst.error = _("']' expected");
6205 return FAIL;
6206 }
6207 *str = p;
6208 return SUCCESS;
6209}
6210
5287ad62
JB
6211/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
6212 information on the types the operands can take and how they are encoded.
037e8744
JB
6213 Up to four operands may be read; this function handles setting the
6214 ".present" field for each read operand itself.
5287ad62
JB
6215 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
6216 else returns FAIL. */
6217
6218static int
6219parse_neon_mov (char **str, int *which_operand)
6220{
6221 int i = *which_operand, val;
6222 enum arm_reg_type rtype;
6223 char *ptr = *str;
dcbf9037 6224 struct neon_type_el optype;
5f4273c7 6225
dcbf9037 6226 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
6227 {
6228 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
6229 inst.operands[i].reg = val;
6230 inst.operands[i].isscalar = 1;
dcbf9037 6231 inst.operands[i].vectype = optype;
5287ad62
JB
6232 inst.operands[i++].present = 1;
6233
6234 if (skip_past_comma (&ptr) == FAIL)
477330fc 6235 goto wanted_comma;
5f4273c7 6236
dcbf9037 6237 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
477330fc 6238 goto wanted_arm;
5f4273c7 6239
5287ad62
JB
6240 inst.operands[i].reg = val;
6241 inst.operands[i].isreg = 1;
6242 inst.operands[i].present = 1;
6243 }
037e8744 6244 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
477330fc 6245 != FAIL)
5287ad62
JB
6246 {
6247 /* Cases 0, 1, 2, 3, 5 (D only). */
6248 if (skip_past_comma (&ptr) == FAIL)
477330fc 6249 goto wanted_comma;
5f4273c7 6250
5287ad62
JB
6251 inst.operands[i].reg = val;
6252 inst.operands[i].isreg = 1;
6253 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
6254 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6255 inst.operands[i].isvec = 1;
dcbf9037 6256 inst.operands[i].vectype = optype;
5287ad62
JB
6257 inst.operands[i++].present = 1;
6258
dcbf9037 6259 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
477330fc
RM
6260 {
6261 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
6262 Case 13: VMOV <Sd>, <Rm> */
6263 inst.operands[i].reg = val;
6264 inst.operands[i].isreg = 1;
6265 inst.operands[i].present = 1;
6266
6267 if (rtype == REG_TYPE_NQ)
6268 {
6269 first_error (_("can't use Neon quad register here"));
6270 return FAIL;
6271 }
6272 else if (rtype != REG_TYPE_VFS)
6273 {
6274 i++;
6275 if (skip_past_comma (&ptr) == FAIL)
6276 goto wanted_comma;
6277 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6278 goto wanted_arm;
6279 inst.operands[i].reg = val;
6280 inst.operands[i].isreg = 1;
6281 inst.operands[i].present = 1;
6282 }
6283 }
037e8744 6284 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
477330fc
RM
6285 &optype)) != FAIL)
6286 {
6287 /* Case 0: VMOV<c><q> <Qd>, <Qm>
6288 Case 1: VMOV<c><q> <Dd>, <Dm>
6289 Case 8: VMOV.F32 <Sd>, <Sm>
6290 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
6291
6292 inst.operands[i].reg = val;
6293 inst.operands[i].isreg = 1;
6294 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
6295 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6296 inst.operands[i].isvec = 1;
6297 inst.operands[i].vectype = optype;
6298 inst.operands[i].present = 1;
6299
6300 if (skip_past_comma (&ptr) == SUCCESS)
6301 {
6302 /* Case 15. */
6303 i++;
6304
6305 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6306 goto wanted_arm;
6307
6308 inst.operands[i].reg = val;
6309 inst.operands[i].isreg = 1;
6310 inst.operands[i++].present = 1;
6311
6312 if (skip_past_comma (&ptr) == FAIL)
6313 goto wanted_comma;
6314
6315 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6316 goto wanted_arm;
6317
6318 inst.operands[i].reg = val;
6319 inst.operands[i].isreg = 1;
6320 inst.operands[i].present = 1;
6321 }
6322 }
4641781c 6323 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
477330fc
RM
6324 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
6325 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
6326 Case 10: VMOV.F32 <Sd>, #<imm>
6327 Case 11: VMOV.F64 <Dd>, #<imm> */
6328 inst.operands[i].immisfloat = 1;
8335d6aa
JW
6329 else if (parse_big_immediate (&ptr, i, NULL, /*allow_symbol_p=*/FALSE)
6330 == SUCCESS)
477330fc
RM
6331 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
6332 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
6333 ;
5287ad62 6334 else
477330fc
RM
6335 {
6336 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
6337 return FAIL;
6338 }
5287ad62 6339 }
dcbf9037 6340 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6341 {
6342 /* Cases 6, 7. */
6343 inst.operands[i].reg = val;
6344 inst.operands[i].isreg = 1;
6345 inst.operands[i++].present = 1;
5f4273c7 6346
5287ad62 6347 if (skip_past_comma (&ptr) == FAIL)
477330fc 6348 goto wanted_comma;
5f4273c7 6349
dcbf9037 6350 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
477330fc
RM
6351 {
6352 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6353 inst.operands[i].reg = val;
6354 inst.operands[i].isscalar = 1;
6355 inst.operands[i].present = 1;
6356 inst.operands[i].vectype = optype;
6357 }
dcbf9037 6358 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
477330fc
RM
6359 {
6360 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6361 inst.operands[i].reg = val;
6362 inst.operands[i].isreg = 1;
6363 inst.operands[i++].present = 1;
6364
6365 if (skip_past_comma (&ptr) == FAIL)
6366 goto wanted_comma;
6367
6368 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
6369 == FAIL)
6370 {
6371 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
6372 return FAIL;
6373 }
6374
6375 inst.operands[i].reg = val;
6376 inst.operands[i].isreg = 1;
6377 inst.operands[i].isvec = 1;
6378 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6379 inst.operands[i].vectype = optype;
6380 inst.operands[i].present = 1;
6381
6382 if (rtype == REG_TYPE_VFS)
6383 {
6384 /* Case 14. */
6385 i++;
6386 if (skip_past_comma (&ptr) == FAIL)
6387 goto wanted_comma;
6388 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6389 &optype)) == FAIL)
6390 {
6391 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6392 return FAIL;
6393 }
6394 inst.operands[i].reg = val;
6395 inst.operands[i].isreg = 1;
6396 inst.operands[i].isvec = 1;
6397 inst.operands[i].issingle = 1;
6398 inst.operands[i].vectype = optype;
6399 inst.operands[i].present = 1;
6400 }
6401 }
037e8744 6402 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
477330fc
RM
6403 != FAIL)
6404 {
6405 /* Case 13. */
6406 inst.operands[i].reg = val;
6407 inst.operands[i].isreg = 1;
6408 inst.operands[i].isvec = 1;
6409 inst.operands[i].issingle = 1;
6410 inst.operands[i].vectype = optype;
6411 inst.operands[i].present = 1;
6412 }
5287ad62
JB
6413 }
6414 else
6415 {
dcbf9037 6416 first_error (_("parse error"));
5287ad62
JB
6417 return FAIL;
6418 }
6419
6420 /* Successfully parsed the operands. Update args. */
6421 *which_operand = i;
6422 *str = ptr;
6423 return SUCCESS;
6424
5f4273c7 6425 wanted_comma:
dcbf9037 6426 first_error (_("expected comma"));
5287ad62 6427 return FAIL;
5f4273c7
NC
6428
6429 wanted_arm:
dcbf9037 6430 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 6431 return FAIL;
5287ad62
JB
6432}
6433
5be8be5d
DG
6434/* Use this macro when the operand constraints are different
6435 for ARM and THUMB (e.g. ldrd). */
6436#define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6437 ((arm_operand) | ((thumb_operand) << 16))
6438
c19d1205
ZW
6439/* Matcher codes for parse_operands. */
6440enum operand_parse_code
6441{
6442 OP_stop, /* end of line */
6443
6444 OP_RR, /* ARM register */
6445 OP_RRnpc, /* ARM register, not r15 */
5be8be5d 6446 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
c19d1205 6447 OP_RRnpcb, /* ARM register, not r15, in square brackets */
fa94de6b 6448 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
55881a11 6449 optional trailing ! */
c19d1205
ZW
6450 OP_RRw, /* ARM register, not r15, optional trailing ! */
6451 OP_RCP, /* Coprocessor number */
6452 OP_RCN, /* Coprocessor register */
6453 OP_RF, /* FPA register */
6454 OP_RVS, /* VFP single precision register */
5287ad62
JB
6455 OP_RVD, /* VFP double precision register (0..15) */
6456 OP_RND, /* Neon double precision register (0..31) */
6457 OP_RNQ, /* Neon quad precision register */
037e8744 6458 OP_RVSD, /* VFP single or double precision register */
5287ad62 6459 OP_RNDQ, /* Neon double or quad precision register */
037e8744 6460 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 6461 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
6462 OP_RVC, /* VFP control register */
6463 OP_RMF, /* Maverick F register */
6464 OP_RMD, /* Maverick D register */
6465 OP_RMFX, /* Maverick FX register */
6466 OP_RMDX, /* Maverick DX register */
6467 OP_RMAX, /* Maverick AX register */
6468 OP_RMDS, /* Maverick DSPSC register */
6469 OP_RIWR, /* iWMMXt wR register */
6470 OP_RIWC, /* iWMMXt wC register */
6471 OP_RIWG, /* iWMMXt wCG register */
6472 OP_RXA, /* XScale accumulator register */
6473
6474 OP_REGLST, /* ARM register list */
6475 OP_VRSLST, /* VFP single-precision register list */
6476 OP_VRDLST, /* VFP double-precision register list */
037e8744 6477 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
6478 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
6479 OP_NSTRLST, /* Neon element/structure list */
6480
5287ad62 6481 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 6482 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
aacf0b33 6483 OP_RSVD_FI0, /* VFP S or D reg, or floating point immediate zero. */
5287ad62 6484 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 6485 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
6486 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
6487 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
6488 OP_VMOV, /* Neon VMOV operands. */
4316f0d2 6489 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
5287ad62 6490 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
2d447fca 6491 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
5287ad62
JB
6492
6493 OP_I0, /* immediate zero */
c19d1205
ZW
6494 OP_I7, /* immediate value 0 .. 7 */
6495 OP_I15, /* 0 .. 15 */
6496 OP_I16, /* 1 .. 16 */
5287ad62 6497 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
6498 OP_I31, /* 0 .. 31 */
6499 OP_I31w, /* 0 .. 31, optional trailing ! */
6500 OP_I32, /* 1 .. 32 */
5287ad62
JB
6501 OP_I32z, /* 0 .. 32 */
6502 OP_I63, /* 0 .. 63 */
c19d1205 6503 OP_I63s, /* -64 .. 63 */
5287ad62
JB
6504 OP_I64, /* 1 .. 64 */
6505 OP_I64z, /* 0 .. 64 */
c19d1205 6506 OP_I255, /* 0 .. 255 */
c19d1205
ZW
6507
6508 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
6509 OP_I7b, /* 0 .. 7 */
6510 OP_I15b, /* 0 .. 15 */
6511 OP_I31b, /* 0 .. 31 */
6512
6513 OP_SH, /* shifter operand */
4962c51a 6514 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 6515 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
6516 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
6517 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
6518 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
6519 OP_EXP, /* arbitrary expression */
6520 OP_EXPi, /* same, with optional immediate prefix */
6521 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 6522 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c19d1205
ZW
6523
6524 OP_CPSF, /* CPS flags */
6525 OP_ENDI, /* Endianness specifier */
d2cd1205
JB
6526 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
6527 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
c19d1205 6528 OP_COND, /* conditional code */
92e90b6e 6529 OP_TB, /* Table branch. */
c19d1205 6530
037e8744
JB
6531 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
6532
c19d1205
ZW
6533 OP_RRnpc_I0, /* ARM register or literal 0 */
6534 OP_RR_EXr, /* ARM register or expression with opt. reloc suff. */
6535 OP_RR_EXi, /* ARM register or expression with imm prefix */
6536 OP_RF_IF, /* FPA register or immediate */
6537 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 6538 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
6539
6540 /* Optional operands. */
6541 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
6542 OP_oI31b, /* 0 .. 31 */
5287ad62 6543 OP_oI32b, /* 1 .. 32 */
5f1af56b 6544 OP_oI32z, /* 0 .. 32 */
c19d1205
ZW
6545 OP_oIffffb, /* 0 .. 65535 */
6546 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
6547
6548 OP_oRR, /* ARM register */
6549 OP_oRRnpc, /* ARM register, not the PC */
5be8be5d 6550 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
b6702015 6551 OP_oRRw, /* ARM register, not r15, optional trailing ! */
5287ad62
JB
6552 OP_oRND, /* Optional Neon double precision register */
6553 OP_oRNQ, /* Optional Neon quad precision register */
6554 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 6555 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
6556 OP_oSHll, /* LSL immediate */
6557 OP_oSHar, /* ASR immediate */
6558 OP_oSHllar, /* LSL or ASR immediate */
6559 OP_oROR, /* ROR 0/8/16/24 */
52e7f43d 6560 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
c19d1205 6561
5be8be5d
DG
6562 /* Some pre-defined mixed (ARM/THUMB) operands. */
6563 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
6564 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
6565 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
6566
c19d1205
ZW
6567 OP_FIRST_OPTIONAL = OP_oI7b
6568};
a737bd4d 6569
c19d1205
ZW
6570/* Generic instruction operand parser. This does no encoding and no
6571 semantic validation; it merely squirrels values away in the inst
6572 structure. Returns SUCCESS or FAIL depending on whether the
6573 specified grammar matched. */
6574static int
5be8be5d 6575parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
c19d1205 6576{
5be8be5d 6577 unsigned const int *upat = pattern;
c19d1205
ZW
6578 char *backtrack_pos = 0;
6579 const char *backtrack_error = 0;
99aad254 6580 int i, val = 0, backtrack_index = 0;
5287ad62 6581 enum arm_reg_type rtype;
4962c51a 6582 parse_operand_result result;
5be8be5d 6583 unsigned int op_parse_code;
c19d1205 6584
e07e6e58
NC
6585#define po_char_or_fail(chr) \
6586 do \
6587 { \
6588 if (skip_past_char (&str, chr) == FAIL) \
477330fc 6589 goto bad_args; \
e07e6e58
NC
6590 } \
6591 while (0)
c19d1205 6592
e07e6e58
NC
6593#define po_reg_or_fail(regtype) \
6594 do \
dcbf9037 6595 { \
e07e6e58 6596 val = arm_typed_reg_parse (& str, regtype, & rtype, \
477330fc 6597 & inst.operands[i].vectype); \
e07e6e58 6598 if (val == FAIL) \
477330fc
RM
6599 { \
6600 first_error (_(reg_expected_msgs[regtype])); \
6601 goto failure; \
6602 } \
e07e6e58
NC
6603 inst.operands[i].reg = val; \
6604 inst.operands[i].isreg = 1; \
6605 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6606 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6607 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
477330fc
RM
6608 || rtype == REG_TYPE_VFD \
6609 || rtype == REG_TYPE_NQ); \
dcbf9037 6610 } \
e07e6e58
NC
6611 while (0)
6612
6613#define po_reg_or_goto(regtype, label) \
6614 do \
6615 { \
6616 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6617 & inst.operands[i].vectype); \
6618 if (val == FAIL) \
6619 goto label; \
dcbf9037 6620 \
e07e6e58
NC
6621 inst.operands[i].reg = val; \
6622 inst.operands[i].isreg = 1; \
6623 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6624 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6625 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
477330fc 6626 || rtype == REG_TYPE_VFD \
e07e6e58
NC
6627 || rtype == REG_TYPE_NQ); \
6628 } \
6629 while (0)
6630
6631#define po_imm_or_fail(min, max, popt) \
6632 do \
6633 { \
6634 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
6635 goto failure; \
6636 inst.operands[i].imm = val; \
6637 } \
6638 while (0)
6639
6640#define po_scalar_or_goto(elsz, label) \
6641 do \
6642 { \
6643 val = parse_scalar (& str, elsz, & inst.operands[i].vectype); \
6644 if (val == FAIL) \
6645 goto label; \
6646 inst.operands[i].reg = val; \
6647 inst.operands[i].isscalar = 1; \
6648 } \
6649 while (0)
6650
6651#define po_misc_or_fail(expr) \
6652 do \
6653 { \
6654 if (expr) \
6655 goto failure; \
6656 } \
6657 while (0)
6658
6659#define po_misc_or_fail_no_backtrack(expr) \
6660 do \
6661 { \
6662 result = expr; \
6663 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
6664 backtrack_pos = 0; \
6665 if (result != PARSE_OPERAND_SUCCESS) \
6666 goto failure; \
6667 } \
6668 while (0)
4962c51a 6669
52e7f43d
RE
6670#define po_barrier_or_imm(str) \
6671 do \
6672 { \
6673 val = parse_barrier (&str); \
ccb84d65
JB
6674 if (val == FAIL && ! ISALPHA (*str)) \
6675 goto immediate; \
6676 if (val == FAIL \
6677 /* ISB can only take SY as an option. */ \
6678 || ((inst.instruction & 0xf0) == 0x60 \
6679 && val != 0xf)) \
52e7f43d 6680 { \
ccb84d65
JB
6681 inst.error = _("invalid barrier type"); \
6682 backtrack_pos = 0; \
6683 goto failure; \
52e7f43d
RE
6684 } \
6685 } \
6686 while (0)
6687
c19d1205
ZW
6688 skip_whitespace (str);
6689
6690 for (i = 0; upat[i] != OP_stop; i++)
6691 {
5be8be5d
DG
6692 op_parse_code = upat[i];
6693 if (op_parse_code >= 1<<16)
6694 op_parse_code = thumb ? (op_parse_code >> 16)
6695 : (op_parse_code & ((1<<16)-1));
6696
6697 if (op_parse_code >= OP_FIRST_OPTIONAL)
c19d1205
ZW
6698 {
6699 /* Remember where we are in case we need to backtrack. */
9c2799c2 6700 gas_assert (!backtrack_pos);
c19d1205
ZW
6701 backtrack_pos = str;
6702 backtrack_error = inst.error;
6703 backtrack_index = i;
6704 }
6705
b6702015 6706 if (i > 0 && (i > 1 || inst.operands[0].present))
c19d1205
ZW
6707 po_char_or_fail (',');
6708
5be8be5d 6709 switch (op_parse_code)
c19d1205
ZW
6710 {
6711 /* Registers */
6712 case OP_oRRnpc:
5be8be5d 6713 case OP_oRRnpcsp:
c19d1205 6714 case OP_RRnpc:
5be8be5d 6715 case OP_RRnpcsp:
c19d1205
ZW
6716 case OP_oRR:
6717 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
6718 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
6719 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
6720 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
6721 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
6722 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
477330fc 6723 case OP_oRND:
5287ad62 6724 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
cd2cf30b
PB
6725 case OP_RVC:
6726 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
6727 break;
6728 /* Also accept generic coprocessor regs for unknown registers. */
6729 coproc_reg:
6730 po_reg_or_fail (REG_TYPE_CN);
6731 break;
c19d1205
ZW
6732 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
6733 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
6734 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
6735 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
6736 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
6737 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
6738 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
6739 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
6740 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
6741 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
477330fc 6742 case OP_oRNQ:
5287ad62 6743 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
477330fc 6744 case OP_oRNDQ:
5287ad62 6745 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
477330fc
RM
6746 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
6747 case OP_oRNSDQ:
6748 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
6749
6750 /* Neon scalar. Using an element size of 8 means that some invalid
6751 scalars are accepted here, so deal with those in later code. */
6752 case OP_RNSC: po_scalar_or_goto (8, failure); break;
6753
6754 case OP_RNDQ_I0:
6755 {
6756 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
6757 break;
6758 try_imm0:
6759 po_imm_or_fail (0, 0, TRUE);
6760 }
6761 break;
6762
6763 case OP_RVSD_I0:
6764 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
6765 break;
6766
aacf0b33
KT
6767 case OP_RSVD_FI0:
6768 {
6769 po_reg_or_goto (REG_TYPE_VFSD, try_ifimm0);
6770 break;
6771 try_ifimm0:
6772 if (parse_ifimm_zero (&str))
6773 inst.operands[i].imm = 0;
6774 else
6775 {
6776 inst.error
6777 = _("only floating point zero is allowed as immediate value");
6778 goto failure;
6779 }
6780 }
6781 break;
6782
477330fc
RM
6783 case OP_RR_RNSC:
6784 {
6785 po_scalar_or_goto (8, try_rr);
6786 break;
6787 try_rr:
6788 po_reg_or_fail (REG_TYPE_RN);
6789 }
6790 break;
6791
6792 case OP_RNSDQ_RNSC:
6793 {
6794 po_scalar_or_goto (8, try_nsdq);
6795 break;
6796 try_nsdq:
6797 po_reg_or_fail (REG_TYPE_NSDQ);
6798 }
6799 break;
6800
6801 case OP_RNDQ_RNSC:
6802 {
6803 po_scalar_or_goto (8, try_ndq);
6804 break;
6805 try_ndq:
6806 po_reg_or_fail (REG_TYPE_NDQ);
6807 }
6808 break;
6809
6810 case OP_RND_RNSC:
6811 {
6812 po_scalar_or_goto (8, try_vfd);
6813 break;
6814 try_vfd:
6815 po_reg_or_fail (REG_TYPE_VFD);
6816 }
6817 break;
6818
6819 case OP_VMOV:
6820 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
6821 not careful then bad things might happen. */
6822 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
6823 break;
6824
6825 case OP_RNDQ_Ibig:
6826 {
6827 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
6828 break;
6829 try_immbig:
6830 /* There's a possibility of getting a 64-bit immediate here, so
6831 we need special handling. */
8335d6aa
JW
6832 if (parse_big_immediate (&str, i, NULL, /*allow_symbol_p=*/FALSE)
6833 == FAIL)
477330fc
RM
6834 {
6835 inst.error = _("immediate value is out of range");
6836 goto failure;
6837 }
6838 }
6839 break;
6840
6841 case OP_RNDQ_I63b:
6842 {
6843 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
6844 break;
6845 try_shimm:
6846 po_imm_or_fail (0, 63, TRUE);
6847 }
6848 break;
c19d1205
ZW
6849
6850 case OP_RRnpcb:
6851 po_char_or_fail ('[');
6852 po_reg_or_fail (REG_TYPE_RN);
6853 po_char_or_fail (']');
6854 break;
a737bd4d 6855
55881a11 6856 case OP_RRnpctw:
c19d1205 6857 case OP_RRw:
b6702015 6858 case OP_oRRw:
c19d1205
ZW
6859 po_reg_or_fail (REG_TYPE_RN);
6860 if (skip_past_char (&str, '!') == SUCCESS)
6861 inst.operands[i].writeback = 1;
6862 break;
6863
6864 /* Immediates */
6865 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
6866 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
6867 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
477330fc 6868 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
6869 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
6870 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
477330fc 6871 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 6872 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
477330fc
RM
6873 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
6874 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
6875 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 6876 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
6877
6878 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
6879 case OP_oI7b:
6880 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
6881 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
6882 case OP_oI31b:
6883 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
477330fc
RM
6884 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
6885 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
c19d1205
ZW
6886 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
6887
6888 /* Immediate variants */
6889 case OP_oI255c:
6890 po_char_or_fail ('{');
6891 po_imm_or_fail (0, 255, TRUE);
6892 po_char_or_fail ('}');
6893 break;
6894
6895 case OP_I31w:
6896 /* The expression parser chokes on a trailing !, so we have
6897 to find it first and zap it. */
6898 {
6899 char *s = str;
6900 while (*s && *s != ',')
6901 s++;
6902 if (s[-1] == '!')
6903 {
6904 s[-1] = '\0';
6905 inst.operands[i].writeback = 1;
6906 }
6907 po_imm_or_fail (0, 31, TRUE);
6908 if (str == s - 1)
6909 str = s;
6910 }
6911 break;
6912
6913 /* Expressions */
6914 case OP_EXPi: EXPi:
6915 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6916 GE_OPT_PREFIX));
6917 break;
6918
6919 case OP_EXP:
6920 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6921 GE_NO_PREFIX));
6922 break;
6923
6924 case OP_EXPr: EXPr:
6925 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6926 GE_NO_PREFIX));
6927 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 6928 {
c19d1205
ZW
6929 val = parse_reloc (&str);
6930 if (val == -1)
6931 {
6932 inst.error = _("unrecognized relocation suffix");
6933 goto failure;
6934 }
6935 else if (val != BFD_RELOC_UNUSED)
6936 {
6937 inst.operands[i].imm = val;
6938 inst.operands[i].hasreloc = 1;
6939 }
a737bd4d 6940 }
c19d1205 6941 break;
a737bd4d 6942
b6895b4f
PB
6943 /* Operand for MOVW or MOVT. */
6944 case OP_HALF:
6945 po_misc_or_fail (parse_half (&str));
6946 break;
6947
e07e6e58 6948 /* Register or expression. */
c19d1205
ZW
6949 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
6950 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 6951
e07e6e58 6952 /* Register or immediate. */
c19d1205
ZW
6953 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
6954 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 6955
c19d1205
ZW
6956 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
6957 IF:
6958 if (!is_immediate_prefix (*str))
6959 goto bad_args;
6960 str++;
6961 val = parse_fpa_immediate (&str);
6962 if (val == FAIL)
6963 goto failure;
6964 /* FPA immediates are encoded as registers 8-15.
6965 parse_fpa_immediate has already applied the offset. */
6966 inst.operands[i].reg = val;
6967 inst.operands[i].isreg = 1;
6968 break;
09d92015 6969
2d447fca
JM
6970 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
6971 I32z: po_imm_or_fail (0, 32, FALSE); break;
6972
e07e6e58 6973 /* Two kinds of register. */
c19d1205
ZW
6974 case OP_RIWR_RIWC:
6975 {
6976 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
6977 if (!rege
6978 || (rege->type != REG_TYPE_MMXWR
6979 && rege->type != REG_TYPE_MMXWC
6980 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
6981 {
6982 inst.error = _("iWMMXt data or control register expected");
6983 goto failure;
6984 }
6985 inst.operands[i].reg = rege->number;
6986 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
6987 }
6988 break;
09d92015 6989
41adaa5c
JM
6990 case OP_RIWC_RIWG:
6991 {
6992 struct reg_entry *rege = arm_reg_parse_multi (&str);
6993 if (!rege
6994 || (rege->type != REG_TYPE_MMXWC
6995 && rege->type != REG_TYPE_MMXWCG))
6996 {
6997 inst.error = _("iWMMXt control register expected");
6998 goto failure;
6999 }
7000 inst.operands[i].reg = rege->number;
7001 inst.operands[i].isreg = 1;
7002 }
7003 break;
7004
c19d1205
ZW
7005 /* Misc */
7006 case OP_CPSF: val = parse_cps_flags (&str); break;
7007 case OP_ENDI: val = parse_endian_specifier (&str); break;
7008 case OP_oROR: val = parse_ror (&str); break;
c19d1205 7009 case OP_COND: val = parse_cond (&str); break;
52e7f43d
RE
7010 case OP_oBARRIER_I15:
7011 po_barrier_or_imm (str); break;
7012 immediate:
7013 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
477330fc 7014 goto failure;
52e7f43d 7015 break;
c19d1205 7016
fa94de6b 7017 case OP_wPSR:
d2cd1205 7018 case OP_rPSR:
90ec0d68
MGD
7019 po_reg_or_goto (REG_TYPE_RNB, try_psr);
7020 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
7021 {
7022 inst.error = _("Banked registers are not available with this "
7023 "architecture.");
7024 goto failure;
7025 }
7026 break;
d2cd1205
JB
7027 try_psr:
7028 val = parse_psr (&str, op_parse_code == OP_wPSR);
7029 break;
037e8744 7030
477330fc
RM
7031 case OP_APSR_RR:
7032 po_reg_or_goto (REG_TYPE_RN, try_apsr);
7033 break;
7034 try_apsr:
7035 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
7036 instruction). */
7037 if (strncasecmp (str, "APSR_", 5) == 0)
7038 {
7039 unsigned found = 0;
7040 str += 5;
7041 while (found < 15)
7042 switch (*str++)
7043 {
7044 case 'c': found = (found & 1) ? 16 : found | 1; break;
7045 case 'n': found = (found & 2) ? 16 : found | 2; break;
7046 case 'z': found = (found & 4) ? 16 : found | 4; break;
7047 case 'v': found = (found & 8) ? 16 : found | 8; break;
7048 default: found = 16;
7049 }
7050 if (found != 15)
7051 goto failure;
7052 inst.operands[i].isvec = 1;
f7c21dc7
NC
7053 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
7054 inst.operands[i].reg = REG_PC;
477330fc
RM
7055 }
7056 else
7057 goto failure;
7058 break;
037e8744 7059
92e90b6e
PB
7060 case OP_TB:
7061 po_misc_or_fail (parse_tb (&str));
7062 break;
7063
e07e6e58 7064 /* Register lists. */
c19d1205
ZW
7065 case OP_REGLST:
7066 val = parse_reg_list (&str);
7067 if (*str == '^')
7068 {
5e0d7f77 7069 inst.operands[i].writeback = 1;
c19d1205
ZW
7070 str++;
7071 }
7072 break;
09d92015 7073
c19d1205 7074 case OP_VRSLST:
5287ad62 7075 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 7076 break;
09d92015 7077
c19d1205 7078 case OP_VRDLST:
5287ad62 7079 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 7080 break;
a737bd4d 7081
477330fc
RM
7082 case OP_VRSDLST:
7083 /* Allow Q registers too. */
7084 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7085 REGLIST_NEON_D);
7086 if (val == FAIL)
7087 {
7088 inst.error = NULL;
7089 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7090 REGLIST_VFP_S);
7091 inst.operands[i].issingle = 1;
7092 }
7093 break;
7094
7095 case OP_NRDLST:
7096 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7097 REGLIST_NEON_D);
7098 break;
5287ad62
JB
7099
7100 case OP_NSTRLST:
477330fc
RM
7101 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
7102 &inst.operands[i].vectype);
7103 break;
5287ad62 7104
c19d1205
ZW
7105 /* Addressing modes */
7106 case OP_ADDR:
7107 po_misc_or_fail (parse_address (&str, i));
7108 break;
09d92015 7109
4962c51a
MS
7110 case OP_ADDRGLDR:
7111 po_misc_or_fail_no_backtrack (
477330fc 7112 parse_address_group_reloc (&str, i, GROUP_LDR));
4962c51a
MS
7113 break;
7114
7115 case OP_ADDRGLDRS:
7116 po_misc_or_fail_no_backtrack (
477330fc 7117 parse_address_group_reloc (&str, i, GROUP_LDRS));
4962c51a
MS
7118 break;
7119
7120 case OP_ADDRGLDC:
7121 po_misc_or_fail_no_backtrack (
477330fc 7122 parse_address_group_reloc (&str, i, GROUP_LDC));
4962c51a
MS
7123 break;
7124
c19d1205
ZW
7125 case OP_SH:
7126 po_misc_or_fail (parse_shifter_operand (&str, i));
7127 break;
09d92015 7128
4962c51a
MS
7129 case OP_SHG:
7130 po_misc_or_fail_no_backtrack (
477330fc 7131 parse_shifter_operand_group_reloc (&str, i));
4962c51a
MS
7132 break;
7133
c19d1205
ZW
7134 case OP_oSHll:
7135 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
7136 break;
09d92015 7137
c19d1205
ZW
7138 case OP_oSHar:
7139 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
7140 break;
09d92015 7141
c19d1205
ZW
7142 case OP_oSHllar:
7143 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
7144 break;
09d92015 7145
c19d1205 7146 default:
5be8be5d 7147 as_fatal (_("unhandled operand code %d"), op_parse_code);
c19d1205 7148 }
09d92015 7149
c19d1205
ZW
7150 /* Various value-based sanity checks and shared operations. We
7151 do not signal immediate failures for the register constraints;
7152 this allows a syntax error to take precedence. */
5be8be5d 7153 switch (op_parse_code)
c19d1205
ZW
7154 {
7155 case OP_oRRnpc:
7156 case OP_RRnpc:
7157 case OP_RRnpcb:
7158 case OP_RRw:
b6702015 7159 case OP_oRRw:
c19d1205
ZW
7160 case OP_RRnpc_I0:
7161 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
7162 inst.error = BAD_PC;
7163 break;
09d92015 7164
5be8be5d
DG
7165 case OP_oRRnpcsp:
7166 case OP_RRnpcsp:
7167 if (inst.operands[i].isreg)
7168 {
7169 if (inst.operands[i].reg == REG_PC)
7170 inst.error = BAD_PC;
7171 else if (inst.operands[i].reg == REG_SP)
7172 inst.error = BAD_SP;
7173 }
7174 break;
7175
55881a11 7176 case OP_RRnpctw:
fa94de6b
RM
7177 if (inst.operands[i].isreg
7178 && inst.operands[i].reg == REG_PC
55881a11
MGD
7179 && (inst.operands[i].writeback || thumb))
7180 inst.error = BAD_PC;
7181 break;
7182
c19d1205
ZW
7183 case OP_CPSF:
7184 case OP_ENDI:
7185 case OP_oROR:
d2cd1205
JB
7186 case OP_wPSR:
7187 case OP_rPSR:
c19d1205 7188 case OP_COND:
52e7f43d 7189 case OP_oBARRIER_I15:
c19d1205
ZW
7190 case OP_REGLST:
7191 case OP_VRSLST:
7192 case OP_VRDLST:
477330fc
RM
7193 case OP_VRSDLST:
7194 case OP_NRDLST:
7195 case OP_NSTRLST:
c19d1205
ZW
7196 if (val == FAIL)
7197 goto failure;
7198 inst.operands[i].imm = val;
7199 break;
a737bd4d 7200
c19d1205
ZW
7201 default:
7202 break;
7203 }
09d92015 7204
c19d1205
ZW
7205 /* If we get here, this operand was successfully parsed. */
7206 inst.operands[i].present = 1;
7207 continue;
09d92015 7208
c19d1205 7209 bad_args:
09d92015 7210 inst.error = BAD_ARGS;
c19d1205
ZW
7211
7212 failure:
7213 if (!backtrack_pos)
d252fdde
PB
7214 {
7215 /* The parse routine should already have set inst.error, but set a
5f4273c7 7216 default here just in case. */
d252fdde
PB
7217 if (!inst.error)
7218 inst.error = _("syntax error");
7219 return FAIL;
7220 }
c19d1205
ZW
7221
7222 /* Do not backtrack over a trailing optional argument that
7223 absorbed some text. We will only fail again, with the
7224 'garbage following instruction' error message, which is
7225 probably less helpful than the current one. */
7226 if (backtrack_index == i && backtrack_pos != str
7227 && upat[i+1] == OP_stop)
d252fdde
PB
7228 {
7229 if (!inst.error)
7230 inst.error = _("syntax error");
7231 return FAIL;
7232 }
c19d1205
ZW
7233
7234 /* Try again, skipping the optional argument at backtrack_pos. */
7235 str = backtrack_pos;
7236 inst.error = backtrack_error;
7237 inst.operands[backtrack_index].present = 0;
7238 i = backtrack_index;
7239 backtrack_pos = 0;
09d92015 7240 }
09d92015 7241
c19d1205
ZW
7242 /* Check that we have parsed all the arguments. */
7243 if (*str != '\0' && !inst.error)
7244 inst.error = _("garbage following instruction");
09d92015 7245
c19d1205 7246 return inst.error ? FAIL : SUCCESS;
09d92015
MM
7247}
7248
c19d1205
ZW
7249#undef po_char_or_fail
7250#undef po_reg_or_fail
7251#undef po_reg_or_goto
7252#undef po_imm_or_fail
5287ad62 7253#undef po_scalar_or_fail
52e7f43d 7254#undef po_barrier_or_imm
e07e6e58 7255
c19d1205 7256/* Shorthand macro for instruction encoding functions issuing errors. */
e07e6e58
NC
7257#define constraint(expr, err) \
7258 do \
c19d1205 7259 { \
e07e6e58
NC
7260 if (expr) \
7261 { \
7262 inst.error = err; \
7263 return; \
7264 } \
c19d1205 7265 } \
e07e6e58 7266 while (0)
c19d1205 7267
fdfde340
JM
7268/* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
7269 instructions are unpredictable if these registers are used. This
7270 is the BadReg predicate in ARM's Thumb-2 documentation. */
7271#define reject_bad_reg(reg) \
7272 do \
7273 if (reg == REG_SP || reg == REG_PC) \
7274 { \
7275 inst.error = (reg == REG_SP) ? BAD_SP : BAD_PC; \
7276 return; \
7277 } \
7278 while (0)
7279
94206790
MM
7280/* If REG is R13 (the stack pointer), warn that its use is
7281 deprecated. */
7282#define warn_deprecated_sp(reg) \
7283 do \
7284 if (warn_on_deprecated && reg == REG_SP) \
5c3696f8 7285 as_tsktsk (_("use of r13 is deprecated")); \
94206790
MM
7286 while (0)
7287
c19d1205
ZW
7288/* Functions for operand encoding. ARM, then Thumb. */
7289
d840c081 7290#define rotate_left(v, n) (v << (n & 31) | v >> ((32 - n) & 31))
c19d1205 7291
9db2f6b4
RL
7292/* If the current inst is scalar ARMv8.2 fp16 instruction, do special encoding.
7293
7294 The only binary encoding difference is the Coprocessor number. Coprocessor
7295 9 is used for half-precision calculations or conversions. The format of the
7296 instruction is the same as the equivalent Coprocessor 10 instuction that
7297 exists for Single-Precision operation. */
7298
7299static void
7300do_scalar_fp16_v82_encode (void)
7301{
7302 if (inst.cond != COND_ALWAYS)
7303 as_warn (_("ARMv8.2 scalar fp16 instruction cannot be conditional,"
7304 " the behaviour is UNPREDICTABLE"));
7305 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
7306 _(BAD_FP16));
7307
7308 inst.instruction = (inst.instruction & 0xfffff0ff) | 0x900;
7309 mark_feature_used (&arm_ext_fp16);
7310}
7311
c19d1205
ZW
7312/* If VAL can be encoded in the immediate field of an ARM instruction,
7313 return the encoded form. Otherwise, return FAIL. */
7314
7315static unsigned int
7316encode_arm_immediate (unsigned int val)
09d92015 7317{
c19d1205
ZW
7318 unsigned int a, i;
7319
4f1d6205
L
7320 if (val <= 0xff)
7321 return val;
7322
7323 for (i = 2; i < 32; i += 2)
c19d1205
ZW
7324 if ((a = rotate_left (val, i)) <= 0xff)
7325 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
7326
7327 return FAIL;
09d92015
MM
7328}
7329
c19d1205
ZW
7330/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
7331 return the encoded form. Otherwise, return FAIL. */
7332static unsigned int
7333encode_thumb32_immediate (unsigned int val)
09d92015 7334{
c19d1205 7335 unsigned int a, i;
09d92015 7336
9c3c69f2 7337 if (val <= 0xff)
c19d1205 7338 return val;
a737bd4d 7339
9c3c69f2 7340 for (i = 1; i <= 24; i++)
09d92015 7341 {
9c3c69f2
PB
7342 a = val >> i;
7343 if ((val & ~(0xff << i)) == 0)
7344 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 7345 }
a737bd4d 7346
c19d1205
ZW
7347 a = val & 0xff;
7348 if (val == ((a << 16) | a))
7349 return 0x100 | a;
7350 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
7351 return 0x300 | a;
09d92015 7352
c19d1205
ZW
7353 a = val & 0xff00;
7354 if (val == ((a << 16) | a))
7355 return 0x200 | (a >> 8);
a737bd4d 7356
c19d1205 7357 return FAIL;
09d92015 7358}
5287ad62 7359/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
7360
7361static void
5287ad62
JB
7362encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
7363{
7364 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
7365 && reg > 15)
7366 {
b1cc4aeb 7367 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
477330fc
RM
7368 {
7369 if (thumb_mode)
7370 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
7371 fpu_vfp_ext_d32);
7372 else
7373 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
7374 fpu_vfp_ext_d32);
7375 }
5287ad62 7376 else
477330fc
RM
7377 {
7378 first_error (_("D register out of range for selected VFP version"));
7379 return;
7380 }
5287ad62
JB
7381 }
7382
c19d1205 7383 switch (pos)
09d92015 7384 {
c19d1205
ZW
7385 case VFP_REG_Sd:
7386 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
7387 break;
7388
7389 case VFP_REG_Sn:
7390 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
7391 break;
7392
7393 case VFP_REG_Sm:
7394 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
7395 break;
7396
5287ad62
JB
7397 case VFP_REG_Dd:
7398 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
7399 break;
5f4273c7 7400
5287ad62
JB
7401 case VFP_REG_Dn:
7402 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
7403 break;
5f4273c7 7404
5287ad62
JB
7405 case VFP_REG_Dm:
7406 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
7407 break;
7408
c19d1205
ZW
7409 default:
7410 abort ();
09d92015 7411 }
09d92015
MM
7412}
7413
c19d1205 7414/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 7415 if any, is handled by md_apply_fix. */
09d92015 7416static void
c19d1205 7417encode_arm_shift (int i)
09d92015 7418{
c19d1205
ZW
7419 if (inst.operands[i].shift_kind == SHIFT_RRX)
7420 inst.instruction |= SHIFT_ROR << 5;
7421 else
09d92015 7422 {
c19d1205
ZW
7423 inst.instruction |= inst.operands[i].shift_kind << 5;
7424 if (inst.operands[i].immisreg)
7425 {
7426 inst.instruction |= SHIFT_BY_REG;
7427 inst.instruction |= inst.operands[i].imm << 8;
7428 }
7429 else
7430 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 7431 }
c19d1205 7432}
09d92015 7433
c19d1205
ZW
7434static void
7435encode_arm_shifter_operand (int i)
7436{
7437 if (inst.operands[i].isreg)
09d92015 7438 {
c19d1205
ZW
7439 inst.instruction |= inst.operands[i].reg;
7440 encode_arm_shift (i);
09d92015 7441 }
c19d1205 7442 else
a415b1cd
JB
7443 {
7444 inst.instruction |= INST_IMMEDIATE;
7445 if (inst.reloc.type != BFD_RELOC_ARM_IMMEDIATE)
7446 inst.instruction |= inst.operands[i].imm;
7447 }
09d92015
MM
7448}
7449
c19d1205 7450/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 7451static void
c19d1205 7452encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 7453{
2b2f5df9
NC
7454 /* PR 14260:
7455 Generate an error if the operand is not a register. */
7456 constraint (!inst.operands[i].isreg,
7457 _("Instruction does not support =N addresses"));
7458
c19d1205 7459 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7460
c19d1205 7461 if (inst.operands[i].preind)
09d92015 7462 {
c19d1205
ZW
7463 if (is_t)
7464 {
7465 inst.error = _("instruction does not accept preindexed addressing");
7466 return;
7467 }
7468 inst.instruction |= PRE_INDEX;
7469 if (inst.operands[i].writeback)
7470 inst.instruction |= WRITE_BACK;
09d92015 7471
c19d1205
ZW
7472 }
7473 else if (inst.operands[i].postind)
7474 {
9c2799c2 7475 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
7476 if (is_t)
7477 inst.instruction |= WRITE_BACK;
7478 }
7479 else /* unindexed - only for coprocessor */
09d92015 7480 {
c19d1205 7481 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
7482 return;
7483 }
7484
c19d1205
ZW
7485 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
7486 && (((inst.instruction & 0x000f0000) >> 16)
7487 == ((inst.instruction & 0x0000f000) >> 12)))
7488 as_warn ((inst.instruction & LOAD_BIT)
7489 ? _("destination register same as write-back base")
7490 : _("source register same as write-back base"));
09d92015
MM
7491}
7492
c19d1205
ZW
7493/* inst.operands[i] was set up by parse_address. Encode it into an
7494 ARM-format mode 2 load or store instruction. If is_t is true,
7495 reject forms that cannot be used with a T instruction (i.e. not
7496 post-indexed). */
a737bd4d 7497static void
c19d1205 7498encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 7499{
5be8be5d
DG
7500 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
7501
c19d1205 7502 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7503
c19d1205 7504 if (inst.operands[i].immisreg)
09d92015 7505 {
5be8be5d
DG
7506 constraint ((inst.operands[i].imm == REG_PC
7507 || (is_pc && inst.operands[i].writeback)),
7508 BAD_PC_ADDRESSING);
c19d1205
ZW
7509 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
7510 inst.instruction |= inst.operands[i].imm;
7511 if (!inst.operands[i].negative)
7512 inst.instruction |= INDEX_UP;
7513 if (inst.operands[i].shifted)
7514 {
7515 if (inst.operands[i].shift_kind == SHIFT_RRX)
7516 inst.instruction |= SHIFT_ROR << 5;
7517 else
7518 {
7519 inst.instruction |= inst.operands[i].shift_kind << 5;
7520 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7521 }
7522 }
09d92015 7523 }
c19d1205 7524 else /* immediate offset in inst.reloc */
09d92015 7525 {
5be8be5d
DG
7526 if (is_pc && !inst.reloc.pc_rel)
7527 {
7528 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
23a10334
JZ
7529
7530 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
7531 cannot use PC in addressing.
7532 PC cannot be used in writeback addressing, either. */
7533 constraint ((is_t || inst.operands[i].writeback),
5be8be5d 7534 BAD_PC_ADDRESSING);
23a10334 7535
dc5ec521 7536 /* Use of PC in str is deprecated for ARMv7. */
23a10334
JZ
7537 if (warn_on_deprecated
7538 && !is_load
7539 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
5c3696f8 7540 as_tsktsk (_("use of PC in this instruction is deprecated"));
5be8be5d
DG
7541 }
7542
c19d1205 7543 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7544 {
7545 /* Prefer + for zero encoded value. */
7546 if (!inst.operands[i].negative)
7547 inst.instruction |= INDEX_UP;
7548 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
7549 }
09d92015 7550 }
09d92015
MM
7551}
7552
c19d1205
ZW
7553/* inst.operands[i] was set up by parse_address. Encode it into an
7554 ARM-format mode 3 load or store instruction. Reject forms that
7555 cannot be used with such instructions. If is_t is true, reject
7556 forms that cannot be used with a T instruction (i.e. not
7557 post-indexed). */
7558static void
7559encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 7560{
c19d1205 7561 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 7562 {
c19d1205
ZW
7563 inst.error = _("instruction does not accept scaled register index");
7564 return;
09d92015 7565 }
a737bd4d 7566
c19d1205 7567 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7568
c19d1205
ZW
7569 if (inst.operands[i].immisreg)
7570 {
5be8be5d 7571 constraint ((inst.operands[i].imm == REG_PC
eb9f3f00 7572 || (is_t && inst.operands[i].reg == REG_PC)),
5be8be5d 7573 BAD_PC_ADDRESSING);
eb9f3f00
JB
7574 constraint (inst.operands[i].reg == REG_PC && inst.operands[i].writeback,
7575 BAD_PC_WRITEBACK);
c19d1205
ZW
7576 inst.instruction |= inst.operands[i].imm;
7577 if (!inst.operands[i].negative)
7578 inst.instruction |= INDEX_UP;
7579 }
7580 else /* immediate offset in inst.reloc */
7581 {
5be8be5d
DG
7582 constraint ((inst.operands[i].reg == REG_PC && !inst.reloc.pc_rel
7583 && inst.operands[i].writeback),
7584 BAD_PC_WRITEBACK);
c19d1205
ZW
7585 inst.instruction |= HWOFFSET_IMM;
7586 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7587 {
7588 /* Prefer + for zero encoded value. */
7589 if (!inst.operands[i].negative)
7590 inst.instruction |= INDEX_UP;
7591
7592 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
7593 }
c19d1205 7594 }
a737bd4d
NC
7595}
7596
8335d6aa
JW
7597/* Write immediate bits [7:0] to the following locations:
7598
7599 |28/24|23 19|18 16|15 4|3 0|
7600 | 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|
7601
7602 This function is used by VMOV/VMVN/VORR/VBIC. */
7603
7604static void
7605neon_write_immbits (unsigned immbits)
7606{
7607 inst.instruction |= immbits & 0xf;
7608 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
7609 inst.instruction |= ((immbits >> 7) & 0x1) << (thumb_mode ? 28 : 24);
7610}
7611
7612/* Invert low-order SIZE bits of XHI:XLO. */
7613
7614static void
7615neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
7616{
7617 unsigned immlo = xlo ? *xlo : 0;
7618 unsigned immhi = xhi ? *xhi : 0;
7619
7620 switch (size)
7621 {
7622 case 8:
7623 immlo = (~immlo) & 0xff;
7624 break;
7625
7626 case 16:
7627 immlo = (~immlo) & 0xffff;
7628 break;
7629
7630 case 64:
7631 immhi = (~immhi) & 0xffffffff;
7632 /* fall through. */
7633
7634 case 32:
7635 immlo = (~immlo) & 0xffffffff;
7636 break;
7637
7638 default:
7639 abort ();
7640 }
7641
7642 if (xlo)
7643 *xlo = immlo;
7644
7645 if (xhi)
7646 *xhi = immhi;
7647}
7648
7649/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
7650 A, B, C, D. */
09d92015 7651
c19d1205 7652static int
8335d6aa 7653neon_bits_same_in_bytes (unsigned imm)
09d92015 7654{
8335d6aa
JW
7655 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
7656 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
7657 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
7658 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
7659}
a737bd4d 7660
8335d6aa 7661/* For immediate of above form, return 0bABCD. */
09d92015 7662
8335d6aa
JW
7663static unsigned
7664neon_squash_bits (unsigned imm)
7665{
7666 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
7667 | ((imm & 0x01000000) >> 21);
7668}
7669
7670/* Compress quarter-float representation to 0b...000 abcdefgh. */
7671
7672static unsigned
7673neon_qfloat_bits (unsigned imm)
7674{
7675 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
7676}
7677
7678/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
7679 the instruction. *OP is passed as the initial value of the op field, and
7680 may be set to a different value depending on the constant (i.e.
7681 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
7682 MVN). If the immediate looks like a repeated pattern then also
7683 try smaller element sizes. */
7684
7685static int
7686neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
7687 unsigned *immbits, int *op, int size,
7688 enum neon_el_type type)
7689{
7690 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
7691 float. */
7692 if (type == NT_float && !float_p)
7693 return FAIL;
7694
7695 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
09d92015 7696 {
8335d6aa
JW
7697 if (size != 32 || *op == 1)
7698 return FAIL;
7699 *immbits = neon_qfloat_bits (immlo);
7700 return 0xf;
7701 }
7702
7703 if (size == 64)
7704 {
7705 if (neon_bits_same_in_bytes (immhi)
7706 && neon_bits_same_in_bytes (immlo))
c19d1205 7707 {
8335d6aa
JW
7708 if (*op == 1)
7709 return FAIL;
7710 *immbits = (neon_squash_bits (immhi) << 4)
7711 | neon_squash_bits (immlo);
7712 *op = 1;
7713 return 0xe;
c19d1205 7714 }
a737bd4d 7715
8335d6aa
JW
7716 if (immhi != immlo)
7717 return FAIL;
7718 }
a737bd4d 7719
8335d6aa 7720 if (size >= 32)
09d92015 7721 {
8335d6aa 7722 if (immlo == (immlo & 0x000000ff))
c19d1205 7723 {
8335d6aa
JW
7724 *immbits = immlo;
7725 return 0x0;
c19d1205 7726 }
8335d6aa 7727 else if (immlo == (immlo & 0x0000ff00))
c19d1205 7728 {
8335d6aa
JW
7729 *immbits = immlo >> 8;
7730 return 0x2;
c19d1205 7731 }
8335d6aa
JW
7732 else if (immlo == (immlo & 0x00ff0000))
7733 {
7734 *immbits = immlo >> 16;
7735 return 0x4;
7736 }
7737 else if (immlo == (immlo & 0xff000000))
7738 {
7739 *immbits = immlo >> 24;
7740 return 0x6;
7741 }
7742 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
7743 {
7744 *immbits = (immlo >> 8) & 0xff;
7745 return 0xc;
7746 }
7747 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
7748 {
7749 *immbits = (immlo >> 16) & 0xff;
7750 return 0xd;
7751 }
7752
7753 if ((immlo & 0xffff) != (immlo >> 16))
7754 return FAIL;
7755 immlo &= 0xffff;
09d92015 7756 }
a737bd4d 7757
8335d6aa 7758 if (size >= 16)
4962c51a 7759 {
8335d6aa
JW
7760 if (immlo == (immlo & 0x000000ff))
7761 {
7762 *immbits = immlo;
7763 return 0x8;
7764 }
7765 else if (immlo == (immlo & 0x0000ff00))
7766 {
7767 *immbits = immlo >> 8;
7768 return 0xa;
7769 }
7770
7771 if ((immlo & 0xff) != (immlo >> 8))
7772 return FAIL;
7773 immlo &= 0xff;
4962c51a
MS
7774 }
7775
8335d6aa
JW
7776 if (immlo == (immlo & 0x000000ff))
7777 {
7778 /* Don't allow MVN with 8-bit immediate. */
7779 if (*op == 1)
7780 return FAIL;
7781 *immbits = immlo;
7782 return 0xe;
7783 }
26d97720 7784
8335d6aa 7785 return FAIL;
c19d1205 7786}
a737bd4d 7787
5fc177c8 7788#if defined BFD_HOST_64_BIT
ba592044
AM
7789/* Returns TRUE if double precision value V may be cast
7790 to single precision without loss of accuracy. */
7791
7792static bfd_boolean
5fc177c8 7793is_double_a_single (bfd_int64_t v)
ba592044 7794{
5fc177c8 7795 int exp = (int)((v >> 52) & 0x7FF);
8fe3f3d6 7796 bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
ba592044
AM
7797
7798 return (exp == 0 || exp == 0x7FF
7799 || (exp >= 1023 - 126 && exp <= 1023 + 127))
7800 && (mantissa & 0x1FFFFFFFl) == 0;
7801}
7802
3739860c 7803/* Returns a double precision value casted to single precision
ba592044
AM
7804 (ignoring the least significant bits in exponent and mantissa). */
7805
7806static int
5fc177c8 7807double_to_single (bfd_int64_t v)
ba592044
AM
7808{
7809 int sign = (int) ((v >> 63) & 1l);
5fc177c8 7810 int exp = (int) ((v >> 52) & 0x7FF);
8fe3f3d6 7811 bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
ba592044
AM
7812
7813 if (exp == 0x7FF)
7814 exp = 0xFF;
7815 else
7816 {
7817 exp = exp - 1023 + 127;
7818 if (exp >= 0xFF)
7819 {
7820 /* Infinity. */
7821 exp = 0x7F;
7822 mantissa = 0;
7823 }
7824 else if (exp < 0)
7825 {
7826 /* No denormalized numbers. */
7827 exp = 0;
7828 mantissa = 0;
7829 }
7830 }
7831 mantissa >>= 29;
7832 return (sign << 31) | (exp << 23) | mantissa;
7833}
5fc177c8 7834#endif /* BFD_HOST_64_BIT */
ba592044 7835
8335d6aa
JW
7836enum lit_type
7837{
7838 CONST_THUMB,
7839 CONST_ARM,
7840 CONST_VEC
7841};
7842
ba592044
AM
7843static void do_vfp_nsyn_opcode (const char *);
7844
c19d1205
ZW
7845/* inst.reloc.exp describes an "=expr" load pseudo-operation.
7846 Determine whether it can be performed with a move instruction; if
7847 it can, convert inst.instruction to that move instruction and
c921be7d
NC
7848 return TRUE; if it can't, convert inst.instruction to a literal-pool
7849 load and return FALSE. If this is not a valid thing to do in the
7850 current context, set inst.error and return TRUE.
a737bd4d 7851
c19d1205
ZW
7852 inst.operands[i] describes the destination register. */
7853
c921be7d 7854static bfd_boolean
8335d6aa 7855move_or_literal_pool (int i, enum lit_type t, bfd_boolean mode_3)
c19d1205 7856{
53365c0d 7857 unsigned long tbit;
8335d6aa
JW
7858 bfd_boolean thumb_p = (t == CONST_THUMB);
7859 bfd_boolean arm_p = (t == CONST_ARM);
53365c0d
PB
7860
7861 if (thumb_p)
7862 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
7863 else
7864 tbit = LOAD_BIT;
7865
7866 if ((inst.instruction & tbit) == 0)
09d92015 7867 {
c19d1205 7868 inst.error = _("invalid pseudo operation");
c921be7d 7869 return TRUE;
09d92015 7870 }
ba592044 7871
8335d6aa
JW
7872 if (inst.reloc.exp.X_op != O_constant
7873 && inst.reloc.exp.X_op != O_symbol
7874 && inst.reloc.exp.X_op != O_big)
09d92015
MM
7875 {
7876 inst.error = _("constant expression expected");
c921be7d 7877 return TRUE;
09d92015 7878 }
ba592044
AM
7879
7880 if (inst.reloc.exp.X_op == O_constant
7881 || inst.reloc.exp.X_op == O_big)
8335d6aa 7882 {
5fc177c8
NC
7883#if defined BFD_HOST_64_BIT
7884 bfd_int64_t v;
7885#else
ba592044 7886 offsetT v;
5fc177c8 7887#endif
ba592044 7888 if (inst.reloc.exp.X_op == O_big)
8335d6aa 7889 {
ba592044
AM
7890 LITTLENUM_TYPE w[X_PRECISION];
7891 LITTLENUM_TYPE * l;
7892
7893 if (inst.reloc.exp.X_add_number == -1)
8335d6aa 7894 {
ba592044
AM
7895 gen_to_words (w, X_PRECISION, E_PRECISION);
7896 l = w;
7897 /* FIXME: Should we check words w[2..5] ? */
8335d6aa 7898 }
ba592044
AM
7899 else
7900 l = generic_bignum;
3739860c 7901
5fc177c8
NC
7902#if defined BFD_HOST_64_BIT
7903 v =
7904 ((((((((bfd_int64_t) l[3] & LITTLENUM_MASK)
7905 << LITTLENUM_NUMBER_OF_BITS)
7906 | ((bfd_int64_t) l[2] & LITTLENUM_MASK))
7907 << LITTLENUM_NUMBER_OF_BITS)
7908 | ((bfd_int64_t) l[1] & LITTLENUM_MASK))
7909 << LITTLENUM_NUMBER_OF_BITS)
7910 | ((bfd_int64_t) l[0] & LITTLENUM_MASK));
7911#else
ba592044
AM
7912 v = ((l[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
7913 | (l[0] & LITTLENUM_MASK);
5fc177c8 7914#endif
8335d6aa 7915 }
ba592044
AM
7916 else
7917 v = inst.reloc.exp.X_add_number;
7918
7919 if (!inst.operands[i].issingle)
8335d6aa 7920 {
12569877 7921 if (thumb_p)
8335d6aa 7922 {
2c32be70
CM
7923 /* This can be encoded only for a low register. */
7924 if ((v & ~0xFF) == 0 && (inst.operands[i].reg < 8))
ba592044
AM
7925 {
7926 /* This can be done with a mov(1) instruction. */
7927 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
7928 inst.instruction |= v;
7929 return TRUE;
7930 }
12569877 7931
ff8646ee
TP
7932 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)
7933 || ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
12569877 7934 {
fc289b0a
TP
7935 /* Check if on thumb2 it can be done with a mov.w, mvn or
7936 movw instruction. */
12569877
AM
7937 unsigned int newimm;
7938 bfd_boolean isNegated;
7939
7940 newimm = encode_thumb32_immediate (v);
7941 if (newimm != (unsigned int) FAIL)
7942 isNegated = FALSE;
7943 else
7944 {
582cfe03 7945 newimm = encode_thumb32_immediate (~v);
12569877
AM
7946 if (newimm != (unsigned int) FAIL)
7947 isNegated = TRUE;
7948 }
7949
fc289b0a
TP
7950 /* The number can be loaded with a mov.w or mvn
7951 instruction. */
ff8646ee
TP
7952 if (newimm != (unsigned int) FAIL
7953 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
12569877 7954 {
fc289b0a 7955 inst.instruction = (0xf04f0000 /* MOV.W. */
582cfe03 7956 | (inst.operands[i].reg << 8));
fc289b0a 7957 /* Change to MOVN. */
582cfe03 7958 inst.instruction |= (isNegated ? 0x200000 : 0);
12569877
AM
7959 inst.instruction |= (newimm & 0x800) << 15;
7960 inst.instruction |= (newimm & 0x700) << 4;
7961 inst.instruction |= (newimm & 0x0ff);
7962 return TRUE;
7963 }
fc289b0a 7964 /* The number can be loaded with a movw instruction. */
ff8646ee
TP
7965 else if ((v & ~0xFFFF) == 0
7966 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
3739860c 7967 {
582cfe03 7968 int imm = v & 0xFFFF;
12569877 7969
582cfe03 7970 inst.instruction = 0xf2400000; /* MOVW. */
12569877
AM
7971 inst.instruction |= (inst.operands[i].reg << 8);
7972 inst.instruction |= (imm & 0xf000) << 4;
7973 inst.instruction |= (imm & 0x0800) << 15;
7974 inst.instruction |= (imm & 0x0700) << 4;
7975 inst.instruction |= (imm & 0x00ff);
7976 return TRUE;
7977 }
7978 }
8335d6aa 7979 }
12569877 7980 else if (arm_p)
ba592044
AM
7981 {
7982 int value = encode_arm_immediate (v);
12569877 7983
ba592044
AM
7984 if (value != FAIL)
7985 {
7986 /* This can be done with a mov instruction. */
7987 inst.instruction &= LITERAL_MASK;
7988 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
7989 inst.instruction |= value & 0xfff;
7990 return TRUE;
7991 }
8335d6aa 7992
ba592044
AM
7993 value = encode_arm_immediate (~ v);
7994 if (value != FAIL)
7995 {
7996 /* This can be done with a mvn instruction. */
7997 inst.instruction &= LITERAL_MASK;
7998 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
7999 inst.instruction |= value & 0xfff;
8000 return TRUE;
8001 }
8002 }
8003 else if (t == CONST_VEC)
8335d6aa 8004 {
ba592044
AM
8005 int op = 0;
8006 unsigned immbits = 0;
8007 unsigned immlo = inst.operands[1].imm;
8008 unsigned immhi = inst.operands[1].regisimm
8009 ? inst.operands[1].reg
8010 : inst.reloc.exp.X_unsigned
8011 ? 0
8012 : ((bfd_int64_t)((int) immlo)) >> 32;
8013 int cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
8014 &op, 64, NT_invtype);
8015
8016 if (cmode == FAIL)
8017 {
8018 neon_invert_size (&immlo, &immhi, 64);
8019 op = !op;
8020 cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
8021 &op, 64, NT_invtype);
8022 }
8023
8024 if (cmode != FAIL)
8025 {
8026 inst.instruction = (inst.instruction & VLDR_VMOV_SAME)
8027 | (1 << 23)
8028 | (cmode << 8)
8029 | (op << 5)
8030 | (1 << 4);
8031
8032 /* Fill other bits in vmov encoding for both thumb and arm. */
8033 if (thumb_mode)
eff0bc54 8034 inst.instruction |= (0x7U << 29) | (0xF << 24);
ba592044 8035 else
eff0bc54 8036 inst.instruction |= (0xFU << 28) | (0x1 << 25);
ba592044
AM
8037 neon_write_immbits (immbits);
8038 return TRUE;
8039 }
8335d6aa
JW
8040 }
8041 }
8335d6aa 8042
ba592044
AM
8043 if (t == CONST_VEC)
8044 {
8045 /* Check if vldr Rx, =constant could be optimized to vmov Rx, #constant. */
8046 if (inst.operands[i].issingle
8047 && is_quarter_float (inst.operands[1].imm)
8048 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3xd))
8335d6aa 8049 {
ba592044
AM
8050 inst.operands[1].imm =
8051 neon_qfloat_bits (v);
8052 do_vfp_nsyn_opcode ("fconsts");
8053 return TRUE;
8335d6aa 8054 }
5fc177c8
NC
8055
8056 /* If our host does not support a 64-bit type then we cannot perform
8057 the following optimization. This mean that there will be a
8058 discrepancy between the output produced by an assembler built for
8059 a 32-bit-only host and the output produced from a 64-bit host, but
8060 this cannot be helped. */
8061#if defined BFD_HOST_64_BIT
ba592044
AM
8062 else if (!inst.operands[1].issingle
8063 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3))
8335d6aa 8064 {
ba592044
AM
8065 if (is_double_a_single (v)
8066 && is_quarter_float (double_to_single (v)))
8067 {
8068 inst.operands[1].imm =
8069 neon_qfloat_bits (double_to_single (v));
8070 do_vfp_nsyn_opcode ("fconstd");
8071 return TRUE;
8072 }
8335d6aa 8073 }
5fc177c8 8074#endif
8335d6aa
JW
8075 }
8076 }
8077
8078 if (add_to_lit_pool ((!inst.operands[i].isvec
8079 || inst.operands[i].issingle) ? 4 : 8) == FAIL)
8080 return TRUE;
8081
8082 inst.operands[1].reg = REG_PC;
8083 inst.operands[1].isreg = 1;
8084 inst.operands[1].preind = 1;
8085 inst.reloc.pc_rel = 1;
8086 inst.reloc.type = (thumb_p
8087 ? BFD_RELOC_ARM_THUMB_OFFSET
8088 : (mode_3
8089 ? BFD_RELOC_ARM_HWLITERAL
8090 : BFD_RELOC_ARM_LITERAL));
8091 return FALSE;
8092}
8093
8094/* inst.operands[i] was set up by parse_address. Encode it into an
8095 ARM-format instruction. Reject all forms which cannot be encoded
8096 into a coprocessor load/store instruction. If wb_ok is false,
8097 reject use of writeback; if unind_ok is false, reject use of
8098 unindexed addressing. If reloc_override is not 0, use it instead
8099 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
8100 (in which case it is preserved). */
8101
8102static int
8103encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
8104{
8105 if (!inst.operands[i].isreg)
8106 {
99b2a2dd
NC
8107 /* PR 18256 */
8108 if (! inst.operands[0].isvec)
8109 {
8110 inst.error = _("invalid co-processor operand");
8111 return FAIL;
8112 }
8335d6aa
JW
8113 if (move_or_literal_pool (0, CONST_VEC, /*mode_3=*/FALSE))
8114 return SUCCESS;
8115 }
8116
8117 inst.instruction |= inst.operands[i].reg << 16;
8118
8119 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
8120
8121 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
8122 {
8123 gas_assert (!inst.operands[i].writeback);
8124 if (!unind_ok)
8125 {
8126 inst.error = _("instruction does not support unindexed addressing");
8127 return FAIL;
8128 }
8129 inst.instruction |= inst.operands[i].imm;
8130 inst.instruction |= INDEX_UP;
8131 return SUCCESS;
8132 }
8133
8134 if (inst.operands[i].preind)
8135 inst.instruction |= PRE_INDEX;
8136
8137 if (inst.operands[i].writeback)
09d92015 8138 {
8335d6aa 8139 if (inst.operands[i].reg == REG_PC)
c19d1205 8140 {
8335d6aa
JW
8141 inst.error = _("pc may not be used with write-back");
8142 return FAIL;
c19d1205 8143 }
8335d6aa 8144 if (!wb_ok)
c19d1205 8145 {
8335d6aa
JW
8146 inst.error = _("instruction does not support writeback");
8147 return FAIL;
c19d1205 8148 }
8335d6aa 8149 inst.instruction |= WRITE_BACK;
09d92015
MM
8150 }
8151
8335d6aa
JW
8152 if (reloc_override)
8153 inst.reloc.type = (bfd_reloc_code_real_type) reloc_override;
8154 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
8155 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
8156 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
c19d1205 8157 {
8335d6aa
JW
8158 if (thumb_mode)
8159 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
8160 else
8161 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
c19d1205 8162 }
8335d6aa
JW
8163
8164 /* Prefer + for zero encoded value. */
8165 if (!inst.operands[i].negative)
8166 inst.instruction |= INDEX_UP;
8167
8168 return SUCCESS;
09d92015
MM
8169}
8170
5f4273c7 8171/* Functions for instruction encoding, sorted by sub-architecture.
c19d1205
ZW
8172 First some generics; their names are taken from the conventional
8173 bit positions for register arguments in ARM format instructions. */
09d92015 8174
a737bd4d 8175static void
c19d1205 8176do_noargs (void)
09d92015 8177{
c19d1205 8178}
a737bd4d 8179
c19d1205
ZW
8180static void
8181do_rd (void)
8182{
8183 inst.instruction |= inst.operands[0].reg << 12;
8184}
a737bd4d 8185
16a1fa25
TP
8186static void
8187do_rn (void)
8188{
8189 inst.instruction |= inst.operands[0].reg << 16;
8190}
8191
c19d1205
ZW
8192static void
8193do_rd_rm (void)
8194{
8195 inst.instruction |= inst.operands[0].reg << 12;
8196 inst.instruction |= inst.operands[1].reg;
8197}
09d92015 8198
9eb6c0f1
MGD
8199static void
8200do_rm_rn (void)
8201{
8202 inst.instruction |= inst.operands[0].reg;
8203 inst.instruction |= inst.operands[1].reg << 16;
8204}
8205
c19d1205
ZW
8206static void
8207do_rd_rn (void)
8208{
8209 inst.instruction |= inst.operands[0].reg << 12;
8210 inst.instruction |= inst.operands[1].reg << 16;
8211}
a737bd4d 8212
c19d1205
ZW
8213static void
8214do_rn_rd (void)
8215{
8216 inst.instruction |= inst.operands[0].reg << 16;
8217 inst.instruction |= inst.operands[1].reg << 12;
8218}
09d92015 8219
4ed7ed8d
TP
8220static void
8221do_tt (void)
8222{
8223 inst.instruction |= inst.operands[0].reg << 8;
8224 inst.instruction |= inst.operands[1].reg << 16;
8225}
8226
59d09be6
MGD
8227static bfd_boolean
8228check_obsolete (const arm_feature_set *feature, const char *msg)
8229{
8230 if (ARM_CPU_IS_ANY (cpu_variant))
8231 {
5c3696f8 8232 as_tsktsk ("%s", msg);
59d09be6
MGD
8233 return TRUE;
8234 }
8235 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
8236 {
8237 as_bad ("%s", msg);
8238 return TRUE;
8239 }
8240
8241 return FALSE;
8242}
8243
c19d1205
ZW
8244static void
8245do_rd_rm_rn (void)
8246{
9a64e435 8247 unsigned Rn = inst.operands[2].reg;
708587a4 8248 /* Enforce restrictions on SWP instruction. */
9a64e435 8249 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
56adecf4
DG
8250 {
8251 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
8252 _("Rn must not overlap other operands"));
8253
59d09be6
MGD
8254 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
8255 */
8256 if (!check_obsolete (&arm_ext_v8,
8257 _("swp{b} use is obsoleted for ARMv8 and later"))
8258 && warn_on_deprecated
8259 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
5c3696f8 8260 as_tsktsk (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
56adecf4 8261 }
59d09be6 8262
c19d1205
ZW
8263 inst.instruction |= inst.operands[0].reg << 12;
8264 inst.instruction |= inst.operands[1].reg;
9a64e435 8265 inst.instruction |= Rn << 16;
c19d1205 8266}
09d92015 8267
c19d1205
ZW
8268static void
8269do_rd_rn_rm (void)
8270{
8271 inst.instruction |= inst.operands[0].reg << 12;
8272 inst.instruction |= inst.operands[1].reg << 16;
8273 inst.instruction |= inst.operands[2].reg;
8274}
a737bd4d 8275
c19d1205
ZW
8276static void
8277do_rm_rd_rn (void)
8278{
5be8be5d
DG
8279 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
8280 constraint (((inst.reloc.exp.X_op != O_constant
8281 && inst.reloc.exp.X_op != O_illegal)
8282 || inst.reloc.exp.X_add_number != 0),
8283 BAD_ADDR_MODE);
c19d1205
ZW
8284 inst.instruction |= inst.operands[0].reg;
8285 inst.instruction |= inst.operands[1].reg << 12;
8286 inst.instruction |= inst.operands[2].reg << 16;
8287}
09d92015 8288
c19d1205
ZW
8289static void
8290do_imm0 (void)
8291{
8292 inst.instruction |= inst.operands[0].imm;
8293}
09d92015 8294
c19d1205
ZW
8295static void
8296do_rd_cpaddr (void)
8297{
8298 inst.instruction |= inst.operands[0].reg << 12;
8299 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 8300}
a737bd4d 8301
c19d1205
ZW
8302/* ARM instructions, in alphabetical order by function name (except
8303 that wrapper functions appear immediately after the function they
8304 wrap). */
09d92015 8305
c19d1205
ZW
8306/* This is a pseudo-op of the form "adr rd, label" to be converted
8307 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
8308
8309static void
c19d1205 8310do_adr (void)
09d92015 8311{
c19d1205 8312 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 8313
c19d1205
ZW
8314 /* Frag hacking will turn this into a sub instruction if the offset turns
8315 out to be negative. */
8316 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 8317 inst.reloc.pc_rel = 1;
2fc8bdac 8318 inst.reloc.exp.X_add_number -= 8;
c19d1205 8319}
b99bd4ef 8320
c19d1205
ZW
8321/* This is a pseudo-op of the form "adrl rd, label" to be converted
8322 into a relative address of the form:
8323 add rd, pc, #low(label-.-8)"
8324 add rd, rd, #high(label-.-8)" */
b99bd4ef 8325
c19d1205
ZW
8326static void
8327do_adrl (void)
8328{
8329 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 8330
c19d1205
ZW
8331 /* Frag hacking will turn this into a sub instruction if the offset turns
8332 out to be negative. */
8333 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
8334 inst.reloc.pc_rel = 1;
8335 inst.size = INSN_SIZE * 2;
2fc8bdac 8336 inst.reloc.exp.X_add_number -= 8;
b99bd4ef
NC
8337}
8338
b99bd4ef 8339static void
c19d1205 8340do_arit (void)
b99bd4ef 8341{
a9f02af8
MG
8342 constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
8343 && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
8344 THUMB1_RELOC_ONLY);
c19d1205
ZW
8345 if (!inst.operands[1].present)
8346 inst.operands[1].reg = inst.operands[0].reg;
8347 inst.instruction |= inst.operands[0].reg << 12;
8348 inst.instruction |= inst.operands[1].reg << 16;
8349 encode_arm_shifter_operand (2);
8350}
b99bd4ef 8351
62b3e311
PB
8352static void
8353do_barrier (void)
8354{
8355 if (inst.operands[0].present)
ccb84d65 8356 inst.instruction |= inst.operands[0].imm;
62b3e311
PB
8357 else
8358 inst.instruction |= 0xf;
8359}
8360
c19d1205
ZW
8361static void
8362do_bfc (void)
8363{
8364 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
8365 constraint (msb > 32, _("bit-field extends past end of register"));
8366 /* The instruction encoding stores the LSB and MSB,
8367 not the LSB and width. */
8368 inst.instruction |= inst.operands[0].reg << 12;
8369 inst.instruction |= inst.operands[1].imm << 7;
8370 inst.instruction |= (msb - 1) << 16;
8371}
b99bd4ef 8372
c19d1205
ZW
8373static void
8374do_bfi (void)
8375{
8376 unsigned int msb;
b99bd4ef 8377
c19d1205
ZW
8378 /* #0 in second position is alternative syntax for bfc, which is
8379 the same instruction but with REG_PC in the Rm field. */
8380 if (!inst.operands[1].isreg)
8381 inst.operands[1].reg = REG_PC;
b99bd4ef 8382
c19d1205
ZW
8383 msb = inst.operands[2].imm + inst.operands[3].imm;
8384 constraint (msb > 32, _("bit-field extends past end of register"));
8385 /* The instruction encoding stores the LSB and MSB,
8386 not the LSB and width. */
8387 inst.instruction |= inst.operands[0].reg << 12;
8388 inst.instruction |= inst.operands[1].reg;
8389 inst.instruction |= inst.operands[2].imm << 7;
8390 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
8391}
8392
b99bd4ef 8393static void
c19d1205 8394do_bfx (void)
b99bd4ef 8395{
c19d1205
ZW
8396 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
8397 _("bit-field extends past end of register"));
8398 inst.instruction |= inst.operands[0].reg << 12;
8399 inst.instruction |= inst.operands[1].reg;
8400 inst.instruction |= inst.operands[2].imm << 7;
8401 inst.instruction |= (inst.operands[3].imm - 1) << 16;
8402}
09d92015 8403
c19d1205
ZW
8404/* ARM V5 breakpoint instruction (argument parse)
8405 BKPT <16 bit unsigned immediate>
8406 Instruction is not conditional.
8407 The bit pattern given in insns[] has the COND_ALWAYS condition,
8408 and it is an error if the caller tried to override that. */
b99bd4ef 8409
c19d1205
ZW
8410static void
8411do_bkpt (void)
8412{
8413 /* Top 12 of 16 bits to bits 19:8. */
8414 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 8415
c19d1205
ZW
8416 /* Bottom 4 of 16 bits to bits 3:0. */
8417 inst.instruction |= inst.operands[0].imm & 0xf;
8418}
09d92015 8419
c19d1205
ZW
8420static void
8421encode_branch (int default_reloc)
8422{
8423 if (inst.operands[0].hasreloc)
8424 {
0855e32b
NS
8425 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
8426 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
8427 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
8428 inst.reloc.type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
8429 ? BFD_RELOC_ARM_PLT32
8430 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
c19d1205 8431 }
b99bd4ef 8432 else
9ae92b05 8433 inst.reloc.type = (bfd_reloc_code_real_type) default_reloc;
2fc8bdac 8434 inst.reloc.pc_rel = 1;
b99bd4ef
NC
8435}
8436
b99bd4ef 8437static void
c19d1205 8438do_branch (void)
b99bd4ef 8439{
39b41c9c
PB
8440#ifdef OBJ_ELF
8441 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
8442 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
8443 else
8444#endif
8445 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
8446}
8447
8448static void
8449do_bl (void)
8450{
8451#ifdef OBJ_ELF
8452 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
8453 {
8454 if (inst.cond == COND_ALWAYS)
8455 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
8456 else
8457 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
8458 }
8459 else
8460#endif
8461 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 8462}
b99bd4ef 8463
c19d1205
ZW
8464/* ARM V5 branch-link-exchange instruction (argument parse)
8465 BLX <target_addr> ie BLX(1)
8466 BLX{<condition>} <Rm> ie BLX(2)
8467 Unfortunately, there are two different opcodes for this mnemonic.
8468 So, the insns[].value is not used, and the code here zaps values
8469 into inst.instruction.
8470 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 8471
c19d1205
ZW
8472static void
8473do_blx (void)
8474{
8475 if (inst.operands[0].isreg)
b99bd4ef 8476 {
c19d1205
ZW
8477 /* Arg is a register; the opcode provided by insns[] is correct.
8478 It is not illegal to do "blx pc", just useless. */
8479 if (inst.operands[0].reg == REG_PC)
8480 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 8481
c19d1205
ZW
8482 inst.instruction |= inst.operands[0].reg;
8483 }
8484 else
b99bd4ef 8485 {
c19d1205 8486 /* Arg is an address; this instruction cannot be executed
267bf995
RR
8487 conditionally, and the opcode must be adjusted.
8488 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
8489 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
c19d1205 8490 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 8491 inst.instruction = 0xfa000000;
267bf995 8492 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 8493 }
c19d1205
ZW
8494}
8495
8496static void
8497do_bx (void)
8498{
845b51d6
PB
8499 bfd_boolean want_reloc;
8500
c19d1205
ZW
8501 if (inst.operands[0].reg == REG_PC)
8502 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 8503
c19d1205 8504 inst.instruction |= inst.operands[0].reg;
845b51d6
PB
8505 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
8506 it is for ARMv4t or earlier. */
8507 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
8508 if (object_arch && !ARM_CPU_HAS_FEATURE (*object_arch, arm_ext_v5))
8509 want_reloc = TRUE;
8510
5ad34203 8511#ifdef OBJ_ELF
845b51d6 8512 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
5ad34203 8513#endif
584206db 8514 want_reloc = FALSE;
845b51d6
PB
8515
8516 if (want_reloc)
8517 inst.reloc.type = BFD_RELOC_ARM_V4BX;
09d92015
MM
8518}
8519
c19d1205
ZW
8520
8521/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
8522
8523static void
c19d1205 8524do_bxj (void)
a737bd4d 8525{
c19d1205
ZW
8526 if (inst.operands[0].reg == REG_PC)
8527 as_tsktsk (_("use of r15 in bxj is not really useful"));
8528
8529 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
8530}
8531
c19d1205
ZW
8532/* Co-processor data operation:
8533 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
8534 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
8535static void
8536do_cdp (void)
8537{
8538 inst.instruction |= inst.operands[0].reg << 8;
8539 inst.instruction |= inst.operands[1].imm << 20;
8540 inst.instruction |= inst.operands[2].reg << 12;
8541 inst.instruction |= inst.operands[3].reg << 16;
8542 inst.instruction |= inst.operands[4].reg;
8543 inst.instruction |= inst.operands[5].imm << 5;
8544}
a737bd4d
NC
8545
8546static void
c19d1205 8547do_cmp (void)
a737bd4d 8548{
c19d1205
ZW
8549 inst.instruction |= inst.operands[0].reg << 16;
8550 encode_arm_shifter_operand (1);
a737bd4d
NC
8551}
8552
c19d1205
ZW
8553/* Transfer between coprocessor and ARM registers.
8554 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
8555 MRC2
8556 MCR{cond}
8557 MCR2
8558
8559 No special properties. */
09d92015 8560
dcbd0d71
MGD
8561struct deprecated_coproc_regs_s
8562{
8563 unsigned cp;
8564 int opc1;
8565 unsigned crn;
8566 unsigned crm;
8567 int opc2;
8568 arm_feature_set deprecated;
8569 arm_feature_set obsoleted;
8570 const char *dep_msg;
8571 const char *obs_msg;
8572};
8573
8574#define DEPR_ACCESS_V8 \
8575 N_("This coprocessor register access is deprecated in ARMv8")
8576
8577/* Table of all deprecated coprocessor registers. */
8578static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
8579{
8580 {15, 0, 7, 10, 5, /* CP15DMB. */
823d2571 8581 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8582 DEPR_ACCESS_V8, NULL},
8583 {15, 0, 7, 10, 4, /* CP15DSB. */
823d2571 8584 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8585 DEPR_ACCESS_V8, NULL},
8586 {15, 0, 7, 5, 4, /* CP15ISB. */
823d2571 8587 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8588 DEPR_ACCESS_V8, NULL},
8589 {14, 6, 1, 0, 0, /* TEEHBR. */
823d2571 8590 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8591 DEPR_ACCESS_V8, NULL},
8592 {14, 6, 0, 0, 0, /* TEECR. */
823d2571 8593 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8594 DEPR_ACCESS_V8, NULL},
8595};
8596
8597#undef DEPR_ACCESS_V8
8598
8599static const size_t deprecated_coproc_reg_count =
8600 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
8601
09d92015 8602static void
c19d1205 8603do_co_reg (void)
09d92015 8604{
fdfde340 8605 unsigned Rd;
dcbd0d71 8606 size_t i;
fdfde340
JM
8607
8608 Rd = inst.operands[2].reg;
8609 if (thumb_mode)
8610 {
8611 if (inst.instruction == 0xee000010
8612 || inst.instruction == 0xfe000010)
8613 /* MCR, MCR2 */
8614 reject_bad_reg (Rd);
8615 else
8616 /* MRC, MRC2 */
8617 constraint (Rd == REG_SP, BAD_SP);
8618 }
8619 else
8620 {
8621 /* MCR */
8622 if (inst.instruction == 0xe000010)
8623 constraint (Rd == REG_PC, BAD_PC);
8624 }
8625
dcbd0d71
MGD
8626 for (i = 0; i < deprecated_coproc_reg_count; ++i)
8627 {
8628 const struct deprecated_coproc_regs_s *r =
8629 deprecated_coproc_regs + i;
8630
8631 if (inst.operands[0].reg == r->cp
8632 && inst.operands[1].imm == r->opc1
8633 && inst.operands[3].reg == r->crn
8634 && inst.operands[4].reg == r->crm
8635 && inst.operands[5].imm == r->opc2)
8636 {
b10bf8c5 8637 if (! ARM_CPU_IS_ANY (cpu_variant)
477330fc 8638 && warn_on_deprecated
dcbd0d71 8639 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
5c3696f8 8640 as_tsktsk ("%s", r->dep_msg);
dcbd0d71
MGD
8641 }
8642 }
fdfde340 8643
c19d1205
ZW
8644 inst.instruction |= inst.operands[0].reg << 8;
8645 inst.instruction |= inst.operands[1].imm << 21;
fdfde340 8646 inst.instruction |= Rd << 12;
c19d1205
ZW
8647 inst.instruction |= inst.operands[3].reg << 16;
8648 inst.instruction |= inst.operands[4].reg;
8649 inst.instruction |= inst.operands[5].imm << 5;
8650}
09d92015 8651
c19d1205
ZW
8652/* Transfer between coprocessor register and pair of ARM registers.
8653 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
8654 MCRR2
8655 MRRC{cond}
8656 MRRC2
b99bd4ef 8657
c19d1205 8658 Two XScale instructions are special cases of these:
09d92015 8659
c19d1205
ZW
8660 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
8661 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 8662
5f4273c7 8663 Result unpredictable if Rd or Rn is R15. */
a737bd4d 8664
c19d1205
ZW
8665static void
8666do_co_reg2c (void)
8667{
fdfde340
JM
8668 unsigned Rd, Rn;
8669
8670 Rd = inst.operands[2].reg;
8671 Rn = inst.operands[3].reg;
8672
8673 if (thumb_mode)
8674 {
8675 reject_bad_reg (Rd);
8676 reject_bad_reg (Rn);
8677 }
8678 else
8679 {
8680 constraint (Rd == REG_PC, BAD_PC);
8681 constraint (Rn == REG_PC, BAD_PC);
8682 }
8683
c19d1205
ZW
8684 inst.instruction |= inst.operands[0].reg << 8;
8685 inst.instruction |= inst.operands[1].imm << 4;
fdfde340
JM
8686 inst.instruction |= Rd << 12;
8687 inst.instruction |= Rn << 16;
c19d1205 8688 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
8689}
8690
c19d1205
ZW
8691static void
8692do_cpsi (void)
8693{
8694 inst.instruction |= inst.operands[0].imm << 6;
a028a6f5
PB
8695 if (inst.operands[1].present)
8696 {
8697 inst.instruction |= CPSI_MMOD;
8698 inst.instruction |= inst.operands[1].imm;
8699 }
c19d1205 8700}
b99bd4ef 8701
62b3e311
PB
8702static void
8703do_dbg (void)
8704{
8705 inst.instruction |= inst.operands[0].imm;
8706}
8707
eea54501
MGD
8708static void
8709do_div (void)
8710{
8711 unsigned Rd, Rn, Rm;
8712
8713 Rd = inst.operands[0].reg;
8714 Rn = (inst.operands[1].present
8715 ? inst.operands[1].reg : Rd);
8716 Rm = inst.operands[2].reg;
8717
8718 constraint ((Rd == REG_PC), BAD_PC);
8719 constraint ((Rn == REG_PC), BAD_PC);
8720 constraint ((Rm == REG_PC), BAD_PC);
8721
8722 inst.instruction |= Rd << 16;
8723 inst.instruction |= Rn << 0;
8724 inst.instruction |= Rm << 8;
8725}
8726
b99bd4ef 8727static void
c19d1205 8728do_it (void)
b99bd4ef 8729{
c19d1205 8730 /* There is no IT instruction in ARM mode. We
e07e6e58
NC
8731 process it to do the validation as if in
8732 thumb mode, just in case the code gets
8733 assembled for thumb using the unified syntax. */
8734
c19d1205 8735 inst.size = 0;
e07e6e58
NC
8736 if (unified_syntax)
8737 {
8738 set_it_insn_type (IT_INSN);
8739 now_it.mask = (inst.instruction & 0xf) | 0x10;
8740 now_it.cc = inst.operands[0].imm;
8741 }
09d92015 8742}
b99bd4ef 8743
6530b175
NC
8744/* If there is only one register in the register list,
8745 then return its register number. Otherwise return -1. */
8746static int
8747only_one_reg_in_list (int range)
8748{
8749 int i = ffs (range) - 1;
8750 return (i > 15 || range != (1 << i)) ? -1 : i;
8751}
8752
09d92015 8753static void
6530b175 8754encode_ldmstm(int from_push_pop_mnem)
ea6ef066 8755{
c19d1205
ZW
8756 int base_reg = inst.operands[0].reg;
8757 int range = inst.operands[1].imm;
6530b175 8758 int one_reg;
ea6ef066 8759
c19d1205
ZW
8760 inst.instruction |= base_reg << 16;
8761 inst.instruction |= range;
ea6ef066 8762
c19d1205
ZW
8763 if (inst.operands[1].writeback)
8764 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 8765
c19d1205 8766 if (inst.operands[0].writeback)
ea6ef066 8767 {
c19d1205
ZW
8768 inst.instruction |= WRITE_BACK;
8769 /* Check for unpredictable uses of writeback. */
8770 if (inst.instruction & LOAD_BIT)
09d92015 8771 {
c19d1205
ZW
8772 /* Not allowed in LDM type 2. */
8773 if ((inst.instruction & LDM_TYPE_2_OR_3)
8774 && ((range & (1 << REG_PC)) == 0))
8775 as_warn (_("writeback of base register is UNPREDICTABLE"));
8776 /* Only allowed if base reg not in list for other types. */
8777 else if (range & (1 << base_reg))
8778 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
8779 }
8780 else /* STM. */
8781 {
8782 /* Not allowed for type 2. */
8783 if (inst.instruction & LDM_TYPE_2_OR_3)
8784 as_warn (_("writeback of base register is UNPREDICTABLE"));
8785 /* Only allowed if base reg not in list, or first in list. */
8786 else if ((range & (1 << base_reg))
8787 && (range & ((1 << base_reg) - 1)))
8788 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 8789 }
ea6ef066 8790 }
6530b175
NC
8791
8792 /* If PUSH/POP has only one register, then use the A2 encoding. */
8793 one_reg = only_one_reg_in_list (range);
8794 if (from_push_pop_mnem && one_reg >= 0)
8795 {
8796 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
8797
8798 inst.instruction &= A_COND_MASK;
8799 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
8800 inst.instruction |= one_reg << 12;
8801 }
8802}
8803
8804static void
8805do_ldmstm (void)
8806{
8807 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
a737bd4d
NC
8808}
8809
c19d1205
ZW
8810/* ARMv5TE load-consecutive (argument parse)
8811 Mode is like LDRH.
8812
8813 LDRccD R, mode
8814 STRccD R, mode. */
8815
a737bd4d 8816static void
c19d1205 8817do_ldrd (void)
a737bd4d 8818{
c19d1205 8819 constraint (inst.operands[0].reg % 2 != 0,
c56791bb 8820 _("first transfer register must be even"));
c19d1205
ZW
8821 constraint (inst.operands[1].present
8822 && inst.operands[1].reg != inst.operands[0].reg + 1,
c56791bb 8823 _("can only transfer two consecutive registers"));
c19d1205
ZW
8824 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
8825 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 8826
c19d1205
ZW
8827 if (!inst.operands[1].present)
8828 inst.operands[1].reg = inst.operands[0].reg + 1;
5f4273c7 8829
c56791bb
RE
8830 /* encode_arm_addr_mode_3 will diagnose overlap between the base
8831 register and the first register written; we have to diagnose
8832 overlap between the base and the second register written here. */
ea6ef066 8833
c56791bb
RE
8834 if (inst.operands[2].reg == inst.operands[1].reg
8835 && (inst.operands[2].writeback || inst.operands[2].postind))
8836 as_warn (_("base register written back, and overlaps "
8837 "second transfer register"));
b05fe5cf 8838
c56791bb
RE
8839 if (!(inst.instruction & V4_STR_BIT))
8840 {
c19d1205 8841 /* For an index-register load, the index register must not overlap the
c56791bb
RE
8842 destination (even if not write-back). */
8843 if (inst.operands[2].immisreg
8844 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
8845 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
8846 as_warn (_("index register overlaps transfer register"));
b05fe5cf 8847 }
c19d1205
ZW
8848 inst.instruction |= inst.operands[0].reg << 12;
8849 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
8850}
8851
8852static void
c19d1205 8853do_ldrex (void)
b05fe5cf 8854{
c19d1205
ZW
8855 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
8856 || inst.operands[1].postind || inst.operands[1].writeback
8857 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
8858 || inst.operands[1].negative
8859 /* This can arise if the programmer has written
8860 strex rN, rM, foo
8861 or if they have mistakenly used a register name as the last
8862 operand, eg:
8863 strex rN, rM, rX
8864 It is very difficult to distinguish between these two cases
8865 because "rX" might actually be a label. ie the register
8866 name has been occluded by a symbol of the same name. So we
8867 just generate a general 'bad addressing mode' type error
8868 message and leave it up to the programmer to discover the
8869 true cause and fix their mistake. */
8870 || (inst.operands[1].reg == REG_PC),
8871 BAD_ADDR_MODE);
b05fe5cf 8872
c19d1205
ZW
8873 constraint (inst.reloc.exp.X_op != O_constant
8874 || inst.reloc.exp.X_add_number != 0,
8875 _("offset must be zero in ARM encoding"));
b05fe5cf 8876
5be8be5d
DG
8877 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
8878
c19d1205
ZW
8879 inst.instruction |= inst.operands[0].reg << 12;
8880 inst.instruction |= inst.operands[1].reg << 16;
8881 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
8882}
8883
8884static void
c19d1205 8885do_ldrexd (void)
b05fe5cf 8886{
c19d1205
ZW
8887 constraint (inst.operands[0].reg % 2 != 0,
8888 _("even register required"));
8889 constraint (inst.operands[1].present
8890 && inst.operands[1].reg != inst.operands[0].reg + 1,
8891 _("can only load two consecutive registers"));
8892 /* If op 1 were present and equal to PC, this function wouldn't
8893 have been called in the first place. */
8894 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 8895
c19d1205
ZW
8896 inst.instruction |= inst.operands[0].reg << 12;
8897 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
8898}
8899
1be5fd2e
NC
8900/* In both ARM and thumb state 'ldr pc, #imm' with an immediate
8901 which is not a multiple of four is UNPREDICTABLE. */
8902static void
8903check_ldr_r15_aligned (void)
8904{
8905 constraint (!(inst.operands[1].immisreg)
8906 && (inst.operands[0].reg == REG_PC
8907 && inst.operands[1].reg == REG_PC
8908 && (inst.reloc.exp.X_add_number & 0x3)),
8909 _("ldr to register 15 must be 4-byte alligned"));
8910}
8911
b05fe5cf 8912static void
c19d1205 8913do_ldst (void)
b05fe5cf 8914{
c19d1205
ZW
8915 inst.instruction |= inst.operands[0].reg << 12;
8916 if (!inst.operands[1].isreg)
8335d6aa 8917 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/FALSE))
b05fe5cf 8918 return;
c19d1205 8919 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
1be5fd2e 8920 check_ldr_r15_aligned ();
b05fe5cf
ZW
8921}
8922
8923static void
c19d1205 8924do_ldstt (void)
b05fe5cf 8925{
c19d1205
ZW
8926 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8927 reject [Rn,...]. */
8928 if (inst.operands[1].preind)
b05fe5cf 8929 {
bd3ba5d1
NC
8930 constraint (inst.reloc.exp.X_op != O_constant
8931 || inst.reloc.exp.X_add_number != 0,
c19d1205 8932 _("this instruction requires a post-indexed address"));
b05fe5cf 8933
c19d1205
ZW
8934 inst.operands[1].preind = 0;
8935 inst.operands[1].postind = 1;
8936 inst.operands[1].writeback = 1;
b05fe5cf 8937 }
c19d1205
ZW
8938 inst.instruction |= inst.operands[0].reg << 12;
8939 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
8940}
b05fe5cf 8941
c19d1205 8942/* Halfword and signed-byte load/store operations. */
b05fe5cf 8943
c19d1205
ZW
8944static void
8945do_ldstv4 (void)
8946{
ff4a8d2b 8947 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205
ZW
8948 inst.instruction |= inst.operands[0].reg << 12;
8949 if (!inst.operands[1].isreg)
8335d6aa 8950 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/TRUE))
b05fe5cf 8951 return;
c19d1205 8952 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
8953}
8954
8955static void
c19d1205 8956do_ldsttv4 (void)
b05fe5cf 8957{
c19d1205
ZW
8958 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8959 reject [Rn,...]. */
8960 if (inst.operands[1].preind)
b05fe5cf 8961 {
bd3ba5d1
NC
8962 constraint (inst.reloc.exp.X_op != O_constant
8963 || inst.reloc.exp.X_add_number != 0,
c19d1205 8964 _("this instruction requires a post-indexed address"));
b05fe5cf 8965
c19d1205
ZW
8966 inst.operands[1].preind = 0;
8967 inst.operands[1].postind = 1;
8968 inst.operands[1].writeback = 1;
b05fe5cf 8969 }
c19d1205
ZW
8970 inst.instruction |= inst.operands[0].reg << 12;
8971 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
8972}
b05fe5cf 8973
c19d1205
ZW
8974/* Co-processor register load/store.
8975 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
8976static void
8977do_lstc (void)
8978{
8979 inst.instruction |= inst.operands[0].reg << 8;
8980 inst.instruction |= inst.operands[1].reg << 12;
8981 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
8982}
8983
b05fe5cf 8984static void
c19d1205 8985do_mlas (void)
b05fe5cf 8986{
8fb9d7b9 8987 /* This restriction does not apply to mls (nor to mla in v6 or later). */
c19d1205 8988 if (inst.operands[0].reg == inst.operands[1].reg
8fb9d7b9 8989 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
c19d1205 8990 && !(inst.instruction & 0x00400000))
8fb9d7b9 8991 as_tsktsk (_("Rd and Rm should be different in mla"));
b05fe5cf 8992
c19d1205
ZW
8993 inst.instruction |= inst.operands[0].reg << 16;
8994 inst.instruction |= inst.operands[1].reg;
8995 inst.instruction |= inst.operands[2].reg << 8;
8996 inst.instruction |= inst.operands[3].reg << 12;
c19d1205 8997}
b05fe5cf 8998
c19d1205
ZW
8999static void
9000do_mov (void)
9001{
a9f02af8
MG
9002 constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
9003 && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
9004 THUMB1_RELOC_ONLY);
c19d1205
ZW
9005 inst.instruction |= inst.operands[0].reg << 12;
9006 encode_arm_shifter_operand (1);
9007}
b05fe5cf 9008
c19d1205
ZW
9009/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
9010static void
9011do_mov16 (void)
9012{
b6895b4f
PB
9013 bfd_vma imm;
9014 bfd_boolean top;
9015
9016 top = (inst.instruction & 0x00400000) != 0;
9017 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
9018 _(":lower16: not allowed this instruction"));
9019 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
9020 _(":upper16: not allowed instruction"));
c19d1205 9021 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
9022 if (inst.reloc.type == BFD_RELOC_UNUSED)
9023 {
9024 imm = inst.reloc.exp.X_add_number;
9025 /* The value is in two pieces: 0:11, 16:19. */
9026 inst.instruction |= (imm & 0x00000fff);
9027 inst.instruction |= (imm & 0x0000f000) << 4;
9028 }
b05fe5cf 9029}
b99bd4ef 9030
037e8744
JB
9031static int
9032do_vfp_nsyn_mrs (void)
9033{
9034 if (inst.operands[0].isvec)
9035 {
9036 if (inst.operands[1].reg != 1)
477330fc 9037 first_error (_("operand 1 must be FPSCR"));
037e8744
JB
9038 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
9039 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
9040 do_vfp_nsyn_opcode ("fmstat");
9041 }
9042 else if (inst.operands[1].isvec)
9043 do_vfp_nsyn_opcode ("fmrx");
9044 else
9045 return FAIL;
5f4273c7 9046
037e8744
JB
9047 return SUCCESS;
9048}
9049
9050static int
9051do_vfp_nsyn_msr (void)
9052{
9053 if (inst.operands[0].isvec)
9054 do_vfp_nsyn_opcode ("fmxr");
9055 else
9056 return FAIL;
9057
9058 return SUCCESS;
9059}
9060
f7c21dc7
NC
9061static void
9062do_vmrs (void)
9063{
9064 unsigned Rt = inst.operands[0].reg;
fa94de6b 9065
16d02dc9 9066 if (thumb_mode && Rt == REG_SP)
f7c21dc7
NC
9067 {
9068 inst.error = BAD_SP;
9069 return;
9070 }
9071
9072 /* APSR_ sets isvec. All other refs to PC are illegal. */
16d02dc9 9073 if (!inst.operands[0].isvec && Rt == REG_PC)
f7c21dc7
NC
9074 {
9075 inst.error = BAD_PC;
9076 return;
9077 }
9078
16d02dc9
JB
9079 /* If we get through parsing the register name, we just insert the number
9080 generated into the instruction without further validation. */
9081 inst.instruction |= (inst.operands[1].reg << 16);
f7c21dc7
NC
9082 inst.instruction |= (Rt << 12);
9083}
9084
9085static void
9086do_vmsr (void)
9087{
9088 unsigned Rt = inst.operands[1].reg;
fa94de6b 9089
f7c21dc7
NC
9090 if (thumb_mode)
9091 reject_bad_reg (Rt);
9092 else if (Rt == REG_PC)
9093 {
9094 inst.error = BAD_PC;
9095 return;
9096 }
9097
16d02dc9
JB
9098 /* If we get through parsing the register name, we just insert the number
9099 generated into the instruction without further validation. */
9100 inst.instruction |= (inst.operands[0].reg << 16);
f7c21dc7
NC
9101 inst.instruction |= (Rt << 12);
9102}
9103
b99bd4ef 9104static void
c19d1205 9105do_mrs (void)
b99bd4ef 9106{
90ec0d68
MGD
9107 unsigned br;
9108
037e8744
JB
9109 if (do_vfp_nsyn_mrs () == SUCCESS)
9110 return;
9111
ff4a8d2b 9112 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205 9113 inst.instruction |= inst.operands[0].reg << 12;
90ec0d68
MGD
9114
9115 if (inst.operands[1].isreg)
9116 {
9117 br = inst.operands[1].reg;
9118 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf000))
9119 as_bad (_("bad register for mrs"));
9120 }
9121 else
9122 {
9123 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
9124 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
9125 != (PSR_c|PSR_f),
d2cd1205 9126 _("'APSR', 'CPSR' or 'SPSR' expected"));
90ec0d68
MGD
9127 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
9128 }
9129
9130 inst.instruction |= br;
c19d1205 9131}
b99bd4ef 9132
c19d1205
ZW
9133/* Two possible forms:
9134 "{C|S}PSR_<field>, Rm",
9135 "{C|S}PSR_f, #expression". */
b99bd4ef 9136
c19d1205
ZW
9137static void
9138do_msr (void)
9139{
037e8744
JB
9140 if (do_vfp_nsyn_msr () == SUCCESS)
9141 return;
9142
c19d1205
ZW
9143 inst.instruction |= inst.operands[0].imm;
9144 if (inst.operands[1].isreg)
9145 inst.instruction |= inst.operands[1].reg;
9146 else
b99bd4ef 9147 {
c19d1205
ZW
9148 inst.instruction |= INST_IMMEDIATE;
9149 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
9150 inst.reloc.pc_rel = 0;
b99bd4ef 9151 }
b99bd4ef
NC
9152}
9153
c19d1205
ZW
9154static void
9155do_mul (void)
a737bd4d 9156{
ff4a8d2b
NC
9157 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
9158
c19d1205
ZW
9159 if (!inst.operands[2].present)
9160 inst.operands[2].reg = inst.operands[0].reg;
9161 inst.instruction |= inst.operands[0].reg << 16;
9162 inst.instruction |= inst.operands[1].reg;
9163 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 9164
8fb9d7b9
MS
9165 if (inst.operands[0].reg == inst.operands[1].reg
9166 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
9167 as_tsktsk (_("Rd and Rm should be different in mul"));
a737bd4d
NC
9168}
9169
c19d1205
ZW
9170/* Long Multiply Parser
9171 UMULL RdLo, RdHi, Rm, Rs
9172 SMULL RdLo, RdHi, Rm, Rs
9173 UMLAL RdLo, RdHi, Rm, Rs
9174 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
9175
9176static void
c19d1205 9177do_mull (void)
b99bd4ef 9178{
c19d1205
ZW
9179 inst.instruction |= inst.operands[0].reg << 12;
9180 inst.instruction |= inst.operands[1].reg << 16;
9181 inst.instruction |= inst.operands[2].reg;
9182 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 9183
682b27ad
PB
9184 /* rdhi and rdlo must be different. */
9185 if (inst.operands[0].reg == inst.operands[1].reg)
9186 as_tsktsk (_("rdhi and rdlo must be different"));
9187
9188 /* rdhi, rdlo and rm must all be different before armv6. */
9189 if ((inst.operands[0].reg == inst.operands[2].reg
c19d1205 9190 || inst.operands[1].reg == inst.operands[2].reg)
682b27ad 9191 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
c19d1205
ZW
9192 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
9193}
b99bd4ef 9194
c19d1205
ZW
9195static void
9196do_nop (void)
9197{
e7495e45
NS
9198 if (inst.operands[0].present
9199 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
c19d1205
ZW
9200 {
9201 /* Architectural NOP hints are CPSR sets with no bits selected. */
9202 inst.instruction &= 0xf0000000;
e7495e45
NS
9203 inst.instruction |= 0x0320f000;
9204 if (inst.operands[0].present)
9205 inst.instruction |= inst.operands[0].imm;
c19d1205 9206 }
b99bd4ef
NC
9207}
9208
c19d1205
ZW
9209/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
9210 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
9211 Condition defaults to COND_ALWAYS.
9212 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
9213
9214static void
c19d1205 9215do_pkhbt (void)
b99bd4ef 9216{
c19d1205
ZW
9217 inst.instruction |= inst.operands[0].reg << 12;
9218 inst.instruction |= inst.operands[1].reg << 16;
9219 inst.instruction |= inst.operands[2].reg;
9220 if (inst.operands[3].present)
9221 encode_arm_shift (3);
9222}
b99bd4ef 9223
c19d1205 9224/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 9225
c19d1205
ZW
9226static void
9227do_pkhtb (void)
9228{
9229 if (!inst.operands[3].present)
b99bd4ef 9230 {
c19d1205
ZW
9231 /* If the shift specifier is omitted, turn the instruction
9232 into pkhbt rd, rm, rn. */
9233 inst.instruction &= 0xfff00010;
9234 inst.instruction |= inst.operands[0].reg << 12;
9235 inst.instruction |= inst.operands[1].reg;
9236 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9237 }
9238 else
9239 {
c19d1205
ZW
9240 inst.instruction |= inst.operands[0].reg << 12;
9241 inst.instruction |= inst.operands[1].reg << 16;
9242 inst.instruction |= inst.operands[2].reg;
9243 encode_arm_shift (3);
b99bd4ef
NC
9244 }
9245}
9246
c19d1205 9247/* ARMv5TE: Preload-Cache
60e5ef9f 9248 MP Extensions: Preload for write
c19d1205 9249
60e5ef9f 9250 PLD(W) <addr_mode>
c19d1205
ZW
9251
9252 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
9253
9254static void
c19d1205 9255do_pld (void)
b99bd4ef 9256{
c19d1205
ZW
9257 constraint (!inst.operands[0].isreg,
9258 _("'[' expected after PLD mnemonic"));
9259 constraint (inst.operands[0].postind,
9260 _("post-indexed expression used in preload instruction"));
9261 constraint (inst.operands[0].writeback,
9262 _("writeback used in preload instruction"));
9263 constraint (!inst.operands[0].preind,
9264 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
9265 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
9266}
b99bd4ef 9267
62b3e311
PB
9268/* ARMv7: PLI <addr_mode> */
9269static void
9270do_pli (void)
9271{
9272 constraint (!inst.operands[0].isreg,
9273 _("'[' expected after PLI mnemonic"));
9274 constraint (inst.operands[0].postind,
9275 _("post-indexed expression used in preload instruction"));
9276 constraint (inst.operands[0].writeback,
9277 _("writeback used in preload instruction"));
9278 constraint (!inst.operands[0].preind,
9279 _("unindexed addressing used in preload instruction"));
9280 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
9281 inst.instruction &= ~PRE_INDEX;
9282}
9283
c19d1205
ZW
9284static void
9285do_push_pop (void)
9286{
5e0d7f77
MP
9287 constraint (inst.operands[0].writeback,
9288 _("push/pop do not support {reglist}^"));
c19d1205
ZW
9289 inst.operands[1] = inst.operands[0];
9290 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
9291 inst.operands[0].isreg = 1;
9292 inst.operands[0].writeback = 1;
9293 inst.operands[0].reg = REG_SP;
6530b175 9294 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
c19d1205 9295}
b99bd4ef 9296
c19d1205
ZW
9297/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
9298 word at the specified address and the following word
9299 respectively.
9300 Unconditionally executed.
9301 Error if Rn is R15. */
b99bd4ef 9302
c19d1205
ZW
9303static void
9304do_rfe (void)
9305{
9306 inst.instruction |= inst.operands[0].reg << 16;
9307 if (inst.operands[0].writeback)
9308 inst.instruction |= WRITE_BACK;
9309}
b99bd4ef 9310
c19d1205 9311/* ARM V6 ssat (argument parse). */
b99bd4ef 9312
c19d1205
ZW
9313static void
9314do_ssat (void)
9315{
9316 inst.instruction |= inst.operands[0].reg << 12;
9317 inst.instruction |= (inst.operands[1].imm - 1) << 16;
9318 inst.instruction |= inst.operands[2].reg;
b99bd4ef 9319
c19d1205
ZW
9320 if (inst.operands[3].present)
9321 encode_arm_shift (3);
b99bd4ef
NC
9322}
9323
c19d1205 9324/* ARM V6 usat (argument parse). */
b99bd4ef
NC
9325
9326static void
c19d1205 9327do_usat (void)
b99bd4ef 9328{
c19d1205
ZW
9329 inst.instruction |= inst.operands[0].reg << 12;
9330 inst.instruction |= inst.operands[1].imm << 16;
9331 inst.instruction |= inst.operands[2].reg;
b99bd4ef 9332
c19d1205
ZW
9333 if (inst.operands[3].present)
9334 encode_arm_shift (3);
b99bd4ef
NC
9335}
9336
c19d1205 9337/* ARM V6 ssat16 (argument parse). */
09d92015
MM
9338
9339static void
c19d1205 9340do_ssat16 (void)
09d92015 9341{
c19d1205
ZW
9342 inst.instruction |= inst.operands[0].reg << 12;
9343 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
9344 inst.instruction |= inst.operands[2].reg;
09d92015
MM
9345}
9346
c19d1205
ZW
9347static void
9348do_usat16 (void)
a737bd4d 9349{
c19d1205
ZW
9350 inst.instruction |= inst.operands[0].reg << 12;
9351 inst.instruction |= inst.operands[1].imm << 16;
9352 inst.instruction |= inst.operands[2].reg;
9353}
a737bd4d 9354
c19d1205
ZW
9355/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
9356 preserving the other bits.
a737bd4d 9357
c19d1205
ZW
9358 setend <endian_specifier>, where <endian_specifier> is either
9359 BE or LE. */
a737bd4d 9360
c19d1205
ZW
9361static void
9362do_setend (void)
9363{
12e37cbc
MGD
9364 if (warn_on_deprecated
9365 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
5c3696f8 9366 as_tsktsk (_("setend use is deprecated for ARMv8"));
12e37cbc 9367
c19d1205
ZW
9368 if (inst.operands[0].imm)
9369 inst.instruction |= 0x200;
a737bd4d
NC
9370}
9371
9372static void
c19d1205 9373do_shift (void)
a737bd4d 9374{
c19d1205
ZW
9375 unsigned int Rm = (inst.operands[1].present
9376 ? inst.operands[1].reg
9377 : inst.operands[0].reg);
a737bd4d 9378
c19d1205
ZW
9379 inst.instruction |= inst.operands[0].reg << 12;
9380 inst.instruction |= Rm;
9381 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 9382 {
c19d1205
ZW
9383 inst.instruction |= inst.operands[2].reg << 8;
9384 inst.instruction |= SHIFT_BY_REG;
94342ec3
NC
9385 /* PR 12854: Error on extraneous shifts. */
9386 constraint (inst.operands[2].shifted,
9387 _("extraneous shift as part of operand to shift insn"));
a737bd4d
NC
9388 }
9389 else
c19d1205 9390 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
9391}
9392
09d92015 9393static void
3eb17e6b 9394do_smc (void)
09d92015 9395{
3eb17e6b 9396 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 9397 inst.reloc.pc_rel = 0;
09d92015
MM
9398}
9399
90ec0d68
MGD
9400static void
9401do_hvc (void)
9402{
9403 inst.reloc.type = BFD_RELOC_ARM_HVC;
9404 inst.reloc.pc_rel = 0;
9405}
9406
09d92015 9407static void
c19d1205 9408do_swi (void)
09d92015 9409{
c19d1205
ZW
9410 inst.reloc.type = BFD_RELOC_ARM_SWI;
9411 inst.reloc.pc_rel = 0;
09d92015
MM
9412}
9413
ddfded2f
MW
9414static void
9415do_setpan (void)
9416{
9417 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
9418 _("selected processor does not support SETPAN instruction"));
9419
9420 inst.instruction |= ((inst.operands[0].imm & 1) << 9);
9421}
9422
9423static void
9424do_t_setpan (void)
9425{
9426 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
9427 _("selected processor does not support SETPAN instruction"));
9428
9429 inst.instruction |= (inst.operands[0].imm << 3);
9430}
9431
c19d1205
ZW
9432/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
9433 SMLAxy{cond} Rd,Rm,Rs,Rn
9434 SMLAWy{cond} Rd,Rm,Rs,Rn
9435 Error if any register is R15. */
e16bb312 9436
c19d1205
ZW
9437static void
9438do_smla (void)
e16bb312 9439{
c19d1205
ZW
9440 inst.instruction |= inst.operands[0].reg << 16;
9441 inst.instruction |= inst.operands[1].reg;
9442 inst.instruction |= inst.operands[2].reg << 8;
9443 inst.instruction |= inst.operands[3].reg << 12;
9444}
a737bd4d 9445
c19d1205
ZW
9446/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
9447 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
9448 Error if any register is R15.
9449 Warning if Rdlo == Rdhi. */
a737bd4d 9450
c19d1205
ZW
9451static void
9452do_smlal (void)
9453{
9454 inst.instruction |= inst.operands[0].reg << 12;
9455 inst.instruction |= inst.operands[1].reg << 16;
9456 inst.instruction |= inst.operands[2].reg;
9457 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 9458
c19d1205
ZW
9459 if (inst.operands[0].reg == inst.operands[1].reg)
9460 as_tsktsk (_("rdhi and rdlo must be different"));
9461}
a737bd4d 9462
c19d1205
ZW
9463/* ARM V5E (El Segundo) signed-multiply (argument parse)
9464 SMULxy{cond} Rd,Rm,Rs
9465 Error if any register is R15. */
a737bd4d 9466
c19d1205
ZW
9467static void
9468do_smul (void)
9469{
9470 inst.instruction |= inst.operands[0].reg << 16;
9471 inst.instruction |= inst.operands[1].reg;
9472 inst.instruction |= inst.operands[2].reg << 8;
9473}
a737bd4d 9474
b6702015
PB
9475/* ARM V6 srs (argument parse). The variable fields in the encoding are
9476 the same for both ARM and Thumb-2. */
a737bd4d 9477
c19d1205
ZW
9478static void
9479do_srs (void)
9480{
b6702015
PB
9481 int reg;
9482
9483 if (inst.operands[0].present)
9484 {
9485 reg = inst.operands[0].reg;
fdfde340 9486 constraint (reg != REG_SP, _("SRS base register must be r13"));
b6702015
PB
9487 }
9488 else
fdfde340 9489 reg = REG_SP;
b6702015
PB
9490
9491 inst.instruction |= reg << 16;
9492 inst.instruction |= inst.operands[1].imm;
9493 if (inst.operands[0].writeback || inst.operands[1].writeback)
c19d1205
ZW
9494 inst.instruction |= WRITE_BACK;
9495}
a737bd4d 9496
c19d1205 9497/* ARM V6 strex (argument parse). */
a737bd4d 9498
c19d1205
ZW
9499static void
9500do_strex (void)
9501{
9502 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
9503 || inst.operands[2].postind || inst.operands[2].writeback
9504 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
9505 || inst.operands[2].negative
9506 /* See comment in do_ldrex(). */
9507 || (inst.operands[2].reg == REG_PC),
9508 BAD_ADDR_MODE);
a737bd4d 9509
c19d1205
ZW
9510 constraint (inst.operands[0].reg == inst.operands[1].reg
9511 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 9512
c19d1205
ZW
9513 constraint (inst.reloc.exp.X_op != O_constant
9514 || inst.reloc.exp.X_add_number != 0,
9515 _("offset must be zero in ARM encoding"));
a737bd4d 9516
c19d1205
ZW
9517 inst.instruction |= inst.operands[0].reg << 12;
9518 inst.instruction |= inst.operands[1].reg;
9519 inst.instruction |= inst.operands[2].reg << 16;
9520 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
9521}
9522
877807f8
NC
9523static void
9524do_t_strexbh (void)
9525{
9526 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
9527 || inst.operands[2].postind || inst.operands[2].writeback
9528 || inst.operands[2].immisreg || inst.operands[2].shifted
9529 || inst.operands[2].negative,
9530 BAD_ADDR_MODE);
9531
9532 constraint (inst.operands[0].reg == inst.operands[1].reg
9533 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9534
9535 do_rm_rd_rn ();
9536}
9537
e16bb312 9538static void
c19d1205 9539do_strexd (void)
e16bb312 9540{
c19d1205
ZW
9541 constraint (inst.operands[1].reg % 2 != 0,
9542 _("even register required"));
9543 constraint (inst.operands[2].present
9544 && inst.operands[2].reg != inst.operands[1].reg + 1,
9545 _("can only store two consecutive registers"));
9546 /* If op 2 were present and equal to PC, this function wouldn't
9547 have been called in the first place. */
9548 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 9549
c19d1205
ZW
9550 constraint (inst.operands[0].reg == inst.operands[1].reg
9551 || inst.operands[0].reg == inst.operands[1].reg + 1
9552 || inst.operands[0].reg == inst.operands[3].reg,
9553 BAD_OVERLAP);
e16bb312 9554
c19d1205
ZW
9555 inst.instruction |= inst.operands[0].reg << 12;
9556 inst.instruction |= inst.operands[1].reg;
9557 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
9558}
9559
9eb6c0f1
MGD
9560/* ARM V8 STRL. */
9561static void
4b8c8c02 9562do_stlex (void)
9eb6c0f1
MGD
9563{
9564 constraint (inst.operands[0].reg == inst.operands[1].reg
9565 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9566
9567 do_rd_rm_rn ();
9568}
9569
9570static void
4b8c8c02 9571do_t_stlex (void)
9eb6c0f1
MGD
9572{
9573 constraint (inst.operands[0].reg == inst.operands[1].reg
9574 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9575
9576 do_rm_rd_rn ();
9577}
9578
c19d1205
ZW
9579/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
9580 extends it to 32-bits, and adds the result to a value in another
9581 register. You can specify a rotation by 0, 8, 16, or 24 bits
9582 before extracting the 16-bit value.
9583 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
9584 Condition defaults to COND_ALWAYS.
9585 Error if any register uses R15. */
9586
e16bb312 9587static void
c19d1205 9588do_sxtah (void)
e16bb312 9589{
c19d1205
ZW
9590 inst.instruction |= inst.operands[0].reg << 12;
9591 inst.instruction |= inst.operands[1].reg << 16;
9592 inst.instruction |= inst.operands[2].reg;
9593 inst.instruction |= inst.operands[3].imm << 10;
9594}
e16bb312 9595
c19d1205 9596/* ARM V6 SXTH.
e16bb312 9597
c19d1205
ZW
9598 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
9599 Condition defaults to COND_ALWAYS.
9600 Error if any register uses R15. */
e16bb312
NC
9601
9602static void
c19d1205 9603do_sxth (void)
e16bb312 9604{
c19d1205
ZW
9605 inst.instruction |= inst.operands[0].reg << 12;
9606 inst.instruction |= inst.operands[1].reg;
9607 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 9608}
c19d1205
ZW
9609\f
9610/* VFP instructions. In a logical order: SP variant first, monad
9611 before dyad, arithmetic then move then load/store. */
e16bb312
NC
9612
9613static void
c19d1205 9614do_vfp_sp_monadic (void)
e16bb312 9615{
5287ad62
JB
9616 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9617 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
9618}
9619
9620static void
c19d1205 9621do_vfp_sp_dyadic (void)
e16bb312 9622{
5287ad62
JB
9623 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9624 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
9625 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
9626}
9627
9628static void
c19d1205 9629do_vfp_sp_compare_z (void)
e16bb312 9630{
5287ad62 9631 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
9632}
9633
9634static void
c19d1205 9635do_vfp_dp_sp_cvt (void)
e16bb312 9636{
5287ad62
JB
9637 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9638 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
9639}
9640
9641static void
c19d1205 9642do_vfp_sp_dp_cvt (void)
e16bb312 9643{
5287ad62
JB
9644 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9645 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
9646}
9647
9648static void
c19d1205 9649do_vfp_reg_from_sp (void)
e16bb312 9650{
c19d1205 9651 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 9652 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
9653}
9654
9655static void
c19d1205 9656do_vfp_reg2_from_sp2 (void)
e16bb312 9657{
c19d1205
ZW
9658 constraint (inst.operands[2].imm != 2,
9659 _("only two consecutive VFP SP registers allowed here"));
9660 inst.instruction |= inst.operands[0].reg << 12;
9661 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 9662 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
9663}
9664
9665static void
c19d1205 9666do_vfp_sp_from_reg (void)
e16bb312 9667{
5287ad62 9668 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 9669 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
9670}
9671
9672static void
c19d1205 9673do_vfp_sp2_from_reg2 (void)
e16bb312 9674{
c19d1205
ZW
9675 constraint (inst.operands[0].imm != 2,
9676 _("only two consecutive VFP SP registers allowed here"));
5287ad62 9677 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
9678 inst.instruction |= inst.operands[1].reg << 12;
9679 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
9680}
9681
9682static void
c19d1205 9683do_vfp_sp_ldst (void)
e16bb312 9684{
5287ad62 9685 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 9686 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
9687}
9688
9689static void
c19d1205 9690do_vfp_dp_ldst (void)
e16bb312 9691{
5287ad62 9692 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 9693 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
9694}
9695
c19d1205 9696
e16bb312 9697static void
c19d1205 9698vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 9699{
c19d1205
ZW
9700 if (inst.operands[0].writeback)
9701 inst.instruction |= WRITE_BACK;
9702 else
9703 constraint (ldstm_type != VFP_LDSTMIA,
9704 _("this addressing mode requires base-register writeback"));
9705 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 9706 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 9707 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
9708}
9709
9710static void
c19d1205 9711vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 9712{
c19d1205 9713 int count;
e16bb312 9714
c19d1205
ZW
9715 if (inst.operands[0].writeback)
9716 inst.instruction |= WRITE_BACK;
9717 else
9718 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
9719 _("this addressing mode requires base-register writeback"));
e16bb312 9720
c19d1205 9721 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 9722 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 9723
c19d1205
ZW
9724 count = inst.operands[1].imm << 1;
9725 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
9726 count += 1;
e16bb312 9727
c19d1205 9728 inst.instruction |= count;
e16bb312
NC
9729}
9730
9731static void
c19d1205 9732do_vfp_sp_ldstmia (void)
e16bb312 9733{
c19d1205 9734 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
9735}
9736
9737static void
c19d1205 9738do_vfp_sp_ldstmdb (void)
e16bb312 9739{
c19d1205 9740 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
9741}
9742
9743static void
c19d1205 9744do_vfp_dp_ldstmia (void)
e16bb312 9745{
c19d1205 9746 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
9747}
9748
9749static void
c19d1205 9750do_vfp_dp_ldstmdb (void)
e16bb312 9751{
c19d1205 9752 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
9753}
9754
9755static void
c19d1205 9756do_vfp_xp_ldstmia (void)
e16bb312 9757{
c19d1205
ZW
9758 vfp_dp_ldstm (VFP_LDSTMIAX);
9759}
e16bb312 9760
c19d1205
ZW
9761static void
9762do_vfp_xp_ldstmdb (void)
9763{
9764 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 9765}
5287ad62
JB
9766
9767static void
9768do_vfp_dp_rd_rm (void)
9769{
9770 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9771 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
9772}
9773
9774static void
9775do_vfp_dp_rn_rd (void)
9776{
9777 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
9778 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
9779}
9780
9781static void
9782do_vfp_dp_rd_rn (void)
9783{
9784 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9785 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
9786}
9787
9788static void
9789do_vfp_dp_rd_rn_rm (void)
9790{
9791 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9792 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
9793 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
9794}
9795
9796static void
9797do_vfp_dp_rd (void)
9798{
9799 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9800}
9801
9802static void
9803do_vfp_dp_rm_rd_rn (void)
9804{
9805 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
9806 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
9807 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
9808}
9809
9810/* VFPv3 instructions. */
9811static void
9812do_vfp_sp_const (void)
9813{
9814 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
00249aaa
PB
9815 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9816 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9817}
9818
9819static void
9820do_vfp_dp_const (void)
9821{
9822 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
00249aaa
PB
9823 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9824 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9825}
9826
9827static void
9828vfp_conv (int srcsize)
9829{
5f1af56b
MGD
9830 int immbits = srcsize - inst.operands[1].imm;
9831
fa94de6b
RM
9832 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
9833 {
5f1af56b 9834 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
477330fc 9835 i.e. immbits must be in range 0 - 16. */
5f1af56b
MGD
9836 inst.error = _("immediate value out of range, expected range [0, 16]");
9837 return;
9838 }
fa94de6b 9839 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
5f1af56b
MGD
9840 {
9841 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
477330fc 9842 i.e. immbits must be in range 0 - 31. */
5f1af56b
MGD
9843 inst.error = _("immediate value out of range, expected range [1, 32]");
9844 return;
9845 }
9846
5287ad62
JB
9847 inst.instruction |= (immbits & 1) << 5;
9848 inst.instruction |= (immbits >> 1);
9849}
9850
9851static void
9852do_vfp_sp_conv_16 (void)
9853{
9854 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9855 vfp_conv (16);
9856}
9857
9858static void
9859do_vfp_dp_conv_16 (void)
9860{
9861 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9862 vfp_conv (16);
9863}
9864
9865static void
9866do_vfp_sp_conv_32 (void)
9867{
9868 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9869 vfp_conv (32);
9870}
9871
9872static void
9873do_vfp_dp_conv_32 (void)
9874{
9875 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9876 vfp_conv (32);
9877}
c19d1205
ZW
9878\f
9879/* FPA instructions. Also in a logical order. */
e16bb312 9880
c19d1205
ZW
9881static void
9882do_fpa_cmp (void)
9883{
9884 inst.instruction |= inst.operands[0].reg << 16;
9885 inst.instruction |= inst.operands[1].reg;
9886}
b99bd4ef
NC
9887
9888static void
c19d1205 9889do_fpa_ldmstm (void)
b99bd4ef 9890{
c19d1205
ZW
9891 inst.instruction |= inst.operands[0].reg << 12;
9892 switch (inst.operands[1].imm)
9893 {
9894 case 1: inst.instruction |= CP_T_X; break;
9895 case 2: inst.instruction |= CP_T_Y; break;
9896 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
9897 case 4: break;
9898 default: abort ();
9899 }
b99bd4ef 9900
c19d1205
ZW
9901 if (inst.instruction & (PRE_INDEX | INDEX_UP))
9902 {
9903 /* The instruction specified "ea" or "fd", so we can only accept
9904 [Rn]{!}. The instruction does not really support stacking or
9905 unstacking, so we have to emulate these by setting appropriate
9906 bits and offsets. */
9907 constraint (inst.reloc.exp.X_op != O_constant
9908 || inst.reloc.exp.X_add_number != 0,
9909 _("this instruction does not support indexing"));
b99bd4ef 9910
c19d1205
ZW
9911 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
9912 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 9913
c19d1205
ZW
9914 if (!(inst.instruction & INDEX_UP))
9915 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 9916
c19d1205
ZW
9917 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
9918 {
9919 inst.operands[2].preind = 0;
9920 inst.operands[2].postind = 1;
9921 }
9922 }
b99bd4ef 9923
c19d1205 9924 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 9925}
c19d1205
ZW
9926\f
9927/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 9928
c19d1205
ZW
9929static void
9930do_iwmmxt_tandorc (void)
9931{
9932 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
9933}
b99bd4ef 9934
c19d1205
ZW
9935static void
9936do_iwmmxt_textrc (void)
9937{
9938 inst.instruction |= inst.operands[0].reg << 12;
9939 inst.instruction |= inst.operands[1].imm;
9940}
b99bd4ef
NC
9941
9942static void
c19d1205 9943do_iwmmxt_textrm (void)
b99bd4ef 9944{
c19d1205
ZW
9945 inst.instruction |= inst.operands[0].reg << 12;
9946 inst.instruction |= inst.operands[1].reg << 16;
9947 inst.instruction |= inst.operands[2].imm;
9948}
b99bd4ef 9949
c19d1205
ZW
9950static void
9951do_iwmmxt_tinsr (void)
9952{
9953 inst.instruction |= inst.operands[0].reg << 16;
9954 inst.instruction |= inst.operands[1].reg << 12;
9955 inst.instruction |= inst.operands[2].imm;
9956}
b99bd4ef 9957
c19d1205
ZW
9958static void
9959do_iwmmxt_tmia (void)
9960{
9961 inst.instruction |= inst.operands[0].reg << 5;
9962 inst.instruction |= inst.operands[1].reg;
9963 inst.instruction |= inst.operands[2].reg << 12;
9964}
b99bd4ef 9965
c19d1205
ZW
9966static void
9967do_iwmmxt_waligni (void)
9968{
9969 inst.instruction |= inst.operands[0].reg << 12;
9970 inst.instruction |= inst.operands[1].reg << 16;
9971 inst.instruction |= inst.operands[2].reg;
9972 inst.instruction |= inst.operands[3].imm << 20;
9973}
b99bd4ef 9974
2d447fca
JM
9975static void
9976do_iwmmxt_wmerge (void)
9977{
9978 inst.instruction |= inst.operands[0].reg << 12;
9979 inst.instruction |= inst.operands[1].reg << 16;
9980 inst.instruction |= inst.operands[2].reg;
9981 inst.instruction |= inst.operands[3].imm << 21;
9982}
9983
c19d1205
ZW
9984static void
9985do_iwmmxt_wmov (void)
9986{
9987 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
9988 inst.instruction |= inst.operands[0].reg << 12;
9989 inst.instruction |= inst.operands[1].reg << 16;
9990 inst.instruction |= inst.operands[1].reg;
9991}
b99bd4ef 9992
c19d1205
ZW
9993static void
9994do_iwmmxt_wldstbh (void)
9995{
8f06b2d8 9996 int reloc;
c19d1205 9997 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
9998 if (thumb_mode)
9999 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
10000 else
10001 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
10002 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
10003}
10004
c19d1205
ZW
10005static void
10006do_iwmmxt_wldstw (void)
10007{
10008 /* RIWR_RIWC clears .isreg for a control register. */
10009 if (!inst.operands[0].isreg)
10010 {
10011 constraint (inst.cond != COND_ALWAYS, BAD_COND);
10012 inst.instruction |= 0xf0000000;
10013 }
b99bd4ef 10014
c19d1205
ZW
10015 inst.instruction |= inst.operands[0].reg << 12;
10016 encode_arm_cp_address (1, TRUE, TRUE, 0);
10017}
b99bd4ef
NC
10018
10019static void
c19d1205 10020do_iwmmxt_wldstd (void)
b99bd4ef 10021{
c19d1205 10022 inst.instruction |= inst.operands[0].reg << 12;
2d447fca
JM
10023 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
10024 && inst.operands[1].immisreg)
10025 {
10026 inst.instruction &= ~0x1a000ff;
eff0bc54 10027 inst.instruction |= (0xfU << 28);
2d447fca
JM
10028 if (inst.operands[1].preind)
10029 inst.instruction |= PRE_INDEX;
10030 if (!inst.operands[1].negative)
10031 inst.instruction |= INDEX_UP;
10032 if (inst.operands[1].writeback)
10033 inst.instruction |= WRITE_BACK;
10034 inst.instruction |= inst.operands[1].reg << 16;
10035 inst.instruction |= inst.reloc.exp.X_add_number << 4;
10036 inst.instruction |= inst.operands[1].imm;
10037 }
10038 else
10039 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 10040}
b99bd4ef 10041
c19d1205
ZW
10042static void
10043do_iwmmxt_wshufh (void)
10044{
10045 inst.instruction |= inst.operands[0].reg << 12;
10046 inst.instruction |= inst.operands[1].reg << 16;
10047 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
10048 inst.instruction |= (inst.operands[2].imm & 0x0f);
10049}
b99bd4ef 10050
c19d1205
ZW
10051static void
10052do_iwmmxt_wzero (void)
10053{
10054 /* WZERO reg is an alias for WANDN reg, reg, reg. */
10055 inst.instruction |= inst.operands[0].reg;
10056 inst.instruction |= inst.operands[0].reg << 12;
10057 inst.instruction |= inst.operands[0].reg << 16;
10058}
2d447fca
JM
10059
10060static void
10061do_iwmmxt_wrwrwr_or_imm5 (void)
10062{
10063 if (inst.operands[2].isreg)
10064 do_rd_rn_rm ();
10065 else {
10066 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
10067 _("immediate operand requires iWMMXt2"));
10068 do_rd_rn ();
10069 if (inst.operands[2].imm == 0)
10070 {
10071 switch ((inst.instruction >> 20) & 0xf)
10072 {
10073 case 4:
10074 case 5:
10075 case 6:
5f4273c7 10076 case 7:
2d447fca
JM
10077 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
10078 inst.operands[2].imm = 16;
10079 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
10080 break;
10081 case 8:
10082 case 9:
10083 case 10:
10084 case 11:
10085 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
10086 inst.operands[2].imm = 32;
10087 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
10088 break;
10089 case 12:
10090 case 13:
10091 case 14:
10092 case 15:
10093 {
10094 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
10095 unsigned long wrn;
10096 wrn = (inst.instruction >> 16) & 0xf;
10097 inst.instruction &= 0xff0fff0f;
10098 inst.instruction |= wrn;
10099 /* Bail out here; the instruction is now assembled. */
10100 return;
10101 }
10102 }
10103 }
10104 /* Map 32 -> 0, etc. */
10105 inst.operands[2].imm &= 0x1f;
eff0bc54 10106 inst.instruction |= (0xfU << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
2d447fca
JM
10107 }
10108}
c19d1205
ZW
10109\f
10110/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
10111 operations first, then control, shift, and load/store. */
b99bd4ef 10112
c19d1205 10113/* Insns like "foo X,Y,Z". */
b99bd4ef 10114
c19d1205
ZW
10115static void
10116do_mav_triple (void)
10117{
10118 inst.instruction |= inst.operands[0].reg << 16;
10119 inst.instruction |= inst.operands[1].reg;
10120 inst.instruction |= inst.operands[2].reg << 12;
10121}
b99bd4ef 10122
c19d1205
ZW
10123/* Insns like "foo W,X,Y,Z".
10124 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 10125
c19d1205
ZW
10126static void
10127do_mav_quad (void)
10128{
10129 inst.instruction |= inst.operands[0].reg << 5;
10130 inst.instruction |= inst.operands[1].reg << 12;
10131 inst.instruction |= inst.operands[2].reg << 16;
10132 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
10133}
10134
c19d1205
ZW
10135/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
10136static void
10137do_mav_dspsc (void)
a737bd4d 10138{
c19d1205
ZW
10139 inst.instruction |= inst.operands[1].reg << 12;
10140}
a737bd4d 10141
c19d1205
ZW
10142/* Maverick shift immediate instructions.
10143 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
10144 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 10145
c19d1205
ZW
10146static void
10147do_mav_shift (void)
10148{
10149 int imm = inst.operands[2].imm;
a737bd4d 10150
c19d1205
ZW
10151 inst.instruction |= inst.operands[0].reg << 12;
10152 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 10153
c19d1205
ZW
10154 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
10155 Bits 5-7 of the insn should have bits 4-6 of the immediate.
10156 Bit 4 should be 0. */
10157 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 10158
c19d1205
ZW
10159 inst.instruction |= imm;
10160}
10161\f
10162/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 10163
c19d1205
ZW
10164/* Xscale multiply-accumulate (argument parse)
10165 MIAcc acc0,Rm,Rs
10166 MIAPHcc acc0,Rm,Rs
10167 MIAxycc acc0,Rm,Rs. */
a737bd4d 10168
c19d1205
ZW
10169static void
10170do_xsc_mia (void)
10171{
10172 inst.instruction |= inst.operands[1].reg;
10173 inst.instruction |= inst.operands[2].reg << 12;
10174}
a737bd4d 10175
c19d1205 10176/* Xscale move-accumulator-register (argument parse)
a737bd4d 10177
c19d1205 10178 MARcc acc0,RdLo,RdHi. */
b99bd4ef 10179
c19d1205
ZW
10180static void
10181do_xsc_mar (void)
10182{
10183 inst.instruction |= inst.operands[1].reg << 12;
10184 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
10185}
10186
c19d1205 10187/* Xscale move-register-accumulator (argument parse)
b99bd4ef 10188
c19d1205 10189 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
10190
10191static void
c19d1205 10192do_xsc_mra (void)
b99bd4ef 10193{
c19d1205
ZW
10194 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
10195 inst.instruction |= inst.operands[0].reg << 12;
10196 inst.instruction |= inst.operands[1].reg << 16;
10197}
10198\f
10199/* Encoding functions relevant only to Thumb. */
b99bd4ef 10200
c19d1205
ZW
10201/* inst.operands[i] is a shifted-register operand; encode
10202 it into inst.instruction in the format used by Thumb32. */
10203
10204static void
10205encode_thumb32_shifted_operand (int i)
10206{
10207 unsigned int value = inst.reloc.exp.X_add_number;
10208 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 10209
9c3c69f2
PB
10210 constraint (inst.operands[i].immisreg,
10211 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
10212 inst.instruction |= inst.operands[i].reg;
10213 if (shift == SHIFT_RRX)
10214 inst.instruction |= SHIFT_ROR << 4;
10215 else
b99bd4ef 10216 {
c19d1205
ZW
10217 constraint (inst.reloc.exp.X_op != O_constant,
10218 _("expression too complex"));
10219
10220 constraint (value > 32
10221 || (value == 32 && (shift == SHIFT_LSL
10222 || shift == SHIFT_ROR)),
10223 _("shift expression is too large"));
10224
10225 if (value == 0)
10226 shift = SHIFT_LSL;
10227 else if (value == 32)
10228 value = 0;
10229
10230 inst.instruction |= shift << 4;
10231 inst.instruction |= (value & 0x1c) << 10;
10232 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 10233 }
c19d1205 10234}
b99bd4ef 10235
b99bd4ef 10236
c19d1205
ZW
10237/* inst.operands[i] was set up by parse_address. Encode it into a
10238 Thumb32 format load or store instruction. Reject forms that cannot
10239 be used with such instructions. If is_t is true, reject forms that
10240 cannot be used with a T instruction; if is_d is true, reject forms
5be8be5d
DG
10241 that cannot be used with a D instruction. If it is a store insn,
10242 reject PC in Rn. */
b99bd4ef 10243
c19d1205
ZW
10244static void
10245encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
10246{
5be8be5d 10247 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
c19d1205
ZW
10248
10249 constraint (!inst.operands[i].isreg,
53365c0d 10250 _("Instruction does not support =N addresses"));
b99bd4ef 10251
c19d1205
ZW
10252 inst.instruction |= inst.operands[i].reg << 16;
10253 if (inst.operands[i].immisreg)
b99bd4ef 10254 {
5be8be5d 10255 constraint (is_pc, BAD_PC_ADDRESSING);
c19d1205
ZW
10256 constraint (is_t || is_d, _("cannot use register index with this instruction"));
10257 constraint (inst.operands[i].negative,
10258 _("Thumb does not support negative register indexing"));
10259 constraint (inst.operands[i].postind,
10260 _("Thumb does not support register post-indexing"));
10261 constraint (inst.operands[i].writeback,
10262 _("Thumb does not support register indexing with writeback"));
10263 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
10264 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 10265
f40d1643 10266 inst.instruction |= inst.operands[i].imm;
c19d1205 10267 if (inst.operands[i].shifted)
b99bd4ef 10268 {
c19d1205
ZW
10269 constraint (inst.reloc.exp.X_op != O_constant,
10270 _("expression too complex"));
9c3c69f2
PB
10271 constraint (inst.reloc.exp.X_add_number < 0
10272 || inst.reloc.exp.X_add_number > 3,
c19d1205 10273 _("shift out of range"));
9c3c69f2 10274 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
10275 }
10276 inst.reloc.type = BFD_RELOC_UNUSED;
10277 }
10278 else if (inst.operands[i].preind)
10279 {
5be8be5d 10280 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
f40d1643 10281 constraint (is_t && inst.operands[i].writeback,
c19d1205 10282 _("cannot use writeback with this instruction"));
4755303e
WN
10283 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0),
10284 BAD_PC_ADDRESSING);
c19d1205
ZW
10285
10286 if (is_d)
10287 {
10288 inst.instruction |= 0x01000000;
10289 if (inst.operands[i].writeback)
10290 inst.instruction |= 0x00200000;
b99bd4ef 10291 }
c19d1205 10292 else
b99bd4ef 10293 {
c19d1205
ZW
10294 inst.instruction |= 0x00000c00;
10295 if (inst.operands[i].writeback)
10296 inst.instruction |= 0x00000100;
b99bd4ef 10297 }
c19d1205 10298 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 10299 }
c19d1205 10300 else if (inst.operands[i].postind)
b99bd4ef 10301 {
9c2799c2 10302 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
10303 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
10304 constraint (is_t, _("cannot use post-indexing with this instruction"));
10305
10306 if (is_d)
10307 inst.instruction |= 0x00200000;
10308 else
10309 inst.instruction |= 0x00000900;
10310 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
10311 }
10312 else /* unindexed - only for coprocessor */
10313 inst.error = _("instruction does not accept unindexed addressing");
10314}
10315
10316/* Table of Thumb instructions which exist in both 16- and 32-bit
10317 encodings (the latter only in post-V6T2 cores). The index is the
10318 value used in the insns table below. When there is more than one
10319 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
10320 holds variant (1).
10321 Also contains several pseudo-instructions used during relaxation. */
c19d1205 10322#define T16_32_TAB \
21d799b5
NC
10323 X(_adc, 4140, eb400000), \
10324 X(_adcs, 4140, eb500000), \
10325 X(_add, 1c00, eb000000), \
10326 X(_adds, 1c00, eb100000), \
10327 X(_addi, 0000, f1000000), \
10328 X(_addis, 0000, f1100000), \
10329 X(_add_pc,000f, f20f0000), \
10330 X(_add_sp,000d, f10d0000), \
10331 X(_adr, 000f, f20f0000), \
10332 X(_and, 4000, ea000000), \
10333 X(_ands, 4000, ea100000), \
10334 X(_asr, 1000, fa40f000), \
10335 X(_asrs, 1000, fa50f000), \
10336 X(_b, e000, f000b000), \
10337 X(_bcond, d000, f0008000), \
10338 X(_bic, 4380, ea200000), \
10339 X(_bics, 4380, ea300000), \
10340 X(_cmn, 42c0, eb100f00), \
10341 X(_cmp, 2800, ebb00f00), \
10342 X(_cpsie, b660, f3af8400), \
10343 X(_cpsid, b670, f3af8600), \
10344 X(_cpy, 4600, ea4f0000), \
10345 X(_dec_sp,80dd, f1ad0d00), \
10346 X(_eor, 4040, ea800000), \
10347 X(_eors, 4040, ea900000), \
10348 X(_inc_sp,00dd, f10d0d00), \
10349 X(_ldmia, c800, e8900000), \
10350 X(_ldr, 6800, f8500000), \
10351 X(_ldrb, 7800, f8100000), \
10352 X(_ldrh, 8800, f8300000), \
10353 X(_ldrsb, 5600, f9100000), \
10354 X(_ldrsh, 5e00, f9300000), \
10355 X(_ldr_pc,4800, f85f0000), \
10356 X(_ldr_pc2,4800, f85f0000), \
10357 X(_ldr_sp,9800, f85d0000), \
10358 X(_lsl, 0000, fa00f000), \
10359 X(_lsls, 0000, fa10f000), \
10360 X(_lsr, 0800, fa20f000), \
10361 X(_lsrs, 0800, fa30f000), \
10362 X(_mov, 2000, ea4f0000), \
10363 X(_movs, 2000, ea5f0000), \
10364 X(_mul, 4340, fb00f000), \
10365 X(_muls, 4340, ffffffff), /* no 32b muls */ \
10366 X(_mvn, 43c0, ea6f0000), \
10367 X(_mvns, 43c0, ea7f0000), \
10368 X(_neg, 4240, f1c00000), /* rsb #0 */ \
10369 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
10370 X(_orr, 4300, ea400000), \
10371 X(_orrs, 4300, ea500000), \
10372 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
10373 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
10374 X(_rev, ba00, fa90f080), \
10375 X(_rev16, ba40, fa90f090), \
10376 X(_revsh, bac0, fa90f0b0), \
10377 X(_ror, 41c0, fa60f000), \
10378 X(_rors, 41c0, fa70f000), \
10379 X(_sbc, 4180, eb600000), \
10380 X(_sbcs, 4180, eb700000), \
10381 X(_stmia, c000, e8800000), \
10382 X(_str, 6000, f8400000), \
10383 X(_strb, 7000, f8000000), \
10384 X(_strh, 8000, f8200000), \
10385 X(_str_sp,9000, f84d0000), \
10386 X(_sub, 1e00, eba00000), \
10387 X(_subs, 1e00, ebb00000), \
10388 X(_subi, 8000, f1a00000), \
10389 X(_subis, 8000, f1b00000), \
10390 X(_sxtb, b240, fa4ff080), \
10391 X(_sxth, b200, fa0ff080), \
10392 X(_tst, 4200, ea100f00), \
10393 X(_uxtb, b2c0, fa5ff080), \
10394 X(_uxth, b280, fa1ff080), \
10395 X(_nop, bf00, f3af8000), \
10396 X(_yield, bf10, f3af8001), \
10397 X(_wfe, bf20, f3af8002), \
10398 X(_wfi, bf30, f3af8003), \
53c4b28b 10399 X(_sev, bf40, f3af8004), \
74db7efb
NC
10400 X(_sevl, bf50, f3af8005), \
10401 X(_udf, de00, f7f0a000)
c19d1205
ZW
10402
10403/* To catch errors in encoding functions, the codes are all offset by
10404 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
10405 as 16-bit instructions. */
21d799b5 10406#define X(a,b,c) T_MNEM##a
c19d1205
ZW
10407enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
10408#undef X
10409
10410#define X(a,b,c) 0x##b
10411static const unsigned short thumb_op16[] = { T16_32_TAB };
10412#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
10413#undef X
10414
10415#define X(a,b,c) 0x##c
10416static const unsigned int thumb_op32[] = { T16_32_TAB };
c921be7d
NC
10417#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
10418#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
c19d1205
ZW
10419#undef X
10420#undef T16_32_TAB
10421
10422/* Thumb instruction encoders, in alphabetical order. */
10423
92e90b6e 10424/* ADDW or SUBW. */
c921be7d 10425
92e90b6e
PB
10426static void
10427do_t_add_sub_w (void)
10428{
10429 int Rd, Rn;
10430
10431 Rd = inst.operands[0].reg;
10432 Rn = inst.operands[1].reg;
10433
539d4391
NC
10434 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
10435 is the SP-{plus,minus}-immediate form of the instruction. */
10436 if (Rn == REG_SP)
10437 constraint (Rd == REG_PC, BAD_PC);
10438 else
10439 reject_bad_reg (Rd);
fdfde340 10440
92e90b6e
PB
10441 inst.instruction |= (Rn << 16) | (Rd << 8);
10442 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
10443}
10444
c19d1205
ZW
10445/* Parse an add or subtract instruction. We get here with inst.instruction
10446 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
10447
10448static void
10449do_t_add_sub (void)
10450{
10451 int Rd, Rs, Rn;
10452
10453 Rd = inst.operands[0].reg;
10454 Rs = (inst.operands[1].present
10455 ? inst.operands[1].reg /* Rd, Rs, foo */
10456 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10457
e07e6e58
NC
10458 if (Rd == REG_PC)
10459 set_it_insn_type_last ();
10460
c19d1205
ZW
10461 if (unified_syntax)
10462 {
0110f2b8
PB
10463 bfd_boolean flags;
10464 bfd_boolean narrow;
10465 int opcode;
10466
10467 flags = (inst.instruction == T_MNEM_adds
10468 || inst.instruction == T_MNEM_subs);
10469 if (flags)
e07e6e58 10470 narrow = !in_it_block ();
0110f2b8 10471 else
e07e6e58 10472 narrow = in_it_block ();
c19d1205 10473 if (!inst.operands[2].isreg)
b99bd4ef 10474 {
16805f35
PB
10475 int add;
10476
fdfde340
JM
10477 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
10478
16805f35
PB
10479 add = (inst.instruction == T_MNEM_add
10480 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
10481 opcode = 0;
10482 if (inst.size_req != 4)
10483 {
0110f2b8 10484 /* Attempt to use a narrow opcode, with relaxation if
477330fc 10485 appropriate. */
0110f2b8
PB
10486 if (Rd == REG_SP && Rs == REG_SP && !flags)
10487 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
10488 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
10489 opcode = T_MNEM_add_sp;
10490 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
10491 opcode = T_MNEM_add_pc;
10492 else if (Rd <= 7 && Rs <= 7 && narrow)
10493 {
10494 if (flags)
10495 opcode = add ? T_MNEM_addis : T_MNEM_subis;
10496 else
10497 opcode = add ? T_MNEM_addi : T_MNEM_subi;
10498 }
10499 if (opcode)
10500 {
10501 inst.instruction = THUMB_OP16(opcode);
10502 inst.instruction |= (Rd << 4) | Rs;
72d98d16
MG
10503 if (inst.reloc.type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
10504 || inst.reloc.type > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
a9f02af8
MG
10505 {
10506 if (inst.size_req == 2)
10507 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
10508 else
10509 inst.relax = opcode;
10510 }
0110f2b8
PB
10511 }
10512 else
10513 constraint (inst.size_req == 2, BAD_HIREG);
10514 }
10515 if (inst.size_req == 4
10516 || (inst.size_req != 2 && !opcode))
10517 {
a9f02af8
MG
10518 constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
10519 && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
10520 THUMB1_RELOC_ONLY);
efd81785
PB
10521 if (Rd == REG_PC)
10522 {
fdfde340 10523 constraint (add, BAD_PC);
efd81785
PB
10524 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
10525 _("only SUBS PC, LR, #const allowed"));
10526 constraint (inst.reloc.exp.X_op != O_constant,
10527 _("expression too complex"));
10528 constraint (inst.reloc.exp.X_add_number < 0
10529 || inst.reloc.exp.X_add_number > 0xff,
10530 _("immediate value out of range"));
10531 inst.instruction = T2_SUBS_PC_LR
10532 | inst.reloc.exp.X_add_number;
10533 inst.reloc.type = BFD_RELOC_UNUSED;
10534 return;
10535 }
10536 else if (Rs == REG_PC)
16805f35
PB
10537 {
10538 /* Always use addw/subw. */
10539 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
10540 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
10541 }
10542 else
10543 {
10544 inst.instruction = THUMB_OP32 (inst.instruction);
10545 inst.instruction = (inst.instruction & 0xe1ffffff)
10546 | 0x10000000;
10547 if (flags)
10548 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
10549 else
10550 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
10551 }
dc4503c6
PB
10552 inst.instruction |= Rd << 8;
10553 inst.instruction |= Rs << 16;
0110f2b8 10554 }
b99bd4ef 10555 }
c19d1205
ZW
10556 else
10557 {
5f4cb198
NC
10558 unsigned int value = inst.reloc.exp.X_add_number;
10559 unsigned int shift = inst.operands[2].shift_kind;
10560
c19d1205
ZW
10561 Rn = inst.operands[2].reg;
10562 /* See if we can do this with a 16-bit instruction. */
10563 if (!inst.operands[2].shifted && inst.size_req != 4)
10564 {
e27ec89e
PB
10565 if (Rd > 7 || Rs > 7 || Rn > 7)
10566 narrow = FALSE;
10567
10568 if (narrow)
c19d1205 10569 {
e27ec89e
PB
10570 inst.instruction = ((inst.instruction == T_MNEM_adds
10571 || inst.instruction == T_MNEM_add)
c19d1205
ZW
10572 ? T_OPCODE_ADD_R3
10573 : T_OPCODE_SUB_R3);
10574 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
10575 return;
10576 }
b99bd4ef 10577
7e806470 10578 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
c19d1205 10579 {
7e806470
PB
10580 /* Thumb-1 cores (except v6-M) require at least one high
10581 register in a narrow non flag setting add. */
10582 if (Rd > 7 || Rn > 7
10583 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
10584 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
c19d1205 10585 {
7e806470
PB
10586 if (Rd == Rn)
10587 {
10588 Rn = Rs;
10589 Rs = Rd;
10590 }
c19d1205
ZW
10591 inst.instruction = T_OPCODE_ADD_HI;
10592 inst.instruction |= (Rd & 8) << 4;
10593 inst.instruction |= (Rd & 7);
10594 inst.instruction |= Rn << 3;
10595 return;
10596 }
c19d1205
ZW
10597 }
10598 }
c921be7d 10599
fdfde340
JM
10600 constraint (Rd == REG_PC, BAD_PC);
10601 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
10602 constraint (Rs == REG_PC, BAD_PC);
10603 reject_bad_reg (Rn);
10604
c19d1205
ZW
10605 /* If we get here, it can't be done in 16 bits. */
10606 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
10607 _("shift must be constant"));
10608 inst.instruction = THUMB_OP32 (inst.instruction);
10609 inst.instruction |= Rd << 8;
10610 inst.instruction |= Rs << 16;
5f4cb198
NC
10611 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
10612 _("shift value over 3 not allowed in thumb mode"));
10613 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
10614 _("only LSL shift allowed in thumb mode"));
c19d1205
ZW
10615 encode_thumb32_shifted_operand (2);
10616 }
10617 }
10618 else
10619 {
10620 constraint (inst.instruction == T_MNEM_adds
10621 || inst.instruction == T_MNEM_subs,
10622 BAD_THUMB32);
b99bd4ef 10623
c19d1205 10624 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 10625 {
c19d1205
ZW
10626 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
10627 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
10628 BAD_HIREG);
10629
10630 inst.instruction = (inst.instruction == T_MNEM_add
10631 ? 0x0000 : 0x8000);
10632 inst.instruction |= (Rd << 4) | Rs;
10633 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
10634 return;
10635 }
10636
c19d1205
ZW
10637 Rn = inst.operands[2].reg;
10638 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 10639
c19d1205
ZW
10640 /* We now have Rd, Rs, and Rn set to registers. */
10641 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 10642 {
c19d1205
ZW
10643 /* Can't do this for SUB. */
10644 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
10645 inst.instruction = T_OPCODE_ADD_HI;
10646 inst.instruction |= (Rd & 8) << 4;
10647 inst.instruction |= (Rd & 7);
10648 if (Rs == Rd)
10649 inst.instruction |= Rn << 3;
10650 else if (Rn == Rd)
10651 inst.instruction |= Rs << 3;
10652 else
10653 constraint (1, _("dest must overlap one source register"));
10654 }
10655 else
10656 {
10657 inst.instruction = (inst.instruction == T_MNEM_add
10658 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
10659 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 10660 }
b99bd4ef 10661 }
b99bd4ef
NC
10662}
10663
c19d1205
ZW
10664static void
10665do_t_adr (void)
10666{
fdfde340
JM
10667 unsigned Rd;
10668
10669 Rd = inst.operands[0].reg;
10670 reject_bad_reg (Rd);
10671
10672 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
0110f2b8
PB
10673 {
10674 /* Defer to section relaxation. */
10675 inst.relax = inst.instruction;
10676 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 10677 inst.instruction |= Rd << 4;
0110f2b8
PB
10678 }
10679 else if (unified_syntax && inst.size_req != 2)
e9f89963 10680 {
0110f2b8 10681 /* Generate a 32-bit opcode. */
e9f89963 10682 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 10683 inst.instruction |= Rd << 8;
e9f89963
PB
10684 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
10685 inst.reloc.pc_rel = 1;
10686 }
10687 else
10688 {
0110f2b8 10689 /* Generate a 16-bit opcode. */
e9f89963
PB
10690 inst.instruction = THUMB_OP16 (inst.instruction);
10691 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
10692 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
10693 inst.reloc.pc_rel = 1;
b99bd4ef 10694
fdfde340 10695 inst.instruction |= Rd << 4;
e9f89963 10696 }
c19d1205 10697}
b99bd4ef 10698
c19d1205
ZW
10699/* Arithmetic instructions for which there is just one 16-bit
10700 instruction encoding, and it allows only two low registers.
10701 For maximal compatibility with ARM syntax, we allow three register
10702 operands even when Thumb-32 instructions are not available, as long
10703 as the first two are identical. For instance, both "sbc r0,r1" and
10704 "sbc r0,r0,r1" are allowed. */
b99bd4ef 10705static void
c19d1205 10706do_t_arit3 (void)
b99bd4ef 10707{
c19d1205 10708 int Rd, Rs, Rn;
b99bd4ef 10709
c19d1205
ZW
10710 Rd = inst.operands[0].reg;
10711 Rs = (inst.operands[1].present
10712 ? inst.operands[1].reg /* Rd, Rs, foo */
10713 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10714 Rn = inst.operands[2].reg;
b99bd4ef 10715
fdfde340
JM
10716 reject_bad_reg (Rd);
10717 reject_bad_reg (Rs);
10718 if (inst.operands[2].isreg)
10719 reject_bad_reg (Rn);
10720
c19d1205 10721 if (unified_syntax)
b99bd4ef 10722 {
c19d1205
ZW
10723 if (!inst.operands[2].isreg)
10724 {
10725 /* For an immediate, we always generate a 32-bit opcode;
10726 section relaxation will shrink it later if possible. */
10727 inst.instruction = THUMB_OP32 (inst.instruction);
10728 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
10729 inst.instruction |= Rd << 8;
10730 inst.instruction |= Rs << 16;
10731 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
10732 }
10733 else
10734 {
e27ec89e
PB
10735 bfd_boolean narrow;
10736
c19d1205 10737 /* See if we can do this with a 16-bit instruction. */
e27ec89e 10738 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 10739 narrow = !in_it_block ();
e27ec89e 10740 else
e07e6e58 10741 narrow = in_it_block ();
e27ec89e
PB
10742
10743 if (Rd > 7 || Rn > 7 || Rs > 7)
10744 narrow = FALSE;
10745 if (inst.operands[2].shifted)
10746 narrow = FALSE;
10747 if (inst.size_req == 4)
10748 narrow = FALSE;
10749
10750 if (narrow
c19d1205
ZW
10751 && Rd == Rs)
10752 {
10753 inst.instruction = THUMB_OP16 (inst.instruction);
10754 inst.instruction |= Rd;
10755 inst.instruction |= Rn << 3;
10756 return;
10757 }
b99bd4ef 10758
c19d1205
ZW
10759 /* If we get here, it can't be done in 16 bits. */
10760 constraint (inst.operands[2].shifted
10761 && inst.operands[2].immisreg,
10762 _("shift must be constant"));
10763 inst.instruction = THUMB_OP32 (inst.instruction);
10764 inst.instruction |= Rd << 8;
10765 inst.instruction |= Rs << 16;
10766 encode_thumb32_shifted_operand (2);
10767 }
a737bd4d 10768 }
c19d1205 10769 else
b99bd4ef 10770 {
c19d1205
ZW
10771 /* On its face this is a lie - the instruction does set the
10772 flags. However, the only supported mnemonic in this mode
10773 says it doesn't. */
10774 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10775
c19d1205
ZW
10776 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10777 _("unshifted register required"));
10778 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10779 constraint (Rd != Rs,
10780 _("dest and source1 must be the same register"));
a737bd4d 10781
c19d1205
ZW
10782 inst.instruction = THUMB_OP16 (inst.instruction);
10783 inst.instruction |= Rd;
10784 inst.instruction |= Rn << 3;
b99bd4ef 10785 }
a737bd4d 10786}
b99bd4ef 10787
c19d1205
ZW
10788/* Similarly, but for instructions where the arithmetic operation is
10789 commutative, so we can allow either of them to be different from
10790 the destination operand in a 16-bit instruction. For instance, all
10791 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
10792 accepted. */
10793static void
10794do_t_arit3c (void)
a737bd4d 10795{
c19d1205 10796 int Rd, Rs, Rn;
b99bd4ef 10797
c19d1205
ZW
10798 Rd = inst.operands[0].reg;
10799 Rs = (inst.operands[1].present
10800 ? inst.operands[1].reg /* Rd, Rs, foo */
10801 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10802 Rn = inst.operands[2].reg;
c921be7d 10803
fdfde340
JM
10804 reject_bad_reg (Rd);
10805 reject_bad_reg (Rs);
10806 if (inst.operands[2].isreg)
10807 reject_bad_reg (Rn);
a737bd4d 10808
c19d1205 10809 if (unified_syntax)
a737bd4d 10810 {
c19d1205 10811 if (!inst.operands[2].isreg)
b99bd4ef 10812 {
c19d1205
ZW
10813 /* For an immediate, we always generate a 32-bit opcode;
10814 section relaxation will shrink it later if possible. */
10815 inst.instruction = THUMB_OP32 (inst.instruction);
10816 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
10817 inst.instruction |= Rd << 8;
10818 inst.instruction |= Rs << 16;
10819 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 10820 }
c19d1205 10821 else
a737bd4d 10822 {
e27ec89e
PB
10823 bfd_boolean narrow;
10824
c19d1205 10825 /* See if we can do this with a 16-bit instruction. */
e27ec89e 10826 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 10827 narrow = !in_it_block ();
e27ec89e 10828 else
e07e6e58 10829 narrow = in_it_block ();
e27ec89e
PB
10830
10831 if (Rd > 7 || Rn > 7 || Rs > 7)
10832 narrow = FALSE;
10833 if (inst.operands[2].shifted)
10834 narrow = FALSE;
10835 if (inst.size_req == 4)
10836 narrow = FALSE;
10837
10838 if (narrow)
a737bd4d 10839 {
c19d1205 10840 if (Rd == Rs)
a737bd4d 10841 {
c19d1205
ZW
10842 inst.instruction = THUMB_OP16 (inst.instruction);
10843 inst.instruction |= Rd;
10844 inst.instruction |= Rn << 3;
10845 return;
a737bd4d 10846 }
c19d1205 10847 if (Rd == Rn)
a737bd4d 10848 {
c19d1205
ZW
10849 inst.instruction = THUMB_OP16 (inst.instruction);
10850 inst.instruction |= Rd;
10851 inst.instruction |= Rs << 3;
10852 return;
a737bd4d
NC
10853 }
10854 }
c19d1205
ZW
10855
10856 /* If we get here, it can't be done in 16 bits. */
10857 constraint (inst.operands[2].shifted
10858 && inst.operands[2].immisreg,
10859 _("shift must be constant"));
10860 inst.instruction = THUMB_OP32 (inst.instruction);
10861 inst.instruction |= Rd << 8;
10862 inst.instruction |= Rs << 16;
10863 encode_thumb32_shifted_operand (2);
a737bd4d 10864 }
b99bd4ef 10865 }
c19d1205
ZW
10866 else
10867 {
10868 /* On its face this is a lie - the instruction does set the
10869 flags. However, the only supported mnemonic in this mode
10870 says it doesn't. */
10871 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10872
c19d1205
ZW
10873 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10874 _("unshifted register required"));
10875 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10876
10877 inst.instruction = THUMB_OP16 (inst.instruction);
10878 inst.instruction |= Rd;
10879
10880 if (Rd == Rs)
10881 inst.instruction |= Rn << 3;
10882 else if (Rd == Rn)
10883 inst.instruction |= Rs << 3;
10884 else
10885 constraint (1, _("dest must overlap one source register"));
10886 }
a737bd4d
NC
10887}
10888
c19d1205
ZW
10889static void
10890do_t_bfc (void)
a737bd4d 10891{
fdfde340 10892 unsigned Rd;
c19d1205
ZW
10893 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
10894 constraint (msb > 32, _("bit-field extends past end of register"));
10895 /* The instruction encoding stores the LSB and MSB,
10896 not the LSB and width. */
fdfde340
JM
10897 Rd = inst.operands[0].reg;
10898 reject_bad_reg (Rd);
10899 inst.instruction |= Rd << 8;
c19d1205
ZW
10900 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
10901 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
10902 inst.instruction |= msb - 1;
b99bd4ef
NC
10903}
10904
c19d1205
ZW
10905static void
10906do_t_bfi (void)
b99bd4ef 10907{
fdfde340 10908 int Rd, Rn;
c19d1205 10909 unsigned int msb;
b99bd4ef 10910
fdfde340
JM
10911 Rd = inst.operands[0].reg;
10912 reject_bad_reg (Rd);
10913
c19d1205
ZW
10914 /* #0 in second position is alternative syntax for bfc, which is
10915 the same instruction but with REG_PC in the Rm field. */
10916 if (!inst.operands[1].isreg)
fdfde340
JM
10917 Rn = REG_PC;
10918 else
10919 {
10920 Rn = inst.operands[1].reg;
10921 reject_bad_reg (Rn);
10922 }
b99bd4ef 10923
c19d1205
ZW
10924 msb = inst.operands[2].imm + inst.operands[3].imm;
10925 constraint (msb > 32, _("bit-field extends past end of register"));
10926 /* The instruction encoding stores the LSB and MSB,
10927 not the LSB and width. */
fdfde340
JM
10928 inst.instruction |= Rd << 8;
10929 inst.instruction |= Rn << 16;
c19d1205
ZW
10930 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10931 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10932 inst.instruction |= msb - 1;
b99bd4ef
NC
10933}
10934
c19d1205
ZW
10935static void
10936do_t_bfx (void)
b99bd4ef 10937{
fdfde340
JM
10938 unsigned Rd, Rn;
10939
10940 Rd = inst.operands[0].reg;
10941 Rn = inst.operands[1].reg;
10942
10943 reject_bad_reg (Rd);
10944 reject_bad_reg (Rn);
10945
c19d1205
ZW
10946 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
10947 _("bit-field extends past end of register"));
fdfde340
JM
10948 inst.instruction |= Rd << 8;
10949 inst.instruction |= Rn << 16;
c19d1205
ZW
10950 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10951 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10952 inst.instruction |= inst.operands[3].imm - 1;
10953}
b99bd4ef 10954
c19d1205
ZW
10955/* ARM V5 Thumb BLX (argument parse)
10956 BLX <target_addr> which is BLX(1)
10957 BLX <Rm> which is BLX(2)
10958 Unfortunately, there are two different opcodes for this mnemonic.
10959 So, the insns[].value is not used, and the code here zaps values
10960 into inst.instruction.
b99bd4ef 10961
c19d1205
ZW
10962 ??? How to take advantage of the additional two bits of displacement
10963 available in Thumb32 mode? Need new relocation? */
b99bd4ef 10964
c19d1205
ZW
10965static void
10966do_t_blx (void)
10967{
e07e6e58
NC
10968 set_it_insn_type_last ();
10969
c19d1205 10970 if (inst.operands[0].isreg)
fdfde340
JM
10971 {
10972 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10973 /* We have a register, so this is BLX(2). */
10974 inst.instruction |= inst.operands[0].reg << 3;
10975 }
b99bd4ef
NC
10976 else
10977 {
c19d1205 10978 /* No register. This must be BLX(1). */
2fc8bdac 10979 inst.instruction = 0xf000e800;
0855e32b 10980 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
b99bd4ef
NC
10981 }
10982}
10983
c19d1205
ZW
10984static void
10985do_t_branch (void)
b99bd4ef 10986{
0110f2b8 10987 int opcode;
dfa9f0d5 10988 int cond;
2fe88214 10989 bfd_reloc_code_real_type reloc;
dfa9f0d5 10990
e07e6e58
NC
10991 cond = inst.cond;
10992 set_it_insn_type (IF_INSIDE_IT_LAST_INSN);
10993
10994 if (in_it_block ())
dfa9f0d5
PB
10995 {
10996 /* Conditional branches inside IT blocks are encoded as unconditional
477330fc 10997 branches. */
dfa9f0d5 10998 cond = COND_ALWAYS;
dfa9f0d5
PB
10999 }
11000 else
11001 cond = inst.cond;
11002
11003 if (cond != COND_ALWAYS)
0110f2b8
PB
11004 opcode = T_MNEM_bcond;
11005 else
11006 opcode = inst.instruction;
11007
12d6b0b7
RS
11008 if (unified_syntax
11009 && (inst.size_req == 4
10960bfb
PB
11010 || (inst.size_req != 2
11011 && (inst.operands[0].hasreloc
11012 || inst.reloc.exp.X_op == O_constant))))
c19d1205 11013 {
0110f2b8 11014 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 11015 if (cond == COND_ALWAYS)
9ae92b05 11016 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
11017 else
11018 {
ff8646ee
TP
11019 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2),
11020 _("selected architecture does not support "
11021 "wide conditional branch instruction"));
11022
9c2799c2 11023 gas_assert (cond != 0xF);
dfa9f0d5 11024 inst.instruction |= cond << 22;
9ae92b05 11025 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
c19d1205
ZW
11026 }
11027 }
b99bd4ef
NC
11028 else
11029 {
0110f2b8 11030 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 11031 if (cond == COND_ALWAYS)
9ae92b05 11032 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
c19d1205 11033 else
b99bd4ef 11034 {
dfa9f0d5 11035 inst.instruction |= cond << 8;
9ae92b05 11036 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 11037 }
0110f2b8
PB
11038 /* Allow section relaxation. */
11039 if (unified_syntax && inst.size_req != 2)
11040 inst.relax = opcode;
b99bd4ef 11041 }
9ae92b05 11042 inst.reloc.type = reloc;
c19d1205 11043 inst.reloc.pc_rel = 1;
b99bd4ef
NC
11044}
11045
8884b720 11046/* Actually do the work for Thumb state bkpt and hlt. The only difference
bacebabc 11047 between the two is the maximum immediate allowed - which is passed in
8884b720 11048 RANGE. */
b99bd4ef 11049static void
8884b720 11050do_t_bkpt_hlt1 (int range)
b99bd4ef 11051{
dfa9f0d5
PB
11052 constraint (inst.cond != COND_ALWAYS,
11053 _("instruction is always unconditional"));
c19d1205 11054 if (inst.operands[0].present)
b99bd4ef 11055 {
8884b720 11056 constraint (inst.operands[0].imm > range,
c19d1205
ZW
11057 _("immediate value out of range"));
11058 inst.instruction |= inst.operands[0].imm;
b99bd4ef 11059 }
8884b720
MGD
11060
11061 set_it_insn_type (NEUTRAL_IT_INSN);
11062}
11063
11064static void
11065do_t_hlt (void)
11066{
11067 do_t_bkpt_hlt1 (63);
11068}
11069
11070static void
11071do_t_bkpt (void)
11072{
11073 do_t_bkpt_hlt1 (255);
b99bd4ef
NC
11074}
11075
11076static void
c19d1205 11077do_t_branch23 (void)
b99bd4ef 11078{
e07e6e58 11079 set_it_insn_type_last ();
0855e32b 11080 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
fa94de6b 11081
0855e32b
NS
11082 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
11083 this file. We used to simply ignore the PLT reloc type here --
11084 the branch encoding is now needed to deal with TLSCALL relocs.
11085 So if we see a PLT reloc now, put it back to how it used to be to
11086 keep the preexisting behaviour. */
11087 if (inst.reloc.type == BFD_RELOC_ARM_PLT32)
11088 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a 11089
4343666d 11090#if defined(OBJ_COFF)
c19d1205
ZW
11091 /* If the destination of the branch is a defined symbol which does not have
11092 the THUMB_FUNC attribute, then we must be calling a function which has
11093 the (interfacearm) attribute. We look for the Thumb entry point to that
11094 function and change the branch to refer to that function instead. */
11095 if ( inst.reloc.exp.X_op == O_symbol
11096 && inst.reloc.exp.X_add_symbol != NULL
11097 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
11098 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
11099 inst.reloc.exp.X_add_symbol =
11100 find_real_start (inst.reloc.exp.X_add_symbol);
4343666d 11101#endif
90e4755a
RE
11102}
11103
11104static void
c19d1205 11105do_t_bx (void)
90e4755a 11106{
e07e6e58 11107 set_it_insn_type_last ();
c19d1205
ZW
11108 inst.instruction |= inst.operands[0].reg << 3;
11109 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
11110 should cause the alignment to be checked once it is known. This is
11111 because BX PC only works if the instruction is word aligned. */
11112}
90e4755a 11113
c19d1205
ZW
11114static void
11115do_t_bxj (void)
11116{
fdfde340 11117 int Rm;
90e4755a 11118
e07e6e58 11119 set_it_insn_type_last ();
fdfde340
JM
11120 Rm = inst.operands[0].reg;
11121 reject_bad_reg (Rm);
11122 inst.instruction |= Rm << 16;
90e4755a
RE
11123}
11124
11125static void
c19d1205 11126do_t_clz (void)
90e4755a 11127{
fdfde340
JM
11128 unsigned Rd;
11129 unsigned Rm;
11130
11131 Rd = inst.operands[0].reg;
11132 Rm = inst.operands[1].reg;
11133
11134 reject_bad_reg (Rd);
11135 reject_bad_reg (Rm);
11136
11137 inst.instruction |= Rd << 8;
11138 inst.instruction |= Rm << 16;
11139 inst.instruction |= Rm;
c19d1205 11140}
90e4755a 11141
dfa9f0d5
PB
11142static void
11143do_t_cps (void)
11144{
e07e6e58 11145 set_it_insn_type (OUTSIDE_IT_INSN);
dfa9f0d5
PB
11146 inst.instruction |= inst.operands[0].imm;
11147}
11148
c19d1205
ZW
11149static void
11150do_t_cpsi (void)
11151{
e07e6e58 11152 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205 11153 if (unified_syntax
62b3e311
PB
11154 && (inst.operands[1].present || inst.size_req == 4)
11155 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 11156 {
c19d1205
ZW
11157 unsigned int imod = (inst.instruction & 0x0030) >> 4;
11158 inst.instruction = 0xf3af8000;
11159 inst.instruction |= imod << 9;
11160 inst.instruction |= inst.operands[0].imm << 5;
11161 if (inst.operands[1].present)
11162 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 11163 }
c19d1205 11164 else
90e4755a 11165 {
62b3e311
PB
11166 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
11167 && (inst.operands[0].imm & 4),
11168 _("selected processor does not support 'A' form "
11169 "of this instruction"));
11170 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
11171 _("Thumb does not support the 2-argument "
11172 "form of this instruction"));
11173 inst.instruction |= inst.operands[0].imm;
90e4755a 11174 }
90e4755a
RE
11175}
11176
c19d1205
ZW
11177/* THUMB CPY instruction (argument parse). */
11178
90e4755a 11179static void
c19d1205 11180do_t_cpy (void)
90e4755a 11181{
c19d1205 11182 if (inst.size_req == 4)
90e4755a 11183 {
c19d1205
ZW
11184 inst.instruction = THUMB_OP32 (T_MNEM_mov);
11185 inst.instruction |= inst.operands[0].reg << 8;
11186 inst.instruction |= inst.operands[1].reg;
90e4755a 11187 }
c19d1205 11188 else
90e4755a 11189 {
c19d1205
ZW
11190 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
11191 inst.instruction |= (inst.operands[0].reg & 0x7);
11192 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 11193 }
90e4755a
RE
11194}
11195
90e4755a 11196static void
25fe350b 11197do_t_cbz (void)
90e4755a 11198{
e07e6e58 11199 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
11200 constraint (inst.operands[0].reg > 7, BAD_HIREG);
11201 inst.instruction |= inst.operands[0].reg;
11202 inst.reloc.pc_rel = 1;
11203 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
11204}
90e4755a 11205
62b3e311
PB
11206static void
11207do_t_dbg (void)
11208{
11209 inst.instruction |= inst.operands[0].imm;
11210}
11211
11212static void
11213do_t_div (void)
11214{
fdfde340
JM
11215 unsigned Rd, Rn, Rm;
11216
11217 Rd = inst.operands[0].reg;
11218 Rn = (inst.operands[1].present
11219 ? inst.operands[1].reg : Rd);
11220 Rm = inst.operands[2].reg;
11221
11222 reject_bad_reg (Rd);
11223 reject_bad_reg (Rn);
11224 reject_bad_reg (Rm);
11225
11226 inst.instruction |= Rd << 8;
11227 inst.instruction |= Rn << 16;
11228 inst.instruction |= Rm;
62b3e311
PB
11229}
11230
c19d1205
ZW
11231static void
11232do_t_hint (void)
11233{
11234 if (unified_syntax && inst.size_req == 4)
11235 inst.instruction = THUMB_OP32 (inst.instruction);
11236 else
11237 inst.instruction = THUMB_OP16 (inst.instruction);
11238}
90e4755a 11239
c19d1205
ZW
11240static void
11241do_t_it (void)
11242{
11243 unsigned int cond = inst.operands[0].imm;
e27ec89e 11244
e07e6e58
NC
11245 set_it_insn_type (IT_INSN);
11246 now_it.mask = (inst.instruction & 0xf) | 0x10;
11247 now_it.cc = cond;
5a01bb1d 11248 now_it.warn_deprecated = FALSE;
e27ec89e
PB
11249
11250 /* If the condition is a negative condition, invert the mask. */
c19d1205 11251 if ((cond & 0x1) == 0x0)
90e4755a 11252 {
c19d1205 11253 unsigned int mask = inst.instruction & 0x000f;
90e4755a 11254
c19d1205 11255 if ((mask & 0x7) == 0)
5a01bb1d
MGD
11256 {
11257 /* No conversion needed. */
11258 now_it.block_length = 1;
11259 }
c19d1205 11260 else if ((mask & 0x3) == 0)
5a01bb1d
MGD
11261 {
11262 mask ^= 0x8;
11263 now_it.block_length = 2;
11264 }
e27ec89e 11265 else if ((mask & 0x1) == 0)
5a01bb1d
MGD
11266 {
11267 mask ^= 0xC;
11268 now_it.block_length = 3;
11269 }
c19d1205 11270 else
5a01bb1d
MGD
11271 {
11272 mask ^= 0xE;
11273 now_it.block_length = 4;
11274 }
90e4755a 11275
e27ec89e
PB
11276 inst.instruction &= 0xfff0;
11277 inst.instruction |= mask;
c19d1205 11278 }
90e4755a 11279
c19d1205
ZW
11280 inst.instruction |= cond << 4;
11281}
90e4755a 11282
3c707909
PB
11283/* Helper function used for both push/pop and ldm/stm. */
11284static void
11285encode_thumb2_ldmstm (int base, unsigned mask, bfd_boolean writeback)
11286{
11287 bfd_boolean load;
11288
11289 load = (inst.instruction & (1 << 20)) != 0;
11290
11291 if (mask & (1 << 13))
11292 inst.error = _("SP not allowed in register list");
1e5b0379
NC
11293
11294 if ((mask & (1 << base)) != 0
11295 && writeback)
11296 inst.error = _("having the base register in the register list when "
11297 "using write back is UNPREDICTABLE");
11298
3c707909
PB
11299 if (load)
11300 {
e07e6e58 11301 if (mask & (1 << 15))
477330fc
RM
11302 {
11303 if (mask & (1 << 14))
11304 inst.error = _("LR and PC should not both be in register list");
11305 else
11306 set_it_insn_type_last ();
11307 }
3c707909
PB
11308 }
11309 else
11310 {
11311 if (mask & (1 << 15))
11312 inst.error = _("PC not allowed in register list");
3c707909
PB
11313 }
11314
11315 if ((mask & (mask - 1)) == 0)
11316 {
11317 /* Single register transfers implemented as str/ldr. */
11318 if (writeback)
11319 {
11320 if (inst.instruction & (1 << 23))
11321 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
11322 else
11323 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
11324 }
11325 else
11326 {
11327 if (inst.instruction & (1 << 23))
11328 inst.instruction = 0x00800000; /* ia -> [base] */
11329 else
11330 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
11331 }
11332
11333 inst.instruction |= 0xf8400000;
11334 if (load)
11335 inst.instruction |= 0x00100000;
11336
5f4273c7 11337 mask = ffs (mask) - 1;
3c707909
PB
11338 mask <<= 12;
11339 }
11340 else if (writeback)
11341 inst.instruction |= WRITE_BACK;
11342
11343 inst.instruction |= mask;
11344 inst.instruction |= base << 16;
11345}
11346
c19d1205
ZW
11347static void
11348do_t_ldmstm (void)
11349{
11350 /* This really doesn't seem worth it. */
11351 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
11352 _("expression too complex"));
11353 constraint (inst.operands[1].writeback,
11354 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 11355
c19d1205
ZW
11356 if (unified_syntax)
11357 {
3c707909
PB
11358 bfd_boolean narrow;
11359 unsigned mask;
11360
11361 narrow = FALSE;
c19d1205
ZW
11362 /* See if we can use a 16-bit instruction. */
11363 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
11364 && inst.size_req != 4
3c707909 11365 && !(inst.operands[1].imm & ~0xff))
90e4755a 11366 {
3c707909 11367 mask = 1 << inst.operands[0].reg;
90e4755a 11368
eab4f823 11369 if (inst.operands[0].reg <= 7)
90e4755a 11370 {
3c707909 11371 if (inst.instruction == T_MNEM_stmia
eab4f823
MGD
11372 ? inst.operands[0].writeback
11373 : (inst.operands[0].writeback
11374 == !(inst.operands[1].imm & mask)))
477330fc 11375 {
eab4f823
MGD
11376 if (inst.instruction == T_MNEM_stmia
11377 && (inst.operands[1].imm & mask)
11378 && (inst.operands[1].imm & (mask - 1)))
11379 as_warn (_("value stored for r%d is UNKNOWN"),
11380 inst.operands[0].reg);
3c707909 11381
eab4f823
MGD
11382 inst.instruction = THUMB_OP16 (inst.instruction);
11383 inst.instruction |= inst.operands[0].reg << 8;
11384 inst.instruction |= inst.operands[1].imm;
11385 narrow = TRUE;
11386 }
11387 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
11388 {
11389 /* This means 1 register in reg list one of 3 situations:
11390 1. Instruction is stmia, but without writeback.
11391 2. lmdia without writeback, but with Rn not in
477330fc 11392 reglist.
eab4f823
MGD
11393 3. ldmia with writeback, but with Rn in reglist.
11394 Case 3 is UNPREDICTABLE behaviour, so we handle
11395 case 1 and 2 which can be converted into a 16-bit
11396 str or ldr. The SP cases are handled below. */
11397 unsigned long opcode;
11398 /* First, record an error for Case 3. */
11399 if (inst.operands[1].imm & mask
11400 && inst.operands[0].writeback)
fa94de6b 11401 inst.error =
eab4f823
MGD
11402 _("having the base register in the register list when "
11403 "using write back is UNPREDICTABLE");
fa94de6b
RM
11404
11405 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
eab4f823
MGD
11406 : T_MNEM_ldr);
11407 inst.instruction = THUMB_OP16 (opcode);
11408 inst.instruction |= inst.operands[0].reg << 3;
11409 inst.instruction |= (ffs (inst.operands[1].imm)-1);
11410 narrow = TRUE;
11411 }
90e4755a 11412 }
eab4f823 11413 else if (inst.operands[0] .reg == REG_SP)
90e4755a 11414 {
eab4f823
MGD
11415 if (inst.operands[0].writeback)
11416 {
fa94de6b 11417 inst.instruction =
eab4f823 11418 THUMB_OP16 (inst.instruction == T_MNEM_stmia
477330fc 11419 ? T_MNEM_push : T_MNEM_pop);
eab4f823 11420 inst.instruction |= inst.operands[1].imm;
477330fc 11421 narrow = TRUE;
eab4f823
MGD
11422 }
11423 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
11424 {
fa94de6b 11425 inst.instruction =
eab4f823 11426 THUMB_OP16 (inst.instruction == T_MNEM_stmia
477330fc 11427 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
eab4f823 11428 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
477330fc 11429 narrow = TRUE;
eab4f823 11430 }
90e4755a 11431 }
3c707909
PB
11432 }
11433
11434 if (!narrow)
11435 {
c19d1205
ZW
11436 if (inst.instruction < 0xffff)
11437 inst.instruction = THUMB_OP32 (inst.instruction);
3c707909 11438
5f4273c7
NC
11439 encode_thumb2_ldmstm (inst.operands[0].reg, inst.operands[1].imm,
11440 inst.operands[0].writeback);
90e4755a
RE
11441 }
11442 }
c19d1205 11443 else
90e4755a 11444 {
c19d1205
ZW
11445 constraint (inst.operands[0].reg > 7
11446 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
1198ca51
PB
11447 constraint (inst.instruction != T_MNEM_ldmia
11448 && inst.instruction != T_MNEM_stmia,
11449 _("Thumb-2 instruction only valid in unified syntax"));
c19d1205 11450 if (inst.instruction == T_MNEM_stmia)
f03698e6 11451 {
c19d1205
ZW
11452 if (!inst.operands[0].writeback)
11453 as_warn (_("this instruction will write back the base register"));
11454 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
11455 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
1e5b0379 11456 as_warn (_("value stored for r%d is UNKNOWN"),
c19d1205 11457 inst.operands[0].reg);
f03698e6 11458 }
c19d1205 11459 else
90e4755a 11460 {
c19d1205
ZW
11461 if (!inst.operands[0].writeback
11462 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
11463 as_warn (_("this instruction will write back the base register"));
11464 else if (inst.operands[0].writeback
11465 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
11466 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
11467 }
11468
c19d1205
ZW
11469 inst.instruction = THUMB_OP16 (inst.instruction);
11470 inst.instruction |= inst.operands[0].reg << 8;
11471 inst.instruction |= inst.operands[1].imm;
11472 }
11473}
e28cd48c 11474
c19d1205
ZW
11475static void
11476do_t_ldrex (void)
11477{
11478 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
11479 || inst.operands[1].postind || inst.operands[1].writeback
11480 || inst.operands[1].immisreg || inst.operands[1].shifted
11481 || inst.operands[1].negative,
01cfc07f 11482 BAD_ADDR_MODE);
e28cd48c 11483
5be8be5d
DG
11484 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
11485
c19d1205
ZW
11486 inst.instruction |= inst.operands[0].reg << 12;
11487 inst.instruction |= inst.operands[1].reg << 16;
11488 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
11489}
e28cd48c 11490
c19d1205
ZW
11491static void
11492do_t_ldrexd (void)
11493{
11494 if (!inst.operands[1].present)
1cac9012 11495 {
c19d1205
ZW
11496 constraint (inst.operands[0].reg == REG_LR,
11497 _("r14 not allowed as first register "
11498 "when second register is omitted"));
11499 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 11500 }
c19d1205
ZW
11501 constraint (inst.operands[0].reg == inst.operands[1].reg,
11502 BAD_OVERLAP);
b99bd4ef 11503
c19d1205
ZW
11504 inst.instruction |= inst.operands[0].reg << 12;
11505 inst.instruction |= inst.operands[1].reg << 8;
11506 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
11507}
11508
11509static void
c19d1205 11510do_t_ldst (void)
b99bd4ef 11511{
0110f2b8
PB
11512 unsigned long opcode;
11513 int Rn;
11514
e07e6e58
NC
11515 if (inst.operands[0].isreg
11516 && !inst.operands[0].preind
11517 && inst.operands[0].reg == REG_PC)
11518 set_it_insn_type_last ();
11519
0110f2b8 11520 opcode = inst.instruction;
c19d1205 11521 if (unified_syntax)
b99bd4ef 11522 {
53365c0d
PB
11523 if (!inst.operands[1].isreg)
11524 {
11525 if (opcode <= 0xffff)
11526 inst.instruction = THUMB_OP32 (opcode);
8335d6aa 11527 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
53365c0d
PB
11528 return;
11529 }
0110f2b8
PB
11530 if (inst.operands[1].isreg
11531 && !inst.operands[1].writeback
c19d1205
ZW
11532 && !inst.operands[1].shifted && !inst.operands[1].postind
11533 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
11534 && opcode <= 0xffff
11535 && inst.size_req != 4)
c19d1205 11536 {
0110f2b8
PB
11537 /* Insn may have a 16-bit form. */
11538 Rn = inst.operands[1].reg;
11539 if (inst.operands[1].immisreg)
11540 {
11541 inst.instruction = THUMB_OP16 (opcode);
5f4273c7 11542 /* [Rn, Rik] */
0110f2b8
PB
11543 if (Rn <= 7 && inst.operands[1].imm <= 7)
11544 goto op16;
5be8be5d
DG
11545 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
11546 reject_bad_reg (inst.operands[1].imm);
0110f2b8
PB
11547 }
11548 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
11549 && opcode != T_MNEM_ldrsb)
11550 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
11551 || (Rn == REG_SP && opcode == T_MNEM_str))
11552 {
11553 /* [Rn, #const] */
11554 if (Rn > 7)
11555 {
11556 if (Rn == REG_PC)
11557 {
11558 if (inst.reloc.pc_rel)
11559 opcode = T_MNEM_ldr_pc2;
11560 else
11561 opcode = T_MNEM_ldr_pc;
11562 }
11563 else
11564 {
11565 if (opcode == T_MNEM_ldr)
11566 opcode = T_MNEM_ldr_sp;
11567 else
11568 opcode = T_MNEM_str_sp;
11569 }
11570 inst.instruction = inst.operands[0].reg << 8;
11571 }
11572 else
11573 {
11574 inst.instruction = inst.operands[0].reg;
11575 inst.instruction |= inst.operands[1].reg << 3;
11576 }
11577 inst.instruction |= THUMB_OP16 (opcode);
11578 if (inst.size_req == 2)
11579 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11580 else
11581 inst.relax = opcode;
11582 return;
11583 }
c19d1205 11584 }
0110f2b8 11585 /* Definitely a 32-bit variant. */
5be8be5d 11586
8d67f500
NC
11587 /* Warning for Erratum 752419. */
11588 if (opcode == T_MNEM_ldr
11589 && inst.operands[0].reg == REG_SP
11590 && inst.operands[1].writeback == 1
11591 && !inst.operands[1].immisreg)
11592 {
11593 if (no_cpu_selected ()
11594 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
477330fc
RM
11595 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
11596 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
8d67f500
NC
11597 as_warn (_("This instruction may be unpredictable "
11598 "if executed on M-profile cores "
11599 "with interrupts enabled."));
11600 }
11601
5be8be5d 11602 /* Do some validations regarding addressing modes. */
1be5fd2e 11603 if (inst.operands[1].immisreg)
5be8be5d
DG
11604 reject_bad_reg (inst.operands[1].imm);
11605
1be5fd2e
NC
11606 constraint (inst.operands[1].writeback == 1
11607 && inst.operands[0].reg == inst.operands[1].reg,
11608 BAD_OVERLAP);
11609
0110f2b8 11610 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
11611 inst.instruction |= inst.operands[0].reg << 12;
11612 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
1be5fd2e 11613 check_ldr_r15_aligned ();
b99bd4ef
NC
11614 return;
11615 }
11616
c19d1205
ZW
11617 constraint (inst.operands[0].reg > 7, BAD_HIREG);
11618
11619 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 11620 {
c19d1205
ZW
11621 /* Only [Rn,Rm] is acceptable. */
11622 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
11623 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
11624 || inst.operands[1].postind || inst.operands[1].shifted
11625 || inst.operands[1].negative,
11626 _("Thumb does not support this addressing mode"));
11627 inst.instruction = THUMB_OP16 (inst.instruction);
11628 goto op16;
b99bd4ef 11629 }
5f4273c7 11630
c19d1205
ZW
11631 inst.instruction = THUMB_OP16 (inst.instruction);
11632 if (!inst.operands[1].isreg)
8335d6aa 11633 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
c19d1205 11634 return;
b99bd4ef 11635
c19d1205
ZW
11636 constraint (!inst.operands[1].preind
11637 || inst.operands[1].shifted
11638 || inst.operands[1].writeback,
11639 _("Thumb does not support this addressing mode"));
11640 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 11641 {
c19d1205
ZW
11642 constraint (inst.instruction & 0x0600,
11643 _("byte or halfword not valid for base register"));
11644 constraint (inst.operands[1].reg == REG_PC
11645 && !(inst.instruction & THUMB_LOAD_BIT),
11646 _("r15 based store not allowed"));
11647 constraint (inst.operands[1].immisreg,
11648 _("invalid base register for register offset"));
b99bd4ef 11649
c19d1205
ZW
11650 if (inst.operands[1].reg == REG_PC)
11651 inst.instruction = T_OPCODE_LDR_PC;
11652 else if (inst.instruction & THUMB_LOAD_BIT)
11653 inst.instruction = T_OPCODE_LDR_SP;
11654 else
11655 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 11656
c19d1205
ZW
11657 inst.instruction |= inst.operands[0].reg << 8;
11658 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11659 return;
11660 }
90e4755a 11661
c19d1205
ZW
11662 constraint (inst.operands[1].reg > 7, BAD_HIREG);
11663 if (!inst.operands[1].immisreg)
11664 {
11665 /* Immediate offset. */
11666 inst.instruction |= inst.operands[0].reg;
11667 inst.instruction |= inst.operands[1].reg << 3;
11668 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11669 return;
11670 }
90e4755a 11671
c19d1205
ZW
11672 /* Register offset. */
11673 constraint (inst.operands[1].imm > 7, BAD_HIREG);
11674 constraint (inst.operands[1].negative,
11675 _("Thumb does not support this addressing mode"));
90e4755a 11676
c19d1205
ZW
11677 op16:
11678 switch (inst.instruction)
11679 {
11680 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
11681 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
11682 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
11683 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
11684 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
11685 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
11686 case 0x5600 /* ldrsb */:
11687 case 0x5e00 /* ldrsh */: break;
11688 default: abort ();
11689 }
90e4755a 11690
c19d1205
ZW
11691 inst.instruction |= inst.operands[0].reg;
11692 inst.instruction |= inst.operands[1].reg << 3;
11693 inst.instruction |= inst.operands[1].imm << 6;
11694}
90e4755a 11695
c19d1205
ZW
11696static void
11697do_t_ldstd (void)
11698{
11699 if (!inst.operands[1].present)
b99bd4ef 11700 {
c19d1205
ZW
11701 inst.operands[1].reg = inst.operands[0].reg + 1;
11702 constraint (inst.operands[0].reg == REG_LR,
11703 _("r14 not allowed here"));
bd340a04 11704 constraint (inst.operands[0].reg == REG_R12,
477330fc 11705 _("r12 not allowed here"));
b99bd4ef 11706 }
bd340a04
MGD
11707
11708 if (inst.operands[2].writeback
11709 && (inst.operands[0].reg == inst.operands[2].reg
11710 || inst.operands[1].reg == inst.operands[2].reg))
11711 as_warn (_("base register written back, and overlaps "
477330fc 11712 "one of transfer registers"));
bd340a04 11713
c19d1205
ZW
11714 inst.instruction |= inst.operands[0].reg << 12;
11715 inst.instruction |= inst.operands[1].reg << 8;
11716 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
b99bd4ef
NC
11717}
11718
c19d1205
ZW
11719static void
11720do_t_ldstt (void)
11721{
11722 inst.instruction |= inst.operands[0].reg << 12;
11723 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
11724}
a737bd4d 11725
b99bd4ef 11726static void
c19d1205 11727do_t_mla (void)
b99bd4ef 11728{
fdfde340 11729 unsigned Rd, Rn, Rm, Ra;
c921be7d 11730
fdfde340
JM
11731 Rd = inst.operands[0].reg;
11732 Rn = inst.operands[1].reg;
11733 Rm = inst.operands[2].reg;
11734 Ra = inst.operands[3].reg;
11735
11736 reject_bad_reg (Rd);
11737 reject_bad_reg (Rn);
11738 reject_bad_reg (Rm);
11739 reject_bad_reg (Ra);
11740
11741 inst.instruction |= Rd << 8;
11742 inst.instruction |= Rn << 16;
11743 inst.instruction |= Rm;
11744 inst.instruction |= Ra << 12;
c19d1205 11745}
b99bd4ef 11746
c19d1205
ZW
11747static void
11748do_t_mlal (void)
11749{
fdfde340
JM
11750 unsigned RdLo, RdHi, Rn, Rm;
11751
11752 RdLo = inst.operands[0].reg;
11753 RdHi = inst.operands[1].reg;
11754 Rn = inst.operands[2].reg;
11755 Rm = inst.operands[3].reg;
11756
11757 reject_bad_reg (RdLo);
11758 reject_bad_reg (RdHi);
11759 reject_bad_reg (Rn);
11760 reject_bad_reg (Rm);
11761
11762 inst.instruction |= RdLo << 12;
11763 inst.instruction |= RdHi << 8;
11764 inst.instruction |= Rn << 16;
11765 inst.instruction |= Rm;
c19d1205 11766}
b99bd4ef 11767
c19d1205
ZW
11768static void
11769do_t_mov_cmp (void)
11770{
fdfde340
JM
11771 unsigned Rn, Rm;
11772
11773 Rn = inst.operands[0].reg;
11774 Rm = inst.operands[1].reg;
11775
e07e6e58
NC
11776 if (Rn == REG_PC)
11777 set_it_insn_type_last ();
11778
c19d1205 11779 if (unified_syntax)
b99bd4ef 11780 {
c19d1205
ZW
11781 int r0off = (inst.instruction == T_MNEM_mov
11782 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 11783 unsigned long opcode;
3d388997
PB
11784 bfd_boolean narrow;
11785 bfd_boolean low_regs;
11786
fdfde340 11787 low_regs = (Rn <= 7 && Rm <= 7);
0110f2b8 11788 opcode = inst.instruction;
e07e6e58 11789 if (in_it_block ())
0110f2b8 11790 narrow = opcode != T_MNEM_movs;
3d388997 11791 else
0110f2b8 11792 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
11793 if (inst.size_req == 4
11794 || inst.operands[1].shifted)
11795 narrow = FALSE;
11796
efd81785
PB
11797 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
11798 if (opcode == T_MNEM_movs && inst.operands[1].isreg
11799 && !inst.operands[1].shifted
fdfde340
JM
11800 && Rn == REG_PC
11801 && Rm == REG_LR)
efd81785
PB
11802 {
11803 inst.instruction = T2_SUBS_PC_LR;
11804 return;
11805 }
11806
fdfde340
JM
11807 if (opcode == T_MNEM_cmp)
11808 {
11809 constraint (Rn == REG_PC, BAD_PC);
94206790
MM
11810 if (narrow)
11811 {
11812 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
11813 but valid. */
11814 warn_deprecated_sp (Rm);
11815 /* R15 was documented as a valid choice for Rm in ARMv6,
11816 but as UNPREDICTABLE in ARMv7. ARM's proprietary
11817 tools reject R15, so we do too. */
11818 constraint (Rm == REG_PC, BAD_PC);
11819 }
11820 else
11821 reject_bad_reg (Rm);
fdfde340
JM
11822 }
11823 else if (opcode == T_MNEM_mov
11824 || opcode == T_MNEM_movs)
11825 {
11826 if (inst.operands[1].isreg)
11827 {
11828 if (opcode == T_MNEM_movs)
11829 {
11830 reject_bad_reg (Rn);
11831 reject_bad_reg (Rm);
11832 }
76fa04a4
MGD
11833 else if (narrow)
11834 {
11835 /* This is mov.n. */
11836 if ((Rn == REG_SP || Rn == REG_PC)
11837 && (Rm == REG_SP || Rm == REG_PC))
11838 {
5c3696f8 11839 as_tsktsk (_("Use of r%u as a source register is "
76fa04a4
MGD
11840 "deprecated when r%u is the destination "
11841 "register."), Rm, Rn);
11842 }
11843 }
11844 else
11845 {
11846 /* This is mov.w. */
11847 constraint (Rn == REG_PC, BAD_PC);
11848 constraint (Rm == REG_PC, BAD_PC);
11849 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
11850 }
fdfde340
JM
11851 }
11852 else
11853 reject_bad_reg (Rn);
11854 }
11855
c19d1205
ZW
11856 if (!inst.operands[1].isreg)
11857 {
0110f2b8 11858 /* Immediate operand. */
e07e6e58 11859 if (!in_it_block () && opcode == T_MNEM_mov)
0110f2b8
PB
11860 narrow = 0;
11861 if (low_regs && narrow)
11862 {
11863 inst.instruction = THUMB_OP16 (opcode);
fdfde340 11864 inst.instruction |= Rn << 8;
a9f02af8
MG
11865 if (inst.reloc.type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
11866 || inst.reloc.type > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
72d98d16 11867 {
a9f02af8 11868 if (inst.size_req == 2)
72d98d16 11869 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
a9f02af8
MG
11870 else
11871 inst.relax = opcode;
72d98d16 11872 }
0110f2b8
PB
11873 }
11874 else
11875 {
a9f02af8
MG
11876 constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
11877 && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
11878 THUMB1_RELOC_ONLY);
11879
0110f2b8
PB
11880 inst.instruction = THUMB_OP32 (inst.instruction);
11881 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11882 inst.instruction |= Rn << r0off;
0110f2b8
PB
11883 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11884 }
c19d1205 11885 }
728ca7c9
PB
11886 else if (inst.operands[1].shifted && inst.operands[1].immisreg
11887 && (inst.instruction == T_MNEM_mov
11888 || inst.instruction == T_MNEM_movs))
11889 {
11890 /* Register shifts are encoded as separate shift instructions. */
11891 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
11892
e07e6e58 11893 if (in_it_block ())
728ca7c9
PB
11894 narrow = !flags;
11895 else
11896 narrow = flags;
11897
11898 if (inst.size_req == 4)
11899 narrow = FALSE;
11900
11901 if (!low_regs || inst.operands[1].imm > 7)
11902 narrow = FALSE;
11903
fdfde340 11904 if (Rn != Rm)
728ca7c9
PB
11905 narrow = FALSE;
11906
11907 switch (inst.operands[1].shift_kind)
11908 {
11909 case SHIFT_LSL:
11910 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
11911 break;
11912 case SHIFT_ASR:
11913 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
11914 break;
11915 case SHIFT_LSR:
11916 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
11917 break;
11918 case SHIFT_ROR:
11919 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
11920 break;
11921 default:
5f4273c7 11922 abort ();
728ca7c9
PB
11923 }
11924
11925 inst.instruction = opcode;
11926 if (narrow)
11927 {
fdfde340 11928 inst.instruction |= Rn;
728ca7c9
PB
11929 inst.instruction |= inst.operands[1].imm << 3;
11930 }
11931 else
11932 {
11933 if (flags)
11934 inst.instruction |= CONDS_BIT;
11935
fdfde340
JM
11936 inst.instruction |= Rn << 8;
11937 inst.instruction |= Rm << 16;
728ca7c9
PB
11938 inst.instruction |= inst.operands[1].imm;
11939 }
11940 }
3d388997 11941 else if (!narrow)
c19d1205 11942 {
728ca7c9
PB
11943 /* Some mov with immediate shift have narrow variants.
11944 Register shifts are handled above. */
11945 if (low_regs && inst.operands[1].shifted
11946 && (inst.instruction == T_MNEM_mov
11947 || inst.instruction == T_MNEM_movs))
11948 {
e07e6e58 11949 if (in_it_block ())
728ca7c9
PB
11950 narrow = (inst.instruction == T_MNEM_mov);
11951 else
11952 narrow = (inst.instruction == T_MNEM_movs);
11953 }
11954
11955 if (narrow)
11956 {
11957 switch (inst.operands[1].shift_kind)
11958 {
11959 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11960 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
11961 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11962 default: narrow = FALSE; break;
11963 }
11964 }
11965
11966 if (narrow)
11967 {
fdfde340
JM
11968 inst.instruction |= Rn;
11969 inst.instruction |= Rm << 3;
728ca7c9
PB
11970 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11971 }
11972 else
11973 {
11974 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11975 inst.instruction |= Rn << r0off;
728ca7c9
PB
11976 encode_thumb32_shifted_operand (1);
11977 }
c19d1205
ZW
11978 }
11979 else
11980 switch (inst.instruction)
11981 {
11982 case T_MNEM_mov:
837b3435 11983 /* In v4t or v5t a move of two lowregs produces unpredictable
c6400f8a
MGD
11984 results. Don't allow this. */
11985 if (low_regs)
11986 {
11987 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
11988 "MOV Rd, Rs with two low registers is not "
11989 "permitted on this architecture");
fa94de6b 11990 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
c6400f8a
MGD
11991 arm_ext_v6);
11992 }
11993
c19d1205 11994 inst.instruction = T_OPCODE_MOV_HR;
fdfde340
JM
11995 inst.instruction |= (Rn & 0x8) << 4;
11996 inst.instruction |= (Rn & 0x7);
11997 inst.instruction |= Rm << 3;
c19d1205 11998 break;
b99bd4ef 11999
c19d1205
ZW
12000 case T_MNEM_movs:
12001 /* We know we have low registers at this point.
941a8a52
MGD
12002 Generate LSLS Rd, Rs, #0. */
12003 inst.instruction = T_OPCODE_LSL_I;
fdfde340
JM
12004 inst.instruction |= Rn;
12005 inst.instruction |= Rm << 3;
c19d1205
ZW
12006 break;
12007
12008 case T_MNEM_cmp:
3d388997 12009 if (low_regs)
c19d1205
ZW
12010 {
12011 inst.instruction = T_OPCODE_CMP_LR;
fdfde340
JM
12012 inst.instruction |= Rn;
12013 inst.instruction |= Rm << 3;
c19d1205
ZW
12014 }
12015 else
12016 {
12017 inst.instruction = T_OPCODE_CMP_HR;
fdfde340
JM
12018 inst.instruction |= (Rn & 0x8) << 4;
12019 inst.instruction |= (Rn & 0x7);
12020 inst.instruction |= Rm << 3;
c19d1205
ZW
12021 }
12022 break;
12023 }
b99bd4ef
NC
12024 return;
12025 }
12026
c19d1205 12027 inst.instruction = THUMB_OP16 (inst.instruction);
539d4391
NC
12028
12029 /* PR 10443: Do not silently ignore shifted operands. */
12030 constraint (inst.operands[1].shifted,
12031 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
12032
c19d1205 12033 if (inst.operands[1].isreg)
b99bd4ef 12034 {
fdfde340 12035 if (Rn < 8 && Rm < 8)
b99bd4ef 12036 {
c19d1205
ZW
12037 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
12038 since a MOV instruction produces unpredictable results. */
12039 if (inst.instruction == T_OPCODE_MOV_I8)
12040 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 12041 else
c19d1205 12042 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 12043
fdfde340
JM
12044 inst.instruction |= Rn;
12045 inst.instruction |= Rm << 3;
b99bd4ef
NC
12046 }
12047 else
12048 {
c19d1205
ZW
12049 if (inst.instruction == T_OPCODE_MOV_I8)
12050 inst.instruction = T_OPCODE_MOV_HR;
12051 else
12052 inst.instruction = T_OPCODE_CMP_HR;
12053 do_t_cpy ();
b99bd4ef
NC
12054 }
12055 }
c19d1205 12056 else
b99bd4ef 12057 {
fdfde340 12058 constraint (Rn > 7,
c19d1205 12059 _("only lo regs allowed with immediate"));
fdfde340 12060 inst.instruction |= Rn << 8;
c19d1205
ZW
12061 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
12062 }
12063}
b99bd4ef 12064
c19d1205
ZW
12065static void
12066do_t_mov16 (void)
12067{
fdfde340 12068 unsigned Rd;
b6895b4f
PB
12069 bfd_vma imm;
12070 bfd_boolean top;
12071
12072 top = (inst.instruction & 0x00800000) != 0;
12073 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
12074 {
12075 constraint (top, _(":lower16: not allowed this instruction"));
12076 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
12077 }
12078 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
12079 {
12080 constraint (!top, _(":upper16: not allowed this instruction"));
12081 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
12082 }
12083
fdfde340
JM
12084 Rd = inst.operands[0].reg;
12085 reject_bad_reg (Rd);
12086
12087 inst.instruction |= Rd << 8;
b6895b4f
PB
12088 if (inst.reloc.type == BFD_RELOC_UNUSED)
12089 {
12090 imm = inst.reloc.exp.X_add_number;
12091 inst.instruction |= (imm & 0xf000) << 4;
12092 inst.instruction |= (imm & 0x0800) << 15;
12093 inst.instruction |= (imm & 0x0700) << 4;
12094 inst.instruction |= (imm & 0x00ff);
12095 }
c19d1205 12096}
b99bd4ef 12097
c19d1205
ZW
12098static void
12099do_t_mvn_tst (void)
12100{
fdfde340 12101 unsigned Rn, Rm;
c921be7d 12102
fdfde340
JM
12103 Rn = inst.operands[0].reg;
12104 Rm = inst.operands[1].reg;
12105
12106 if (inst.instruction == T_MNEM_cmp
12107 || inst.instruction == T_MNEM_cmn)
12108 constraint (Rn == REG_PC, BAD_PC);
12109 else
12110 reject_bad_reg (Rn);
12111 reject_bad_reg (Rm);
12112
c19d1205
ZW
12113 if (unified_syntax)
12114 {
12115 int r0off = (inst.instruction == T_MNEM_mvn
12116 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
12117 bfd_boolean narrow;
12118
12119 if (inst.size_req == 4
12120 || inst.instruction > 0xffff
12121 || inst.operands[1].shifted
fdfde340 12122 || Rn > 7 || Rm > 7)
3d388997 12123 narrow = FALSE;
fe8b4cc3
KT
12124 else if (inst.instruction == T_MNEM_cmn
12125 || inst.instruction == T_MNEM_tst)
3d388997
PB
12126 narrow = TRUE;
12127 else if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 12128 narrow = !in_it_block ();
3d388997 12129 else
e07e6e58 12130 narrow = in_it_block ();
3d388997 12131
c19d1205 12132 if (!inst.operands[1].isreg)
b99bd4ef 12133 {
c19d1205
ZW
12134 /* For an immediate, we always generate a 32-bit opcode;
12135 section relaxation will shrink it later if possible. */
12136 if (inst.instruction < 0xffff)
12137 inst.instruction = THUMB_OP32 (inst.instruction);
12138 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 12139 inst.instruction |= Rn << r0off;
c19d1205 12140 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 12141 }
c19d1205 12142 else
b99bd4ef 12143 {
c19d1205 12144 /* See if we can do this with a 16-bit instruction. */
3d388997 12145 if (narrow)
b99bd4ef 12146 {
c19d1205 12147 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12148 inst.instruction |= Rn;
12149 inst.instruction |= Rm << 3;
b99bd4ef 12150 }
c19d1205 12151 else
b99bd4ef 12152 {
c19d1205
ZW
12153 constraint (inst.operands[1].shifted
12154 && inst.operands[1].immisreg,
12155 _("shift must be constant"));
12156 if (inst.instruction < 0xffff)
12157 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 12158 inst.instruction |= Rn << r0off;
c19d1205 12159 encode_thumb32_shifted_operand (1);
b99bd4ef 12160 }
b99bd4ef
NC
12161 }
12162 }
12163 else
12164 {
c19d1205
ZW
12165 constraint (inst.instruction > 0xffff
12166 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
12167 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
12168 _("unshifted register required"));
fdfde340 12169 constraint (Rn > 7 || Rm > 7,
c19d1205 12170 BAD_HIREG);
b99bd4ef 12171
c19d1205 12172 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12173 inst.instruction |= Rn;
12174 inst.instruction |= Rm << 3;
b99bd4ef 12175 }
b99bd4ef
NC
12176}
12177
b05fe5cf 12178static void
c19d1205 12179do_t_mrs (void)
b05fe5cf 12180{
fdfde340 12181 unsigned Rd;
037e8744
JB
12182
12183 if (do_vfp_nsyn_mrs () == SUCCESS)
12184 return;
12185
90ec0d68
MGD
12186 Rd = inst.operands[0].reg;
12187 reject_bad_reg (Rd);
12188 inst.instruction |= Rd << 8;
12189
12190 if (inst.operands[1].isreg)
62b3e311 12191 {
90ec0d68
MGD
12192 unsigned br = inst.operands[1].reg;
12193 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
12194 as_bad (_("bad register for mrs"));
12195
12196 inst.instruction |= br & (0xf << 16);
12197 inst.instruction |= (br & 0x300) >> 4;
12198 inst.instruction |= (br & SPSR_BIT) >> 2;
62b3e311
PB
12199 }
12200 else
12201 {
90ec0d68 12202 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
5f4273c7 12203
d2cd1205 12204 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
1a43faaf
NC
12205 {
12206 /* PR gas/12698: The constraint is only applied for m_profile.
12207 If the user has specified -march=all, we want to ignore it as
12208 we are building for any CPU type, including non-m variants. */
823d2571
TG
12209 bfd_boolean m_profile =
12210 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
1a43faaf
NC
12211 constraint ((flags != 0) && m_profile, _("selected processor does "
12212 "not support requested special purpose register"));
12213 }
90ec0d68 12214 else
d2cd1205
JB
12215 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
12216 devices). */
12217 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
12218 _("'APSR', 'CPSR' or 'SPSR' expected"));
fdfde340 12219
90ec0d68
MGD
12220 inst.instruction |= (flags & SPSR_BIT) >> 2;
12221 inst.instruction |= inst.operands[1].imm & 0xff;
12222 inst.instruction |= 0xf0000;
12223 }
c19d1205 12224}
b05fe5cf 12225
c19d1205
ZW
12226static void
12227do_t_msr (void)
12228{
62b3e311 12229 int flags;
fdfde340 12230 unsigned Rn;
62b3e311 12231
037e8744
JB
12232 if (do_vfp_nsyn_msr () == SUCCESS)
12233 return;
12234
c19d1205
ZW
12235 constraint (!inst.operands[1].isreg,
12236 _("Thumb encoding does not support an immediate here"));
90ec0d68
MGD
12237
12238 if (inst.operands[0].isreg)
12239 flags = (int)(inst.operands[0].reg);
12240 else
12241 flags = inst.operands[0].imm;
12242
d2cd1205 12243 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
62b3e311 12244 {
d2cd1205
JB
12245 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
12246
1a43faaf 12247 /* PR gas/12698: The constraint is only applied for m_profile.
477330fc
RM
12248 If the user has specified -march=all, we want to ignore it as
12249 we are building for any CPU type, including non-m variants. */
823d2571
TG
12250 bfd_boolean m_profile =
12251 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
1a43faaf 12252 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
477330fc
RM
12253 && (bits & ~(PSR_s | PSR_f)) != 0)
12254 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
12255 && bits != PSR_f)) && m_profile,
12256 _("selected processor does not support requested special "
12257 "purpose register"));
62b3e311
PB
12258 }
12259 else
d2cd1205
JB
12260 constraint ((flags & 0xff) != 0, _("selected processor does not support "
12261 "requested special purpose register"));
c921be7d 12262
fdfde340
JM
12263 Rn = inst.operands[1].reg;
12264 reject_bad_reg (Rn);
12265
62b3e311 12266 inst.instruction |= (flags & SPSR_BIT) >> 2;
90ec0d68
MGD
12267 inst.instruction |= (flags & 0xf0000) >> 8;
12268 inst.instruction |= (flags & 0x300) >> 4;
62b3e311 12269 inst.instruction |= (flags & 0xff);
fdfde340 12270 inst.instruction |= Rn << 16;
c19d1205 12271}
b05fe5cf 12272
c19d1205
ZW
12273static void
12274do_t_mul (void)
12275{
17828f45 12276 bfd_boolean narrow;
fdfde340 12277 unsigned Rd, Rn, Rm;
17828f45 12278
c19d1205
ZW
12279 if (!inst.operands[2].present)
12280 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 12281
fdfde340
JM
12282 Rd = inst.operands[0].reg;
12283 Rn = inst.operands[1].reg;
12284 Rm = inst.operands[2].reg;
12285
17828f45 12286 if (unified_syntax)
b05fe5cf 12287 {
17828f45 12288 if (inst.size_req == 4
fdfde340
JM
12289 || (Rd != Rn
12290 && Rd != Rm)
12291 || Rn > 7
12292 || Rm > 7)
17828f45
JM
12293 narrow = FALSE;
12294 else if (inst.instruction == T_MNEM_muls)
e07e6e58 12295 narrow = !in_it_block ();
17828f45 12296 else
e07e6e58 12297 narrow = in_it_block ();
b05fe5cf 12298 }
c19d1205 12299 else
b05fe5cf 12300 {
17828f45 12301 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
fdfde340 12302 constraint (Rn > 7 || Rm > 7,
c19d1205 12303 BAD_HIREG);
17828f45
JM
12304 narrow = TRUE;
12305 }
b05fe5cf 12306
17828f45
JM
12307 if (narrow)
12308 {
12309 /* 16-bit MULS/Conditional MUL. */
c19d1205 12310 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 12311 inst.instruction |= Rd;
b05fe5cf 12312
fdfde340
JM
12313 if (Rd == Rn)
12314 inst.instruction |= Rm << 3;
12315 else if (Rd == Rm)
12316 inst.instruction |= Rn << 3;
c19d1205
ZW
12317 else
12318 constraint (1, _("dest must overlap one source register"));
12319 }
17828f45
JM
12320 else
12321 {
e07e6e58
NC
12322 constraint (inst.instruction != T_MNEM_mul,
12323 _("Thumb-2 MUL must not set flags"));
17828f45
JM
12324 /* 32-bit MUL. */
12325 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12326 inst.instruction |= Rd << 8;
12327 inst.instruction |= Rn << 16;
12328 inst.instruction |= Rm << 0;
12329
12330 reject_bad_reg (Rd);
12331 reject_bad_reg (Rn);
12332 reject_bad_reg (Rm);
17828f45 12333 }
c19d1205 12334}
b05fe5cf 12335
c19d1205
ZW
12336static void
12337do_t_mull (void)
12338{
fdfde340 12339 unsigned RdLo, RdHi, Rn, Rm;
b05fe5cf 12340
fdfde340
JM
12341 RdLo = inst.operands[0].reg;
12342 RdHi = inst.operands[1].reg;
12343 Rn = inst.operands[2].reg;
12344 Rm = inst.operands[3].reg;
12345
12346 reject_bad_reg (RdLo);
12347 reject_bad_reg (RdHi);
12348 reject_bad_reg (Rn);
12349 reject_bad_reg (Rm);
12350
12351 inst.instruction |= RdLo << 12;
12352 inst.instruction |= RdHi << 8;
12353 inst.instruction |= Rn << 16;
12354 inst.instruction |= Rm;
12355
12356 if (RdLo == RdHi)
c19d1205
ZW
12357 as_tsktsk (_("rdhi and rdlo must be different"));
12358}
b05fe5cf 12359
c19d1205
ZW
12360static void
12361do_t_nop (void)
12362{
e07e6e58
NC
12363 set_it_insn_type (NEUTRAL_IT_INSN);
12364
c19d1205
ZW
12365 if (unified_syntax)
12366 {
12367 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 12368 {
c19d1205
ZW
12369 inst.instruction = THUMB_OP32 (inst.instruction);
12370 inst.instruction |= inst.operands[0].imm;
12371 }
12372 else
12373 {
bc2d1808
NC
12374 /* PR9722: Check for Thumb2 availability before
12375 generating a thumb2 nop instruction. */
afa62d5e 12376 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
bc2d1808
NC
12377 {
12378 inst.instruction = THUMB_OP16 (inst.instruction);
12379 inst.instruction |= inst.operands[0].imm << 4;
12380 }
12381 else
12382 inst.instruction = 0x46c0;
c19d1205
ZW
12383 }
12384 }
12385 else
12386 {
12387 constraint (inst.operands[0].present,
12388 _("Thumb does not support NOP with hints"));
12389 inst.instruction = 0x46c0;
12390 }
12391}
b05fe5cf 12392
c19d1205
ZW
12393static void
12394do_t_neg (void)
12395{
12396 if (unified_syntax)
12397 {
3d388997
PB
12398 bfd_boolean narrow;
12399
12400 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 12401 narrow = !in_it_block ();
3d388997 12402 else
e07e6e58 12403 narrow = in_it_block ();
3d388997
PB
12404 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
12405 narrow = FALSE;
12406 if (inst.size_req == 4)
12407 narrow = FALSE;
12408
12409 if (!narrow)
c19d1205
ZW
12410 {
12411 inst.instruction = THUMB_OP32 (inst.instruction);
12412 inst.instruction |= inst.operands[0].reg << 8;
12413 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
12414 }
12415 else
12416 {
c19d1205
ZW
12417 inst.instruction = THUMB_OP16 (inst.instruction);
12418 inst.instruction |= inst.operands[0].reg;
12419 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
12420 }
12421 }
12422 else
12423 {
c19d1205
ZW
12424 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
12425 BAD_HIREG);
12426 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
12427
12428 inst.instruction = THUMB_OP16 (inst.instruction);
12429 inst.instruction |= inst.operands[0].reg;
12430 inst.instruction |= inst.operands[1].reg << 3;
12431 }
12432}
12433
1c444d06
JM
12434static void
12435do_t_orn (void)
12436{
12437 unsigned Rd, Rn;
12438
12439 Rd = inst.operands[0].reg;
12440 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
12441
fdfde340
JM
12442 reject_bad_reg (Rd);
12443 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
12444 reject_bad_reg (Rn);
12445
1c444d06
JM
12446 inst.instruction |= Rd << 8;
12447 inst.instruction |= Rn << 16;
12448
12449 if (!inst.operands[2].isreg)
12450 {
12451 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
12452 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
12453 }
12454 else
12455 {
12456 unsigned Rm;
12457
12458 Rm = inst.operands[2].reg;
fdfde340 12459 reject_bad_reg (Rm);
1c444d06
JM
12460
12461 constraint (inst.operands[2].shifted
12462 && inst.operands[2].immisreg,
12463 _("shift must be constant"));
12464 encode_thumb32_shifted_operand (2);
12465 }
12466}
12467
c19d1205
ZW
12468static void
12469do_t_pkhbt (void)
12470{
fdfde340
JM
12471 unsigned Rd, Rn, Rm;
12472
12473 Rd = inst.operands[0].reg;
12474 Rn = inst.operands[1].reg;
12475 Rm = inst.operands[2].reg;
12476
12477 reject_bad_reg (Rd);
12478 reject_bad_reg (Rn);
12479 reject_bad_reg (Rm);
12480
12481 inst.instruction |= Rd << 8;
12482 inst.instruction |= Rn << 16;
12483 inst.instruction |= Rm;
c19d1205
ZW
12484 if (inst.operands[3].present)
12485 {
12486 unsigned int val = inst.reloc.exp.X_add_number;
12487 constraint (inst.reloc.exp.X_op != O_constant,
12488 _("expression too complex"));
12489 inst.instruction |= (val & 0x1c) << 10;
12490 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 12491 }
c19d1205 12492}
b05fe5cf 12493
c19d1205
ZW
12494static void
12495do_t_pkhtb (void)
12496{
12497 if (!inst.operands[3].present)
1ef52f49
NC
12498 {
12499 unsigned Rtmp;
12500
12501 inst.instruction &= ~0x00000020;
12502
12503 /* PR 10168. Swap the Rm and Rn registers. */
12504 Rtmp = inst.operands[1].reg;
12505 inst.operands[1].reg = inst.operands[2].reg;
12506 inst.operands[2].reg = Rtmp;
12507 }
c19d1205 12508 do_t_pkhbt ();
b05fe5cf
ZW
12509}
12510
c19d1205
ZW
12511static void
12512do_t_pld (void)
12513{
fdfde340
JM
12514 if (inst.operands[0].immisreg)
12515 reject_bad_reg (inst.operands[0].imm);
12516
c19d1205
ZW
12517 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
12518}
b05fe5cf 12519
c19d1205
ZW
12520static void
12521do_t_push_pop (void)
b99bd4ef 12522{
e9f89963 12523 unsigned mask;
5f4273c7 12524
c19d1205
ZW
12525 constraint (inst.operands[0].writeback,
12526 _("push/pop do not support {reglist}^"));
12527 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
12528 _("expression too complex"));
b99bd4ef 12529
e9f89963 12530 mask = inst.operands[0].imm;
d3bfe16e 12531 if (inst.size_req != 4 && (mask & ~0xff) == 0)
3c707909 12532 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
d3bfe16e 12533 else if (inst.size_req != 4
c6025a80 12534 && (mask & ~0xff) == (1U << (inst.instruction == T_MNEM_push
d3bfe16e 12535 ? REG_LR : REG_PC)))
b99bd4ef 12536 {
c19d1205
ZW
12537 inst.instruction = THUMB_OP16 (inst.instruction);
12538 inst.instruction |= THUMB_PP_PC_LR;
3c707909 12539 inst.instruction |= mask & 0xff;
c19d1205
ZW
12540 }
12541 else if (unified_syntax)
12542 {
3c707909 12543 inst.instruction = THUMB_OP32 (inst.instruction);
5f4273c7 12544 encode_thumb2_ldmstm (13, mask, TRUE);
c19d1205
ZW
12545 }
12546 else
12547 {
12548 inst.error = _("invalid register list to push/pop instruction");
12549 return;
12550 }
c19d1205 12551}
b99bd4ef 12552
c19d1205
ZW
12553static void
12554do_t_rbit (void)
12555{
fdfde340
JM
12556 unsigned Rd, Rm;
12557
12558 Rd = inst.operands[0].reg;
12559 Rm = inst.operands[1].reg;
12560
12561 reject_bad_reg (Rd);
12562 reject_bad_reg (Rm);
12563
12564 inst.instruction |= Rd << 8;
12565 inst.instruction |= Rm << 16;
12566 inst.instruction |= Rm;
c19d1205 12567}
b99bd4ef 12568
c19d1205
ZW
12569static void
12570do_t_rev (void)
12571{
fdfde340
JM
12572 unsigned Rd, Rm;
12573
12574 Rd = inst.operands[0].reg;
12575 Rm = inst.operands[1].reg;
12576
12577 reject_bad_reg (Rd);
12578 reject_bad_reg (Rm);
12579
12580 if (Rd <= 7 && Rm <= 7
c19d1205
ZW
12581 && inst.size_req != 4)
12582 {
12583 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12584 inst.instruction |= Rd;
12585 inst.instruction |= Rm << 3;
c19d1205
ZW
12586 }
12587 else if (unified_syntax)
12588 {
12589 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12590 inst.instruction |= Rd << 8;
12591 inst.instruction |= Rm << 16;
12592 inst.instruction |= Rm;
c19d1205
ZW
12593 }
12594 else
12595 inst.error = BAD_HIREG;
12596}
b99bd4ef 12597
1c444d06
JM
12598static void
12599do_t_rrx (void)
12600{
12601 unsigned Rd, Rm;
12602
12603 Rd = inst.operands[0].reg;
12604 Rm = inst.operands[1].reg;
12605
fdfde340
JM
12606 reject_bad_reg (Rd);
12607 reject_bad_reg (Rm);
c921be7d 12608
1c444d06
JM
12609 inst.instruction |= Rd << 8;
12610 inst.instruction |= Rm;
12611}
12612
c19d1205
ZW
12613static void
12614do_t_rsb (void)
12615{
fdfde340 12616 unsigned Rd, Rs;
b99bd4ef 12617
c19d1205
ZW
12618 Rd = inst.operands[0].reg;
12619 Rs = (inst.operands[1].present
12620 ? inst.operands[1].reg /* Rd, Rs, foo */
12621 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 12622
fdfde340
JM
12623 reject_bad_reg (Rd);
12624 reject_bad_reg (Rs);
12625 if (inst.operands[2].isreg)
12626 reject_bad_reg (inst.operands[2].reg);
12627
c19d1205
ZW
12628 inst.instruction |= Rd << 8;
12629 inst.instruction |= Rs << 16;
12630 if (!inst.operands[2].isreg)
12631 {
026d3abb
PB
12632 bfd_boolean narrow;
12633
12634 if ((inst.instruction & 0x00100000) != 0)
e07e6e58 12635 narrow = !in_it_block ();
026d3abb 12636 else
e07e6e58 12637 narrow = in_it_block ();
026d3abb
PB
12638
12639 if (Rd > 7 || Rs > 7)
12640 narrow = FALSE;
12641
12642 if (inst.size_req == 4 || !unified_syntax)
12643 narrow = FALSE;
12644
12645 if (inst.reloc.exp.X_op != O_constant
12646 || inst.reloc.exp.X_add_number != 0)
12647 narrow = FALSE;
12648
12649 /* Turn rsb #0 into 16-bit neg. We should probably do this via
477330fc 12650 relaxation, but it doesn't seem worth the hassle. */
026d3abb
PB
12651 if (narrow)
12652 {
12653 inst.reloc.type = BFD_RELOC_UNUSED;
12654 inst.instruction = THUMB_OP16 (T_MNEM_negs);
12655 inst.instruction |= Rs << 3;
12656 inst.instruction |= Rd;
12657 }
12658 else
12659 {
12660 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
12661 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
12662 }
c19d1205
ZW
12663 }
12664 else
12665 encode_thumb32_shifted_operand (2);
12666}
b99bd4ef 12667
c19d1205
ZW
12668static void
12669do_t_setend (void)
12670{
12e37cbc
MGD
12671 if (warn_on_deprecated
12672 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
5c3696f8 12673 as_tsktsk (_("setend use is deprecated for ARMv8"));
12e37cbc 12674
e07e6e58 12675 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
12676 if (inst.operands[0].imm)
12677 inst.instruction |= 0x8;
12678}
b99bd4ef 12679
c19d1205
ZW
12680static void
12681do_t_shift (void)
12682{
12683 if (!inst.operands[1].present)
12684 inst.operands[1].reg = inst.operands[0].reg;
12685
12686 if (unified_syntax)
12687 {
3d388997
PB
12688 bfd_boolean narrow;
12689 int shift_kind;
12690
12691 switch (inst.instruction)
12692 {
12693 case T_MNEM_asr:
12694 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
12695 case T_MNEM_lsl:
12696 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
12697 case T_MNEM_lsr:
12698 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
12699 case T_MNEM_ror:
12700 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
12701 default: abort ();
12702 }
12703
12704 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 12705 narrow = !in_it_block ();
3d388997 12706 else
e07e6e58 12707 narrow = in_it_block ();
3d388997
PB
12708 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
12709 narrow = FALSE;
12710 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
12711 narrow = FALSE;
12712 if (inst.operands[2].isreg
12713 && (inst.operands[1].reg != inst.operands[0].reg
12714 || inst.operands[2].reg > 7))
12715 narrow = FALSE;
12716 if (inst.size_req == 4)
12717 narrow = FALSE;
12718
fdfde340
JM
12719 reject_bad_reg (inst.operands[0].reg);
12720 reject_bad_reg (inst.operands[1].reg);
c921be7d 12721
3d388997 12722 if (!narrow)
c19d1205
ZW
12723 {
12724 if (inst.operands[2].isreg)
b99bd4ef 12725 {
fdfde340 12726 reject_bad_reg (inst.operands[2].reg);
c19d1205
ZW
12727 inst.instruction = THUMB_OP32 (inst.instruction);
12728 inst.instruction |= inst.operands[0].reg << 8;
12729 inst.instruction |= inst.operands[1].reg << 16;
12730 inst.instruction |= inst.operands[2].reg;
94342ec3
NC
12731
12732 /* PR 12854: Error on extraneous shifts. */
12733 constraint (inst.operands[2].shifted,
12734 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
12735 }
12736 else
12737 {
12738 inst.operands[1].shifted = 1;
3d388997 12739 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
12740 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
12741 ? T_MNEM_movs : T_MNEM_mov);
12742 inst.instruction |= inst.operands[0].reg << 8;
12743 encode_thumb32_shifted_operand (1);
12744 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
12745 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
12746 }
12747 }
12748 else
12749 {
c19d1205 12750 if (inst.operands[2].isreg)
b99bd4ef 12751 {
3d388997 12752 switch (shift_kind)
b99bd4ef 12753 {
3d388997
PB
12754 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
12755 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
12756 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
12757 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 12758 default: abort ();
b99bd4ef 12759 }
5f4273c7 12760
c19d1205
ZW
12761 inst.instruction |= inst.operands[0].reg;
12762 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
12763
12764 /* PR 12854: Error on extraneous shifts. */
12765 constraint (inst.operands[2].shifted,
12766 _("extraneous shift as part of operand to shift insn"));
b99bd4ef
NC
12767 }
12768 else
12769 {
3d388997 12770 switch (shift_kind)
b99bd4ef 12771 {
3d388997
PB
12772 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
12773 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
12774 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 12775 default: abort ();
b99bd4ef 12776 }
c19d1205
ZW
12777 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12778 inst.instruction |= inst.operands[0].reg;
12779 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
12780 }
12781 }
c19d1205
ZW
12782 }
12783 else
12784 {
12785 constraint (inst.operands[0].reg > 7
12786 || inst.operands[1].reg > 7, BAD_HIREG);
12787 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 12788
c19d1205
ZW
12789 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
12790 {
12791 constraint (inst.operands[2].reg > 7, BAD_HIREG);
12792 constraint (inst.operands[0].reg != inst.operands[1].reg,
12793 _("source1 and dest must be same register"));
b99bd4ef 12794
c19d1205
ZW
12795 switch (inst.instruction)
12796 {
12797 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
12798 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
12799 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
12800 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
12801 default: abort ();
12802 }
5f4273c7 12803
c19d1205
ZW
12804 inst.instruction |= inst.operands[0].reg;
12805 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
12806
12807 /* PR 12854: Error on extraneous shifts. */
12808 constraint (inst.operands[2].shifted,
12809 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
12810 }
12811 else
b99bd4ef 12812 {
c19d1205
ZW
12813 switch (inst.instruction)
12814 {
12815 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
12816 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
12817 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
12818 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
12819 default: abort ();
12820 }
12821 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12822 inst.instruction |= inst.operands[0].reg;
12823 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
12824 }
12825 }
b99bd4ef
NC
12826}
12827
12828static void
c19d1205 12829do_t_simd (void)
b99bd4ef 12830{
fdfde340
JM
12831 unsigned Rd, Rn, Rm;
12832
12833 Rd = inst.operands[0].reg;
12834 Rn = inst.operands[1].reg;
12835 Rm = inst.operands[2].reg;
12836
12837 reject_bad_reg (Rd);
12838 reject_bad_reg (Rn);
12839 reject_bad_reg (Rm);
12840
12841 inst.instruction |= Rd << 8;
12842 inst.instruction |= Rn << 16;
12843 inst.instruction |= Rm;
c19d1205 12844}
b99bd4ef 12845
03ee1b7f
NC
12846static void
12847do_t_simd2 (void)
12848{
12849 unsigned Rd, Rn, Rm;
12850
12851 Rd = inst.operands[0].reg;
12852 Rm = inst.operands[1].reg;
12853 Rn = inst.operands[2].reg;
12854
12855 reject_bad_reg (Rd);
12856 reject_bad_reg (Rn);
12857 reject_bad_reg (Rm);
12858
12859 inst.instruction |= Rd << 8;
12860 inst.instruction |= Rn << 16;
12861 inst.instruction |= Rm;
12862}
12863
c19d1205 12864static void
3eb17e6b 12865do_t_smc (void)
c19d1205
ZW
12866{
12867 unsigned int value = inst.reloc.exp.X_add_number;
f4c65163
MGD
12868 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
12869 _("SMC is not permitted on this architecture"));
c19d1205
ZW
12870 constraint (inst.reloc.exp.X_op != O_constant,
12871 _("expression too complex"));
12872 inst.reloc.type = BFD_RELOC_UNUSED;
12873 inst.instruction |= (value & 0xf000) >> 12;
12874 inst.instruction |= (value & 0x0ff0);
12875 inst.instruction |= (value & 0x000f) << 16;
24382199
NC
12876 /* PR gas/15623: SMC instructions must be last in an IT block. */
12877 set_it_insn_type_last ();
c19d1205 12878}
b99bd4ef 12879
90ec0d68
MGD
12880static void
12881do_t_hvc (void)
12882{
12883 unsigned int value = inst.reloc.exp.X_add_number;
12884
12885 inst.reloc.type = BFD_RELOC_UNUSED;
12886 inst.instruction |= (value & 0x0fff);
12887 inst.instruction |= (value & 0xf000) << 4;
12888}
12889
c19d1205 12890static void
3a21c15a 12891do_t_ssat_usat (int bias)
c19d1205 12892{
fdfde340
JM
12893 unsigned Rd, Rn;
12894
12895 Rd = inst.operands[0].reg;
12896 Rn = inst.operands[2].reg;
12897
12898 reject_bad_reg (Rd);
12899 reject_bad_reg (Rn);
12900
12901 inst.instruction |= Rd << 8;
3a21c15a 12902 inst.instruction |= inst.operands[1].imm - bias;
fdfde340 12903 inst.instruction |= Rn << 16;
b99bd4ef 12904
c19d1205 12905 if (inst.operands[3].present)
b99bd4ef 12906 {
3a21c15a
NC
12907 offsetT shift_amount = inst.reloc.exp.X_add_number;
12908
12909 inst.reloc.type = BFD_RELOC_UNUSED;
12910
c19d1205
ZW
12911 constraint (inst.reloc.exp.X_op != O_constant,
12912 _("expression too complex"));
b99bd4ef 12913
3a21c15a 12914 if (shift_amount != 0)
6189168b 12915 {
3a21c15a
NC
12916 constraint (shift_amount > 31,
12917 _("shift expression is too large"));
12918
c19d1205 12919 if (inst.operands[3].shift_kind == SHIFT_ASR)
3a21c15a
NC
12920 inst.instruction |= 0x00200000; /* sh bit. */
12921
12922 inst.instruction |= (shift_amount & 0x1c) << 10;
12923 inst.instruction |= (shift_amount & 0x03) << 6;
6189168b
NC
12924 }
12925 }
b99bd4ef 12926}
c921be7d 12927
3a21c15a
NC
12928static void
12929do_t_ssat (void)
12930{
12931 do_t_ssat_usat (1);
12932}
b99bd4ef 12933
0dd132b6 12934static void
c19d1205 12935do_t_ssat16 (void)
0dd132b6 12936{
fdfde340
JM
12937 unsigned Rd, Rn;
12938
12939 Rd = inst.operands[0].reg;
12940 Rn = inst.operands[2].reg;
12941
12942 reject_bad_reg (Rd);
12943 reject_bad_reg (Rn);
12944
12945 inst.instruction |= Rd << 8;
c19d1205 12946 inst.instruction |= inst.operands[1].imm - 1;
fdfde340 12947 inst.instruction |= Rn << 16;
c19d1205 12948}
0dd132b6 12949
c19d1205
ZW
12950static void
12951do_t_strex (void)
12952{
12953 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
12954 || inst.operands[2].postind || inst.operands[2].writeback
12955 || inst.operands[2].immisreg || inst.operands[2].shifted
12956 || inst.operands[2].negative,
01cfc07f 12957 BAD_ADDR_MODE);
0dd132b6 12958
5be8be5d
DG
12959 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
12960
c19d1205
ZW
12961 inst.instruction |= inst.operands[0].reg << 8;
12962 inst.instruction |= inst.operands[1].reg << 12;
12963 inst.instruction |= inst.operands[2].reg << 16;
12964 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
12965}
12966
b99bd4ef 12967static void
c19d1205 12968do_t_strexd (void)
b99bd4ef 12969{
c19d1205
ZW
12970 if (!inst.operands[2].present)
12971 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 12972
c19d1205
ZW
12973 constraint (inst.operands[0].reg == inst.operands[1].reg
12974 || inst.operands[0].reg == inst.operands[2].reg
f8a8e9d6 12975 || inst.operands[0].reg == inst.operands[3].reg,
c19d1205 12976 BAD_OVERLAP);
b99bd4ef 12977
c19d1205
ZW
12978 inst.instruction |= inst.operands[0].reg;
12979 inst.instruction |= inst.operands[1].reg << 12;
12980 inst.instruction |= inst.operands[2].reg << 8;
12981 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
12982}
12983
12984static void
c19d1205 12985do_t_sxtah (void)
b99bd4ef 12986{
fdfde340
JM
12987 unsigned Rd, Rn, Rm;
12988
12989 Rd = inst.operands[0].reg;
12990 Rn = inst.operands[1].reg;
12991 Rm = inst.operands[2].reg;
12992
12993 reject_bad_reg (Rd);
12994 reject_bad_reg (Rn);
12995 reject_bad_reg (Rm);
12996
12997 inst.instruction |= Rd << 8;
12998 inst.instruction |= Rn << 16;
12999 inst.instruction |= Rm;
c19d1205
ZW
13000 inst.instruction |= inst.operands[3].imm << 4;
13001}
b99bd4ef 13002
c19d1205
ZW
13003static void
13004do_t_sxth (void)
13005{
fdfde340
JM
13006 unsigned Rd, Rm;
13007
13008 Rd = inst.operands[0].reg;
13009 Rm = inst.operands[1].reg;
13010
13011 reject_bad_reg (Rd);
13012 reject_bad_reg (Rm);
c921be7d
NC
13013
13014 if (inst.instruction <= 0xffff
13015 && inst.size_req != 4
fdfde340 13016 && Rd <= 7 && Rm <= 7
c19d1205 13017 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 13018 {
c19d1205 13019 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
13020 inst.instruction |= Rd;
13021 inst.instruction |= Rm << 3;
b99bd4ef 13022 }
c19d1205 13023 else if (unified_syntax)
b99bd4ef 13024 {
c19d1205
ZW
13025 if (inst.instruction <= 0xffff)
13026 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
13027 inst.instruction |= Rd << 8;
13028 inst.instruction |= Rm;
c19d1205 13029 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 13030 }
c19d1205 13031 else
b99bd4ef 13032 {
c19d1205
ZW
13033 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
13034 _("Thumb encoding does not support rotation"));
13035 constraint (1, BAD_HIREG);
b99bd4ef 13036 }
c19d1205 13037}
b99bd4ef 13038
c19d1205
ZW
13039static void
13040do_t_swi (void)
13041{
b2a5fbdc
MGD
13042 /* We have to do the following check manually as ARM_EXT_OS only applies
13043 to ARM_EXT_V6M. */
13044 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6m))
13045 {
ac7f631b
NC
13046 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_os)
13047 /* This only applies to the v6m howver, not later architectures. */
13048 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7))
b2a5fbdc
MGD
13049 as_bad (_("SVC is not permitted on this architecture"));
13050 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, arm_ext_os);
13051 }
13052
c19d1205
ZW
13053 inst.reloc.type = BFD_RELOC_ARM_SWI;
13054}
b99bd4ef 13055
92e90b6e
PB
13056static void
13057do_t_tb (void)
13058{
fdfde340 13059 unsigned Rn, Rm;
92e90b6e
PB
13060 int half;
13061
13062 half = (inst.instruction & 0x10) != 0;
e07e6e58 13063 set_it_insn_type_last ();
dfa9f0d5
PB
13064 constraint (inst.operands[0].immisreg,
13065 _("instruction requires register index"));
fdfde340
JM
13066
13067 Rn = inst.operands[0].reg;
13068 Rm = inst.operands[0].imm;
c921be7d 13069
fdfde340
JM
13070 constraint (Rn == REG_SP, BAD_SP);
13071 reject_bad_reg (Rm);
13072
92e90b6e
PB
13073 constraint (!half && inst.operands[0].shifted,
13074 _("instruction does not allow shifted index"));
fdfde340 13075 inst.instruction |= (Rn << 16) | Rm;
92e90b6e
PB
13076}
13077
74db7efb
NC
13078static void
13079do_t_udf (void)
13080{
13081 if (!inst.operands[0].present)
13082 inst.operands[0].imm = 0;
13083
13084 if ((unsigned int) inst.operands[0].imm > 255 || inst.size_req == 4)
13085 {
13086 constraint (inst.size_req == 2,
13087 _("immediate value out of range"));
13088 inst.instruction = THUMB_OP32 (inst.instruction);
13089 inst.instruction |= (inst.operands[0].imm & 0xf000u) << 4;
13090 inst.instruction |= (inst.operands[0].imm & 0x0fffu) << 0;
13091 }
13092 else
13093 {
13094 inst.instruction = THUMB_OP16 (inst.instruction);
13095 inst.instruction |= inst.operands[0].imm;
13096 }
13097
13098 set_it_insn_type (NEUTRAL_IT_INSN);
13099}
13100
13101
c19d1205
ZW
13102static void
13103do_t_usat (void)
13104{
3a21c15a 13105 do_t_ssat_usat (0);
b99bd4ef
NC
13106}
13107
13108static void
c19d1205 13109do_t_usat16 (void)
b99bd4ef 13110{
fdfde340
JM
13111 unsigned Rd, Rn;
13112
13113 Rd = inst.operands[0].reg;
13114 Rn = inst.operands[2].reg;
13115
13116 reject_bad_reg (Rd);
13117 reject_bad_reg (Rn);
13118
13119 inst.instruction |= Rd << 8;
c19d1205 13120 inst.instruction |= inst.operands[1].imm;
fdfde340 13121 inst.instruction |= Rn << 16;
b99bd4ef 13122}
c19d1205 13123
5287ad62 13124/* Neon instruction encoder helpers. */
5f4273c7 13125
5287ad62 13126/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 13127
5287ad62
JB
13128/* An "invalid" code for the following tables. */
13129#define N_INV -1u
13130
13131struct neon_tab_entry
b99bd4ef 13132{
5287ad62
JB
13133 unsigned integer;
13134 unsigned float_or_poly;
13135 unsigned scalar_or_imm;
13136};
5f4273c7 13137
5287ad62
JB
13138/* Map overloaded Neon opcodes to their respective encodings. */
13139#define NEON_ENC_TAB \
13140 X(vabd, 0x0000700, 0x1200d00, N_INV), \
13141 X(vmax, 0x0000600, 0x0000f00, N_INV), \
13142 X(vmin, 0x0000610, 0x0200f00, N_INV), \
13143 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
13144 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
13145 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
13146 X(vadd, 0x0000800, 0x0000d00, N_INV), \
13147 X(vsub, 0x1000800, 0x0200d00, N_INV), \
13148 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
13149 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
13150 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
13151 /* Register variants of the following two instructions are encoded as
e07e6e58 13152 vcge / vcgt with the operands reversed. */ \
92559b5b
PB
13153 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
13154 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
62f3b8c8
PB
13155 X(vfma, N_INV, 0x0000c10, N_INV), \
13156 X(vfms, N_INV, 0x0200c10, N_INV), \
5287ad62
JB
13157 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
13158 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
13159 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
13160 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
13161 X(vmlal, 0x0800800, N_INV, 0x0800240), \
13162 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
13163 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
13164 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
13165 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
13166 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
13167 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
d6b4b13e
MW
13168 X(vqrdmlah, 0x3000b10, N_INV, 0x0800e40), \
13169 X(vqrdmlsh, 0x3000c10, N_INV, 0x0800f40), \
5287ad62
JB
13170 X(vshl, 0x0000400, N_INV, 0x0800510), \
13171 X(vqshl, 0x0000410, N_INV, 0x0800710), \
13172 X(vand, 0x0000110, N_INV, 0x0800030), \
13173 X(vbic, 0x0100110, N_INV, 0x0800030), \
13174 X(veor, 0x1000110, N_INV, N_INV), \
13175 X(vorn, 0x0300110, N_INV, 0x0800010), \
13176 X(vorr, 0x0200110, N_INV, 0x0800010), \
13177 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
13178 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
13179 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
13180 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
13181 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
13182 X(vst1, 0x0000000, 0x0800000, N_INV), \
13183 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
13184 X(vst2, 0x0000100, 0x0800100, N_INV), \
13185 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
13186 X(vst3, 0x0000200, 0x0800200, N_INV), \
13187 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
13188 X(vst4, 0x0000300, 0x0800300, N_INV), \
13189 X(vmovn, 0x1b20200, N_INV, N_INV), \
13190 X(vtrn, 0x1b20080, N_INV, N_INV), \
13191 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
13192 X(vqmovun, 0x1b20240, N_INV, N_INV), \
13193 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
e6655fda
PB
13194 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
13195 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
62f3b8c8
PB
13196 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
13197 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
037e8744
JB
13198 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
13199 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
13200 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
33399f07
MGD
13201 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
13202 X(vseleq, 0xe000a00, N_INV, N_INV), \
13203 X(vselvs, 0xe100a00, N_INV, N_INV), \
13204 X(vselge, 0xe200a00, N_INV, N_INV), \
73924fbc
MGD
13205 X(vselgt, 0xe300a00, N_INV, N_INV), \
13206 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
7e8e6784 13207 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
30bdf752
MGD
13208 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
13209 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
91ff7894 13210 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
48adcd8e 13211 X(aes, 0x3b00300, N_INV, N_INV), \
3c9017d2
MGD
13212 X(sha3op, 0x2000c00, N_INV, N_INV), \
13213 X(sha1h, 0x3b902c0, N_INV, N_INV), \
13214 X(sha2op, 0x3ba0380, N_INV, N_INV)
5287ad62
JB
13215
13216enum neon_opc
13217{
13218#define X(OPC,I,F,S) N_MNEM_##OPC
13219NEON_ENC_TAB
13220#undef X
13221};
b99bd4ef 13222
5287ad62
JB
13223static const struct neon_tab_entry neon_enc_tab[] =
13224{
13225#define X(OPC,I,F,S) { (I), (F), (S) }
13226NEON_ENC_TAB
13227#undef X
13228};
b99bd4ef 13229
88714cb8
DG
13230/* Do not use these macros; instead, use NEON_ENCODE defined below. */
13231#define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
13232#define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
13233#define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
13234#define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
13235#define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
13236#define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
13237#define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
13238#define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
13239#define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
13240#define NEON_ENC_SINGLE_(X) \
037e8744 13241 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
88714cb8 13242#define NEON_ENC_DOUBLE_(X) \
037e8744 13243 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
33399f07
MGD
13244#define NEON_ENC_FPV8_(X) \
13245 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
5287ad62 13246
88714cb8
DG
13247#define NEON_ENCODE(type, inst) \
13248 do \
13249 { \
13250 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
13251 inst.is_neon = 1; \
13252 } \
13253 while (0)
13254
13255#define check_neon_suffixes \
13256 do \
13257 { \
13258 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
13259 { \
13260 as_bad (_("invalid neon suffix for non neon instruction")); \
13261 return; \
13262 } \
13263 } \
13264 while (0)
13265
037e8744
JB
13266/* Define shapes for instruction operands. The following mnemonic characters
13267 are used in this table:
5287ad62 13268
037e8744 13269 F - VFP S<n> register
5287ad62
JB
13270 D - Neon D<n> register
13271 Q - Neon Q<n> register
13272 I - Immediate
13273 S - Scalar
13274 R - ARM register
13275 L - D<n> register list
5f4273c7 13276
037e8744
JB
13277 This table is used to generate various data:
13278 - enumerations of the form NS_DDR to be used as arguments to
13279 neon_select_shape.
13280 - a table classifying shapes into single, double, quad, mixed.
5f4273c7 13281 - a table used to drive neon_select_shape. */
b99bd4ef 13282
037e8744
JB
13283#define NEON_SHAPE_DEF \
13284 X(3, (D, D, D), DOUBLE), \
13285 X(3, (Q, Q, Q), QUAD), \
13286 X(3, (D, D, I), DOUBLE), \
13287 X(3, (Q, Q, I), QUAD), \
13288 X(3, (D, D, S), DOUBLE), \
13289 X(3, (Q, Q, S), QUAD), \
13290 X(2, (D, D), DOUBLE), \
13291 X(2, (Q, Q), QUAD), \
13292 X(2, (D, S), DOUBLE), \
13293 X(2, (Q, S), QUAD), \
13294 X(2, (D, R), DOUBLE), \
13295 X(2, (Q, R), QUAD), \
13296 X(2, (D, I), DOUBLE), \
13297 X(2, (Q, I), QUAD), \
13298 X(3, (D, L, D), DOUBLE), \
13299 X(2, (D, Q), MIXED), \
13300 X(2, (Q, D), MIXED), \
13301 X(3, (D, Q, I), MIXED), \
13302 X(3, (Q, D, I), MIXED), \
13303 X(3, (Q, D, D), MIXED), \
13304 X(3, (D, Q, Q), MIXED), \
13305 X(3, (Q, Q, D), MIXED), \
13306 X(3, (Q, D, S), MIXED), \
13307 X(3, (D, Q, S), MIXED), \
13308 X(4, (D, D, D, I), DOUBLE), \
13309 X(4, (Q, Q, Q, I), QUAD), \
13310 X(2, (F, F), SINGLE), \
13311 X(3, (F, F, F), SINGLE), \
13312 X(2, (F, I), SINGLE), \
13313 X(2, (F, D), MIXED), \
13314 X(2, (D, F), MIXED), \
13315 X(3, (F, F, I), MIXED), \
13316 X(4, (R, R, F, F), SINGLE), \
13317 X(4, (F, F, R, R), SINGLE), \
13318 X(3, (D, R, R), DOUBLE), \
13319 X(3, (R, R, D), DOUBLE), \
13320 X(2, (S, R), SINGLE), \
13321 X(2, (R, S), SINGLE), \
13322 X(2, (F, R), SINGLE), \
d54af2d0
RL
13323 X(2, (R, F), SINGLE), \
13324/* Half float shape supported so far. */\
13325 X (2, (H, D), MIXED), \
13326 X (2, (D, H), MIXED), \
13327 X (2, (H, F), MIXED), \
13328 X (2, (F, H), MIXED), \
13329 X (2, (H, H), HALF), \
13330 X (2, (H, R), HALF), \
13331 X (2, (R, H), HALF), \
13332 X (2, (H, I), HALF), \
13333 X (3, (H, H, H), HALF), \
13334 X (3, (H, F, I), MIXED), \
13335 X (3, (F, H, I), MIXED)
037e8744
JB
13336
13337#define S2(A,B) NS_##A##B
13338#define S3(A,B,C) NS_##A##B##C
13339#define S4(A,B,C,D) NS_##A##B##C##D
13340
13341#define X(N, L, C) S##N L
13342
5287ad62
JB
13343enum neon_shape
13344{
037e8744
JB
13345 NEON_SHAPE_DEF,
13346 NS_NULL
5287ad62 13347};
b99bd4ef 13348
037e8744
JB
13349#undef X
13350#undef S2
13351#undef S3
13352#undef S4
13353
13354enum neon_shape_class
13355{
d54af2d0 13356 SC_HALF,
037e8744
JB
13357 SC_SINGLE,
13358 SC_DOUBLE,
13359 SC_QUAD,
13360 SC_MIXED
13361};
13362
13363#define X(N, L, C) SC_##C
13364
13365static enum neon_shape_class neon_shape_class[] =
13366{
13367 NEON_SHAPE_DEF
13368};
13369
13370#undef X
13371
13372enum neon_shape_el
13373{
d54af2d0 13374 SE_H,
037e8744
JB
13375 SE_F,
13376 SE_D,
13377 SE_Q,
13378 SE_I,
13379 SE_S,
13380 SE_R,
13381 SE_L
13382};
13383
13384/* Register widths of above. */
13385static unsigned neon_shape_el_size[] =
13386{
d54af2d0 13387 16,
037e8744
JB
13388 32,
13389 64,
13390 128,
13391 0,
13392 32,
13393 32,
13394 0
13395};
13396
13397struct neon_shape_info
13398{
13399 unsigned els;
13400 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
13401};
13402
13403#define S2(A,B) { SE_##A, SE_##B }
13404#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
13405#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
13406
13407#define X(N, L, C) { N, S##N L }
13408
13409static struct neon_shape_info neon_shape_tab[] =
13410{
13411 NEON_SHAPE_DEF
13412};
13413
13414#undef X
13415#undef S2
13416#undef S3
13417#undef S4
13418
5287ad62
JB
13419/* Bit masks used in type checking given instructions.
13420 'N_EQK' means the type must be the same as (or based on in some way) the key
13421 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
13422 set, various other bits can be set as well in order to modify the meaning of
13423 the type constraint. */
13424
13425enum neon_type_mask
13426{
8e79c3df
CM
13427 N_S8 = 0x0000001,
13428 N_S16 = 0x0000002,
13429 N_S32 = 0x0000004,
13430 N_S64 = 0x0000008,
13431 N_U8 = 0x0000010,
13432 N_U16 = 0x0000020,
13433 N_U32 = 0x0000040,
13434 N_U64 = 0x0000080,
13435 N_I8 = 0x0000100,
13436 N_I16 = 0x0000200,
13437 N_I32 = 0x0000400,
13438 N_I64 = 0x0000800,
13439 N_8 = 0x0001000,
13440 N_16 = 0x0002000,
13441 N_32 = 0x0004000,
13442 N_64 = 0x0008000,
13443 N_P8 = 0x0010000,
13444 N_P16 = 0x0020000,
13445 N_F16 = 0x0040000,
13446 N_F32 = 0x0080000,
13447 N_F64 = 0x0100000,
4f51b4bd 13448 N_P64 = 0x0200000,
c921be7d
NC
13449 N_KEY = 0x1000000, /* Key element (main type specifier). */
13450 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
8e79c3df 13451 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
91ff7894 13452 N_UNT = 0x8000000, /* Must be explicitly untyped. */
c921be7d
NC
13453 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
13454 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
13455 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
13456 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
13457 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
13458 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
13459 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
5287ad62 13460 N_UTYP = 0,
4f51b4bd 13461 N_MAX_NONSPECIAL = N_P64
5287ad62
JB
13462};
13463
dcbf9037
JB
13464#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
13465
5287ad62
JB
13466#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
13467#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
13468#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
cc933301
JW
13469#define N_S_32 (N_S8 | N_S16 | N_S32)
13470#define N_F_16_32 (N_F16 | N_F32)
13471#define N_SUF_32 (N_SU_32 | N_F_16_32)
5287ad62 13472#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
cc933301 13473#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F16 | N_F32)
d54af2d0 13474#define N_F_ALL (N_F16 | N_F32 | N_F64)
5287ad62
JB
13475
13476/* Pass this as the first type argument to neon_check_type to ignore types
13477 altogether. */
13478#define N_IGNORE_TYPE (N_KEY | N_EQK)
13479
037e8744
JB
13480/* Select a "shape" for the current instruction (describing register types or
13481 sizes) from a list of alternatives. Return NS_NULL if the current instruction
13482 doesn't fit. For non-polymorphic shapes, checking is usually done as a
13483 function of operand parsing, so this function doesn't need to be called.
13484 Shapes should be listed in order of decreasing length. */
5287ad62
JB
13485
13486static enum neon_shape
037e8744 13487neon_select_shape (enum neon_shape shape, ...)
5287ad62 13488{
037e8744
JB
13489 va_list ap;
13490 enum neon_shape first_shape = shape;
5287ad62
JB
13491
13492 /* Fix missing optional operands. FIXME: we don't know at this point how
13493 many arguments we should have, so this makes the assumption that we have
13494 > 1. This is true of all current Neon opcodes, I think, but may not be
13495 true in the future. */
13496 if (!inst.operands[1].present)
13497 inst.operands[1] = inst.operands[0];
13498
037e8744 13499 va_start (ap, shape);
5f4273c7 13500
21d799b5 13501 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
037e8744
JB
13502 {
13503 unsigned j;
13504 int matches = 1;
13505
13506 for (j = 0; j < neon_shape_tab[shape].els; j++)
477330fc
RM
13507 {
13508 if (!inst.operands[j].present)
13509 {
13510 matches = 0;
13511 break;
13512 }
13513
13514 switch (neon_shape_tab[shape].el[j])
13515 {
d54af2d0
RL
13516 /* If a .f16, .16, .u16, .s16 type specifier is given over
13517 a VFP single precision register operand, it's essentially
13518 means only half of the register is used.
13519
13520 If the type specifier is given after the mnemonics, the
13521 information is stored in inst.vectype. If the type specifier
13522 is given after register operand, the information is stored
13523 in inst.operands[].vectype.
13524
13525 When there is only one type specifier, and all the register
13526 operands are the same type of hardware register, the type
13527 specifier applies to all register operands.
13528
13529 If no type specifier is given, the shape is inferred from
13530 operand information.
13531
13532 for example:
13533 vadd.f16 s0, s1, s2: NS_HHH
13534 vabs.f16 s0, s1: NS_HH
13535 vmov.f16 s0, r1: NS_HR
13536 vmov.f16 r0, s1: NS_RH
13537 vcvt.f16 r0, s1: NS_RH
13538 vcvt.f16.s32 s2, s2, #29: NS_HFI
13539 vcvt.f16.s32 s2, s2: NS_HF
13540 */
13541 case SE_H:
13542 if (!(inst.operands[j].isreg
13543 && inst.operands[j].isvec
13544 && inst.operands[j].issingle
13545 && !inst.operands[j].isquad
13546 && ((inst.vectype.elems == 1
13547 && inst.vectype.el[0].size == 16)
13548 || (inst.vectype.elems > 1
13549 && inst.vectype.el[j].size == 16)
13550 || (inst.vectype.elems == 0
13551 && inst.operands[j].vectype.type != NT_invtype
13552 && inst.operands[j].vectype.size == 16))))
13553 matches = 0;
13554 break;
13555
477330fc
RM
13556 case SE_F:
13557 if (!(inst.operands[j].isreg
13558 && inst.operands[j].isvec
13559 && inst.operands[j].issingle
d54af2d0
RL
13560 && !inst.operands[j].isquad
13561 && ((inst.vectype.elems == 1 && inst.vectype.el[0].size == 32)
13562 || (inst.vectype.elems > 1 && inst.vectype.el[j].size == 32)
13563 || (inst.vectype.elems == 0
13564 && (inst.operands[j].vectype.size == 32
13565 || inst.operands[j].vectype.type == NT_invtype)))))
477330fc
RM
13566 matches = 0;
13567 break;
13568
13569 case SE_D:
13570 if (!(inst.operands[j].isreg
13571 && inst.operands[j].isvec
13572 && !inst.operands[j].isquad
13573 && !inst.operands[j].issingle))
13574 matches = 0;
13575 break;
13576
13577 case SE_R:
13578 if (!(inst.operands[j].isreg
13579 && !inst.operands[j].isvec))
13580 matches = 0;
13581 break;
13582
13583 case SE_Q:
13584 if (!(inst.operands[j].isreg
13585 && inst.operands[j].isvec
13586 && inst.operands[j].isquad
13587 && !inst.operands[j].issingle))
13588 matches = 0;
13589 break;
13590
13591 case SE_I:
13592 if (!(!inst.operands[j].isreg
13593 && !inst.operands[j].isscalar))
13594 matches = 0;
13595 break;
13596
13597 case SE_S:
13598 if (!(!inst.operands[j].isreg
13599 && inst.operands[j].isscalar))
13600 matches = 0;
13601 break;
13602
13603 case SE_L:
13604 break;
13605 }
3fde54a2
JZ
13606 if (!matches)
13607 break;
477330fc 13608 }
ad6cec43
MGD
13609 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
13610 /* We've matched all the entries in the shape table, and we don't
13611 have any left over operands which have not been matched. */
477330fc 13612 break;
037e8744 13613 }
5f4273c7 13614
037e8744 13615 va_end (ap);
5287ad62 13616
037e8744
JB
13617 if (shape == NS_NULL && first_shape != NS_NULL)
13618 first_error (_("invalid instruction shape"));
5287ad62 13619
037e8744
JB
13620 return shape;
13621}
5287ad62 13622
037e8744
JB
13623/* True if SHAPE is predominantly a quadword operation (most of the time, this
13624 means the Q bit should be set). */
13625
13626static int
13627neon_quad (enum neon_shape shape)
13628{
13629 return neon_shape_class[shape] == SC_QUAD;
5287ad62 13630}
037e8744 13631
5287ad62
JB
13632static void
13633neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
477330fc 13634 unsigned *g_size)
5287ad62
JB
13635{
13636 /* Allow modification to be made to types which are constrained to be
13637 based on the key element, based on bits set alongside N_EQK. */
13638 if ((typebits & N_EQK) != 0)
13639 {
13640 if ((typebits & N_HLF) != 0)
13641 *g_size /= 2;
13642 else if ((typebits & N_DBL) != 0)
13643 *g_size *= 2;
13644 if ((typebits & N_SGN) != 0)
13645 *g_type = NT_signed;
13646 else if ((typebits & N_UNS) != 0)
477330fc 13647 *g_type = NT_unsigned;
5287ad62 13648 else if ((typebits & N_INT) != 0)
477330fc 13649 *g_type = NT_integer;
5287ad62 13650 else if ((typebits & N_FLT) != 0)
477330fc 13651 *g_type = NT_float;
dcbf9037 13652 else if ((typebits & N_SIZ) != 0)
477330fc 13653 *g_type = NT_untyped;
5287ad62
JB
13654 }
13655}
5f4273c7 13656
5287ad62
JB
13657/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
13658 operand type, i.e. the single type specified in a Neon instruction when it
13659 is the only one given. */
13660
13661static struct neon_type_el
13662neon_type_promote (struct neon_type_el *key, unsigned thisarg)
13663{
13664 struct neon_type_el dest = *key;
5f4273c7 13665
9c2799c2 13666 gas_assert ((thisarg & N_EQK) != 0);
5f4273c7 13667
5287ad62
JB
13668 neon_modify_type_size (thisarg, &dest.type, &dest.size);
13669
13670 return dest;
13671}
13672
13673/* Convert Neon type and size into compact bitmask representation. */
13674
13675static enum neon_type_mask
13676type_chk_of_el_type (enum neon_el_type type, unsigned size)
13677{
13678 switch (type)
13679 {
13680 case NT_untyped:
13681 switch (size)
477330fc
RM
13682 {
13683 case 8: return N_8;
13684 case 16: return N_16;
13685 case 32: return N_32;
13686 case 64: return N_64;
13687 default: ;
13688 }
5287ad62
JB
13689 break;
13690
13691 case NT_integer:
13692 switch (size)
477330fc
RM
13693 {
13694 case 8: return N_I8;
13695 case 16: return N_I16;
13696 case 32: return N_I32;
13697 case 64: return N_I64;
13698 default: ;
13699 }
5287ad62
JB
13700 break;
13701
13702 case NT_float:
037e8744 13703 switch (size)
477330fc 13704 {
8e79c3df 13705 case 16: return N_F16;
477330fc
RM
13706 case 32: return N_F32;
13707 case 64: return N_F64;
13708 default: ;
13709 }
5287ad62
JB
13710 break;
13711
13712 case NT_poly:
13713 switch (size)
477330fc
RM
13714 {
13715 case 8: return N_P8;
13716 case 16: return N_P16;
4f51b4bd 13717 case 64: return N_P64;
477330fc
RM
13718 default: ;
13719 }
5287ad62
JB
13720 break;
13721
13722 case NT_signed:
13723 switch (size)
477330fc
RM
13724 {
13725 case 8: return N_S8;
13726 case 16: return N_S16;
13727 case 32: return N_S32;
13728 case 64: return N_S64;
13729 default: ;
13730 }
5287ad62
JB
13731 break;
13732
13733 case NT_unsigned:
13734 switch (size)
477330fc
RM
13735 {
13736 case 8: return N_U8;
13737 case 16: return N_U16;
13738 case 32: return N_U32;
13739 case 64: return N_U64;
13740 default: ;
13741 }
5287ad62
JB
13742 break;
13743
13744 default: ;
13745 }
5f4273c7 13746
5287ad62
JB
13747 return N_UTYP;
13748}
13749
13750/* Convert compact Neon bitmask type representation to a type and size. Only
13751 handles the case where a single bit is set in the mask. */
13752
dcbf9037 13753static int
5287ad62 13754el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
477330fc 13755 enum neon_type_mask mask)
5287ad62 13756{
dcbf9037
JB
13757 if ((mask & N_EQK) != 0)
13758 return FAIL;
13759
5287ad62
JB
13760 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
13761 *size = 8;
c70a8987 13762 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16)) != 0)
5287ad62 13763 *size = 16;
dcbf9037 13764 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 13765 *size = 32;
4f51b4bd 13766 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
5287ad62 13767 *size = 64;
dcbf9037
JB
13768 else
13769 return FAIL;
13770
5287ad62
JB
13771 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
13772 *type = NT_signed;
dcbf9037 13773 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 13774 *type = NT_unsigned;
dcbf9037 13775 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 13776 *type = NT_integer;
dcbf9037 13777 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 13778 *type = NT_untyped;
4f51b4bd 13779 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
5287ad62 13780 *type = NT_poly;
d54af2d0 13781 else if ((mask & (N_F_ALL)) != 0)
5287ad62 13782 *type = NT_float;
dcbf9037
JB
13783 else
13784 return FAIL;
5f4273c7 13785
dcbf9037 13786 return SUCCESS;
5287ad62
JB
13787}
13788
13789/* Modify a bitmask of allowed types. This is only needed for type
13790 relaxation. */
13791
13792static unsigned
13793modify_types_allowed (unsigned allowed, unsigned mods)
13794{
13795 unsigned size;
13796 enum neon_el_type type;
13797 unsigned destmask;
13798 int i;
5f4273c7 13799
5287ad62 13800 destmask = 0;
5f4273c7 13801
5287ad62
JB
13802 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
13803 {
21d799b5 13804 if (el_type_of_type_chk (&type, &size,
477330fc
RM
13805 (enum neon_type_mask) (allowed & i)) == SUCCESS)
13806 {
13807 neon_modify_type_size (mods, &type, &size);
13808 destmask |= type_chk_of_el_type (type, size);
13809 }
5287ad62 13810 }
5f4273c7 13811
5287ad62
JB
13812 return destmask;
13813}
13814
13815/* Check type and return type classification.
13816 The manual states (paraphrase): If one datatype is given, it indicates the
13817 type given in:
13818 - the second operand, if there is one
13819 - the operand, if there is no second operand
13820 - the result, if there are no operands.
13821 This isn't quite good enough though, so we use a concept of a "key" datatype
13822 which is set on a per-instruction basis, which is the one which matters when
13823 only one data type is written.
13824 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 13825 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
13826
13827static struct neon_type_el
13828neon_check_type (unsigned els, enum neon_shape ns, ...)
13829{
13830 va_list ap;
13831 unsigned i, pass, key_el = 0;
13832 unsigned types[NEON_MAX_TYPE_ELS];
13833 enum neon_el_type k_type = NT_invtype;
13834 unsigned k_size = -1u;
13835 struct neon_type_el badtype = {NT_invtype, -1};
13836 unsigned key_allowed = 0;
13837
13838 /* Optional registers in Neon instructions are always (not) in operand 1.
13839 Fill in the missing operand here, if it was omitted. */
13840 if (els > 1 && !inst.operands[1].present)
13841 inst.operands[1] = inst.operands[0];
13842
13843 /* Suck up all the varargs. */
13844 va_start (ap, ns);
13845 for (i = 0; i < els; i++)
13846 {
13847 unsigned thisarg = va_arg (ap, unsigned);
13848 if (thisarg == N_IGNORE_TYPE)
477330fc
RM
13849 {
13850 va_end (ap);
13851 return badtype;
13852 }
5287ad62
JB
13853 types[i] = thisarg;
13854 if ((thisarg & N_KEY) != 0)
477330fc 13855 key_el = i;
5287ad62
JB
13856 }
13857 va_end (ap);
13858
dcbf9037
JB
13859 if (inst.vectype.elems > 0)
13860 for (i = 0; i < els; i++)
13861 if (inst.operands[i].vectype.type != NT_invtype)
477330fc
RM
13862 {
13863 first_error (_("types specified in both the mnemonic and operands"));
13864 return badtype;
13865 }
dcbf9037 13866
5287ad62
JB
13867 /* Duplicate inst.vectype elements here as necessary.
13868 FIXME: No idea if this is exactly the same as the ARM assembler,
13869 particularly when an insn takes one register and one non-register
13870 operand. */
13871 if (inst.vectype.elems == 1 && els > 1)
13872 {
13873 unsigned j;
13874 inst.vectype.elems = els;
13875 inst.vectype.el[key_el] = inst.vectype.el[0];
13876 for (j = 0; j < els; j++)
477330fc
RM
13877 if (j != key_el)
13878 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
13879 types[j]);
dcbf9037
JB
13880 }
13881 else if (inst.vectype.elems == 0 && els > 0)
13882 {
13883 unsigned j;
13884 /* No types were given after the mnemonic, so look for types specified
477330fc
RM
13885 after each operand. We allow some flexibility here; as long as the
13886 "key" operand has a type, we can infer the others. */
dcbf9037 13887 for (j = 0; j < els; j++)
477330fc
RM
13888 if (inst.operands[j].vectype.type != NT_invtype)
13889 inst.vectype.el[j] = inst.operands[j].vectype;
dcbf9037
JB
13890
13891 if (inst.operands[key_el].vectype.type != NT_invtype)
477330fc
RM
13892 {
13893 for (j = 0; j < els; j++)
13894 if (inst.operands[j].vectype.type == NT_invtype)
13895 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
13896 types[j]);
13897 }
dcbf9037 13898 else
477330fc
RM
13899 {
13900 first_error (_("operand types can't be inferred"));
13901 return badtype;
13902 }
5287ad62
JB
13903 }
13904 else if (inst.vectype.elems != els)
13905 {
dcbf9037 13906 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
13907 return badtype;
13908 }
13909
13910 for (pass = 0; pass < 2; pass++)
13911 {
13912 for (i = 0; i < els; i++)
477330fc
RM
13913 {
13914 unsigned thisarg = types[i];
13915 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
13916 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
13917 enum neon_el_type g_type = inst.vectype.el[i].type;
13918 unsigned g_size = inst.vectype.el[i].size;
13919
13920 /* Decay more-specific signed & unsigned types to sign-insensitive
5287ad62 13921 integer types if sign-specific variants are unavailable. */
477330fc 13922 if ((g_type == NT_signed || g_type == NT_unsigned)
5287ad62
JB
13923 && (types_allowed & N_SU_ALL) == 0)
13924 g_type = NT_integer;
13925
477330fc 13926 /* If only untyped args are allowed, decay any more specific types to
5287ad62
JB
13927 them. Some instructions only care about signs for some element
13928 sizes, so handle that properly. */
477330fc 13929 if (((types_allowed & N_UNT) == 0)
91ff7894
MGD
13930 && ((g_size == 8 && (types_allowed & N_8) != 0)
13931 || (g_size == 16 && (types_allowed & N_16) != 0)
13932 || (g_size == 32 && (types_allowed & N_32) != 0)
13933 || (g_size == 64 && (types_allowed & N_64) != 0)))
5287ad62
JB
13934 g_type = NT_untyped;
13935
477330fc
RM
13936 if (pass == 0)
13937 {
13938 if ((thisarg & N_KEY) != 0)
13939 {
13940 k_type = g_type;
13941 k_size = g_size;
13942 key_allowed = thisarg & ~N_KEY;
cc933301
JW
13943
13944 /* Check architecture constraint on FP16 extension. */
13945 if (k_size == 16
13946 && k_type == NT_float
13947 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
13948 {
13949 inst.error = _(BAD_FP16);
13950 return badtype;
13951 }
477330fc
RM
13952 }
13953 }
13954 else
13955 {
13956 if ((thisarg & N_VFP) != 0)
13957 {
13958 enum neon_shape_el regshape;
13959 unsigned regwidth, match;
99b253c5
NC
13960
13961 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
13962 if (ns == NS_NULL)
13963 {
13964 first_error (_("invalid instruction shape"));
13965 return badtype;
13966 }
477330fc
RM
13967 regshape = neon_shape_tab[ns].el[i];
13968 regwidth = neon_shape_el_size[regshape];
13969
13970 /* In VFP mode, operands must match register widths. If we
13971 have a key operand, use its width, else use the width of
13972 the current operand. */
13973 if (k_size != -1u)
13974 match = k_size;
13975 else
13976 match = g_size;
13977
9db2f6b4
RL
13978 /* FP16 will use a single precision register. */
13979 if (regwidth == 32 && match == 16)
13980 {
13981 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
13982 match = regwidth;
13983 else
13984 {
13985 inst.error = _(BAD_FP16);
13986 return badtype;
13987 }
13988 }
13989
477330fc
RM
13990 if (regwidth != match)
13991 {
13992 first_error (_("operand size must match register width"));
13993 return badtype;
13994 }
13995 }
13996
13997 if ((thisarg & N_EQK) == 0)
13998 {
13999 unsigned given_type = type_chk_of_el_type (g_type, g_size);
14000
14001 if ((given_type & types_allowed) == 0)
14002 {
14003 first_error (_("bad type in Neon instruction"));
14004 return badtype;
14005 }
14006 }
14007 else
14008 {
14009 enum neon_el_type mod_k_type = k_type;
14010 unsigned mod_k_size = k_size;
14011 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
14012 if (g_type != mod_k_type || g_size != mod_k_size)
14013 {
14014 first_error (_("inconsistent types in Neon instruction"));
14015 return badtype;
14016 }
14017 }
14018 }
14019 }
5287ad62
JB
14020 }
14021
14022 return inst.vectype.el[key_el];
14023}
14024
037e8744 14025/* Neon-style VFP instruction forwarding. */
5287ad62 14026
037e8744
JB
14027/* Thumb VFP instructions have 0xE in the condition field. */
14028
14029static void
14030do_vfp_cond_or_thumb (void)
5287ad62 14031{
88714cb8
DG
14032 inst.is_neon = 1;
14033
5287ad62 14034 if (thumb_mode)
037e8744 14035 inst.instruction |= 0xe0000000;
5287ad62 14036 else
037e8744 14037 inst.instruction |= inst.cond << 28;
5287ad62
JB
14038}
14039
037e8744
JB
14040/* Look up and encode a simple mnemonic, for use as a helper function for the
14041 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
14042 etc. It is assumed that operand parsing has already been done, and that the
14043 operands are in the form expected by the given opcode (this isn't necessarily
14044 the same as the form in which they were parsed, hence some massaging must
14045 take place before this function is called).
14046 Checks current arch version against that in the looked-up opcode. */
5287ad62 14047
037e8744
JB
14048static void
14049do_vfp_nsyn_opcode (const char *opname)
5287ad62 14050{
037e8744 14051 const struct asm_opcode *opcode;
5f4273c7 14052
21d799b5 14053 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
5287ad62 14054
037e8744
JB
14055 if (!opcode)
14056 abort ();
5287ad62 14057
037e8744 14058 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
477330fc
RM
14059 thumb_mode ? *opcode->tvariant : *opcode->avariant),
14060 _(BAD_FPU));
5287ad62 14061
88714cb8
DG
14062 inst.is_neon = 1;
14063
037e8744
JB
14064 if (thumb_mode)
14065 {
14066 inst.instruction = opcode->tvalue;
14067 opcode->tencode ();
14068 }
14069 else
14070 {
14071 inst.instruction = (inst.cond << 28) | opcode->avalue;
14072 opcode->aencode ();
14073 }
14074}
5287ad62
JB
14075
14076static void
037e8744 14077do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 14078{
037e8744
JB
14079 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
14080
9db2f6b4 14081 if (rs == NS_FFF || rs == NS_HHH)
037e8744
JB
14082 {
14083 if (is_add)
477330fc 14084 do_vfp_nsyn_opcode ("fadds");
037e8744 14085 else
477330fc 14086 do_vfp_nsyn_opcode ("fsubs");
9db2f6b4
RL
14087
14088 /* ARMv8.2 fp16 instruction. */
14089 if (rs == NS_HHH)
14090 do_scalar_fp16_v82_encode ();
037e8744
JB
14091 }
14092 else
14093 {
14094 if (is_add)
477330fc 14095 do_vfp_nsyn_opcode ("faddd");
037e8744 14096 else
477330fc 14097 do_vfp_nsyn_opcode ("fsubd");
037e8744
JB
14098 }
14099}
14100
14101/* Check operand types to see if this is a VFP instruction, and if so call
14102 PFN (). */
14103
14104static int
14105try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
14106{
14107 enum neon_shape rs;
14108 struct neon_type_el et;
14109
14110 switch (args)
14111 {
14112 case 2:
9db2f6b4
RL
14113 rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
14114 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
037e8744 14115 break;
5f4273c7 14116
037e8744 14117 case 3:
9db2f6b4
RL
14118 rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
14119 et = neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
14120 N_F_ALL | N_KEY | N_VFP);
037e8744
JB
14121 break;
14122
14123 default:
14124 abort ();
14125 }
14126
14127 if (et.type != NT_invtype)
14128 {
14129 pfn (rs);
14130 return SUCCESS;
14131 }
037e8744 14132
99b253c5 14133 inst.error = NULL;
037e8744
JB
14134 return FAIL;
14135}
14136
14137static void
14138do_vfp_nsyn_mla_mls (enum neon_shape rs)
14139{
14140 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
5f4273c7 14141
9db2f6b4 14142 if (rs == NS_FFF || rs == NS_HHH)
037e8744
JB
14143 {
14144 if (is_mla)
477330fc 14145 do_vfp_nsyn_opcode ("fmacs");
037e8744 14146 else
477330fc 14147 do_vfp_nsyn_opcode ("fnmacs");
9db2f6b4
RL
14148
14149 /* ARMv8.2 fp16 instruction. */
14150 if (rs == NS_HHH)
14151 do_scalar_fp16_v82_encode ();
037e8744
JB
14152 }
14153 else
14154 {
14155 if (is_mla)
477330fc 14156 do_vfp_nsyn_opcode ("fmacd");
037e8744 14157 else
477330fc 14158 do_vfp_nsyn_opcode ("fnmacd");
037e8744
JB
14159 }
14160}
14161
62f3b8c8
PB
14162static void
14163do_vfp_nsyn_fma_fms (enum neon_shape rs)
14164{
14165 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
14166
9db2f6b4 14167 if (rs == NS_FFF || rs == NS_HHH)
62f3b8c8
PB
14168 {
14169 if (is_fma)
477330fc 14170 do_vfp_nsyn_opcode ("ffmas");
62f3b8c8 14171 else
477330fc 14172 do_vfp_nsyn_opcode ("ffnmas");
9db2f6b4
RL
14173
14174 /* ARMv8.2 fp16 instruction. */
14175 if (rs == NS_HHH)
14176 do_scalar_fp16_v82_encode ();
62f3b8c8
PB
14177 }
14178 else
14179 {
14180 if (is_fma)
477330fc 14181 do_vfp_nsyn_opcode ("ffmad");
62f3b8c8 14182 else
477330fc 14183 do_vfp_nsyn_opcode ("ffnmad");
62f3b8c8
PB
14184 }
14185}
14186
037e8744
JB
14187static void
14188do_vfp_nsyn_mul (enum neon_shape rs)
14189{
9db2f6b4
RL
14190 if (rs == NS_FFF || rs == NS_HHH)
14191 {
14192 do_vfp_nsyn_opcode ("fmuls");
14193
14194 /* ARMv8.2 fp16 instruction. */
14195 if (rs == NS_HHH)
14196 do_scalar_fp16_v82_encode ();
14197 }
037e8744
JB
14198 else
14199 do_vfp_nsyn_opcode ("fmuld");
14200}
14201
14202static void
14203do_vfp_nsyn_abs_neg (enum neon_shape rs)
14204{
14205 int is_neg = (inst.instruction & 0x80) != 0;
9db2f6b4 14206 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_VFP | N_KEY);
037e8744 14207
9db2f6b4 14208 if (rs == NS_FF || rs == NS_HH)
037e8744
JB
14209 {
14210 if (is_neg)
477330fc 14211 do_vfp_nsyn_opcode ("fnegs");
037e8744 14212 else
477330fc 14213 do_vfp_nsyn_opcode ("fabss");
9db2f6b4
RL
14214
14215 /* ARMv8.2 fp16 instruction. */
14216 if (rs == NS_HH)
14217 do_scalar_fp16_v82_encode ();
037e8744
JB
14218 }
14219 else
14220 {
14221 if (is_neg)
477330fc 14222 do_vfp_nsyn_opcode ("fnegd");
037e8744 14223 else
477330fc 14224 do_vfp_nsyn_opcode ("fabsd");
037e8744
JB
14225 }
14226}
14227
14228/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
14229 insns belong to Neon, and are handled elsewhere. */
14230
14231static void
14232do_vfp_nsyn_ldm_stm (int is_dbmode)
14233{
14234 int is_ldm = (inst.instruction & (1 << 20)) != 0;
14235 if (is_ldm)
14236 {
14237 if (is_dbmode)
477330fc 14238 do_vfp_nsyn_opcode ("fldmdbs");
037e8744 14239 else
477330fc 14240 do_vfp_nsyn_opcode ("fldmias");
037e8744
JB
14241 }
14242 else
14243 {
14244 if (is_dbmode)
477330fc 14245 do_vfp_nsyn_opcode ("fstmdbs");
037e8744 14246 else
477330fc 14247 do_vfp_nsyn_opcode ("fstmias");
037e8744
JB
14248 }
14249}
14250
037e8744
JB
14251static void
14252do_vfp_nsyn_sqrt (void)
14253{
9db2f6b4
RL
14254 enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
14255 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
5f4273c7 14256
9db2f6b4
RL
14257 if (rs == NS_FF || rs == NS_HH)
14258 {
14259 do_vfp_nsyn_opcode ("fsqrts");
14260
14261 /* ARMv8.2 fp16 instruction. */
14262 if (rs == NS_HH)
14263 do_scalar_fp16_v82_encode ();
14264 }
037e8744
JB
14265 else
14266 do_vfp_nsyn_opcode ("fsqrtd");
14267}
14268
14269static void
14270do_vfp_nsyn_div (void)
14271{
9db2f6b4 14272 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
037e8744 14273 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
9db2f6b4 14274 N_F_ALL | N_KEY | N_VFP);
5f4273c7 14275
9db2f6b4
RL
14276 if (rs == NS_FFF || rs == NS_HHH)
14277 {
14278 do_vfp_nsyn_opcode ("fdivs");
14279
14280 /* ARMv8.2 fp16 instruction. */
14281 if (rs == NS_HHH)
14282 do_scalar_fp16_v82_encode ();
14283 }
037e8744
JB
14284 else
14285 do_vfp_nsyn_opcode ("fdivd");
14286}
14287
14288static void
14289do_vfp_nsyn_nmul (void)
14290{
9db2f6b4 14291 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
037e8744 14292 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
9db2f6b4 14293 N_F_ALL | N_KEY | N_VFP);
5f4273c7 14294
9db2f6b4 14295 if (rs == NS_FFF || rs == NS_HHH)
037e8744 14296 {
88714cb8 14297 NEON_ENCODE (SINGLE, inst);
037e8744 14298 do_vfp_sp_dyadic ();
9db2f6b4
RL
14299
14300 /* ARMv8.2 fp16 instruction. */
14301 if (rs == NS_HHH)
14302 do_scalar_fp16_v82_encode ();
037e8744
JB
14303 }
14304 else
14305 {
88714cb8 14306 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
14307 do_vfp_dp_rd_rn_rm ();
14308 }
14309 do_vfp_cond_or_thumb ();
9db2f6b4 14310
037e8744
JB
14311}
14312
14313static void
14314do_vfp_nsyn_cmp (void)
14315{
9db2f6b4 14316 enum neon_shape rs;
037e8744
JB
14317 if (inst.operands[1].isreg)
14318 {
9db2f6b4
RL
14319 rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
14320 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
5f4273c7 14321
9db2f6b4 14322 if (rs == NS_FF || rs == NS_HH)
477330fc
RM
14323 {
14324 NEON_ENCODE (SINGLE, inst);
14325 do_vfp_sp_monadic ();
14326 }
037e8744 14327 else
477330fc
RM
14328 {
14329 NEON_ENCODE (DOUBLE, inst);
14330 do_vfp_dp_rd_rm ();
14331 }
037e8744
JB
14332 }
14333 else
14334 {
9db2f6b4
RL
14335 rs = neon_select_shape (NS_HI, NS_FI, NS_DI, NS_NULL);
14336 neon_check_type (2, rs, N_F_ALL | N_KEY | N_VFP, N_EQK);
037e8744
JB
14337
14338 switch (inst.instruction & 0x0fffffff)
477330fc
RM
14339 {
14340 case N_MNEM_vcmp:
14341 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
14342 break;
14343 case N_MNEM_vcmpe:
14344 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
14345 break;
14346 default:
14347 abort ();
14348 }
5f4273c7 14349
9db2f6b4 14350 if (rs == NS_FI || rs == NS_HI)
477330fc
RM
14351 {
14352 NEON_ENCODE (SINGLE, inst);
14353 do_vfp_sp_compare_z ();
14354 }
037e8744 14355 else
477330fc
RM
14356 {
14357 NEON_ENCODE (DOUBLE, inst);
14358 do_vfp_dp_rd ();
14359 }
037e8744
JB
14360 }
14361 do_vfp_cond_or_thumb ();
9db2f6b4
RL
14362
14363 /* ARMv8.2 fp16 instruction. */
14364 if (rs == NS_HI || rs == NS_HH)
14365 do_scalar_fp16_v82_encode ();
037e8744
JB
14366}
14367
14368static void
14369nsyn_insert_sp (void)
14370{
14371 inst.operands[1] = inst.operands[0];
14372 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
fdfde340 14373 inst.operands[0].reg = REG_SP;
037e8744
JB
14374 inst.operands[0].isreg = 1;
14375 inst.operands[0].writeback = 1;
14376 inst.operands[0].present = 1;
14377}
14378
14379static void
14380do_vfp_nsyn_push (void)
14381{
14382 nsyn_insert_sp ();
14383 if (inst.operands[1].issingle)
14384 do_vfp_nsyn_opcode ("fstmdbs");
14385 else
14386 do_vfp_nsyn_opcode ("fstmdbd");
14387}
14388
14389static void
14390do_vfp_nsyn_pop (void)
14391{
14392 nsyn_insert_sp ();
14393 if (inst.operands[1].issingle)
22b5b651 14394 do_vfp_nsyn_opcode ("fldmias");
037e8744 14395 else
22b5b651 14396 do_vfp_nsyn_opcode ("fldmiad");
037e8744
JB
14397}
14398
14399/* Fix up Neon data-processing instructions, ORing in the correct bits for
14400 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
14401
88714cb8
DG
14402static void
14403neon_dp_fixup (struct arm_it* insn)
037e8744 14404{
88714cb8
DG
14405 unsigned int i = insn->instruction;
14406 insn->is_neon = 1;
14407
037e8744
JB
14408 if (thumb_mode)
14409 {
14410 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
14411 if (i & (1 << 24))
477330fc 14412 i |= 1 << 28;
5f4273c7 14413
037e8744 14414 i &= ~(1 << 24);
5f4273c7 14415
037e8744
JB
14416 i |= 0xef000000;
14417 }
14418 else
14419 i |= 0xf2000000;
5f4273c7 14420
88714cb8 14421 insn->instruction = i;
037e8744
JB
14422}
14423
14424/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
14425 (0, 1, 2, 3). */
14426
14427static unsigned
14428neon_logbits (unsigned x)
14429{
14430 return ffs (x) - 4;
14431}
14432
14433#define LOW4(R) ((R) & 0xf)
14434#define HI1(R) (((R) >> 4) & 1)
14435
14436/* Encode insns with bit pattern:
14437
14438 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
14439 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
5f4273c7 14440
037e8744
JB
14441 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
14442 different meaning for some instruction. */
14443
14444static void
14445neon_three_same (int isquad, int ubit, int size)
14446{
14447 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14448 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14449 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14450 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14451 inst.instruction |= LOW4 (inst.operands[2].reg);
14452 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
14453 inst.instruction |= (isquad != 0) << 6;
14454 inst.instruction |= (ubit != 0) << 24;
14455 if (size != -1)
14456 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 14457
88714cb8 14458 neon_dp_fixup (&inst);
037e8744
JB
14459}
14460
14461/* Encode instructions of the form:
14462
14463 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
14464 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
14465
14466 Don't write size if SIZE == -1. */
14467
14468static void
14469neon_two_same (int qbit, int ubit, int size)
14470{
14471 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14472 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14473 inst.instruction |= LOW4 (inst.operands[1].reg);
14474 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14475 inst.instruction |= (qbit != 0) << 6;
14476 inst.instruction |= (ubit != 0) << 24;
14477
14478 if (size != -1)
14479 inst.instruction |= neon_logbits (size) << 18;
14480
88714cb8 14481 neon_dp_fixup (&inst);
5287ad62
JB
14482}
14483
14484/* Neon instruction encoders, in approximate order of appearance. */
14485
14486static void
14487do_neon_dyadic_i_su (void)
14488{
037e8744 14489 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14490 struct neon_type_el et = neon_check_type (3, rs,
14491 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 14492 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14493}
14494
14495static void
14496do_neon_dyadic_i64_su (void)
14497{
037e8744 14498 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14499 struct neon_type_el et = neon_check_type (3, rs,
14500 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 14501 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14502}
14503
14504static void
14505neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
477330fc 14506 unsigned immbits)
5287ad62
JB
14507{
14508 unsigned size = et.size >> 3;
14509 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14510 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14511 inst.instruction |= LOW4 (inst.operands[1].reg);
14512 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14513 inst.instruction |= (isquad != 0) << 6;
14514 inst.instruction |= immbits << 16;
14515 inst.instruction |= (size >> 3) << 7;
14516 inst.instruction |= (size & 0x7) << 19;
14517 if (write_ubit)
14518 inst.instruction |= (uval != 0) << 24;
14519
88714cb8 14520 neon_dp_fixup (&inst);
5287ad62
JB
14521}
14522
14523static void
14524do_neon_shl_imm (void)
14525{
14526 if (!inst.operands[2].isreg)
14527 {
037e8744 14528 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 14529 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
cb3b1e65
JB
14530 int imm = inst.operands[2].imm;
14531
14532 constraint (imm < 0 || (unsigned)imm >= et.size,
14533 _("immediate out of range for shift"));
88714cb8 14534 NEON_ENCODE (IMMED, inst);
cb3b1e65 14535 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14536 }
14537 else
14538 {
037e8744 14539 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14540 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14541 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
14542 unsigned int tmp;
14543
14544 /* VSHL/VQSHL 3-register variants have syntax such as:
477330fc
RM
14545 vshl.xx Dd, Dm, Dn
14546 whereas other 3-register operations encoded by neon_three_same have
14547 syntax like:
14548 vadd.xx Dd, Dn, Dm
14549 (i.e. with Dn & Dm reversed). Swap operands[1].reg and operands[2].reg
14550 here. */
627907b7
JB
14551 tmp = inst.operands[2].reg;
14552 inst.operands[2].reg = inst.operands[1].reg;
14553 inst.operands[1].reg = tmp;
88714cb8 14554 NEON_ENCODE (INTEGER, inst);
037e8744 14555 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14556 }
14557}
14558
14559static void
14560do_neon_qshl_imm (void)
14561{
14562 if (!inst.operands[2].isreg)
14563 {
037e8744 14564 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 14565 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
cb3b1e65 14566 int imm = inst.operands[2].imm;
627907b7 14567
cb3b1e65
JB
14568 constraint (imm < 0 || (unsigned)imm >= et.size,
14569 _("immediate out of range for shift"));
88714cb8 14570 NEON_ENCODE (IMMED, inst);
cb3b1e65 14571 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et, imm);
5287ad62
JB
14572 }
14573 else
14574 {
037e8744 14575 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14576 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14577 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
14578 unsigned int tmp;
14579
14580 /* See note in do_neon_shl_imm. */
14581 tmp = inst.operands[2].reg;
14582 inst.operands[2].reg = inst.operands[1].reg;
14583 inst.operands[1].reg = tmp;
88714cb8 14584 NEON_ENCODE (INTEGER, inst);
037e8744 14585 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14586 }
14587}
14588
627907b7
JB
14589static void
14590do_neon_rshl (void)
14591{
14592 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
14593 struct neon_type_el et = neon_check_type (3, rs,
14594 N_EQK, N_EQK, N_SU_ALL | N_KEY);
14595 unsigned int tmp;
14596
14597 tmp = inst.operands[2].reg;
14598 inst.operands[2].reg = inst.operands[1].reg;
14599 inst.operands[1].reg = tmp;
14600 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
14601}
14602
5287ad62
JB
14603static int
14604neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
14605{
036dc3f7
PB
14606 /* Handle .I8 pseudo-instructions. */
14607 if (size == 8)
5287ad62 14608 {
5287ad62 14609 /* Unfortunately, this will make everything apart from zero out-of-range.
477330fc
RM
14610 FIXME is this the intended semantics? There doesn't seem much point in
14611 accepting .I8 if so. */
5287ad62
JB
14612 immediate |= immediate << 8;
14613 size = 16;
036dc3f7
PB
14614 }
14615
14616 if (size >= 32)
14617 {
14618 if (immediate == (immediate & 0x000000ff))
14619 {
14620 *immbits = immediate;
14621 return 0x1;
14622 }
14623 else if (immediate == (immediate & 0x0000ff00))
14624 {
14625 *immbits = immediate >> 8;
14626 return 0x3;
14627 }
14628 else if (immediate == (immediate & 0x00ff0000))
14629 {
14630 *immbits = immediate >> 16;
14631 return 0x5;
14632 }
14633 else if (immediate == (immediate & 0xff000000))
14634 {
14635 *immbits = immediate >> 24;
14636 return 0x7;
14637 }
14638 if ((immediate & 0xffff) != (immediate >> 16))
14639 goto bad_immediate;
14640 immediate &= 0xffff;
5287ad62
JB
14641 }
14642
14643 if (immediate == (immediate & 0x000000ff))
14644 {
14645 *immbits = immediate;
036dc3f7 14646 return 0x9;
5287ad62
JB
14647 }
14648 else if (immediate == (immediate & 0x0000ff00))
14649 {
14650 *immbits = immediate >> 8;
036dc3f7 14651 return 0xb;
5287ad62
JB
14652 }
14653
14654 bad_immediate:
dcbf9037 14655 first_error (_("immediate value out of range"));
5287ad62
JB
14656 return FAIL;
14657}
14658
5287ad62
JB
14659static void
14660do_neon_logic (void)
14661{
14662 if (inst.operands[2].present && inst.operands[2].isreg)
14663 {
037e8744 14664 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14665 neon_check_type (3, rs, N_IGNORE_TYPE);
14666 /* U bit and size field were set as part of the bitmask. */
88714cb8 14667 NEON_ENCODE (INTEGER, inst);
037e8744 14668 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14669 }
14670 else
14671 {
4316f0d2
DG
14672 const int three_ops_form = (inst.operands[2].present
14673 && !inst.operands[2].isreg);
14674 const int immoperand = (three_ops_form ? 2 : 1);
14675 enum neon_shape rs = (three_ops_form
14676 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
14677 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
037e8744 14678 struct neon_type_el et = neon_check_type (2, rs,
477330fc 14679 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
21d799b5 14680 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
5287ad62
JB
14681 unsigned immbits;
14682 int cmode;
5f4273c7 14683
5287ad62 14684 if (et.type == NT_invtype)
477330fc 14685 return;
5f4273c7 14686
4316f0d2
DG
14687 if (three_ops_form)
14688 constraint (inst.operands[0].reg != inst.operands[1].reg,
14689 _("first and second operands shall be the same register"));
14690
88714cb8 14691 NEON_ENCODE (IMMED, inst);
5287ad62 14692
4316f0d2 14693 immbits = inst.operands[immoperand].imm;
036dc3f7
PB
14694 if (et.size == 64)
14695 {
14696 /* .i64 is a pseudo-op, so the immediate must be a repeating
14697 pattern. */
4316f0d2
DG
14698 if (immbits != (inst.operands[immoperand].regisimm ?
14699 inst.operands[immoperand].reg : 0))
036dc3f7
PB
14700 {
14701 /* Set immbits to an invalid constant. */
14702 immbits = 0xdeadbeef;
14703 }
14704 }
14705
5287ad62 14706 switch (opcode)
477330fc
RM
14707 {
14708 case N_MNEM_vbic:
14709 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14710 break;
14711
14712 case N_MNEM_vorr:
14713 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14714 break;
14715
14716 case N_MNEM_vand:
14717 /* Pseudo-instruction for VBIC. */
14718 neon_invert_size (&immbits, 0, et.size);
14719 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14720 break;
14721
14722 case N_MNEM_vorn:
14723 /* Pseudo-instruction for VORR. */
14724 neon_invert_size (&immbits, 0, et.size);
14725 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14726 break;
14727
14728 default:
14729 abort ();
14730 }
5287ad62
JB
14731
14732 if (cmode == FAIL)
477330fc 14733 return;
5287ad62 14734
037e8744 14735 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14736 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14737 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14738 inst.instruction |= cmode << 8;
14739 neon_write_immbits (immbits);
5f4273c7 14740
88714cb8 14741 neon_dp_fixup (&inst);
5287ad62
JB
14742 }
14743}
14744
14745static void
14746do_neon_bitfield (void)
14747{
037e8744 14748 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 14749 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 14750 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14751}
14752
14753static void
dcbf9037 14754neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
477330fc 14755 unsigned destbits)
5287ad62 14756{
037e8744 14757 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 14758 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
477330fc 14759 types | N_KEY);
5287ad62
JB
14760 if (et.type == NT_float)
14761 {
88714cb8 14762 NEON_ENCODE (FLOAT, inst);
cc933301 14763 neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
5287ad62
JB
14764 }
14765 else
14766 {
88714cb8 14767 NEON_ENCODE (INTEGER, inst);
037e8744 14768 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
14769 }
14770}
14771
14772static void
14773do_neon_dyadic_if_su (void)
14774{
dcbf9037 14775 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
14776}
14777
14778static void
14779do_neon_dyadic_if_su_d (void)
14780{
14781 /* This version only allow D registers, but that constraint is enforced during
14782 operand parsing so we don't need to do anything extra here. */
dcbf9037 14783 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
14784}
14785
5287ad62
JB
14786static void
14787do_neon_dyadic_if_i_d (void)
14788{
428e3f1f
PB
14789 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14790 affected if we specify unsigned args. */
14791 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
14792}
14793
037e8744
JB
14794enum vfp_or_neon_is_neon_bits
14795{
14796 NEON_CHECK_CC = 1,
73924fbc
MGD
14797 NEON_CHECK_ARCH = 2,
14798 NEON_CHECK_ARCH8 = 4
037e8744
JB
14799};
14800
14801/* Call this function if an instruction which may have belonged to the VFP or
14802 Neon instruction sets, but turned out to be a Neon instruction (due to the
14803 operand types involved, etc.). We have to check and/or fix-up a couple of
14804 things:
14805
14806 - Make sure the user hasn't attempted to make a Neon instruction
14807 conditional.
14808 - Alter the value in the condition code field if necessary.
14809 - Make sure that the arch supports Neon instructions.
14810
14811 Which of these operations take place depends on bits from enum
14812 vfp_or_neon_is_neon_bits.
14813
14814 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
14815 current instruction's condition is COND_ALWAYS, the condition field is
14816 changed to inst.uncond_value. This is necessary because instructions shared
14817 between VFP and Neon may be conditional for the VFP variants only, and the
14818 unconditional Neon version must have, e.g., 0xF in the condition field. */
14819
14820static int
14821vfp_or_neon_is_neon (unsigned check)
14822{
14823 /* Conditions are always legal in Thumb mode (IT blocks). */
14824 if (!thumb_mode && (check & NEON_CHECK_CC))
14825 {
14826 if (inst.cond != COND_ALWAYS)
477330fc
RM
14827 {
14828 first_error (_(BAD_COND));
14829 return FAIL;
14830 }
037e8744 14831 if (inst.uncond_value != -1)
477330fc 14832 inst.instruction |= inst.uncond_value << 28;
037e8744 14833 }
5f4273c7 14834
037e8744 14835 if ((check & NEON_CHECK_ARCH)
73924fbc
MGD
14836 && !mark_feature_used (&fpu_neon_ext_v1))
14837 {
14838 first_error (_(BAD_FPU));
14839 return FAIL;
14840 }
14841
14842 if ((check & NEON_CHECK_ARCH8)
14843 && !mark_feature_used (&fpu_neon_ext_armv8))
037e8744
JB
14844 {
14845 first_error (_(BAD_FPU));
14846 return FAIL;
14847 }
5f4273c7 14848
037e8744
JB
14849 return SUCCESS;
14850}
14851
5287ad62
JB
14852static void
14853do_neon_addsub_if_i (void)
14854{
037e8744
JB
14855 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
14856 return;
14857
14858 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14859 return;
14860
5287ad62
JB
14861 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14862 affected if we specify unsigned args. */
dcbf9037 14863 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
14864}
14865
14866/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
14867 result to be:
14868 V<op> A,B (A is operand 0, B is operand 2)
14869 to mean:
14870 V<op> A,B,A
14871 not:
14872 V<op> A,B,B
14873 so handle that case specially. */
14874
14875static void
14876neon_exchange_operands (void)
14877{
5287ad62
JB
14878 if (inst.operands[1].present)
14879 {
e1fa0163
NC
14880 void *scratch = xmalloc (sizeof (inst.operands[0]));
14881
5287ad62
JB
14882 /* Swap operands[1] and operands[2]. */
14883 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
14884 inst.operands[1] = inst.operands[2];
14885 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
e1fa0163 14886 free (scratch);
5287ad62
JB
14887 }
14888 else
14889 {
14890 inst.operands[1] = inst.operands[2];
14891 inst.operands[2] = inst.operands[0];
14892 }
14893}
14894
14895static void
14896neon_compare (unsigned regtypes, unsigned immtypes, int invert)
14897{
14898 if (inst.operands[2].isreg)
14899 {
14900 if (invert)
477330fc 14901 neon_exchange_operands ();
dcbf9037 14902 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
14903 }
14904 else
14905 {
037e8744 14906 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037 14907 struct neon_type_el et = neon_check_type (2, rs,
477330fc 14908 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62 14909
88714cb8 14910 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14911 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14912 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14913 inst.instruction |= LOW4 (inst.operands[1].reg);
14914 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14915 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14916 inst.instruction |= (et.type == NT_float) << 10;
14917 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14918
88714cb8 14919 neon_dp_fixup (&inst);
5287ad62
JB
14920 }
14921}
14922
14923static void
14924do_neon_cmp (void)
14925{
cc933301 14926 neon_compare (N_SUF_32, N_S_32 | N_F_16_32, FALSE);
5287ad62
JB
14927}
14928
14929static void
14930do_neon_cmp_inv (void)
14931{
cc933301 14932 neon_compare (N_SUF_32, N_S_32 | N_F_16_32, TRUE);
5287ad62
JB
14933}
14934
14935static void
14936do_neon_ceq (void)
14937{
14938 neon_compare (N_IF_32, N_IF_32, FALSE);
14939}
14940
14941/* For multiply instructions, we have the possibility of 16-bit or 32-bit
14942 scalars, which are encoded in 5 bits, M : Rm.
14943 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
14944 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
14945 index in M. */
14946
14947static unsigned
14948neon_scalar_for_mul (unsigned scalar, unsigned elsize)
14949{
dcbf9037
JB
14950 unsigned regno = NEON_SCALAR_REG (scalar);
14951 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
14952
14953 switch (elsize)
14954 {
14955 case 16:
14956 if (regno > 7 || elno > 3)
477330fc 14957 goto bad_scalar;
5287ad62 14958 return regno | (elno << 3);
5f4273c7 14959
5287ad62
JB
14960 case 32:
14961 if (regno > 15 || elno > 1)
477330fc 14962 goto bad_scalar;
5287ad62
JB
14963 return regno | (elno << 4);
14964
14965 default:
14966 bad_scalar:
dcbf9037 14967 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
14968 }
14969
14970 return 0;
14971}
14972
14973/* Encode multiply / multiply-accumulate scalar instructions. */
14974
14975static void
14976neon_mul_mac (struct neon_type_el et, int ubit)
14977{
dcbf9037
JB
14978 unsigned scalar;
14979
14980 /* Give a more helpful error message if we have an invalid type. */
14981 if (et.type == NT_invtype)
14982 return;
5f4273c7 14983
dcbf9037 14984 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
14985 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14986 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14987 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14988 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14989 inst.instruction |= LOW4 (scalar);
14990 inst.instruction |= HI1 (scalar) << 5;
14991 inst.instruction |= (et.type == NT_float) << 8;
14992 inst.instruction |= neon_logbits (et.size) << 20;
14993 inst.instruction |= (ubit != 0) << 24;
14994
88714cb8 14995 neon_dp_fixup (&inst);
5287ad62
JB
14996}
14997
14998static void
14999do_neon_mac_maybe_scalar (void)
15000{
037e8744
JB
15001 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
15002 return;
15003
15004 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15005 return;
15006
5287ad62
JB
15007 if (inst.operands[2].isscalar)
15008 {
037e8744 15009 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62 15010 struct neon_type_el et = neon_check_type (3, rs,
589a7d88 15011 N_EQK, N_EQK, N_I16 | N_I32 | N_F_16_32 | N_KEY);
88714cb8 15012 NEON_ENCODE (SCALAR, inst);
037e8744 15013 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
15014 }
15015 else
428e3f1f
PB
15016 {
15017 /* The "untyped" case can't happen. Do this to stop the "U" bit being
15018 affected if we specify unsigned args. */
15019 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
15020 }
5287ad62
JB
15021}
15022
62f3b8c8
PB
15023static void
15024do_neon_fmac (void)
15025{
15026 if (try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
15027 return;
15028
15029 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15030 return;
15031
15032 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
15033}
15034
5287ad62
JB
15035static void
15036do_neon_tst (void)
15037{
037e8744 15038 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
15039 struct neon_type_el et = neon_check_type (3, rs,
15040 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 15041 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
15042}
15043
15044/* VMUL with 3 registers allows the P8 type. The scalar version supports the
15045 same types as the MAC equivalents. The polynomial type for this instruction
15046 is encoded the same as the integer type. */
15047
15048static void
15049do_neon_mul (void)
15050{
037e8744
JB
15051 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
15052 return;
15053
15054 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15055 return;
15056
5287ad62
JB
15057 if (inst.operands[2].isscalar)
15058 do_neon_mac_maybe_scalar ();
15059 else
cc933301 15060 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F16 | N_F32 | N_P8, 0);
5287ad62
JB
15061}
15062
15063static void
15064do_neon_qdmulh (void)
15065{
15066 if (inst.operands[2].isscalar)
15067 {
037e8744 15068 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62 15069 struct neon_type_el et = neon_check_type (3, rs,
477330fc 15070 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 15071 NEON_ENCODE (SCALAR, inst);
037e8744 15072 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
15073 }
15074 else
15075 {
037e8744 15076 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 15077 struct neon_type_el et = neon_check_type (3, rs,
477330fc 15078 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 15079 NEON_ENCODE (INTEGER, inst);
5287ad62 15080 /* The U bit (rounding) comes from bit mask. */
037e8744 15081 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
15082 }
15083}
15084
643afb90
MW
15085static void
15086do_neon_qrdmlah (void)
15087{
15088 /* Check we're on the correct architecture. */
15089 if (!mark_feature_used (&fpu_neon_ext_armv8))
15090 inst.error =
15091 _("instruction form not available on this architecture.");
15092 else if (!mark_feature_used (&fpu_neon_ext_v8_1))
15093 {
15094 as_warn (_("this instruction implies use of ARMv8.1 AdvSIMD."));
15095 record_feature_use (&fpu_neon_ext_v8_1);
15096 }
15097
15098 if (inst.operands[2].isscalar)
15099 {
15100 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
15101 struct neon_type_el et = neon_check_type (3, rs,
15102 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
15103 NEON_ENCODE (SCALAR, inst);
15104 neon_mul_mac (et, neon_quad (rs));
15105 }
15106 else
15107 {
15108 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
15109 struct neon_type_el et = neon_check_type (3, rs,
15110 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
15111 NEON_ENCODE (INTEGER, inst);
15112 /* The U bit (rounding) comes from bit mask. */
15113 neon_three_same (neon_quad (rs), 0, et.size);
15114 }
15115}
15116
5287ad62
JB
15117static void
15118do_neon_fcmp_absolute (void)
15119{
037e8744 15120 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
cc933301
JW
15121 struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
15122 N_F_16_32 | N_KEY);
5287ad62 15123 /* Size field comes from bit mask. */
cc933301 15124 neon_three_same (neon_quad (rs), 1, et.size == 16 ? (int) et.size : -1);
5287ad62
JB
15125}
15126
15127static void
15128do_neon_fcmp_absolute_inv (void)
15129{
15130 neon_exchange_operands ();
15131 do_neon_fcmp_absolute ();
15132}
15133
15134static void
15135do_neon_step (void)
15136{
037e8744 15137 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
cc933301
JW
15138 struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
15139 N_F_16_32 | N_KEY);
15140 neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
5287ad62
JB
15141}
15142
15143static void
15144do_neon_abs_neg (void)
15145{
037e8744
JB
15146 enum neon_shape rs;
15147 struct neon_type_el et;
5f4273c7 15148
037e8744
JB
15149 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
15150 return;
15151
15152 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15153 return;
15154
15155 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
cc933301 15156 et = neon_check_type (2, rs, N_EQK, N_S_32 | N_F_16_32 | N_KEY);
5f4273c7 15157
5287ad62
JB
15158 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15159 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15160 inst.instruction |= LOW4 (inst.operands[1].reg);
15161 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 15162 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15163 inst.instruction |= (et.type == NT_float) << 10;
15164 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 15165
88714cb8 15166 neon_dp_fixup (&inst);
5287ad62
JB
15167}
15168
15169static void
15170do_neon_sli (void)
15171{
037e8744 15172 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15173 struct neon_type_el et = neon_check_type (2, rs,
15174 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15175 int imm = inst.operands[2].imm;
15176 constraint (imm < 0 || (unsigned)imm >= et.size,
477330fc 15177 _("immediate out of range for insert"));
037e8744 15178 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
15179}
15180
15181static void
15182do_neon_sri (void)
15183{
037e8744 15184 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15185 struct neon_type_el et = neon_check_type (2, rs,
15186 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15187 int imm = inst.operands[2].imm;
15188 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15189 _("immediate out of range for insert"));
037e8744 15190 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
15191}
15192
15193static void
15194do_neon_qshlu_imm (void)
15195{
037e8744 15196 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15197 struct neon_type_el et = neon_check_type (2, rs,
15198 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
15199 int imm = inst.operands[2].imm;
15200 constraint (imm < 0 || (unsigned)imm >= et.size,
477330fc 15201 _("immediate out of range for shift"));
5287ad62
JB
15202 /* Only encodes the 'U present' variant of the instruction.
15203 In this case, signed types have OP (bit 8) set to 0.
15204 Unsigned types have OP set to 1. */
15205 inst.instruction |= (et.type == NT_unsigned) << 8;
15206 /* The rest of the bits are the same as other immediate shifts. */
037e8744 15207 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
15208}
15209
15210static void
15211do_neon_qmovn (void)
15212{
15213 struct neon_type_el et = neon_check_type (2, NS_DQ,
15214 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
15215 /* Saturating move where operands can be signed or unsigned, and the
15216 destination has the same signedness. */
88714cb8 15217 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15218 if (et.type == NT_unsigned)
15219 inst.instruction |= 0xc0;
15220 else
15221 inst.instruction |= 0x80;
15222 neon_two_same (0, 1, et.size / 2);
15223}
15224
15225static void
15226do_neon_qmovun (void)
15227{
15228 struct neon_type_el et = neon_check_type (2, NS_DQ,
15229 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
15230 /* Saturating move with unsigned results. Operands must be signed. */
88714cb8 15231 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15232 neon_two_same (0, 1, et.size / 2);
15233}
15234
15235static void
15236do_neon_rshift_sat_narrow (void)
15237{
15238 /* FIXME: Types for narrowing. If operands are signed, results can be signed
15239 or unsigned. If operands are unsigned, results must also be unsigned. */
15240 struct neon_type_el et = neon_check_type (2, NS_DQI,
15241 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
15242 int imm = inst.operands[2].imm;
15243 /* This gets the bounds check, size encoding and immediate bits calculation
15244 right. */
15245 et.size /= 2;
5f4273c7 15246
5287ad62
JB
15247 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
15248 VQMOVN.I<size> <Dd>, <Qm>. */
15249 if (imm == 0)
15250 {
15251 inst.operands[2].present = 0;
15252 inst.instruction = N_MNEM_vqmovn;
15253 do_neon_qmovn ();
15254 return;
15255 }
5f4273c7 15256
5287ad62 15257 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15258 _("immediate out of range"));
5287ad62
JB
15259 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
15260}
15261
15262static void
15263do_neon_rshift_sat_narrow_u (void)
15264{
15265 /* FIXME: Types for narrowing. If operands are signed, results can be signed
15266 or unsigned. If operands are unsigned, results must also be unsigned. */
15267 struct neon_type_el et = neon_check_type (2, NS_DQI,
15268 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
15269 int imm = inst.operands[2].imm;
15270 /* This gets the bounds check, size encoding and immediate bits calculation
15271 right. */
15272 et.size /= 2;
15273
15274 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
15275 VQMOVUN.I<size> <Dd>, <Qm>. */
15276 if (imm == 0)
15277 {
15278 inst.operands[2].present = 0;
15279 inst.instruction = N_MNEM_vqmovun;
15280 do_neon_qmovun ();
15281 return;
15282 }
15283
15284 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15285 _("immediate out of range"));
5287ad62
JB
15286 /* FIXME: The manual is kind of unclear about what value U should have in
15287 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
15288 must be 1. */
15289 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
15290}
15291
15292static void
15293do_neon_movn (void)
15294{
15295 struct neon_type_el et = neon_check_type (2, NS_DQ,
15296 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
88714cb8 15297 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15298 neon_two_same (0, 1, et.size / 2);
15299}
15300
15301static void
15302do_neon_rshift_narrow (void)
15303{
15304 struct neon_type_el et = neon_check_type (2, NS_DQI,
15305 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
15306 int imm = inst.operands[2].imm;
15307 /* This gets the bounds check, size encoding and immediate bits calculation
15308 right. */
15309 et.size /= 2;
5f4273c7 15310
5287ad62
JB
15311 /* If immediate is zero then we are a pseudo-instruction for
15312 VMOVN.I<size> <Dd>, <Qm> */
15313 if (imm == 0)
15314 {
15315 inst.operands[2].present = 0;
15316 inst.instruction = N_MNEM_vmovn;
15317 do_neon_movn ();
15318 return;
15319 }
5f4273c7 15320
5287ad62 15321 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15322 _("immediate out of range for narrowing operation"));
5287ad62
JB
15323 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
15324}
15325
15326static void
15327do_neon_shll (void)
15328{
15329 /* FIXME: Type checking when lengthening. */
15330 struct neon_type_el et = neon_check_type (2, NS_QDI,
15331 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
15332 unsigned imm = inst.operands[2].imm;
15333
15334 if (imm == et.size)
15335 {
15336 /* Maximum shift variant. */
88714cb8 15337 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15338 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15339 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15340 inst.instruction |= LOW4 (inst.operands[1].reg);
15341 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15342 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 15343
88714cb8 15344 neon_dp_fixup (&inst);
5287ad62
JB
15345 }
15346 else
15347 {
15348 /* A more-specific type check for non-max versions. */
15349 et = neon_check_type (2, NS_QDI,
477330fc 15350 N_EQK | N_DBL, N_SU_32 | N_KEY);
88714cb8 15351 NEON_ENCODE (IMMED, inst);
5287ad62
JB
15352 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
15353 }
15354}
15355
037e8744 15356/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
15357 the current instruction is. */
15358
6b9a8b67
MGD
15359#define CVT_FLAVOUR_VAR \
15360 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
15361 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
15362 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
15363 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
15364 /* Half-precision conversions. */ \
cc933301
JW
15365 CVT_VAR (s16_f16, N_S16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL) \
15366 CVT_VAR (u16_f16, N_U16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL) \
15367 CVT_VAR (f16_s16, N_F16 | N_KEY, N_S16, whole_reg, NULL, NULL, NULL) \
15368 CVT_VAR (f16_u16, N_F16 | N_KEY, N_U16, whole_reg, NULL, NULL, NULL) \
6b9a8b67
MGD
15369 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
15370 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
9db2f6b4
RL
15371 /* New VCVT instructions introduced by ARMv8.2 fp16 extension. \
15372 Compared with single/double precision variants, only the co-processor \
15373 field is different, so the encoding flow is reused here. */ \
15374 CVT_VAR (f16_s32, N_F16 | N_KEY, N_S32, N_VFP, "fsltos", "fsitos", NULL) \
15375 CVT_VAR (f16_u32, N_F16 | N_KEY, N_U32, N_VFP, "fultos", "fuitos", NULL) \
15376 CVT_VAR (u32_f16, N_U32, N_F16 | N_KEY, N_VFP, "ftouls", "ftouis", "ftouizs")\
15377 CVT_VAR (s32_f16, N_S32, N_F16 | N_KEY, N_VFP, "ftosls", "ftosis", "ftosizs")\
6b9a8b67
MGD
15378 /* VFP instructions. */ \
15379 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
15380 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
15381 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
15382 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
15383 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
15384 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
15385 /* VFP instructions with bitshift. */ \
15386 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
15387 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
15388 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
15389 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
15390 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
15391 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
15392 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
15393 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
15394
15395#define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
15396 neon_cvt_flavour_##C,
15397
15398/* The different types of conversions we can do. */
15399enum neon_cvt_flavour
15400{
15401 CVT_FLAVOUR_VAR
15402 neon_cvt_flavour_invalid,
15403 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
15404};
15405
15406#undef CVT_VAR
15407
15408static enum neon_cvt_flavour
15409get_neon_cvt_flavour (enum neon_shape rs)
5287ad62 15410{
6b9a8b67
MGD
15411#define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
15412 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
15413 if (et.type != NT_invtype) \
15414 { \
15415 inst.error = NULL; \
15416 return (neon_cvt_flavour_##C); \
5287ad62 15417 }
6b9a8b67 15418
5287ad62 15419 struct neon_type_el et;
037e8744 15420 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
477330fc 15421 || rs == NS_FF) ? N_VFP : 0;
037e8744
JB
15422 /* The instruction versions which take an immediate take one register
15423 argument, which is extended to the width of the full register. Thus the
15424 "source" and "destination" registers must have the same width. Hack that
15425 here by making the size equal to the key (wider, in this case) operand. */
15426 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5f4273c7 15427
6b9a8b67
MGD
15428 CVT_FLAVOUR_VAR;
15429
15430 return neon_cvt_flavour_invalid;
5287ad62
JB
15431#undef CVT_VAR
15432}
15433
7e8e6784
MGD
15434enum neon_cvt_mode
15435{
15436 neon_cvt_mode_a,
15437 neon_cvt_mode_n,
15438 neon_cvt_mode_p,
15439 neon_cvt_mode_m,
15440 neon_cvt_mode_z,
30bdf752
MGD
15441 neon_cvt_mode_x,
15442 neon_cvt_mode_r
7e8e6784
MGD
15443};
15444
037e8744
JB
15445/* Neon-syntax VFP conversions. */
15446
5287ad62 15447static void
6b9a8b67 15448do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
5287ad62 15449{
037e8744 15450 const char *opname = 0;
5f4273c7 15451
d54af2d0
RL
15452 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI
15453 || rs == NS_FHI || rs == NS_HFI)
5287ad62 15454 {
037e8744
JB
15455 /* Conversions with immediate bitshift. */
15456 const char *enc[] =
477330fc 15457 {
6b9a8b67
MGD
15458#define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
15459 CVT_FLAVOUR_VAR
15460 NULL
15461#undef CVT_VAR
477330fc 15462 };
037e8744 15463
6b9a8b67 15464 if (flavour < (int) ARRAY_SIZE (enc))
477330fc
RM
15465 {
15466 opname = enc[flavour];
15467 constraint (inst.operands[0].reg != inst.operands[1].reg,
15468 _("operands 0 and 1 must be the same register"));
15469 inst.operands[1] = inst.operands[2];
15470 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
15471 }
5287ad62
JB
15472 }
15473 else
15474 {
037e8744
JB
15475 /* Conversions without bitshift. */
15476 const char *enc[] =
477330fc 15477 {
6b9a8b67
MGD
15478#define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
15479 CVT_FLAVOUR_VAR
15480 NULL
15481#undef CVT_VAR
477330fc 15482 };
037e8744 15483
6b9a8b67 15484 if (flavour < (int) ARRAY_SIZE (enc))
477330fc 15485 opname = enc[flavour];
037e8744
JB
15486 }
15487
15488 if (opname)
15489 do_vfp_nsyn_opcode (opname);
9db2f6b4
RL
15490
15491 /* ARMv8.2 fp16 VCVT instruction. */
15492 if (flavour == neon_cvt_flavour_s32_f16
15493 || flavour == neon_cvt_flavour_u32_f16
15494 || flavour == neon_cvt_flavour_f16_u32
15495 || flavour == neon_cvt_flavour_f16_s32)
15496 do_scalar_fp16_v82_encode ();
037e8744
JB
15497}
15498
15499static void
15500do_vfp_nsyn_cvtz (void)
15501{
d54af2d0 15502 enum neon_shape rs = neon_select_shape (NS_FH, NS_FF, NS_FD, NS_NULL);
6b9a8b67 15503 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744
JB
15504 const char *enc[] =
15505 {
6b9a8b67
MGD
15506#define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
15507 CVT_FLAVOUR_VAR
15508 NULL
15509#undef CVT_VAR
037e8744
JB
15510 };
15511
6b9a8b67 15512 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
037e8744
JB
15513 do_vfp_nsyn_opcode (enc[flavour]);
15514}
f31fef98 15515
037e8744 15516static void
bacebabc 15517do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
7e8e6784
MGD
15518 enum neon_cvt_mode mode)
15519{
15520 int sz, op;
15521 int rm;
15522
a715796b
TG
15523 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
15524 D register operands. */
15525 if (flavour == neon_cvt_flavour_s32_f64
15526 || flavour == neon_cvt_flavour_u32_f64)
15527 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15528 _(BAD_FPU));
15529
9db2f6b4
RL
15530 if (flavour == neon_cvt_flavour_s32_f16
15531 || flavour == neon_cvt_flavour_u32_f16)
15532 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
15533 _(BAD_FP16));
15534
7e8e6784
MGD
15535 set_it_insn_type (OUTSIDE_IT_INSN);
15536
15537 switch (flavour)
15538 {
15539 case neon_cvt_flavour_s32_f64:
15540 sz = 1;
827f64ff 15541 op = 1;
7e8e6784
MGD
15542 break;
15543 case neon_cvt_flavour_s32_f32:
15544 sz = 0;
15545 op = 1;
15546 break;
9db2f6b4
RL
15547 case neon_cvt_flavour_s32_f16:
15548 sz = 0;
15549 op = 1;
15550 break;
7e8e6784
MGD
15551 case neon_cvt_flavour_u32_f64:
15552 sz = 1;
15553 op = 0;
15554 break;
15555 case neon_cvt_flavour_u32_f32:
15556 sz = 0;
15557 op = 0;
15558 break;
9db2f6b4
RL
15559 case neon_cvt_flavour_u32_f16:
15560 sz = 0;
15561 op = 0;
15562 break;
7e8e6784
MGD
15563 default:
15564 first_error (_("invalid instruction shape"));
15565 return;
15566 }
15567
15568 switch (mode)
15569 {
15570 case neon_cvt_mode_a: rm = 0; break;
15571 case neon_cvt_mode_n: rm = 1; break;
15572 case neon_cvt_mode_p: rm = 2; break;
15573 case neon_cvt_mode_m: rm = 3; break;
15574 default: first_error (_("invalid rounding mode")); return;
15575 }
15576
15577 NEON_ENCODE (FPV8, inst);
15578 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
15579 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
15580 inst.instruction |= sz << 8;
9db2f6b4
RL
15581
15582 /* ARMv8.2 fp16 VCVT instruction. */
15583 if (flavour == neon_cvt_flavour_s32_f16
15584 ||flavour == neon_cvt_flavour_u32_f16)
15585 do_scalar_fp16_v82_encode ();
7e8e6784
MGD
15586 inst.instruction |= op << 7;
15587 inst.instruction |= rm << 16;
15588 inst.instruction |= 0xf0000000;
15589 inst.is_neon = TRUE;
15590}
15591
15592static void
15593do_neon_cvt_1 (enum neon_cvt_mode mode)
037e8744
JB
15594{
15595 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
d54af2d0
RL
15596 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ,
15597 NS_FH, NS_HF, NS_FHI, NS_HFI,
15598 NS_NULL);
6b9a8b67 15599 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744 15600
cc933301
JW
15601 if (flavour == neon_cvt_flavour_invalid)
15602 return;
15603
e3e535bc 15604 /* PR11109: Handle round-to-zero for VCVT conversions. */
7e8e6784 15605 if (mode == neon_cvt_mode_z
e3e535bc 15606 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
cc933301
JW
15607 && (flavour == neon_cvt_flavour_s16_f16
15608 || flavour == neon_cvt_flavour_u16_f16
15609 || flavour == neon_cvt_flavour_s32_f32
bacebabc
RM
15610 || flavour == neon_cvt_flavour_u32_f32
15611 || flavour == neon_cvt_flavour_s32_f64
6b9a8b67 15612 || flavour == neon_cvt_flavour_u32_f64)
e3e535bc
NC
15613 && (rs == NS_FD || rs == NS_FF))
15614 {
15615 do_vfp_nsyn_cvtz ();
15616 return;
15617 }
15618
9db2f6b4
RL
15619 /* ARMv8.2 fp16 VCVT conversions. */
15620 if (mode == neon_cvt_mode_z
15621 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16)
15622 && (flavour == neon_cvt_flavour_s32_f16
15623 || flavour == neon_cvt_flavour_u32_f16)
15624 && (rs == NS_FH))
15625 {
15626 do_vfp_nsyn_cvtz ();
15627 do_scalar_fp16_v82_encode ();
15628 return;
15629 }
15630
037e8744 15631 /* VFP rather than Neon conversions. */
6b9a8b67 15632 if (flavour >= neon_cvt_flavour_first_fp)
037e8744 15633 {
7e8e6784
MGD
15634 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
15635 do_vfp_nsyn_cvt (rs, flavour);
15636 else
15637 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
15638
037e8744
JB
15639 return;
15640 }
15641
15642 switch (rs)
15643 {
15644 case NS_DDI:
15645 case NS_QQI:
15646 {
477330fc 15647 unsigned immbits;
cc933301
JW
15648 unsigned enctab[] = {0x0000100, 0x1000100, 0x0, 0x1000000,
15649 0x0000100, 0x1000100, 0x0, 0x1000000};
35997600 15650
477330fc
RM
15651 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15652 return;
037e8744 15653
477330fc
RM
15654 /* Fixed-point conversion with #0 immediate is encoded as an
15655 integer conversion. */
15656 if (inst.operands[2].present && inst.operands[2].imm == 0)
15657 goto int_encode;
477330fc
RM
15658 NEON_ENCODE (IMMED, inst);
15659 if (flavour != neon_cvt_flavour_invalid)
15660 inst.instruction |= enctab[flavour];
15661 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15662 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15663 inst.instruction |= LOW4 (inst.operands[1].reg);
15664 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15665 inst.instruction |= neon_quad (rs) << 6;
15666 inst.instruction |= 1 << 21;
cc933301
JW
15667 if (flavour < neon_cvt_flavour_s16_f16)
15668 {
15669 inst.instruction |= 1 << 21;
15670 immbits = 32 - inst.operands[2].imm;
15671 inst.instruction |= immbits << 16;
15672 }
15673 else
15674 {
15675 inst.instruction |= 3 << 20;
15676 immbits = 16 - inst.operands[2].imm;
15677 inst.instruction |= immbits << 16;
15678 inst.instruction &= ~(1 << 9);
15679 }
477330fc
RM
15680
15681 neon_dp_fixup (&inst);
037e8744
JB
15682 }
15683 break;
15684
15685 case NS_DD:
15686 case NS_QQ:
7e8e6784
MGD
15687 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
15688 {
15689 NEON_ENCODE (FLOAT, inst);
15690 set_it_insn_type (OUTSIDE_IT_INSN);
15691
15692 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
15693 return;
15694
15695 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15696 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15697 inst.instruction |= LOW4 (inst.operands[1].reg);
15698 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15699 inst.instruction |= neon_quad (rs) << 6;
cc933301
JW
15700 inst.instruction |= (flavour == neon_cvt_flavour_u16_f16
15701 || flavour == neon_cvt_flavour_u32_f32) << 7;
7e8e6784 15702 inst.instruction |= mode << 8;
cc933301
JW
15703 if (flavour == neon_cvt_flavour_u16_f16
15704 || flavour == neon_cvt_flavour_s16_f16)
15705 /* Mask off the original size bits and reencode them. */
15706 inst.instruction = ((inst.instruction & 0xfff3ffff) | (1 << 18));
15707
7e8e6784
MGD
15708 if (thumb_mode)
15709 inst.instruction |= 0xfc000000;
15710 else
15711 inst.instruction |= 0xf0000000;
15712 }
15713 else
15714 {
037e8744 15715 int_encode:
7e8e6784 15716 {
cc933301
JW
15717 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080,
15718 0x100, 0x180, 0x0, 0x080};
037e8744 15719
7e8e6784 15720 NEON_ENCODE (INTEGER, inst);
037e8744 15721
7e8e6784
MGD
15722 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15723 return;
037e8744 15724
7e8e6784
MGD
15725 if (flavour != neon_cvt_flavour_invalid)
15726 inst.instruction |= enctab[flavour];
037e8744 15727
7e8e6784
MGD
15728 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15729 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15730 inst.instruction |= LOW4 (inst.operands[1].reg);
15731 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15732 inst.instruction |= neon_quad (rs) << 6;
cc933301
JW
15733 if (flavour >= neon_cvt_flavour_s16_f16
15734 && flavour <= neon_cvt_flavour_f16_u16)
15735 /* Half precision. */
15736 inst.instruction |= 1 << 18;
15737 else
15738 inst.instruction |= 2 << 18;
037e8744 15739
7e8e6784
MGD
15740 neon_dp_fixup (&inst);
15741 }
15742 }
15743 break;
037e8744 15744
8e79c3df
CM
15745 /* Half-precision conversions for Advanced SIMD -- neon. */
15746 case NS_QD:
15747 case NS_DQ:
15748
15749 if ((rs == NS_DQ)
15750 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
15751 {
15752 as_bad (_("operand size must match register width"));
15753 break;
15754 }
15755
15756 if ((rs == NS_QD)
15757 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
15758 {
15759 as_bad (_("operand size must match register width"));
15760 break;
15761 }
15762
15763 if (rs == NS_DQ)
477330fc 15764 inst.instruction = 0x3b60600;
8e79c3df
CM
15765 else
15766 inst.instruction = 0x3b60700;
15767
15768 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15769 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15770 inst.instruction |= LOW4 (inst.operands[1].reg);
15771 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
88714cb8 15772 neon_dp_fixup (&inst);
8e79c3df
CM
15773 break;
15774
037e8744
JB
15775 default:
15776 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
7e8e6784
MGD
15777 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
15778 do_vfp_nsyn_cvt (rs, flavour);
15779 else
15780 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
5287ad62 15781 }
5287ad62
JB
15782}
15783
e3e535bc
NC
15784static void
15785do_neon_cvtr (void)
15786{
7e8e6784 15787 do_neon_cvt_1 (neon_cvt_mode_x);
e3e535bc
NC
15788}
15789
15790static void
15791do_neon_cvt (void)
15792{
7e8e6784
MGD
15793 do_neon_cvt_1 (neon_cvt_mode_z);
15794}
15795
15796static void
15797do_neon_cvta (void)
15798{
15799 do_neon_cvt_1 (neon_cvt_mode_a);
15800}
15801
15802static void
15803do_neon_cvtn (void)
15804{
15805 do_neon_cvt_1 (neon_cvt_mode_n);
15806}
15807
15808static void
15809do_neon_cvtp (void)
15810{
15811 do_neon_cvt_1 (neon_cvt_mode_p);
15812}
15813
15814static void
15815do_neon_cvtm (void)
15816{
15817 do_neon_cvt_1 (neon_cvt_mode_m);
e3e535bc
NC
15818}
15819
8e79c3df 15820static void
c70a8987 15821do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
8e79c3df 15822{
c70a8987
MGD
15823 if (is_double)
15824 mark_feature_used (&fpu_vfp_ext_armv8);
8e79c3df 15825
c70a8987
MGD
15826 encode_arm_vfp_reg (inst.operands[0].reg,
15827 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
15828 encode_arm_vfp_reg (inst.operands[1].reg,
15829 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
15830 inst.instruction |= to ? 0x10000 : 0;
15831 inst.instruction |= t ? 0x80 : 0;
15832 inst.instruction |= is_double ? 0x100 : 0;
15833 do_vfp_cond_or_thumb ();
15834}
8e79c3df 15835
c70a8987
MGD
15836static void
15837do_neon_cvttb_1 (bfd_boolean t)
15838{
d54af2d0
RL
15839 enum neon_shape rs = neon_select_shape (NS_HF, NS_HD, NS_FH, NS_FF, NS_FD,
15840 NS_DF, NS_DH, NS_NULL);
8e79c3df 15841
c70a8987
MGD
15842 if (rs == NS_NULL)
15843 return;
15844 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
15845 {
15846 inst.error = NULL;
15847 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
15848 }
15849 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
15850 {
15851 inst.error = NULL;
15852 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
15853 }
15854 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
15855 {
a715796b
TG
15856 /* The VCVTB and VCVTT instructions with D-register operands
15857 don't work for SP only targets. */
15858 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15859 _(BAD_FPU));
15860
c70a8987
MGD
15861 inst.error = NULL;
15862 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
15863 }
15864 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
15865 {
a715796b
TG
15866 /* The VCVTB and VCVTT instructions with D-register operands
15867 don't work for SP only targets. */
15868 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15869 _(BAD_FPU));
15870
c70a8987
MGD
15871 inst.error = NULL;
15872 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
15873 }
15874 else
15875 return;
15876}
15877
15878static void
15879do_neon_cvtb (void)
15880{
15881 do_neon_cvttb_1 (FALSE);
8e79c3df
CM
15882}
15883
15884
15885static void
15886do_neon_cvtt (void)
15887{
c70a8987 15888 do_neon_cvttb_1 (TRUE);
8e79c3df
CM
15889}
15890
5287ad62
JB
15891static void
15892neon_move_immediate (void)
15893{
037e8744
JB
15894 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
15895 struct neon_type_el et = neon_check_type (2, rs,
15896 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62 15897 unsigned immlo, immhi = 0, immbits;
c96612cc 15898 int op, cmode, float_p;
5287ad62 15899
037e8744 15900 constraint (et.type == NT_invtype,
477330fc 15901 _("operand size must be specified for immediate VMOV"));
037e8744 15902
5287ad62
JB
15903 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
15904 op = (inst.instruction & (1 << 5)) != 0;
15905
15906 immlo = inst.operands[1].imm;
15907 if (inst.operands[1].regisimm)
15908 immhi = inst.operands[1].reg;
15909
15910 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
477330fc 15911 _("immediate has bits set outside the operand size"));
5287ad62 15912
c96612cc
JB
15913 float_p = inst.operands[1].immisfloat;
15914
15915 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
477330fc 15916 et.size, et.type)) == FAIL)
5287ad62
JB
15917 {
15918 /* Invert relevant bits only. */
15919 neon_invert_size (&immlo, &immhi, et.size);
15920 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
477330fc
RM
15921 with one or the other; those cases are caught by
15922 neon_cmode_for_move_imm. */
5287ad62 15923 op = !op;
c96612cc
JB
15924 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
15925 &op, et.size, et.type)) == FAIL)
477330fc
RM
15926 {
15927 first_error (_("immediate out of range"));
15928 return;
15929 }
5287ad62
JB
15930 }
15931
15932 inst.instruction &= ~(1 << 5);
15933 inst.instruction |= op << 5;
15934
15935 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15936 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 15937 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15938 inst.instruction |= cmode << 8;
15939
15940 neon_write_immbits (immbits);
15941}
15942
15943static void
15944do_neon_mvn (void)
15945{
15946 if (inst.operands[1].isreg)
15947 {
037e8744 15948 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5f4273c7 15949
88714cb8 15950 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15951 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15952 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15953 inst.instruction |= LOW4 (inst.operands[1].reg);
15954 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 15955 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15956 }
15957 else
15958 {
88714cb8 15959 NEON_ENCODE (IMMED, inst);
5287ad62
JB
15960 neon_move_immediate ();
15961 }
15962
88714cb8 15963 neon_dp_fixup (&inst);
5287ad62
JB
15964}
15965
15966/* Encode instructions of form:
15967
15968 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
5f4273c7 15969 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
5287ad62
JB
15970
15971static void
15972neon_mixed_length (struct neon_type_el et, unsigned size)
15973{
15974 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15975 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15976 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15977 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15978 inst.instruction |= LOW4 (inst.operands[2].reg);
15979 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15980 inst.instruction |= (et.type == NT_unsigned) << 24;
15981 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 15982
88714cb8 15983 neon_dp_fixup (&inst);
5287ad62
JB
15984}
15985
15986static void
15987do_neon_dyadic_long (void)
15988{
15989 /* FIXME: Type checking for lengthening op. */
15990 struct neon_type_el et = neon_check_type (3, NS_QDD,
15991 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
15992 neon_mixed_length (et, et.size);
15993}
15994
15995static void
15996do_neon_abal (void)
15997{
15998 struct neon_type_el et = neon_check_type (3, NS_QDD,
15999 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
16000 neon_mixed_length (et, et.size);
16001}
16002
16003static void
16004neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
16005{
16006 if (inst.operands[2].isscalar)
16007 {
dcbf9037 16008 struct neon_type_el et = neon_check_type (3, NS_QDS,
477330fc 16009 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
88714cb8 16010 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
16011 neon_mul_mac (et, et.type == NT_unsigned);
16012 }
16013 else
16014 {
16015 struct neon_type_el et = neon_check_type (3, NS_QDD,
477330fc 16016 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
88714cb8 16017 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
16018 neon_mixed_length (et, et.size);
16019 }
16020}
16021
16022static void
16023do_neon_mac_maybe_scalar_long (void)
16024{
16025 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
16026}
16027
16028static void
16029do_neon_dyadic_wide (void)
16030{
16031 struct neon_type_el et = neon_check_type (3, NS_QQD,
16032 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
16033 neon_mixed_length (et, et.size);
16034}
16035
16036static void
16037do_neon_dyadic_narrow (void)
16038{
16039 struct neon_type_el et = neon_check_type (3, NS_QDD,
16040 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
16041 /* Operand sign is unimportant, and the U bit is part of the opcode,
16042 so force the operand type to integer. */
16043 et.type = NT_integer;
5287ad62
JB
16044 neon_mixed_length (et, et.size / 2);
16045}
16046
16047static void
16048do_neon_mul_sat_scalar_long (void)
16049{
16050 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
16051}
16052
16053static void
16054do_neon_vmull (void)
16055{
16056 if (inst.operands[2].isscalar)
16057 do_neon_mac_maybe_scalar_long ();
16058 else
16059 {
16060 struct neon_type_el et = neon_check_type (3, NS_QDD,
477330fc 16061 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
4f51b4bd 16062
5287ad62 16063 if (et.type == NT_poly)
477330fc 16064 NEON_ENCODE (POLY, inst);
5287ad62 16065 else
477330fc 16066 NEON_ENCODE (INTEGER, inst);
4f51b4bd
MGD
16067
16068 /* For polynomial encoding the U bit must be zero, and the size must
16069 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
16070 obviously, as 0b10). */
16071 if (et.size == 64)
16072 {
16073 /* Check we're on the correct architecture. */
16074 if (!mark_feature_used (&fpu_crypto_ext_armv8))
16075 inst.error =
16076 _("Instruction form not available on this architecture.");
16077
16078 et.size = 32;
16079 }
16080
5287ad62
JB
16081 neon_mixed_length (et, et.size);
16082 }
16083}
16084
16085static void
16086do_neon_ext (void)
16087{
037e8744 16088 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
16089 struct neon_type_el et = neon_check_type (3, rs,
16090 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
16091 unsigned imm = (inst.operands[3].imm * et.size) / 8;
35997600
NC
16092
16093 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
16094 _("shift out of range"));
5287ad62
JB
16095 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16096 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16097 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16098 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16099 inst.instruction |= LOW4 (inst.operands[2].reg);
16100 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 16101 inst.instruction |= neon_quad (rs) << 6;
5287ad62 16102 inst.instruction |= imm << 8;
5f4273c7 16103
88714cb8 16104 neon_dp_fixup (&inst);
5287ad62
JB
16105}
16106
16107static void
16108do_neon_rev (void)
16109{
037e8744 16110 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16111 struct neon_type_el et = neon_check_type (2, rs,
16112 N_EQK, N_8 | N_16 | N_32 | N_KEY);
16113 unsigned op = (inst.instruction >> 7) & 3;
16114 /* N (width of reversed regions) is encoded as part of the bitmask. We
16115 extract it here to check the elements to be reversed are smaller.
16116 Otherwise we'd get a reserved instruction. */
16117 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
9c2799c2 16118 gas_assert (elsize != 0);
5287ad62 16119 constraint (et.size >= elsize,
477330fc 16120 _("elements must be smaller than reversal region"));
037e8744 16121 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16122}
16123
16124static void
16125do_neon_dup (void)
16126{
16127 if (inst.operands[1].isscalar)
16128 {
037e8744 16129 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037 16130 struct neon_type_el et = neon_check_type (2, rs,
477330fc 16131 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 16132 unsigned sizebits = et.size >> 3;
dcbf9037 16133 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 16134 int logsize = neon_logbits (et.size);
dcbf9037 16135 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
16136
16137 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
477330fc 16138 return;
037e8744 16139
88714cb8 16140 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
16141 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16142 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16143 inst.instruction |= LOW4 (dm);
16144 inst.instruction |= HI1 (dm) << 5;
037e8744 16145 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
16146 inst.instruction |= x << 17;
16147 inst.instruction |= sizebits << 16;
5f4273c7 16148
88714cb8 16149 neon_dp_fixup (&inst);
5287ad62
JB
16150 }
16151 else
16152 {
037e8744
JB
16153 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
16154 struct neon_type_el et = neon_check_type (2, rs,
477330fc 16155 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62 16156 /* Duplicate ARM register to lanes of vector. */
88714cb8 16157 NEON_ENCODE (ARMREG, inst);
5287ad62 16158 switch (et.size)
477330fc
RM
16159 {
16160 case 8: inst.instruction |= 0x400000; break;
16161 case 16: inst.instruction |= 0x000020; break;
16162 case 32: inst.instruction |= 0x000000; break;
16163 default: break;
16164 }
5287ad62
JB
16165 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
16166 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
16167 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 16168 inst.instruction |= neon_quad (rs) << 21;
5287ad62 16169 /* The encoding for this instruction is identical for the ARM and Thumb
477330fc 16170 variants, except for the condition field. */
037e8744 16171 do_vfp_cond_or_thumb ();
5287ad62
JB
16172 }
16173}
16174
16175/* VMOV has particularly many variations. It can be one of:
16176 0. VMOV<c><q> <Qd>, <Qm>
16177 1. VMOV<c><q> <Dd>, <Dm>
16178 (Register operations, which are VORR with Rm = Rn.)
16179 2. VMOV<c><q>.<dt> <Qd>, #<imm>
16180 3. VMOV<c><q>.<dt> <Dd>, #<imm>
16181 (Immediate loads.)
16182 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
16183 (ARM register to scalar.)
16184 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
16185 (Two ARM registers to vector.)
16186 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
16187 (Scalar to ARM register.)
16188 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
16189 (Vector to two ARM registers.)
037e8744
JB
16190 8. VMOV.F32 <Sd>, <Sm>
16191 9. VMOV.F64 <Dd>, <Dm>
16192 (VFP register moves.)
16193 10. VMOV.F32 <Sd>, #imm
16194 11. VMOV.F64 <Dd>, #imm
16195 (VFP float immediate load.)
16196 12. VMOV <Rd>, <Sm>
16197 (VFP single to ARM reg.)
16198 13. VMOV <Sd>, <Rm>
16199 (ARM reg to VFP single.)
16200 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
16201 (Two ARM regs to two VFP singles.)
16202 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
16203 (Two VFP singles to two ARM regs.)
5f4273c7 16204
037e8744
JB
16205 These cases can be disambiguated using neon_select_shape, except cases 1/9
16206 and 3/11 which depend on the operand type too.
5f4273c7 16207
5287ad62 16208 All the encoded bits are hardcoded by this function.
5f4273c7 16209
b7fc2769
JB
16210 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
16211 Cases 5, 7 may be used with VFPv2 and above.
5f4273c7 16212
5287ad62 16213 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
5f4273c7 16214 can specify a type where it doesn't make sense to, and is ignored). */
5287ad62
JB
16215
16216static void
16217do_neon_mov (void)
16218{
037e8744 16219 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
9db2f6b4
RL
16220 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR,
16221 NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
16222 NS_HR, NS_RH, NS_HI, NS_NULL);
037e8744
JB
16223 struct neon_type_el et;
16224 const char *ldconst = 0;
5287ad62 16225
037e8744 16226 switch (rs)
5287ad62 16227 {
037e8744
JB
16228 case NS_DD: /* case 1/9. */
16229 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
16230 /* It is not an error here if no type is given. */
16231 inst.error = NULL;
16232 if (et.type == NT_float && et.size == 64)
477330fc
RM
16233 {
16234 do_vfp_nsyn_opcode ("fcpyd");
16235 break;
16236 }
037e8744 16237 /* fall through. */
5287ad62 16238
037e8744
JB
16239 case NS_QQ: /* case 0/1. */
16240 {
477330fc
RM
16241 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
16242 return;
16243 /* The architecture manual I have doesn't explicitly state which
16244 value the U bit should have for register->register moves, but
16245 the equivalent VORR instruction has U = 0, so do that. */
16246 inst.instruction = 0x0200110;
16247 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16248 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16249 inst.instruction |= LOW4 (inst.operands[1].reg);
16250 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16251 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16252 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16253 inst.instruction |= neon_quad (rs) << 6;
16254
16255 neon_dp_fixup (&inst);
037e8744
JB
16256 }
16257 break;
5f4273c7 16258
037e8744
JB
16259 case NS_DI: /* case 3/11. */
16260 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
16261 inst.error = NULL;
16262 if (et.type == NT_float && et.size == 64)
477330fc
RM
16263 {
16264 /* case 11 (fconstd). */
16265 ldconst = "fconstd";
16266 goto encode_fconstd;
16267 }
037e8744
JB
16268 /* fall through. */
16269
16270 case NS_QI: /* case 2/3. */
16271 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
477330fc 16272 return;
037e8744
JB
16273 inst.instruction = 0x0800010;
16274 neon_move_immediate ();
88714cb8 16275 neon_dp_fixup (&inst);
5287ad62 16276 break;
5f4273c7 16277
037e8744
JB
16278 case NS_SR: /* case 4. */
16279 {
477330fc
RM
16280 unsigned bcdebits = 0;
16281 int logsize;
16282 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
16283 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
037e8744 16284
05ac0ffb
JB
16285 /* .<size> is optional here, defaulting to .32. */
16286 if (inst.vectype.elems == 0
16287 && inst.operands[0].vectype.type == NT_invtype
16288 && inst.operands[1].vectype.type == NT_invtype)
16289 {
16290 inst.vectype.el[0].type = NT_untyped;
16291 inst.vectype.el[0].size = 32;
16292 inst.vectype.elems = 1;
16293 }
16294
477330fc
RM
16295 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
16296 logsize = neon_logbits (et.size);
16297
16298 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
16299 _(BAD_FPU));
16300 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
16301 && et.size != 32, _(BAD_FPU));
16302 constraint (et.type == NT_invtype, _("bad type for scalar"));
16303 constraint (x >= 64 / et.size, _("scalar index out of range"));
16304
16305 switch (et.size)
16306 {
16307 case 8: bcdebits = 0x8; break;
16308 case 16: bcdebits = 0x1; break;
16309 case 32: bcdebits = 0x0; break;
16310 default: ;
16311 }
16312
16313 bcdebits |= x << logsize;
16314
16315 inst.instruction = 0xe000b10;
16316 do_vfp_cond_or_thumb ();
16317 inst.instruction |= LOW4 (dn) << 16;
16318 inst.instruction |= HI1 (dn) << 7;
16319 inst.instruction |= inst.operands[1].reg << 12;
16320 inst.instruction |= (bcdebits & 3) << 5;
16321 inst.instruction |= (bcdebits >> 2) << 21;
037e8744
JB
16322 }
16323 break;
5f4273c7 16324
037e8744 16325 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 16326 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
477330fc 16327 _(BAD_FPU));
b7fc2769 16328
037e8744
JB
16329 inst.instruction = 0xc400b10;
16330 do_vfp_cond_or_thumb ();
16331 inst.instruction |= LOW4 (inst.operands[0].reg);
16332 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
16333 inst.instruction |= inst.operands[1].reg << 12;
16334 inst.instruction |= inst.operands[2].reg << 16;
16335 break;
5f4273c7 16336
037e8744
JB
16337 case NS_RS: /* case 6. */
16338 {
477330fc
RM
16339 unsigned logsize;
16340 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
16341 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
16342 unsigned abcdebits = 0;
037e8744 16343
05ac0ffb
JB
16344 /* .<dt> is optional here, defaulting to .32. */
16345 if (inst.vectype.elems == 0
16346 && inst.operands[0].vectype.type == NT_invtype
16347 && inst.operands[1].vectype.type == NT_invtype)
16348 {
16349 inst.vectype.el[0].type = NT_untyped;
16350 inst.vectype.el[0].size = 32;
16351 inst.vectype.elems = 1;
16352 }
16353
91d6fa6a
NC
16354 et = neon_check_type (2, NS_NULL,
16355 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
477330fc
RM
16356 logsize = neon_logbits (et.size);
16357
16358 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
16359 _(BAD_FPU));
16360 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
16361 && et.size != 32, _(BAD_FPU));
16362 constraint (et.type == NT_invtype, _("bad type for scalar"));
16363 constraint (x >= 64 / et.size, _("scalar index out of range"));
16364
16365 switch (et.size)
16366 {
16367 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
16368 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
16369 case 32: abcdebits = 0x00; break;
16370 default: ;
16371 }
16372
16373 abcdebits |= x << logsize;
16374 inst.instruction = 0xe100b10;
16375 do_vfp_cond_or_thumb ();
16376 inst.instruction |= LOW4 (dn) << 16;
16377 inst.instruction |= HI1 (dn) << 7;
16378 inst.instruction |= inst.operands[0].reg << 12;
16379 inst.instruction |= (abcdebits & 3) << 5;
16380 inst.instruction |= (abcdebits >> 2) << 21;
037e8744
JB
16381 }
16382 break;
5f4273c7 16383
037e8744
JB
16384 case NS_RRD: /* case 7 (fmrrd). */
16385 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
477330fc 16386 _(BAD_FPU));
037e8744
JB
16387
16388 inst.instruction = 0xc500b10;
16389 do_vfp_cond_or_thumb ();
16390 inst.instruction |= inst.operands[0].reg << 12;
16391 inst.instruction |= inst.operands[1].reg << 16;
16392 inst.instruction |= LOW4 (inst.operands[2].reg);
16393 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16394 break;
5f4273c7 16395
037e8744
JB
16396 case NS_FF: /* case 8 (fcpys). */
16397 do_vfp_nsyn_opcode ("fcpys");
16398 break;
5f4273c7 16399
9db2f6b4 16400 case NS_HI:
037e8744
JB
16401 case NS_FI: /* case 10 (fconsts). */
16402 ldconst = "fconsts";
16403 encode_fconstd:
16404 if (is_quarter_float (inst.operands[1].imm))
477330fc
RM
16405 {
16406 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
16407 do_vfp_nsyn_opcode (ldconst);
9db2f6b4
RL
16408
16409 /* ARMv8.2 fp16 vmov.f16 instruction. */
16410 if (rs == NS_HI)
16411 do_scalar_fp16_v82_encode ();
477330fc 16412 }
5287ad62 16413 else
477330fc 16414 first_error (_("immediate out of range"));
037e8744 16415 break;
5f4273c7 16416
9db2f6b4 16417 case NS_RH:
037e8744
JB
16418 case NS_RF: /* case 12 (fmrs). */
16419 do_vfp_nsyn_opcode ("fmrs");
9db2f6b4
RL
16420 /* ARMv8.2 fp16 vmov.f16 instruction. */
16421 if (rs == NS_RH)
16422 do_scalar_fp16_v82_encode ();
037e8744 16423 break;
5f4273c7 16424
9db2f6b4 16425 case NS_HR:
037e8744
JB
16426 case NS_FR: /* case 13 (fmsr). */
16427 do_vfp_nsyn_opcode ("fmsr");
9db2f6b4
RL
16428 /* ARMv8.2 fp16 vmov.f16 instruction. */
16429 if (rs == NS_HR)
16430 do_scalar_fp16_v82_encode ();
037e8744 16431 break;
5f4273c7 16432
037e8744
JB
16433 /* The encoders for the fmrrs and fmsrr instructions expect three operands
16434 (one of which is a list), but we have parsed four. Do some fiddling to
16435 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
16436 expect. */
16437 case NS_RRFF: /* case 14 (fmrrs). */
16438 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
477330fc 16439 _("VFP registers must be adjacent"));
037e8744
JB
16440 inst.operands[2].imm = 2;
16441 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
16442 do_vfp_nsyn_opcode ("fmrrs");
16443 break;
5f4273c7 16444
037e8744
JB
16445 case NS_FFRR: /* case 15 (fmsrr). */
16446 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
477330fc 16447 _("VFP registers must be adjacent"));
037e8744
JB
16448 inst.operands[1] = inst.operands[2];
16449 inst.operands[2] = inst.operands[3];
16450 inst.operands[0].imm = 2;
16451 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
16452 do_vfp_nsyn_opcode ("fmsrr");
5287ad62 16453 break;
5f4273c7 16454
4c261dff
NC
16455 case NS_NULL:
16456 /* neon_select_shape has determined that the instruction
16457 shape is wrong and has already set the error message. */
16458 break;
16459
5287ad62
JB
16460 default:
16461 abort ();
16462 }
16463}
16464
16465static void
16466do_neon_rshift_round_imm (void)
16467{
037e8744 16468 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
16469 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
16470 int imm = inst.operands[2].imm;
16471
16472 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
16473 if (imm == 0)
16474 {
16475 inst.operands[2].present = 0;
16476 do_neon_mov ();
16477 return;
16478 }
16479
16480 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 16481 _("immediate out of range for shift"));
037e8744 16482 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
477330fc 16483 et.size - imm);
5287ad62
JB
16484}
16485
9db2f6b4
RL
16486static void
16487do_neon_movhf (void)
16488{
16489 enum neon_shape rs = neon_select_shape (NS_HH, NS_NULL);
16490 constraint (rs != NS_HH, _("invalid suffix"));
16491
16492 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
16493 _(BAD_FPU));
16494
16495 do_vfp_sp_monadic ();
16496
16497 inst.is_neon = 1;
16498 inst.instruction |= 0xf0000000;
16499}
16500
5287ad62
JB
16501static void
16502do_neon_movl (void)
16503{
16504 struct neon_type_el et = neon_check_type (2, NS_QD,
16505 N_EQK | N_DBL, N_SU_32 | N_KEY);
16506 unsigned sizebits = et.size >> 3;
16507 inst.instruction |= sizebits << 19;
16508 neon_two_same (0, et.type == NT_unsigned, -1);
16509}
16510
16511static void
16512do_neon_trn (void)
16513{
037e8744 16514 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16515 struct neon_type_el et = neon_check_type (2, rs,
16516 N_EQK, N_8 | N_16 | N_32 | N_KEY);
88714cb8 16517 NEON_ENCODE (INTEGER, inst);
037e8744 16518 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16519}
16520
16521static void
16522do_neon_zip_uzp (void)
16523{
037e8744 16524 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16525 struct neon_type_el et = neon_check_type (2, rs,
16526 N_EQK, N_8 | N_16 | N_32 | N_KEY);
16527 if (rs == NS_DD && et.size == 32)
16528 {
16529 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
16530 inst.instruction = N_MNEM_vtrn;
16531 do_neon_trn ();
16532 return;
16533 }
037e8744 16534 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16535}
16536
16537static void
16538do_neon_sat_abs_neg (void)
16539{
037e8744 16540 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16541 struct neon_type_el et = neon_check_type (2, rs,
16542 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 16543 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16544}
16545
16546static void
16547do_neon_pair_long (void)
16548{
037e8744 16549 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16550 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
16551 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
16552 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 16553 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16554}
16555
16556static void
16557do_neon_recip_est (void)
16558{
037e8744 16559 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62 16560 struct neon_type_el et = neon_check_type (2, rs,
cc933301 16561 N_EQK | N_FLT, N_F_16_32 | N_U32 | N_KEY);
5287ad62 16562 inst.instruction |= (et.type == NT_float) << 8;
037e8744 16563 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16564}
16565
16566static void
16567do_neon_cls (void)
16568{
037e8744 16569 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16570 struct neon_type_el et = neon_check_type (2, rs,
16571 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 16572 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16573}
16574
16575static void
16576do_neon_clz (void)
16577{
037e8744 16578 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16579 struct neon_type_el et = neon_check_type (2, rs,
16580 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 16581 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16582}
16583
16584static void
16585do_neon_cnt (void)
16586{
037e8744 16587 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16588 struct neon_type_el et = neon_check_type (2, rs,
16589 N_EQK | N_INT, N_8 | N_KEY);
037e8744 16590 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16591}
16592
16593static void
16594do_neon_swp (void)
16595{
037e8744
JB
16596 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
16597 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
16598}
16599
16600static void
16601do_neon_tbl_tbx (void)
16602{
16603 unsigned listlenbits;
dcbf9037 16604 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5f4273c7 16605
5287ad62
JB
16606 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
16607 {
dcbf9037 16608 first_error (_("bad list length for table lookup"));
5287ad62
JB
16609 return;
16610 }
5f4273c7 16611
5287ad62
JB
16612 listlenbits = inst.operands[1].imm - 1;
16613 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16614 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16615 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16616 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16617 inst.instruction |= LOW4 (inst.operands[2].reg);
16618 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16619 inst.instruction |= listlenbits << 8;
5f4273c7 16620
88714cb8 16621 neon_dp_fixup (&inst);
5287ad62
JB
16622}
16623
16624static void
16625do_neon_ldm_stm (void)
16626{
16627 /* P, U and L bits are part of bitmask. */
16628 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
16629 unsigned offsetbits = inst.operands[1].imm * 2;
16630
037e8744
JB
16631 if (inst.operands[1].issingle)
16632 {
16633 do_vfp_nsyn_ldm_stm (is_dbmode);
16634 return;
16635 }
16636
5287ad62 16637 constraint (is_dbmode && !inst.operands[0].writeback,
477330fc 16638 _("writeback (!) must be used for VLDMDB and VSTMDB"));
5287ad62
JB
16639
16640 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
477330fc
RM
16641 _("register list must contain at least 1 and at most 16 "
16642 "registers"));
5287ad62
JB
16643
16644 inst.instruction |= inst.operands[0].reg << 16;
16645 inst.instruction |= inst.operands[0].writeback << 21;
16646 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
16647 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
16648
16649 inst.instruction |= offsetbits;
5f4273c7 16650
037e8744 16651 do_vfp_cond_or_thumb ();
5287ad62
JB
16652}
16653
16654static void
16655do_neon_ldr_str (void)
16656{
5287ad62 16657 int is_ldr = (inst.instruction & (1 << 20)) != 0;
5f4273c7 16658
6844b2c2
MGD
16659 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
16660 And is UNPREDICTABLE in thumb mode. */
fa94de6b 16661 if (!is_ldr
6844b2c2 16662 && inst.operands[1].reg == REG_PC
ba86b375 16663 && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode))
6844b2c2 16664 {
94dcf8bf 16665 if (thumb_mode)
6844b2c2 16666 inst.error = _("Use of PC here is UNPREDICTABLE");
94dcf8bf 16667 else if (warn_on_deprecated)
5c3696f8 16668 as_tsktsk (_("Use of PC here is deprecated"));
6844b2c2
MGD
16669 }
16670
037e8744
JB
16671 if (inst.operands[0].issingle)
16672 {
cd2f129f 16673 if (is_ldr)
477330fc 16674 do_vfp_nsyn_opcode ("flds");
cd2f129f 16675 else
477330fc 16676 do_vfp_nsyn_opcode ("fsts");
9db2f6b4
RL
16677
16678 /* ARMv8.2 vldr.16/vstr.16 instruction. */
16679 if (inst.vectype.el[0].size == 16)
16680 do_scalar_fp16_v82_encode ();
5287ad62
JB
16681 }
16682 else
5287ad62 16683 {
cd2f129f 16684 if (is_ldr)
477330fc 16685 do_vfp_nsyn_opcode ("fldd");
5287ad62 16686 else
477330fc 16687 do_vfp_nsyn_opcode ("fstd");
5287ad62 16688 }
5287ad62
JB
16689}
16690
16691/* "interleave" version also handles non-interleaving register VLD1/VST1
16692 instructions. */
16693
16694static void
16695do_neon_ld_st_interleave (void)
16696{
037e8744 16697 struct neon_type_el et = neon_check_type (1, NS_NULL,
477330fc 16698 N_8 | N_16 | N_32 | N_64);
5287ad62
JB
16699 unsigned alignbits = 0;
16700 unsigned idx;
16701 /* The bits in this table go:
16702 0: register stride of one (0) or two (1)
16703 1,2: register list length, minus one (1, 2, 3, 4).
16704 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
16705 We use -1 for invalid entries. */
16706 const int typetable[] =
16707 {
16708 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
16709 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
16710 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
16711 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
16712 };
16713 int typebits;
16714
dcbf9037
JB
16715 if (et.type == NT_invtype)
16716 return;
16717
5287ad62
JB
16718 if (inst.operands[1].immisalign)
16719 switch (inst.operands[1].imm >> 8)
16720 {
16721 case 64: alignbits = 1; break;
16722 case 128:
477330fc 16723 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
e23c0ad8 16724 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
477330fc
RM
16725 goto bad_alignment;
16726 alignbits = 2;
16727 break;
5287ad62 16728 case 256:
477330fc
RM
16729 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
16730 goto bad_alignment;
16731 alignbits = 3;
16732 break;
5287ad62
JB
16733 default:
16734 bad_alignment:
477330fc
RM
16735 first_error (_("bad alignment"));
16736 return;
5287ad62
JB
16737 }
16738
16739 inst.instruction |= alignbits << 4;
16740 inst.instruction |= neon_logbits (et.size) << 6;
16741
16742 /* Bits [4:6] of the immediate in a list specifier encode register stride
16743 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
16744 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
16745 up the right value for "type" in a table based on this value and the given
16746 list style, then stick it back. */
16747 idx = ((inst.operands[0].imm >> 4) & 7)
477330fc 16748 | (((inst.instruction >> 8) & 3) << 3);
5287ad62
JB
16749
16750 typebits = typetable[idx];
5f4273c7 16751
5287ad62 16752 constraint (typebits == -1, _("bad list type for instruction"));
1d50d57c
WN
16753 constraint (((inst.instruction >> 8) & 3) && et.size == 64,
16754 _("bad element type for instruction"));
5287ad62
JB
16755
16756 inst.instruction &= ~0xf00;
16757 inst.instruction |= typebits << 8;
16758}
16759
16760/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
16761 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
16762 otherwise. The variable arguments are a list of pairs of legal (size, align)
16763 values, terminated with -1. */
16764
16765static int
aa8a0863 16766neon_alignment_bit (int size, int align, int *do_alignment, ...)
5287ad62
JB
16767{
16768 va_list ap;
16769 int result = FAIL, thissize, thisalign;
5f4273c7 16770
5287ad62
JB
16771 if (!inst.operands[1].immisalign)
16772 {
aa8a0863 16773 *do_alignment = 0;
5287ad62
JB
16774 return SUCCESS;
16775 }
5f4273c7 16776
aa8a0863 16777 va_start (ap, do_alignment);
5287ad62
JB
16778
16779 do
16780 {
16781 thissize = va_arg (ap, int);
16782 if (thissize == -1)
477330fc 16783 break;
5287ad62
JB
16784 thisalign = va_arg (ap, int);
16785
16786 if (size == thissize && align == thisalign)
477330fc 16787 result = SUCCESS;
5287ad62
JB
16788 }
16789 while (result != SUCCESS);
16790
16791 va_end (ap);
16792
16793 if (result == SUCCESS)
aa8a0863 16794 *do_alignment = 1;
5287ad62 16795 else
dcbf9037 16796 first_error (_("unsupported alignment for instruction"));
5f4273c7 16797
5287ad62
JB
16798 return result;
16799}
16800
16801static void
16802do_neon_ld_st_lane (void)
16803{
037e8744 16804 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
aa8a0863 16805 int align_good, do_alignment = 0;
5287ad62
JB
16806 int logsize = neon_logbits (et.size);
16807 int align = inst.operands[1].imm >> 8;
16808 int n = (inst.instruction >> 8) & 3;
16809 int max_el = 64 / et.size;
5f4273c7 16810
dcbf9037
JB
16811 if (et.type == NT_invtype)
16812 return;
5f4273c7 16813
5287ad62 16814 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
477330fc 16815 _("bad list length"));
5287ad62 16816 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
477330fc 16817 _("scalar index out of range"));
5287ad62 16818 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
477330fc
RM
16819 && et.size == 8,
16820 _("stride of 2 unavailable when element size is 8"));
5f4273c7 16821
5287ad62
JB
16822 switch (n)
16823 {
16824 case 0: /* VLD1 / VST1. */
aa8a0863 16825 align_good = neon_alignment_bit (et.size, align, &do_alignment, 16, 16,
477330fc 16826 32, 32, -1);
5287ad62 16827 if (align_good == FAIL)
477330fc 16828 return;
aa8a0863 16829 if (do_alignment)
477330fc
RM
16830 {
16831 unsigned alignbits = 0;
16832 switch (et.size)
16833 {
16834 case 16: alignbits = 0x1; break;
16835 case 32: alignbits = 0x3; break;
16836 default: ;
16837 }
16838 inst.instruction |= alignbits << 4;
16839 }
5287ad62
JB
16840 break;
16841
16842 case 1: /* VLD2 / VST2. */
aa8a0863
TS
16843 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 16,
16844 16, 32, 32, 64, -1);
5287ad62 16845 if (align_good == FAIL)
477330fc 16846 return;
aa8a0863 16847 if (do_alignment)
477330fc 16848 inst.instruction |= 1 << 4;
5287ad62
JB
16849 break;
16850
16851 case 2: /* VLD3 / VST3. */
16852 constraint (inst.operands[1].immisalign,
477330fc 16853 _("can't use alignment with this instruction"));
5287ad62
JB
16854 break;
16855
16856 case 3: /* VLD4 / VST4. */
aa8a0863 16857 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
477330fc 16858 16, 64, 32, 64, 32, 128, -1);
5287ad62 16859 if (align_good == FAIL)
477330fc 16860 return;
aa8a0863 16861 if (do_alignment)
477330fc
RM
16862 {
16863 unsigned alignbits = 0;
16864 switch (et.size)
16865 {
16866 case 8: alignbits = 0x1; break;
16867 case 16: alignbits = 0x1; break;
16868 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
16869 default: ;
16870 }
16871 inst.instruction |= alignbits << 4;
16872 }
5287ad62
JB
16873 break;
16874
16875 default: ;
16876 }
16877
16878 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
16879 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
16880 inst.instruction |= 1 << (4 + logsize);
5f4273c7 16881
5287ad62
JB
16882 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
16883 inst.instruction |= logsize << 10;
16884}
16885
16886/* Encode single n-element structure to all lanes VLD<n> instructions. */
16887
16888static void
16889do_neon_ld_dup (void)
16890{
037e8744 16891 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
aa8a0863 16892 int align_good, do_alignment = 0;
5287ad62 16893
dcbf9037
JB
16894 if (et.type == NT_invtype)
16895 return;
16896
5287ad62
JB
16897 switch ((inst.instruction >> 8) & 3)
16898 {
16899 case 0: /* VLD1. */
9c2799c2 16900 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
5287ad62 16901 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
aa8a0863 16902 &do_alignment, 16, 16, 32, 32, -1);
5287ad62 16903 if (align_good == FAIL)
477330fc 16904 return;
5287ad62 16905 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
477330fc
RM
16906 {
16907 case 1: break;
16908 case 2: inst.instruction |= 1 << 5; break;
16909 default: first_error (_("bad list length")); return;
16910 }
5287ad62
JB
16911 inst.instruction |= neon_logbits (et.size) << 6;
16912 break;
16913
16914 case 1: /* VLD2. */
16915 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
aa8a0863
TS
16916 &do_alignment, 8, 16, 16, 32, 32, 64,
16917 -1);
5287ad62 16918 if (align_good == FAIL)
477330fc 16919 return;
5287ad62 16920 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
477330fc 16921 _("bad list length"));
5287ad62 16922 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
477330fc 16923 inst.instruction |= 1 << 5;
5287ad62
JB
16924 inst.instruction |= neon_logbits (et.size) << 6;
16925 break;
16926
16927 case 2: /* VLD3. */
16928 constraint (inst.operands[1].immisalign,
477330fc 16929 _("can't use alignment with this instruction"));
5287ad62 16930 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
477330fc 16931 _("bad list length"));
5287ad62 16932 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
477330fc 16933 inst.instruction |= 1 << 5;
5287ad62
JB
16934 inst.instruction |= neon_logbits (et.size) << 6;
16935 break;
16936
16937 case 3: /* VLD4. */
16938 {
477330fc 16939 int align = inst.operands[1].imm >> 8;
aa8a0863 16940 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
477330fc
RM
16941 16, 64, 32, 64, 32, 128, -1);
16942 if (align_good == FAIL)
16943 return;
16944 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
16945 _("bad list length"));
16946 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
16947 inst.instruction |= 1 << 5;
16948 if (et.size == 32 && align == 128)
16949 inst.instruction |= 0x3 << 6;
16950 else
16951 inst.instruction |= neon_logbits (et.size) << 6;
5287ad62
JB
16952 }
16953 break;
16954
16955 default: ;
16956 }
16957
aa8a0863 16958 inst.instruction |= do_alignment << 4;
5287ad62
JB
16959}
16960
16961/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
16962 apart from bits [11:4]. */
16963
16964static void
16965do_neon_ldx_stx (void)
16966{
b1a769ed
DG
16967 if (inst.operands[1].isreg)
16968 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
16969
5287ad62
JB
16970 switch (NEON_LANE (inst.operands[0].imm))
16971 {
16972 case NEON_INTERLEAVE_LANES:
88714cb8 16973 NEON_ENCODE (INTERLV, inst);
5287ad62
JB
16974 do_neon_ld_st_interleave ();
16975 break;
5f4273c7 16976
5287ad62 16977 case NEON_ALL_LANES:
88714cb8 16978 NEON_ENCODE (DUP, inst);
2d51fb74
JB
16979 if (inst.instruction == N_INV)
16980 {
16981 first_error ("only loads support such operands");
16982 break;
16983 }
5287ad62
JB
16984 do_neon_ld_dup ();
16985 break;
5f4273c7 16986
5287ad62 16987 default:
88714cb8 16988 NEON_ENCODE (LANE, inst);
5287ad62
JB
16989 do_neon_ld_st_lane ();
16990 }
16991
16992 /* L bit comes from bit mask. */
16993 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16994 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16995 inst.instruction |= inst.operands[1].reg << 16;
5f4273c7 16996
5287ad62
JB
16997 if (inst.operands[1].postind)
16998 {
16999 int postreg = inst.operands[1].imm & 0xf;
17000 constraint (!inst.operands[1].immisreg,
477330fc 17001 _("post-index must be a register"));
5287ad62 17002 constraint (postreg == 0xd || postreg == 0xf,
477330fc 17003 _("bad register for post-index"));
5287ad62
JB
17004 inst.instruction |= postreg;
17005 }
4f2374c7 17006 else
5287ad62 17007 {
4f2374c7
WN
17008 constraint (inst.operands[1].immisreg, BAD_ADDR_MODE);
17009 constraint (inst.reloc.exp.X_op != O_constant
17010 || inst.reloc.exp.X_add_number != 0,
17011 BAD_ADDR_MODE);
17012
17013 if (inst.operands[1].writeback)
17014 {
17015 inst.instruction |= 0xd;
17016 }
17017 else
17018 inst.instruction |= 0xf;
5287ad62 17019 }
5f4273c7 17020
5287ad62
JB
17021 if (thumb_mode)
17022 inst.instruction |= 0xf9000000;
17023 else
17024 inst.instruction |= 0xf4000000;
17025}
33399f07
MGD
17026
17027/* FP v8. */
17028static void
17029do_vfp_nsyn_fpv8 (enum neon_shape rs)
17030{
a715796b
TG
17031 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
17032 D register operands. */
17033 if (neon_shape_class[rs] == SC_DOUBLE)
17034 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
17035 _(BAD_FPU));
17036
33399f07
MGD
17037 NEON_ENCODE (FPV8, inst);
17038
9db2f6b4
RL
17039 if (rs == NS_FFF || rs == NS_HHH)
17040 {
17041 do_vfp_sp_dyadic ();
17042
17043 /* ARMv8.2 fp16 instruction. */
17044 if (rs == NS_HHH)
17045 do_scalar_fp16_v82_encode ();
17046 }
33399f07
MGD
17047 else
17048 do_vfp_dp_rd_rn_rm ();
17049
17050 if (rs == NS_DDD)
17051 inst.instruction |= 0x100;
17052
17053 inst.instruction |= 0xf0000000;
17054}
17055
17056static void
17057do_vsel (void)
17058{
17059 set_it_insn_type (OUTSIDE_IT_INSN);
17060
17061 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
17062 first_error (_("invalid instruction shape"));
17063}
17064
73924fbc
MGD
17065static void
17066do_vmaxnm (void)
17067{
17068 set_it_insn_type (OUTSIDE_IT_INSN);
17069
17070 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
17071 return;
17072
17073 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
17074 return;
17075
cc933301 17076 neon_dyadic_misc (NT_untyped, N_F_16_32, 0);
73924fbc
MGD
17077}
17078
30bdf752
MGD
17079static void
17080do_vrint_1 (enum neon_cvt_mode mode)
17081{
9db2f6b4 17082 enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_QQ, NS_NULL);
30bdf752
MGD
17083 struct neon_type_el et;
17084
17085 if (rs == NS_NULL)
17086 return;
17087
a715796b
TG
17088 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
17089 D register operands. */
17090 if (neon_shape_class[rs] == SC_DOUBLE)
17091 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
17092 _(BAD_FPU));
17093
9db2f6b4
RL
17094 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY
17095 | N_VFP);
30bdf752
MGD
17096 if (et.type != NT_invtype)
17097 {
17098 /* VFP encodings. */
17099 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
17100 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
17101 set_it_insn_type (OUTSIDE_IT_INSN);
17102
17103 NEON_ENCODE (FPV8, inst);
9db2f6b4 17104 if (rs == NS_FF || rs == NS_HH)
30bdf752
MGD
17105 do_vfp_sp_monadic ();
17106 else
17107 do_vfp_dp_rd_rm ();
17108
17109 switch (mode)
17110 {
17111 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
17112 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
17113 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
17114 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
17115 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
17116 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
17117 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
17118 default: abort ();
17119 }
17120
17121 inst.instruction |= (rs == NS_DD) << 8;
17122 do_vfp_cond_or_thumb ();
9db2f6b4
RL
17123
17124 /* ARMv8.2 fp16 vrint instruction. */
17125 if (rs == NS_HH)
17126 do_scalar_fp16_v82_encode ();
30bdf752
MGD
17127 }
17128 else
17129 {
17130 /* Neon encodings (or something broken...). */
17131 inst.error = NULL;
cc933301 17132 et = neon_check_type (2, rs, N_EQK, N_F_16_32 | N_KEY);
30bdf752
MGD
17133
17134 if (et.type == NT_invtype)
17135 return;
17136
17137 set_it_insn_type (OUTSIDE_IT_INSN);
17138 NEON_ENCODE (FLOAT, inst);
17139
17140 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
17141 return;
17142
17143 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17144 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17145 inst.instruction |= LOW4 (inst.operands[1].reg);
17146 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
17147 inst.instruction |= neon_quad (rs) << 6;
cc933301
JW
17148 /* Mask off the original size bits and reencode them. */
17149 inst.instruction = ((inst.instruction & 0xfff3ffff)
17150 | neon_logbits (et.size) << 18);
17151
30bdf752
MGD
17152 switch (mode)
17153 {
17154 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
17155 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
17156 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
17157 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
17158 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
17159 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
17160 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
17161 default: abort ();
17162 }
17163
17164 if (thumb_mode)
17165 inst.instruction |= 0xfc000000;
17166 else
17167 inst.instruction |= 0xf0000000;
17168 }
17169}
17170
17171static void
17172do_vrintx (void)
17173{
17174 do_vrint_1 (neon_cvt_mode_x);
17175}
17176
17177static void
17178do_vrintz (void)
17179{
17180 do_vrint_1 (neon_cvt_mode_z);
17181}
17182
17183static void
17184do_vrintr (void)
17185{
17186 do_vrint_1 (neon_cvt_mode_r);
17187}
17188
17189static void
17190do_vrinta (void)
17191{
17192 do_vrint_1 (neon_cvt_mode_a);
17193}
17194
17195static void
17196do_vrintn (void)
17197{
17198 do_vrint_1 (neon_cvt_mode_n);
17199}
17200
17201static void
17202do_vrintp (void)
17203{
17204 do_vrint_1 (neon_cvt_mode_p);
17205}
17206
17207static void
17208do_vrintm (void)
17209{
17210 do_vrint_1 (neon_cvt_mode_m);
17211}
17212
91ff7894
MGD
17213/* Crypto v1 instructions. */
17214static void
17215do_crypto_2op_1 (unsigned elttype, int op)
17216{
17217 set_it_insn_type (OUTSIDE_IT_INSN);
17218
17219 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
17220 == NT_invtype)
17221 return;
17222
17223 inst.error = NULL;
17224
17225 NEON_ENCODE (INTEGER, inst);
17226 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17227 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17228 inst.instruction |= LOW4 (inst.operands[1].reg);
17229 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
17230 if (op != -1)
17231 inst.instruction |= op << 6;
17232
17233 if (thumb_mode)
17234 inst.instruction |= 0xfc000000;
17235 else
17236 inst.instruction |= 0xf0000000;
17237}
17238
48adcd8e
MGD
17239static void
17240do_crypto_3op_1 (int u, int op)
17241{
17242 set_it_insn_type (OUTSIDE_IT_INSN);
17243
17244 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
17245 N_32 | N_UNT | N_KEY).type == NT_invtype)
17246 return;
17247
17248 inst.error = NULL;
17249
17250 NEON_ENCODE (INTEGER, inst);
17251 neon_three_same (1, u, 8 << op);
17252}
17253
91ff7894
MGD
17254static void
17255do_aese (void)
17256{
17257 do_crypto_2op_1 (N_8, 0);
17258}
17259
17260static void
17261do_aesd (void)
17262{
17263 do_crypto_2op_1 (N_8, 1);
17264}
17265
17266static void
17267do_aesmc (void)
17268{
17269 do_crypto_2op_1 (N_8, 2);
17270}
17271
17272static void
17273do_aesimc (void)
17274{
17275 do_crypto_2op_1 (N_8, 3);
17276}
17277
48adcd8e
MGD
17278static void
17279do_sha1c (void)
17280{
17281 do_crypto_3op_1 (0, 0);
17282}
17283
17284static void
17285do_sha1p (void)
17286{
17287 do_crypto_3op_1 (0, 1);
17288}
17289
17290static void
17291do_sha1m (void)
17292{
17293 do_crypto_3op_1 (0, 2);
17294}
17295
17296static void
17297do_sha1su0 (void)
17298{
17299 do_crypto_3op_1 (0, 3);
17300}
91ff7894 17301
48adcd8e
MGD
17302static void
17303do_sha256h (void)
17304{
17305 do_crypto_3op_1 (1, 0);
17306}
17307
17308static void
17309do_sha256h2 (void)
17310{
17311 do_crypto_3op_1 (1, 1);
17312}
17313
17314static void
17315do_sha256su1 (void)
17316{
17317 do_crypto_3op_1 (1, 2);
17318}
3c9017d2
MGD
17319
17320static void
17321do_sha1h (void)
17322{
17323 do_crypto_2op_1 (N_32, -1);
17324}
17325
17326static void
17327do_sha1su1 (void)
17328{
17329 do_crypto_2op_1 (N_32, 0);
17330}
17331
17332static void
17333do_sha256su0 (void)
17334{
17335 do_crypto_2op_1 (N_32, 1);
17336}
dd5181d5
KT
17337
17338static void
17339do_crc32_1 (unsigned int poly, unsigned int sz)
17340{
17341 unsigned int Rd = inst.operands[0].reg;
17342 unsigned int Rn = inst.operands[1].reg;
17343 unsigned int Rm = inst.operands[2].reg;
17344
17345 set_it_insn_type (OUTSIDE_IT_INSN);
17346 inst.instruction |= LOW4 (Rd) << (thumb_mode ? 8 : 12);
17347 inst.instruction |= LOW4 (Rn) << 16;
17348 inst.instruction |= LOW4 (Rm);
17349 inst.instruction |= sz << (thumb_mode ? 4 : 21);
17350 inst.instruction |= poly << (thumb_mode ? 20 : 9);
17351
17352 if (Rd == REG_PC || Rn == REG_PC || Rm == REG_PC)
17353 as_warn (UNPRED_REG ("r15"));
17354 if (thumb_mode && (Rd == REG_SP || Rn == REG_SP || Rm == REG_SP))
17355 as_warn (UNPRED_REG ("r13"));
17356}
17357
17358static void
17359do_crc32b (void)
17360{
17361 do_crc32_1 (0, 0);
17362}
17363
17364static void
17365do_crc32h (void)
17366{
17367 do_crc32_1 (0, 1);
17368}
17369
17370static void
17371do_crc32w (void)
17372{
17373 do_crc32_1 (0, 2);
17374}
17375
17376static void
17377do_crc32cb (void)
17378{
17379 do_crc32_1 (1, 0);
17380}
17381
17382static void
17383do_crc32ch (void)
17384{
17385 do_crc32_1 (1, 1);
17386}
17387
17388static void
17389do_crc32cw (void)
17390{
17391 do_crc32_1 (1, 2);
17392}
17393
5287ad62
JB
17394\f
17395/* Overall per-instruction processing. */
17396
17397/* We need to be able to fix up arbitrary expressions in some statements.
17398 This is so that we can handle symbols that are an arbitrary distance from
17399 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
17400 which returns part of an address in a form which will be valid for
17401 a data instruction. We do this by pushing the expression into a symbol
17402 in the expr_section, and creating a fix for that. */
17403
17404static void
17405fix_new_arm (fragS * frag,
17406 int where,
17407 short int size,
17408 expressionS * exp,
17409 int pc_rel,
17410 int reloc)
17411{
17412 fixS * new_fix;
17413
17414 switch (exp->X_op)
17415 {
17416 case O_constant:
6e7ce2cd
PB
17417 if (pc_rel)
17418 {
17419 /* Create an absolute valued symbol, so we have something to
477330fc
RM
17420 refer to in the object file. Unfortunately for us, gas's
17421 generic expression parsing will already have folded out
17422 any use of .set foo/.type foo %function that may have
17423 been used to set type information of the target location,
17424 that's being specified symbolically. We have to presume
17425 the user knows what they are doing. */
6e7ce2cd
PB
17426 char name[16 + 8];
17427 symbolS *symbol;
17428
17429 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
17430
17431 symbol = symbol_find_or_make (name);
17432 S_SET_SEGMENT (symbol, absolute_section);
17433 symbol_set_frag (symbol, &zero_address_frag);
17434 S_SET_VALUE (symbol, exp->X_add_number);
17435 exp->X_op = O_symbol;
17436 exp->X_add_symbol = symbol;
17437 exp->X_add_number = 0;
17438 }
17439 /* FALLTHROUGH */
5287ad62
JB
17440 case O_symbol:
17441 case O_add:
17442 case O_subtract:
21d799b5 17443 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
477330fc 17444 (enum bfd_reloc_code_real) reloc);
5287ad62
JB
17445 break;
17446
17447 default:
21d799b5 17448 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
477330fc 17449 pc_rel, (enum bfd_reloc_code_real) reloc);
5287ad62
JB
17450 break;
17451 }
17452
17453 /* Mark whether the fix is to a THUMB instruction, or an ARM
17454 instruction. */
17455 new_fix->tc_fix_data = thumb_mode;
17456}
17457
17458/* Create a frg for an instruction requiring relaxation. */
17459static void
17460output_relax_insn (void)
17461{
17462 char * to;
17463 symbolS *sym;
0110f2b8
PB
17464 int offset;
17465
6e1cb1a6
PB
17466 /* The size of the instruction is unknown, so tie the debug info to the
17467 start of the instruction. */
17468 dwarf2_emit_insn (0);
6e1cb1a6 17469
0110f2b8
PB
17470 switch (inst.reloc.exp.X_op)
17471 {
17472 case O_symbol:
17473 sym = inst.reloc.exp.X_add_symbol;
17474 offset = inst.reloc.exp.X_add_number;
17475 break;
17476 case O_constant:
17477 sym = NULL;
17478 offset = inst.reloc.exp.X_add_number;
17479 break;
17480 default:
17481 sym = make_expr_symbol (&inst.reloc.exp);
17482 offset = 0;
17483 break;
17484 }
17485 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
17486 inst.relax, sym, offset, NULL/*offset, opcode*/);
17487 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
17488}
17489
17490/* Write a 32-bit thumb instruction to buf. */
17491static void
17492put_thumb32_insn (char * buf, unsigned long insn)
17493{
17494 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
17495 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
17496}
17497
b99bd4ef 17498static void
c19d1205 17499output_inst (const char * str)
b99bd4ef 17500{
c19d1205 17501 char * to = NULL;
b99bd4ef 17502
c19d1205 17503 if (inst.error)
b99bd4ef 17504 {
c19d1205 17505 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
17506 return;
17507 }
5f4273c7
NC
17508 if (inst.relax)
17509 {
17510 output_relax_insn ();
0110f2b8 17511 return;
5f4273c7 17512 }
c19d1205
ZW
17513 if (inst.size == 0)
17514 return;
b99bd4ef 17515
c19d1205 17516 to = frag_more (inst.size);
8dc2430f
NC
17517 /* PR 9814: Record the thumb mode into the current frag so that we know
17518 what type of NOP padding to use, if necessary. We override any previous
17519 setting so that if the mode has changed then the NOPS that we use will
17520 match the encoding of the last instruction in the frag. */
cd000bff 17521 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
c19d1205
ZW
17522
17523 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 17524 {
9c2799c2 17525 gas_assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 17526 put_thumb32_insn (to, inst.instruction);
b99bd4ef 17527 }
c19d1205 17528 else if (inst.size > INSN_SIZE)
b99bd4ef 17529 {
9c2799c2 17530 gas_assert (inst.size == (2 * INSN_SIZE));
c19d1205
ZW
17531 md_number_to_chars (to, inst.instruction, INSN_SIZE);
17532 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 17533 }
c19d1205
ZW
17534 else
17535 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 17536
c19d1205
ZW
17537 if (inst.reloc.type != BFD_RELOC_UNUSED)
17538 fix_new_arm (frag_now, to - frag_now->fr_literal,
17539 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
17540 inst.reloc.type);
b99bd4ef 17541
c19d1205 17542 dwarf2_emit_insn (inst.size);
c19d1205 17543}
b99bd4ef 17544
e07e6e58
NC
17545static char *
17546output_it_inst (int cond, int mask, char * to)
17547{
17548 unsigned long instruction = 0xbf00;
17549
17550 mask &= 0xf;
17551 instruction |= mask;
17552 instruction |= cond << 4;
17553
17554 if (to == NULL)
17555 {
17556 to = frag_more (2);
17557#ifdef OBJ_ELF
17558 dwarf2_emit_insn (2);
17559#endif
17560 }
17561
17562 md_number_to_chars (to, instruction, 2);
17563
17564 return to;
17565}
17566
c19d1205
ZW
17567/* Tag values used in struct asm_opcode's tag field. */
17568enum opcode_tag
17569{
17570 OT_unconditional, /* Instruction cannot be conditionalized.
17571 The ARM condition field is still 0xE. */
17572 OT_unconditionalF, /* Instruction cannot be conditionalized
17573 and carries 0xF in its ARM condition field. */
17574 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744 17575 OT_csuffixF, /* Some forms of the instruction take a conditional
477330fc
RM
17576 suffix, others place 0xF where the condition field
17577 would be. */
c19d1205
ZW
17578 OT_cinfix3, /* Instruction takes a conditional infix,
17579 beginning at character index 3. (In
17580 unified mode, it becomes a suffix.) */
088fa78e
KH
17581 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
17582 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
17583 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
17584 character index 3, even in unified mode. Used for
17585 legacy instructions where suffix and infix forms
17586 may be ambiguous. */
c19d1205 17587 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 17588 suffix or an infix at character index 3. */
c19d1205
ZW
17589 OT_odd_infix_unc, /* This is the unconditional variant of an
17590 instruction that takes a conditional infix
17591 at an unusual position. In unified mode,
17592 this variant will accept a suffix. */
17593 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
17594 are the conditional variants of instructions that
17595 take conditional infixes in unusual positions.
17596 The infix appears at character index
17597 (tag - OT_odd_infix_0). These are not accepted
17598 in unified mode. */
17599};
b99bd4ef 17600
c19d1205
ZW
17601/* Subroutine of md_assemble, responsible for looking up the primary
17602 opcode from the mnemonic the user wrote. STR points to the
17603 beginning of the mnemonic.
17604
17605 This is not simply a hash table lookup, because of conditional
17606 variants. Most instructions have conditional variants, which are
17607 expressed with a _conditional affix_ to the mnemonic. If we were
17608 to encode each conditional variant as a literal string in the opcode
17609 table, it would have approximately 20,000 entries.
17610
17611 Most mnemonics take this affix as a suffix, and in unified syntax,
17612 'most' is upgraded to 'all'. However, in the divided syntax, some
17613 instructions take the affix as an infix, notably the s-variants of
17614 the arithmetic instructions. Of those instructions, all but six
17615 have the infix appear after the third character of the mnemonic.
17616
17617 Accordingly, the algorithm for looking up primary opcodes given
17618 an identifier is:
17619
17620 1. Look up the identifier in the opcode table.
17621 If we find a match, go to step U.
17622
17623 2. Look up the last two characters of the identifier in the
17624 conditions table. If we find a match, look up the first N-2
17625 characters of the identifier in the opcode table. If we
17626 find a match, go to step CE.
17627
17628 3. Look up the fourth and fifth characters of the identifier in
17629 the conditions table. If we find a match, extract those
17630 characters from the identifier, and look up the remaining
17631 characters in the opcode table. If we find a match, go
17632 to step CM.
17633
17634 4. Fail.
17635
17636 U. Examine the tag field of the opcode structure, in case this is
17637 one of the six instructions with its conditional infix in an
17638 unusual place. If it is, the tag tells us where to find the
17639 infix; look it up in the conditions table and set inst.cond
17640 accordingly. Otherwise, this is an unconditional instruction.
17641 Again set inst.cond accordingly. Return the opcode structure.
17642
17643 CE. Examine the tag field to make sure this is an instruction that
17644 should receive a conditional suffix. If it is not, fail.
17645 Otherwise, set inst.cond from the suffix we already looked up,
17646 and return the opcode structure.
17647
17648 CM. Examine the tag field to make sure this is an instruction that
17649 should receive a conditional infix after the third character.
17650 If it is not, fail. Otherwise, undo the edits to the current
17651 line of input and proceed as for case CE. */
17652
17653static const struct asm_opcode *
17654opcode_lookup (char **str)
17655{
17656 char *end, *base;
17657 char *affix;
17658 const struct asm_opcode *opcode;
17659 const struct asm_cond *cond;
e3cb604e 17660 char save[2];
c19d1205
ZW
17661
17662 /* Scan up to the end of the mnemonic, which must end in white space,
721a8186 17663 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
c19d1205 17664 for (base = end = *str; *end != '\0'; end++)
721a8186 17665 if (*end == ' ' || *end == '.')
c19d1205 17666 break;
b99bd4ef 17667
c19d1205 17668 if (end == base)
c921be7d 17669 return NULL;
b99bd4ef 17670
5287ad62 17671 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 17672 if (end[0] == '.')
b99bd4ef 17673 {
5287ad62 17674 int offset = 2;
5f4273c7 17675
267d2029 17676 /* The .w and .n suffixes are only valid if the unified syntax is in
477330fc 17677 use. */
267d2029 17678 if (unified_syntax && end[1] == 'w')
c19d1205 17679 inst.size_req = 4;
267d2029 17680 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
17681 inst.size_req = 2;
17682 else
477330fc 17683 offset = 0;
5287ad62
JB
17684
17685 inst.vectype.elems = 0;
17686
17687 *str = end + offset;
b99bd4ef 17688
5f4273c7 17689 if (end[offset] == '.')
5287ad62 17690 {
267d2029 17691 /* See if we have a Neon type suffix (possible in either unified or
477330fc
RM
17692 non-unified ARM syntax mode). */
17693 if (parse_neon_type (&inst.vectype, str) == FAIL)
c921be7d 17694 return NULL;
477330fc 17695 }
5287ad62 17696 else if (end[offset] != '\0' && end[offset] != ' ')
477330fc 17697 return NULL;
b99bd4ef 17698 }
c19d1205
ZW
17699 else
17700 *str = end;
b99bd4ef 17701
c19d1205 17702 /* Look for unaffixed or special-case affixed mnemonic. */
21d799b5 17703 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17704 end - base);
c19d1205 17705 if (opcode)
b99bd4ef 17706 {
c19d1205
ZW
17707 /* step U */
17708 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 17709 {
c19d1205
ZW
17710 inst.cond = COND_ALWAYS;
17711 return opcode;
b99bd4ef 17712 }
b99bd4ef 17713
278df34e 17714 if (warn_on_deprecated && unified_syntax)
5c3696f8 17715 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
c19d1205 17716 affix = base + (opcode->tag - OT_odd_infix_0);
21d799b5 17717 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
9c2799c2 17718 gas_assert (cond);
b99bd4ef 17719
c19d1205
ZW
17720 inst.cond = cond->value;
17721 return opcode;
17722 }
b99bd4ef 17723
c19d1205
ZW
17724 /* Cannot have a conditional suffix on a mnemonic of less than two
17725 characters. */
17726 if (end - base < 3)
c921be7d 17727 return NULL;
b99bd4ef 17728
c19d1205
ZW
17729 /* Look for suffixed mnemonic. */
17730 affix = end - 2;
21d799b5
NC
17731 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
17732 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17733 affix - base);
c19d1205
ZW
17734 if (opcode && cond)
17735 {
17736 /* step CE */
17737 switch (opcode->tag)
17738 {
e3cb604e
PB
17739 case OT_cinfix3_legacy:
17740 /* Ignore conditional suffixes matched on infix only mnemonics. */
17741 break;
17742
c19d1205 17743 case OT_cinfix3:
088fa78e 17744 case OT_cinfix3_deprecated:
c19d1205
ZW
17745 case OT_odd_infix_unc:
17746 if (!unified_syntax)
e3cb604e 17747 return 0;
c19d1205
ZW
17748 /* else fall through */
17749
17750 case OT_csuffix:
477330fc 17751 case OT_csuffixF:
c19d1205
ZW
17752 case OT_csuf_or_in3:
17753 inst.cond = cond->value;
17754 return opcode;
17755
17756 case OT_unconditional:
17757 case OT_unconditionalF:
dfa9f0d5 17758 if (thumb_mode)
c921be7d 17759 inst.cond = cond->value;
dfa9f0d5
PB
17760 else
17761 {
c921be7d 17762 /* Delayed diagnostic. */
dfa9f0d5
PB
17763 inst.error = BAD_COND;
17764 inst.cond = COND_ALWAYS;
17765 }
c19d1205 17766 return opcode;
b99bd4ef 17767
c19d1205 17768 default:
c921be7d 17769 return NULL;
c19d1205
ZW
17770 }
17771 }
b99bd4ef 17772
c19d1205
ZW
17773 /* Cannot have a usual-position infix on a mnemonic of less than
17774 six characters (five would be a suffix). */
17775 if (end - base < 6)
c921be7d 17776 return NULL;
b99bd4ef 17777
c19d1205
ZW
17778 /* Look for infixed mnemonic in the usual position. */
17779 affix = base + 3;
21d799b5 17780 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e 17781 if (!cond)
c921be7d 17782 return NULL;
e3cb604e
PB
17783
17784 memcpy (save, affix, 2);
17785 memmove (affix, affix + 2, (end - affix) - 2);
21d799b5 17786 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17787 (end - base) - 2);
e3cb604e
PB
17788 memmove (affix + 2, affix, (end - affix) - 2);
17789 memcpy (affix, save, 2);
17790
088fa78e
KH
17791 if (opcode
17792 && (opcode->tag == OT_cinfix3
17793 || opcode->tag == OT_cinfix3_deprecated
17794 || opcode->tag == OT_csuf_or_in3
17795 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 17796 {
c921be7d 17797 /* Step CM. */
278df34e 17798 if (warn_on_deprecated && unified_syntax
088fa78e
KH
17799 && (opcode->tag == OT_cinfix3
17800 || opcode->tag == OT_cinfix3_deprecated))
5c3696f8 17801 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
c19d1205
ZW
17802
17803 inst.cond = cond->value;
17804 return opcode;
b99bd4ef
NC
17805 }
17806
c921be7d 17807 return NULL;
b99bd4ef
NC
17808}
17809
e07e6e58
NC
17810/* This function generates an initial IT instruction, leaving its block
17811 virtually open for the new instructions. Eventually,
17812 the mask will be updated by now_it_add_mask () each time
17813 a new instruction needs to be included in the IT block.
17814 Finally, the block is closed with close_automatic_it_block ().
17815 The block closure can be requested either from md_assemble (),
17816 a tencode (), or due to a label hook. */
17817
17818static void
17819new_automatic_it_block (int cond)
17820{
17821 now_it.state = AUTOMATIC_IT_BLOCK;
17822 now_it.mask = 0x18;
17823 now_it.cc = cond;
17824 now_it.block_length = 1;
cd000bff 17825 mapping_state (MAP_THUMB);
e07e6e58 17826 now_it.insn = output_it_inst (cond, now_it.mask, NULL);
5a01bb1d
MGD
17827 now_it.warn_deprecated = FALSE;
17828 now_it.insn_cond = TRUE;
e07e6e58
NC
17829}
17830
17831/* Close an automatic IT block.
17832 See comments in new_automatic_it_block (). */
17833
17834static void
17835close_automatic_it_block (void)
17836{
17837 now_it.mask = 0x10;
17838 now_it.block_length = 0;
17839}
17840
17841/* Update the mask of the current automatically-generated IT
17842 instruction. See comments in new_automatic_it_block (). */
17843
17844static void
17845now_it_add_mask (int cond)
17846{
17847#define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
17848#define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
477330fc 17849 | ((bitvalue) << (nbit)))
e07e6e58 17850 const int resulting_bit = (cond & 1);
c921be7d 17851
e07e6e58
NC
17852 now_it.mask &= 0xf;
17853 now_it.mask = SET_BIT_VALUE (now_it.mask,
477330fc
RM
17854 resulting_bit,
17855 (5 - now_it.block_length));
e07e6e58 17856 now_it.mask = SET_BIT_VALUE (now_it.mask,
477330fc
RM
17857 1,
17858 ((5 - now_it.block_length) - 1) );
e07e6e58
NC
17859 output_it_inst (now_it.cc, now_it.mask, now_it.insn);
17860
17861#undef CLEAR_BIT
17862#undef SET_BIT_VALUE
e07e6e58
NC
17863}
17864
17865/* The IT blocks handling machinery is accessed through the these functions:
17866 it_fsm_pre_encode () from md_assemble ()
17867 set_it_insn_type () optional, from the tencode functions
17868 set_it_insn_type_last () ditto
17869 in_it_block () ditto
17870 it_fsm_post_encode () from md_assemble ()
17871 force_automatic_it_block_close () from label habdling functions
17872
17873 Rationale:
17874 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
477330fc
RM
17875 initializing the IT insn type with a generic initial value depending
17876 on the inst.condition.
e07e6e58 17877 2) During the tencode function, two things may happen:
477330fc
RM
17878 a) The tencode function overrides the IT insn type by
17879 calling either set_it_insn_type (type) or set_it_insn_type_last ().
17880 b) The tencode function queries the IT block state by
17881 calling in_it_block () (i.e. to determine narrow/not narrow mode).
17882
17883 Both set_it_insn_type and in_it_block run the internal FSM state
17884 handling function (handle_it_state), because: a) setting the IT insn
17885 type may incur in an invalid state (exiting the function),
17886 and b) querying the state requires the FSM to be updated.
17887 Specifically we want to avoid creating an IT block for conditional
17888 branches, so it_fsm_pre_encode is actually a guess and we can't
17889 determine whether an IT block is required until the tencode () routine
17890 has decided what type of instruction this actually it.
17891 Because of this, if set_it_insn_type and in_it_block have to be used,
17892 set_it_insn_type has to be called first.
17893
17894 set_it_insn_type_last () is a wrapper of set_it_insn_type (type), that
17895 determines the insn IT type depending on the inst.cond code.
17896 When a tencode () routine encodes an instruction that can be
17897 either outside an IT block, or, in the case of being inside, has to be
17898 the last one, set_it_insn_type_last () will determine the proper
17899 IT instruction type based on the inst.cond code. Otherwise,
17900 set_it_insn_type can be called for overriding that logic or
17901 for covering other cases.
17902
17903 Calling handle_it_state () may not transition the IT block state to
17904 OUTSIDE_IT_BLOCK immediatelly, since the (current) state could be
17905 still queried. Instead, if the FSM determines that the state should
17906 be transitioned to OUTSIDE_IT_BLOCK, a flag is marked to be closed
17907 after the tencode () function: that's what it_fsm_post_encode () does.
17908
17909 Since in_it_block () calls the state handling function to get an
17910 updated state, an error may occur (due to invalid insns combination).
17911 In that case, inst.error is set.
17912 Therefore, inst.error has to be checked after the execution of
17913 the tencode () routine.
e07e6e58
NC
17914
17915 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
477330fc
RM
17916 any pending state change (if any) that didn't take place in
17917 handle_it_state () as explained above. */
e07e6e58
NC
17918
17919static void
17920it_fsm_pre_encode (void)
17921{
17922 if (inst.cond != COND_ALWAYS)
17923 inst.it_insn_type = INSIDE_IT_INSN;
17924 else
17925 inst.it_insn_type = OUTSIDE_IT_INSN;
17926
17927 now_it.state_handled = 0;
17928}
17929
17930/* IT state FSM handling function. */
17931
17932static int
17933handle_it_state (void)
17934{
17935 now_it.state_handled = 1;
5a01bb1d 17936 now_it.insn_cond = FALSE;
e07e6e58
NC
17937
17938 switch (now_it.state)
17939 {
17940 case OUTSIDE_IT_BLOCK:
17941 switch (inst.it_insn_type)
17942 {
17943 case OUTSIDE_IT_INSN:
17944 break;
17945
17946 case INSIDE_IT_INSN:
17947 case INSIDE_IT_LAST_INSN:
17948 if (thumb_mode == 0)
17949 {
c921be7d 17950 if (unified_syntax
e07e6e58
NC
17951 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
17952 as_tsktsk (_("Warning: conditional outside an IT block"\
17953 " for Thumb."));
17954 }
17955 else
17956 {
17957 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
fc289b0a 17958 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
e07e6e58
NC
17959 {
17960 /* Automatically generate the IT instruction. */
17961 new_automatic_it_block (inst.cond);
17962 if (inst.it_insn_type == INSIDE_IT_LAST_INSN)
17963 close_automatic_it_block ();
17964 }
17965 else
17966 {
17967 inst.error = BAD_OUT_IT;
17968 return FAIL;
17969 }
17970 }
17971 break;
17972
17973 case IF_INSIDE_IT_LAST_INSN:
17974 case NEUTRAL_IT_INSN:
17975 break;
17976
17977 case IT_INSN:
17978 now_it.state = MANUAL_IT_BLOCK;
17979 now_it.block_length = 0;
17980 break;
17981 }
17982 break;
17983
17984 case AUTOMATIC_IT_BLOCK:
17985 /* Three things may happen now:
17986 a) We should increment current it block size;
17987 b) We should close current it block (closing insn or 4 insns);
17988 c) We should close current it block and start a new one (due
17989 to incompatible conditions or
17990 4 insns-length block reached). */
17991
17992 switch (inst.it_insn_type)
17993 {
17994 case OUTSIDE_IT_INSN:
17995 /* The closure of the block shall happen immediatelly,
17996 so any in_it_block () call reports the block as closed. */
17997 force_automatic_it_block_close ();
17998 break;
17999
18000 case INSIDE_IT_INSN:
18001 case INSIDE_IT_LAST_INSN:
18002 case IF_INSIDE_IT_LAST_INSN:
18003 now_it.block_length++;
18004
18005 if (now_it.block_length > 4
18006 || !now_it_compatible (inst.cond))
18007 {
18008 force_automatic_it_block_close ();
18009 if (inst.it_insn_type != IF_INSIDE_IT_LAST_INSN)
18010 new_automatic_it_block (inst.cond);
18011 }
18012 else
18013 {
5a01bb1d 18014 now_it.insn_cond = TRUE;
e07e6e58
NC
18015 now_it_add_mask (inst.cond);
18016 }
18017
18018 if (now_it.state == AUTOMATIC_IT_BLOCK
18019 && (inst.it_insn_type == INSIDE_IT_LAST_INSN
18020 || inst.it_insn_type == IF_INSIDE_IT_LAST_INSN))
18021 close_automatic_it_block ();
18022 break;
18023
18024 case NEUTRAL_IT_INSN:
18025 now_it.block_length++;
5a01bb1d 18026 now_it.insn_cond = TRUE;
e07e6e58
NC
18027
18028 if (now_it.block_length > 4)
18029 force_automatic_it_block_close ();
18030 else
18031 now_it_add_mask (now_it.cc & 1);
18032 break;
18033
18034 case IT_INSN:
18035 close_automatic_it_block ();
18036 now_it.state = MANUAL_IT_BLOCK;
18037 break;
18038 }
18039 break;
18040
18041 case MANUAL_IT_BLOCK:
18042 {
18043 /* Check conditional suffixes. */
18044 const int cond = now_it.cc ^ ((now_it.mask >> 4) & 1) ^ 1;
18045 int is_last;
18046 now_it.mask <<= 1;
18047 now_it.mask &= 0x1f;
18048 is_last = (now_it.mask == 0x10);
5a01bb1d 18049 now_it.insn_cond = TRUE;
e07e6e58
NC
18050
18051 switch (inst.it_insn_type)
18052 {
18053 case OUTSIDE_IT_INSN:
18054 inst.error = BAD_NOT_IT;
18055 return FAIL;
18056
18057 case INSIDE_IT_INSN:
18058 if (cond != inst.cond)
18059 {
18060 inst.error = BAD_IT_COND;
18061 return FAIL;
18062 }
18063 break;
18064
18065 case INSIDE_IT_LAST_INSN:
18066 case IF_INSIDE_IT_LAST_INSN:
18067 if (cond != inst.cond)
18068 {
18069 inst.error = BAD_IT_COND;
18070 return FAIL;
18071 }
18072 if (!is_last)
18073 {
18074 inst.error = BAD_BRANCH;
18075 return FAIL;
18076 }
18077 break;
18078
18079 case NEUTRAL_IT_INSN:
18080 /* The BKPT instruction is unconditional even in an IT block. */
18081 break;
18082
18083 case IT_INSN:
18084 inst.error = BAD_IT_IT;
18085 return FAIL;
18086 }
18087 }
18088 break;
18089 }
18090
18091 return SUCCESS;
18092}
18093
5a01bb1d
MGD
18094struct depr_insn_mask
18095{
18096 unsigned long pattern;
18097 unsigned long mask;
18098 const char* description;
18099};
18100
18101/* List of 16-bit instruction patterns deprecated in an IT block in
18102 ARMv8. */
18103static const struct depr_insn_mask depr_it_insns[] = {
18104 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
18105 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
18106 { 0xa000, 0xb800, N_("ADR") },
18107 { 0x4800, 0xf800, N_("Literal loads") },
18108 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
18109 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
c8de034b
JW
18110 /* NOTE: 0x00dd is not the real encoding, instead, it is the 'tvalue'
18111 field in asm_opcode. 'tvalue' is used at the stage this check happen. */
18112 { 0x00dd, 0x7fff, N_("ADD/SUB sp, sp #imm") },
5a01bb1d
MGD
18113 { 0, 0, NULL }
18114};
18115
e07e6e58
NC
18116static void
18117it_fsm_post_encode (void)
18118{
18119 int is_last;
18120
18121 if (!now_it.state_handled)
18122 handle_it_state ();
18123
5a01bb1d
MGD
18124 if (now_it.insn_cond
18125 && !now_it.warn_deprecated
18126 && warn_on_deprecated
18127 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
18128 {
18129 if (inst.instruction >= 0x10000)
18130 {
5c3696f8 18131 as_tsktsk (_("IT blocks containing 32-bit Thumb instructions are "
5a01bb1d
MGD
18132 "deprecated in ARMv8"));
18133 now_it.warn_deprecated = TRUE;
18134 }
18135 else
18136 {
18137 const struct depr_insn_mask *p = depr_it_insns;
18138
18139 while (p->mask != 0)
18140 {
18141 if ((inst.instruction & p->mask) == p->pattern)
18142 {
5c3696f8 18143 as_tsktsk (_("IT blocks containing 16-bit Thumb instructions "
5a01bb1d
MGD
18144 "of the following class are deprecated in ARMv8: "
18145 "%s"), p->description);
18146 now_it.warn_deprecated = TRUE;
18147 break;
18148 }
18149
18150 ++p;
18151 }
18152 }
18153
18154 if (now_it.block_length > 1)
18155 {
5c3696f8 18156 as_tsktsk (_("IT blocks containing more than one conditional "
0a8897c7 18157 "instruction are deprecated in ARMv8"));
5a01bb1d
MGD
18158 now_it.warn_deprecated = TRUE;
18159 }
18160 }
18161
e07e6e58
NC
18162 is_last = (now_it.mask == 0x10);
18163 if (is_last)
18164 {
18165 now_it.state = OUTSIDE_IT_BLOCK;
18166 now_it.mask = 0;
18167 }
18168}
18169
18170static void
18171force_automatic_it_block_close (void)
18172{
18173 if (now_it.state == AUTOMATIC_IT_BLOCK)
18174 {
18175 close_automatic_it_block ();
18176 now_it.state = OUTSIDE_IT_BLOCK;
18177 now_it.mask = 0;
18178 }
18179}
18180
18181static int
18182in_it_block (void)
18183{
18184 if (!now_it.state_handled)
18185 handle_it_state ();
18186
18187 return now_it.state != OUTSIDE_IT_BLOCK;
18188}
18189
ff8646ee
TP
18190/* Whether OPCODE only has T32 encoding. Since this function is only used by
18191 t32_insn_ok, OPCODE enabled by v6t2 extension bit do not need to be listed
18192 here, hence the "known" in the function name. */
fc289b0a
TP
18193
18194static bfd_boolean
ff8646ee 18195known_t32_only_insn (const struct asm_opcode *opcode)
fc289b0a
TP
18196{
18197 /* Original Thumb-1 wide instruction. */
18198 if (opcode->tencode == do_t_blx
18199 || opcode->tencode == do_t_branch23
18200 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
18201 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier))
18202 return TRUE;
18203
16a1fa25
TP
18204 /* Wide-only instruction added to ARMv8-M Baseline. */
18205 if (ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v8m_m_only)
ff8646ee
TP
18206 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_atomics)
18207 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v6t2_v8m)
18208 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_div))
18209 return TRUE;
18210
18211 return FALSE;
18212}
18213
18214/* Whether wide instruction variant can be used if available for a valid OPCODE
18215 in ARCH. */
18216
18217static bfd_boolean
18218t32_insn_ok (arm_feature_set arch, const struct asm_opcode *opcode)
18219{
18220 if (known_t32_only_insn (opcode))
18221 return TRUE;
18222
18223 /* Instruction with narrow and wide encoding added to ARMv8-M. Availability
18224 of variant T3 of B.W is checked in do_t_branch. */
18225 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v8m)
18226 && opcode->tencode == do_t_branch)
18227 return TRUE;
18228
18229 /* Wide instruction variants of all instructions with narrow *and* wide
18230 variants become available with ARMv6t2. Other opcodes are either
18231 narrow-only or wide-only and are thus available if OPCODE is valid. */
18232 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v6t2))
18233 return TRUE;
18234
18235 /* OPCODE with narrow only instruction variant or wide variant not
18236 available. */
fc289b0a
TP
18237 return FALSE;
18238}
18239
c19d1205
ZW
18240void
18241md_assemble (char *str)
b99bd4ef 18242{
c19d1205
ZW
18243 char *p = str;
18244 const struct asm_opcode * opcode;
b99bd4ef 18245
c19d1205
ZW
18246 /* Align the previous label if needed. */
18247 if (last_label_seen != NULL)
b99bd4ef 18248 {
c19d1205
ZW
18249 symbol_set_frag (last_label_seen, frag_now);
18250 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
18251 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
18252 }
18253
c19d1205
ZW
18254 memset (&inst, '\0', sizeof (inst));
18255 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 18256
c19d1205
ZW
18257 opcode = opcode_lookup (&p);
18258 if (!opcode)
b99bd4ef 18259 {
c19d1205 18260 /* It wasn't an instruction, but it might be a register alias of
dcbf9037 18261 the form alias .req reg, or a Neon .dn/.qn directive. */
c921be7d 18262 if (! create_register_alias (str, p)
477330fc 18263 && ! create_neon_reg_alias (str, p))
c19d1205 18264 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 18265
b99bd4ef
NC
18266 return;
18267 }
18268
278df34e 18269 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
5c3696f8 18270 as_tsktsk (_("s suffix on comparison instruction is deprecated"));
088fa78e 18271
037e8744
JB
18272 /* The value which unconditional instructions should have in place of the
18273 condition field. */
18274 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
18275
c19d1205 18276 if (thumb_mode)
b99bd4ef 18277 {
e74cfd16 18278 arm_feature_set variant;
8f06b2d8
PB
18279
18280 variant = cpu_variant;
18281 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
18282 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
18283 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 18284 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
18285 if (!opcode->tvariant
18286 || (thumb_mode == 1
18287 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 18288 {
84b52b66 18289 as_bad (_("selected processor does not support `%s' in Thumb mode"), str);
b99bd4ef
NC
18290 return;
18291 }
c19d1205
ZW
18292 if (inst.cond != COND_ALWAYS && !unified_syntax
18293 && opcode->tencode != do_t_branch)
b99bd4ef 18294 {
c19d1205 18295 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
18296 return;
18297 }
18298
fc289b0a
TP
18299 /* Two things are addressed here:
18300 1) Implicit require narrow instructions on Thumb-1.
18301 This avoids relaxation accidentally introducing Thumb-2
18302 instructions.
18303 2) Reject wide instructions in non Thumb-2 cores.
18304
18305 Only instructions with narrow and wide variants need to be handled
18306 but selecting all non wide-only instructions is easier. */
18307 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2)
ff8646ee 18308 && !t32_insn_ok (variant, opcode))
076d447c 18309 {
fc289b0a
TP
18310 if (inst.size_req == 0)
18311 inst.size_req = 2;
18312 else if (inst.size_req == 4)
752d5da4 18313 {
ff8646ee
TP
18314 if (ARM_CPU_HAS_FEATURE (variant, arm_ext_v8m))
18315 as_bad (_("selected processor does not support 32bit wide "
18316 "variant of instruction `%s'"), str);
18317 else
18318 as_bad (_("selected processor does not support `%s' in "
18319 "Thumb-2 mode"), str);
fc289b0a 18320 return;
752d5da4 18321 }
076d447c
PB
18322 }
18323
c19d1205
ZW
18324 inst.instruction = opcode->tvalue;
18325
5be8be5d 18326 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
477330fc
RM
18327 {
18328 /* Prepare the it_insn_type for those encodings that don't set
18329 it. */
18330 it_fsm_pre_encode ();
c19d1205 18331
477330fc 18332 opcode->tencode ();
e07e6e58 18333
477330fc
RM
18334 it_fsm_post_encode ();
18335 }
e27ec89e 18336
0110f2b8 18337 if (!(inst.error || inst.relax))
b99bd4ef 18338 {
9c2799c2 18339 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
c19d1205
ZW
18340 inst.size = (inst.instruction > 0xffff ? 4 : 2);
18341 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 18342 {
c19d1205 18343 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
18344 return;
18345 }
18346 }
076d447c
PB
18347
18348 /* Something has gone badly wrong if we try to relax a fixed size
477330fc 18349 instruction. */
9c2799c2 18350 gas_assert (inst.size_req == 0 || !inst.relax);
076d447c 18351
e74cfd16
PB
18352 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
18353 *opcode->tvariant);
ee065d83 18354 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
fc289b0a
TP
18355 set those bits when Thumb-2 32-bit instructions are seen. The impact
18356 of relaxable instructions will be considered later after we finish all
18357 relaxation. */
ff8646ee
TP
18358 if (ARM_FEATURE_CORE_EQUAL (cpu_variant, arm_arch_any))
18359 variant = arm_arch_none;
18360 else
18361 variant = cpu_variant;
18362 if (inst.size == 4 && !t32_insn_ok (variant, opcode))
e74cfd16
PB
18363 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
18364 arm_ext_v6t2);
cd000bff 18365
88714cb8
DG
18366 check_neon_suffixes;
18367
cd000bff 18368 if (!inst.error)
c877a2f2
NC
18369 {
18370 mapping_state (MAP_THUMB);
18371 }
c19d1205 18372 }
3e9e4fcf 18373 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205 18374 {
845b51d6
PB
18375 bfd_boolean is_bx;
18376
18377 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
18378 is_bx = (opcode->aencode == do_bx);
18379
c19d1205 18380 /* Check that this instruction is supported for this CPU. */
845b51d6
PB
18381 if (!(is_bx && fix_v4bx)
18382 && !(opcode->avariant &&
18383 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
b99bd4ef 18384 {
84b52b66 18385 as_bad (_("selected processor does not support `%s' in ARM mode"), str);
c19d1205 18386 return;
b99bd4ef 18387 }
c19d1205 18388 if (inst.size_req)
b99bd4ef 18389 {
c19d1205
ZW
18390 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
18391 return;
b99bd4ef
NC
18392 }
18393
c19d1205
ZW
18394 inst.instruction = opcode->avalue;
18395 if (opcode->tag == OT_unconditionalF)
eff0bc54 18396 inst.instruction |= 0xFU << 28;
c19d1205
ZW
18397 else
18398 inst.instruction |= inst.cond << 28;
18399 inst.size = INSN_SIZE;
5be8be5d 18400 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
477330fc
RM
18401 {
18402 it_fsm_pre_encode ();
18403 opcode->aencode ();
18404 it_fsm_post_encode ();
18405 }
ee065d83 18406 /* Arm mode bx is marked as both v4T and v5 because it's still required
477330fc 18407 on a hypothetical non-thumb v5 core. */
845b51d6 18408 if (is_bx)
e74cfd16 18409 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 18410 else
e74cfd16
PB
18411 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
18412 *opcode->avariant);
88714cb8
DG
18413
18414 check_neon_suffixes;
18415
cd000bff 18416 if (!inst.error)
c877a2f2
NC
18417 {
18418 mapping_state (MAP_ARM);
18419 }
b99bd4ef 18420 }
3e9e4fcf
JB
18421 else
18422 {
18423 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
18424 "-- `%s'"), str);
18425 return;
18426 }
c19d1205
ZW
18427 output_inst (str);
18428}
b99bd4ef 18429
e07e6e58
NC
18430static void
18431check_it_blocks_finished (void)
18432{
18433#ifdef OBJ_ELF
18434 asection *sect;
18435
18436 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
18437 if (seg_info (sect)->tc_segment_info_data.current_it.state
18438 == MANUAL_IT_BLOCK)
18439 {
18440 as_warn (_("section '%s' finished with an open IT block."),
18441 sect->name);
18442 }
18443#else
18444 if (now_it.state == MANUAL_IT_BLOCK)
18445 as_warn (_("file finished with an open IT block."));
18446#endif
18447}
18448
c19d1205
ZW
18449/* Various frobbings of labels and their addresses. */
18450
18451void
18452arm_start_line_hook (void)
18453{
18454 last_label_seen = NULL;
b99bd4ef
NC
18455}
18456
c19d1205
ZW
18457void
18458arm_frob_label (symbolS * sym)
b99bd4ef 18459{
c19d1205 18460 last_label_seen = sym;
b99bd4ef 18461
c19d1205 18462 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 18463
c19d1205
ZW
18464#if defined OBJ_COFF || defined OBJ_ELF
18465 ARM_SET_INTERWORK (sym, support_interwork);
18466#endif
b99bd4ef 18467
e07e6e58
NC
18468 force_automatic_it_block_close ();
18469
5f4273c7 18470 /* Note - do not allow local symbols (.Lxxx) to be labelled
c19d1205
ZW
18471 as Thumb functions. This is because these labels, whilst
18472 they exist inside Thumb code, are not the entry points for
18473 possible ARM->Thumb calls. Also, these labels can be used
18474 as part of a computed goto or switch statement. eg gcc
18475 can generate code that looks like this:
b99bd4ef 18476
c19d1205
ZW
18477 ldr r2, [pc, .Laaa]
18478 lsl r3, r3, #2
18479 ldr r2, [r3, r2]
18480 mov pc, r2
b99bd4ef 18481
c19d1205
ZW
18482 .Lbbb: .word .Lxxx
18483 .Lccc: .word .Lyyy
18484 ..etc...
18485 .Laaa: .word Lbbb
b99bd4ef 18486
c19d1205
ZW
18487 The first instruction loads the address of the jump table.
18488 The second instruction converts a table index into a byte offset.
18489 The third instruction gets the jump address out of the table.
18490 The fourth instruction performs the jump.
b99bd4ef 18491
c19d1205
ZW
18492 If the address stored at .Laaa is that of a symbol which has the
18493 Thumb_Func bit set, then the linker will arrange for this address
18494 to have the bottom bit set, which in turn would mean that the
18495 address computation performed by the third instruction would end
18496 up with the bottom bit set. Since the ARM is capable of unaligned
18497 word loads, the instruction would then load the incorrect address
18498 out of the jump table, and chaos would ensue. */
18499 if (label_is_thumb_function_name
18500 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
18501 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 18502 {
c19d1205
ZW
18503 /* When the address of a Thumb function is taken the bottom
18504 bit of that address should be set. This will allow
18505 interworking between Arm and Thumb functions to work
18506 correctly. */
b99bd4ef 18507
c19d1205 18508 THUMB_SET_FUNC (sym, 1);
b99bd4ef 18509
c19d1205 18510 label_is_thumb_function_name = FALSE;
b99bd4ef 18511 }
07a53e5c 18512
07a53e5c 18513 dwarf2_emit_label (sym);
b99bd4ef
NC
18514}
18515
c921be7d 18516bfd_boolean
c19d1205 18517arm_data_in_code (void)
b99bd4ef 18518{
c19d1205 18519 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 18520 {
c19d1205
ZW
18521 *input_line_pointer = '/';
18522 input_line_pointer += 5;
18523 *input_line_pointer = 0;
c921be7d 18524 return TRUE;
b99bd4ef
NC
18525 }
18526
c921be7d 18527 return FALSE;
b99bd4ef
NC
18528}
18529
c19d1205
ZW
18530char *
18531arm_canonicalize_symbol_name (char * name)
b99bd4ef 18532{
c19d1205 18533 int len;
b99bd4ef 18534
c19d1205
ZW
18535 if (thumb_mode && (len = strlen (name)) > 5
18536 && streq (name + len - 5, "/data"))
18537 *(name + len - 5) = 0;
b99bd4ef 18538
c19d1205 18539 return name;
b99bd4ef 18540}
c19d1205
ZW
18541\f
18542/* Table of all register names defined by default. The user can
18543 define additional names with .req. Note that all register names
18544 should appear in both upper and lowercase variants. Some registers
18545 also have mixed-case names. */
b99bd4ef 18546
dcbf9037 18547#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 18548#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 18549#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
18550#define REGSET(p,t) \
18551 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
18552 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
18553 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
18554 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
18555#define REGSETH(p,t) \
18556 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
18557 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
18558 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
18559 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
18560#define REGSET2(p,t) \
18561 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
18562 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
18563 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
18564 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
90ec0d68
MGD
18565#define SPLRBANK(base,bank,t) \
18566 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
18567 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
18568 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
18569 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
18570 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
18571 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
7ed4c4c5 18572
c19d1205 18573static const struct reg_entry reg_names[] =
7ed4c4c5 18574{
c19d1205
ZW
18575 /* ARM integer registers. */
18576 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 18577
c19d1205
ZW
18578 /* ATPCS synonyms. */
18579 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
18580 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
18581 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 18582
c19d1205
ZW
18583 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
18584 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
18585 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 18586
c19d1205
ZW
18587 /* Well-known aliases. */
18588 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
18589 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
18590
18591 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
18592 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
18593
18594 /* Coprocessor numbers. */
18595 REGSET(p, CP), REGSET(P, CP),
18596
18597 /* Coprocessor register numbers. The "cr" variants are for backward
18598 compatibility. */
18599 REGSET(c, CN), REGSET(C, CN),
18600 REGSET(cr, CN), REGSET(CR, CN),
18601
90ec0d68
MGD
18602 /* ARM banked registers. */
18603 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
18604 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
18605 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
18606 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
18607 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
18608 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
18609 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
18610
18611 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
18612 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
18613 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
18614 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
18615 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
1472d06f 18616 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(sp_fiq,512|(13<<16),RNB),
90ec0d68
MGD
18617 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
18618 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
18619
18620 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
18621 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
18622 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
18623 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
18624 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
18625 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
18626 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
fa94de6b 18627 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
90ec0d68
MGD
18628 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
18629
c19d1205
ZW
18630 /* FPA registers. */
18631 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
18632 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
18633
18634 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
18635 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
18636
18637 /* VFP SP registers. */
5287ad62
JB
18638 REGSET(s,VFS), REGSET(S,VFS),
18639 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
18640
18641 /* VFP DP Registers. */
5287ad62
JB
18642 REGSET(d,VFD), REGSET(D,VFD),
18643 /* Extra Neon DP registers. */
18644 REGSETH(d,VFD), REGSETH(D,VFD),
18645
18646 /* Neon QP registers. */
18647 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
18648
18649 /* VFP control registers. */
18650 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
18651 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
cd2cf30b
PB
18652 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
18653 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
18654 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
18655 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
c19d1205
ZW
18656
18657 /* Maverick DSP coprocessor registers. */
18658 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
18659 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
18660
18661 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
18662 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
18663 REGDEF(dspsc,0,DSPSC),
18664
18665 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
18666 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
18667 REGDEF(DSPSC,0,DSPSC),
18668
18669 /* iWMMXt data registers - p0, c0-15. */
18670 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
18671
18672 /* iWMMXt control registers - p1, c0-3. */
18673 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
18674 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
18675 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
18676 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
18677
18678 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
18679 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
18680 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
18681 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
18682 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
18683
18684 /* XScale accumulator registers. */
18685 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
18686};
18687#undef REGDEF
18688#undef REGNUM
18689#undef REGSET
7ed4c4c5 18690
c19d1205
ZW
18691/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
18692 within psr_required_here. */
18693static const struct asm_psr psrs[] =
18694{
18695 /* Backward compatibility notation. Note that "all" is no longer
18696 truly all possible PSR bits. */
18697 {"all", PSR_c | PSR_f},
18698 {"flg", PSR_f},
18699 {"ctl", PSR_c},
18700
18701 /* Individual flags. */
18702 {"f", PSR_f},
18703 {"c", PSR_c},
18704 {"x", PSR_x},
18705 {"s", PSR_s},
59b42a0d 18706
c19d1205
ZW
18707 /* Combinations of flags. */
18708 {"fs", PSR_f | PSR_s},
18709 {"fx", PSR_f | PSR_x},
18710 {"fc", PSR_f | PSR_c},
18711 {"sf", PSR_s | PSR_f},
18712 {"sx", PSR_s | PSR_x},
18713 {"sc", PSR_s | PSR_c},
18714 {"xf", PSR_x | PSR_f},
18715 {"xs", PSR_x | PSR_s},
18716 {"xc", PSR_x | PSR_c},
18717 {"cf", PSR_c | PSR_f},
18718 {"cs", PSR_c | PSR_s},
18719 {"cx", PSR_c | PSR_x},
18720 {"fsx", PSR_f | PSR_s | PSR_x},
18721 {"fsc", PSR_f | PSR_s | PSR_c},
18722 {"fxs", PSR_f | PSR_x | PSR_s},
18723 {"fxc", PSR_f | PSR_x | PSR_c},
18724 {"fcs", PSR_f | PSR_c | PSR_s},
18725 {"fcx", PSR_f | PSR_c | PSR_x},
18726 {"sfx", PSR_s | PSR_f | PSR_x},
18727 {"sfc", PSR_s | PSR_f | PSR_c},
18728 {"sxf", PSR_s | PSR_x | PSR_f},
18729 {"sxc", PSR_s | PSR_x | PSR_c},
18730 {"scf", PSR_s | PSR_c | PSR_f},
18731 {"scx", PSR_s | PSR_c | PSR_x},
18732 {"xfs", PSR_x | PSR_f | PSR_s},
18733 {"xfc", PSR_x | PSR_f | PSR_c},
18734 {"xsf", PSR_x | PSR_s | PSR_f},
18735 {"xsc", PSR_x | PSR_s | PSR_c},
18736 {"xcf", PSR_x | PSR_c | PSR_f},
18737 {"xcs", PSR_x | PSR_c | PSR_s},
18738 {"cfs", PSR_c | PSR_f | PSR_s},
18739 {"cfx", PSR_c | PSR_f | PSR_x},
18740 {"csf", PSR_c | PSR_s | PSR_f},
18741 {"csx", PSR_c | PSR_s | PSR_x},
18742 {"cxf", PSR_c | PSR_x | PSR_f},
18743 {"cxs", PSR_c | PSR_x | PSR_s},
18744 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
18745 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
18746 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
18747 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
18748 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
18749 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
18750 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
18751 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
18752 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
18753 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
18754 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
18755 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
18756 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
18757 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
18758 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
18759 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
18760 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
18761 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
18762 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
18763 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
18764 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
18765 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
18766 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
18767 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
18768};
18769
62b3e311
PB
18770/* Table of V7M psr names. */
18771static const struct asm_psr v7m_psrs[] =
18772{
2b744c99
PB
18773 {"apsr", 0 }, {"APSR", 0 },
18774 {"iapsr", 1 }, {"IAPSR", 1 },
18775 {"eapsr", 2 }, {"EAPSR", 2 },
18776 {"psr", 3 }, {"PSR", 3 },
18777 {"xpsr", 3 }, {"XPSR", 3 }, {"xPSR", 3 },
18778 {"ipsr", 5 }, {"IPSR", 5 },
18779 {"epsr", 6 }, {"EPSR", 6 },
18780 {"iepsr", 7 }, {"IEPSR", 7 },
16a1fa25
TP
18781 {"msp", 8 }, {"MSP", 8 }, {"msp_s", 8 }, {"MSP_S", 8 },
18782 {"psp", 9 }, {"PSP", 9 }, {"psp_s", 9 }, {"PSP_S", 9 },
2b744c99
PB
18783 {"primask", 16}, {"PRIMASK", 16},
18784 {"basepri", 17}, {"BASEPRI", 17},
00bbc0bd
NC
18785 {"basepri_max", 18}, {"BASEPRI_MAX", 18},
18786 {"basepri_max", 18}, {"BASEPRI_MASK", 18}, /* Typo, preserved for backwards compatibility. */
2b744c99 18787 {"faultmask", 19}, {"FAULTMASK", 19},
16a1fa25
TP
18788 {"control", 20}, {"CONTROL", 20},
18789 {"msp_ns", 0x88}, {"MSP_NS", 0x88},
18790 {"psp_ns", 0x89}, {"PSP_NS", 0x89}
62b3e311
PB
18791};
18792
c19d1205
ZW
18793/* Table of all shift-in-operand names. */
18794static const struct asm_shift_name shift_names [] =
b99bd4ef 18795{
c19d1205
ZW
18796 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
18797 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
18798 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
18799 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
18800 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
18801 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
18802};
b99bd4ef 18803
c19d1205
ZW
18804/* Table of all explicit relocation names. */
18805#ifdef OBJ_ELF
18806static struct reloc_entry reloc_names[] =
18807{
18808 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
18809 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
18810 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
18811 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
18812 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
18813 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
18814 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
18815 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
18816 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
18817 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
b43420e6 18818 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
0855e32b
NS
18819 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
18820 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
477330fc 18821 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
0855e32b 18822 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
477330fc 18823 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
0855e32b 18824 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
477330fc 18825 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ}
c19d1205
ZW
18826};
18827#endif
b99bd4ef 18828
c19d1205
ZW
18829/* Table of all conditional affixes. 0xF is not defined as a condition code. */
18830static const struct asm_cond conds[] =
18831{
18832 {"eq", 0x0},
18833 {"ne", 0x1},
18834 {"cs", 0x2}, {"hs", 0x2},
18835 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
18836 {"mi", 0x4},
18837 {"pl", 0x5},
18838 {"vs", 0x6},
18839 {"vc", 0x7},
18840 {"hi", 0x8},
18841 {"ls", 0x9},
18842 {"ge", 0xa},
18843 {"lt", 0xb},
18844 {"gt", 0xc},
18845 {"le", 0xd},
18846 {"al", 0xe}
18847};
bfae80f2 18848
e797f7e0 18849#define UL_BARRIER(L,U,CODE,FEAT) \
823d2571
TG
18850 { L, CODE, ARM_FEATURE_CORE_LOW (FEAT) }, \
18851 { U, CODE, ARM_FEATURE_CORE_LOW (FEAT) }
e797f7e0 18852
62b3e311
PB
18853static struct asm_barrier_opt barrier_opt_names[] =
18854{
e797f7e0
MGD
18855 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
18856 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
18857 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
18858 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
18859 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
18860 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
18861 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
18862 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
18863 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
18864 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
18865 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
18866 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
18867 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
18868 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
18869 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
18870 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
62b3e311
PB
18871};
18872
e797f7e0
MGD
18873#undef UL_BARRIER
18874
c19d1205
ZW
18875/* Table of ARM-format instructions. */
18876
18877/* Macros for gluing together operand strings. N.B. In all cases
18878 other than OPS0, the trailing OP_stop comes from default
18879 zero-initialization of the unspecified elements of the array. */
18880#define OPS0() { OP_stop, }
18881#define OPS1(a) { OP_##a, }
18882#define OPS2(a,b) { OP_##a,OP_##b, }
18883#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
18884#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
18885#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
18886#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
18887
5be8be5d
DG
18888/* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
18889 This is useful when mixing operands for ARM and THUMB, i.e. using the
18890 MIX_ARM_THUMB_OPERANDS macro.
18891 In order to use these macros, prefix the number of operands with _
18892 e.g. _3. */
18893#define OPS_1(a) { a, }
18894#define OPS_2(a,b) { a,b, }
18895#define OPS_3(a,b,c) { a,b,c, }
18896#define OPS_4(a,b,c,d) { a,b,c,d, }
18897#define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
18898#define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
18899
c19d1205
ZW
18900/* These macros abstract out the exact format of the mnemonic table and
18901 save some repeated characters. */
18902
18903/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
18904#define TxCE(mnem, op, top, nops, ops, ae, te) \
21d799b5 18905 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 18906 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
18907
18908/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
18909 a T_MNEM_xyz enumerator. */
18910#define TCE(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 18911 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 18912#define tCE(mnem, aop, top, nops, ops, ae, te) \
21d799b5 18913 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
18914
18915/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
18916 infix after the third character. */
18917#define TxC3(mnem, op, top, nops, ops, ae, te) \
21d799b5 18918 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 18919 THUMB_VARIANT, do_##ae, do_##te }
088fa78e 18920#define TxC3w(mnem, op, top, nops, ops, ae, te) \
21d799b5 18921 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
088fa78e 18922 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 18923#define TC3(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 18924 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e 18925#define TC3w(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 18926 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 18927#define tC3(mnem, aop, top, nops, ops, ae, te) \
21d799b5 18928 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
088fa78e 18929#define tC3w(mnem, aop, top, nops, ops, ae, te) \
21d799b5 18930 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205 18931
c19d1205 18932/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
18933 field is still 0xE. Many of the Thumb variants can be executed
18934 conditionally, so this is checked separately. */
c19d1205 18935#define TUE(mnem, op, top, nops, ops, ae, te) \
21d799b5 18936 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 18937 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 18938
dd5181d5
KT
18939/* Same as TUE but the encoding function for ARM and Thumb modes is the same.
18940 Used by mnemonics that have very minimal differences in the encoding for
18941 ARM and Thumb variants and can be handled in a common function. */
18942#define TUEc(mnem, op, top, nops, ops, en) \
18943 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
18944 THUMB_VARIANT, do_##en, do_##en }
18945
c19d1205
ZW
18946/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
18947 condition code field. */
18948#define TUF(mnem, op, top, nops, ops, ae, te) \
21d799b5 18949 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 18950 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
18951
18952/* ARM-only variants of all the above. */
6a86118a 18953#define CE(mnem, op, nops, ops, ae) \
21d799b5 18954 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
6a86118a
NC
18955
18956#define C3(mnem, op, nops, ops, ae) \
18957 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
18958
e3cb604e
PB
18959/* Legacy mnemonics that always have conditional infix after the third
18960 character. */
18961#define CL(mnem, op, nops, ops, ae) \
21d799b5 18962 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
18963 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
18964
8f06b2d8
PB
18965/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
18966#define cCE(mnem, op, nops, ops, ae) \
21d799b5 18967 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 18968
e3cb604e
PB
18969/* Legacy coprocessor instructions where conditional infix and conditional
18970 suffix are ambiguous. For consistency this includes all FPA instructions,
18971 not just the potentially ambiguous ones. */
18972#define cCL(mnem, op, nops, ops, ae) \
21d799b5 18973 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
18974 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
18975
18976/* Coprocessor, takes either a suffix or a position-3 infix
18977 (for an FPA corner case). */
18978#define C3E(mnem, op, nops, ops, ae) \
21d799b5 18979 { mnem, OPS##nops ops, OT_csuf_or_in3, \
e3cb604e 18980 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 18981
6a86118a 18982#define xCM_(m1, m2, m3, op, nops, ops, ae) \
21d799b5
NC
18983 { m1 #m2 m3, OPS##nops ops, \
18984 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
6a86118a
NC
18985 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
18986
18987#define CM(m1, m2, op, nops, ops, ae) \
e07e6e58
NC
18988 xCM_ (m1, , m2, op, nops, ops, ae), \
18989 xCM_ (m1, eq, m2, op, nops, ops, ae), \
18990 xCM_ (m1, ne, m2, op, nops, ops, ae), \
18991 xCM_ (m1, cs, m2, op, nops, ops, ae), \
18992 xCM_ (m1, hs, m2, op, nops, ops, ae), \
18993 xCM_ (m1, cc, m2, op, nops, ops, ae), \
18994 xCM_ (m1, ul, m2, op, nops, ops, ae), \
18995 xCM_ (m1, lo, m2, op, nops, ops, ae), \
18996 xCM_ (m1, mi, m2, op, nops, ops, ae), \
18997 xCM_ (m1, pl, m2, op, nops, ops, ae), \
18998 xCM_ (m1, vs, m2, op, nops, ops, ae), \
18999 xCM_ (m1, vc, m2, op, nops, ops, ae), \
19000 xCM_ (m1, hi, m2, op, nops, ops, ae), \
19001 xCM_ (m1, ls, m2, op, nops, ops, ae), \
19002 xCM_ (m1, ge, m2, op, nops, ops, ae), \
19003 xCM_ (m1, lt, m2, op, nops, ops, ae), \
19004 xCM_ (m1, gt, m2, op, nops, ops, ae), \
19005 xCM_ (m1, le, m2, op, nops, ops, ae), \
19006 xCM_ (m1, al, m2, op, nops, ops, ae)
6a86118a
NC
19007
19008#define UE(mnem, op, nops, ops, ae) \
19009 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
19010
19011#define UF(mnem, op, nops, ops, ae) \
19012 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
19013
5287ad62
JB
19014/* Neon data-processing. ARM versions are unconditional with cond=0xf.
19015 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
19016 use the same encoding function for each. */
19017#define NUF(mnem, op, nops, ops, enc) \
19018 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
19019 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
19020
19021/* Neon data processing, version which indirects through neon_enc_tab for
19022 the various overloaded versions of opcodes. */
19023#define nUF(mnem, op, nops, ops, enc) \
21d799b5 19024 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
19025 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
19026
19027/* Neon insn with conditional suffix for the ARM version, non-overloaded
19028 version. */
037e8744
JB
19029#define NCE_tag(mnem, op, nops, ops, enc, tag) \
19030 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
19031 THUMB_VARIANT, do_##enc, do_##enc }
19032
037e8744 19033#define NCE(mnem, op, nops, ops, enc) \
e07e6e58 19034 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
19035
19036#define NCEF(mnem, op, nops, ops, enc) \
e07e6e58 19037 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 19038
5287ad62 19039/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744 19040#define nCE_tag(mnem, op, nops, ops, enc, tag) \
21d799b5 19041 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
19042 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
19043
037e8744 19044#define nCE(mnem, op, nops, ops, enc) \
e07e6e58 19045 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
19046
19047#define nCEF(mnem, op, nops, ops, enc) \
e07e6e58 19048 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 19049
c19d1205
ZW
19050#define do_0 0
19051
c19d1205 19052static const struct asm_opcode insns[] =
bfae80f2 19053{
74db7efb
NC
19054#define ARM_VARIANT & arm_ext_v1 /* Core ARM Instructions. */
19055#define THUMB_VARIANT & arm_ext_v4t
21d799b5
NC
19056 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
19057 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
19058 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
19059 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
19060 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
19061 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
19062 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
19063 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
19064 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
19065 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
19066 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
19067 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
19068 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
19069 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
19070 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
19071 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
c19d1205
ZW
19072
19073 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
19074 for setting PSR flag bits. They are obsolete in V6 and do not
19075 have Thumb equivalents. */
21d799b5
NC
19076 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
19077 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
19078 CL("tstp", 110f000, 2, (RR, SH), cmp),
19079 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
19080 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
19081 CL("cmpp", 150f000, 2, (RR, SH), cmp),
19082 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
19083 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
19084 CL("cmnp", 170f000, 2, (RR, SH), cmp),
19085
19086 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
72d98d16 19087 tC3("movs", 1b00000, _movs, 2, (RR, SHG), mov, t_mov_cmp),
21d799b5
NC
19088 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
19089 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
19090
19091 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
5be8be5d
DG
19092 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
19093 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
19094 OP_RRnpc),
19095 OP_ADDRGLDR),ldst, t_ldst),
19096 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
21d799b5
NC
19097
19098 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19099 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19100 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19101 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19102 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19103 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19104
19105 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
19106 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
19107 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
19108 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 19109
c19d1205 19110 /* Pseudo ops. */
21d799b5 19111 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac 19112 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
21d799b5 19113 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
74db7efb 19114 tCE("udf", 7f000f0, _udf, 1, (oIffffb), bkpt, t_udf),
c19d1205
ZW
19115
19116 /* Thumb-compatibility pseudo ops. */
21d799b5
NC
19117 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
19118 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
19119 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
19120 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
19121 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
19122 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
19123 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
19124 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
19125 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
19126 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
19127 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
19128 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
c19d1205 19129
16a4cf17 19130 /* These may simplify to neg. */
21d799b5
NC
19131 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
19132 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
16a4cf17 19133
c921be7d
NC
19134#undef THUMB_VARIANT
19135#define THUMB_VARIANT & arm_ext_v6
19136
21d799b5 19137 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
19138
19139 /* V1 instructions with no Thumb analogue prior to V6T2. */
c921be7d
NC
19140#undef THUMB_VARIANT
19141#define THUMB_VARIANT & arm_ext_v6t2
19142
21d799b5
NC
19143 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
19144 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
19145 CL("teqp", 130f000, 2, (RR, SH), cmp),
c19d1205 19146
5be8be5d
DG
19147 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
19148 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
19149 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
19150 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
c19d1205 19151
21d799b5
NC
19152 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19153 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 19154
21d799b5
NC
19155 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19156 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
19157
19158 /* V1 instructions with no Thumb analogue at all. */
21d799b5 19159 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
c19d1205
ZW
19160 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
19161
19162 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
19163 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
19164 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
19165 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
19166 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
19167 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
19168 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
19169 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
19170
c921be7d
NC
19171#undef ARM_VARIANT
19172#define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
19173#undef THUMB_VARIANT
19174#define THUMB_VARIANT & arm_ext_v4t
19175
21d799b5
NC
19176 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
19177 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
c19d1205 19178
c921be7d
NC
19179#undef THUMB_VARIANT
19180#define THUMB_VARIANT & arm_ext_v6t2
19181
21d799b5 19182 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
c19d1205
ZW
19183 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
19184
19185 /* Generic coprocessor instructions. */
21d799b5
NC
19186 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
19187 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19188 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19189 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19190 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19191 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
db472d6f 19192 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 19193
c921be7d
NC
19194#undef ARM_VARIANT
19195#define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
19196
21d799b5 19197 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
c19d1205
ZW
19198 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
19199
c921be7d
NC
19200#undef ARM_VARIANT
19201#define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
19202#undef THUMB_VARIANT
19203#define THUMB_VARIANT & arm_ext_msr
19204
d2cd1205
JB
19205 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
19206 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
c19d1205 19207
c921be7d
NC
19208#undef ARM_VARIANT
19209#define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
19210#undef THUMB_VARIANT
19211#define THUMB_VARIANT & arm_ext_v6t2
19212
21d799b5
NC
19213 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
19214 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
19215 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
19216 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
19217 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
19218 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
19219 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
19220 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
c19d1205 19221
c921be7d
NC
19222#undef ARM_VARIANT
19223#define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
19224#undef THUMB_VARIANT
19225#define THUMB_VARIANT & arm_ext_v4t
19226
5be8be5d
DG
19227 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
19228 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
19229 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
19230 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
56c0a61f
RE
19231 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
19232 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
c19d1205 19233
c921be7d
NC
19234#undef ARM_VARIANT
19235#define ARM_VARIANT & arm_ext_v4t_5
19236
c19d1205
ZW
19237 /* ARM Architecture 4T. */
19238 /* Note: bx (and blx) are required on V5, even if the processor does
19239 not support Thumb. */
21d799b5 19240 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
c19d1205 19241
c921be7d
NC
19242#undef ARM_VARIANT
19243#define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
19244#undef THUMB_VARIANT
19245#define THUMB_VARIANT & arm_ext_v5t
19246
c19d1205
ZW
19247 /* Note: blx has 2 variants; the .value coded here is for
19248 BLX(2). Only this variant has conditional execution. */
21d799b5
NC
19249 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
19250 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
c19d1205 19251
c921be7d
NC
19252#undef THUMB_VARIANT
19253#define THUMB_VARIANT & arm_ext_v6t2
19254
21d799b5
NC
19255 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
19256 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19257 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19258 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19259 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19260 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
19261 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
19262 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 19263
c921be7d 19264#undef ARM_VARIANT
74db7efb
NC
19265#define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
19266#undef THUMB_VARIANT
19267#define THUMB_VARIANT & arm_ext_v5exp
c921be7d 19268
21d799b5
NC
19269 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
19270 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
19271 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
19272 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 19273
21d799b5
NC
19274 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
19275 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 19276
21d799b5
NC
19277 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
19278 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
19279 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
19280 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
c19d1205 19281
21d799b5
NC
19282 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19283 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19284 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19285 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 19286
21d799b5
NC
19287 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19288 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 19289
03ee1b7f
NC
19290 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
19291 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
19292 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
19293 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
c19d1205 19294
c921be7d 19295#undef ARM_VARIANT
74db7efb
NC
19296#define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
19297#undef THUMB_VARIANT
19298#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 19299
21d799b5 19300 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
5be8be5d
DG
19301 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
19302 ldrd, t_ldstd),
19303 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
19304 ADDRGLDRS), ldrd, t_ldstd),
c19d1205 19305
21d799b5
NC
19306 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
19307 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
c19d1205 19308
c921be7d
NC
19309#undef ARM_VARIANT
19310#define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
19311
21d799b5 19312 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
c19d1205 19313
c921be7d
NC
19314#undef ARM_VARIANT
19315#define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
19316#undef THUMB_VARIANT
19317#define THUMB_VARIANT & arm_ext_v6
19318
21d799b5
NC
19319 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
19320 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
19321 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
19322 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
19323 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
19324 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19325 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19326 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19327 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19328 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
c19d1205 19329
c921be7d 19330#undef THUMB_VARIANT
ff8646ee 19331#define THUMB_VARIANT & arm_ext_v6t2_v8m
c921be7d 19332
5be8be5d
DG
19333 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
19334 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
19335 strex, t_strex),
ff8646ee
TP
19336#undef THUMB_VARIANT
19337#define THUMB_VARIANT & arm_ext_v6t2
19338
21d799b5
NC
19339 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
19340 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311 19341
21d799b5
NC
19342 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
19343 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
62b3e311 19344
9e3c6df6 19345/* ARM V6 not included in V7M. */
c921be7d
NC
19346#undef THUMB_VARIANT
19347#define THUMB_VARIANT & arm_ext_v6_notm
9e3c6df6 19348 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6 19349 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
9e3c6df6
PB
19350 UF(rfeib, 9900a00, 1, (RRw), rfe),
19351 UF(rfeda, 8100a00, 1, (RRw), rfe),
19352 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
19353 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6
RE
19354 UF(rfefa, 8100a00, 1, (RRw), rfe),
19355 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
19356 UF(rfeed, 9900a00, 1, (RRw), rfe),
9e3c6df6 19357 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
d709e4e6
RE
19358 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
19359 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
9e3c6df6 19360 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
d709e4e6 19361 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
9e3c6df6 19362 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
d709e4e6 19363 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
9e3c6df6 19364 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
d709e4e6 19365 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
941c9cad 19366 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
c921be7d 19367
9e3c6df6
PB
19368/* ARM V6 not included in V7M (eg. integer SIMD). */
19369#undef THUMB_VARIANT
19370#define THUMB_VARIANT & arm_ext_v6_dsp
21d799b5
NC
19371 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
19372 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
19373 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19374 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19375 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19376 /* Old name for QASX. */
74db7efb 19377 TCE("qaddsubx",6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5 19378 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19379 /* Old name for QSAX. */
74db7efb 19380 TCE("qsubaddx",6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19381 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19382 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19383 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19384 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19385 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19386 /* Old name for SASX. */
74db7efb 19387 TCE("saddsubx",6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19388 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19389 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 19390 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19391 /* Old name for SHASX. */
21d799b5 19392 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 19393 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19394 /* Old name for SHSAX. */
21d799b5
NC
19395 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19396 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19397 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19398 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19399 /* Old name for SSAX. */
74db7efb 19400 TCE("ssubaddx",6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19401 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19402 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19403 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19404 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19405 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19406 /* Old name for UASX. */
74db7efb 19407 TCE("uaddsubx",6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19408 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19409 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 19410 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19411 /* Old name for UHASX. */
21d799b5
NC
19412 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19413 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19414 /* Old name for UHSAX. */
21d799b5
NC
19415 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19416 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19417 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19418 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19419 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 19420 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19421 /* Old name for UQASX. */
21d799b5
NC
19422 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19423 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19424 /* Old name for UQSAX. */
21d799b5
NC
19425 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19426 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19427 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19428 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19429 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19430 /* Old name for USAX. */
74db7efb 19431 TCE("usubaddx",6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5 19432 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19433 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19434 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19435 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19436 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19437 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19438 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19439 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19440 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19441 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19442 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19443 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19444 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
19445 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
19446 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19447 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19448 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
19449 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
19450 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19451 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19452 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19453 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19454 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19455 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19456 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19457 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19458 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19459 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
21d799b5
NC
19460 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
19461 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
19462 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19463 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19464 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
c19d1205 19465
c921be7d
NC
19466#undef ARM_VARIANT
19467#define ARM_VARIANT & arm_ext_v6k
19468#undef THUMB_VARIANT
19469#define THUMB_VARIANT & arm_ext_v6k
19470
21d799b5
NC
19471 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
19472 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
19473 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
19474 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
c19d1205 19475
c921be7d
NC
19476#undef THUMB_VARIANT
19477#define THUMB_VARIANT & arm_ext_v6_notm
5be8be5d
DG
19478 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
19479 ldrexd, t_ldrexd),
19480 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
19481 RRnpcb), strexd, t_strexd),
ebdca51a 19482
c921be7d 19483#undef THUMB_VARIANT
ff8646ee 19484#define THUMB_VARIANT & arm_ext_v6t2_v8m
5be8be5d
DG
19485 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
19486 rd_rn, rd_rn),
19487 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
19488 rd_rn, rd_rn),
19489 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 19490 strex, t_strexbh),
5be8be5d 19491 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 19492 strex, t_strexbh),
21d799b5 19493 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
c19d1205 19494
c921be7d 19495#undef ARM_VARIANT
f4c65163 19496#define ARM_VARIANT & arm_ext_sec
74db7efb 19497#undef THUMB_VARIANT
f4c65163 19498#define THUMB_VARIANT & arm_ext_sec
c921be7d 19499
21d799b5 19500 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205 19501
90ec0d68
MGD
19502#undef ARM_VARIANT
19503#define ARM_VARIANT & arm_ext_virt
19504#undef THUMB_VARIANT
19505#define THUMB_VARIANT & arm_ext_virt
19506
19507 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
19508 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
19509
ddfded2f
MW
19510#undef ARM_VARIANT
19511#define ARM_VARIANT & arm_ext_pan
19512#undef THUMB_VARIANT
19513#define THUMB_VARIANT & arm_ext_pan
19514
19515 TUF("setpan", 1100000, b610, 1, (I7), setpan, t_setpan),
19516
c921be7d 19517#undef ARM_VARIANT
74db7efb 19518#define ARM_VARIANT & arm_ext_v6t2
f4c65163
MGD
19519#undef THUMB_VARIANT
19520#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 19521
21d799b5
NC
19522 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
19523 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
19524 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
19525 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
c19d1205 19526
21d799b5 19527 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
21d799b5 19528 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205 19529
5be8be5d
DG
19530 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
19531 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
19532 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
19533 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
c19d1205 19534
ff8646ee
TP
19535#undef THUMB_VARIANT
19536#define THUMB_VARIANT & arm_ext_v6t2_v8m
19537 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
19538 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
19539
bf3eeda7 19540 /* Thumb-only instructions. */
74db7efb 19541#undef ARM_VARIANT
bf3eeda7
NS
19542#define ARM_VARIANT NULL
19543 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
19544 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
c921be7d
NC
19545
19546 /* ARM does not really have an IT instruction, so always allow it.
19547 The opcode is copied from Thumb in order to allow warnings in
19548 -mimplicit-it=[never | arm] modes. */
19549#undef ARM_VARIANT
19550#define ARM_VARIANT & arm_ext_v1
ff8646ee
TP
19551#undef THUMB_VARIANT
19552#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 19553
21d799b5
NC
19554 TUE("it", bf08, bf08, 1, (COND), it, t_it),
19555 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
19556 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
19557 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
19558 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
19559 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
19560 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
19561 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
19562 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
19563 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
19564 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
19565 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
19566 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
19567 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
19568 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
1c444d06 19569 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
21d799b5
NC
19570 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
19571 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
c19d1205 19572
92e90b6e 19573 /* Thumb2 only instructions. */
c921be7d
NC
19574#undef ARM_VARIANT
19575#define ARM_VARIANT NULL
92e90b6e 19576
21d799b5
NC
19577 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
19578 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
19579 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
19580 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
19581 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
19582 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
92e90b6e 19583
eea54501
MGD
19584 /* Hardware division instructions. */
19585#undef ARM_VARIANT
19586#define ARM_VARIANT & arm_ext_adiv
c921be7d
NC
19587#undef THUMB_VARIANT
19588#define THUMB_VARIANT & arm_ext_div
19589
eea54501
MGD
19590 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
19591 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
62b3e311 19592
7e806470 19593 /* ARM V6M/V7 instructions. */
c921be7d
NC
19594#undef ARM_VARIANT
19595#define ARM_VARIANT & arm_ext_barrier
19596#undef THUMB_VARIANT
19597#define THUMB_VARIANT & arm_ext_barrier
19598
ccb84d65
JB
19599 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, barrier),
19600 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, barrier),
19601 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, barrier),
7e806470 19602
62b3e311 19603 /* ARM V7 instructions. */
c921be7d
NC
19604#undef ARM_VARIANT
19605#define ARM_VARIANT & arm_ext_v7
19606#undef THUMB_VARIANT
19607#define THUMB_VARIANT & arm_ext_v7
19608
21d799b5
NC
19609 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
19610 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
62b3e311 19611
74db7efb 19612#undef ARM_VARIANT
60e5ef9f 19613#define ARM_VARIANT & arm_ext_mp
74db7efb 19614#undef THUMB_VARIANT
60e5ef9f
MGD
19615#define THUMB_VARIANT & arm_ext_mp
19616
19617 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
19618
53c4b28b
MGD
19619 /* AArchv8 instructions. */
19620#undef ARM_VARIANT
19621#define ARM_VARIANT & arm_ext_v8
4ed7ed8d
TP
19622
19623/* Instructions shared between armv8-a and armv8-m. */
53c4b28b 19624#undef THUMB_VARIANT
4ed7ed8d 19625#define THUMB_VARIANT & arm_ext_atomics
53c4b28b 19626
4ed7ed8d
TP
19627 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19628 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19629 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19630 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
19631 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
19632 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
4b8c8c02 19633 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
4b8c8c02
RE
19634 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
19635 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19636 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
19637 stlex, t_stlex),
4b8c8c02
RE
19638 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
19639 stlex, t_stlex),
19640 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
19641 stlex, t_stlex),
4ed7ed8d
TP
19642#undef THUMB_VARIANT
19643#define THUMB_VARIANT & arm_ext_v8
53c4b28b 19644
4ed7ed8d
TP
19645 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
19646 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
19647 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
19648 ldrexd, t_ldrexd),
19649 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
19650 strexd, t_strexd),
8884b720 19651 /* ARMv8 T32 only. */
74db7efb 19652#undef ARM_VARIANT
b79f7053
MGD
19653#define ARM_VARIANT NULL
19654 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
19655 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
19656 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
19657
33399f07
MGD
19658 /* FP for ARMv8. */
19659#undef ARM_VARIANT
a715796b 19660#define ARM_VARIANT & fpu_vfp_ext_armv8xd
33399f07 19661#undef THUMB_VARIANT
a715796b 19662#define THUMB_VARIANT & fpu_vfp_ext_armv8xd
33399f07
MGD
19663
19664 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
19665 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
19666 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
19667 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
73924fbc
MGD
19668 nUF(vmaxnm, _vmaxnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
19669 nUF(vminnm, _vminnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
7e8e6784
MGD
19670 nUF(vcvta, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvta),
19671 nUF(vcvtn, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtn),
19672 nUF(vcvtp, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtp),
19673 nUF(vcvtm, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtm),
30bdf752
MGD
19674 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
19675 nCE(vrintz, _vrintr, 2, (RNSDQ, oRNSDQ), vrintz),
19676 nCE(vrintx, _vrintr, 2, (RNSDQ, oRNSDQ), vrintx),
19677 nUF(vrinta, _vrinta, 2, (RNSDQ, oRNSDQ), vrinta),
19678 nUF(vrintn, _vrinta, 2, (RNSDQ, oRNSDQ), vrintn),
19679 nUF(vrintp, _vrinta, 2, (RNSDQ, oRNSDQ), vrintp),
19680 nUF(vrintm, _vrinta, 2, (RNSDQ, oRNSDQ), vrintm),
33399f07 19681
91ff7894
MGD
19682 /* Crypto v1 extensions. */
19683#undef ARM_VARIANT
19684#define ARM_VARIANT & fpu_crypto_ext_armv8
19685#undef THUMB_VARIANT
19686#define THUMB_VARIANT & fpu_crypto_ext_armv8
19687
19688 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
19689 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
19690 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
19691 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
48adcd8e
MGD
19692 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
19693 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
19694 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
19695 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
19696 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
19697 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
19698 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
3c9017d2
MGD
19699 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
19700 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
19701 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
91ff7894 19702
dd5181d5 19703#undef ARM_VARIANT
74db7efb 19704#define ARM_VARIANT & crc_ext_armv8
dd5181d5
KT
19705#undef THUMB_VARIANT
19706#define THUMB_VARIANT & crc_ext_armv8
19707 TUEc("crc32b", 1000040, fac0f080, 3, (RR, oRR, RR), crc32b),
19708 TUEc("crc32h", 1200040, fac0f090, 3, (RR, oRR, RR), crc32h),
19709 TUEc("crc32w", 1400040, fac0f0a0, 3, (RR, oRR, RR), crc32w),
19710 TUEc("crc32cb",1000240, fad0f080, 3, (RR, oRR, RR), crc32cb),
19711 TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
19712 TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
19713
105bde57
MW
19714 /* ARMv8.2 RAS extension. */
19715#undef ARM_VARIANT
19716#define ARM_VARIANT & arm_ext_v8_2
19717#undef THUMB_VARIANT
19718#define THUMB_VARIANT & arm_ext_v8_2
19719 TUE ("esb", 320f010, f3af8010, 0, (), noargs, noargs),
19720
c921be7d
NC
19721#undef ARM_VARIANT
19722#define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
53c4b28b
MGD
19723#undef THUMB_VARIANT
19724#define THUMB_VARIANT NULL
c921be7d 19725
21d799b5
NC
19726 cCE("wfs", e200110, 1, (RR), rd),
19727 cCE("rfs", e300110, 1, (RR), rd),
19728 cCE("wfc", e400110, 1, (RR), rd),
19729 cCE("rfc", e500110, 1, (RR), rd),
19730
19731 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
19732 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
19733 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
19734 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
19735
19736 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
19737 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
19738 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
19739 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
19740
19741 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
19742 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
19743 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
19744 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
19745 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
19746 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
19747 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
19748 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
19749 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
19750 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
19751 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
19752 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
19753
19754 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
19755 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
19756 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
19757 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
19758 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
19759 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
19760 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
19761 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
19762 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
19763 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
19764 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
19765 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
19766
19767 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
19768 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
19769 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
19770 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
19771 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
19772 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
19773 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
19774 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
19775 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
19776 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
19777 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
19778 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
19779
19780 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
19781 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
19782 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
19783 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
19784 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
19785 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
19786 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
19787 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
19788 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
19789 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
19790 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
19791 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
19792
19793 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
19794 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
19795 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
19796 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
19797 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
19798 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
19799 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
19800 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
19801 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
19802 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
19803 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
19804 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
19805
19806 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
19807 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
19808 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
19809 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
19810 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
19811 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
19812 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
19813 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
19814 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
19815 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
19816 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
19817 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
19818
19819 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
19820 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
19821 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
19822 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
19823 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
19824 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
19825 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
19826 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
19827 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
19828 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
19829 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
19830 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
19831
19832 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
19833 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
19834 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
19835 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
19836 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
19837 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
19838 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
19839 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
19840 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
19841 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
19842 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
19843 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
19844
19845 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
19846 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
19847 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
19848 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
19849 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
19850 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
19851 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
19852 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
19853 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
19854 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
19855 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
19856 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
19857
19858 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
19859 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
19860 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
19861 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
19862 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
19863 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
19864 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
19865 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
19866 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
19867 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
19868 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
19869 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
19870
19871 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
19872 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
19873 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
19874 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
19875 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
19876 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
19877 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
19878 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
19879 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
19880 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
19881 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
19882 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
19883
19884 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
19885 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
19886 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
19887 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
19888 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
19889 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
19890 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
19891 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
19892 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
19893 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
19894 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
19895 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
19896
19897 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
19898 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
19899 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
19900 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
19901 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
19902 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
19903 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
19904 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
19905 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
19906 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
19907 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
19908 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
19909
19910 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
19911 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
19912 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
19913 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
19914 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
19915 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
19916 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
19917 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
19918 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
19919 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
19920 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
19921 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
19922
19923 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
19924 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
19925 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
19926 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
19927 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
19928 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
19929 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
19930 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
19931 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
19932 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
19933 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
19934 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
19935
19936 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
19937 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
19938 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
19939 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
19940 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
19941 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
19942 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
19943 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
19944 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
19945 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
19946 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
19947 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
19948
19949 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
19950 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
19951 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
19952 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
19953 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
19954 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19955 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19956 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19957 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
19958 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
19959 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
19960 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
19961
19962 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
19963 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
19964 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
19965 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
19966 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
19967 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19968 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19969 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19970 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
19971 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
19972 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
19973 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
19974
19975 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
19976 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
19977 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
19978 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
19979 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
19980 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19981 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19982 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19983 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
19984 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
19985 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
19986 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
19987
19988 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
19989 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
19990 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
19991 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
19992 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
19993 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19994 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19995 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19996 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
19997 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
19998 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
19999 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
20000
20001 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
20002 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
20003 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
20004 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
20005 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
20006 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20007 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20008 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20009 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
20010 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
20011 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
20012 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
20013
20014 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
20015 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
20016 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
20017 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
20018 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
20019 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20020 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20021 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20022 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
20023 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
20024 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
20025 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
20026
20027 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
20028 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
20029 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
20030 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
20031 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
20032 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20033 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20034 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20035 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
20036 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
20037 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
20038 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
20039
20040 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
20041 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
20042 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
20043 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
20044 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
20045 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20046 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20047 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20048 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
20049 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
20050 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
20051 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
20052
20053 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
20054 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
20055 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
20056 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
20057 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
20058 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20059 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20060 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20061 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
20062 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
20063 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
20064 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
20065
20066 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
20067 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
20068 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
20069 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
20070 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
20071 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20072 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20073 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20074 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
20075 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
20076 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
20077 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
20078
20079 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
20080 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
20081 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
20082 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
20083 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
20084 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20085 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20086 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20087 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
20088 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
20089 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
20090 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
20091
20092 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
20093 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
20094 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
20095 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
20096 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
20097 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20098 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20099 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20100 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
20101 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
20102 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
20103 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
20104
20105 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
20106 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
20107 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
20108 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
20109 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
20110 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20111 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20112 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20113 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
20114 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
20115 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
20116 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
20117
20118 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
20119 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
20120 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
20121 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
20122
20123 cCL("flts", e000110, 2, (RF, RR), rn_rd),
20124 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
20125 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
20126 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
20127 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
20128 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
20129 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
20130 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
20131 cCL("flte", e080110, 2, (RF, RR), rn_rd),
20132 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
20133 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
20134 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
b99bd4ef 20135
c19d1205
ZW
20136 /* The implementation of the FIX instruction is broken on some
20137 assemblers, in that it accepts a precision specifier as well as a
20138 rounding specifier, despite the fact that this is meaningless.
20139 To be more compatible, we accept it as well, though of course it
20140 does not set any bits. */
21d799b5
NC
20141 cCE("fix", e100110, 2, (RR, RF), rd_rm),
20142 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
20143 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
20144 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
20145 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
20146 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
20147 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
20148 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
20149 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
20150 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
20151 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
20152 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
20153 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
bfae80f2 20154
c19d1205 20155 /* Instructions that were new with the real FPA, call them V2. */
c921be7d
NC
20156#undef ARM_VARIANT
20157#define ARM_VARIANT & fpu_fpa_ext_v2
20158
21d799b5
NC
20159 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20160 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20161 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20162 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20163 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20164 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205 20165
c921be7d
NC
20166#undef ARM_VARIANT
20167#define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
20168
c19d1205 20169 /* Moves and type conversions. */
21d799b5
NC
20170 cCE("fcpys", eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
20171 cCE("fmrs", e100a10, 2, (RR, RVS), vfp_reg_from_sp),
20172 cCE("fmsr", e000a10, 2, (RVS, RR), vfp_sp_from_reg),
20173 cCE("fmstat", ef1fa10, 0, (), noargs),
7465e07a
NC
20174 cCE("vmrs", ef00a10, 2, (APSR_RR, RVC), vmrs),
20175 cCE("vmsr", ee00a10, 2, (RVC, RR), vmsr),
21d799b5
NC
20176 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
20177 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
20178 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
20179 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
20180 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
20181 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
20182 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
20183 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
20184
20185 /* Memory operations. */
21d799b5
NC
20186 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
20187 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
55881a11
MGD
20188 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
20189 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
20190 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
20191 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
20192 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
20193 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
20194 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
20195 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
20196 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
20197 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
20198 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
20199 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
20200 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
20201 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
20202 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
20203 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 20204
c19d1205 20205 /* Monadic operations. */
21d799b5
NC
20206 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
20207 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
20208 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
20209
20210 /* Dyadic operations. */
21d799b5
NC
20211 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20212 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20213 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20214 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20215 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20216 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20217 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20218 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20219 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 20220
c19d1205 20221 /* Comparisons. */
21d799b5
NC
20222 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
20223 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
20224 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
20225 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 20226
62f3b8c8
PB
20227 /* Double precision load/store are still present on single precision
20228 implementations. */
20229 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
20230 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
55881a11
MGD
20231 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
20232 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
20233 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
20234 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
20235 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
20236 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
20237 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
20238 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
62f3b8c8 20239
c921be7d
NC
20240#undef ARM_VARIANT
20241#define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
20242
c19d1205 20243 /* Moves and type conversions. */
21d799b5
NC
20244 cCE("fcpyd", eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
20245 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
20246 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
20247 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
20248 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
20249 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
20250 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
20251 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
20252 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
20253 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
20254 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
20255 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
20256 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205 20257
c19d1205 20258 /* Monadic operations. */
21d799b5
NC
20259 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
20260 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
20261 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
20262
20263 /* Dyadic operations. */
21d799b5
NC
20264 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20265 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20266 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20267 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20268 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20269 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20270 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20271 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20272 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 20273
c19d1205 20274 /* Comparisons. */
21d799b5
NC
20275 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
20276 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
20277 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
20278 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205 20279
c921be7d
NC
20280#undef ARM_VARIANT
20281#define ARM_VARIANT & fpu_vfp_ext_v2
20282
21d799b5
NC
20283 cCE("fmsrr", c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
20284 cCE("fmrrs", c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
20285 cCE("fmdrr", c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
20286 cCE("fmrrd", c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
5287ad62 20287
037e8744
JB
20288/* Instructions which may belong to either the Neon or VFP instruction sets.
20289 Individual encoder functions perform additional architecture checks. */
c921be7d
NC
20290#undef ARM_VARIANT
20291#define ARM_VARIANT & fpu_vfp_ext_v1xd
20292#undef THUMB_VARIANT
20293#define THUMB_VARIANT & fpu_vfp_ext_v1xd
20294
037e8744
JB
20295 /* These mnemonics are unique to VFP. */
20296 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
20297 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
21d799b5
NC
20298 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
20299 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
20300 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
aacf0b33
KT
20301 nCE(vcmp, _vcmp, 2, (RVSD, RSVD_FI0), vfp_nsyn_cmp),
20302 nCE(vcmpe, _vcmpe, 2, (RVSD, RSVD_FI0), vfp_nsyn_cmp),
037e8744
JB
20303 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
20304 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
20305 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
20306
20307 /* Mnemonics shared by Neon and VFP. */
21d799b5
NC
20308 nCEF(vmul, _vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
20309 nCEF(vmla, _vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
20310 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
037e8744 20311
21d799b5
NC
20312 nCEF(vadd, _vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
20313 nCEF(vsub, _vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
037e8744
JB
20314
20315 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
20316 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
20317
55881a11
MGD
20318 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20319 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20320 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20321 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20322 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20323 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
4962c51a
MS
20324 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
20325 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744 20326
5f1af56b 20327 nCEF(vcvt, _vcvt, 3, (RNSDQ, RNSDQ, oI32z), neon_cvt),
e3e535bc 20328 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
c70a8987
MGD
20329 NCEF(vcvtb, eb20a40, 2, (RVSD, RVSD), neon_cvtb),
20330 NCEF(vcvtt, eb20a40, 2, (RVSD, RVSD), neon_cvtt),
f31fef98 20331
037e8744
JB
20332
20333 /* NOTE: All VMOV encoding is special-cased! */
20334 NCE(vmov, 0, 1, (VMOV), neon_mov),
20335 NCE(vmovq, 0, 1, (VMOV), neon_mov),
20336
9db2f6b4
RL
20337#undef ARM_VARIANT
20338#define ARM_VARIANT & arm_ext_fp16
20339#undef THUMB_VARIANT
20340#define THUMB_VARIANT & arm_ext_fp16
20341 /* New instructions added from v8.2, allowing the extraction and insertion of
20342 the upper 16 bits of a 32-bit vector register. */
20343 NCE (vmovx, eb00a40, 2, (RVS, RVS), neon_movhf),
20344 NCE (vins, eb00ac0, 2, (RVS, RVS), neon_movhf),
20345
c921be7d
NC
20346#undef THUMB_VARIANT
20347#define THUMB_VARIANT & fpu_neon_ext_v1
20348#undef ARM_VARIANT
20349#define ARM_VARIANT & fpu_neon_ext_v1
20350
5287ad62
JB
20351 /* Data processing with three registers of the same length. */
20352 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
20353 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
20354 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
20355 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
20356 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
20357 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
20358 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
20359 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
20360 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
20361 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
20362 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
20363 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
20364 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
20365 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
627907b7
JB
20366 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
20367 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
20368 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
20369 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
5287ad62
JB
20370 /* If not immediate, fall back to neon_dyadic_i64_su.
20371 shl_imm should accept I8 I16 I32 I64,
20372 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
21d799b5
NC
20373 nUF(vshl, _vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
20374 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
20375 nUF(vqshl, _vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
20376 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
5287ad62 20377 /* Logic ops, types optional & ignored. */
4316f0d2
DG
20378 nUF(vand, _vand, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
20379 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
20380 nUF(vbic, _vbic, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
20381 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
20382 nUF(vorr, _vorr, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
20383 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
20384 nUF(vorn, _vorn, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
20385 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
20386 nUF(veor, _veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
20387 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
5287ad62
JB
20388 /* Bitfield ops, untyped. */
20389 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
20390 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
20391 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
20392 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
20393 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
20394 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
cc933301 20395 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F16 F32. */
21d799b5
NC
20396 nUF(vabd, _vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
20397 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
20398 nUF(vmax, _vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
20399 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
20400 nUF(vmin, _vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
20401 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
5287ad62
JB
20402 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
20403 back to neon_dyadic_if_su. */
21d799b5
NC
20404 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
20405 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
20406 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
20407 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
20408 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
20409 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
20410 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
20411 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 20412 /* Comparison. Type I8 I16 I32 F32. */
21d799b5
NC
20413 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
20414 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
5287ad62 20415 /* As above, D registers only. */
21d799b5
NC
20416 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
20417 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
5287ad62 20418 /* Int and float variants, signedness unimportant. */
21d799b5
NC
20419 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
20420 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
20421 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
5287ad62 20422 /* Add/sub take types I8 I16 I32 I64 F32. */
21d799b5
NC
20423 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
20424 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
20425 /* vtst takes sizes 8, 16, 32. */
20426 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
20427 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
20428 /* VMUL takes I8 I16 I32 F32 P8. */
21d799b5 20429 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62 20430 /* VQD{R}MULH takes S16 S32. */
21d799b5
NC
20431 nUF(vqdmulh, _vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
20432 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
20433 nUF(vqrdmulh, _vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
20434 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
5287ad62
JB
20435 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
20436 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
20437 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
20438 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
92559b5b
PB
20439 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
20440 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
20441 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
20442 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
5287ad62
JB
20443 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
20444 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
20445 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
20446 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
d6b4b13e 20447 /* ARM v8.1 extension. */
643afb90
MW
20448 nUF (vqrdmlah, _vqrdmlah, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qrdmlah),
20449 nUF (vqrdmlahq, _vqrdmlah, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qrdmlah),
20450 nUF (vqrdmlsh, _vqrdmlsh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qrdmlah),
20451 nUF (vqrdmlshq, _vqrdmlsh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qrdmlah),
5287ad62
JB
20452
20453 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 20454 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
20455 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
20456
20457 /* Data processing with two registers and a shift amount. */
20458 /* Right shifts, and variants with rounding.
20459 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
20460 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
20461 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
20462 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
20463 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
20464 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
20465 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
20466 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
20467 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
20468 /* Shift and insert. Sizes accepted 8 16 32 64. */
20469 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
20470 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
20471 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
20472 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
20473 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
20474 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
20475 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
20476 /* Right shift immediate, saturating & narrowing, with rounding variants.
20477 Types accepted S16 S32 S64 U16 U32 U64. */
20478 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
20479 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
20480 /* As above, unsigned. Types accepted S16 S32 S64. */
20481 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
20482 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
20483 /* Right shift narrowing. Types accepted I16 I32 I64. */
20484 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
20485 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
20486 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
21d799b5 20487 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
5287ad62 20488 /* CVT with optional immediate for fixed-point variant. */
21d799b5 20489 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 20490
4316f0d2
DG
20491 nUF(vmvn, _vmvn, 2, (RNDQ, RNDQ_Ibig), neon_mvn),
20492 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
5287ad62
JB
20493
20494 /* Data processing, three registers of different lengths. */
20495 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
20496 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
20497 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
20498 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
20499 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
20500 /* If not scalar, fall back to neon_dyadic_long.
20501 Vector types as above, scalar types S16 S32 U16 U32. */
21d799b5
NC
20502 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
20503 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
5287ad62
JB
20504 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
20505 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
20506 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
20507 /* Dyadic, narrowing insns. Types I16 I32 I64. */
20508 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
20509 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
20510 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
20511 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
20512 /* Saturating doubling multiplies. Types S16 S32. */
21d799b5
NC
20513 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
20514 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
20515 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
5287ad62
JB
20516 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
20517 S16 S32 U16 U32. */
21d799b5 20518 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
5287ad62
JB
20519
20520 /* Extract. Size 8. */
3b8d421e
PB
20521 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
20522 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
5287ad62
JB
20523
20524 /* Two registers, miscellaneous. */
20525 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
20526 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
20527 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
20528 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
20529 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
20530 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
20531 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
20532 /* Vector replicate. Sizes 8 16 32. */
21d799b5
NC
20533 nCE(vdup, _vdup, 2, (RNDQ, RR_RNSC), neon_dup),
20534 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
5287ad62
JB
20535 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
20536 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
20537 /* VMOVN. Types I16 I32 I64. */
21d799b5 20538 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
5287ad62 20539 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
21d799b5 20540 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
5287ad62 20541 /* VQMOVUN. Types S16 S32 S64. */
21d799b5 20542 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
5287ad62
JB
20543 /* VZIP / VUZP. Sizes 8 16 32. */
20544 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
20545 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
20546 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
20547 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
20548 /* VQABS / VQNEG. Types S8 S16 S32. */
20549 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
20550 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
20551 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
20552 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
20553 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
20554 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
20555 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
20556 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
20557 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
cc933301 20558 /* Reciprocal estimates. Types U32 F16 F32. */
5287ad62
JB
20559 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
20560 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
20561 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
20562 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
20563 /* VCLS. Types S8 S16 S32. */
20564 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
20565 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
20566 /* VCLZ. Types I8 I16 I32. */
20567 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
20568 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
20569 /* VCNT. Size 8. */
20570 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
20571 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
20572 /* Two address, untyped. */
20573 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
20574 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
20575 /* VTRN. Sizes 8 16 32. */
21d799b5
NC
20576 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
20577 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
5287ad62
JB
20578
20579 /* Table lookup. Size 8. */
20580 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
20581 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
20582
c921be7d
NC
20583#undef THUMB_VARIANT
20584#define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
20585#undef ARM_VARIANT
20586#define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
20587
5287ad62 20588 /* Neon element/structure load/store. */
21d799b5
NC
20589 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
20590 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
20591 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
20592 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
20593 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
20594 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
20595 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
20596 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
5287ad62 20597
c921be7d 20598#undef THUMB_VARIANT
74db7efb
NC
20599#define THUMB_VARIANT & fpu_vfp_ext_v3xd
20600#undef ARM_VARIANT
20601#define ARM_VARIANT & fpu_vfp_ext_v3xd
62f3b8c8
PB
20602 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
20603 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
20604 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
20605 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
20606 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
20607 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
20608 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
20609 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
20610 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
20611
74db7efb 20612#undef THUMB_VARIANT
c921be7d
NC
20613#define THUMB_VARIANT & fpu_vfp_ext_v3
20614#undef ARM_VARIANT
20615#define ARM_VARIANT & fpu_vfp_ext_v3
20616
21d799b5 20617 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
21d799b5 20618 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 20619 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 20620 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 20621 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 20622 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 20623 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 20624 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 20625 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 20626
74db7efb
NC
20627#undef ARM_VARIANT
20628#define ARM_VARIANT & fpu_vfp_ext_fma
20629#undef THUMB_VARIANT
20630#define THUMB_VARIANT & fpu_vfp_ext_fma
62f3b8c8
PB
20631 /* Mnemonics shared by Neon and VFP. These are included in the
20632 VFP FMA variant; NEON and VFP FMA always includes the NEON
20633 FMA instructions. */
20634 nCEF(vfma, _vfma, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
20635 nCEF(vfms, _vfms, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
20636 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
20637 the v form should always be used. */
20638 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20639 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20640 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20641 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20642 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
20643 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
20644
5287ad62 20645#undef THUMB_VARIANT
c921be7d
NC
20646#undef ARM_VARIANT
20647#define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
20648
21d799b5
NC
20649 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20650 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20651 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20652 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20653 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20654 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20655 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
20656 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205 20657
c921be7d
NC
20658#undef ARM_VARIANT
20659#define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
20660
21d799b5
NC
20661 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
20662 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
20663 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
20664 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
20665 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
20666 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
20667 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
20668 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
20669 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
74db7efb
NC
20670 cCE("textrmub",e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20671 cCE("textrmuh",e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20672 cCE("textrmuw",e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20673 cCE("textrmsb",e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
20674 cCE("textrmsh",e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
20675 cCE("textrmsw",e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
21d799b5
NC
20676 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20677 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20678 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20679 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
20680 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
20681 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20682 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20683 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20684 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20685 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20686 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
74db7efb
NC
20687 cCE("tmovmskb",e100030, 2, (RR, RIWR), rd_rn),
20688 cCE("tmovmskh",e500030, 2, (RR, RIWR), rd_rn),
20689 cCE("tmovmskw",e900030, 2, (RR, RIWR), rd_rn),
21d799b5
NC
20690 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
20691 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
20692 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
20693 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
20694 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
20695 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
20696 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
20697 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
20698 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20699 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20700 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20701 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20702 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20703 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20704 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20705 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20706 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20707 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
74db7efb
NC
20708 cCE("walignr0",e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20709 cCE("walignr1",e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20710 cCE("walignr2",ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20711 cCE("walignr3",eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20712 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20713 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20714 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20715 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20716 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20717 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20718 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20719 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20720 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
74db7efb
NC
20721 cCE("wcmpgtub",e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20722 cCE("wcmpgtuh",e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20723 cCE("wcmpgtuw",e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20724 cCE("wcmpgtsb",e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20725 cCE("wcmpgtsh",e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20726 cCE("wcmpgtsw",eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20727 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20728 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20729 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
20730 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
20731 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20732 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20733 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20734 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20735 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20736 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20737 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20738 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20739 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20740 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20741 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20742 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20743 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20744 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20745 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20746 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20747 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20748 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20749 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
20750 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20751 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20752 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20753 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20754 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
74db7efb
NC
20755 cCE("wpackhss",e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20756 cCE("wpackhus",e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20757 cCE("wpackwss",eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20758 cCE("wpackwus",e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20759 cCE("wpackdss",ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20760 cCE("wpackdus",ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20761 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20762 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20763 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20764 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20765 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20766 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20767 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20768 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20769 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20770 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20771 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
20772 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20773 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20774 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20775 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20776 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20777 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20778 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20779 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20780 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20781 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20782 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20783 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20784 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20785 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20786 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20787 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20788 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20789 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20790 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20791 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20792 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
20793 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
20794 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20795 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20796 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20797 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20798 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20799 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20800 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20801 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20802 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20803 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
20804 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
20805 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
20806 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
20807 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
20808 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
20809 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20810 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20811 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20812 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
20813 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
20814 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
20815 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
20816 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
20817 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
20818 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20819 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20820 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20821 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20822 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205 20823
c921be7d
NC
20824#undef ARM_VARIANT
20825#define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
20826
21d799b5
NC
20827 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
20828 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
20829 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
20830 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
20831 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
20832 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
20833 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20834 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20835 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20836 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20837 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20838 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20839 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20840 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20841 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20842 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20843 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20844 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20845 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20846 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20847 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
20848 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20849 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20850 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20851 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20852 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20853 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20854 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20855 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20856 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20857 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20858 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20859 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20860 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20861 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20862 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20863 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20864 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20865 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20866 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20867 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20868 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20869 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20870 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20871 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20872 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20873 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20874 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20875 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20876 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20877 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20878 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20879 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20880 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20881 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20882 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20883 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
2d447fca 20884
c921be7d
NC
20885#undef ARM_VARIANT
20886#define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
20887
21d799b5
NC
20888 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
20889 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
20890 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
20891 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
20892 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
20893 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
20894 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
20895 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
20896 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
20897 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
20898 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
20899 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
20900 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
20901 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
74db7efb
NC
20902 cCE("cfmv64lr",e000510, 2, (RMDX, RR), rn_rd),
20903 cCE("cfmvr64l",e100510, 2, (RR, RMDX), rd_rn),
20904 cCE("cfmv64hr",e000530, 2, (RMDX, RR), rn_rd),
20905 cCE("cfmvr64h",e100530, 2, (RR, RMDX), rd_rn),
20906 cCE("cfmval32",e200440, 2, (RMAX, RMFX), rd_rn),
20907 cCE("cfmv32al",e100440, 2, (RMFX, RMAX), rd_rn),
20908 cCE("cfmvam32",e200460, 2, (RMAX, RMFX), rd_rn),
20909 cCE("cfmv32am",e100460, 2, (RMFX, RMAX), rd_rn),
20910 cCE("cfmvah32",e200480, 2, (RMAX, RMFX), rd_rn),
20911 cCE("cfmv32ah",e100480, 2, (RMFX, RMAX), rd_rn),
21d799b5
NC
20912 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
20913 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
20914 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
20915 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
74db7efb
NC
20916 cCE("cfmvsc32",e2004e0, 2, (RMDS, RMDX), mav_dspsc),
20917 cCE("cfmv32sc",e1004e0, 2, (RMDX, RMDS), rd),
21d799b5
NC
20918 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
20919 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
20920 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
20921 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
74db7efb
NC
20922 cCE("cfcvt32s",e000480, 2, (RMF, RMFX), rd_rn),
20923 cCE("cfcvt32d",e0004a0, 2, (RMD, RMFX), rd_rn),
20924 cCE("cfcvt64s",e0004c0, 2, (RMF, RMDX), rd_rn),
20925 cCE("cfcvt64d",e0004e0, 2, (RMD, RMDX), rd_rn),
20926 cCE("cfcvts32",e100580, 2, (RMFX, RMF), rd_rn),
20927 cCE("cfcvtd32",e1005a0, 2, (RMFX, RMD), rd_rn),
21d799b5
NC
20928 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
20929 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
74db7efb
NC
20930 cCE("cfrshl32",e000550, 3, (RMFX, RMFX, RR), mav_triple),
20931 cCE("cfrshl64",e000570, 3, (RMDX, RMDX, RR), mav_triple),
21d799b5
NC
20932 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
20933 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
20934 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
20935 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
20936 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
20937 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
20938 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
20939 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
20940 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
20941 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
20942 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
20943 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
20944 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
20945 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
20946 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
20947 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
20948 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
20949 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
20950 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
20951 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
20952 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
20953 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
20954 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
20955 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
20956 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
20957 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
20958 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
20959 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
74db7efb
NC
20960 cCE("cfmadd32",e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
20961 cCE("cfmsub32",e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
21d799b5
NC
20962 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
20963 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
4ed7ed8d 20964
16a1fa25 20965 /* ARMv8-M instructions. */
4ed7ed8d
TP
20966#undef ARM_VARIANT
20967#define ARM_VARIANT NULL
20968#undef THUMB_VARIANT
20969#define THUMB_VARIANT & arm_ext_v8m
16a1fa25
TP
20970 TUE("sg", 0, e97fe97f, 0, (), 0, noargs),
20971 TUE("blxns", 0, 4784, 1, (RRnpc), 0, t_blx),
20972 TUE("bxns", 0, 4704, 1, (RRnpc), 0, t_bx),
4ed7ed8d
TP
20973 TUE("tt", 0, e840f000, 2, (RRnpc, RRnpc), 0, tt),
20974 TUE("ttt", 0, e840f040, 2, (RRnpc, RRnpc), 0, tt),
16a1fa25
TP
20975 TUE("tta", 0, e840f080, 2, (RRnpc, RRnpc), 0, tt),
20976 TUE("ttat", 0, e840f0c0, 2, (RRnpc, RRnpc), 0, tt),
20977
20978 /* FP for ARMv8-M Mainline. Enabled for ARMv8-M Mainline because the
20979 instructions behave as nop if no VFP is present. */
20980#undef THUMB_VARIANT
20981#define THUMB_VARIANT & arm_ext_v8m_main
20982 TUEc("vlldm", 0, ec300a00, 1, (RRnpc), rn),
20983 TUEc("vlstm", 0, ec200a00, 1, (RRnpc), rn),
c19d1205
ZW
20984};
20985#undef ARM_VARIANT
20986#undef THUMB_VARIANT
20987#undef TCE
c19d1205
ZW
20988#undef TUE
20989#undef TUF
20990#undef TCC
8f06b2d8 20991#undef cCE
e3cb604e
PB
20992#undef cCL
20993#undef C3E
c19d1205
ZW
20994#undef CE
20995#undef CM
20996#undef UE
20997#undef UF
20998#undef UT
5287ad62
JB
20999#undef NUF
21000#undef nUF
21001#undef NCE
21002#undef nCE
c19d1205
ZW
21003#undef OPS0
21004#undef OPS1
21005#undef OPS2
21006#undef OPS3
21007#undef OPS4
21008#undef OPS5
21009#undef OPS6
21010#undef do_0
21011\f
21012/* MD interface: bits in the object file. */
bfae80f2 21013
c19d1205
ZW
21014/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
21015 for use in the a.out file, and stores them in the array pointed to by buf.
21016 This knows about the endian-ness of the target machine and does
21017 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
21018 2 (short) and 4 (long) Floating numbers are put out as a series of
21019 LITTLENUMS (shorts, here at least). */
b99bd4ef 21020
c19d1205
ZW
21021void
21022md_number_to_chars (char * buf, valueT val, int n)
21023{
21024 if (target_big_endian)
21025 number_to_chars_bigendian (buf, val, n);
21026 else
21027 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
21028}
21029
c19d1205
ZW
21030static valueT
21031md_chars_to_number (char * buf, int n)
bfae80f2 21032{
c19d1205
ZW
21033 valueT result = 0;
21034 unsigned char * where = (unsigned char *) buf;
bfae80f2 21035
c19d1205 21036 if (target_big_endian)
b99bd4ef 21037 {
c19d1205
ZW
21038 while (n--)
21039 {
21040 result <<= 8;
21041 result |= (*where++ & 255);
21042 }
b99bd4ef 21043 }
c19d1205 21044 else
b99bd4ef 21045 {
c19d1205
ZW
21046 while (n--)
21047 {
21048 result <<= 8;
21049 result |= (where[n] & 255);
21050 }
bfae80f2 21051 }
b99bd4ef 21052
c19d1205 21053 return result;
bfae80f2 21054}
b99bd4ef 21055
c19d1205 21056/* MD interface: Sections. */
b99bd4ef 21057
fa94de6b
RM
21058/* Calculate the maximum variable size (i.e., excluding fr_fix)
21059 that an rs_machine_dependent frag may reach. */
21060
21061unsigned int
21062arm_frag_max_var (fragS *fragp)
21063{
21064 /* We only use rs_machine_dependent for variable-size Thumb instructions,
21065 which are either THUMB_SIZE (2) or INSN_SIZE (4).
21066
21067 Note that we generate relaxable instructions even for cases that don't
21068 really need it, like an immediate that's a trivial constant. So we're
21069 overestimating the instruction size for some of those cases. Rather
21070 than putting more intelligence here, it would probably be better to
21071 avoid generating a relaxation frag in the first place when it can be
21072 determined up front that a short instruction will suffice. */
21073
21074 gas_assert (fragp->fr_type == rs_machine_dependent);
21075 return INSN_SIZE;
21076}
21077
0110f2b8
PB
21078/* Estimate the size of a frag before relaxing. Assume everything fits in
21079 2 bytes. */
21080
c19d1205 21081int
0110f2b8 21082md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
21083 segT segtype ATTRIBUTE_UNUSED)
21084{
0110f2b8
PB
21085 fragp->fr_var = 2;
21086 return 2;
21087}
21088
21089/* Convert a machine dependent frag. */
21090
21091void
21092md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
21093{
21094 unsigned long insn;
21095 unsigned long old_op;
21096 char *buf;
21097 expressionS exp;
21098 fixS *fixp;
21099 int reloc_type;
21100 int pc_rel;
21101 int opcode;
21102
21103 buf = fragp->fr_literal + fragp->fr_fix;
21104
21105 old_op = bfd_get_16(abfd, buf);
5f4273c7
NC
21106 if (fragp->fr_symbol)
21107 {
0110f2b8
PB
21108 exp.X_op = O_symbol;
21109 exp.X_add_symbol = fragp->fr_symbol;
5f4273c7
NC
21110 }
21111 else
21112 {
0110f2b8 21113 exp.X_op = O_constant;
5f4273c7 21114 }
0110f2b8
PB
21115 exp.X_add_number = fragp->fr_offset;
21116 opcode = fragp->fr_subtype;
21117 switch (opcode)
21118 {
21119 case T_MNEM_ldr_pc:
21120 case T_MNEM_ldr_pc2:
21121 case T_MNEM_ldr_sp:
21122 case T_MNEM_str_sp:
21123 case T_MNEM_ldr:
21124 case T_MNEM_ldrb:
21125 case T_MNEM_ldrh:
21126 case T_MNEM_str:
21127 case T_MNEM_strb:
21128 case T_MNEM_strh:
21129 if (fragp->fr_var == 4)
21130 {
5f4273c7 21131 insn = THUMB_OP32 (opcode);
0110f2b8
PB
21132 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
21133 {
21134 insn |= (old_op & 0x700) << 4;
21135 }
21136 else
21137 {
21138 insn |= (old_op & 7) << 12;
21139 insn |= (old_op & 0x38) << 13;
21140 }
21141 insn |= 0x00000c00;
21142 put_thumb32_insn (buf, insn);
21143 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
21144 }
21145 else
21146 {
21147 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
21148 }
21149 pc_rel = (opcode == T_MNEM_ldr_pc2);
21150 break;
21151 case T_MNEM_adr:
21152 if (fragp->fr_var == 4)
21153 {
21154 insn = THUMB_OP32 (opcode);
21155 insn |= (old_op & 0xf0) << 4;
21156 put_thumb32_insn (buf, insn);
21157 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
21158 }
21159 else
21160 {
21161 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
21162 exp.X_add_number -= 4;
21163 }
21164 pc_rel = 1;
21165 break;
21166 case T_MNEM_mov:
21167 case T_MNEM_movs:
21168 case T_MNEM_cmp:
21169 case T_MNEM_cmn:
21170 if (fragp->fr_var == 4)
21171 {
21172 int r0off = (opcode == T_MNEM_mov
21173 || opcode == T_MNEM_movs) ? 0 : 8;
21174 insn = THUMB_OP32 (opcode);
21175 insn = (insn & 0xe1ffffff) | 0x10000000;
21176 insn |= (old_op & 0x700) << r0off;
21177 put_thumb32_insn (buf, insn);
21178 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
21179 }
21180 else
21181 {
21182 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
21183 }
21184 pc_rel = 0;
21185 break;
21186 case T_MNEM_b:
21187 if (fragp->fr_var == 4)
21188 {
21189 insn = THUMB_OP32(opcode);
21190 put_thumb32_insn (buf, insn);
21191 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
21192 }
21193 else
21194 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
21195 pc_rel = 1;
21196 break;
21197 case T_MNEM_bcond:
21198 if (fragp->fr_var == 4)
21199 {
21200 insn = THUMB_OP32(opcode);
21201 insn |= (old_op & 0xf00) << 14;
21202 put_thumb32_insn (buf, insn);
21203 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
21204 }
21205 else
21206 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
21207 pc_rel = 1;
21208 break;
21209 case T_MNEM_add_sp:
21210 case T_MNEM_add_pc:
21211 case T_MNEM_inc_sp:
21212 case T_MNEM_dec_sp:
21213 if (fragp->fr_var == 4)
21214 {
21215 /* ??? Choose between add and addw. */
21216 insn = THUMB_OP32 (opcode);
21217 insn |= (old_op & 0xf0) << 4;
21218 put_thumb32_insn (buf, insn);
16805f35
PB
21219 if (opcode == T_MNEM_add_pc)
21220 reloc_type = BFD_RELOC_ARM_T32_IMM12;
21221 else
21222 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
21223 }
21224 else
21225 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
21226 pc_rel = 0;
21227 break;
21228
21229 case T_MNEM_addi:
21230 case T_MNEM_addis:
21231 case T_MNEM_subi:
21232 case T_MNEM_subis:
21233 if (fragp->fr_var == 4)
21234 {
21235 insn = THUMB_OP32 (opcode);
21236 insn |= (old_op & 0xf0) << 4;
21237 insn |= (old_op & 0xf) << 16;
21238 put_thumb32_insn (buf, insn);
16805f35
PB
21239 if (insn & (1 << 20))
21240 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
21241 else
21242 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
21243 }
21244 else
21245 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
21246 pc_rel = 0;
21247 break;
21248 default:
5f4273c7 21249 abort ();
0110f2b8
PB
21250 }
21251 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
21d799b5 21252 (enum bfd_reloc_code_real) reloc_type);
0110f2b8
PB
21253 fixp->fx_file = fragp->fr_file;
21254 fixp->fx_line = fragp->fr_line;
21255 fragp->fr_fix += fragp->fr_var;
3cfdb781
TG
21256
21257 /* Set whether we use thumb-2 ISA based on final relaxation results. */
21258 if (thumb_mode && fragp->fr_var == 4 && no_cpu_selected ()
21259 && !ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_t2))
21260 ARM_MERGE_FEATURE_SETS (arm_arch_used, thumb_arch_used, arm_ext_v6t2);
0110f2b8
PB
21261}
21262
21263/* Return the size of a relaxable immediate operand instruction.
21264 SHIFT and SIZE specify the form of the allowable immediate. */
21265static int
21266relax_immediate (fragS *fragp, int size, int shift)
21267{
21268 offsetT offset;
21269 offsetT mask;
21270 offsetT low;
21271
21272 /* ??? Should be able to do better than this. */
21273 if (fragp->fr_symbol)
21274 return 4;
21275
21276 low = (1 << shift) - 1;
21277 mask = (1 << (shift + size)) - (1 << shift);
21278 offset = fragp->fr_offset;
21279 /* Force misaligned offsets to 32-bit variant. */
21280 if (offset & low)
5e77afaa 21281 return 4;
0110f2b8
PB
21282 if (offset & ~mask)
21283 return 4;
21284 return 2;
21285}
21286
5e77afaa
PB
21287/* Get the address of a symbol during relaxation. */
21288static addressT
5f4273c7 21289relaxed_symbol_addr (fragS *fragp, long stretch)
5e77afaa
PB
21290{
21291 fragS *sym_frag;
21292 addressT addr;
21293 symbolS *sym;
21294
21295 sym = fragp->fr_symbol;
21296 sym_frag = symbol_get_frag (sym);
21297 know (S_GET_SEGMENT (sym) != absolute_section
21298 || sym_frag == &zero_address_frag);
21299 addr = S_GET_VALUE (sym) + fragp->fr_offset;
21300
21301 /* If frag has yet to be reached on this pass, assume it will
21302 move by STRETCH just as we did. If this is not so, it will
21303 be because some frag between grows, and that will force
21304 another pass. */
21305
21306 if (stretch != 0
21307 && sym_frag->relax_marker != fragp->relax_marker)
4396b686
PB
21308 {
21309 fragS *f;
21310
21311 /* Adjust stretch for any alignment frag. Note that if have
21312 been expanding the earlier code, the symbol may be
21313 defined in what appears to be an earlier frag. FIXME:
21314 This doesn't handle the fr_subtype field, which specifies
21315 a maximum number of bytes to skip when doing an
21316 alignment. */
21317 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
21318 {
21319 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
21320 {
21321 if (stretch < 0)
21322 stretch = - ((- stretch)
21323 & ~ ((1 << (int) f->fr_offset) - 1));
21324 else
21325 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
21326 if (stretch == 0)
21327 break;
21328 }
21329 }
21330 if (f != NULL)
21331 addr += stretch;
21332 }
5e77afaa
PB
21333
21334 return addr;
21335}
21336
0110f2b8
PB
21337/* Return the size of a relaxable adr pseudo-instruction or PC-relative
21338 load. */
21339static int
5e77afaa 21340relax_adr (fragS *fragp, asection *sec, long stretch)
0110f2b8
PB
21341{
21342 addressT addr;
21343 offsetT val;
21344
21345 /* Assume worst case for symbols not known to be in the same section. */
974da60d
NC
21346 if (fragp->fr_symbol == NULL
21347 || !S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
21348 || sec != S_GET_SEGMENT (fragp->fr_symbol)
21349 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
21350 return 4;
21351
5f4273c7 21352 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
21353 addr = fragp->fr_address + fragp->fr_fix;
21354 addr = (addr + 4) & ~3;
5e77afaa 21355 /* Force misaligned targets to 32-bit variant. */
0110f2b8 21356 if (val & 3)
5e77afaa 21357 return 4;
0110f2b8
PB
21358 val -= addr;
21359 if (val < 0 || val > 1020)
21360 return 4;
21361 return 2;
21362}
21363
21364/* Return the size of a relaxable add/sub immediate instruction. */
21365static int
21366relax_addsub (fragS *fragp, asection *sec)
21367{
21368 char *buf;
21369 int op;
21370
21371 buf = fragp->fr_literal + fragp->fr_fix;
21372 op = bfd_get_16(sec->owner, buf);
21373 if ((op & 0xf) == ((op >> 4) & 0xf))
21374 return relax_immediate (fragp, 8, 0);
21375 else
21376 return relax_immediate (fragp, 3, 0);
21377}
21378
e83a675f
RE
21379/* Return TRUE iff the definition of symbol S could be pre-empted
21380 (overridden) at link or load time. */
21381static bfd_boolean
21382symbol_preemptible (symbolS *s)
21383{
21384 /* Weak symbols can always be pre-empted. */
21385 if (S_IS_WEAK (s))
21386 return TRUE;
21387
21388 /* Non-global symbols cannot be pre-empted. */
21389 if (! S_IS_EXTERNAL (s))
21390 return FALSE;
21391
21392#ifdef OBJ_ELF
21393 /* In ELF, a global symbol can be marked protected, or private. In that
21394 case it can't be pre-empted (other definitions in the same link unit
21395 would violate the ODR). */
21396 if (ELF_ST_VISIBILITY (S_GET_OTHER (s)) > STV_DEFAULT)
21397 return FALSE;
21398#endif
21399
21400 /* Other global symbols might be pre-empted. */
21401 return TRUE;
21402}
0110f2b8
PB
21403
21404/* Return the size of a relaxable branch instruction. BITS is the
21405 size of the offset field in the narrow instruction. */
21406
21407static int
5e77afaa 21408relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
0110f2b8
PB
21409{
21410 addressT addr;
21411 offsetT val;
21412 offsetT limit;
21413
21414 /* Assume worst case for symbols not known to be in the same section. */
5f4273c7 21415 if (!S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
21416 || sec != S_GET_SEGMENT (fragp->fr_symbol)
21417 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
21418 return 4;
21419
267bf995 21420#ifdef OBJ_ELF
e83a675f 21421 /* A branch to a function in ARM state will require interworking. */
267bf995
RR
21422 if (S_IS_DEFINED (fragp->fr_symbol)
21423 && ARM_IS_FUNC (fragp->fr_symbol))
21424 return 4;
e83a675f 21425#endif
0d9b4b55 21426
e83a675f 21427 if (symbol_preemptible (fragp->fr_symbol))
0d9b4b55 21428 return 4;
267bf995 21429
5f4273c7 21430 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
21431 addr = fragp->fr_address + fragp->fr_fix + 4;
21432 val -= addr;
21433
21434 /* Offset is a signed value *2 */
21435 limit = 1 << bits;
21436 if (val >= limit || val < -limit)
21437 return 4;
21438 return 2;
21439}
21440
21441
21442/* Relax a machine dependent frag. This returns the amount by which
21443 the current size of the frag should change. */
21444
21445int
5e77afaa 21446arm_relax_frag (asection *sec, fragS *fragp, long stretch)
0110f2b8
PB
21447{
21448 int oldsize;
21449 int newsize;
21450
21451 oldsize = fragp->fr_var;
21452 switch (fragp->fr_subtype)
21453 {
21454 case T_MNEM_ldr_pc2:
5f4273c7 21455 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
21456 break;
21457 case T_MNEM_ldr_pc:
21458 case T_MNEM_ldr_sp:
21459 case T_MNEM_str_sp:
5f4273c7 21460 newsize = relax_immediate (fragp, 8, 2);
0110f2b8
PB
21461 break;
21462 case T_MNEM_ldr:
21463 case T_MNEM_str:
5f4273c7 21464 newsize = relax_immediate (fragp, 5, 2);
0110f2b8
PB
21465 break;
21466 case T_MNEM_ldrh:
21467 case T_MNEM_strh:
5f4273c7 21468 newsize = relax_immediate (fragp, 5, 1);
0110f2b8
PB
21469 break;
21470 case T_MNEM_ldrb:
21471 case T_MNEM_strb:
5f4273c7 21472 newsize = relax_immediate (fragp, 5, 0);
0110f2b8
PB
21473 break;
21474 case T_MNEM_adr:
5f4273c7 21475 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
21476 break;
21477 case T_MNEM_mov:
21478 case T_MNEM_movs:
21479 case T_MNEM_cmp:
21480 case T_MNEM_cmn:
5f4273c7 21481 newsize = relax_immediate (fragp, 8, 0);
0110f2b8
PB
21482 break;
21483 case T_MNEM_b:
5f4273c7 21484 newsize = relax_branch (fragp, sec, 11, stretch);
0110f2b8
PB
21485 break;
21486 case T_MNEM_bcond:
5f4273c7 21487 newsize = relax_branch (fragp, sec, 8, stretch);
0110f2b8
PB
21488 break;
21489 case T_MNEM_add_sp:
21490 case T_MNEM_add_pc:
21491 newsize = relax_immediate (fragp, 8, 2);
21492 break;
21493 case T_MNEM_inc_sp:
21494 case T_MNEM_dec_sp:
21495 newsize = relax_immediate (fragp, 7, 2);
21496 break;
21497 case T_MNEM_addi:
21498 case T_MNEM_addis:
21499 case T_MNEM_subi:
21500 case T_MNEM_subis:
21501 newsize = relax_addsub (fragp, sec);
21502 break;
21503 default:
5f4273c7 21504 abort ();
0110f2b8 21505 }
5e77afaa
PB
21506
21507 fragp->fr_var = newsize;
21508 /* Freeze wide instructions that are at or before the same location as
21509 in the previous pass. This avoids infinite loops.
5f4273c7
NC
21510 Don't freeze them unconditionally because targets may be artificially
21511 misaligned by the expansion of preceding frags. */
5e77afaa 21512 if (stretch <= 0 && newsize > 2)
0110f2b8 21513 {
0110f2b8 21514 md_convert_frag (sec->owner, sec, fragp);
5f4273c7 21515 frag_wane (fragp);
0110f2b8 21516 }
5e77afaa 21517
0110f2b8 21518 return newsize - oldsize;
c19d1205 21519}
b99bd4ef 21520
c19d1205 21521/* Round up a section size to the appropriate boundary. */
b99bd4ef 21522
c19d1205
ZW
21523valueT
21524md_section_align (segT segment ATTRIBUTE_UNUSED,
21525 valueT size)
21526{
f0927246
NC
21527#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
21528 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
21529 {
21530 /* For a.out, force the section size to be aligned. If we don't do
21531 this, BFD will align it for us, but it will not write out the
21532 final bytes of the section. This may be a bug in BFD, but it is
21533 easier to fix it here since that is how the other a.out targets
21534 work. */
21535 int align;
21536
21537 align = bfd_get_section_alignment (stdoutput, segment);
8d3842cd 21538 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
f0927246 21539 }
c19d1205 21540#endif
f0927246
NC
21541
21542 return size;
bfae80f2 21543}
b99bd4ef 21544
c19d1205
ZW
21545/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
21546 of an rs_align_code fragment. */
21547
21548void
21549arm_handle_align (fragS * fragP)
bfae80f2 21550{
d9235011 21551 static unsigned char const arm_noop[2][2][4] =
e7495e45
NS
21552 {
21553 { /* ARMv1 */
21554 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
21555 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
21556 },
21557 { /* ARMv6k */
21558 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
21559 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
21560 },
21561 };
d9235011 21562 static unsigned char const thumb_noop[2][2][2] =
e7495e45
NS
21563 {
21564 { /* Thumb-1 */
21565 {0xc0, 0x46}, /* LE */
21566 {0x46, 0xc0}, /* BE */
21567 },
21568 { /* Thumb-2 */
21569 {0x00, 0xbf}, /* LE */
21570 {0xbf, 0x00} /* BE */
21571 }
21572 };
d9235011 21573 static unsigned char const wide_thumb_noop[2][4] =
e7495e45
NS
21574 { /* Wide Thumb-2 */
21575 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
21576 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
21577 };
c921be7d 21578
e7495e45 21579 unsigned bytes, fix, noop_size;
c19d1205 21580 char * p;
d9235011
TS
21581 const unsigned char * noop;
21582 const unsigned char *narrow_noop = NULL;
cd000bff
DJ
21583#ifdef OBJ_ELF
21584 enum mstate state;
21585#endif
bfae80f2 21586
c19d1205 21587 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
21588 return;
21589
c19d1205
ZW
21590 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
21591 p = fragP->fr_literal + fragP->fr_fix;
21592 fix = 0;
bfae80f2 21593
c19d1205
ZW
21594 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
21595 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 21596
cd000bff 21597 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
8dc2430f 21598
cd000bff 21599 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
a737bd4d 21600 {
7f78eb34
JW
21601 if (ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
21602 ? selected_cpu : arm_arch_none, arm_ext_v6t2))
e7495e45
NS
21603 {
21604 narrow_noop = thumb_noop[1][target_big_endian];
21605 noop = wide_thumb_noop[target_big_endian];
21606 }
c19d1205 21607 else
e7495e45
NS
21608 noop = thumb_noop[0][target_big_endian];
21609 noop_size = 2;
cd000bff
DJ
21610#ifdef OBJ_ELF
21611 state = MAP_THUMB;
21612#endif
7ed4c4c5
NC
21613 }
21614 else
21615 {
7f78eb34
JW
21616 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
21617 ? selected_cpu : arm_arch_none,
21618 arm_ext_v6k) != 0]
e7495e45
NS
21619 [target_big_endian];
21620 noop_size = 4;
cd000bff
DJ
21621#ifdef OBJ_ELF
21622 state = MAP_ARM;
21623#endif
7ed4c4c5 21624 }
c921be7d 21625
e7495e45 21626 fragP->fr_var = noop_size;
c921be7d 21627
c19d1205 21628 if (bytes & (noop_size - 1))
7ed4c4c5 21629 {
c19d1205 21630 fix = bytes & (noop_size - 1);
cd000bff
DJ
21631#ifdef OBJ_ELF
21632 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
21633#endif
c19d1205
ZW
21634 memset (p, 0, fix);
21635 p += fix;
21636 bytes -= fix;
a737bd4d 21637 }
a737bd4d 21638
e7495e45
NS
21639 if (narrow_noop)
21640 {
21641 if (bytes & noop_size)
21642 {
21643 /* Insert a narrow noop. */
21644 memcpy (p, narrow_noop, noop_size);
21645 p += noop_size;
21646 bytes -= noop_size;
21647 fix += noop_size;
21648 }
21649
21650 /* Use wide noops for the remainder */
21651 noop_size = 4;
21652 }
21653
c19d1205 21654 while (bytes >= noop_size)
a737bd4d 21655 {
c19d1205
ZW
21656 memcpy (p, noop, noop_size);
21657 p += noop_size;
21658 bytes -= noop_size;
21659 fix += noop_size;
a737bd4d
NC
21660 }
21661
c19d1205 21662 fragP->fr_fix += fix;
a737bd4d
NC
21663}
21664
c19d1205
ZW
21665/* Called from md_do_align. Used to create an alignment
21666 frag in a code section. */
21667
21668void
21669arm_frag_align_code (int n, int max)
bfae80f2 21670{
c19d1205 21671 char * p;
7ed4c4c5 21672
c19d1205 21673 /* We assume that there will never be a requirement
6ec8e702 21674 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
c19d1205 21675 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
6ec8e702
NC
21676 {
21677 char err_msg[128];
21678
fa94de6b 21679 sprintf (err_msg,
477330fc
RM
21680 _("alignments greater than %d bytes not supported in .text sections."),
21681 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
20203fb9 21682 as_fatal ("%s", err_msg);
6ec8e702 21683 }
bfae80f2 21684
c19d1205
ZW
21685 p = frag_var (rs_align_code,
21686 MAX_MEM_FOR_RS_ALIGN_CODE,
21687 1,
21688 (relax_substateT) max,
21689 (symbolS *) NULL,
21690 (offsetT) n,
21691 (char *) NULL);
21692 *p = 0;
21693}
bfae80f2 21694
8dc2430f
NC
21695/* Perform target specific initialisation of a frag.
21696 Note - despite the name this initialisation is not done when the frag
21697 is created, but only when its type is assigned. A frag can be created
21698 and used a long time before its type is set, so beware of assuming that
21699 this initialisationis performed first. */
bfae80f2 21700
cd000bff
DJ
21701#ifndef OBJ_ELF
21702void
21703arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
21704{
21705 /* Record whether this frag is in an ARM or a THUMB area. */
2e98972e 21706 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
cd000bff
DJ
21707}
21708
21709#else /* OBJ_ELF is defined. */
c19d1205 21710void
cd000bff 21711arm_init_frag (fragS * fragP, int max_chars)
c19d1205 21712{
b968d18a
JW
21713 int frag_thumb_mode;
21714
8dc2430f
NC
21715 /* If the current ARM vs THUMB mode has not already
21716 been recorded into this frag then do so now. */
cd000bff 21717 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
b968d18a
JW
21718 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
21719
21720 frag_thumb_mode = fragP->tc_frag_data.thumb_mode ^ MODE_RECORDED;
cd000bff 21721
f9c1b181
RL
21722 /* Record a mapping symbol for alignment frags. We will delete this
21723 later if the alignment ends up empty. */
21724 switch (fragP->fr_type)
21725 {
21726 case rs_align:
21727 case rs_align_test:
21728 case rs_fill:
21729 mapping_state_2 (MAP_DATA, max_chars);
21730 break;
21731 case rs_align_code:
b968d18a 21732 mapping_state_2 (frag_thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
f9c1b181
RL
21733 break;
21734 default:
21735 break;
cd000bff 21736 }
bfae80f2
RE
21737}
21738
c19d1205
ZW
21739/* When we change sections we need to issue a new mapping symbol. */
21740
21741void
21742arm_elf_change_section (void)
bfae80f2 21743{
c19d1205
ZW
21744 /* Link an unlinked unwind index table section to the .text section. */
21745 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
21746 && elf_linked_to_section (now_seg) == NULL)
21747 elf_linked_to_section (now_seg) = text_section;
bfae80f2
RE
21748}
21749
c19d1205
ZW
21750int
21751arm_elf_section_type (const char * str, size_t len)
e45d0630 21752{
c19d1205
ZW
21753 if (len == 5 && strncmp (str, "exidx", 5) == 0)
21754 return SHT_ARM_EXIDX;
e45d0630 21755
c19d1205
ZW
21756 return -1;
21757}
21758\f
21759/* Code to deal with unwinding tables. */
e45d0630 21760
c19d1205 21761static void add_unwind_adjustsp (offsetT);
e45d0630 21762
5f4273c7 21763/* Generate any deferred unwind frame offset. */
e45d0630 21764
bfae80f2 21765static void
c19d1205 21766flush_pending_unwind (void)
bfae80f2 21767{
c19d1205 21768 offsetT offset;
bfae80f2 21769
c19d1205
ZW
21770 offset = unwind.pending_offset;
21771 unwind.pending_offset = 0;
21772 if (offset != 0)
21773 add_unwind_adjustsp (offset);
bfae80f2
RE
21774}
21775
c19d1205
ZW
21776/* Add an opcode to this list for this function. Two-byte opcodes should
21777 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
21778 order. */
21779
bfae80f2 21780static void
c19d1205 21781add_unwind_opcode (valueT op, int length)
bfae80f2 21782{
c19d1205
ZW
21783 /* Add any deferred stack adjustment. */
21784 if (unwind.pending_offset)
21785 flush_pending_unwind ();
bfae80f2 21786
c19d1205 21787 unwind.sp_restored = 0;
bfae80f2 21788
c19d1205 21789 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 21790 {
c19d1205
ZW
21791 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
21792 if (unwind.opcodes)
325801bd
TS
21793 unwind.opcodes = XRESIZEVEC (unsigned char, unwind.opcodes,
21794 unwind.opcode_alloc);
c19d1205 21795 else
325801bd 21796 unwind.opcodes = XNEWVEC (unsigned char, unwind.opcode_alloc);
bfae80f2 21797 }
c19d1205 21798 while (length > 0)
bfae80f2 21799 {
c19d1205
ZW
21800 length--;
21801 unwind.opcodes[unwind.opcode_count] = op & 0xff;
21802 op >>= 8;
21803 unwind.opcode_count++;
bfae80f2 21804 }
bfae80f2
RE
21805}
21806
c19d1205
ZW
21807/* Add unwind opcodes to adjust the stack pointer. */
21808
bfae80f2 21809static void
c19d1205 21810add_unwind_adjustsp (offsetT offset)
bfae80f2 21811{
c19d1205 21812 valueT op;
bfae80f2 21813
c19d1205 21814 if (offset > 0x200)
bfae80f2 21815 {
c19d1205
ZW
21816 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
21817 char bytes[5];
21818 int n;
21819 valueT o;
bfae80f2 21820
c19d1205
ZW
21821 /* Long form: 0xb2, uleb128. */
21822 /* This might not fit in a word so add the individual bytes,
21823 remembering the list is built in reverse order. */
21824 o = (valueT) ((offset - 0x204) >> 2);
21825 if (o == 0)
21826 add_unwind_opcode (0, 1);
bfae80f2 21827
c19d1205
ZW
21828 /* Calculate the uleb128 encoding of the offset. */
21829 n = 0;
21830 while (o)
21831 {
21832 bytes[n] = o & 0x7f;
21833 o >>= 7;
21834 if (o)
21835 bytes[n] |= 0x80;
21836 n++;
21837 }
21838 /* Add the insn. */
21839 for (; n; n--)
21840 add_unwind_opcode (bytes[n - 1], 1);
21841 add_unwind_opcode (0xb2, 1);
21842 }
21843 else if (offset > 0x100)
bfae80f2 21844 {
c19d1205
ZW
21845 /* Two short opcodes. */
21846 add_unwind_opcode (0x3f, 1);
21847 op = (offset - 0x104) >> 2;
21848 add_unwind_opcode (op, 1);
bfae80f2 21849 }
c19d1205
ZW
21850 else if (offset > 0)
21851 {
21852 /* Short opcode. */
21853 op = (offset - 4) >> 2;
21854 add_unwind_opcode (op, 1);
21855 }
21856 else if (offset < 0)
bfae80f2 21857 {
c19d1205
ZW
21858 offset = -offset;
21859 while (offset > 0x100)
bfae80f2 21860 {
c19d1205
ZW
21861 add_unwind_opcode (0x7f, 1);
21862 offset -= 0x100;
bfae80f2 21863 }
c19d1205
ZW
21864 op = ((offset - 4) >> 2) | 0x40;
21865 add_unwind_opcode (op, 1);
bfae80f2 21866 }
bfae80f2
RE
21867}
21868
c19d1205
ZW
21869/* Finish the list of unwind opcodes for this function. */
21870static void
21871finish_unwind_opcodes (void)
bfae80f2 21872{
c19d1205 21873 valueT op;
bfae80f2 21874
c19d1205 21875 if (unwind.fp_used)
bfae80f2 21876 {
708587a4 21877 /* Adjust sp as necessary. */
c19d1205
ZW
21878 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
21879 flush_pending_unwind ();
bfae80f2 21880
c19d1205
ZW
21881 /* After restoring sp from the frame pointer. */
21882 op = 0x90 | unwind.fp_reg;
21883 add_unwind_opcode (op, 1);
21884 }
21885 else
21886 flush_pending_unwind ();
bfae80f2
RE
21887}
21888
bfae80f2 21889
c19d1205
ZW
21890/* Start an exception table entry. If idx is nonzero this is an index table
21891 entry. */
bfae80f2
RE
21892
21893static void
c19d1205 21894start_unwind_section (const segT text_seg, int idx)
bfae80f2 21895{
c19d1205
ZW
21896 const char * text_name;
21897 const char * prefix;
21898 const char * prefix_once;
21899 const char * group_name;
21900 size_t prefix_len;
21901 size_t text_len;
21902 char * sec_name;
21903 size_t sec_name_len;
21904 int type;
21905 int flags;
21906 int linkonce;
bfae80f2 21907
c19d1205 21908 if (idx)
bfae80f2 21909 {
c19d1205
ZW
21910 prefix = ELF_STRING_ARM_unwind;
21911 prefix_once = ELF_STRING_ARM_unwind_once;
21912 type = SHT_ARM_EXIDX;
bfae80f2 21913 }
c19d1205 21914 else
bfae80f2 21915 {
c19d1205
ZW
21916 prefix = ELF_STRING_ARM_unwind_info;
21917 prefix_once = ELF_STRING_ARM_unwind_info_once;
21918 type = SHT_PROGBITS;
bfae80f2
RE
21919 }
21920
c19d1205
ZW
21921 text_name = segment_name (text_seg);
21922 if (streq (text_name, ".text"))
21923 text_name = "";
21924
21925 if (strncmp (text_name, ".gnu.linkonce.t.",
21926 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 21927 {
c19d1205
ZW
21928 prefix = prefix_once;
21929 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
21930 }
21931
c19d1205
ZW
21932 prefix_len = strlen (prefix);
21933 text_len = strlen (text_name);
21934 sec_name_len = prefix_len + text_len;
21d799b5 21935 sec_name = (char *) xmalloc (sec_name_len + 1);
c19d1205
ZW
21936 memcpy (sec_name, prefix, prefix_len);
21937 memcpy (sec_name + prefix_len, text_name, text_len);
21938 sec_name[prefix_len + text_len] = '\0';
bfae80f2 21939
c19d1205
ZW
21940 flags = SHF_ALLOC;
21941 linkonce = 0;
21942 group_name = 0;
bfae80f2 21943
c19d1205
ZW
21944 /* Handle COMDAT group. */
21945 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 21946 {
c19d1205
ZW
21947 group_name = elf_group_name (text_seg);
21948 if (group_name == NULL)
21949 {
bd3ba5d1 21950 as_bad (_("Group section `%s' has no group signature"),
c19d1205
ZW
21951 segment_name (text_seg));
21952 ignore_rest_of_line ();
21953 return;
21954 }
21955 flags |= SHF_GROUP;
21956 linkonce = 1;
bfae80f2
RE
21957 }
21958
c19d1205 21959 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
bfae80f2 21960
5f4273c7 21961 /* Set the section link for index tables. */
c19d1205
ZW
21962 if (idx)
21963 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
21964}
21965
bfae80f2 21966
c19d1205
ZW
21967/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
21968 personality routine data. Returns zero, or the index table value for
cad0da33 21969 an inline entry. */
c19d1205
ZW
21970
21971static valueT
21972create_unwind_entry (int have_data)
bfae80f2 21973{
c19d1205
ZW
21974 int size;
21975 addressT where;
21976 char *ptr;
21977 /* The current word of data. */
21978 valueT data;
21979 /* The number of bytes left in this word. */
21980 int n;
bfae80f2 21981
c19d1205 21982 finish_unwind_opcodes ();
bfae80f2 21983
c19d1205
ZW
21984 /* Remember the current text section. */
21985 unwind.saved_seg = now_seg;
21986 unwind.saved_subseg = now_subseg;
bfae80f2 21987
c19d1205 21988 start_unwind_section (now_seg, 0);
bfae80f2 21989
c19d1205 21990 if (unwind.personality_routine == NULL)
bfae80f2 21991 {
c19d1205
ZW
21992 if (unwind.personality_index == -2)
21993 {
21994 if (have_data)
5f4273c7 21995 as_bad (_("handlerdata in cantunwind frame"));
c19d1205
ZW
21996 return 1; /* EXIDX_CANTUNWIND. */
21997 }
bfae80f2 21998
c19d1205
ZW
21999 /* Use a default personality routine if none is specified. */
22000 if (unwind.personality_index == -1)
22001 {
22002 if (unwind.opcode_count > 3)
22003 unwind.personality_index = 1;
22004 else
22005 unwind.personality_index = 0;
22006 }
bfae80f2 22007
c19d1205
ZW
22008 /* Space for the personality routine entry. */
22009 if (unwind.personality_index == 0)
22010 {
22011 if (unwind.opcode_count > 3)
22012 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 22013
c19d1205
ZW
22014 if (!have_data)
22015 {
22016 /* All the data is inline in the index table. */
22017 data = 0x80;
22018 n = 3;
22019 while (unwind.opcode_count > 0)
22020 {
22021 unwind.opcode_count--;
22022 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
22023 n--;
22024 }
bfae80f2 22025
c19d1205
ZW
22026 /* Pad with "finish" opcodes. */
22027 while (n--)
22028 data = (data << 8) | 0xb0;
bfae80f2 22029
c19d1205
ZW
22030 return data;
22031 }
22032 size = 0;
22033 }
22034 else
22035 /* We get two opcodes "free" in the first word. */
22036 size = unwind.opcode_count - 2;
22037 }
22038 else
5011093d 22039 {
cad0da33
NC
22040 /* PR 16765: Missing or misplaced unwind directives can trigger this. */
22041 if (unwind.personality_index != -1)
22042 {
22043 as_bad (_("attempt to recreate an unwind entry"));
22044 return 1;
22045 }
5011093d
NC
22046
22047 /* An extra byte is required for the opcode count. */
22048 size = unwind.opcode_count + 1;
22049 }
bfae80f2 22050
c19d1205
ZW
22051 size = (size + 3) >> 2;
22052 if (size > 0xff)
22053 as_bad (_("too many unwind opcodes"));
bfae80f2 22054
c19d1205
ZW
22055 frag_align (2, 0, 0);
22056 record_alignment (now_seg, 2);
22057 unwind.table_entry = expr_build_dot ();
22058
22059 /* Allocate the table entry. */
22060 ptr = frag_more ((size << 2) + 4);
74929e7b
NC
22061 /* PR 13449: Zero the table entries in case some of them are not used. */
22062 memset (ptr, 0, (size << 2) + 4);
c19d1205 22063 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 22064
c19d1205 22065 switch (unwind.personality_index)
bfae80f2 22066 {
c19d1205
ZW
22067 case -1:
22068 /* ??? Should this be a PLT generating relocation? */
22069 /* Custom personality routine. */
22070 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
22071 BFD_RELOC_ARM_PREL31);
bfae80f2 22072
c19d1205
ZW
22073 where += 4;
22074 ptr += 4;
bfae80f2 22075
c19d1205 22076 /* Set the first byte to the number of additional words. */
5011093d 22077 data = size > 0 ? size - 1 : 0;
c19d1205
ZW
22078 n = 3;
22079 break;
bfae80f2 22080
c19d1205
ZW
22081 /* ABI defined personality routines. */
22082 case 0:
22083 /* Three opcodes bytes are packed into the first word. */
22084 data = 0x80;
22085 n = 3;
22086 break;
bfae80f2 22087
c19d1205
ZW
22088 case 1:
22089 case 2:
22090 /* The size and first two opcode bytes go in the first word. */
22091 data = ((0x80 + unwind.personality_index) << 8) | size;
22092 n = 2;
22093 break;
bfae80f2 22094
c19d1205
ZW
22095 default:
22096 /* Should never happen. */
22097 abort ();
22098 }
bfae80f2 22099
c19d1205
ZW
22100 /* Pack the opcodes into words (MSB first), reversing the list at the same
22101 time. */
22102 while (unwind.opcode_count > 0)
22103 {
22104 if (n == 0)
22105 {
22106 md_number_to_chars (ptr, data, 4);
22107 ptr += 4;
22108 n = 4;
22109 data = 0;
22110 }
22111 unwind.opcode_count--;
22112 n--;
22113 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
22114 }
22115
22116 /* Finish off the last word. */
22117 if (n < 4)
22118 {
22119 /* Pad with "finish" opcodes. */
22120 while (n--)
22121 data = (data << 8) | 0xb0;
22122
22123 md_number_to_chars (ptr, data, 4);
22124 }
22125
22126 if (!have_data)
22127 {
22128 /* Add an empty descriptor if there is no user-specified data. */
22129 ptr = frag_more (4);
22130 md_number_to_chars (ptr, 0, 4);
22131 }
22132
22133 return 0;
bfae80f2
RE
22134}
22135
f0927246
NC
22136
22137/* Initialize the DWARF-2 unwind information for this procedure. */
22138
22139void
22140tc_arm_frame_initial_instructions (void)
22141{
22142 cfi_add_CFA_def_cfa (REG_SP, 0);
22143}
22144#endif /* OBJ_ELF */
22145
c19d1205
ZW
22146/* Convert REGNAME to a DWARF-2 register number. */
22147
22148int
1df69f4f 22149tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 22150{
1df69f4f 22151 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
1f5afe1c
NC
22152 if (reg != FAIL)
22153 return reg;
c19d1205 22154
1f5afe1c
NC
22155 /* PR 16694: Allow VFP registers as well. */
22156 reg = arm_reg_parse (&regname, REG_TYPE_VFS);
22157 if (reg != FAIL)
22158 return 64 + reg;
c19d1205 22159
1f5afe1c
NC
22160 reg = arm_reg_parse (&regname, REG_TYPE_VFD);
22161 if (reg != FAIL)
22162 return reg + 256;
22163
22164 return -1;
bfae80f2
RE
22165}
22166
f0927246 22167#ifdef TE_PE
c19d1205 22168void
f0927246 22169tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 22170{
91d6fa6a 22171 expressionS exp;
bfae80f2 22172
91d6fa6a
NC
22173 exp.X_op = O_secrel;
22174 exp.X_add_symbol = symbol;
22175 exp.X_add_number = 0;
22176 emit_expr (&exp, size);
f0927246
NC
22177}
22178#endif
bfae80f2 22179
c19d1205 22180/* MD interface: Symbol and relocation handling. */
bfae80f2 22181
2fc8bdac
ZW
22182/* Return the address within the segment that a PC-relative fixup is
22183 relative to. For ARM, PC-relative fixups applied to instructions
22184 are generally relative to the location of the fixup plus 8 bytes.
22185 Thumb branches are offset by 4, and Thumb loads relative to PC
22186 require special handling. */
bfae80f2 22187
c19d1205 22188long
2fc8bdac 22189md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 22190{
2fc8bdac
ZW
22191 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
22192
22193 /* If this is pc-relative and we are going to emit a relocation
22194 then we just want to put out any pipeline compensation that the linker
53baae48
NC
22195 will need. Otherwise we want to use the calculated base.
22196 For WinCE we skip the bias for externals as well, since this
22197 is how the MS ARM-CE assembler behaves and we want to be compatible. */
5f4273c7 22198 if (fixP->fx_pcrel
2fc8bdac 22199 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
22200 || (arm_force_relocation (fixP)
22201#ifdef TE_WINCE
22202 && !S_IS_EXTERNAL (fixP->fx_addsy)
22203#endif
22204 )))
2fc8bdac 22205 base = 0;
bfae80f2 22206
267bf995 22207
c19d1205 22208 switch (fixP->fx_r_type)
bfae80f2 22209 {
2fc8bdac
ZW
22210 /* PC relative addressing on the Thumb is slightly odd as the
22211 bottom two bits of the PC are forced to zero for the
22212 calculation. This happens *after* application of the
22213 pipeline offset. However, Thumb adrl already adjusts for
22214 this, so we need not do it again. */
c19d1205 22215 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 22216 return base & ~3;
c19d1205
ZW
22217
22218 case BFD_RELOC_ARM_THUMB_OFFSET:
22219 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 22220 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 22221 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 22222 return (base + 4) & ~3;
c19d1205 22223
2fc8bdac
ZW
22224 /* Thumb branches are simply offset by +4. */
22225 case BFD_RELOC_THUMB_PCREL_BRANCH7:
22226 case BFD_RELOC_THUMB_PCREL_BRANCH9:
22227 case BFD_RELOC_THUMB_PCREL_BRANCH12:
22228 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac 22229 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac 22230 return base + 4;
bfae80f2 22231
267bf995 22232 case BFD_RELOC_THUMB_PCREL_BRANCH23:
486499d0
CL
22233 if (fixP->fx_addsy
22234 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22235 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995 22236 && ARM_IS_FUNC (fixP->fx_addsy)
477330fc
RM
22237 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22238 base = fixP->fx_where + fixP->fx_frag->fr_address;
267bf995
RR
22239 return base + 4;
22240
00adf2d4
JB
22241 /* BLX is like branches above, but forces the low two bits of PC to
22242 zero. */
486499d0
CL
22243 case BFD_RELOC_THUMB_PCREL_BLX:
22244 if (fixP->fx_addsy
22245 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22246 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
22247 && THUMB_IS_FUNC (fixP->fx_addsy)
22248 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22249 base = fixP->fx_where + fixP->fx_frag->fr_address;
00adf2d4
JB
22250 return (base + 4) & ~3;
22251
2fc8bdac
ZW
22252 /* ARM mode branches are offset by +8. However, the Windows CE
22253 loader expects the relocation not to take this into account. */
267bf995 22254 case BFD_RELOC_ARM_PCREL_BLX:
486499d0
CL
22255 if (fixP->fx_addsy
22256 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22257 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
22258 && ARM_IS_FUNC (fixP->fx_addsy)
22259 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22260 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 22261 return base + 8;
267bf995 22262
486499d0
CL
22263 case BFD_RELOC_ARM_PCREL_CALL:
22264 if (fixP->fx_addsy
22265 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22266 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
22267 && THUMB_IS_FUNC (fixP->fx_addsy)
22268 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22269 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 22270 return base + 8;
267bf995 22271
2fc8bdac 22272 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c 22273 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 22274 case BFD_RELOC_ARM_PLT32:
c19d1205 22275#ifdef TE_WINCE
5f4273c7 22276 /* When handling fixups immediately, because we have already
477330fc 22277 discovered the value of a symbol, or the address of the frag involved
53baae48 22278 we must account for the offset by +8, as the OS loader will never see the reloc.
477330fc
RM
22279 see fixup_segment() in write.c
22280 The S_IS_EXTERNAL test handles the case of global symbols.
22281 Those need the calculated base, not just the pipe compensation the linker will need. */
53baae48
NC
22282 if (fixP->fx_pcrel
22283 && fixP->fx_addsy != NULL
22284 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22285 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
22286 return base + 8;
2fc8bdac 22287 return base;
c19d1205 22288#else
2fc8bdac 22289 return base + 8;
c19d1205 22290#endif
2fc8bdac 22291
267bf995 22292
2fc8bdac
ZW
22293 /* ARM mode loads relative to PC are also offset by +8. Unlike
22294 branches, the Windows CE loader *does* expect the relocation
22295 to take this into account. */
22296 case BFD_RELOC_ARM_OFFSET_IMM:
22297 case BFD_RELOC_ARM_OFFSET_IMM8:
22298 case BFD_RELOC_ARM_HWLITERAL:
22299 case BFD_RELOC_ARM_LITERAL:
22300 case BFD_RELOC_ARM_CP_OFF_IMM:
22301 return base + 8;
22302
22303
22304 /* Other PC-relative relocations are un-offset. */
22305 default:
22306 return base;
22307 }
bfae80f2
RE
22308}
22309
8b2d793c
NC
22310static bfd_boolean flag_warn_syms = TRUE;
22311
ae8714c2
NC
22312bfd_boolean
22313arm_tc_equal_in_insn (int c ATTRIBUTE_UNUSED, char * name)
bfae80f2 22314{
8b2d793c
NC
22315 /* PR 18347 - Warn if the user attempts to create a symbol with the same
22316 name as an ARM instruction. Whilst strictly speaking it is allowed, it
22317 does mean that the resulting code might be very confusing to the reader.
22318 Also this warning can be triggered if the user omits an operand before
22319 an immediate address, eg:
22320
22321 LDR =foo
22322
22323 GAS treats this as an assignment of the value of the symbol foo to a
22324 symbol LDR, and so (without this code) it will not issue any kind of
22325 warning or error message.
22326
22327 Note - ARM instructions are case-insensitive but the strings in the hash
22328 table are all stored in lower case, so we must first ensure that name is
ae8714c2
NC
22329 lower case too. */
22330 if (flag_warn_syms && arm_ops_hsh)
8b2d793c
NC
22331 {
22332 char * nbuf = strdup (name);
22333 char * p;
22334
22335 for (p = nbuf; *p; p++)
22336 *p = TOLOWER (*p);
22337 if (hash_find (arm_ops_hsh, nbuf) != NULL)
22338 {
22339 static struct hash_control * already_warned = NULL;
22340
22341 if (already_warned == NULL)
22342 already_warned = hash_new ();
22343 /* Only warn about the symbol once. To keep the code
22344 simple we let hash_insert do the lookup for us. */
22345 if (hash_insert (already_warned, name, NULL) == NULL)
ae8714c2 22346 as_warn (_("[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s"), name);
8b2d793c
NC
22347 }
22348 else
22349 free (nbuf);
22350 }
3739860c 22351
ae8714c2
NC
22352 return FALSE;
22353}
22354
22355/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
22356 Otherwise we have no need to default values of symbols. */
22357
22358symbolS *
22359md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
22360{
22361#ifdef OBJ_ELF
22362 if (name[0] == '_' && name[1] == 'G'
22363 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
22364 {
22365 if (!GOT_symbol)
22366 {
22367 if (symbol_find (name))
22368 as_bad (_("GOT already in the symbol table"));
22369
22370 GOT_symbol = symbol_new (name, undefined_section,
22371 (valueT) 0, & zero_address_frag);
22372 }
22373
22374 return GOT_symbol;
22375 }
22376#endif
22377
c921be7d 22378 return NULL;
bfae80f2
RE
22379}
22380
55cf6793 22381/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
22382 computed as two separate immediate values, added together. We
22383 already know that this value cannot be computed by just one ARM
22384 instruction. */
22385
22386static unsigned int
22387validate_immediate_twopart (unsigned int val,
22388 unsigned int * highpart)
bfae80f2 22389{
c19d1205
ZW
22390 unsigned int a;
22391 unsigned int i;
bfae80f2 22392
c19d1205
ZW
22393 for (i = 0; i < 32; i += 2)
22394 if (((a = rotate_left (val, i)) & 0xff) != 0)
22395 {
22396 if (a & 0xff00)
22397 {
22398 if (a & ~ 0xffff)
22399 continue;
22400 * highpart = (a >> 8) | ((i + 24) << 7);
22401 }
22402 else if (a & 0xff0000)
22403 {
22404 if (a & 0xff000000)
22405 continue;
22406 * highpart = (a >> 16) | ((i + 16) << 7);
22407 }
22408 else
22409 {
9c2799c2 22410 gas_assert (a & 0xff000000);
c19d1205
ZW
22411 * highpart = (a >> 24) | ((i + 8) << 7);
22412 }
bfae80f2 22413
c19d1205
ZW
22414 return (a & 0xff) | (i << 7);
22415 }
bfae80f2 22416
c19d1205 22417 return FAIL;
bfae80f2
RE
22418}
22419
c19d1205
ZW
22420static int
22421validate_offset_imm (unsigned int val, int hwse)
22422{
22423 if ((hwse && val > 255) || val > 4095)
22424 return FAIL;
22425 return val;
22426}
bfae80f2 22427
55cf6793 22428/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
22429 negative immediate constant by altering the instruction. A bit of
22430 a hack really.
22431 MOV <-> MVN
22432 AND <-> BIC
22433 ADC <-> SBC
22434 by inverting the second operand, and
22435 ADD <-> SUB
22436 CMP <-> CMN
22437 by negating the second operand. */
bfae80f2 22438
c19d1205
ZW
22439static int
22440negate_data_op (unsigned long * instruction,
22441 unsigned long value)
bfae80f2 22442{
c19d1205
ZW
22443 int op, new_inst;
22444 unsigned long negated, inverted;
bfae80f2 22445
c19d1205
ZW
22446 negated = encode_arm_immediate (-value);
22447 inverted = encode_arm_immediate (~value);
bfae80f2 22448
c19d1205
ZW
22449 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
22450 switch (op)
bfae80f2 22451 {
c19d1205
ZW
22452 /* First negates. */
22453 case OPCODE_SUB: /* ADD <-> SUB */
22454 new_inst = OPCODE_ADD;
22455 value = negated;
22456 break;
bfae80f2 22457
c19d1205
ZW
22458 case OPCODE_ADD:
22459 new_inst = OPCODE_SUB;
22460 value = negated;
22461 break;
bfae80f2 22462
c19d1205
ZW
22463 case OPCODE_CMP: /* CMP <-> CMN */
22464 new_inst = OPCODE_CMN;
22465 value = negated;
22466 break;
bfae80f2 22467
c19d1205
ZW
22468 case OPCODE_CMN:
22469 new_inst = OPCODE_CMP;
22470 value = negated;
22471 break;
bfae80f2 22472
c19d1205
ZW
22473 /* Now Inverted ops. */
22474 case OPCODE_MOV: /* MOV <-> MVN */
22475 new_inst = OPCODE_MVN;
22476 value = inverted;
22477 break;
bfae80f2 22478
c19d1205
ZW
22479 case OPCODE_MVN:
22480 new_inst = OPCODE_MOV;
22481 value = inverted;
22482 break;
bfae80f2 22483
c19d1205
ZW
22484 case OPCODE_AND: /* AND <-> BIC */
22485 new_inst = OPCODE_BIC;
22486 value = inverted;
22487 break;
bfae80f2 22488
c19d1205
ZW
22489 case OPCODE_BIC:
22490 new_inst = OPCODE_AND;
22491 value = inverted;
22492 break;
bfae80f2 22493
c19d1205
ZW
22494 case OPCODE_ADC: /* ADC <-> SBC */
22495 new_inst = OPCODE_SBC;
22496 value = inverted;
22497 break;
bfae80f2 22498
c19d1205
ZW
22499 case OPCODE_SBC:
22500 new_inst = OPCODE_ADC;
22501 value = inverted;
22502 break;
bfae80f2 22503
c19d1205
ZW
22504 /* We cannot do anything. */
22505 default:
22506 return FAIL;
b99bd4ef
NC
22507 }
22508
c19d1205
ZW
22509 if (value == (unsigned) FAIL)
22510 return FAIL;
22511
22512 *instruction &= OPCODE_MASK;
22513 *instruction |= new_inst << DATA_OP_SHIFT;
22514 return value;
b99bd4ef
NC
22515}
22516
ef8d22e6
PB
22517/* Like negate_data_op, but for Thumb-2. */
22518
22519static unsigned int
16dd5e42 22520thumb32_negate_data_op (offsetT *instruction, unsigned int value)
ef8d22e6
PB
22521{
22522 int op, new_inst;
22523 int rd;
16dd5e42 22524 unsigned int negated, inverted;
ef8d22e6
PB
22525
22526 negated = encode_thumb32_immediate (-value);
22527 inverted = encode_thumb32_immediate (~value);
22528
22529 rd = (*instruction >> 8) & 0xf;
22530 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
22531 switch (op)
22532 {
22533 /* ADD <-> SUB. Includes CMP <-> CMN. */
22534 case T2_OPCODE_SUB:
22535 new_inst = T2_OPCODE_ADD;
22536 value = negated;
22537 break;
22538
22539 case T2_OPCODE_ADD:
22540 new_inst = T2_OPCODE_SUB;
22541 value = negated;
22542 break;
22543
22544 /* ORR <-> ORN. Includes MOV <-> MVN. */
22545 case T2_OPCODE_ORR:
22546 new_inst = T2_OPCODE_ORN;
22547 value = inverted;
22548 break;
22549
22550 case T2_OPCODE_ORN:
22551 new_inst = T2_OPCODE_ORR;
22552 value = inverted;
22553 break;
22554
22555 /* AND <-> BIC. TST has no inverted equivalent. */
22556 case T2_OPCODE_AND:
22557 new_inst = T2_OPCODE_BIC;
22558 if (rd == 15)
22559 value = FAIL;
22560 else
22561 value = inverted;
22562 break;
22563
22564 case T2_OPCODE_BIC:
22565 new_inst = T2_OPCODE_AND;
22566 value = inverted;
22567 break;
22568
22569 /* ADC <-> SBC */
22570 case T2_OPCODE_ADC:
22571 new_inst = T2_OPCODE_SBC;
22572 value = inverted;
22573 break;
22574
22575 case T2_OPCODE_SBC:
22576 new_inst = T2_OPCODE_ADC;
22577 value = inverted;
22578 break;
22579
22580 /* We cannot do anything. */
22581 default:
22582 return FAIL;
22583 }
22584
16dd5e42 22585 if (value == (unsigned int)FAIL)
ef8d22e6
PB
22586 return FAIL;
22587
22588 *instruction &= T2_OPCODE_MASK;
22589 *instruction |= new_inst << T2_DATA_OP_SHIFT;
22590 return value;
22591}
22592
8f06b2d8
PB
22593/* Read a 32-bit thumb instruction from buf. */
22594static unsigned long
22595get_thumb32_insn (char * buf)
22596{
22597 unsigned long insn;
22598 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
22599 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22600
22601 return insn;
22602}
22603
a8bc6c78
PB
22604
22605/* We usually want to set the low bit on the address of thumb function
22606 symbols. In particular .word foo - . should have the low bit set.
22607 Generic code tries to fold the difference of two symbols to
22608 a constant. Prevent this and force a relocation when the first symbols
22609 is a thumb function. */
c921be7d
NC
22610
22611bfd_boolean
a8bc6c78
PB
22612arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
22613{
22614 if (op == O_subtract
22615 && l->X_op == O_symbol
22616 && r->X_op == O_symbol
22617 && THUMB_IS_FUNC (l->X_add_symbol))
22618 {
22619 l->X_op = O_subtract;
22620 l->X_op_symbol = r->X_add_symbol;
22621 l->X_add_number -= r->X_add_number;
c921be7d 22622 return TRUE;
a8bc6c78 22623 }
c921be7d 22624
a8bc6c78 22625 /* Process as normal. */
c921be7d 22626 return FALSE;
a8bc6c78
PB
22627}
22628
4a42ebbc
RR
22629/* Encode Thumb2 unconditional branches and calls. The encoding
22630 for the 2 are identical for the immediate values. */
22631
22632static void
22633encode_thumb2_b_bl_offset (char * buf, offsetT value)
22634{
22635#define T2I1I2MASK ((1 << 13) | (1 << 11))
22636 offsetT newval;
22637 offsetT newval2;
22638 addressT S, I1, I2, lo, hi;
22639
22640 S = (value >> 24) & 0x01;
22641 I1 = (value >> 23) & 0x01;
22642 I2 = (value >> 22) & 0x01;
22643 hi = (value >> 12) & 0x3ff;
fa94de6b 22644 lo = (value >> 1) & 0x7ff;
4a42ebbc
RR
22645 newval = md_chars_to_number (buf, THUMB_SIZE);
22646 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22647 newval |= (S << 10) | hi;
22648 newval2 &= ~T2I1I2MASK;
22649 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
22650 md_number_to_chars (buf, newval, THUMB_SIZE);
22651 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
22652}
22653
c19d1205 22654void
55cf6793 22655md_apply_fix (fixS * fixP,
c19d1205
ZW
22656 valueT * valP,
22657 segT seg)
22658{
22659 offsetT value = * valP;
22660 offsetT newval;
22661 unsigned int newimm;
22662 unsigned long temp;
22663 int sign;
22664 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 22665
9c2799c2 22666 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 22667
c19d1205 22668 /* Note whether this will delete the relocation. */
4962c51a 22669
c19d1205
ZW
22670 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
22671 fixP->fx_done = 1;
b99bd4ef 22672
adbaf948 22673 /* On a 64-bit host, silently truncate 'value' to 32 bits for
5f4273c7 22674 consistency with the behaviour on 32-bit hosts. Remember value
adbaf948
ZW
22675 for emit_reloc. */
22676 value &= 0xffffffff;
22677 value ^= 0x80000000;
5f4273c7 22678 value -= 0x80000000;
adbaf948
ZW
22679
22680 *valP = value;
c19d1205 22681 fixP->fx_addnumber = value;
b99bd4ef 22682
adbaf948
ZW
22683 /* Same treatment for fixP->fx_offset. */
22684 fixP->fx_offset &= 0xffffffff;
22685 fixP->fx_offset ^= 0x80000000;
22686 fixP->fx_offset -= 0x80000000;
22687
c19d1205 22688 switch (fixP->fx_r_type)
b99bd4ef 22689 {
c19d1205
ZW
22690 case BFD_RELOC_NONE:
22691 /* This will need to go in the object file. */
22692 fixP->fx_done = 0;
22693 break;
b99bd4ef 22694
c19d1205
ZW
22695 case BFD_RELOC_ARM_IMMEDIATE:
22696 /* We claim that this fixup has been processed here,
22697 even if in fact we generate an error because we do
22698 not have a reloc for it, so tc_gen_reloc will reject it. */
22699 fixP->fx_done = 1;
b99bd4ef 22700
77db8e2e 22701 if (fixP->fx_addsy)
b99bd4ef 22702 {
77db8e2e 22703 const char *msg = 0;
b99bd4ef 22704
77db8e2e
NC
22705 if (! S_IS_DEFINED (fixP->fx_addsy))
22706 msg = _("undefined symbol %s used as an immediate value");
22707 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
22708 msg = _("symbol %s is in a different section");
22709 else if (S_IS_WEAK (fixP->fx_addsy))
22710 msg = _("symbol %s is weak and may be overridden later");
22711
22712 if (msg)
22713 {
22714 as_bad_where (fixP->fx_file, fixP->fx_line,
22715 msg, S_GET_NAME (fixP->fx_addsy));
22716 break;
22717 }
42e5fcbf
AS
22718 }
22719
c19d1205
ZW
22720 temp = md_chars_to_number (buf, INSN_SIZE);
22721
5e73442d
SL
22722 /* If the offset is negative, we should use encoding A2 for ADR. */
22723 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
22724 newimm = negate_data_op (&temp, value);
22725 else
22726 {
22727 newimm = encode_arm_immediate (value);
22728
22729 /* If the instruction will fail, see if we can fix things up by
22730 changing the opcode. */
22731 if (newimm == (unsigned int) FAIL)
22732 newimm = negate_data_op (&temp, value);
22733 }
22734
22735 if (newimm == (unsigned int) FAIL)
b99bd4ef 22736 {
c19d1205
ZW
22737 as_bad_where (fixP->fx_file, fixP->fx_line,
22738 _("invalid constant (%lx) after fixup"),
22739 (unsigned long) value);
22740 break;
b99bd4ef 22741 }
b99bd4ef 22742
c19d1205
ZW
22743 newimm |= (temp & 0xfffff000);
22744 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
22745 break;
b99bd4ef 22746
c19d1205
ZW
22747 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
22748 {
22749 unsigned int highpart = 0;
22750 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 22751
77db8e2e 22752 if (fixP->fx_addsy)
42e5fcbf 22753 {
77db8e2e 22754 const char *msg = 0;
42e5fcbf 22755
77db8e2e
NC
22756 if (! S_IS_DEFINED (fixP->fx_addsy))
22757 msg = _("undefined symbol %s used as an immediate value");
22758 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
22759 msg = _("symbol %s is in a different section");
22760 else if (S_IS_WEAK (fixP->fx_addsy))
22761 msg = _("symbol %s is weak and may be overridden later");
42e5fcbf 22762
77db8e2e
NC
22763 if (msg)
22764 {
22765 as_bad_where (fixP->fx_file, fixP->fx_line,
22766 msg, S_GET_NAME (fixP->fx_addsy));
22767 break;
22768 }
22769 }
fa94de6b 22770
c19d1205
ZW
22771 newimm = encode_arm_immediate (value);
22772 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 22773
c19d1205
ZW
22774 /* If the instruction will fail, see if we can fix things up by
22775 changing the opcode. */
22776 if (newimm == (unsigned int) FAIL
22777 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
22778 {
22779 /* No ? OK - try using two ADD instructions to generate
22780 the value. */
22781 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 22782
c19d1205
ZW
22783 /* Yes - then make sure that the second instruction is
22784 also an add. */
22785 if (newimm != (unsigned int) FAIL)
22786 newinsn = temp;
22787 /* Still No ? Try using a negated value. */
22788 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
22789 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
22790 /* Otherwise - give up. */
22791 else
22792 {
22793 as_bad_where (fixP->fx_file, fixP->fx_line,
22794 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
22795 (long) value);
22796 break;
22797 }
b99bd4ef 22798
c19d1205
ZW
22799 /* Replace the first operand in the 2nd instruction (which
22800 is the PC) with the destination register. We have
22801 already added in the PC in the first instruction and we
22802 do not want to do it again. */
22803 newinsn &= ~ 0xf0000;
22804 newinsn |= ((newinsn & 0x0f000) << 4);
22805 }
b99bd4ef 22806
c19d1205
ZW
22807 newimm |= (temp & 0xfffff000);
22808 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 22809
c19d1205
ZW
22810 highpart |= (newinsn & 0xfffff000);
22811 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
22812 }
22813 break;
b99bd4ef 22814
c19d1205 22815 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
22816 if (!fixP->fx_done && seg->use_rela_p)
22817 value = 0;
22818
c19d1205 22819 case BFD_RELOC_ARM_LITERAL:
26d97720 22820 sign = value > 0;
b99bd4ef 22821
c19d1205
ZW
22822 if (value < 0)
22823 value = - value;
b99bd4ef 22824
c19d1205 22825 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 22826 {
c19d1205
ZW
22827 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
22828 as_bad_where (fixP->fx_file, fixP->fx_line,
22829 _("invalid literal constant: pool needs to be closer"));
22830 else
22831 as_bad_where (fixP->fx_file, fixP->fx_line,
22832 _("bad immediate value for offset (%ld)"),
22833 (long) value);
22834 break;
f03698e6
RE
22835 }
22836
c19d1205 22837 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
22838 if (value == 0)
22839 newval &= 0xfffff000;
22840 else
22841 {
22842 newval &= 0xff7ff000;
22843 newval |= value | (sign ? INDEX_UP : 0);
22844 }
c19d1205
ZW
22845 md_number_to_chars (buf, newval, INSN_SIZE);
22846 break;
b99bd4ef 22847
c19d1205
ZW
22848 case BFD_RELOC_ARM_OFFSET_IMM8:
22849 case BFD_RELOC_ARM_HWLITERAL:
26d97720 22850 sign = value > 0;
b99bd4ef 22851
c19d1205
ZW
22852 if (value < 0)
22853 value = - value;
b99bd4ef 22854
c19d1205 22855 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 22856 {
c19d1205
ZW
22857 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
22858 as_bad_where (fixP->fx_file, fixP->fx_line,
22859 _("invalid literal constant: pool needs to be closer"));
22860 else
427d0db6
RM
22861 as_bad_where (fixP->fx_file, fixP->fx_line,
22862 _("bad immediate value for 8-bit offset (%ld)"),
22863 (long) value);
c19d1205 22864 break;
b99bd4ef
NC
22865 }
22866
c19d1205 22867 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
22868 if (value == 0)
22869 newval &= 0xfffff0f0;
22870 else
22871 {
22872 newval &= 0xff7ff0f0;
22873 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
22874 }
c19d1205
ZW
22875 md_number_to_chars (buf, newval, INSN_SIZE);
22876 break;
b99bd4ef 22877
c19d1205
ZW
22878 case BFD_RELOC_ARM_T32_OFFSET_U8:
22879 if (value < 0 || value > 1020 || value % 4 != 0)
22880 as_bad_where (fixP->fx_file, fixP->fx_line,
22881 _("bad immediate value for offset (%ld)"), (long) value);
22882 value /= 4;
b99bd4ef 22883
c19d1205 22884 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
22885 newval |= value;
22886 md_number_to_chars (buf+2, newval, THUMB_SIZE);
22887 break;
b99bd4ef 22888
c19d1205
ZW
22889 case BFD_RELOC_ARM_T32_OFFSET_IMM:
22890 /* This is a complicated relocation used for all varieties of Thumb32
22891 load/store instruction with immediate offset:
22892
22893 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
477330fc 22894 *4, optional writeback(W)
c19d1205
ZW
22895 (doubleword load/store)
22896
22897 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
22898 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
22899 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
22900 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
22901 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
22902
22903 Uppercase letters indicate bits that are already encoded at
22904 this point. Lowercase letters are our problem. For the
22905 second block of instructions, the secondary opcode nybble
22906 (bits 8..11) is present, and bit 23 is zero, even if this is
22907 a PC-relative operation. */
22908 newval = md_chars_to_number (buf, THUMB_SIZE);
22909 newval <<= 16;
22910 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 22911
c19d1205 22912 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 22913 {
c19d1205
ZW
22914 /* Doubleword load/store: 8-bit offset, scaled by 4. */
22915 if (value >= 0)
22916 newval |= (1 << 23);
22917 else
22918 value = -value;
22919 if (value % 4 != 0)
22920 {
22921 as_bad_where (fixP->fx_file, fixP->fx_line,
22922 _("offset not a multiple of 4"));
22923 break;
22924 }
22925 value /= 4;
216d22bc 22926 if (value > 0xff)
c19d1205
ZW
22927 {
22928 as_bad_where (fixP->fx_file, fixP->fx_line,
22929 _("offset out of range"));
22930 break;
22931 }
22932 newval &= ~0xff;
b99bd4ef 22933 }
c19d1205 22934 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 22935 {
c19d1205
ZW
22936 /* PC-relative, 12-bit offset. */
22937 if (value >= 0)
22938 newval |= (1 << 23);
22939 else
22940 value = -value;
216d22bc 22941 if (value > 0xfff)
c19d1205
ZW
22942 {
22943 as_bad_where (fixP->fx_file, fixP->fx_line,
22944 _("offset out of range"));
22945 break;
22946 }
22947 newval &= ~0xfff;
b99bd4ef 22948 }
c19d1205 22949 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 22950 {
c19d1205
ZW
22951 /* Writeback: 8-bit, +/- offset. */
22952 if (value >= 0)
22953 newval |= (1 << 9);
22954 else
22955 value = -value;
216d22bc 22956 if (value > 0xff)
c19d1205
ZW
22957 {
22958 as_bad_where (fixP->fx_file, fixP->fx_line,
22959 _("offset out of range"));
22960 break;
22961 }
22962 newval &= ~0xff;
b99bd4ef 22963 }
c19d1205 22964 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 22965 {
c19d1205 22966 /* T-instruction: positive 8-bit offset. */
216d22bc 22967 if (value < 0 || value > 0xff)
b99bd4ef 22968 {
c19d1205
ZW
22969 as_bad_where (fixP->fx_file, fixP->fx_line,
22970 _("offset out of range"));
22971 break;
b99bd4ef 22972 }
c19d1205
ZW
22973 newval &= ~0xff;
22974 newval |= value;
b99bd4ef
NC
22975 }
22976 else
b99bd4ef 22977 {
c19d1205
ZW
22978 /* Positive 12-bit or negative 8-bit offset. */
22979 int limit;
22980 if (value >= 0)
b99bd4ef 22981 {
c19d1205
ZW
22982 newval |= (1 << 23);
22983 limit = 0xfff;
22984 }
22985 else
22986 {
22987 value = -value;
22988 limit = 0xff;
22989 }
22990 if (value > limit)
22991 {
22992 as_bad_where (fixP->fx_file, fixP->fx_line,
22993 _("offset out of range"));
22994 break;
b99bd4ef 22995 }
c19d1205 22996 newval &= ~limit;
b99bd4ef 22997 }
b99bd4ef 22998
c19d1205
ZW
22999 newval |= value;
23000 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
23001 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
23002 break;
404ff6b5 23003
c19d1205
ZW
23004 case BFD_RELOC_ARM_SHIFT_IMM:
23005 newval = md_chars_to_number (buf, INSN_SIZE);
23006 if (((unsigned long) value) > 32
23007 || (value == 32
23008 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
23009 {
23010 as_bad_where (fixP->fx_file, fixP->fx_line,
23011 _("shift expression is too large"));
23012 break;
23013 }
404ff6b5 23014
c19d1205
ZW
23015 if (value == 0)
23016 /* Shifts of zero must be done as lsl. */
23017 newval &= ~0x60;
23018 else if (value == 32)
23019 value = 0;
23020 newval &= 0xfffff07f;
23021 newval |= (value & 0x1f) << 7;
23022 md_number_to_chars (buf, newval, INSN_SIZE);
23023 break;
404ff6b5 23024
c19d1205 23025 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 23026 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 23027 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 23028 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
23029 /* We claim that this fixup has been processed here,
23030 even if in fact we generate an error because we do
23031 not have a reloc for it, so tc_gen_reloc will reject it. */
23032 fixP->fx_done = 1;
404ff6b5 23033
c19d1205
ZW
23034 if (fixP->fx_addsy
23035 && ! S_IS_DEFINED (fixP->fx_addsy))
23036 {
23037 as_bad_where (fixP->fx_file, fixP->fx_line,
23038 _("undefined symbol %s used as an immediate value"),
23039 S_GET_NAME (fixP->fx_addsy));
23040 break;
23041 }
404ff6b5 23042
c19d1205
ZW
23043 newval = md_chars_to_number (buf, THUMB_SIZE);
23044 newval <<= 16;
23045 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 23046
16805f35
PB
23047 newimm = FAIL;
23048 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
23049 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
23050 {
23051 newimm = encode_thumb32_immediate (value);
23052 if (newimm == (unsigned int) FAIL)
23053 newimm = thumb32_negate_data_op (&newval, value);
23054 }
16805f35
PB
23055 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
23056 && newimm == (unsigned int) FAIL)
92e90b6e 23057 {
16805f35
PB
23058 /* Turn add/sum into addw/subw. */
23059 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
23060 newval = (newval & 0xfeffffff) | 0x02000000;
40f246e3
NC
23061 /* No flat 12-bit imm encoding for addsw/subsw. */
23062 if ((newval & 0x00100000) == 0)
e9f89963 23063 {
40f246e3
NC
23064 /* 12 bit immediate for addw/subw. */
23065 if (value < 0)
23066 {
23067 value = -value;
23068 newval ^= 0x00a00000;
23069 }
23070 if (value > 0xfff)
23071 newimm = (unsigned int) FAIL;
23072 else
23073 newimm = value;
e9f89963 23074 }
92e90b6e 23075 }
cc8a6dd0 23076
c19d1205 23077 if (newimm == (unsigned int)FAIL)
3631a3c8 23078 {
c19d1205
ZW
23079 as_bad_where (fixP->fx_file, fixP->fx_line,
23080 _("invalid constant (%lx) after fixup"),
23081 (unsigned long) value);
23082 break;
3631a3c8
NC
23083 }
23084
c19d1205
ZW
23085 newval |= (newimm & 0x800) << 15;
23086 newval |= (newimm & 0x700) << 4;
23087 newval |= (newimm & 0x0ff);
cc8a6dd0 23088
c19d1205
ZW
23089 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
23090 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
23091 break;
a737bd4d 23092
3eb17e6b 23093 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
23094 if (((unsigned long) value) > 0xffff)
23095 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 23096 _("invalid smc expression"));
2fc8bdac 23097 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
23098 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
23099 md_number_to_chars (buf, newval, INSN_SIZE);
23100 break;
a737bd4d 23101
90ec0d68
MGD
23102 case BFD_RELOC_ARM_HVC:
23103 if (((unsigned long) value) > 0xffff)
23104 as_bad_where (fixP->fx_file, fixP->fx_line,
23105 _("invalid hvc expression"));
23106 newval = md_chars_to_number (buf, INSN_SIZE);
23107 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
23108 md_number_to_chars (buf, newval, INSN_SIZE);
23109 break;
23110
c19d1205 23111 case BFD_RELOC_ARM_SWI:
adbaf948 23112 if (fixP->tc_fix_data != 0)
c19d1205
ZW
23113 {
23114 if (((unsigned long) value) > 0xff)
23115 as_bad_where (fixP->fx_file, fixP->fx_line,
23116 _("invalid swi expression"));
2fc8bdac 23117 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
23118 newval |= value;
23119 md_number_to_chars (buf, newval, THUMB_SIZE);
23120 }
23121 else
23122 {
23123 if (((unsigned long) value) > 0x00ffffff)
23124 as_bad_where (fixP->fx_file, fixP->fx_line,
23125 _("invalid swi expression"));
2fc8bdac 23126 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
23127 newval |= value;
23128 md_number_to_chars (buf, newval, INSN_SIZE);
23129 }
23130 break;
a737bd4d 23131
c19d1205
ZW
23132 case BFD_RELOC_ARM_MULTI:
23133 if (((unsigned long) value) > 0xffff)
23134 as_bad_where (fixP->fx_file, fixP->fx_line,
23135 _("invalid expression in load/store multiple"));
23136 newval = value | md_chars_to_number (buf, INSN_SIZE);
23137 md_number_to_chars (buf, newval, INSN_SIZE);
23138 break;
a737bd4d 23139
c19d1205 23140#ifdef OBJ_ELF
39b41c9c 23141 case BFD_RELOC_ARM_PCREL_CALL:
267bf995
RR
23142
23143 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
23144 && fixP->fx_addsy
34e77a92 23145 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23146 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
23147 && THUMB_IS_FUNC (fixP->fx_addsy))
23148 /* Flip the bl to blx. This is a simple flip
23149 bit here because we generate PCREL_CALL for
23150 unconditional bls. */
23151 {
23152 newval = md_chars_to_number (buf, INSN_SIZE);
23153 newval = newval | 0x10000000;
23154 md_number_to_chars (buf, newval, INSN_SIZE);
23155 temp = 1;
23156 fixP->fx_done = 1;
23157 }
39b41c9c
PB
23158 else
23159 temp = 3;
23160 goto arm_branch_common;
23161
23162 case BFD_RELOC_ARM_PCREL_JUMP:
267bf995
RR
23163 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
23164 && fixP->fx_addsy
34e77a92 23165 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23166 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
23167 && THUMB_IS_FUNC (fixP->fx_addsy))
23168 {
23169 /* This would map to a bl<cond>, b<cond>,
23170 b<always> to a Thumb function. We
23171 need to force a relocation for this particular
23172 case. */
23173 newval = md_chars_to_number (buf, INSN_SIZE);
23174 fixP->fx_done = 0;
23175 }
23176
2fc8bdac 23177 case BFD_RELOC_ARM_PLT32:
c19d1205 23178#endif
39b41c9c
PB
23179 case BFD_RELOC_ARM_PCREL_BRANCH:
23180 temp = 3;
23181 goto arm_branch_common;
a737bd4d 23182
39b41c9c 23183 case BFD_RELOC_ARM_PCREL_BLX:
267bf995 23184
39b41c9c 23185 temp = 1;
267bf995
RR
23186 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
23187 && fixP->fx_addsy
34e77a92 23188 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23189 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
23190 && ARM_IS_FUNC (fixP->fx_addsy))
23191 {
23192 /* Flip the blx to a bl and warn. */
23193 const char *name = S_GET_NAME (fixP->fx_addsy);
23194 newval = 0xeb000000;
23195 as_warn_where (fixP->fx_file, fixP->fx_line,
23196 _("blx to '%s' an ARM ISA state function changed to bl"),
23197 name);
23198 md_number_to_chars (buf, newval, INSN_SIZE);
23199 temp = 3;
23200 fixP->fx_done = 1;
23201 }
23202
23203#ifdef OBJ_ELF
23204 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
477330fc 23205 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
267bf995
RR
23206#endif
23207
39b41c9c 23208 arm_branch_common:
c19d1205 23209 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
23210 instruction, in a 24 bit, signed field. Bits 26 through 32 either
23211 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
23212 also be be clear. */
23213 if (value & temp)
c19d1205 23214 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
23215 _("misaligned branch destination"));
23216 if ((value & (offsetT)0xfe000000) != (offsetT)0
23217 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
08f10d51 23218 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 23219
2fc8bdac 23220 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 23221 {
2fc8bdac
ZW
23222 newval = md_chars_to_number (buf, INSN_SIZE);
23223 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
23224 /* Set the H bit on BLX instructions. */
23225 if (temp == 1)
23226 {
23227 if (value & 2)
23228 newval |= 0x01000000;
23229 else
23230 newval &= ~0x01000000;
23231 }
2fc8bdac 23232 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 23233 }
c19d1205 23234 break;
a737bd4d 23235
25fe350b
MS
23236 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
23237 /* CBZ can only branch forward. */
a737bd4d 23238
738755b0 23239 /* Attempts to use CBZ to branch to the next instruction
477330fc
RM
23240 (which, strictly speaking, are prohibited) will be turned into
23241 no-ops.
738755b0
MS
23242
23243 FIXME: It may be better to remove the instruction completely and
23244 perform relaxation. */
23245 if (value == -2)
2fc8bdac
ZW
23246 {
23247 newval = md_chars_to_number (buf, THUMB_SIZE);
738755b0 23248 newval = 0xbf00; /* NOP encoding T1 */
2fc8bdac
ZW
23249 md_number_to_chars (buf, newval, THUMB_SIZE);
23250 }
738755b0
MS
23251 else
23252 {
23253 if (value & ~0x7e)
08f10d51 23254 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
738755b0 23255
477330fc 23256 if (fixP->fx_done || !seg->use_rela_p)
738755b0
MS
23257 {
23258 newval = md_chars_to_number (buf, THUMB_SIZE);
23259 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
23260 md_number_to_chars (buf, newval, THUMB_SIZE);
23261 }
23262 }
c19d1205 23263 break;
a737bd4d 23264
c19d1205 23265 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac 23266 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
08f10d51 23267 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 23268
2fc8bdac
ZW
23269 if (fixP->fx_done || !seg->use_rela_p)
23270 {
23271 newval = md_chars_to_number (buf, THUMB_SIZE);
23272 newval |= (value & 0x1ff) >> 1;
23273 md_number_to_chars (buf, newval, THUMB_SIZE);
23274 }
c19d1205 23275 break;
a737bd4d 23276
c19d1205 23277 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac 23278 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
08f10d51 23279 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 23280
2fc8bdac
ZW
23281 if (fixP->fx_done || !seg->use_rela_p)
23282 {
23283 newval = md_chars_to_number (buf, THUMB_SIZE);
23284 newval |= (value & 0xfff) >> 1;
23285 md_number_to_chars (buf, newval, THUMB_SIZE);
23286 }
c19d1205 23287 break;
a737bd4d 23288
c19d1205 23289 case BFD_RELOC_THUMB_PCREL_BRANCH20:
267bf995
RR
23290 if (fixP->fx_addsy
23291 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 23292 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23293 && ARM_IS_FUNC (fixP->fx_addsy)
23294 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
23295 {
23296 /* Force a relocation for a branch 20 bits wide. */
23297 fixP->fx_done = 0;
23298 }
08f10d51 23299 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
2fc8bdac
ZW
23300 as_bad_where (fixP->fx_file, fixP->fx_line,
23301 _("conditional branch out of range"));
404ff6b5 23302
2fc8bdac
ZW
23303 if (fixP->fx_done || !seg->use_rela_p)
23304 {
23305 offsetT newval2;
23306 addressT S, J1, J2, lo, hi;
404ff6b5 23307
2fc8bdac
ZW
23308 S = (value & 0x00100000) >> 20;
23309 J2 = (value & 0x00080000) >> 19;
23310 J1 = (value & 0x00040000) >> 18;
23311 hi = (value & 0x0003f000) >> 12;
23312 lo = (value & 0x00000ffe) >> 1;
6c43fab6 23313
2fc8bdac
ZW
23314 newval = md_chars_to_number (buf, THUMB_SIZE);
23315 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
23316 newval |= (S << 10) | hi;
23317 newval2 |= (J1 << 13) | (J2 << 11) | lo;
23318 md_number_to_chars (buf, newval, THUMB_SIZE);
23319 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
23320 }
c19d1205 23321 break;
6c43fab6 23322
c19d1205 23323 case BFD_RELOC_THUMB_PCREL_BLX:
267bf995
RR
23324 /* If there is a blx from a thumb state function to
23325 another thumb function flip this to a bl and warn
23326 about it. */
23327
23328 if (fixP->fx_addsy
34e77a92 23329 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23330 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
23331 && THUMB_IS_FUNC (fixP->fx_addsy))
23332 {
23333 const char *name = S_GET_NAME (fixP->fx_addsy);
23334 as_warn_where (fixP->fx_file, fixP->fx_line,
23335 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
23336 name);
23337 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
23338 newval = newval | 0x1000;
23339 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
23340 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
23341 fixP->fx_done = 1;
23342 }
23343
23344
23345 goto thumb_bl_common;
23346
c19d1205 23347 case BFD_RELOC_THUMB_PCREL_BRANCH23:
267bf995
RR
23348 /* A bl from Thumb state ISA to an internal ARM state function
23349 is converted to a blx. */
23350 if (fixP->fx_addsy
23351 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 23352 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23353 && ARM_IS_FUNC (fixP->fx_addsy)
23354 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
23355 {
23356 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
23357 newval = newval & ~0x1000;
23358 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
23359 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
23360 fixP->fx_done = 1;
23361 }
23362
23363 thumb_bl_common:
23364
2fc8bdac
ZW
23365 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
23366 /* For a BLX instruction, make sure that the relocation is rounded up
23367 to a word boundary. This follows the semantics of the instruction
23368 which specifies that bit 1 of the target address will come from bit
23369 1 of the base address. */
d406f3e4
JB
23370 value = (value + 3) & ~ 3;
23371
23372#ifdef OBJ_ELF
23373 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
23374 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
23375 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
23376#endif
404ff6b5 23377
2b2f5df9
NC
23378 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
23379 {
fc289b0a 23380 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)))
2b2f5df9
NC
23381 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
23382 else if ((value & ~0x1ffffff)
23383 && ((value & ~0x1ffffff) != ~0x1ffffff))
23384 as_bad_where (fixP->fx_file, fixP->fx_line,
23385 _("Thumb2 branch out of range"));
23386 }
4a42ebbc
RR
23387
23388 if (fixP->fx_done || !seg->use_rela_p)
23389 encode_thumb2_b_bl_offset (buf, value);
23390
c19d1205 23391 break;
404ff6b5 23392
c19d1205 23393 case BFD_RELOC_THUMB_PCREL_BRANCH25:
08f10d51
NC
23394 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
23395 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
6c43fab6 23396
2fc8bdac 23397 if (fixP->fx_done || !seg->use_rela_p)
4a42ebbc 23398 encode_thumb2_b_bl_offset (buf, value);
6c43fab6 23399
2fc8bdac 23400 break;
a737bd4d 23401
2fc8bdac
ZW
23402 case BFD_RELOC_8:
23403 if (fixP->fx_done || !seg->use_rela_p)
4b1a927e 23404 *buf = value;
c19d1205 23405 break;
a737bd4d 23406
c19d1205 23407 case BFD_RELOC_16:
2fc8bdac 23408 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 23409 md_number_to_chars (buf, value, 2);
c19d1205 23410 break;
a737bd4d 23411
c19d1205 23412#ifdef OBJ_ELF
0855e32b
NS
23413 case BFD_RELOC_ARM_TLS_CALL:
23414 case BFD_RELOC_ARM_THM_TLS_CALL:
23415 case BFD_RELOC_ARM_TLS_DESCSEQ:
23416 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
0855e32b 23417 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
23418 case BFD_RELOC_ARM_TLS_GD32:
23419 case BFD_RELOC_ARM_TLS_LE32:
23420 case BFD_RELOC_ARM_TLS_IE32:
23421 case BFD_RELOC_ARM_TLS_LDM32:
23422 case BFD_RELOC_ARM_TLS_LDO32:
23423 S_SET_THREAD_LOCAL (fixP->fx_addsy);
4b1a927e 23424 break;
6c43fab6 23425
c19d1205
ZW
23426 case BFD_RELOC_ARM_GOT32:
23427 case BFD_RELOC_ARM_GOTOFF:
c19d1205 23428 break;
b43420e6
NC
23429
23430 case BFD_RELOC_ARM_GOT_PREL:
23431 if (fixP->fx_done || !seg->use_rela_p)
477330fc 23432 md_number_to_chars (buf, value, 4);
b43420e6
NC
23433 break;
23434
9a6f4e97
NS
23435 case BFD_RELOC_ARM_TARGET2:
23436 /* TARGET2 is not partial-inplace, so we need to write the
477330fc
RM
23437 addend here for REL targets, because it won't be written out
23438 during reloc processing later. */
9a6f4e97
NS
23439 if (fixP->fx_done || !seg->use_rela_p)
23440 md_number_to_chars (buf, fixP->fx_offset, 4);
23441 break;
c19d1205 23442#endif
6c43fab6 23443
c19d1205
ZW
23444 case BFD_RELOC_RVA:
23445 case BFD_RELOC_32:
23446 case BFD_RELOC_ARM_TARGET1:
23447 case BFD_RELOC_ARM_ROSEGREL32:
23448 case BFD_RELOC_ARM_SBREL32:
23449 case BFD_RELOC_32_PCREL:
f0927246
NC
23450#ifdef TE_PE
23451 case BFD_RELOC_32_SECREL:
23452#endif
2fc8bdac 23453 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
23454#ifdef TE_WINCE
23455 /* For WinCE we only do this for pcrel fixups. */
23456 if (fixP->fx_done || fixP->fx_pcrel)
23457#endif
23458 md_number_to_chars (buf, value, 4);
c19d1205 23459 break;
6c43fab6 23460
c19d1205
ZW
23461#ifdef OBJ_ELF
23462 case BFD_RELOC_ARM_PREL31:
2fc8bdac 23463 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
23464 {
23465 newval = md_chars_to_number (buf, 4) & 0x80000000;
23466 if ((value ^ (value >> 1)) & 0x40000000)
23467 {
23468 as_bad_where (fixP->fx_file, fixP->fx_line,
23469 _("rel31 relocation overflow"));
23470 }
23471 newval |= value & 0x7fffffff;
23472 md_number_to_chars (buf, newval, 4);
23473 }
23474 break;
c19d1205 23475#endif
a737bd4d 23476
c19d1205 23477 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 23478 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
9db2f6b4
RL
23479 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM)
23480 newval = md_chars_to_number (buf, INSN_SIZE);
23481 else
23482 newval = get_thumb32_insn (buf);
23483 if ((newval & 0x0f200f00) == 0x0d000900)
23484 {
23485 /* This is a fp16 vstr/vldr. The immediate offset in the mnemonic
23486 has permitted values that are multiples of 2, in the range 0
23487 to 510. */
23488 if (value < -510 || value > 510 || (value & 1))
23489 as_bad_where (fixP->fx_file, fixP->fx_line,
23490 _("co-processor offset out of range"));
23491 }
23492 else if (value < -1023 || value > 1023 || (value & 3))
c19d1205
ZW
23493 as_bad_where (fixP->fx_file, fixP->fx_line,
23494 _("co-processor offset out of range"));
23495 cp_off_common:
26d97720 23496 sign = value > 0;
c19d1205
ZW
23497 if (value < 0)
23498 value = -value;
8f06b2d8
PB
23499 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
23500 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
23501 newval = md_chars_to_number (buf, INSN_SIZE);
23502 else
23503 newval = get_thumb32_insn (buf);
26d97720
NS
23504 if (value == 0)
23505 newval &= 0xffffff00;
23506 else
23507 {
23508 newval &= 0xff7fff00;
9db2f6b4
RL
23509 if ((newval & 0x0f200f00) == 0x0d000900)
23510 {
23511 /* This is a fp16 vstr/vldr.
23512
23513 It requires the immediate offset in the instruction is shifted
23514 left by 1 to be a half-word offset.
23515
23516 Here, left shift by 1 first, and later right shift by 2
23517 should get the right offset. */
23518 value <<= 1;
23519 }
26d97720
NS
23520 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
23521 }
8f06b2d8
PB
23522 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
23523 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
23524 md_number_to_chars (buf, newval, INSN_SIZE);
23525 else
23526 put_thumb32_insn (buf, newval);
c19d1205 23527 break;
a737bd4d 23528
c19d1205 23529 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 23530 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
23531 if (value < -255 || value > 255)
23532 as_bad_where (fixP->fx_file, fixP->fx_line,
23533 _("co-processor offset out of range"));
df7849c5 23534 value *= 4;
c19d1205 23535 goto cp_off_common;
6c43fab6 23536
c19d1205
ZW
23537 case BFD_RELOC_ARM_THUMB_OFFSET:
23538 newval = md_chars_to_number (buf, THUMB_SIZE);
23539 /* Exactly what ranges, and where the offset is inserted depends
23540 on the type of instruction, we can establish this from the
23541 top 4 bits. */
23542 switch (newval >> 12)
23543 {
23544 case 4: /* PC load. */
23545 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
23546 forced to zero for these loads; md_pcrel_from has already
23547 compensated for this. */
23548 if (value & 3)
23549 as_bad_where (fixP->fx_file, fixP->fx_line,
23550 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
23551 (((unsigned long) fixP->fx_frag->fr_address
23552 + (unsigned long) fixP->fx_where) & ~3)
23553 + (unsigned long) value);
a737bd4d 23554
c19d1205
ZW
23555 if (value & ~0x3fc)
23556 as_bad_where (fixP->fx_file, fixP->fx_line,
23557 _("invalid offset, value too big (0x%08lX)"),
23558 (long) value);
a737bd4d 23559
c19d1205
ZW
23560 newval |= value >> 2;
23561 break;
a737bd4d 23562
c19d1205
ZW
23563 case 9: /* SP load/store. */
23564 if (value & ~0x3fc)
23565 as_bad_where (fixP->fx_file, fixP->fx_line,
23566 _("invalid offset, value too big (0x%08lX)"),
23567 (long) value);
23568 newval |= value >> 2;
23569 break;
6c43fab6 23570
c19d1205
ZW
23571 case 6: /* Word load/store. */
23572 if (value & ~0x7c)
23573 as_bad_where (fixP->fx_file, fixP->fx_line,
23574 _("invalid offset, value too big (0x%08lX)"),
23575 (long) value);
23576 newval |= value << 4; /* 6 - 2. */
23577 break;
a737bd4d 23578
c19d1205
ZW
23579 case 7: /* Byte load/store. */
23580 if (value & ~0x1f)
23581 as_bad_where (fixP->fx_file, fixP->fx_line,
23582 _("invalid offset, value too big (0x%08lX)"),
23583 (long) value);
23584 newval |= value << 6;
23585 break;
a737bd4d 23586
c19d1205
ZW
23587 case 8: /* Halfword load/store. */
23588 if (value & ~0x3e)
23589 as_bad_where (fixP->fx_file, fixP->fx_line,
23590 _("invalid offset, value too big (0x%08lX)"),
23591 (long) value);
23592 newval |= value << 5; /* 6 - 1. */
23593 break;
a737bd4d 23594
c19d1205
ZW
23595 default:
23596 as_bad_where (fixP->fx_file, fixP->fx_line,
23597 "Unable to process relocation for thumb opcode: %lx",
23598 (unsigned long) newval);
23599 break;
23600 }
23601 md_number_to_chars (buf, newval, THUMB_SIZE);
23602 break;
a737bd4d 23603
c19d1205
ZW
23604 case BFD_RELOC_ARM_THUMB_ADD:
23605 /* This is a complicated relocation, since we use it for all of
23606 the following immediate relocations:
a737bd4d 23607
c19d1205
ZW
23608 3bit ADD/SUB
23609 8bit ADD/SUB
23610 9bit ADD/SUB SP word-aligned
23611 10bit ADD PC/SP word-aligned
a737bd4d 23612
c19d1205
ZW
23613 The type of instruction being processed is encoded in the
23614 instruction field:
a737bd4d 23615
c19d1205
ZW
23616 0x8000 SUB
23617 0x00F0 Rd
23618 0x000F Rs
23619 */
23620 newval = md_chars_to_number (buf, THUMB_SIZE);
23621 {
23622 int rd = (newval >> 4) & 0xf;
23623 int rs = newval & 0xf;
23624 int subtract = !!(newval & 0x8000);
a737bd4d 23625
c19d1205
ZW
23626 /* Check for HI regs, only very restricted cases allowed:
23627 Adjusting SP, and using PC or SP to get an address. */
23628 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
23629 || (rs > 7 && rs != REG_SP && rs != REG_PC))
23630 as_bad_where (fixP->fx_file, fixP->fx_line,
23631 _("invalid Hi register with immediate"));
a737bd4d 23632
c19d1205
ZW
23633 /* If value is negative, choose the opposite instruction. */
23634 if (value < 0)
23635 {
23636 value = -value;
23637 subtract = !subtract;
23638 if (value < 0)
23639 as_bad_where (fixP->fx_file, fixP->fx_line,
23640 _("immediate value out of range"));
23641 }
a737bd4d 23642
c19d1205
ZW
23643 if (rd == REG_SP)
23644 {
75c11999 23645 if (value & ~0x1fc)
c19d1205
ZW
23646 as_bad_where (fixP->fx_file, fixP->fx_line,
23647 _("invalid immediate for stack address calculation"));
23648 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
23649 newval |= value >> 2;
23650 }
23651 else if (rs == REG_PC || rs == REG_SP)
23652 {
c12d2c9d
NC
23653 /* PR gas/18541. If the addition is for a defined symbol
23654 within range of an ADR instruction then accept it. */
23655 if (subtract
23656 && value == 4
23657 && fixP->fx_addsy != NULL)
23658 {
23659 subtract = 0;
23660
23661 if (! S_IS_DEFINED (fixP->fx_addsy)
23662 || S_GET_SEGMENT (fixP->fx_addsy) != seg
23663 || S_IS_WEAK (fixP->fx_addsy))
23664 {
23665 as_bad_where (fixP->fx_file, fixP->fx_line,
23666 _("address calculation needs a strongly defined nearby symbol"));
23667 }
23668 else
23669 {
23670 offsetT v = fixP->fx_where + fixP->fx_frag->fr_address;
23671
23672 /* Round up to the next 4-byte boundary. */
23673 if (v & 3)
23674 v = (v + 3) & ~ 3;
23675 else
23676 v += 4;
23677 v = S_GET_VALUE (fixP->fx_addsy) - v;
23678
23679 if (v & ~0x3fc)
23680 {
23681 as_bad_where (fixP->fx_file, fixP->fx_line,
23682 _("symbol too far away"));
23683 }
23684 else
23685 {
23686 fixP->fx_done = 1;
23687 value = v;
23688 }
23689 }
23690 }
23691
c19d1205
ZW
23692 if (subtract || value & ~0x3fc)
23693 as_bad_where (fixP->fx_file, fixP->fx_line,
23694 _("invalid immediate for address calculation (value = 0x%08lX)"),
5fc177c8 23695 (unsigned long) (subtract ? - value : value));
c19d1205
ZW
23696 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
23697 newval |= rd << 8;
23698 newval |= value >> 2;
23699 }
23700 else if (rs == rd)
23701 {
23702 if (value & ~0xff)
23703 as_bad_where (fixP->fx_file, fixP->fx_line,
23704 _("immediate value out of range"));
23705 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
23706 newval |= (rd << 8) | value;
23707 }
23708 else
23709 {
23710 if (value & ~0x7)
23711 as_bad_where (fixP->fx_file, fixP->fx_line,
23712 _("immediate value out of range"));
23713 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
23714 newval |= rd | (rs << 3) | (value << 6);
23715 }
23716 }
23717 md_number_to_chars (buf, newval, THUMB_SIZE);
23718 break;
a737bd4d 23719
c19d1205
ZW
23720 case BFD_RELOC_ARM_THUMB_IMM:
23721 newval = md_chars_to_number (buf, THUMB_SIZE);
23722 if (value < 0 || value > 255)
23723 as_bad_where (fixP->fx_file, fixP->fx_line,
4e6e072b 23724 _("invalid immediate: %ld is out of range"),
c19d1205
ZW
23725 (long) value);
23726 newval |= value;
23727 md_number_to_chars (buf, newval, THUMB_SIZE);
23728 break;
a737bd4d 23729
c19d1205
ZW
23730 case BFD_RELOC_ARM_THUMB_SHIFT:
23731 /* 5bit shift value (0..32). LSL cannot take 32. */
23732 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
23733 temp = newval & 0xf800;
23734 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
23735 as_bad_where (fixP->fx_file, fixP->fx_line,
23736 _("invalid shift value: %ld"), (long) value);
23737 /* Shifts of zero must be encoded as LSL. */
23738 if (value == 0)
23739 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
23740 /* Shifts of 32 are encoded as zero. */
23741 else if (value == 32)
23742 value = 0;
23743 newval |= value << 6;
23744 md_number_to_chars (buf, newval, THUMB_SIZE);
23745 break;
a737bd4d 23746
c19d1205
ZW
23747 case BFD_RELOC_VTABLE_INHERIT:
23748 case BFD_RELOC_VTABLE_ENTRY:
23749 fixP->fx_done = 0;
23750 return;
6c43fab6 23751
b6895b4f
PB
23752 case BFD_RELOC_ARM_MOVW:
23753 case BFD_RELOC_ARM_MOVT:
23754 case BFD_RELOC_ARM_THUMB_MOVW:
23755 case BFD_RELOC_ARM_THUMB_MOVT:
23756 if (fixP->fx_done || !seg->use_rela_p)
23757 {
23758 /* REL format relocations are limited to a 16-bit addend. */
23759 if (!fixP->fx_done)
23760 {
39623e12 23761 if (value < -0x8000 || value > 0x7fff)
b6895b4f 23762 as_bad_where (fixP->fx_file, fixP->fx_line,
ff5075ca 23763 _("offset out of range"));
b6895b4f
PB
23764 }
23765 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
23766 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
23767 {
23768 value >>= 16;
23769 }
23770
23771 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
23772 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
23773 {
23774 newval = get_thumb32_insn (buf);
23775 newval &= 0xfbf08f00;
23776 newval |= (value & 0xf000) << 4;
23777 newval |= (value & 0x0800) << 15;
23778 newval |= (value & 0x0700) << 4;
23779 newval |= (value & 0x00ff);
23780 put_thumb32_insn (buf, newval);
23781 }
23782 else
23783 {
23784 newval = md_chars_to_number (buf, 4);
23785 newval &= 0xfff0f000;
23786 newval |= value & 0x0fff;
23787 newval |= (value & 0xf000) << 4;
23788 md_number_to_chars (buf, newval, 4);
23789 }
23790 }
23791 return;
23792
72d98d16
MG
23793 case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
23794 case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
23795 case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
23796 case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
23797 gas_assert (!fixP->fx_done);
23798 {
23799 bfd_vma insn;
23800 bfd_boolean is_mov;
23801 bfd_vma encoded_addend = value;
23802
23803 /* Check that addend can be encoded in instruction. */
23804 if (!seg->use_rela_p && (value < 0 || value > 255))
23805 as_bad_where (fixP->fx_file, fixP->fx_line,
23806 _("the offset 0x%08lX is not representable"),
23807 (unsigned long) encoded_addend);
23808
23809 /* Extract the instruction. */
23810 insn = md_chars_to_number (buf, THUMB_SIZE);
23811 is_mov = (insn & 0xf800) == 0x2000;
23812
23813 /* Encode insn. */
23814 if (is_mov)
23815 {
23816 if (!seg->use_rela_p)
23817 insn |= encoded_addend;
23818 }
23819 else
23820 {
23821 int rd, rs;
23822
23823 /* Extract the instruction. */
23824 /* Encoding is the following
23825 0x8000 SUB
23826 0x00F0 Rd
23827 0x000F Rs
23828 */
23829 /* The following conditions must be true :
23830 - ADD
23831 - Rd == Rs
23832 - Rd <= 7
23833 */
23834 rd = (insn >> 4) & 0xf;
23835 rs = insn & 0xf;
23836 if ((insn & 0x8000) || (rd != rs) || rd > 7)
23837 as_bad_where (fixP->fx_file, fixP->fx_line,
23838 _("Unable to process relocation for thumb opcode: %lx"),
23839 (unsigned long) insn);
23840
23841 /* Encode as ADD immediate8 thumb 1 code. */
23842 insn = 0x3000 | (rd << 8);
23843
23844 /* Place the encoded addend into the first 8 bits of the
23845 instruction. */
23846 if (!seg->use_rela_p)
23847 insn |= encoded_addend;
23848 }
23849
23850 /* Update the instruction. */
23851 md_number_to_chars (buf, insn, THUMB_SIZE);
23852 }
23853 break;
23854
4962c51a
MS
23855 case BFD_RELOC_ARM_ALU_PC_G0_NC:
23856 case BFD_RELOC_ARM_ALU_PC_G0:
23857 case BFD_RELOC_ARM_ALU_PC_G1_NC:
23858 case BFD_RELOC_ARM_ALU_PC_G1:
23859 case BFD_RELOC_ARM_ALU_PC_G2:
23860 case BFD_RELOC_ARM_ALU_SB_G0_NC:
23861 case BFD_RELOC_ARM_ALU_SB_G0:
23862 case BFD_RELOC_ARM_ALU_SB_G1_NC:
23863 case BFD_RELOC_ARM_ALU_SB_G1:
23864 case BFD_RELOC_ARM_ALU_SB_G2:
9c2799c2 23865 gas_assert (!fixP->fx_done);
4962c51a
MS
23866 if (!seg->use_rela_p)
23867 {
477330fc
RM
23868 bfd_vma insn;
23869 bfd_vma encoded_addend;
23870 bfd_vma addend_abs = abs (value);
23871
23872 /* Check that the absolute value of the addend can be
23873 expressed as an 8-bit constant plus a rotation. */
23874 encoded_addend = encode_arm_immediate (addend_abs);
23875 if (encoded_addend == (unsigned int) FAIL)
4962c51a 23876 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23877 _("the offset 0x%08lX is not representable"),
23878 (unsigned long) addend_abs);
23879
23880 /* Extract the instruction. */
23881 insn = md_chars_to_number (buf, INSN_SIZE);
23882
23883 /* If the addend is positive, use an ADD instruction.
23884 Otherwise use a SUB. Take care not to destroy the S bit. */
23885 insn &= 0xff1fffff;
23886 if (value < 0)
23887 insn |= 1 << 22;
23888 else
23889 insn |= 1 << 23;
23890
23891 /* Place the encoded addend into the first 12 bits of the
23892 instruction. */
23893 insn &= 0xfffff000;
23894 insn |= encoded_addend;
23895
23896 /* Update the instruction. */
23897 md_number_to_chars (buf, insn, INSN_SIZE);
4962c51a
MS
23898 }
23899 break;
23900
23901 case BFD_RELOC_ARM_LDR_PC_G0:
23902 case BFD_RELOC_ARM_LDR_PC_G1:
23903 case BFD_RELOC_ARM_LDR_PC_G2:
23904 case BFD_RELOC_ARM_LDR_SB_G0:
23905 case BFD_RELOC_ARM_LDR_SB_G1:
23906 case BFD_RELOC_ARM_LDR_SB_G2:
9c2799c2 23907 gas_assert (!fixP->fx_done);
4962c51a 23908 if (!seg->use_rela_p)
477330fc
RM
23909 {
23910 bfd_vma insn;
23911 bfd_vma addend_abs = abs (value);
4962c51a 23912
477330fc
RM
23913 /* Check that the absolute value of the addend can be
23914 encoded in 12 bits. */
23915 if (addend_abs >= 0x1000)
4962c51a 23916 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23917 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
23918 (unsigned long) addend_abs);
23919
23920 /* Extract the instruction. */
23921 insn = md_chars_to_number (buf, INSN_SIZE);
23922
23923 /* If the addend is negative, clear bit 23 of the instruction.
23924 Otherwise set it. */
23925 if (value < 0)
23926 insn &= ~(1 << 23);
23927 else
23928 insn |= 1 << 23;
23929
23930 /* Place the absolute value of the addend into the first 12 bits
23931 of the instruction. */
23932 insn &= 0xfffff000;
23933 insn |= addend_abs;
23934
23935 /* Update the instruction. */
23936 md_number_to_chars (buf, insn, INSN_SIZE);
23937 }
4962c51a
MS
23938 break;
23939
23940 case BFD_RELOC_ARM_LDRS_PC_G0:
23941 case BFD_RELOC_ARM_LDRS_PC_G1:
23942 case BFD_RELOC_ARM_LDRS_PC_G2:
23943 case BFD_RELOC_ARM_LDRS_SB_G0:
23944 case BFD_RELOC_ARM_LDRS_SB_G1:
23945 case BFD_RELOC_ARM_LDRS_SB_G2:
9c2799c2 23946 gas_assert (!fixP->fx_done);
4962c51a 23947 if (!seg->use_rela_p)
477330fc
RM
23948 {
23949 bfd_vma insn;
23950 bfd_vma addend_abs = abs (value);
4962c51a 23951
477330fc
RM
23952 /* Check that the absolute value of the addend can be
23953 encoded in 8 bits. */
23954 if (addend_abs >= 0x100)
4962c51a 23955 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23956 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
23957 (unsigned long) addend_abs);
23958
23959 /* Extract the instruction. */
23960 insn = md_chars_to_number (buf, INSN_SIZE);
23961
23962 /* If the addend is negative, clear bit 23 of the instruction.
23963 Otherwise set it. */
23964 if (value < 0)
23965 insn &= ~(1 << 23);
23966 else
23967 insn |= 1 << 23;
23968
23969 /* Place the first four bits of the absolute value of the addend
23970 into the first 4 bits of the instruction, and the remaining
23971 four into bits 8 .. 11. */
23972 insn &= 0xfffff0f0;
23973 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
23974
23975 /* Update the instruction. */
23976 md_number_to_chars (buf, insn, INSN_SIZE);
23977 }
4962c51a
MS
23978 break;
23979
23980 case BFD_RELOC_ARM_LDC_PC_G0:
23981 case BFD_RELOC_ARM_LDC_PC_G1:
23982 case BFD_RELOC_ARM_LDC_PC_G2:
23983 case BFD_RELOC_ARM_LDC_SB_G0:
23984 case BFD_RELOC_ARM_LDC_SB_G1:
23985 case BFD_RELOC_ARM_LDC_SB_G2:
9c2799c2 23986 gas_assert (!fixP->fx_done);
4962c51a 23987 if (!seg->use_rela_p)
477330fc
RM
23988 {
23989 bfd_vma insn;
23990 bfd_vma addend_abs = abs (value);
4962c51a 23991
477330fc
RM
23992 /* Check that the absolute value of the addend is a multiple of
23993 four and, when divided by four, fits in 8 bits. */
23994 if (addend_abs & 0x3)
4962c51a 23995 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23996 _("bad offset 0x%08lX (must be word-aligned)"),
23997 (unsigned long) addend_abs);
4962c51a 23998
477330fc 23999 if ((addend_abs >> 2) > 0xff)
4962c51a 24000 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
24001 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
24002 (unsigned long) addend_abs);
24003
24004 /* Extract the instruction. */
24005 insn = md_chars_to_number (buf, INSN_SIZE);
24006
24007 /* If the addend is negative, clear bit 23 of the instruction.
24008 Otherwise set it. */
24009 if (value < 0)
24010 insn &= ~(1 << 23);
24011 else
24012 insn |= 1 << 23;
24013
24014 /* Place the addend (divided by four) into the first eight
24015 bits of the instruction. */
24016 insn &= 0xfffffff0;
24017 insn |= addend_abs >> 2;
24018
24019 /* Update the instruction. */
24020 md_number_to_chars (buf, insn, INSN_SIZE);
24021 }
4962c51a
MS
24022 break;
24023
845b51d6
PB
24024 case BFD_RELOC_ARM_V4BX:
24025 /* This will need to go in the object file. */
24026 fixP->fx_done = 0;
24027 break;
24028
c19d1205
ZW
24029 case BFD_RELOC_UNUSED:
24030 default:
24031 as_bad_where (fixP->fx_file, fixP->fx_line,
24032 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
24033 }
6c43fab6
RE
24034}
24035
c19d1205
ZW
24036/* Translate internal representation of relocation info to BFD target
24037 format. */
a737bd4d 24038
c19d1205 24039arelent *
00a97672 24040tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 24041{
c19d1205
ZW
24042 arelent * reloc;
24043 bfd_reloc_code_real_type code;
a737bd4d 24044
325801bd 24045 reloc = XNEW (arelent);
a737bd4d 24046
325801bd 24047 reloc->sym_ptr_ptr = XNEW (asymbol *);
c19d1205
ZW
24048 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
24049 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 24050
2fc8bdac 24051 if (fixp->fx_pcrel)
00a97672
RS
24052 {
24053 if (section->use_rela_p)
24054 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
24055 else
24056 fixp->fx_offset = reloc->address;
24057 }
c19d1205 24058 reloc->addend = fixp->fx_offset;
a737bd4d 24059
c19d1205 24060 switch (fixp->fx_r_type)
a737bd4d 24061 {
c19d1205
ZW
24062 case BFD_RELOC_8:
24063 if (fixp->fx_pcrel)
24064 {
24065 code = BFD_RELOC_8_PCREL;
24066 break;
24067 }
a737bd4d 24068
c19d1205
ZW
24069 case BFD_RELOC_16:
24070 if (fixp->fx_pcrel)
24071 {
24072 code = BFD_RELOC_16_PCREL;
24073 break;
24074 }
6c43fab6 24075
c19d1205
ZW
24076 case BFD_RELOC_32:
24077 if (fixp->fx_pcrel)
24078 {
24079 code = BFD_RELOC_32_PCREL;
24080 break;
24081 }
a737bd4d 24082
b6895b4f
PB
24083 case BFD_RELOC_ARM_MOVW:
24084 if (fixp->fx_pcrel)
24085 {
24086 code = BFD_RELOC_ARM_MOVW_PCREL;
24087 break;
24088 }
24089
24090 case BFD_RELOC_ARM_MOVT:
24091 if (fixp->fx_pcrel)
24092 {
24093 code = BFD_RELOC_ARM_MOVT_PCREL;
24094 break;
24095 }
24096
24097 case BFD_RELOC_ARM_THUMB_MOVW:
24098 if (fixp->fx_pcrel)
24099 {
24100 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
24101 break;
24102 }
24103
24104 case BFD_RELOC_ARM_THUMB_MOVT:
24105 if (fixp->fx_pcrel)
24106 {
24107 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
24108 break;
24109 }
24110
c19d1205
ZW
24111 case BFD_RELOC_NONE:
24112 case BFD_RELOC_ARM_PCREL_BRANCH:
24113 case BFD_RELOC_ARM_PCREL_BLX:
24114 case BFD_RELOC_RVA:
24115 case BFD_RELOC_THUMB_PCREL_BRANCH7:
24116 case BFD_RELOC_THUMB_PCREL_BRANCH9:
24117 case BFD_RELOC_THUMB_PCREL_BRANCH12:
24118 case BFD_RELOC_THUMB_PCREL_BRANCH20:
24119 case BFD_RELOC_THUMB_PCREL_BRANCH23:
24120 case BFD_RELOC_THUMB_PCREL_BRANCH25:
c19d1205
ZW
24121 case BFD_RELOC_VTABLE_ENTRY:
24122 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
24123#ifdef TE_PE
24124 case BFD_RELOC_32_SECREL:
24125#endif
c19d1205
ZW
24126 code = fixp->fx_r_type;
24127 break;
a737bd4d 24128
00adf2d4
JB
24129 case BFD_RELOC_THUMB_PCREL_BLX:
24130#ifdef OBJ_ELF
24131 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
24132 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
24133 else
24134#endif
24135 code = BFD_RELOC_THUMB_PCREL_BLX;
24136 break;
24137
c19d1205
ZW
24138 case BFD_RELOC_ARM_LITERAL:
24139 case BFD_RELOC_ARM_HWLITERAL:
24140 /* If this is called then the a literal has
24141 been referenced across a section boundary. */
24142 as_bad_where (fixp->fx_file, fixp->fx_line,
24143 _("literal referenced across section boundary"));
24144 return NULL;
a737bd4d 24145
c19d1205 24146#ifdef OBJ_ELF
0855e32b
NS
24147 case BFD_RELOC_ARM_TLS_CALL:
24148 case BFD_RELOC_ARM_THM_TLS_CALL:
24149 case BFD_RELOC_ARM_TLS_DESCSEQ:
24150 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
c19d1205
ZW
24151 case BFD_RELOC_ARM_GOT32:
24152 case BFD_RELOC_ARM_GOTOFF:
b43420e6 24153 case BFD_RELOC_ARM_GOT_PREL:
c19d1205
ZW
24154 case BFD_RELOC_ARM_PLT32:
24155 case BFD_RELOC_ARM_TARGET1:
24156 case BFD_RELOC_ARM_ROSEGREL32:
24157 case BFD_RELOC_ARM_SBREL32:
24158 case BFD_RELOC_ARM_PREL31:
24159 case BFD_RELOC_ARM_TARGET2:
c19d1205 24160 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
24161 case BFD_RELOC_ARM_PCREL_CALL:
24162 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
24163 case BFD_RELOC_ARM_ALU_PC_G0_NC:
24164 case BFD_RELOC_ARM_ALU_PC_G0:
24165 case BFD_RELOC_ARM_ALU_PC_G1_NC:
24166 case BFD_RELOC_ARM_ALU_PC_G1:
24167 case BFD_RELOC_ARM_ALU_PC_G2:
24168 case BFD_RELOC_ARM_LDR_PC_G0:
24169 case BFD_RELOC_ARM_LDR_PC_G1:
24170 case BFD_RELOC_ARM_LDR_PC_G2:
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_LDC_PC_G0:
24175 case BFD_RELOC_ARM_LDC_PC_G1:
24176 case BFD_RELOC_ARM_LDC_PC_G2:
24177 case BFD_RELOC_ARM_ALU_SB_G0_NC:
24178 case BFD_RELOC_ARM_ALU_SB_G0:
24179 case BFD_RELOC_ARM_ALU_SB_G1_NC:
24180 case BFD_RELOC_ARM_ALU_SB_G1:
24181 case BFD_RELOC_ARM_ALU_SB_G2:
24182 case BFD_RELOC_ARM_LDR_SB_G0:
24183 case BFD_RELOC_ARM_LDR_SB_G1:
24184 case BFD_RELOC_ARM_LDR_SB_G2:
24185 case BFD_RELOC_ARM_LDRS_SB_G0:
24186 case BFD_RELOC_ARM_LDRS_SB_G1:
24187 case BFD_RELOC_ARM_LDRS_SB_G2:
24188 case BFD_RELOC_ARM_LDC_SB_G0:
24189 case BFD_RELOC_ARM_LDC_SB_G1:
24190 case BFD_RELOC_ARM_LDC_SB_G2:
845b51d6 24191 case BFD_RELOC_ARM_V4BX:
72d98d16
MG
24192 case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
24193 case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
24194 case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
24195 case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
c19d1205
ZW
24196 code = fixp->fx_r_type;
24197 break;
a737bd4d 24198
0855e32b 24199 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205 24200 case BFD_RELOC_ARM_TLS_GD32:
75c11999 24201 case BFD_RELOC_ARM_TLS_LE32:
c19d1205
ZW
24202 case BFD_RELOC_ARM_TLS_IE32:
24203 case BFD_RELOC_ARM_TLS_LDM32:
24204 /* BFD will include the symbol's address in the addend.
24205 But we don't want that, so subtract it out again here. */
24206 if (!S_IS_COMMON (fixp->fx_addsy))
24207 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
24208 code = fixp->fx_r_type;
24209 break;
24210#endif
a737bd4d 24211
c19d1205
ZW
24212 case BFD_RELOC_ARM_IMMEDIATE:
24213 as_bad_where (fixp->fx_file, fixp->fx_line,
24214 _("internal relocation (type: IMMEDIATE) not fixed up"));
24215 return NULL;
a737bd4d 24216
c19d1205
ZW
24217 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
24218 as_bad_where (fixp->fx_file, fixp->fx_line,
24219 _("ADRL used for a symbol not defined in the same file"));
24220 return NULL;
a737bd4d 24221
c19d1205 24222 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
24223 if (section->use_rela_p)
24224 {
24225 code = fixp->fx_r_type;
24226 break;
24227 }
24228
c19d1205
ZW
24229 if (fixp->fx_addsy != NULL
24230 && !S_IS_DEFINED (fixp->fx_addsy)
24231 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 24232 {
c19d1205
ZW
24233 as_bad_where (fixp->fx_file, fixp->fx_line,
24234 _("undefined local label `%s'"),
24235 S_GET_NAME (fixp->fx_addsy));
24236 return NULL;
a737bd4d
NC
24237 }
24238
c19d1205
ZW
24239 as_bad_where (fixp->fx_file, fixp->fx_line,
24240 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
24241 return NULL;
a737bd4d 24242
c19d1205
ZW
24243 default:
24244 {
e0471c16 24245 const char * type;
6c43fab6 24246
c19d1205
ZW
24247 switch (fixp->fx_r_type)
24248 {
24249 case BFD_RELOC_NONE: type = "NONE"; break;
24250 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
24251 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 24252 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
24253 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
24254 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
24255 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
db187cb9 24256 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
8f06b2d8 24257 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
24258 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
24259 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
24260 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
24261 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
24262 default: type = _("<unknown>"); break;
24263 }
24264 as_bad_where (fixp->fx_file, fixp->fx_line,
24265 _("cannot represent %s relocation in this object file format"),
24266 type);
24267 return NULL;
24268 }
a737bd4d 24269 }
6c43fab6 24270
c19d1205
ZW
24271#ifdef OBJ_ELF
24272 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
24273 && GOT_symbol
24274 && fixp->fx_addsy == GOT_symbol)
24275 {
24276 code = BFD_RELOC_ARM_GOTPC;
24277 reloc->addend = fixp->fx_offset = reloc->address;
24278 }
24279#endif
6c43fab6 24280
c19d1205 24281 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 24282
c19d1205
ZW
24283 if (reloc->howto == NULL)
24284 {
24285 as_bad_where (fixp->fx_file, fixp->fx_line,
24286 _("cannot represent %s relocation in this object file format"),
24287 bfd_get_reloc_code_name (code));
24288 return NULL;
24289 }
6c43fab6 24290
c19d1205
ZW
24291 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
24292 vtable entry to be used in the relocation's section offset. */
24293 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
24294 reloc->address = fixp->fx_offset;
6c43fab6 24295
c19d1205 24296 return reloc;
6c43fab6
RE
24297}
24298
c19d1205 24299/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 24300
c19d1205
ZW
24301void
24302cons_fix_new_arm (fragS * frag,
24303 int where,
24304 int size,
62ebcb5c
AM
24305 expressionS * exp,
24306 bfd_reloc_code_real_type reloc)
6c43fab6 24307{
c19d1205 24308 int pcrel = 0;
6c43fab6 24309
c19d1205
ZW
24310 /* Pick a reloc.
24311 FIXME: @@ Should look at CPU word size. */
24312 switch (size)
24313 {
24314 case 1:
62ebcb5c 24315 reloc = BFD_RELOC_8;
c19d1205
ZW
24316 break;
24317 case 2:
62ebcb5c 24318 reloc = BFD_RELOC_16;
c19d1205
ZW
24319 break;
24320 case 4:
24321 default:
62ebcb5c 24322 reloc = BFD_RELOC_32;
c19d1205
ZW
24323 break;
24324 case 8:
62ebcb5c 24325 reloc = BFD_RELOC_64;
c19d1205
ZW
24326 break;
24327 }
6c43fab6 24328
f0927246
NC
24329#ifdef TE_PE
24330 if (exp->X_op == O_secrel)
24331 {
24332 exp->X_op = O_symbol;
62ebcb5c 24333 reloc = BFD_RELOC_32_SECREL;
f0927246
NC
24334 }
24335#endif
24336
62ebcb5c 24337 fix_new_exp (frag, where, size, exp, pcrel, reloc);
c19d1205 24338}
6c43fab6 24339
4343666d 24340#if defined (OBJ_COFF)
c19d1205
ZW
24341void
24342arm_validate_fix (fixS * fixP)
6c43fab6 24343{
c19d1205
ZW
24344 /* If the destination of the branch is a defined symbol which does not have
24345 the THUMB_FUNC attribute, then we must be calling a function which has
24346 the (interfacearm) attribute. We look for the Thumb entry point to that
24347 function and change the branch to refer to that function instead. */
24348 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
24349 && fixP->fx_addsy != NULL
24350 && S_IS_DEFINED (fixP->fx_addsy)
24351 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 24352 {
c19d1205 24353 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 24354 }
c19d1205
ZW
24355}
24356#endif
6c43fab6 24357
267bf995 24358
c19d1205
ZW
24359int
24360arm_force_relocation (struct fix * fixp)
24361{
24362#if defined (OBJ_COFF) && defined (TE_PE)
24363 if (fixp->fx_r_type == BFD_RELOC_RVA)
24364 return 1;
24365#endif
6c43fab6 24366
267bf995
RR
24367 /* In case we have a call or a branch to a function in ARM ISA mode from
24368 a thumb function or vice-versa force the relocation. These relocations
24369 are cleared off for some cores that might have blx and simple transformations
24370 are possible. */
24371
24372#ifdef OBJ_ELF
24373 switch (fixp->fx_r_type)
24374 {
24375 case BFD_RELOC_ARM_PCREL_JUMP:
24376 case BFD_RELOC_ARM_PCREL_CALL:
24377 case BFD_RELOC_THUMB_PCREL_BLX:
24378 if (THUMB_IS_FUNC (fixp->fx_addsy))
24379 return 1;
24380 break;
24381
24382 case BFD_RELOC_ARM_PCREL_BLX:
24383 case BFD_RELOC_THUMB_PCREL_BRANCH25:
24384 case BFD_RELOC_THUMB_PCREL_BRANCH20:
24385 case BFD_RELOC_THUMB_PCREL_BRANCH23:
24386 if (ARM_IS_FUNC (fixp->fx_addsy))
24387 return 1;
24388 break;
24389
24390 default:
24391 break;
24392 }
24393#endif
24394
b5884301
PB
24395 /* Resolve these relocations even if the symbol is extern or weak.
24396 Technically this is probably wrong due to symbol preemption.
24397 In practice these relocations do not have enough range to be useful
24398 at dynamic link time, and some code (e.g. in the Linux kernel)
24399 expects these references to be resolved. */
c19d1205
ZW
24400 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
24401 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
b5884301 24402 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
0110f2b8 24403 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
b5884301
PB
24404 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
24405 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
24406 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
16805f35 24407 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
24408 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
24409 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
b5884301
PB
24410 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
24411 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
24412 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
24413 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
c19d1205 24414 return 0;
a737bd4d 24415
4962c51a
MS
24416 /* Always leave these relocations for the linker. */
24417 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
24418 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
24419 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
24420 return 1;
24421
f0291e4c
PB
24422 /* Always generate relocations against function symbols. */
24423 if (fixp->fx_r_type == BFD_RELOC_32
24424 && fixp->fx_addsy
24425 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
24426 return 1;
24427
c19d1205 24428 return generic_force_reloc (fixp);
404ff6b5
AH
24429}
24430
0ffdc86c 24431#if defined (OBJ_ELF) || defined (OBJ_COFF)
e28387c3
PB
24432/* Relocations against function names must be left unadjusted,
24433 so that the linker can use this information to generate interworking
24434 stubs. The MIPS version of this function
c19d1205
ZW
24435 also prevents relocations that are mips-16 specific, but I do not
24436 know why it does this.
404ff6b5 24437
c19d1205
ZW
24438 FIXME:
24439 There is one other problem that ought to be addressed here, but
24440 which currently is not: Taking the address of a label (rather
24441 than a function) and then later jumping to that address. Such
24442 addresses also ought to have their bottom bit set (assuming that
24443 they reside in Thumb code), but at the moment they will not. */
404ff6b5 24444
c19d1205
ZW
24445bfd_boolean
24446arm_fix_adjustable (fixS * fixP)
404ff6b5 24447{
c19d1205
ZW
24448 if (fixP->fx_addsy == NULL)
24449 return 1;
404ff6b5 24450
e28387c3
PB
24451 /* Preserve relocations against symbols with function type. */
24452 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
c921be7d 24453 return FALSE;
e28387c3 24454
c19d1205
ZW
24455 if (THUMB_IS_FUNC (fixP->fx_addsy)
24456 && fixP->fx_subsy == NULL)
c921be7d 24457 return FALSE;
a737bd4d 24458
c19d1205
ZW
24459 /* We need the symbol name for the VTABLE entries. */
24460 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
24461 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
c921be7d 24462 return FALSE;
404ff6b5 24463
c19d1205
ZW
24464 /* Don't allow symbols to be discarded on GOT related relocs. */
24465 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
24466 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
24467 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
24468 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
24469 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
24470 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
24471 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
24472 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
0855e32b
NS
24473 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
24474 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
24475 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
24476 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
24477 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
c19d1205 24478 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
c921be7d 24479 return FALSE;
a737bd4d 24480
4962c51a
MS
24481 /* Similarly for group relocations. */
24482 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
24483 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
24484 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
c921be7d 24485 return FALSE;
4962c51a 24486
79947c54
CD
24487 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
24488 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
24489 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
24490 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
24491 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
24492 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
24493 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
24494 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
24495 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
c921be7d 24496 return FALSE;
79947c54 24497
72d98d16
MG
24498 /* BFD_RELOC_ARM_THUMB_ALU_ABS_Gx_NC relocations have VERY limited
24499 offsets, so keep these symbols. */
24500 if (fixP->fx_r_type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
24501 && fixP->fx_r_type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
24502 return FALSE;
24503
c921be7d 24504 return TRUE;
a737bd4d 24505}
0ffdc86c
NC
24506#endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
24507
24508#ifdef OBJ_ELF
c19d1205
ZW
24509const char *
24510elf32_arm_target_format (void)
404ff6b5 24511{
c19d1205
ZW
24512#ifdef TE_SYMBIAN
24513 return (target_big_endian
24514 ? "elf32-bigarm-symbian"
24515 : "elf32-littlearm-symbian");
24516#elif defined (TE_VXWORKS)
24517 return (target_big_endian
24518 ? "elf32-bigarm-vxworks"
24519 : "elf32-littlearm-vxworks");
b38cadfb
NC
24520#elif defined (TE_NACL)
24521 return (target_big_endian
24522 ? "elf32-bigarm-nacl"
24523 : "elf32-littlearm-nacl");
c19d1205
ZW
24524#else
24525 if (target_big_endian)
24526 return "elf32-bigarm";
24527 else
24528 return "elf32-littlearm";
24529#endif
404ff6b5
AH
24530}
24531
c19d1205
ZW
24532void
24533armelf_frob_symbol (symbolS * symp,
24534 int * puntp)
404ff6b5 24535{
c19d1205
ZW
24536 elf_frob_symbol (symp, puntp);
24537}
24538#endif
404ff6b5 24539
c19d1205 24540/* MD interface: Finalization. */
a737bd4d 24541
c19d1205
ZW
24542void
24543arm_cleanup (void)
24544{
24545 literal_pool * pool;
a737bd4d 24546
e07e6e58
NC
24547 /* Ensure that all the IT blocks are properly closed. */
24548 check_it_blocks_finished ();
24549
c19d1205
ZW
24550 for (pool = list_of_pools; pool; pool = pool->next)
24551 {
5f4273c7 24552 /* Put it at the end of the relevant section. */
c19d1205
ZW
24553 subseg_set (pool->section, pool->sub_section);
24554#ifdef OBJ_ELF
24555 arm_elf_change_section ();
24556#endif
24557 s_ltorg (0);
24558 }
404ff6b5
AH
24559}
24560
cd000bff
DJ
24561#ifdef OBJ_ELF
24562/* Remove any excess mapping symbols generated for alignment frags in
24563 SEC. We may have created a mapping symbol before a zero byte
24564 alignment; remove it if there's a mapping symbol after the
24565 alignment. */
24566static void
24567check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
24568 void *dummy ATTRIBUTE_UNUSED)
24569{
24570 segment_info_type *seginfo = seg_info (sec);
24571 fragS *fragp;
24572
24573 if (seginfo == NULL || seginfo->frchainP == NULL)
24574 return;
24575
24576 for (fragp = seginfo->frchainP->frch_root;
24577 fragp != NULL;
24578 fragp = fragp->fr_next)
24579 {
24580 symbolS *sym = fragp->tc_frag_data.last_map;
24581 fragS *next = fragp->fr_next;
24582
24583 /* Variable-sized frags have been converted to fixed size by
24584 this point. But if this was variable-sized to start with,
24585 there will be a fixed-size frag after it. So don't handle
24586 next == NULL. */
24587 if (sym == NULL || next == NULL)
24588 continue;
24589
24590 if (S_GET_VALUE (sym) < next->fr_address)
24591 /* Not at the end of this frag. */
24592 continue;
24593 know (S_GET_VALUE (sym) == next->fr_address);
24594
24595 do
24596 {
24597 if (next->tc_frag_data.first_map != NULL)
24598 {
24599 /* Next frag starts with a mapping symbol. Discard this
24600 one. */
24601 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
24602 break;
24603 }
24604
24605 if (next->fr_next == NULL)
24606 {
24607 /* This mapping symbol is at the end of the section. Discard
24608 it. */
24609 know (next->fr_fix == 0 && next->fr_var == 0);
24610 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
24611 break;
24612 }
24613
24614 /* As long as we have empty frags without any mapping symbols,
24615 keep looking. */
24616 /* If the next frag is non-empty and does not start with a
24617 mapping symbol, then this mapping symbol is required. */
24618 if (next->fr_address != next->fr_next->fr_address)
24619 break;
24620
24621 next = next->fr_next;
24622 }
24623 while (next != NULL);
24624 }
24625}
24626#endif
24627
c19d1205
ZW
24628/* Adjust the symbol table. This marks Thumb symbols as distinct from
24629 ARM ones. */
404ff6b5 24630
c19d1205
ZW
24631void
24632arm_adjust_symtab (void)
404ff6b5 24633{
c19d1205
ZW
24634#ifdef OBJ_COFF
24635 symbolS * sym;
404ff6b5 24636
c19d1205
ZW
24637 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
24638 {
24639 if (ARM_IS_THUMB (sym))
24640 {
24641 if (THUMB_IS_FUNC (sym))
24642 {
24643 /* Mark the symbol as a Thumb function. */
24644 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
24645 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
24646 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 24647
c19d1205
ZW
24648 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
24649 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
24650 else
24651 as_bad (_("%s: unexpected function type: %d"),
24652 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
24653 }
24654 else switch (S_GET_STORAGE_CLASS (sym))
24655 {
24656 case C_EXT:
24657 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
24658 break;
24659 case C_STAT:
24660 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
24661 break;
24662 case C_LABEL:
24663 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
24664 break;
24665 default:
24666 /* Do nothing. */
24667 break;
24668 }
24669 }
a737bd4d 24670
c19d1205
ZW
24671 if (ARM_IS_INTERWORK (sym))
24672 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 24673 }
c19d1205
ZW
24674#endif
24675#ifdef OBJ_ELF
24676 symbolS * sym;
24677 char bind;
404ff6b5 24678
c19d1205 24679 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 24680 {
c19d1205
ZW
24681 if (ARM_IS_THUMB (sym))
24682 {
24683 elf_symbol_type * elf_sym;
404ff6b5 24684
c19d1205
ZW
24685 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
24686 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 24687
b0796911
PB
24688 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
24689 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
24690 {
24691 /* If it's a .thumb_func, declare it as so,
24692 otherwise tag label as .code 16. */
24693 if (THUMB_IS_FUNC (sym))
35fc36a8
RS
24694 elf_sym->internal_elf_sym.st_target_internal
24695 = ST_BRANCH_TO_THUMB;
3ba67470 24696 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
c19d1205
ZW
24697 elf_sym->internal_elf_sym.st_info =
24698 ELF_ST_INFO (bind, STT_ARM_16BIT);
24699 }
24700 }
24701 }
cd000bff
DJ
24702
24703 /* Remove any overlapping mapping symbols generated by alignment frags. */
24704 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
709001e9
MM
24705 /* Now do generic ELF adjustments. */
24706 elf_adjust_symtab ();
c19d1205 24707#endif
404ff6b5
AH
24708}
24709
c19d1205 24710/* MD interface: Initialization. */
404ff6b5 24711
a737bd4d 24712static void
c19d1205 24713set_constant_flonums (void)
a737bd4d 24714{
c19d1205 24715 int i;
404ff6b5 24716
c19d1205
ZW
24717 for (i = 0; i < NUM_FLOAT_VALS; i++)
24718 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
24719 abort ();
a737bd4d 24720}
404ff6b5 24721
3e9e4fcf
JB
24722/* Auto-select Thumb mode if it's the only available instruction set for the
24723 given architecture. */
24724
24725static void
24726autoselect_thumb_from_cpu_variant (void)
24727{
24728 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
24729 opcode_select (16);
24730}
24731
c19d1205
ZW
24732void
24733md_begin (void)
a737bd4d 24734{
c19d1205
ZW
24735 unsigned mach;
24736 unsigned int i;
404ff6b5 24737
c19d1205
ZW
24738 if ( (arm_ops_hsh = hash_new ()) == NULL
24739 || (arm_cond_hsh = hash_new ()) == NULL
24740 || (arm_shift_hsh = hash_new ()) == NULL
24741 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 24742 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 24743 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
24744 || (arm_reloc_hsh = hash_new ()) == NULL
24745 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
24746 as_fatal (_("virtual memory exhausted"));
24747
24748 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
d3ce72d0 24749 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
c19d1205 24750 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
d3ce72d0 24751 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
c19d1205 24752 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
5a49b8ac 24753 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
c19d1205 24754 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 24755 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
62b3e311 24756 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 24757 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
477330fc 24758 (void *) (v7m_psrs + i));
c19d1205 24759 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
5a49b8ac 24760 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
62b3e311
PB
24761 for (i = 0;
24762 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
24763 i++)
d3ce72d0 24764 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
5a49b8ac 24765 (void *) (barrier_opt_names + i));
c19d1205 24766#ifdef OBJ_ELF
3da1d841
NC
24767 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
24768 {
24769 struct reloc_entry * entry = reloc_names + i;
24770
24771 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
24772 /* This makes encode_branch() use the EABI versions of this relocation. */
24773 entry->reloc = BFD_RELOC_UNUSED;
24774
24775 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
24776 }
c19d1205
ZW
24777#endif
24778
24779 set_constant_flonums ();
404ff6b5 24780
c19d1205
ZW
24781 /* Set the cpu variant based on the command-line options. We prefer
24782 -mcpu= over -march= if both are set (as for GCC); and we prefer
24783 -mfpu= over any other way of setting the floating point unit.
24784 Use of legacy options with new options are faulted. */
e74cfd16 24785 if (legacy_cpu)
404ff6b5 24786 {
e74cfd16 24787 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
24788 as_bad (_("use of old and new-style options to set CPU type"));
24789
24790 mcpu_cpu_opt = legacy_cpu;
404ff6b5 24791 }
e74cfd16 24792 else if (!mcpu_cpu_opt)
c19d1205 24793 mcpu_cpu_opt = march_cpu_opt;
404ff6b5 24794
e74cfd16 24795 if (legacy_fpu)
c19d1205 24796 {
e74cfd16 24797 if (mfpu_opt)
c19d1205 24798 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
24799
24800 mfpu_opt = legacy_fpu;
24801 }
e74cfd16 24802 else if (!mfpu_opt)
03b1477f 24803 {
45eb4c1b
NS
24804#if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
24805 || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
24806 /* Some environments specify a default FPU. If they don't, infer it
24807 from the processor. */
e74cfd16 24808 if (mcpu_fpu_opt)
03b1477f
RE
24809 mfpu_opt = mcpu_fpu_opt;
24810 else
24811 mfpu_opt = march_fpu_opt;
39c2da32 24812#else
e74cfd16 24813 mfpu_opt = &fpu_default;
39c2da32 24814#endif
03b1477f
RE
24815 }
24816
e74cfd16 24817 if (!mfpu_opt)
03b1477f 24818 {
493cb6ef 24819 if (mcpu_cpu_opt != NULL)
e74cfd16 24820 mfpu_opt = &fpu_default;
493cb6ef 24821 else if (mcpu_fpu_opt != NULL && ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
e74cfd16 24822 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 24823 else
e74cfd16 24824 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
24825 }
24826
ee065d83 24827#ifdef CPU_DEFAULT
e74cfd16 24828 if (!mcpu_cpu_opt)
ee065d83 24829 {
e74cfd16
PB
24830 mcpu_cpu_opt = &cpu_default;
24831 selected_cpu = cpu_default;
ee065d83 24832 }
73f43896
NC
24833 else if (no_cpu_selected ())
24834 selected_cpu = cpu_default;
e74cfd16
PB
24835#else
24836 if (mcpu_cpu_opt)
24837 selected_cpu = *mcpu_cpu_opt;
ee065d83 24838 else
e74cfd16 24839 mcpu_cpu_opt = &arm_arch_any;
ee065d83 24840#endif
03b1477f 24841
e74cfd16 24842 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
03b1477f 24843
3e9e4fcf
JB
24844 autoselect_thumb_from_cpu_variant ();
24845
e74cfd16 24846 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 24847
f17c130b 24848#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 24849 {
7cc69913
NC
24850 unsigned int flags = 0;
24851
24852#if defined OBJ_ELF
24853 flags = meabi_flags;
d507cf36
PB
24854
24855 switch (meabi_flags)
33a392fb 24856 {
d507cf36 24857 case EF_ARM_EABI_UNKNOWN:
7cc69913 24858#endif
d507cf36
PB
24859 /* Set the flags in the private structure. */
24860 if (uses_apcs_26) flags |= F_APCS26;
24861 if (support_interwork) flags |= F_INTERWORK;
24862 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 24863 if (pic_code) flags |= F_PIC;
e74cfd16 24864 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
24865 flags |= F_SOFT_FLOAT;
24866
d507cf36
PB
24867 switch (mfloat_abi_opt)
24868 {
24869 case ARM_FLOAT_ABI_SOFT:
24870 case ARM_FLOAT_ABI_SOFTFP:
24871 flags |= F_SOFT_FLOAT;
24872 break;
33a392fb 24873
d507cf36
PB
24874 case ARM_FLOAT_ABI_HARD:
24875 if (flags & F_SOFT_FLOAT)
24876 as_bad (_("hard-float conflicts with specified fpu"));
24877 break;
24878 }
03b1477f 24879
e74cfd16
PB
24880 /* Using pure-endian doubles (even if soft-float). */
24881 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 24882 flags |= F_VFP_FLOAT;
f17c130b 24883
fde78edd 24884#if defined OBJ_ELF
e74cfd16 24885 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 24886 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
24887 break;
24888
8cb51566 24889 case EF_ARM_EABI_VER4:
3a4a14e9 24890 case EF_ARM_EABI_VER5:
c19d1205 24891 /* No additional flags to set. */
d507cf36
PB
24892 break;
24893
24894 default:
24895 abort ();
24896 }
7cc69913 24897#endif
b99bd4ef
NC
24898 bfd_set_private_flags (stdoutput, flags);
24899
24900 /* We have run out flags in the COFF header to encode the
24901 status of ATPCS support, so instead we create a dummy,
c19d1205 24902 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
24903 if (atpcs)
24904 {
24905 asection * sec;
24906
24907 sec = bfd_make_section (stdoutput, ".arm.atpcs");
24908
24909 if (sec != NULL)
24910 {
24911 bfd_set_section_flags
24912 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
24913 bfd_set_section_size (stdoutput, sec, 0);
24914 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
24915 }
24916 }
7cc69913 24917 }
f17c130b 24918#endif
b99bd4ef
NC
24919
24920 /* Record the CPU type as well. */
2d447fca
JM
24921 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
24922 mach = bfd_mach_arm_iWMMXt2;
24923 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 24924 mach = bfd_mach_arm_iWMMXt;
e74cfd16 24925 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 24926 mach = bfd_mach_arm_XScale;
e74cfd16 24927 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 24928 mach = bfd_mach_arm_ep9312;
e74cfd16 24929 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 24930 mach = bfd_mach_arm_5TE;
e74cfd16 24931 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 24932 {
e74cfd16 24933 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
24934 mach = bfd_mach_arm_5T;
24935 else
24936 mach = bfd_mach_arm_5;
24937 }
e74cfd16 24938 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 24939 {
e74cfd16 24940 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
24941 mach = bfd_mach_arm_4T;
24942 else
24943 mach = bfd_mach_arm_4;
24944 }
e74cfd16 24945 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 24946 mach = bfd_mach_arm_3M;
e74cfd16
PB
24947 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
24948 mach = bfd_mach_arm_3;
24949 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
24950 mach = bfd_mach_arm_2a;
24951 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
24952 mach = bfd_mach_arm_2;
24953 else
24954 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
24955
24956 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
24957}
24958
c19d1205 24959/* Command line processing. */
b99bd4ef 24960
c19d1205
ZW
24961/* md_parse_option
24962 Invocation line includes a switch not recognized by the base assembler.
24963 See if it's a processor-specific option.
b99bd4ef 24964
c19d1205
ZW
24965 This routine is somewhat complicated by the need for backwards
24966 compatibility (since older releases of gcc can't be changed).
24967 The new options try to make the interface as compatible as
24968 possible with GCC.
b99bd4ef 24969
c19d1205 24970 New options (supported) are:
b99bd4ef 24971
c19d1205
ZW
24972 -mcpu=<cpu name> Assemble for selected processor
24973 -march=<architecture name> Assemble for selected architecture
24974 -mfpu=<fpu architecture> Assemble for selected FPU.
24975 -EB/-mbig-endian Big-endian
24976 -EL/-mlittle-endian Little-endian
24977 -k Generate PIC code
24978 -mthumb Start in Thumb mode
24979 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 24980
278df34e 24981 -m[no-]warn-deprecated Warn about deprecated features
8b2d793c 24982 -m[no-]warn-syms Warn when symbols match instructions
267bf995 24983
c19d1205 24984 For now we will also provide support for:
b99bd4ef 24985
c19d1205
ZW
24986 -mapcs-32 32-bit Program counter
24987 -mapcs-26 26-bit Program counter
24988 -macps-float Floats passed in FP registers
24989 -mapcs-reentrant Reentrant code
24990 -matpcs
24991 (sometime these will probably be replaced with -mapcs=<list of options>
24992 and -matpcs=<list of options>)
b99bd4ef 24993
c19d1205
ZW
24994 The remaining options are only supported for back-wards compatibility.
24995 Cpu variants, the arm part is optional:
24996 -m[arm]1 Currently not supported.
24997 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
24998 -m[arm]3 Arm 3 processor
24999 -m[arm]6[xx], Arm 6 processors
25000 -m[arm]7[xx][t][[d]m] Arm 7 processors
25001 -m[arm]8[10] Arm 8 processors
25002 -m[arm]9[20][tdmi] Arm 9 processors
25003 -mstrongarm[110[0]] StrongARM processors
25004 -mxscale XScale processors
25005 -m[arm]v[2345[t[e]]] Arm architectures
25006 -mall All (except the ARM1)
25007 FP variants:
25008 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
25009 -mfpe-old (No float load/store multiples)
25010 -mvfpxd VFP Single precision
25011 -mvfp All VFP
25012 -mno-fpu Disable all floating point instructions
b99bd4ef 25013
c19d1205
ZW
25014 The following CPU names are recognized:
25015 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
25016 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
25017 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
25018 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
25019 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
25020 arm10t arm10e, arm1020t, arm1020e, arm10200e,
25021 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 25022
c19d1205 25023 */
b99bd4ef 25024
c19d1205 25025const char * md_shortopts = "m:k";
b99bd4ef 25026
c19d1205
ZW
25027#ifdef ARM_BI_ENDIAN
25028#define OPTION_EB (OPTION_MD_BASE + 0)
25029#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 25030#else
c19d1205
ZW
25031#if TARGET_BYTES_BIG_ENDIAN
25032#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 25033#else
c19d1205
ZW
25034#define OPTION_EL (OPTION_MD_BASE + 1)
25035#endif
b99bd4ef 25036#endif
845b51d6 25037#define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
b99bd4ef 25038
c19d1205 25039struct option md_longopts[] =
b99bd4ef 25040{
c19d1205
ZW
25041#ifdef OPTION_EB
25042 {"EB", no_argument, NULL, OPTION_EB},
25043#endif
25044#ifdef OPTION_EL
25045 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 25046#endif
845b51d6 25047 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
c19d1205
ZW
25048 {NULL, no_argument, NULL, 0}
25049};
b99bd4ef 25050
8b2d793c 25051
c19d1205 25052size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 25053
c19d1205 25054struct arm_option_table
b99bd4ef 25055{
e0471c16
TS
25056 const char *option; /* Option name to match. */
25057 const char *help; /* Help information. */
c19d1205
ZW
25058 int *var; /* Variable to change. */
25059 int value; /* What to change it to. */
e0471c16 25060 const char *deprecated; /* If non-null, print this message. */
c19d1205 25061};
b99bd4ef 25062
c19d1205
ZW
25063struct arm_option_table arm_opts[] =
25064{
25065 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
25066 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
25067 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
25068 &support_interwork, 1, NULL},
25069 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
25070 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
25071 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
25072 1, NULL},
25073 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
25074 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
25075 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
25076 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
25077 NULL},
b99bd4ef 25078
c19d1205
ZW
25079 /* These are recognized by the assembler, but have no affect on code. */
25080 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
25081 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
278df34e
NS
25082
25083 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
25084 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
25085 &warn_on_deprecated, 0, NULL},
8b2d793c
NC
25086 {"mwarn-syms", N_("warn about symbols that match instruction names [default]"), (int *) (& flag_warn_syms), TRUE, NULL},
25087 {"mno-warn-syms", N_("disable warnings about symobls that match instructions"), (int *) (& flag_warn_syms), FALSE, NULL},
e74cfd16
PB
25088 {NULL, NULL, NULL, 0, NULL}
25089};
25090
25091struct arm_legacy_option_table
25092{
e0471c16 25093 const char *option; /* Option name to match. */
e74cfd16
PB
25094 const arm_feature_set **var; /* Variable to change. */
25095 const arm_feature_set value; /* What to change it to. */
e0471c16 25096 const char *deprecated; /* If non-null, print this message. */
e74cfd16 25097};
b99bd4ef 25098
e74cfd16
PB
25099const struct arm_legacy_option_table arm_legacy_opts[] =
25100{
c19d1205
ZW
25101 /* DON'T add any new processors to this list -- we want the whole list
25102 to go away... Add them to the processors table instead. */
e74cfd16
PB
25103 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
25104 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
25105 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
25106 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
25107 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
25108 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
25109 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
25110 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
25111 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
25112 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
25113 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
25114 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
25115 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
25116 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
25117 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
25118 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
25119 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
25120 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
25121 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
25122 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
25123 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
25124 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
25125 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
25126 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
25127 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
25128 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
25129 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
25130 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
25131 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
25132 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
25133 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
25134 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
25135 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
25136 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
25137 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
25138 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
25139 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
25140 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
25141 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
25142 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
25143 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
25144 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
25145 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
25146 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
25147 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
25148 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
25149 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
25150 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
25151 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
25152 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
25153 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
25154 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
25155 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
25156 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
25157 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
25158 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
25159 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
25160 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
25161 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
25162 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
25163 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
25164 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
25165 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
25166 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
25167 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
25168 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
25169 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
25170 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
25171 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
25172 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 25173 N_("use -mcpu=strongarm110")},
e74cfd16 25174 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 25175 N_("use -mcpu=strongarm1100")},
e74cfd16 25176 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 25177 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
25178 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
25179 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
25180 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 25181
c19d1205 25182 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
25183 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
25184 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
25185 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
25186 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
25187 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
25188 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
25189 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
25190 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
25191 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
25192 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
25193 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
25194 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
25195 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
25196 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
25197 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
25198 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
25199 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
25200 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 25201
c19d1205 25202 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
25203 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
25204 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
25205 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
25206 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 25207 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 25208
e74cfd16 25209 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 25210};
7ed4c4c5 25211
c19d1205 25212struct arm_cpu_option_table
7ed4c4c5 25213{
e0471c16 25214 const char *name;
f3bad469 25215 size_t name_len;
e74cfd16 25216 const arm_feature_set value;
c19d1205
ZW
25217 /* For some CPUs we assume an FPU unless the user explicitly sets
25218 -mfpu=... */
e74cfd16 25219 const arm_feature_set default_fpu;
ee065d83
PB
25220 /* The canonical name of the CPU, or NULL to use NAME converted to upper
25221 case. */
25222 const char *canonical_name;
c19d1205 25223};
7ed4c4c5 25224
c19d1205
ZW
25225/* This list should, at a minimum, contain all the cpu names
25226 recognized by GCC. */
f3bad469 25227#define ARM_CPU_OPT(N, V, DF, CN) { N, sizeof (N) - 1, V, DF, CN }
e74cfd16 25228static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 25229{
f3bad469
MGD
25230 ARM_CPU_OPT ("all", ARM_ANY, FPU_ARCH_FPA, NULL),
25231 ARM_CPU_OPT ("arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL),
25232 ARM_CPU_OPT ("arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL),
25233 ARM_CPU_OPT ("arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
25234 ARM_CPU_OPT ("arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
25235 ARM_CPU_OPT ("arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25236 ARM_CPU_OPT ("arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25237 ARM_CPU_OPT ("arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25238 ARM_CPU_OPT ("arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25239 ARM_CPU_OPT ("arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25240 ARM_CPU_OPT ("arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25241 ARM_CPU_OPT ("arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
25242 ARM_CPU_OPT ("arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25243 ARM_CPU_OPT ("arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
25244 ARM_CPU_OPT ("arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25245 ARM_CPU_OPT ("arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
25246 ARM_CPU_OPT ("arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25247 ARM_CPU_OPT ("arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25248 ARM_CPU_OPT ("arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25249 ARM_CPU_OPT ("arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25250 ARM_CPU_OPT ("arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25251 ARM_CPU_OPT ("arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25252 ARM_CPU_OPT ("arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25253 ARM_CPU_OPT ("arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25254 ARM_CPU_OPT ("arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25255 ARM_CPU_OPT ("arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25256 ARM_CPU_OPT ("arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25257 ARM_CPU_OPT ("arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
25258 ARM_CPU_OPT ("arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25259 ARM_CPU_OPT ("arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25260 ARM_CPU_OPT ("arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25261 ARM_CPU_OPT ("arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
25262 ARM_CPU_OPT ("arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
25263 ARM_CPU_OPT ("strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
25264 ARM_CPU_OPT ("strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
25265 ARM_CPU_OPT ("strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
25266 ARM_CPU_OPT ("strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
25267 ARM_CPU_OPT ("strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
25268 ARM_CPU_OPT ("arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25269 ARM_CPU_OPT ("arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"),
25270 ARM_CPU_OPT ("arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25271 ARM_CPU_OPT ("arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25272 ARM_CPU_OPT ("arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25273 ARM_CPU_OPT ("arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
25274 ARM_CPU_OPT ("fa526", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
25275 ARM_CPU_OPT ("fa626", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
c19d1205
ZW
25276 /* For V5 or later processors we default to using VFP; but the user
25277 should really set the FPU type explicitly. */
f3bad469
MGD
25278 ARM_CPU_OPT ("arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
25279 ARM_CPU_OPT ("arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25280 ARM_CPU_OPT ("arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
25281 ARM_CPU_OPT ("arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
25282 ARM_CPU_OPT ("arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
25283 ARM_CPU_OPT ("arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
25284 ARM_CPU_OPT ("arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"),
25285 ARM_CPU_OPT ("arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25286 ARM_CPU_OPT ("arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
25287 ARM_CPU_OPT ("arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"),
25288 ARM_CPU_OPT ("arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25289 ARM_CPU_OPT ("arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25290 ARM_CPU_OPT ("arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
25291 ARM_CPU_OPT ("arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
25292 ARM_CPU_OPT ("arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25293 ARM_CPU_OPT ("arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"),
25294 ARM_CPU_OPT ("arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
25295 ARM_CPU_OPT ("arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25296 ARM_CPU_OPT ("arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25297 ARM_CPU_OPT ("arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2,
25298 "ARM1026EJ-S"),
25299 ARM_CPU_OPT ("arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
25300 ARM_CPU_OPT ("fa606te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25301 ARM_CPU_OPT ("fa616te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25302 ARM_CPU_OPT ("fa626te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25303 ARM_CPU_OPT ("fmp626", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25304 ARM_CPU_OPT ("fa726te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
25305 ARM_CPU_OPT ("arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"),
25306 ARM_CPU_OPT ("arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL),
25307 ARM_CPU_OPT ("arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2,
25308 "ARM1136JF-S"),
25309 ARM_CPU_OPT ("arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL),
25310 ARM_CPU_OPT ("mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, "MPCore"),
25311 ARM_CPU_OPT ("mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, "MPCore"),
25312 ARM_CPU_OPT ("arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL),
25313 ARM_CPU_OPT ("arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL),
f33026a9
MW
25314 ARM_CPU_OPT ("arm1176jz-s", ARM_ARCH_V6KZ, FPU_NONE, NULL),
25315 ARM_CPU_OPT ("arm1176jzf-s", ARM_ARCH_V6KZ, FPU_ARCH_VFP_V2, NULL),
f3bad469
MGD
25316 ARM_CPU_OPT ("cortex-a5", ARM_ARCH_V7A_MP_SEC,
25317 FPU_NONE, "Cortex-A5"),
c9fb6e58 25318 ARM_CPU_OPT ("cortex-a7", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
f3bad469
MGD
25319 "Cortex-A7"),
25320 ARM_CPU_OPT ("cortex-a8", ARM_ARCH_V7A_SEC,
823d2571 25321 ARM_FEATURE_COPROC (FPU_VFP_V3
477330fc 25322 | FPU_NEON_EXT_V1),
f3bad469
MGD
25323 "Cortex-A8"),
25324 ARM_CPU_OPT ("cortex-a9", ARM_ARCH_V7A_MP_SEC,
823d2571 25325 ARM_FEATURE_COPROC (FPU_VFP_V3
477330fc 25326 | FPU_NEON_EXT_V1),
f3bad469 25327 "Cortex-A9"),
c9fb6e58 25328 ARM_CPU_OPT ("cortex-a12", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
63a4bc21 25329 "Cortex-A12"),
c9fb6e58 25330 ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
f3bad469 25331 "Cortex-A15"),
d7adf960
KT
25332 ARM_CPU_OPT ("cortex-a17", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
25333 "Cortex-A17"),
6735952f
KT
25334 ARM_CPU_OPT ("cortex-a32", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
25335 "Cortex-A32"),
43cdc0a8
RR
25336 ARM_CPU_OPT ("cortex-a35", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
25337 "Cortex-A35"),
92eb40d9 25338 ARM_CPU_OPT ("cortex-a53", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
477330fc 25339 "Cortex-A53"),
92eb40d9 25340 ARM_CPU_OPT ("cortex-a57", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
477330fc 25341 "Cortex-A57"),
b19f47ad
JW
25342 ARM_CPU_OPT ("cortex-a72", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
25343 "Cortex-A72"),
f3bad469
MGD
25344 ARM_CPU_OPT ("cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"),
25345 ARM_CPU_OPT ("cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16,
25346 "Cortex-R4F"),
25347 ARM_CPU_OPT ("cortex-r5", ARM_ARCH_V7R_IDIV,
25348 FPU_NONE, "Cortex-R5"),
70a8bc5b 25349 ARM_CPU_OPT ("cortex-r7", ARM_ARCH_V7R_IDIV,
25350 FPU_ARCH_VFP_V3D16,
25351 "Cortex-R7"),
5f474010
TP
25352 ARM_CPU_OPT ("cortex-r8", ARM_ARCH_V7R_IDIV,
25353 FPU_ARCH_VFP_V3D16,
25354 "Cortex-R8"),
a715796b 25355 ARM_CPU_OPT ("cortex-m7", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M7"),
f3bad469
MGD
25356 ARM_CPU_OPT ("cortex-m4", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M4"),
25357 ARM_CPU_OPT ("cortex-m3", ARM_ARCH_V7M, FPU_NONE, "Cortex-M3"),
25358 ARM_CPU_OPT ("cortex-m1", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M1"),
25359 ARM_CPU_OPT ("cortex-m0", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0"),
ce32bd10 25360 ARM_CPU_OPT ("cortex-m0plus", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0+"),
246496bb
EM
25361 ARM_CPU_OPT ("exynos-m1", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
25362 "Samsung " \
25363 "Exynos M1"),
6b21c2bf
JW
25364 ARM_CPU_OPT ("qdf24xx", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
25365 "Qualcomm "
25366 "QDF24XX"),
25367
c19d1205 25368 /* ??? XSCALE is really an architecture. */
f3bad469 25369 ARM_CPU_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 25370 /* ??? iwmmxt is not a processor. */
f3bad469
MGD
25371 ARM_CPU_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL),
25372 ARM_CPU_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP_V2, NULL),
25373 ARM_CPU_OPT ("i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 25374 /* Maverick */
823d2571 25375 ARM_CPU_OPT ("ep9312", ARM_FEATURE_LOW (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
da4339ed
NC
25376 FPU_ARCH_MAVERICK, "ARM920T"),
25377 /* Marvell processors. */
ff8646ee
TP
25378 ARM_CPU_OPT ("marvell-pj4", ARM_FEATURE_CORE (ARM_AEXT_V7A | ARM_EXT_MP
25379 | ARM_EXT_SEC,
25380 ARM_EXT2_V6T2_V8M),
477330fc 25381 FPU_ARCH_VFP_V3D16, NULL),
ff8646ee
TP
25382 ARM_CPU_OPT ("marvell-whitney", ARM_FEATURE_CORE (ARM_AEXT_V7A | ARM_EXT_MP
25383 | ARM_EXT_SEC,
25384 ARM_EXT2_V6T2_V8M),
4347085a 25385 FPU_ARCH_NEON_VFP_V4, NULL),
ea0d6bb9
PT
25386 /* APM X-Gene family. */
25387 ARM_CPU_OPT ("xgene1", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
25388 "APM X-Gene 1"),
25389 ARM_CPU_OPT ("xgene2", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
25390 "APM X-Gene 2"),
da4339ed 25391
f3bad469 25392 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
c19d1205 25393};
f3bad469 25394#undef ARM_CPU_OPT
7ed4c4c5 25395
c19d1205 25396struct arm_arch_option_table
7ed4c4c5 25397{
e0471c16 25398 const char *name;
f3bad469 25399 size_t name_len;
e74cfd16
PB
25400 const arm_feature_set value;
25401 const arm_feature_set default_fpu;
c19d1205 25402};
7ed4c4c5 25403
c19d1205
ZW
25404/* This list should, at a minimum, contain all the architecture names
25405 recognized by GCC. */
f3bad469 25406#define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF }
e74cfd16 25407static const struct arm_arch_option_table arm_archs[] =
c19d1205 25408{
f3bad469
MGD
25409 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
25410 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
25411 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
25412 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
25413 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
25414 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
25415 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
25416 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
25417 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
25418 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
25419 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
25420 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
25421 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
25422 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
25423 ARM_ARCH_OPT ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP),
25424 ARM_ARCH_OPT ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP),
25425 ARM_ARCH_OPT ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP),
25426 ARM_ARCH_OPT ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP),
25427 ARM_ARCH_OPT ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP),
25428 ARM_ARCH_OPT ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP),
25429 ARM_ARCH_OPT ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP),
f33026a9
MW
25430 /* The official spelling of this variant is ARMv6KZ, the name "armv6zk" is
25431 kept to preserve existing behaviour. */
25432 ARM_ARCH_OPT ("armv6kz", ARM_ARCH_V6KZ, FPU_ARCH_VFP),
25433 ARM_ARCH_OPT ("armv6zk", ARM_ARCH_V6KZ, FPU_ARCH_VFP),
f3bad469
MGD
25434 ARM_ARCH_OPT ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP),
25435 ARM_ARCH_OPT ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP),
25436 ARM_ARCH_OPT ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP),
f33026a9
MW
25437 /* The official spelling of this variant is ARMv6KZ, the name "armv6zkt2" is
25438 kept to preserve existing behaviour. */
25439 ARM_ARCH_OPT ("armv6kzt2", ARM_ARCH_V6KZT2, FPU_ARCH_VFP),
25440 ARM_ARCH_OPT ("armv6zkt2", ARM_ARCH_V6KZT2, FPU_ARCH_VFP),
f3bad469
MGD
25441 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
25442 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
25443 ARM_ARCH_OPT ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP),
c450d570
PB
25444 /* The official spelling of the ARMv7 profile variants is the dashed form.
25445 Accept the non-dashed form for compatibility with old toolchains. */
f3bad469 25446 ARM_ARCH_OPT ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP),
c9fb6e58 25447 ARM_ARCH_OPT ("armv7ve", ARM_ARCH_V7VE, FPU_ARCH_VFP),
f3bad469
MGD
25448 ARM_ARCH_OPT ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP),
25449 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
25450 ARM_ARCH_OPT ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP),
25451 ARM_ARCH_OPT ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP),
25452 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
25453 ARM_ARCH_OPT ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP),
ff8646ee 25454 ARM_ARCH_OPT ("armv8-m.base", ARM_ARCH_V8M_BASE, FPU_ARCH_VFP),
4ed7ed8d 25455 ARM_ARCH_OPT ("armv8-m.main", ARM_ARCH_V8M_MAIN, FPU_ARCH_VFP),
bca38921 25456 ARM_ARCH_OPT ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP),
a5932920 25457 ARM_ARCH_OPT ("armv8.1-a", ARM_ARCH_V8_1A, FPU_ARCH_VFP),
56a1b672 25458 ARM_ARCH_OPT ("armv8.2-a", ARM_ARCH_V8_2A, FPU_ARCH_VFP),
f3bad469
MGD
25459 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
25460 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
25461 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP),
25462 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
c19d1205 25463};
f3bad469 25464#undef ARM_ARCH_OPT
7ed4c4c5 25465
69133863
MGD
25466/* ISA extensions in the co-processor and main instruction set space. */
25467struct arm_option_extension_value_table
c19d1205 25468{
e0471c16 25469 const char *name;
f3bad469 25470 size_t name_len;
5a70a223
JB
25471 const arm_feature_set merge_value;
25472 const arm_feature_set clear_value;
d942732e
TP
25473 /* List of architectures for which an extension is available. ARM_ARCH_NONE
25474 indicates that an extension is available for all architectures while
25475 ARM_ANY marks an empty entry. */
25476 const arm_feature_set allowed_archs[2];
c19d1205 25477};
7ed4c4c5 25478
69133863
MGD
25479/* The following table must be in alphabetical order with a NULL last entry.
25480 */
d942732e
TP
25481#define ARM_EXT_OPT(N, M, C, AA) { N, sizeof (N) - 1, M, C, { AA, ARM_ANY } }
25482#define ARM_EXT_OPT2(N, M, C, AA1, AA2) { N, sizeof (N) - 1, M, C, {AA1, AA2} }
69133863 25483static const struct arm_option_extension_value_table arm_extensions[] =
c19d1205 25484{
823d2571
TG
25485 ARM_EXT_OPT ("crc", ARCH_CRC_ARMV8, ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25486 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
bca38921 25487 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
823d2571
TG
25488 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8),
25489 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
25490 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8, ARM_FEATURE_COPROC (FPU_VFP_ARMV8),
25491 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
b8ec4e87
JW
25492 ARM_EXT_OPT ("fp16", ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
25493 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
25494 ARM_ARCH_V8_2A),
d942732e 25495 ARM_EXT_OPT2 ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
823d2571 25496 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
d942732e
TP
25497 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
25498 ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
823d2571 25499 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT),
d942732e 25500 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT), ARM_ARCH_NONE),
823d2571 25501 ARM_EXT_OPT ("iwmmxt2", ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2),
d942732e 25502 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2), ARM_ARCH_NONE),
823d2571 25503 ARM_EXT_OPT ("maverick", ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK),
d942732e
TP
25504 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK), ARM_ARCH_NONE),
25505 ARM_EXT_OPT2 ("mp", ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
823d2571 25506 ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
d942732e
TP
25507 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
25508 ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
823d2571
TG
25509 ARM_EXT_OPT ("os", ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
25510 ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
25511 ARM_FEATURE_CORE_LOW (ARM_EXT_V6M)),
ddfded2f
MW
25512 ARM_EXT_OPT ("pan", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN),
25513 ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_PAN, 0),
25514 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
643afb90
MW
25515 ARM_EXT_OPT ("rdma", FPU_ARCH_NEON_VFP_ARMV8_1,
25516 ARM_FEATURE_COPROC (FPU_NEON_ARMV8 | FPU_NEON_EXT_RDMA),
25517 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
d942732e 25518 ARM_EXT_OPT2 ("sec", ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
823d2571 25519 ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
d942732e
TP
25520 ARM_FEATURE_CORE_LOW (ARM_EXT_V6K),
25521 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
643afb90
MW
25522 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
25523 ARM_FEATURE_COPROC (FPU_NEON_ARMV8),
25524 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
823d2571
TG
25525 ARM_EXT_OPT ("virt", ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT | ARM_EXT_ADIV
25526 | ARM_EXT_DIV),
25527 ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT),
25528 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
25529 ARM_EXT_OPT ("xscale",ARM_FEATURE_COPROC (ARM_CEXT_XSCALE),
d942732e
TP
25530 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE), ARM_ARCH_NONE),
25531 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, { ARM_ARCH_NONE, ARM_ARCH_NONE } }
69133863 25532};
f3bad469 25533#undef ARM_EXT_OPT
69133863
MGD
25534
25535/* ISA floating-point and Advanced SIMD extensions. */
25536struct arm_option_fpu_value_table
25537{
e0471c16 25538 const char *name;
69133863 25539 const arm_feature_set value;
c19d1205 25540};
7ed4c4c5 25541
c19d1205
ZW
25542/* This list should, at a minimum, contain all the fpu names
25543 recognized by GCC. */
69133863 25544static const struct arm_option_fpu_value_table arm_fpus[] =
c19d1205
ZW
25545{
25546 {"softfpa", FPU_NONE},
25547 {"fpe", FPU_ARCH_FPE},
25548 {"fpe2", FPU_ARCH_FPE},
25549 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
25550 {"fpa", FPU_ARCH_FPA},
25551 {"fpa10", FPU_ARCH_FPA},
25552 {"fpa11", FPU_ARCH_FPA},
25553 {"arm7500fe", FPU_ARCH_FPA},
25554 {"softvfp", FPU_ARCH_VFP},
25555 {"softvfp+vfp", FPU_ARCH_VFP_V2},
25556 {"vfp", FPU_ARCH_VFP_V2},
25557 {"vfp9", FPU_ARCH_VFP_V2},
b1cc4aeb 25558 {"vfp3", FPU_ARCH_VFP_V3}, /* For backwards compatbility. */
c19d1205
ZW
25559 {"vfp10", FPU_ARCH_VFP_V2},
25560 {"vfp10-r0", FPU_ARCH_VFP_V1},
25561 {"vfpxd", FPU_ARCH_VFP_V1xD},
b1cc4aeb
PB
25562 {"vfpv2", FPU_ARCH_VFP_V2},
25563 {"vfpv3", FPU_ARCH_VFP_V3},
62f3b8c8 25564 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
b1cc4aeb 25565 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
62f3b8c8
PB
25566 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
25567 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
25568 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
c19d1205
ZW
25569 {"arm1020t", FPU_ARCH_VFP_V1},
25570 {"arm1020e", FPU_ARCH_VFP_V2},
25571 {"arm1136jfs", FPU_ARCH_VFP_V2},
25572 {"arm1136jf-s", FPU_ARCH_VFP_V2},
25573 {"maverick", FPU_ARCH_MAVERICK},
5287ad62 25574 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
8e79c3df 25575 {"neon-fp16", FPU_ARCH_NEON_FP16},
62f3b8c8
PB
25576 {"vfpv4", FPU_ARCH_VFP_V4},
25577 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
ada65aa3 25578 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
a715796b
TG
25579 {"fpv5-d16", FPU_ARCH_VFP_V5D16},
25580 {"fpv5-sp-d16", FPU_ARCH_VFP_V5_SP_D16},
62f3b8c8 25581 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
bca38921
MGD
25582 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
25583 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
25584 {"crypto-neon-fp-armv8",
25585 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
d6b4b13e 25586 {"neon-fp-armv8.1", FPU_ARCH_NEON_VFP_ARMV8_1},
081e4c7d
MW
25587 {"crypto-neon-fp-armv8.1",
25588 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1},
e74cfd16
PB
25589 {NULL, ARM_ARCH_NONE}
25590};
25591
25592struct arm_option_value_table
25593{
e0471c16 25594 const char *name;
e74cfd16 25595 long value;
c19d1205 25596};
7ed4c4c5 25597
e74cfd16 25598static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
25599{
25600 {"hard", ARM_FLOAT_ABI_HARD},
25601 {"softfp", ARM_FLOAT_ABI_SOFTFP},
25602 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 25603 {NULL, 0}
c19d1205 25604};
7ed4c4c5 25605
c19d1205 25606#ifdef OBJ_ELF
3a4a14e9 25607/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 25608static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
25609{
25610 {"gnu", EF_ARM_EABI_UNKNOWN},
25611 {"4", EF_ARM_EABI_VER4},
3a4a14e9 25612 {"5", EF_ARM_EABI_VER5},
e74cfd16 25613 {NULL, 0}
c19d1205
ZW
25614};
25615#endif
7ed4c4c5 25616
c19d1205
ZW
25617struct arm_long_option_table
25618{
e0471c16
TS
25619 const char * option; /* Substring to match. */
25620 const char * help; /* Help information. */
17b9d67d 25621 int (* func) (const char * subopt); /* Function to decode sub-option. */
e0471c16 25622 const char * deprecated; /* If non-null, print this message. */
c19d1205 25623};
7ed4c4c5 25624
c921be7d 25625static bfd_boolean
82b8a785 25626arm_parse_extension (const char *str, const arm_feature_set **opt_p)
7ed4c4c5 25627{
325801bd 25628 arm_feature_set *ext_set = XNEW (arm_feature_set);
e74cfd16 25629
69133863 25630 /* We insist on extensions being specified in alphabetical order, and with
fa94de6b
RM
25631 extensions being added before being removed. We achieve this by having
25632 the global ARM_EXTENSIONS table in alphabetical order, and using the
69133863 25633 ADDING_VALUE variable to indicate whether we are adding an extension (1)
fa94de6b 25634 or removing it (0) and only allowing it to change in the order
69133863
MGD
25635 -1 -> 1 -> 0. */
25636 const struct arm_option_extension_value_table * opt = NULL;
d942732e 25637 const arm_feature_set arm_any = ARM_ANY;
69133863
MGD
25638 int adding_value = -1;
25639
e74cfd16
PB
25640 /* Copy the feature set, so that we can modify it. */
25641 *ext_set = **opt_p;
25642 *opt_p = ext_set;
25643
c19d1205 25644 while (str != NULL && *str != 0)
7ed4c4c5 25645 {
82b8a785 25646 const char *ext;
f3bad469 25647 size_t len;
7ed4c4c5 25648
c19d1205
ZW
25649 if (*str != '+')
25650 {
25651 as_bad (_("invalid architectural extension"));
c921be7d 25652 return FALSE;
c19d1205 25653 }
7ed4c4c5 25654
c19d1205
ZW
25655 str++;
25656 ext = strchr (str, '+');
7ed4c4c5 25657
c19d1205 25658 if (ext != NULL)
f3bad469 25659 len = ext - str;
c19d1205 25660 else
f3bad469 25661 len = strlen (str);
7ed4c4c5 25662
f3bad469 25663 if (len >= 2 && strncmp (str, "no", 2) == 0)
69133863
MGD
25664 {
25665 if (adding_value != 0)
25666 {
25667 adding_value = 0;
25668 opt = arm_extensions;
25669 }
25670
f3bad469 25671 len -= 2;
69133863
MGD
25672 str += 2;
25673 }
f3bad469 25674 else if (len > 0)
69133863
MGD
25675 {
25676 if (adding_value == -1)
25677 {
25678 adding_value = 1;
25679 opt = arm_extensions;
25680 }
25681 else if (adding_value != 1)
25682 {
25683 as_bad (_("must specify extensions to add before specifying "
25684 "those to remove"));
25685 return FALSE;
25686 }
25687 }
25688
f3bad469 25689 if (len == 0)
c19d1205
ZW
25690 {
25691 as_bad (_("missing architectural extension"));
c921be7d 25692 return FALSE;
c19d1205 25693 }
7ed4c4c5 25694
69133863
MGD
25695 gas_assert (adding_value != -1);
25696 gas_assert (opt != NULL);
25697
25698 /* Scan over the options table trying to find an exact match. */
25699 for (; opt->name != NULL; opt++)
f3bad469 25700 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 25701 {
d942732e
TP
25702 int i, nb_allowed_archs =
25703 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[0]);
69133863 25704 /* Check we can apply the extension to this architecture. */
d942732e
TP
25705 for (i = 0; i < nb_allowed_archs; i++)
25706 {
25707 /* Empty entry. */
25708 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_any))
25709 continue;
25710 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *ext_set))
25711 break;
25712 }
25713 if (i == nb_allowed_archs)
69133863
MGD
25714 {
25715 as_bad (_("extension does not apply to the base architecture"));
25716 return FALSE;
25717 }
25718
25719 /* Add or remove the extension. */
25720 if (adding_value)
5a70a223 25721 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->merge_value);
69133863 25722 else
5a70a223 25723 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->clear_value);
69133863 25724
c19d1205
ZW
25725 break;
25726 }
7ed4c4c5 25727
c19d1205
ZW
25728 if (opt->name == NULL)
25729 {
69133863
MGD
25730 /* Did we fail to find an extension because it wasn't specified in
25731 alphabetical order, or because it does not exist? */
25732
25733 for (opt = arm_extensions; opt->name != NULL; opt++)
f3bad469 25734 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
69133863
MGD
25735 break;
25736
25737 if (opt->name == NULL)
25738 as_bad (_("unknown architectural extension `%s'"), str);
25739 else
25740 as_bad (_("architectural extensions must be specified in "
25741 "alphabetical order"));
25742
c921be7d 25743 return FALSE;
c19d1205 25744 }
69133863
MGD
25745 else
25746 {
25747 /* We should skip the extension we've just matched the next time
25748 round. */
25749 opt++;
25750 }
7ed4c4c5 25751
c19d1205
ZW
25752 str = ext;
25753 };
7ed4c4c5 25754
c921be7d 25755 return TRUE;
c19d1205 25756}
7ed4c4c5 25757
c921be7d 25758static bfd_boolean
17b9d67d 25759arm_parse_cpu (const char *str)
7ed4c4c5 25760{
f3bad469 25761 const struct arm_cpu_option_table *opt;
82b8a785 25762 const char *ext = strchr (str, '+');
f3bad469 25763 size_t len;
7ed4c4c5 25764
c19d1205 25765 if (ext != NULL)
f3bad469 25766 len = ext - str;
7ed4c4c5 25767 else
f3bad469 25768 len = strlen (str);
7ed4c4c5 25769
f3bad469 25770 if (len == 0)
7ed4c4c5 25771 {
c19d1205 25772 as_bad (_("missing cpu name `%s'"), str);
c921be7d 25773 return FALSE;
7ed4c4c5
NC
25774 }
25775
c19d1205 25776 for (opt = arm_cpus; opt->name != NULL; opt++)
f3bad469 25777 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 25778 {
e74cfd16
PB
25779 mcpu_cpu_opt = &opt->value;
25780 mcpu_fpu_opt = &opt->default_fpu;
ee065d83 25781 if (opt->canonical_name)
ef8e6722
JW
25782 {
25783 gas_assert (sizeof selected_cpu_name > strlen (opt->canonical_name));
25784 strcpy (selected_cpu_name, opt->canonical_name);
25785 }
ee065d83
PB
25786 else
25787 {
f3bad469 25788 size_t i;
c921be7d 25789
ef8e6722
JW
25790 if (len >= sizeof selected_cpu_name)
25791 len = (sizeof selected_cpu_name) - 1;
25792
f3bad469 25793 for (i = 0; i < len; i++)
ee065d83
PB
25794 selected_cpu_name[i] = TOUPPER (opt->name[i]);
25795 selected_cpu_name[i] = 0;
25796 }
7ed4c4c5 25797
c19d1205
ZW
25798 if (ext != NULL)
25799 return arm_parse_extension (ext, &mcpu_cpu_opt);
7ed4c4c5 25800
c921be7d 25801 return TRUE;
c19d1205 25802 }
7ed4c4c5 25803
c19d1205 25804 as_bad (_("unknown cpu `%s'"), str);
c921be7d 25805 return FALSE;
7ed4c4c5
NC
25806}
25807
c921be7d 25808static bfd_boolean
17b9d67d 25809arm_parse_arch (const char *str)
7ed4c4c5 25810{
e74cfd16 25811 const struct arm_arch_option_table *opt;
82b8a785 25812 const char *ext = strchr (str, '+');
f3bad469 25813 size_t len;
7ed4c4c5 25814
c19d1205 25815 if (ext != NULL)
f3bad469 25816 len = ext - str;
7ed4c4c5 25817 else
f3bad469 25818 len = strlen (str);
7ed4c4c5 25819
f3bad469 25820 if (len == 0)
7ed4c4c5 25821 {
c19d1205 25822 as_bad (_("missing architecture name `%s'"), str);
c921be7d 25823 return FALSE;
7ed4c4c5
NC
25824 }
25825
c19d1205 25826 for (opt = arm_archs; opt->name != NULL; opt++)
f3bad469 25827 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 25828 {
e74cfd16
PB
25829 march_cpu_opt = &opt->value;
25830 march_fpu_opt = &opt->default_fpu;
5f4273c7 25831 strcpy (selected_cpu_name, opt->name);
7ed4c4c5 25832
c19d1205
ZW
25833 if (ext != NULL)
25834 return arm_parse_extension (ext, &march_cpu_opt);
7ed4c4c5 25835
c921be7d 25836 return TRUE;
c19d1205
ZW
25837 }
25838
25839 as_bad (_("unknown architecture `%s'\n"), str);
c921be7d 25840 return FALSE;
7ed4c4c5 25841}
eb043451 25842
c921be7d 25843static bfd_boolean
17b9d67d 25844arm_parse_fpu (const char * str)
c19d1205 25845{
69133863 25846 const struct arm_option_fpu_value_table * opt;
b99bd4ef 25847
c19d1205
ZW
25848 for (opt = arm_fpus; opt->name != NULL; opt++)
25849 if (streq (opt->name, str))
25850 {
e74cfd16 25851 mfpu_opt = &opt->value;
c921be7d 25852 return TRUE;
c19d1205 25853 }
b99bd4ef 25854
c19d1205 25855 as_bad (_("unknown floating point format `%s'\n"), str);
c921be7d 25856 return FALSE;
c19d1205
ZW
25857}
25858
c921be7d 25859static bfd_boolean
17b9d67d 25860arm_parse_float_abi (const char * str)
b99bd4ef 25861{
e74cfd16 25862 const struct arm_option_value_table * opt;
b99bd4ef 25863
c19d1205
ZW
25864 for (opt = arm_float_abis; opt->name != NULL; opt++)
25865 if (streq (opt->name, str))
25866 {
25867 mfloat_abi_opt = opt->value;
c921be7d 25868 return TRUE;
c19d1205 25869 }
cc8a6dd0 25870
c19d1205 25871 as_bad (_("unknown floating point abi `%s'\n"), str);
c921be7d 25872 return FALSE;
c19d1205 25873}
b99bd4ef 25874
c19d1205 25875#ifdef OBJ_ELF
c921be7d 25876static bfd_boolean
17b9d67d 25877arm_parse_eabi (const char * str)
c19d1205 25878{
e74cfd16 25879 const struct arm_option_value_table *opt;
cc8a6dd0 25880
c19d1205
ZW
25881 for (opt = arm_eabis; opt->name != NULL; opt++)
25882 if (streq (opt->name, str))
25883 {
25884 meabi_flags = opt->value;
c921be7d 25885 return TRUE;
c19d1205
ZW
25886 }
25887 as_bad (_("unknown EABI `%s'\n"), str);
c921be7d 25888 return FALSE;
c19d1205
ZW
25889}
25890#endif
cc8a6dd0 25891
c921be7d 25892static bfd_boolean
17b9d67d 25893arm_parse_it_mode (const char * str)
e07e6e58 25894{
c921be7d 25895 bfd_boolean ret = TRUE;
e07e6e58
NC
25896
25897 if (streq ("arm", str))
25898 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
25899 else if (streq ("thumb", str))
25900 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
25901 else if (streq ("always", str))
25902 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
25903 else if (streq ("never", str))
25904 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
25905 else
25906 {
25907 as_bad (_("unknown implicit IT mode `%s', should be "\
477330fc 25908 "arm, thumb, always, or never."), str);
c921be7d 25909 ret = FALSE;
e07e6e58
NC
25910 }
25911
25912 return ret;
25913}
25914
2e6976a8 25915static bfd_boolean
17b9d67d 25916arm_ccs_mode (const char * unused ATTRIBUTE_UNUSED)
2e6976a8
DG
25917{
25918 codecomposer_syntax = TRUE;
25919 arm_comment_chars[0] = ';';
25920 arm_line_separator_chars[0] = 0;
25921 return TRUE;
25922}
25923
c19d1205
ZW
25924struct arm_long_option_table arm_long_opts[] =
25925{
25926 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
25927 arm_parse_cpu, NULL},
25928 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
25929 arm_parse_arch, NULL},
25930 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
25931 arm_parse_fpu, NULL},
25932 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
25933 arm_parse_float_abi, NULL},
25934#ifdef OBJ_ELF
7fac0536 25935 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
c19d1205
ZW
25936 arm_parse_eabi, NULL},
25937#endif
e07e6e58
NC
25938 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
25939 arm_parse_it_mode, NULL},
2e6976a8
DG
25940 {"mccs", N_("\t\t\t TI CodeComposer Studio syntax compatibility mode"),
25941 arm_ccs_mode, NULL},
c19d1205
ZW
25942 {NULL, NULL, 0, NULL}
25943};
cc8a6dd0 25944
c19d1205 25945int
17b9d67d 25946md_parse_option (int c, const char * arg)
c19d1205
ZW
25947{
25948 struct arm_option_table *opt;
e74cfd16 25949 const struct arm_legacy_option_table *fopt;
c19d1205 25950 struct arm_long_option_table *lopt;
b99bd4ef 25951
c19d1205 25952 switch (c)
b99bd4ef 25953 {
c19d1205
ZW
25954#ifdef OPTION_EB
25955 case OPTION_EB:
25956 target_big_endian = 1;
25957 break;
25958#endif
cc8a6dd0 25959
c19d1205
ZW
25960#ifdef OPTION_EL
25961 case OPTION_EL:
25962 target_big_endian = 0;
25963 break;
25964#endif
b99bd4ef 25965
845b51d6
PB
25966 case OPTION_FIX_V4BX:
25967 fix_v4bx = TRUE;
25968 break;
25969
c19d1205
ZW
25970 case 'a':
25971 /* Listing option. Just ignore these, we don't support additional
25972 ones. */
25973 return 0;
b99bd4ef 25974
c19d1205
ZW
25975 default:
25976 for (opt = arm_opts; opt->option != NULL; opt++)
25977 {
25978 if (c == opt->option[0]
25979 && ((arg == NULL && opt->option[1] == 0)
25980 || streq (arg, opt->option + 1)))
25981 {
c19d1205 25982 /* If the option is deprecated, tell the user. */
278df34e 25983 if (warn_on_deprecated && opt->deprecated != NULL)
c19d1205
ZW
25984 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
25985 arg ? arg : "", _(opt->deprecated));
b99bd4ef 25986
c19d1205
ZW
25987 if (opt->var != NULL)
25988 *opt->var = opt->value;
cc8a6dd0 25989
c19d1205
ZW
25990 return 1;
25991 }
25992 }
b99bd4ef 25993
e74cfd16
PB
25994 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
25995 {
25996 if (c == fopt->option[0]
25997 && ((arg == NULL && fopt->option[1] == 0)
25998 || streq (arg, fopt->option + 1)))
25999 {
e74cfd16 26000 /* If the option is deprecated, tell the user. */
278df34e 26001 if (warn_on_deprecated && fopt->deprecated != NULL)
e74cfd16
PB
26002 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
26003 arg ? arg : "", _(fopt->deprecated));
e74cfd16
PB
26004
26005 if (fopt->var != NULL)
26006 *fopt->var = &fopt->value;
26007
26008 return 1;
26009 }
26010 }
26011
c19d1205
ZW
26012 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
26013 {
26014 /* These options are expected to have an argument. */
26015 if (c == lopt->option[0]
26016 && arg != NULL
26017 && strncmp (arg, lopt->option + 1,
26018 strlen (lopt->option + 1)) == 0)
26019 {
c19d1205 26020 /* If the option is deprecated, tell the user. */
278df34e 26021 if (warn_on_deprecated && lopt->deprecated != NULL)
c19d1205
ZW
26022 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
26023 _(lopt->deprecated));
b99bd4ef 26024
c19d1205
ZW
26025 /* Call the sup-option parser. */
26026 return lopt->func (arg + strlen (lopt->option) - 1);
26027 }
26028 }
a737bd4d 26029
c19d1205
ZW
26030 return 0;
26031 }
a394c00f 26032
c19d1205
ZW
26033 return 1;
26034}
a394c00f 26035
c19d1205
ZW
26036void
26037md_show_usage (FILE * fp)
a394c00f 26038{
c19d1205
ZW
26039 struct arm_option_table *opt;
26040 struct arm_long_option_table *lopt;
a394c00f 26041
c19d1205 26042 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 26043
c19d1205
ZW
26044 for (opt = arm_opts; opt->option != NULL; opt++)
26045 if (opt->help != NULL)
26046 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 26047
c19d1205
ZW
26048 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
26049 if (lopt->help != NULL)
26050 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 26051
c19d1205
ZW
26052#ifdef OPTION_EB
26053 fprintf (fp, _("\
26054 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
26055#endif
26056
c19d1205
ZW
26057#ifdef OPTION_EL
26058 fprintf (fp, _("\
26059 -EL assemble code for a little-endian cpu\n"));
a737bd4d 26060#endif
845b51d6
PB
26061
26062 fprintf (fp, _("\
26063 --fix-v4bx Allow BX in ARMv4 code\n"));
c19d1205 26064}
ee065d83
PB
26065
26066
26067#ifdef OBJ_ELF
62b3e311
PB
26068typedef struct
26069{
26070 int val;
26071 arm_feature_set flags;
26072} cpu_arch_ver_table;
26073
4ed7ed8d
TP
26074/* Mapping from CPU features to EABI CPU arch values. As a general rule, table
26075 must be sorted least features first but some reordering is needed, eg. for
26076 Thumb-2 instructions to be detected as coming from ARMv6T2. */
62b3e311
PB
26077static const cpu_arch_ver_table cpu_arch_ver[] =
26078{
26079 {1, ARM_ARCH_V4},
26080 {2, ARM_ARCH_V4T},
26081 {3, ARM_ARCH_V5},
ee3c0378 26082 {3, ARM_ARCH_V5T},
62b3e311
PB
26083 {4, ARM_ARCH_V5TE},
26084 {5, ARM_ARCH_V5TEJ},
26085 {6, ARM_ARCH_V6},
7e806470 26086 {9, ARM_ARCH_V6K},
f4c65163 26087 {7, ARM_ARCH_V6Z},
91e22acd 26088 {11, ARM_ARCH_V6M},
b2a5fbdc 26089 {12, ARM_ARCH_V6SM},
7e806470 26090 {8, ARM_ARCH_V6T2},
c9fb6e58 26091 {10, ARM_ARCH_V7VE},
62b3e311
PB
26092 {10, ARM_ARCH_V7R},
26093 {10, ARM_ARCH_V7M},
bca38921 26094 {14, ARM_ARCH_V8A},
ff8646ee 26095 {16, ARM_ARCH_V8M_BASE},
4ed7ed8d 26096 {17, ARM_ARCH_V8M_MAIN},
62b3e311
PB
26097 {0, ARM_ARCH_NONE}
26098};
26099
ee3c0378
AS
26100/* Set an attribute if it has not already been set by the user. */
26101static void
26102aeabi_set_attribute_int (int tag, int value)
26103{
26104 if (tag < 1
26105 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
26106 || !attributes_set_explicitly[tag])
26107 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
26108}
26109
26110static void
26111aeabi_set_attribute_string (int tag, const char *value)
26112{
26113 if (tag < 1
26114 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
26115 || !attributes_set_explicitly[tag])
26116 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
26117}
26118
ee065d83 26119/* Set the public EABI object attributes. */
3cfdb781 26120void
ee065d83
PB
26121aeabi_set_public_attributes (void)
26122{
26123 int arch;
69239280 26124 char profile;
90ec0d68 26125 int virt_sec = 0;
bca38921 26126 int fp16_optional = 0;
e74cfd16 26127 arm_feature_set flags;
62b3e311 26128 arm_feature_set tmp;
ff8646ee 26129 arm_feature_set arm_arch_v8m_base = ARM_ARCH_V8M_BASE;
62b3e311 26130 const cpu_arch_ver_table *p;
ee065d83
PB
26131
26132 /* Choose the architecture based on the capabilities of the requested cpu
26133 (if any) and/or the instructions actually used. */
e74cfd16
PB
26134 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
26135 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
26136 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
ddd7f988
RE
26137
26138 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
26139 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
26140
26141 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
26142 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
26143
7f78eb34
JW
26144 selected_cpu = flags;
26145
ddd7f988 26146 /* Allow the user to override the reported architecture. */
7a1d4c38
PB
26147 if (object_arch)
26148 {
26149 ARM_CLEAR_FEATURE (flags, flags, arm_arch_any);
26150 ARM_MERGE_FEATURE_SETS (flags, flags, *object_arch);
26151 }
26152
251665fc
MGD
26153 /* We need to make sure that the attributes do not identify us as v6S-M
26154 when the only v6S-M feature in use is the Operating System Extensions. */
26155 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_os))
26156 if (!ARM_CPU_HAS_FEATURE (flags, arm_arch_v6m_only))
477330fc 26157 ARM_CLEAR_FEATURE (flags, flags, arm_ext_os);
251665fc 26158
62b3e311
PB
26159 tmp = flags;
26160 arch = 0;
26161 for (p = cpu_arch_ver; p->val; p++)
26162 {
26163 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
26164 {
26165 arch = p->val;
26166 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
26167 }
26168 }
ee065d83 26169
9e3c6df6
PB
26170 /* The table lookup above finds the last architecture to contribute
26171 a new feature. Unfortunately, Tag13 is a subset of the union of
26172 v6T2 and v7-M, so it is never seen as contributing a new feature.
26173 We can not search for the last entry which is entirely used,
26174 because if no CPU is specified we build up only those flags
26175 actually used. Perhaps we should separate out the specified
26176 and implicit cases. Avoid taking this path for -march=all by
26177 checking for contradictory v7-A / v7-M features. */
4ed7ed8d 26178 if (arch == TAG_CPU_ARCH_V7
9e3c6df6
PB
26179 && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
26180 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m)
26181 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v6_dsp))
4ed7ed8d
TP
26182 arch = TAG_CPU_ARCH_V7E_M;
26183
ff8646ee
TP
26184 ARM_CLEAR_FEATURE (tmp, flags, arm_arch_v8m_base);
26185 if (arch == TAG_CPU_ARCH_V8M_BASE && ARM_CPU_HAS_FEATURE (tmp, arm_arch_any))
26186 arch = TAG_CPU_ARCH_V8M_MAIN;
26187
4ed7ed8d
TP
26188 /* In cpu_arch_ver ARMv8-A is before ARMv8-M for atomics to be detected as
26189 coming from ARMv8-A. However, since ARMv8-A has more instructions than
26190 ARMv8-M, -march=all must be detected as ARMv8-A. */
26191 if (arch == TAG_CPU_ARCH_V8M_MAIN
26192 && ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any))
26193 arch = TAG_CPU_ARCH_V8;
9e3c6df6 26194
ee065d83
PB
26195 /* Tag_CPU_name. */
26196 if (selected_cpu_name[0])
26197 {
91d6fa6a 26198 char *q;
ee065d83 26199
91d6fa6a
NC
26200 q = selected_cpu_name;
26201 if (strncmp (q, "armv", 4) == 0)
ee065d83
PB
26202 {
26203 int i;
5f4273c7 26204
91d6fa6a
NC
26205 q += 4;
26206 for (i = 0; q[i]; i++)
26207 q[i] = TOUPPER (q[i]);
ee065d83 26208 }
91d6fa6a 26209 aeabi_set_attribute_string (Tag_CPU_name, q);
ee065d83 26210 }
62f3b8c8 26211
ee065d83 26212 /* Tag_CPU_arch. */
ee3c0378 26213 aeabi_set_attribute_int (Tag_CPU_arch, arch);
62f3b8c8 26214
62b3e311 26215 /* Tag_CPU_arch_profile. */
10c9892b 26216 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
4ed7ed8d
TP
26217 || ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
26218 || (ARM_CPU_HAS_FEATURE (flags, arm_ext_atomics)
16a1fa25 26219 && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m_m_only)))
69239280 26220 profile = 'A';
62b3e311 26221 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
69239280 26222 profile = 'R';
7e806470 26223 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_m))
69239280
MGD
26224 profile = 'M';
26225 else
26226 profile = '\0';
26227
26228 if (profile != '\0')
26229 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
62f3b8c8 26230
ee065d83 26231 /* Tag_ARM_ISA_use. */
ee3c0378
AS
26232 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
26233 || arch == 0)
26234 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
62f3b8c8 26235
ee065d83 26236 /* Tag_THUMB_ISA_use. */
ee3c0378
AS
26237 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
26238 || arch == 0)
4ed7ed8d
TP
26239 {
26240 int thumb_isa_use;
26241
26242 if (!ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
16a1fa25 26243 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m_m_only))
4ed7ed8d
TP
26244 thumb_isa_use = 3;
26245 else if (ARM_CPU_HAS_FEATURE (flags, arm_arch_t2))
26246 thumb_isa_use = 2;
26247 else
26248 thumb_isa_use = 1;
26249 aeabi_set_attribute_int (Tag_THUMB_ISA_use, thumb_isa_use);
26250 }
62f3b8c8 26251
ee065d83 26252 /* Tag_VFP_arch. */
a715796b
TG
26253 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8xd))
26254 aeabi_set_attribute_int (Tag_VFP_arch,
26255 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
26256 ? 7 : 8);
bca38921 26257 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
62f3b8c8
PB
26258 aeabi_set_attribute_int (Tag_VFP_arch,
26259 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
26260 ? 5 : 6);
26261 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
bca38921
MGD
26262 {
26263 fp16_optional = 1;
26264 aeabi_set_attribute_int (Tag_VFP_arch, 3);
26265 }
ada65aa3 26266 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
bca38921
MGD
26267 {
26268 aeabi_set_attribute_int (Tag_VFP_arch, 4);
26269 fp16_optional = 1;
26270 }
ee3c0378
AS
26271 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
26272 aeabi_set_attribute_int (Tag_VFP_arch, 2);
26273 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
477330fc 26274 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
ee3c0378 26275 aeabi_set_attribute_int (Tag_VFP_arch, 1);
62f3b8c8 26276
4547cb56
NC
26277 /* Tag_ABI_HardFP_use. */
26278 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
26279 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
26280 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
26281
ee065d83 26282 /* Tag_WMMX_arch. */
ee3c0378
AS
26283 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
26284 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
26285 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
26286 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
62f3b8c8 26287
ee3c0378 26288 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
9411fd44
MW
26289 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v8_1))
26290 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 4);
26291 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
bca38921
MGD
26292 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
26293 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
26294 {
26295 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
26296 {
26297 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
26298 }
26299 else
26300 {
26301 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
26302 fp16_optional = 1;
26303 }
26304 }
fa94de6b 26305
ee3c0378 26306 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
bca38921 26307 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
ee3c0378 26308 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
4547cb56 26309
69239280
MGD
26310 /* Tag_DIV_use.
26311
26312 We set Tag_DIV_use to two when integer divide instructions have been used
26313 in ARM state, or when Thumb integer divide instructions have been used,
26314 but we have no architecture profile set, nor have we any ARM instructions.
26315
4ed7ed8d
TP
26316 For ARMv8-A and ARMv8-M we set the tag to 0 as integer divide is implied
26317 by the base architecture.
bca38921 26318
69239280 26319 For new architectures we will have to check these tests. */
ff8646ee
TP
26320 gas_assert (arch <= TAG_CPU_ARCH_V8
26321 || (arch >= TAG_CPU_ARCH_V8M_BASE
26322 && arch <= TAG_CPU_ARCH_V8M_MAIN));
4ed7ed8d
TP
26323 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
26324 || ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m))
bca38921
MGD
26325 aeabi_set_attribute_int (Tag_DIV_use, 0);
26326 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
26327 || (profile == '\0'
26328 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
26329 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
eea54501 26330 aeabi_set_attribute_int (Tag_DIV_use, 2);
60e5ef9f
MGD
26331
26332 /* Tag_MP_extension_use. */
26333 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
26334 aeabi_set_attribute_int (Tag_MPextension_use, 1);
f4c65163
MGD
26335
26336 /* Tag Virtualization_use. */
26337 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
90ec0d68
MGD
26338 virt_sec |= 1;
26339 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
26340 virt_sec |= 2;
26341 if (virt_sec != 0)
26342 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
ee065d83
PB
26343}
26344
104d59d1 26345/* Add the default contents for the .ARM.attributes section. */
ee065d83
PB
26346void
26347arm_md_end (void)
26348{
ee065d83
PB
26349 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
26350 return;
26351
26352 aeabi_set_public_attributes ();
ee065d83 26353}
8463be01 26354#endif /* OBJ_ELF */
ee065d83
PB
26355
26356
26357/* Parse a .cpu directive. */
26358
26359static void
26360s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
26361{
e74cfd16 26362 const struct arm_cpu_option_table *opt;
ee065d83
PB
26363 char *name;
26364 char saved_char;
26365
26366 name = input_line_pointer;
5f4273c7 26367 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
26368 input_line_pointer++;
26369 saved_char = *input_line_pointer;
26370 *input_line_pointer = 0;
26371
26372 /* Skip the first "all" entry. */
26373 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
26374 if (streq (opt->name, name))
26375 {
e74cfd16
PB
26376 mcpu_cpu_opt = &opt->value;
26377 selected_cpu = opt->value;
ee065d83 26378 if (opt->canonical_name)
5f4273c7 26379 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
26380 else
26381 {
26382 int i;
26383 for (i = 0; opt->name[i]; i++)
26384 selected_cpu_name[i] = TOUPPER (opt->name[i]);
f3bad469 26385
ee065d83
PB
26386 selected_cpu_name[i] = 0;
26387 }
e74cfd16 26388 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
26389 *input_line_pointer = saved_char;
26390 demand_empty_rest_of_line ();
26391 return;
26392 }
26393 as_bad (_("unknown cpu `%s'"), name);
26394 *input_line_pointer = saved_char;
26395 ignore_rest_of_line ();
26396}
26397
26398
26399/* Parse a .arch directive. */
26400
26401static void
26402s_arm_arch (int ignored ATTRIBUTE_UNUSED)
26403{
e74cfd16 26404 const struct arm_arch_option_table *opt;
ee065d83
PB
26405 char saved_char;
26406 char *name;
26407
26408 name = input_line_pointer;
5f4273c7 26409 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
26410 input_line_pointer++;
26411 saved_char = *input_line_pointer;
26412 *input_line_pointer = 0;
26413
26414 /* Skip the first "all" entry. */
26415 for (opt = arm_archs + 1; opt->name != NULL; opt++)
26416 if (streq (opt->name, name))
26417 {
e74cfd16
PB
26418 mcpu_cpu_opt = &opt->value;
26419 selected_cpu = opt->value;
5f4273c7 26420 strcpy (selected_cpu_name, opt->name);
e74cfd16 26421 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
26422 *input_line_pointer = saved_char;
26423 demand_empty_rest_of_line ();
26424 return;
26425 }
26426
26427 as_bad (_("unknown architecture `%s'\n"), name);
26428 *input_line_pointer = saved_char;
26429 ignore_rest_of_line ();
26430}
26431
26432
7a1d4c38
PB
26433/* Parse a .object_arch directive. */
26434
26435static void
26436s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
26437{
26438 const struct arm_arch_option_table *opt;
26439 char saved_char;
26440 char *name;
26441
26442 name = input_line_pointer;
5f4273c7 26443 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
7a1d4c38
PB
26444 input_line_pointer++;
26445 saved_char = *input_line_pointer;
26446 *input_line_pointer = 0;
26447
26448 /* Skip the first "all" entry. */
26449 for (opt = arm_archs + 1; opt->name != NULL; opt++)
26450 if (streq (opt->name, name))
26451 {
26452 object_arch = &opt->value;
26453 *input_line_pointer = saved_char;
26454 demand_empty_rest_of_line ();
26455 return;
26456 }
26457
26458 as_bad (_("unknown architecture `%s'\n"), name);
26459 *input_line_pointer = saved_char;
26460 ignore_rest_of_line ();
26461}
26462
69133863
MGD
26463/* Parse a .arch_extension directive. */
26464
26465static void
26466s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
26467{
26468 const struct arm_option_extension_value_table *opt;
d942732e 26469 const arm_feature_set arm_any = ARM_ANY;
69133863
MGD
26470 char saved_char;
26471 char *name;
26472 int adding_value = 1;
26473
26474 name = input_line_pointer;
26475 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
26476 input_line_pointer++;
26477 saved_char = *input_line_pointer;
26478 *input_line_pointer = 0;
26479
26480 if (strlen (name) >= 2
26481 && strncmp (name, "no", 2) == 0)
26482 {
26483 adding_value = 0;
26484 name += 2;
26485 }
26486
26487 for (opt = arm_extensions; opt->name != NULL; opt++)
26488 if (streq (opt->name, name))
26489 {
d942732e
TP
26490 int i, nb_allowed_archs =
26491 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[i]);
26492 for (i = 0; i < nb_allowed_archs; i++)
26493 {
26494 /* Empty entry. */
26495 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_any))
26496 continue;
26497 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *mcpu_cpu_opt))
26498 break;
26499 }
26500
26501 if (i == nb_allowed_archs)
69133863
MGD
26502 {
26503 as_bad (_("architectural extension `%s' is not allowed for the "
26504 "current base architecture"), name);
26505 break;
26506 }
26507
26508 if (adding_value)
5a70a223
JB
26509 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu,
26510 opt->merge_value);
69133863 26511 else
5a70a223 26512 ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->clear_value);
69133863
MGD
26513
26514 mcpu_cpu_opt = &selected_cpu;
26515 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
26516 *input_line_pointer = saved_char;
26517 demand_empty_rest_of_line ();
26518 return;
26519 }
26520
26521 if (opt->name == NULL)
e673710a 26522 as_bad (_("unknown architecture extension `%s'\n"), name);
69133863
MGD
26523
26524 *input_line_pointer = saved_char;
26525 ignore_rest_of_line ();
26526}
26527
ee065d83
PB
26528/* Parse a .fpu directive. */
26529
26530static void
26531s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
26532{
69133863 26533 const struct arm_option_fpu_value_table *opt;
ee065d83
PB
26534 char saved_char;
26535 char *name;
26536
26537 name = input_line_pointer;
5f4273c7 26538 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
26539 input_line_pointer++;
26540 saved_char = *input_line_pointer;
26541 *input_line_pointer = 0;
5f4273c7 26542
ee065d83
PB
26543 for (opt = arm_fpus; opt->name != NULL; opt++)
26544 if (streq (opt->name, name))
26545 {
e74cfd16
PB
26546 mfpu_opt = &opt->value;
26547 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
26548 *input_line_pointer = saved_char;
26549 demand_empty_rest_of_line ();
26550 return;
26551 }
26552
26553 as_bad (_("unknown floating point format `%s'\n"), name);
26554 *input_line_pointer = saved_char;
26555 ignore_rest_of_line ();
26556}
ee065d83 26557
794ba86a 26558/* Copy symbol information. */
f31fef98 26559
794ba86a
DJ
26560void
26561arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
26562{
26563 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
26564}
e04befd0 26565
f31fef98 26566#ifdef OBJ_ELF
e04befd0
AS
26567/* Given a symbolic attribute NAME, return the proper integer value.
26568 Returns -1 if the attribute is not known. */
f31fef98 26569
e04befd0
AS
26570int
26571arm_convert_symbolic_attribute (const char *name)
26572{
f31fef98
NC
26573 static const struct
26574 {
26575 const char * name;
26576 const int tag;
26577 }
26578 attribute_table[] =
26579 {
26580 /* When you modify this table you should
26581 also modify the list in doc/c-arm.texi. */
e04befd0 26582#define T(tag) {#tag, tag}
f31fef98
NC
26583 T (Tag_CPU_raw_name),
26584 T (Tag_CPU_name),
26585 T (Tag_CPU_arch),
26586 T (Tag_CPU_arch_profile),
26587 T (Tag_ARM_ISA_use),
26588 T (Tag_THUMB_ISA_use),
75375b3e 26589 T (Tag_FP_arch),
f31fef98
NC
26590 T (Tag_VFP_arch),
26591 T (Tag_WMMX_arch),
26592 T (Tag_Advanced_SIMD_arch),
26593 T (Tag_PCS_config),
26594 T (Tag_ABI_PCS_R9_use),
26595 T (Tag_ABI_PCS_RW_data),
26596 T (Tag_ABI_PCS_RO_data),
26597 T (Tag_ABI_PCS_GOT_use),
26598 T (Tag_ABI_PCS_wchar_t),
26599 T (Tag_ABI_FP_rounding),
26600 T (Tag_ABI_FP_denormal),
26601 T (Tag_ABI_FP_exceptions),
26602 T (Tag_ABI_FP_user_exceptions),
26603 T (Tag_ABI_FP_number_model),
75375b3e 26604 T (Tag_ABI_align_needed),
f31fef98 26605 T (Tag_ABI_align8_needed),
75375b3e 26606 T (Tag_ABI_align_preserved),
f31fef98
NC
26607 T (Tag_ABI_align8_preserved),
26608 T (Tag_ABI_enum_size),
26609 T (Tag_ABI_HardFP_use),
26610 T (Tag_ABI_VFP_args),
26611 T (Tag_ABI_WMMX_args),
26612 T (Tag_ABI_optimization_goals),
26613 T (Tag_ABI_FP_optimization_goals),
26614 T (Tag_compatibility),
26615 T (Tag_CPU_unaligned_access),
75375b3e 26616 T (Tag_FP_HP_extension),
f31fef98
NC
26617 T (Tag_VFP_HP_extension),
26618 T (Tag_ABI_FP_16bit_format),
cd21e546
MGD
26619 T (Tag_MPextension_use),
26620 T (Tag_DIV_use),
f31fef98
NC
26621 T (Tag_nodefaults),
26622 T (Tag_also_compatible_with),
26623 T (Tag_conformance),
26624 T (Tag_T2EE_use),
26625 T (Tag_Virtualization_use),
cd21e546 26626 /* We deliberately do not include Tag_MPextension_use_legacy. */
e04befd0 26627#undef T
f31fef98 26628 };
e04befd0
AS
26629 unsigned int i;
26630
26631 if (name == NULL)
26632 return -1;
26633
f31fef98 26634 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
c921be7d 26635 if (streq (name, attribute_table[i].name))
e04befd0
AS
26636 return attribute_table[i].tag;
26637
26638 return -1;
26639}
267bf995
RR
26640
26641
93ef582d
NC
26642/* Apply sym value for relocations only in the case that they are for
26643 local symbols in the same segment as the fixup and you have the
26644 respective architectural feature for blx and simple switches. */
267bf995 26645int
93ef582d 26646arm_apply_sym_value (struct fix * fixP, segT this_seg)
267bf995
RR
26647{
26648 if (fixP->fx_addsy
26649 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
93ef582d
NC
26650 /* PR 17444: If the local symbol is in a different section then a reloc
26651 will always be generated for it, so applying the symbol value now
26652 will result in a double offset being stored in the relocation. */
26653 && (S_GET_SEGMENT (fixP->fx_addsy) == this_seg)
34e77a92 26654 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
267bf995
RR
26655 {
26656 switch (fixP->fx_r_type)
26657 {
26658 case BFD_RELOC_ARM_PCREL_BLX:
26659 case BFD_RELOC_THUMB_PCREL_BRANCH23:
26660 if (ARM_IS_FUNC (fixP->fx_addsy))
26661 return 1;
26662 break;
26663
26664 case BFD_RELOC_ARM_PCREL_CALL:
26665 case BFD_RELOC_THUMB_PCREL_BLX:
26666 if (THUMB_IS_FUNC (fixP->fx_addsy))
93ef582d 26667 return 1;
267bf995
RR
26668 break;
26669
26670 default:
26671 break;
26672 }
26673
26674 }
26675 return 0;
26676}
f31fef98 26677#endif /* OBJ_ELF */