]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-arm.c
Disable readline's SIGWINCH handler
[thirdparty/binutils-gdb.git] / gas / config / tc-arm.c
CommitLineData
b99bd4ef 1/* tc-arm.c -- Assemble for the ARM
b90efa5b 2 Copyright (C) 1994-2015 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;
158static const arm_feature_set fpu_arch_vfp_v1 = FPU_ARCH_VFP_V1;
159static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
5287ad62
JB
160static const arm_feature_set fpu_arch_vfp_v3 = FPU_ARCH_VFP_V3;
161static const arm_feature_set fpu_arch_neon_v1 = 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 =
823d2571
TG
204 ARM_FEATURE_CORE_LOW (ARM_EXT_V6M | ARM_EXT_OS | ARM_EXT_V7M);
205static const arm_feature_set arm_ext_mp = ARM_FEATURE_CORE_LOW (ARM_EXT_MP);
206static const arm_feature_set arm_ext_sec = ARM_FEATURE_CORE_LOW (ARM_EXT_SEC);
207static const arm_feature_set arm_ext_os = ARM_FEATURE_CORE_LOW (ARM_EXT_OS);
208static const arm_feature_set arm_ext_adiv = ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV);
209static const arm_feature_set arm_ext_virt = ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT);
e74cfd16
PB
210
211static const arm_feature_set arm_arch_any = ARM_ANY;
823d2571 212static const arm_feature_set arm_arch_full = ARM_FEATURE (-1, -1, -1);
e74cfd16
PB
213static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
214static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
251665fc 215static const arm_feature_set arm_arch_v6m_only = ARM_ARCH_V6M_ONLY;
e74cfd16 216
2d447fca 217static const arm_feature_set arm_cext_iwmmxt2 =
823d2571 218 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2);
e74cfd16 219static const arm_feature_set arm_cext_iwmmxt =
823d2571 220 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT);
e74cfd16 221static const arm_feature_set arm_cext_xscale =
823d2571 222 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE);
e74cfd16 223static const arm_feature_set arm_cext_maverick =
823d2571
TG
224 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK);
225static const arm_feature_set fpu_fpa_ext_v1 =
226 ARM_FEATURE_COPROC (FPU_FPA_EXT_V1);
227static const arm_feature_set fpu_fpa_ext_v2 =
228 ARM_FEATURE_COPROC (FPU_FPA_EXT_V2);
e74cfd16 229static const arm_feature_set fpu_vfp_ext_v1xd =
823d2571
TG
230 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1xD);
231static const arm_feature_set fpu_vfp_ext_v1 =
232 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1);
233static const arm_feature_set fpu_vfp_ext_v2 =
234 ARM_FEATURE_COPROC (FPU_VFP_EXT_V2);
235static const arm_feature_set fpu_vfp_ext_v3xd =
236 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3xD);
237static const arm_feature_set fpu_vfp_ext_v3 =
238 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3);
b1cc4aeb 239static const arm_feature_set fpu_vfp_ext_d32 =
823d2571
TG
240 ARM_FEATURE_COPROC (FPU_VFP_EXT_D32);
241static const arm_feature_set fpu_neon_ext_v1 =
242 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1);
5287ad62 243static const arm_feature_set fpu_vfp_v3_or_neon_ext =
823d2571
TG
244 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
245static const arm_feature_set fpu_vfp_fp16 =
246 ARM_FEATURE_COPROC (FPU_VFP_EXT_FP16);
247static const arm_feature_set fpu_neon_ext_fma =
248 ARM_FEATURE_COPROC (FPU_NEON_EXT_FMA);
249static const arm_feature_set fpu_vfp_ext_fma =
250 ARM_FEATURE_COPROC (FPU_VFP_EXT_FMA);
bca38921 251static const arm_feature_set fpu_vfp_ext_armv8 =
823d2571 252 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8);
a715796b 253static const arm_feature_set fpu_vfp_ext_armv8xd =
823d2571 254 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8xD);
bca38921 255static const arm_feature_set fpu_neon_ext_armv8 =
823d2571 256 ARM_FEATURE_COPROC (FPU_NEON_EXT_ARMV8);
bca38921 257static const arm_feature_set fpu_crypto_ext_armv8 =
823d2571 258 ARM_FEATURE_COPROC (FPU_CRYPTO_EXT_ARMV8);
dd5181d5 259static const arm_feature_set crc_ext_armv8 =
823d2571 260 ARM_FEATURE_COPROC (CRC_EXT_ARMV8);
e74cfd16 261
33a392fb 262static int mfloat_abi_opt = -1;
e74cfd16
PB
263/* Record user cpu selection for object attributes. */
264static arm_feature_set selected_cpu = ARM_ARCH_NONE;
ee065d83
PB
265/* Must be long enough to hold any of the names in arm_cpus. */
266static char selected_cpu_name[16];
8d67f500 267
aacf0b33
KT
268extern FLONUM_TYPE generic_floating_point_number;
269
8d67f500
NC
270/* Return if no cpu was selected on command-line. */
271static bfd_boolean
272no_cpu_selected (void)
273{
823d2571 274 return ARM_FEATURE_EQUAL (selected_cpu, arm_arch_none);
8d67f500
NC
275}
276
7cc69913 277#ifdef OBJ_ELF
deeaaff8
DJ
278# ifdef EABI_DEFAULT
279static int meabi_flags = EABI_DEFAULT;
280# else
d507cf36 281static int meabi_flags = EF_ARM_EABI_UNKNOWN;
deeaaff8 282# endif
e1da3f5b 283
ee3c0378
AS
284static int attributes_set_explicitly[NUM_KNOWN_OBJ_ATTRIBUTES];
285
e1da3f5b 286bfd_boolean
5f4273c7 287arm_is_eabi (void)
e1da3f5b
PB
288{
289 return (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4);
290}
7cc69913 291#endif
b99bd4ef 292
b99bd4ef 293#ifdef OBJ_ELF
c19d1205 294/* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
b99bd4ef
NC
295symbolS * GOT_symbol;
296#endif
297
b99bd4ef
NC
298/* 0: assemble for ARM,
299 1: assemble for Thumb,
300 2: assemble for Thumb even though target CPU does not support thumb
301 instructions. */
302static int thumb_mode = 0;
8dc2430f
NC
303/* A value distinct from the possible values for thumb_mode that we
304 can use to record whether thumb_mode has been copied into the
305 tc_frag_data field of a frag. */
306#define MODE_RECORDED (1 << 4)
b99bd4ef 307
e07e6e58
NC
308/* Specifies the intrinsic IT insn behavior mode. */
309enum implicit_it_mode
310{
311 IMPLICIT_IT_MODE_NEVER = 0x00,
312 IMPLICIT_IT_MODE_ARM = 0x01,
313 IMPLICIT_IT_MODE_THUMB = 0x02,
314 IMPLICIT_IT_MODE_ALWAYS = (IMPLICIT_IT_MODE_ARM | IMPLICIT_IT_MODE_THUMB)
315};
316static int implicit_it_mode = IMPLICIT_IT_MODE_ARM;
317
c19d1205
ZW
318/* If unified_syntax is true, we are processing the new unified
319 ARM/Thumb syntax. Important differences from the old ARM mode:
320
321 - Immediate operands do not require a # prefix.
322 - Conditional affixes always appear at the end of the
323 instruction. (For backward compatibility, those instructions
324 that formerly had them in the middle, continue to accept them
325 there.)
326 - The IT instruction may appear, and if it does is validated
327 against subsequent conditional affixes. It does not generate
328 machine code.
329
330 Important differences from the old Thumb mode:
331
332 - Immediate operands do not require a # prefix.
333 - Most of the V6T2 instructions are only available in unified mode.
334 - The .N and .W suffixes are recognized and honored (it is an error
335 if they cannot be honored).
336 - All instructions set the flags if and only if they have an 's' affix.
337 - Conditional affixes may be used. They are validated against
338 preceding IT instructions. Unlike ARM mode, you cannot use a
339 conditional affix except in the scope of an IT instruction. */
340
341static bfd_boolean unified_syntax = FALSE;
b99bd4ef 342
bacebabc
RM
343/* An immediate operand can start with #, and ld*, st*, pld operands
344 can contain [ and ]. We need to tell APP not to elide whitespace
477330fc
RM
345 before a [, which can appear as the first operand for pld.
346 Likewise, a { can appear as the first operand for push, pop, vld*, etc. */
347const char arm_symbol_chars[] = "#[]{}";
bacebabc 348
5287ad62
JB
349enum neon_el_type
350{
dcbf9037 351 NT_invtype,
5287ad62
JB
352 NT_untyped,
353 NT_integer,
354 NT_float,
355 NT_poly,
356 NT_signed,
dcbf9037 357 NT_unsigned
5287ad62
JB
358};
359
360struct neon_type_el
361{
362 enum neon_el_type type;
363 unsigned size;
364};
365
366#define NEON_MAX_TYPE_ELS 4
367
368struct neon_type
369{
370 struct neon_type_el el[NEON_MAX_TYPE_ELS];
371 unsigned elems;
372};
373
e07e6e58
NC
374enum it_instruction_type
375{
376 OUTSIDE_IT_INSN,
377 INSIDE_IT_INSN,
378 INSIDE_IT_LAST_INSN,
379 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
477330fc 380 if inside, should be the last one. */
e07e6e58 381 NEUTRAL_IT_INSN, /* This could be either inside or outside,
477330fc 382 i.e. BKPT and NOP. */
e07e6e58
NC
383 IT_INSN /* The IT insn has been parsed. */
384};
385
ad6cec43
MGD
386/* The maximum number of operands we need. */
387#define ARM_IT_MAX_OPERANDS 6
388
b99bd4ef
NC
389struct arm_it
390{
c19d1205 391 const char * error;
b99bd4ef 392 unsigned long instruction;
c19d1205
ZW
393 int size;
394 int size_req;
395 int cond;
037e8744
JB
396 /* "uncond_value" is set to the value in place of the conditional field in
397 unconditional versions of the instruction, or -1 if nothing is
398 appropriate. */
399 int uncond_value;
5287ad62 400 struct neon_type vectype;
88714cb8
DG
401 /* This does not indicate an actual NEON instruction, only that
402 the mnemonic accepts neon-style type suffixes. */
403 int is_neon;
0110f2b8
PB
404 /* Set to the opcode if the instruction needs relaxation.
405 Zero if the instruction is not relaxed. */
406 unsigned long relax;
b99bd4ef
NC
407 struct
408 {
409 bfd_reloc_code_real_type type;
c19d1205
ZW
410 expressionS exp;
411 int pc_rel;
b99bd4ef 412 } reloc;
b99bd4ef 413
e07e6e58
NC
414 enum it_instruction_type it_insn_type;
415
c19d1205
ZW
416 struct
417 {
418 unsigned reg;
ca3f61f7 419 signed int imm;
dcbf9037 420 struct neon_type_el vectype;
ca3f61f7
NC
421 unsigned present : 1; /* Operand present. */
422 unsigned isreg : 1; /* Operand was a register. */
423 unsigned immisreg : 1; /* .imm field is a second register. */
5287ad62
JB
424 unsigned isscalar : 1; /* Operand is a (Neon) scalar. */
425 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
c96612cc 426 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
5287ad62
JB
427 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
428 instructions. This allows us to disambiguate ARM <-> vector insns. */
429 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
037e8744 430 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
5287ad62 431 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
037e8744 432 unsigned issingle : 1; /* Operand is VFP single-precision register. */
ca3f61f7
NC
433 unsigned hasreloc : 1; /* Operand has relocation suffix. */
434 unsigned writeback : 1; /* Operand has trailing ! */
435 unsigned preind : 1; /* Preindexed address. */
436 unsigned postind : 1; /* Postindexed address. */
437 unsigned negative : 1; /* Index register was negated. */
438 unsigned shifted : 1; /* Shift applied to operation. */
439 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
ad6cec43 440 } operands[ARM_IT_MAX_OPERANDS];
b99bd4ef
NC
441};
442
c19d1205 443static struct arm_it inst;
b99bd4ef
NC
444
445#define NUM_FLOAT_VALS 8
446
05d2d07e 447const char * fp_const[] =
b99bd4ef
NC
448{
449 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
450};
451
c19d1205 452/* Number of littlenums required to hold an extended precision number. */
b99bd4ef
NC
453#define MAX_LITTLENUMS 6
454
455LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
456
457#define FAIL (-1)
458#define SUCCESS (0)
459
460#define SUFF_S 1
461#define SUFF_D 2
462#define SUFF_E 3
463#define SUFF_P 4
464
c19d1205
ZW
465#define CP_T_X 0x00008000
466#define CP_T_Y 0x00400000
b99bd4ef 467
c19d1205
ZW
468#define CONDS_BIT 0x00100000
469#define LOAD_BIT 0x00100000
b99bd4ef
NC
470
471#define DOUBLE_LOAD_FLAG 0x00000001
472
473struct asm_cond
474{
d3ce72d0 475 const char * template_name;
c921be7d 476 unsigned long value;
b99bd4ef
NC
477};
478
c19d1205 479#define COND_ALWAYS 0xE
b99bd4ef 480
b99bd4ef
NC
481struct asm_psr
482{
d3ce72d0 483 const char * template_name;
c921be7d 484 unsigned long field;
b99bd4ef
NC
485};
486
62b3e311
PB
487struct asm_barrier_opt
488{
e797f7e0
MGD
489 const char * template_name;
490 unsigned long value;
491 const arm_feature_set arch;
62b3e311
PB
492};
493
2d2255b5 494/* The bit that distinguishes CPSR and SPSR. */
b99bd4ef
NC
495#define SPSR_BIT (1 << 22)
496
c19d1205
ZW
497/* The individual PSR flag bits. */
498#define PSR_c (1 << 16)
499#define PSR_x (1 << 17)
500#define PSR_s (1 << 18)
501#define PSR_f (1 << 19)
b99bd4ef 502
c19d1205 503struct reloc_entry
bfae80f2 504{
c921be7d
NC
505 char * name;
506 bfd_reloc_code_real_type reloc;
bfae80f2
RE
507};
508
5287ad62 509enum vfp_reg_pos
bfae80f2 510{
5287ad62
JB
511 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
512 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
bfae80f2
RE
513};
514
515enum vfp_ldstm_type
516{
517 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
518};
519
dcbf9037
JB
520/* Bits for DEFINED field in neon_typed_alias. */
521#define NTA_HASTYPE 1
522#define NTA_HASINDEX 2
523
524struct neon_typed_alias
525{
c921be7d
NC
526 unsigned char defined;
527 unsigned char index;
528 struct neon_type_el eltype;
dcbf9037
JB
529};
530
c19d1205
ZW
531/* ARM register categories. This includes coprocessor numbers and various
532 architecture extensions' registers. */
533enum arm_reg_type
bfae80f2 534{
c19d1205
ZW
535 REG_TYPE_RN,
536 REG_TYPE_CP,
537 REG_TYPE_CN,
538 REG_TYPE_FN,
539 REG_TYPE_VFS,
540 REG_TYPE_VFD,
5287ad62 541 REG_TYPE_NQ,
037e8744 542 REG_TYPE_VFSD,
5287ad62 543 REG_TYPE_NDQ,
037e8744 544 REG_TYPE_NSDQ,
c19d1205
ZW
545 REG_TYPE_VFC,
546 REG_TYPE_MVF,
547 REG_TYPE_MVD,
548 REG_TYPE_MVFX,
549 REG_TYPE_MVDX,
550 REG_TYPE_MVAX,
551 REG_TYPE_DSPSC,
552 REG_TYPE_MMXWR,
553 REG_TYPE_MMXWC,
554 REG_TYPE_MMXWCG,
555 REG_TYPE_XSCALE,
90ec0d68 556 REG_TYPE_RNB
bfae80f2
RE
557};
558
dcbf9037
JB
559/* Structure for a hash table entry for a register.
560 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
561 information which states whether a vector type or index is specified (for a
562 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
6c43fab6
RE
563struct reg_entry
564{
c921be7d 565 const char * name;
90ec0d68 566 unsigned int number;
c921be7d
NC
567 unsigned char type;
568 unsigned char builtin;
569 struct neon_typed_alias * neon;
6c43fab6
RE
570};
571
c19d1205 572/* Diagnostics used when we don't get a register of the expected type. */
c921be7d 573const char * const reg_expected_msgs[] =
c19d1205
ZW
574{
575 N_("ARM register expected"),
576 N_("bad or missing co-processor number"),
577 N_("co-processor register expected"),
578 N_("FPA register expected"),
579 N_("VFP single precision register expected"),
5287ad62
JB
580 N_("VFP/Neon double precision register expected"),
581 N_("Neon quad precision register expected"),
037e8744 582 N_("VFP single or double precision register expected"),
5287ad62 583 N_("Neon double or quad precision register expected"),
037e8744 584 N_("VFP single, double or Neon quad precision register expected"),
c19d1205
ZW
585 N_("VFP system register expected"),
586 N_("Maverick MVF register expected"),
587 N_("Maverick MVD register expected"),
588 N_("Maverick MVFX register expected"),
589 N_("Maverick MVDX register expected"),
590 N_("Maverick MVAX register expected"),
591 N_("Maverick DSPSC register expected"),
592 N_("iWMMXt data register expected"),
593 N_("iWMMXt control register expected"),
594 N_("iWMMXt scalar register expected"),
595 N_("XScale accumulator register expected"),
6c43fab6
RE
596};
597
c19d1205 598/* Some well known registers that we refer to directly elsewhere. */
bd340a04 599#define REG_R12 12
c19d1205
ZW
600#define REG_SP 13
601#define REG_LR 14
602#define REG_PC 15
404ff6b5 603
b99bd4ef
NC
604/* ARM instructions take 4bytes in the object file, Thumb instructions
605 take 2: */
c19d1205 606#define INSN_SIZE 4
b99bd4ef
NC
607
608struct asm_opcode
609{
610 /* Basic string to match. */
d3ce72d0 611 const char * template_name;
c19d1205
ZW
612
613 /* Parameters to instruction. */
5be8be5d 614 unsigned int operands[8];
c19d1205
ZW
615
616 /* Conditional tag - see opcode_lookup. */
617 unsigned int tag : 4;
b99bd4ef
NC
618
619 /* Basic instruction code. */
c19d1205 620 unsigned int avalue : 28;
b99bd4ef 621
c19d1205
ZW
622 /* Thumb-format instruction code. */
623 unsigned int tvalue;
b99bd4ef 624
90e4755a 625 /* Which architecture variant provides this instruction. */
c921be7d
NC
626 const arm_feature_set * avariant;
627 const arm_feature_set * tvariant;
c19d1205
ZW
628
629 /* Function to call to encode instruction in ARM format. */
630 void (* aencode) (void);
b99bd4ef 631
c19d1205
ZW
632 /* Function to call to encode instruction in Thumb format. */
633 void (* tencode) (void);
b99bd4ef
NC
634};
635
a737bd4d
NC
636/* Defines for various bits that we will want to toggle. */
637#define INST_IMMEDIATE 0x02000000
638#define OFFSET_REG 0x02000000
c19d1205 639#define HWOFFSET_IMM 0x00400000
a737bd4d
NC
640#define SHIFT_BY_REG 0x00000010
641#define PRE_INDEX 0x01000000
642#define INDEX_UP 0x00800000
643#define WRITE_BACK 0x00200000
644#define LDM_TYPE_2_OR_3 0x00400000
a028a6f5 645#define CPSI_MMOD 0x00020000
90e4755a 646
a737bd4d
NC
647#define LITERAL_MASK 0xf000f000
648#define OPCODE_MASK 0xfe1fffff
649#define V4_STR_BIT 0x00000020
8335d6aa 650#define VLDR_VMOV_SAME 0x0040f000
90e4755a 651
efd81785
PB
652#define T2_SUBS_PC_LR 0xf3de8f00
653
a737bd4d 654#define DATA_OP_SHIFT 21
90e4755a 655
ef8d22e6
PB
656#define T2_OPCODE_MASK 0xfe1fffff
657#define T2_DATA_OP_SHIFT 21
658
6530b175
NC
659#define A_COND_MASK 0xf0000000
660#define A_PUSH_POP_OP_MASK 0x0fff0000
661
662/* Opcodes for pushing/poping registers to/from the stack. */
663#define A1_OPCODE_PUSH 0x092d0000
664#define A2_OPCODE_PUSH 0x052d0004
665#define A2_OPCODE_POP 0x049d0004
666
a737bd4d
NC
667/* Codes to distinguish the arithmetic instructions. */
668#define OPCODE_AND 0
669#define OPCODE_EOR 1
670#define OPCODE_SUB 2
671#define OPCODE_RSB 3
672#define OPCODE_ADD 4
673#define OPCODE_ADC 5
674#define OPCODE_SBC 6
675#define OPCODE_RSC 7
676#define OPCODE_TST 8
677#define OPCODE_TEQ 9
678#define OPCODE_CMP 10
679#define OPCODE_CMN 11
680#define OPCODE_ORR 12
681#define OPCODE_MOV 13
682#define OPCODE_BIC 14
683#define OPCODE_MVN 15
90e4755a 684
ef8d22e6
PB
685#define T2_OPCODE_AND 0
686#define T2_OPCODE_BIC 1
687#define T2_OPCODE_ORR 2
688#define T2_OPCODE_ORN 3
689#define T2_OPCODE_EOR 4
690#define T2_OPCODE_ADD 8
691#define T2_OPCODE_ADC 10
692#define T2_OPCODE_SBC 11
693#define T2_OPCODE_SUB 13
694#define T2_OPCODE_RSB 14
695
a737bd4d
NC
696#define T_OPCODE_MUL 0x4340
697#define T_OPCODE_TST 0x4200
698#define T_OPCODE_CMN 0x42c0
699#define T_OPCODE_NEG 0x4240
700#define T_OPCODE_MVN 0x43c0
90e4755a 701
a737bd4d
NC
702#define T_OPCODE_ADD_R3 0x1800
703#define T_OPCODE_SUB_R3 0x1a00
704#define T_OPCODE_ADD_HI 0x4400
705#define T_OPCODE_ADD_ST 0xb000
706#define T_OPCODE_SUB_ST 0xb080
707#define T_OPCODE_ADD_SP 0xa800
708#define T_OPCODE_ADD_PC 0xa000
709#define T_OPCODE_ADD_I8 0x3000
710#define T_OPCODE_SUB_I8 0x3800
711#define T_OPCODE_ADD_I3 0x1c00
712#define T_OPCODE_SUB_I3 0x1e00
b99bd4ef 713
a737bd4d
NC
714#define T_OPCODE_ASR_R 0x4100
715#define T_OPCODE_LSL_R 0x4080
c19d1205
ZW
716#define T_OPCODE_LSR_R 0x40c0
717#define T_OPCODE_ROR_R 0x41c0
a737bd4d
NC
718#define T_OPCODE_ASR_I 0x1000
719#define T_OPCODE_LSL_I 0x0000
720#define T_OPCODE_LSR_I 0x0800
b99bd4ef 721
a737bd4d
NC
722#define T_OPCODE_MOV_I8 0x2000
723#define T_OPCODE_CMP_I8 0x2800
724#define T_OPCODE_CMP_LR 0x4280
725#define T_OPCODE_MOV_HR 0x4600
726#define T_OPCODE_CMP_HR 0x4500
b99bd4ef 727
a737bd4d
NC
728#define T_OPCODE_LDR_PC 0x4800
729#define T_OPCODE_LDR_SP 0x9800
730#define T_OPCODE_STR_SP 0x9000
731#define T_OPCODE_LDR_IW 0x6800
732#define T_OPCODE_STR_IW 0x6000
733#define T_OPCODE_LDR_IH 0x8800
734#define T_OPCODE_STR_IH 0x8000
735#define T_OPCODE_LDR_IB 0x7800
736#define T_OPCODE_STR_IB 0x7000
737#define T_OPCODE_LDR_RW 0x5800
738#define T_OPCODE_STR_RW 0x5000
739#define T_OPCODE_LDR_RH 0x5a00
740#define T_OPCODE_STR_RH 0x5200
741#define T_OPCODE_LDR_RB 0x5c00
742#define T_OPCODE_STR_RB 0x5400
c9b604bd 743
a737bd4d
NC
744#define T_OPCODE_PUSH 0xb400
745#define T_OPCODE_POP 0xbc00
b99bd4ef 746
2fc8bdac 747#define T_OPCODE_BRANCH 0xe000
b99bd4ef 748
a737bd4d 749#define THUMB_SIZE 2 /* Size of thumb instruction. */
a737bd4d 750#define THUMB_PP_PC_LR 0x0100
c19d1205 751#define THUMB_LOAD_BIT 0x0800
53365c0d 752#define THUMB2_LOAD_BIT 0x00100000
c19d1205
ZW
753
754#define BAD_ARGS _("bad arguments to instruction")
fdfde340 755#define BAD_SP _("r13 not allowed here")
c19d1205
ZW
756#define BAD_PC _("r15 not allowed here")
757#define BAD_COND _("instruction cannot be conditional")
758#define BAD_OVERLAP _("registers may not be the same")
759#define BAD_HIREG _("lo register required")
760#define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
01cfc07f 761#define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
dfa9f0d5
PB
762#define BAD_BRANCH _("branch must be last instruction in IT block")
763#define BAD_NOT_IT _("instruction not allowed in IT block")
037e8744 764#define BAD_FPU _("selected FPU does not support instruction")
e07e6e58
NC
765#define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
766#define BAD_IT_COND _("incorrect condition in IT block")
767#define BAD_IT_IT _("IT falling in the range of a previous IT block")
921e5f0a 768#define MISSING_FNSTART _("missing .fnstart before unwinding directive")
5be8be5d
DG
769#define BAD_PC_ADDRESSING \
770 _("cannot use register index with PC-relative addressing")
771#define BAD_PC_WRITEBACK \
772 _("cannot use writeback with PC-relative addressing")
08f10d51 773#define BAD_RANGE _("branch out of range")
dd5181d5 774#define UNPRED_REG(R) _("using " R " results in unpredictable behaviour")
c19d1205 775
c921be7d
NC
776static struct hash_control * arm_ops_hsh;
777static struct hash_control * arm_cond_hsh;
778static struct hash_control * arm_shift_hsh;
779static struct hash_control * arm_psr_hsh;
780static struct hash_control * arm_v7m_psr_hsh;
781static struct hash_control * arm_reg_hsh;
782static struct hash_control * arm_reloc_hsh;
783static struct hash_control * arm_barrier_opt_hsh;
b99bd4ef 784
b99bd4ef
NC
785/* Stuff needed to resolve the label ambiguity
786 As:
787 ...
788 label: <insn>
789 may differ from:
790 ...
791 label:
5f4273c7 792 <insn> */
b99bd4ef
NC
793
794symbolS * last_label_seen;
b34976b6 795static int label_is_thumb_function_name = FALSE;
e07e6e58 796
3d0c9500
NC
797/* Literal pool structure. Held on a per-section
798 and per-sub-section basis. */
a737bd4d 799
c19d1205 800#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 801typedef struct literal_pool
b99bd4ef 802{
c921be7d
NC
803 expressionS literals [MAX_LITERAL_POOL_SIZE];
804 unsigned int next_free_entry;
805 unsigned int id;
806 symbolS * symbol;
807 segT section;
808 subsegT sub_section;
a8040cf2
NC
809#ifdef OBJ_ELF
810 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
811#endif
c921be7d 812 struct literal_pool * next;
8335d6aa 813 unsigned int alignment;
3d0c9500 814} literal_pool;
b99bd4ef 815
3d0c9500
NC
816/* Pointer to a linked list of literal pools. */
817literal_pool * list_of_pools = NULL;
e27ec89e 818
2e6976a8
DG
819typedef enum asmfunc_states
820{
821 OUTSIDE_ASMFUNC,
822 WAITING_ASMFUNC_NAME,
823 WAITING_ENDASMFUNC
824} asmfunc_states;
825
826static asmfunc_states asmfunc_state = OUTSIDE_ASMFUNC;
827
e07e6e58
NC
828#ifdef OBJ_ELF
829# define now_it seg_info (now_seg)->tc_segment_info_data.current_it
830#else
831static struct current_it now_it;
832#endif
833
834static inline int
835now_it_compatible (int cond)
836{
837 return (cond & ~1) == (now_it.cc & ~1);
838}
839
840static inline int
841conditional_insn (void)
842{
843 return inst.cond != COND_ALWAYS;
844}
845
846static int in_it_block (void);
847
848static int handle_it_state (void);
849
850static void force_automatic_it_block_close (void);
851
c921be7d
NC
852static void it_fsm_post_encode (void);
853
e07e6e58
NC
854#define set_it_insn_type(type) \
855 do \
856 { \
857 inst.it_insn_type = type; \
858 if (handle_it_state () == FAIL) \
477330fc 859 return; \
e07e6e58
NC
860 } \
861 while (0)
862
c921be7d
NC
863#define set_it_insn_type_nonvoid(type, failret) \
864 do \
865 { \
866 inst.it_insn_type = type; \
867 if (handle_it_state () == FAIL) \
477330fc 868 return failret; \
c921be7d
NC
869 } \
870 while(0)
871
e07e6e58
NC
872#define set_it_insn_type_last() \
873 do \
874 { \
875 if (inst.cond == COND_ALWAYS) \
477330fc 876 set_it_insn_type (IF_INSIDE_IT_LAST_INSN); \
e07e6e58 877 else \
477330fc 878 set_it_insn_type (INSIDE_IT_LAST_INSN); \
e07e6e58
NC
879 } \
880 while (0)
881
c19d1205 882/* Pure syntax. */
b99bd4ef 883
c19d1205
ZW
884/* This array holds the chars that always start a comment. If the
885 pre-processor is disabled, these aren't very useful. */
2e6976a8 886char arm_comment_chars[] = "@";
3d0c9500 887
c19d1205
ZW
888/* This array holds the chars that only start a comment at the beginning of
889 a line. If the line seems to have the form '# 123 filename'
890 .line and .file directives will appear in the pre-processed output. */
891/* Note that input_file.c hand checks for '#' at the beginning of the
892 first line of the input file. This is because the compiler outputs
893 #NO_APP at the beginning of its output. */
894/* Also note that comments like this one will always work. */
895const char line_comment_chars[] = "#";
3d0c9500 896
2e6976a8 897char arm_line_separator_chars[] = ";";
b99bd4ef 898
c19d1205
ZW
899/* Chars that can be used to separate mant
900 from exp in floating point numbers. */
901const char EXP_CHARS[] = "eE";
3d0c9500 902
c19d1205
ZW
903/* Chars that mean this number is a floating point constant. */
904/* As in 0f12.456 */
905/* or 0d1.2345e12 */
b99bd4ef 906
c19d1205 907const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 908
c19d1205
ZW
909/* Prefix characters that indicate the start of an immediate
910 value. */
911#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 912
c19d1205
ZW
913/* Separator character handling. */
914
915#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
916
917static inline int
918skip_past_char (char ** str, char c)
919{
8ab8155f
NC
920 /* PR gas/14987: Allow for whitespace before the expected character. */
921 skip_whitespace (*str);
427d0db6 922
c19d1205
ZW
923 if (**str == c)
924 {
925 (*str)++;
926 return SUCCESS;
3d0c9500 927 }
c19d1205
ZW
928 else
929 return FAIL;
930}
c921be7d 931
c19d1205 932#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 933
c19d1205
ZW
934/* Arithmetic expressions (possibly involving symbols). */
935
936/* Return TRUE if anything in the expression is a bignum. */
937
938static int
939walk_no_bignums (symbolS * sp)
940{
941 if (symbol_get_value_expression (sp)->X_op == O_big)
942 return 1;
943
944 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 945 {
c19d1205
ZW
946 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
947 || (symbol_get_value_expression (sp)->X_op_symbol
948 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
949 }
950
c19d1205 951 return 0;
3d0c9500
NC
952}
953
c19d1205
ZW
954static int in_my_get_expression = 0;
955
956/* Third argument to my_get_expression. */
957#define GE_NO_PREFIX 0
958#define GE_IMM_PREFIX 1
959#define GE_OPT_PREFIX 2
5287ad62
JB
960/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
961 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
962#define GE_OPT_PREFIX_BIG 3
a737bd4d 963
b99bd4ef 964static int
c19d1205 965my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 966{
c19d1205
ZW
967 char * save_in;
968 segT seg;
b99bd4ef 969
c19d1205
ZW
970 /* In unified syntax, all prefixes are optional. */
971 if (unified_syntax)
5287ad62 972 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
477330fc 973 : GE_OPT_PREFIX;
b99bd4ef 974
c19d1205 975 switch (prefix_mode)
b99bd4ef 976 {
c19d1205
ZW
977 case GE_NO_PREFIX: break;
978 case GE_IMM_PREFIX:
979 if (!is_immediate_prefix (**str))
980 {
981 inst.error = _("immediate expression requires a # prefix");
982 return FAIL;
983 }
984 (*str)++;
985 break;
986 case GE_OPT_PREFIX:
5287ad62 987 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
988 if (is_immediate_prefix (**str))
989 (*str)++;
990 break;
991 default: abort ();
992 }
b99bd4ef 993
c19d1205 994 memset (ep, 0, sizeof (expressionS));
b99bd4ef 995
c19d1205
ZW
996 save_in = input_line_pointer;
997 input_line_pointer = *str;
998 in_my_get_expression = 1;
999 seg = expression (ep);
1000 in_my_get_expression = 0;
1001
f86adc07 1002 if (ep->X_op == O_illegal || ep->X_op == O_absent)
b99bd4ef 1003 {
f86adc07 1004 /* We found a bad or missing expression in md_operand(). */
c19d1205
ZW
1005 *str = input_line_pointer;
1006 input_line_pointer = save_in;
1007 if (inst.error == NULL)
f86adc07
NS
1008 inst.error = (ep->X_op == O_absent
1009 ? _("missing expression") :_("bad expression"));
c19d1205
ZW
1010 return 1;
1011 }
b99bd4ef 1012
c19d1205
ZW
1013#ifdef OBJ_AOUT
1014 if (seg != absolute_section
1015 && seg != text_section
1016 && seg != data_section
1017 && seg != bss_section
1018 && seg != undefined_section)
1019 {
1020 inst.error = _("bad segment");
1021 *str = input_line_pointer;
1022 input_line_pointer = save_in;
1023 return 1;
b99bd4ef 1024 }
87975d2a
AM
1025#else
1026 (void) seg;
c19d1205 1027#endif
b99bd4ef 1028
c19d1205
ZW
1029 /* Get rid of any bignums now, so that we don't generate an error for which
1030 we can't establish a line number later on. Big numbers are never valid
1031 in instructions, which is where this routine is always called. */
5287ad62
JB
1032 if (prefix_mode != GE_OPT_PREFIX_BIG
1033 && (ep->X_op == O_big
477330fc 1034 || (ep->X_add_symbol
5287ad62 1035 && (walk_no_bignums (ep->X_add_symbol)
477330fc 1036 || (ep->X_op_symbol
5287ad62 1037 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
1038 {
1039 inst.error = _("invalid constant");
1040 *str = input_line_pointer;
1041 input_line_pointer = save_in;
1042 return 1;
1043 }
b99bd4ef 1044
c19d1205
ZW
1045 *str = input_line_pointer;
1046 input_line_pointer = save_in;
1047 return 0;
b99bd4ef
NC
1048}
1049
c19d1205
ZW
1050/* Turn a string in input_line_pointer into a floating point constant
1051 of type TYPE, and store the appropriate bytes in *LITP. The number
1052 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1053 returned, or NULL on OK.
b99bd4ef 1054
c19d1205
ZW
1055 Note that fp constants aren't represent in the normal way on the ARM.
1056 In big endian mode, things are as expected. However, in little endian
1057 mode fp constants are big-endian word-wise, and little-endian byte-wise
1058 within the words. For example, (double) 1.1 in big endian mode is
1059 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1060 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 1061
c19d1205 1062 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 1063
c19d1205
ZW
1064char *
1065md_atof (int type, char * litP, int * sizeP)
1066{
1067 int prec;
1068 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1069 char *t;
1070 int i;
b99bd4ef 1071
c19d1205
ZW
1072 switch (type)
1073 {
1074 case 'f':
1075 case 'F':
1076 case 's':
1077 case 'S':
1078 prec = 2;
1079 break;
b99bd4ef 1080
c19d1205
ZW
1081 case 'd':
1082 case 'D':
1083 case 'r':
1084 case 'R':
1085 prec = 4;
1086 break;
b99bd4ef 1087
c19d1205
ZW
1088 case 'x':
1089 case 'X':
499ac353 1090 prec = 5;
c19d1205 1091 break;
b99bd4ef 1092
c19d1205
ZW
1093 case 'p':
1094 case 'P':
499ac353 1095 prec = 5;
c19d1205 1096 break;
a737bd4d 1097
c19d1205
ZW
1098 default:
1099 *sizeP = 0;
499ac353 1100 return _("Unrecognized or unsupported floating point constant");
c19d1205 1101 }
b99bd4ef 1102
c19d1205
ZW
1103 t = atof_ieee (input_line_pointer, type, words);
1104 if (t)
1105 input_line_pointer = t;
499ac353 1106 *sizeP = prec * sizeof (LITTLENUM_TYPE);
b99bd4ef 1107
c19d1205
ZW
1108 if (target_big_endian)
1109 {
1110 for (i = 0; i < prec; i++)
1111 {
499ac353
NC
1112 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1113 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1114 }
1115 }
1116 else
1117 {
e74cfd16 1118 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
1119 for (i = prec - 1; i >= 0; i--)
1120 {
499ac353
NC
1121 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1122 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1123 }
1124 else
1125 /* For a 4 byte float the order of elements in `words' is 1 0.
1126 For an 8 byte float the order is 1 0 3 2. */
1127 for (i = 0; i < prec; i += 2)
1128 {
499ac353
NC
1129 md_number_to_chars (litP, (valueT) words[i + 1],
1130 sizeof (LITTLENUM_TYPE));
1131 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1132 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1133 litP += 2 * sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1134 }
1135 }
b99bd4ef 1136
499ac353 1137 return NULL;
c19d1205 1138}
b99bd4ef 1139
c19d1205
ZW
1140/* We handle all bad expressions here, so that we can report the faulty
1141 instruction in the error message. */
1142void
91d6fa6a 1143md_operand (expressionS * exp)
c19d1205
ZW
1144{
1145 if (in_my_get_expression)
91d6fa6a 1146 exp->X_op = O_illegal;
b99bd4ef
NC
1147}
1148
c19d1205 1149/* Immediate values. */
b99bd4ef 1150
c19d1205
ZW
1151/* Generic immediate-value read function for use in directives.
1152 Accepts anything that 'expression' can fold to a constant.
1153 *val receives the number. */
1154#ifdef OBJ_ELF
1155static int
1156immediate_for_directive (int *val)
b99bd4ef 1157{
c19d1205
ZW
1158 expressionS exp;
1159 exp.X_op = O_illegal;
b99bd4ef 1160
c19d1205
ZW
1161 if (is_immediate_prefix (*input_line_pointer))
1162 {
1163 input_line_pointer++;
1164 expression (&exp);
1165 }
b99bd4ef 1166
c19d1205
ZW
1167 if (exp.X_op != O_constant)
1168 {
1169 as_bad (_("expected #constant"));
1170 ignore_rest_of_line ();
1171 return FAIL;
1172 }
1173 *val = exp.X_add_number;
1174 return SUCCESS;
b99bd4ef 1175}
c19d1205 1176#endif
b99bd4ef 1177
c19d1205 1178/* Register parsing. */
b99bd4ef 1179
c19d1205
ZW
1180/* Generic register parser. CCP points to what should be the
1181 beginning of a register name. If it is indeed a valid register
1182 name, advance CCP over it and return the reg_entry structure;
1183 otherwise return NULL. Does not issue diagnostics. */
1184
1185static struct reg_entry *
1186arm_reg_parse_multi (char **ccp)
b99bd4ef 1187{
c19d1205
ZW
1188 char *start = *ccp;
1189 char *p;
1190 struct reg_entry *reg;
b99bd4ef 1191
477330fc
RM
1192 skip_whitespace (start);
1193
c19d1205
ZW
1194#ifdef REGISTER_PREFIX
1195 if (*start != REGISTER_PREFIX)
01cfc07f 1196 return NULL;
c19d1205
ZW
1197 start++;
1198#endif
1199#ifdef OPTIONAL_REGISTER_PREFIX
1200 if (*start == OPTIONAL_REGISTER_PREFIX)
1201 start++;
1202#endif
b99bd4ef 1203
c19d1205
ZW
1204 p = start;
1205 if (!ISALPHA (*p) || !is_name_beginner (*p))
1206 return NULL;
b99bd4ef 1207
c19d1205
ZW
1208 do
1209 p++;
1210 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1211
1212 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1213
1214 if (!reg)
1215 return NULL;
1216
1217 *ccp = p;
1218 return reg;
b99bd4ef
NC
1219}
1220
1221static int
dcbf9037 1222arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
477330fc 1223 enum arm_reg_type type)
b99bd4ef 1224{
c19d1205
ZW
1225 /* Alternative syntaxes are accepted for a few register classes. */
1226 switch (type)
1227 {
1228 case REG_TYPE_MVF:
1229 case REG_TYPE_MVD:
1230 case REG_TYPE_MVFX:
1231 case REG_TYPE_MVDX:
1232 /* Generic coprocessor register names are allowed for these. */
79134647 1233 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1234 return reg->number;
1235 break;
69b97547 1236
c19d1205
ZW
1237 case REG_TYPE_CP:
1238 /* For backward compatibility, a bare number is valid here. */
1239 {
1240 unsigned long processor = strtoul (start, ccp, 10);
1241 if (*ccp != start && processor <= 15)
1242 return processor;
1243 }
6057a28f 1244
c19d1205
ZW
1245 case REG_TYPE_MMXWC:
1246 /* WC includes WCG. ??? I'm not sure this is true for all
1247 instructions that take WC registers. */
79134647 1248 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1249 return reg->number;
6057a28f 1250 break;
c19d1205 1251
6057a28f 1252 default:
c19d1205 1253 break;
6057a28f
NC
1254 }
1255
dcbf9037
JB
1256 return FAIL;
1257}
1258
1259/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1260 return value is the register number or FAIL. */
1261
1262static int
1263arm_reg_parse (char **ccp, enum arm_reg_type type)
1264{
1265 char *start = *ccp;
1266 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1267 int ret;
1268
1269 /* Do not allow a scalar (reg+index) to parse as a register. */
1270 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1271 return FAIL;
1272
1273 if (reg && reg->type == type)
1274 return reg->number;
1275
1276 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1277 return ret;
1278
c19d1205
ZW
1279 *ccp = start;
1280 return FAIL;
1281}
69b97547 1282
dcbf9037
JB
1283/* Parse a Neon type specifier. *STR should point at the leading '.'
1284 character. Does no verification at this stage that the type fits the opcode
1285 properly. E.g.,
1286
1287 .i32.i32.s16
1288 .s32.f32
1289 .u16
1290
1291 Can all be legally parsed by this function.
1292
1293 Fills in neon_type struct pointer with parsed information, and updates STR
1294 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1295 type, FAIL if not. */
1296
1297static int
1298parse_neon_type (struct neon_type *type, char **str)
1299{
1300 char *ptr = *str;
1301
1302 if (type)
1303 type->elems = 0;
1304
1305 while (type->elems < NEON_MAX_TYPE_ELS)
1306 {
1307 enum neon_el_type thistype = NT_untyped;
1308 unsigned thissize = -1u;
1309
1310 if (*ptr != '.')
1311 break;
1312
1313 ptr++;
1314
1315 /* Just a size without an explicit type. */
1316 if (ISDIGIT (*ptr))
1317 goto parsesize;
1318
1319 switch (TOLOWER (*ptr))
1320 {
1321 case 'i': thistype = NT_integer; break;
1322 case 'f': thistype = NT_float; break;
1323 case 'p': thistype = NT_poly; break;
1324 case 's': thistype = NT_signed; break;
1325 case 'u': thistype = NT_unsigned; break;
477330fc
RM
1326 case 'd':
1327 thistype = NT_float;
1328 thissize = 64;
1329 ptr++;
1330 goto done;
dcbf9037
JB
1331 default:
1332 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1333 return FAIL;
1334 }
1335
1336 ptr++;
1337
1338 /* .f is an abbreviation for .f32. */
1339 if (thistype == NT_float && !ISDIGIT (*ptr))
1340 thissize = 32;
1341 else
1342 {
1343 parsesize:
1344 thissize = strtoul (ptr, &ptr, 10);
1345
1346 if (thissize != 8 && thissize != 16 && thissize != 32
477330fc
RM
1347 && thissize != 64)
1348 {
1349 as_bad (_("bad size %d in type specifier"), thissize);
dcbf9037
JB
1350 return FAIL;
1351 }
1352 }
1353
037e8744 1354 done:
dcbf9037 1355 if (type)
477330fc
RM
1356 {
1357 type->el[type->elems].type = thistype;
dcbf9037
JB
1358 type->el[type->elems].size = thissize;
1359 type->elems++;
1360 }
1361 }
1362
1363 /* Empty/missing type is not a successful parse. */
1364 if (type->elems == 0)
1365 return FAIL;
1366
1367 *str = ptr;
1368
1369 return SUCCESS;
1370}
1371
1372/* Errors may be set multiple times during parsing or bit encoding
1373 (particularly in the Neon bits), but usually the earliest error which is set
1374 will be the most meaningful. Avoid overwriting it with later (cascading)
1375 errors by calling this function. */
1376
1377static void
1378first_error (const char *err)
1379{
1380 if (!inst.error)
1381 inst.error = err;
1382}
1383
1384/* Parse a single type, e.g. ".s32", leading period included. */
1385static int
1386parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1387{
1388 char *str = *ccp;
1389 struct neon_type optype;
1390
1391 if (*str == '.')
1392 {
1393 if (parse_neon_type (&optype, &str) == SUCCESS)
477330fc
RM
1394 {
1395 if (optype.elems == 1)
1396 *vectype = optype.el[0];
1397 else
1398 {
1399 first_error (_("only one type should be specified for operand"));
1400 return FAIL;
1401 }
1402 }
dcbf9037 1403 else
477330fc
RM
1404 {
1405 first_error (_("vector type expected"));
1406 return FAIL;
1407 }
dcbf9037
JB
1408 }
1409 else
1410 return FAIL;
5f4273c7 1411
dcbf9037 1412 *ccp = str;
5f4273c7 1413
dcbf9037
JB
1414 return SUCCESS;
1415}
1416
1417/* Special meanings for indices (which have a range of 0-7), which will fit into
1418 a 4-bit integer. */
1419
1420#define NEON_ALL_LANES 15
1421#define NEON_INTERLEAVE_LANES 14
1422
1423/* Parse either a register or a scalar, with an optional type. Return the
1424 register number, and optionally fill in the actual type of the register
1425 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1426 type/index information in *TYPEINFO. */
1427
1428static int
1429parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
477330fc
RM
1430 enum arm_reg_type *rtype,
1431 struct neon_typed_alias *typeinfo)
dcbf9037
JB
1432{
1433 char *str = *ccp;
1434 struct reg_entry *reg = arm_reg_parse_multi (&str);
1435 struct neon_typed_alias atype;
1436 struct neon_type_el parsetype;
1437
1438 atype.defined = 0;
1439 atype.index = -1;
1440 atype.eltype.type = NT_invtype;
1441 atype.eltype.size = -1;
1442
1443 /* Try alternate syntax for some types of register. Note these are mutually
1444 exclusive with the Neon syntax extensions. */
1445 if (reg == NULL)
1446 {
1447 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1448 if (altreg != FAIL)
477330fc 1449 *ccp = str;
dcbf9037 1450 if (typeinfo)
477330fc 1451 *typeinfo = atype;
dcbf9037
JB
1452 return altreg;
1453 }
1454
037e8744
JB
1455 /* Undo polymorphism when a set of register types may be accepted. */
1456 if ((type == REG_TYPE_NDQ
1457 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1458 || (type == REG_TYPE_VFSD
477330fc 1459 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
037e8744 1460 || (type == REG_TYPE_NSDQ
477330fc
RM
1461 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
1462 || reg->type == REG_TYPE_NQ))
f512f76f
NC
1463 || (type == REG_TYPE_MMXWC
1464 && (reg->type == REG_TYPE_MMXWCG)))
21d799b5 1465 type = (enum arm_reg_type) reg->type;
dcbf9037
JB
1466
1467 if (type != reg->type)
1468 return FAIL;
1469
1470 if (reg->neon)
1471 atype = *reg->neon;
5f4273c7 1472
dcbf9037
JB
1473 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1474 {
1475 if ((atype.defined & NTA_HASTYPE) != 0)
477330fc
RM
1476 {
1477 first_error (_("can't redefine type for operand"));
1478 return FAIL;
1479 }
dcbf9037
JB
1480 atype.defined |= NTA_HASTYPE;
1481 atype.eltype = parsetype;
1482 }
5f4273c7 1483
dcbf9037
JB
1484 if (skip_past_char (&str, '[') == SUCCESS)
1485 {
1486 if (type != REG_TYPE_VFD)
477330fc
RM
1487 {
1488 first_error (_("only D registers may be indexed"));
1489 return FAIL;
1490 }
5f4273c7 1491
dcbf9037 1492 if ((atype.defined & NTA_HASINDEX) != 0)
477330fc
RM
1493 {
1494 first_error (_("can't change index for operand"));
1495 return FAIL;
1496 }
dcbf9037
JB
1497
1498 atype.defined |= NTA_HASINDEX;
1499
1500 if (skip_past_char (&str, ']') == SUCCESS)
477330fc 1501 atype.index = NEON_ALL_LANES;
dcbf9037 1502 else
477330fc
RM
1503 {
1504 expressionS exp;
dcbf9037 1505
477330fc 1506 my_get_expression (&exp, &str, GE_NO_PREFIX);
dcbf9037 1507
477330fc
RM
1508 if (exp.X_op != O_constant)
1509 {
1510 first_error (_("constant expression required"));
1511 return FAIL;
1512 }
dcbf9037 1513
477330fc
RM
1514 if (skip_past_char (&str, ']') == FAIL)
1515 return FAIL;
dcbf9037 1516
477330fc
RM
1517 atype.index = exp.X_add_number;
1518 }
dcbf9037 1519 }
5f4273c7 1520
dcbf9037
JB
1521 if (typeinfo)
1522 *typeinfo = atype;
5f4273c7 1523
dcbf9037
JB
1524 if (rtype)
1525 *rtype = type;
5f4273c7 1526
dcbf9037 1527 *ccp = str;
5f4273c7 1528
dcbf9037
JB
1529 return reg->number;
1530}
1531
1532/* Like arm_reg_parse, but allow allow the following extra features:
1533 - If RTYPE is non-zero, return the (possibly restricted) type of the
1534 register (e.g. Neon double or quad reg when either has been requested).
1535 - If this is a Neon vector type with additional type information, fill
1536 in the struct pointed to by VECTYPE (if non-NULL).
5f4273c7 1537 This function will fault on encountering a scalar. */
dcbf9037
JB
1538
1539static int
1540arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
477330fc 1541 enum arm_reg_type *rtype, struct neon_type_el *vectype)
dcbf9037
JB
1542{
1543 struct neon_typed_alias atype;
1544 char *str = *ccp;
1545 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1546
1547 if (reg == FAIL)
1548 return FAIL;
1549
0855e32b
NS
1550 /* Do not allow regname(... to parse as a register. */
1551 if (*str == '(')
1552 return FAIL;
1553
dcbf9037
JB
1554 /* Do not allow a scalar (reg+index) to parse as a register. */
1555 if ((atype.defined & NTA_HASINDEX) != 0)
1556 {
1557 first_error (_("register operand expected, but got scalar"));
1558 return FAIL;
1559 }
1560
1561 if (vectype)
1562 *vectype = atype.eltype;
1563
1564 *ccp = str;
1565
1566 return reg;
1567}
1568
1569#define NEON_SCALAR_REG(X) ((X) >> 4)
1570#define NEON_SCALAR_INDEX(X) ((X) & 15)
1571
5287ad62
JB
1572/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1573 have enough information to be able to do a good job bounds-checking. So, we
1574 just do easy checks here, and do further checks later. */
1575
1576static int
dcbf9037 1577parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1578{
dcbf9037 1579 int reg;
5287ad62 1580 char *str = *ccp;
dcbf9037 1581 struct neon_typed_alias atype;
5f4273c7 1582
dcbf9037 1583 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5f4273c7 1584
dcbf9037 1585 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62 1586 return FAIL;
5f4273c7 1587
dcbf9037 1588 if (atype.index == NEON_ALL_LANES)
5287ad62 1589 {
dcbf9037 1590 first_error (_("scalar must have an index"));
5287ad62
JB
1591 return FAIL;
1592 }
dcbf9037 1593 else if (atype.index >= 64 / elsize)
5287ad62 1594 {
dcbf9037 1595 first_error (_("scalar index out of range"));
5287ad62
JB
1596 return FAIL;
1597 }
5f4273c7 1598
dcbf9037
JB
1599 if (type)
1600 *type = atype.eltype;
5f4273c7 1601
5287ad62 1602 *ccp = str;
5f4273c7 1603
dcbf9037 1604 return reg * 16 + atype.index;
5287ad62
JB
1605}
1606
c19d1205 1607/* Parse an ARM register list. Returns the bitmask, or FAIL. */
e07e6e58 1608
c19d1205
ZW
1609static long
1610parse_reg_list (char ** strp)
1611{
1612 char * str = * strp;
1613 long range = 0;
1614 int another_range;
a737bd4d 1615
c19d1205
ZW
1616 /* We come back here if we get ranges concatenated by '+' or '|'. */
1617 do
6057a28f 1618 {
477330fc
RM
1619 skip_whitespace (str);
1620
c19d1205 1621 another_range = 0;
a737bd4d 1622
c19d1205
ZW
1623 if (*str == '{')
1624 {
1625 int in_range = 0;
1626 int cur_reg = -1;
a737bd4d 1627
c19d1205
ZW
1628 str++;
1629 do
1630 {
1631 int reg;
6057a28f 1632
dcbf9037 1633 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1634 {
dcbf9037 1635 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1636 return FAIL;
1637 }
a737bd4d 1638
c19d1205
ZW
1639 if (in_range)
1640 {
1641 int i;
a737bd4d 1642
c19d1205
ZW
1643 if (reg <= cur_reg)
1644 {
dcbf9037 1645 first_error (_("bad range in register list"));
c19d1205
ZW
1646 return FAIL;
1647 }
40a18ebd 1648
c19d1205
ZW
1649 for (i = cur_reg + 1; i < reg; i++)
1650 {
1651 if (range & (1 << i))
1652 as_tsktsk
1653 (_("Warning: duplicated register (r%d) in register list"),
1654 i);
1655 else
1656 range |= 1 << i;
1657 }
1658 in_range = 0;
1659 }
a737bd4d 1660
c19d1205
ZW
1661 if (range & (1 << reg))
1662 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1663 reg);
1664 else if (reg <= cur_reg)
1665 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1666
c19d1205
ZW
1667 range |= 1 << reg;
1668 cur_reg = reg;
1669 }
1670 while (skip_past_comma (&str) != FAIL
1671 || (in_range = 1, *str++ == '-'));
1672 str--;
a737bd4d 1673
d996d970 1674 if (skip_past_char (&str, '}') == FAIL)
c19d1205 1675 {
dcbf9037 1676 first_error (_("missing `}'"));
c19d1205
ZW
1677 return FAIL;
1678 }
1679 }
1680 else
1681 {
91d6fa6a 1682 expressionS exp;
40a18ebd 1683
91d6fa6a 1684 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
c19d1205 1685 return FAIL;
40a18ebd 1686
91d6fa6a 1687 if (exp.X_op == O_constant)
c19d1205 1688 {
91d6fa6a
NC
1689 if (exp.X_add_number
1690 != (exp.X_add_number & 0x0000ffff))
c19d1205
ZW
1691 {
1692 inst.error = _("invalid register mask");
1693 return FAIL;
1694 }
a737bd4d 1695
91d6fa6a 1696 if ((range & exp.X_add_number) != 0)
c19d1205 1697 {
91d6fa6a 1698 int regno = range & exp.X_add_number;
a737bd4d 1699
c19d1205
ZW
1700 regno &= -regno;
1701 regno = (1 << regno) - 1;
1702 as_tsktsk
1703 (_("Warning: duplicated register (r%d) in register list"),
1704 regno);
1705 }
a737bd4d 1706
91d6fa6a 1707 range |= exp.X_add_number;
c19d1205
ZW
1708 }
1709 else
1710 {
1711 if (inst.reloc.type != 0)
1712 {
1713 inst.error = _("expression too complex");
1714 return FAIL;
1715 }
a737bd4d 1716
91d6fa6a 1717 memcpy (&inst.reloc.exp, &exp, sizeof (expressionS));
c19d1205
ZW
1718 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1719 inst.reloc.pc_rel = 0;
1720 }
1721 }
a737bd4d 1722
c19d1205
ZW
1723 if (*str == '|' || *str == '+')
1724 {
1725 str++;
1726 another_range = 1;
1727 }
a737bd4d 1728 }
c19d1205 1729 while (another_range);
a737bd4d 1730
c19d1205
ZW
1731 *strp = str;
1732 return range;
a737bd4d
NC
1733}
1734
5287ad62
JB
1735/* Types of registers in a list. */
1736
1737enum reg_list_els
1738{
1739 REGLIST_VFP_S,
1740 REGLIST_VFP_D,
1741 REGLIST_NEON_D
1742};
1743
c19d1205
ZW
1744/* Parse a VFP register list. If the string is invalid return FAIL.
1745 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1746 register. Parses registers of type ETYPE.
1747 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1748 - Q registers can be used to specify pairs of D registers
1749 - { } can be omitted from around a singleton register list
477330fc
RM
1750 FIXME: This is not implemented, as it would require backtracking in
1751 some cases, e.g.:
1752 vtbl.8 d3,d4,d5
1753 This could be done (the meaning isn't really ambiguous), but doesn't
1754 fit in well with the current parsing framework.
dcbf9037
JB
1755 - 32 D registers may be used (also true for VFPv3).
1756 FIXME: Types are ignored in these register lists, which is probably a
1757 bug. */
6057a28f 1758
c19d1205 1759static int
037e8744 1760parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1761{
037e8744 1762 char *str = *ccp;
c19d1205
ZW
1763 int base_reg;
1764 int new_base;
21d799b5 1765 enum arm_reg_type regtype = (enum arm_reg_type) 0;
5287ad62 1766 int max_regs = 0;
c19d1205
ZW
1767 int count = 0;
1768 int warned = 0;
1769 unsigned long mask = 0;
a737bd4d 1770 int i;
6057a28f 1771
477330fc 1772 if (skip_past_char (&str, '{') == FAIL)
5287ad62
JB
1773 {
1774 inst.error = _("expecting {");
1775 return FAIL;
1776 }
6057a28f 1777
5287ad62 1778 switch (etype)
c19d1205 1779 {
5287ad62 1780 case REGLIST_VFP_S:
c19d1205
ZW
1781 regtype = REG_TYPE_VFS;
1782 max_regs = 32;
5287ad62 1783 break;
5f4273c7 1784
5287ad62
JB
1785 case REGLIST_VFP_D:
1786 regtype = REG_TYPE_VFD;
b7fc2769 1787 break;
5f4273c7 1788
b7fc2769
JB
1789 case REGLIST_NEON_D:
1790 regtype = REG_TYPE_NDQ;
1791 break;
1792 }
1793
1794 if (etype != REGLIST_VFP_S)
1795 {
b1cc4aeb
PB
1796 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
1797 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
477330fc
RM
1798 {
1799 max_regs = 32;
1800 if (thumb_mode)
1801 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
1802 fpu_vfp_ext_d32);
1803 else
1804 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
1805 fpu_vfp_ext_d32);
1806 }
5287ad62 1807 else
477330fc 1808 max_regs = 16;
c19d1205 1809 }
6057a28f 1810
c19d1205 1811 base_reg = max_regs;
a737bd4d 1812
c19d1205
ZW
1813 do
1814 {
5287ad62 1815 int setmask = 1, addregs = 1;
dcbf9037 1816
037e8744 1817 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1818
c19d1205 1819 if (new_base == FAIL)
a737bd4d 1820 {
dcbf9037 1821 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1822 return FAIL;
1823 }
5f4273c7 1824
b7fc2769 1825 if (new_base >= max_regs)
477330fc
RM
1826 {
1827 first_error (_("register out of range in list"));
1828 return FAIL;
1829 }
5f4273c7 1830
5287ad62
JB
1831 /* Note: a value of 2 * n is returned for the register Q<n>. */
1832 if (regtype == REG_TYPE_NQ)
477330fc
RM
1833 {
1834 setmask = 3;
1835 addregs = 2;
1836 }
5287ad62 1837
c19d1205
ZW
1838 if (new_base < base_reg)
1839 base_reg = new_base;
a737bd4d 1840
5287ad62 1841 if (mask & (setmask << new_base))
c19d1205 1842 {
dcbf9037 1843 first_error (_("invalid register list"));
c19d1205 1844 return FAIL;
a737bd4d 1845 }
a737bd4d 1846
c19d1205
ZW
1847 if ((mask >> new_base) != 0 && ! warned)
1848 {
1849 as_tsktsk (_("register list not in ascending order"));
1850 warned = 1;
1851 }
0bbf2aa4 1852
5287ad62
JB
1853 mask |= setmask << new_base;
1854 count += addregs;
0bbf2aa4 1855
037e8744 1856 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1857 {
1858 int high_range;
0bbf2aa4 1859
037e8744 1860 str++;
0bbf2aa4 1861
037e8744 1862 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
477330fc 1863 == FAIL)
c19d1205
ZW
1864 {
1865 inst.error = gettext (reg_expected_msgs[regtype]);
1866 return FAIL;
1867 }
0bbf2aa4 1868
477330fc
RM
1869 if (high_range >= max_regs)
1870 {
1871 first_error (_("register out of range in list"));
1872 return FAIL;
1873 }
b7fc2769 1874
477330fc
RM
1875 if (regtype == REG_TYPE_NQ)
1876 high_range = high_range + 1;
5287ad62 1877
c19d1205
ZW
1878 if (high_range <= new_base)
1879 {
1880 inst.error = _("register range not in ascending order");
1881 return FAIL;
1882 }
0bbf2aa4 1883
5287ad62 1884 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1885 {
5287ad62 1886 if (mask & (setmask << new_base))
0bbf2aa4 1887 {
c19d1205
ZW
1888 inst.error = _("invalid register list");
1889 return FAIL;
0bbf2aa4 1890 }
c19d1205 1891
5287ad62
JB
1892 mask |= setmask << new_base;
1893 count += addregs;
0bbf2aa4 1894 }
0bbf2aa4 1895 }
0bbf2aa4 1896 }
037e8744 1897 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1898
037e8744 1899 str++;
0bbf2aa4 1900
c19d1205
ZW
1901 /* Sanity check -- should have raised a parse error above. */
1902 if (count == 0 || count > max_regs)
1903 abort ();
1904
1905 *pbase = base_reg;
1906
1907 /* Final test -- the registers must be consecutive. */
1908 mask >>= base_reg;
1909 for (i = 0; i < count; i++)
1910 {
1911 if ((mask & (1u << i)) == 0)
1912 {
1913 inst.error = _("non-contiguous register range");
1914 return FAIL;
1915 }
1916 }
1917
037e8744
JB
1918 *ccp = str;
1919
c19d1205 1920 return count;
b99bd4ef
NC
1921}
1922
dcbf9037
JB
1923/* True if two alias types are the same. */
1924
c921be7d 1925static bfd_boolean
dcbf9037
JB
1926neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1927{
1928 if (!a && !b)
c921be7d 1929 return TRUE;
5f4273c7 1930
dcbf9037 1931 if (!a || !b)
c921be7d 1932 return FALSE;
dcbf9037
JB
1933
1934 if (a->defined != b->defined)
c921be7d 1935 return FALSE;
5f4273c7 1936
dcbf9037
JB
1937 if ((a->defined & NTA_HASTYPE) != 0
1938 && (a->eltype.type != b->eltype.type
477330fc 1939 || a->eltype.size != b->eltype.size))
c921be7d 1940 return FALSE;
dcbf9037
JB
1941
1942 if ((a->defined & NTA_HASINDEX) != 0
1943 && (a->index != b->index))
c921be7d 1944 return FALSE;
5f4273c7 1945
c921be7d 1946 return TRUE;
dcbf9037
JB
1947}
1948
5287ad62
JB
1949/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1950 The base register is put in *PBASE.
dcbf9037 1951 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1952 the return value.
1953 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1954 Bits [6:5] encode the list length (minus one).
1955 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1956
5287ad62 1957#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1958#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1959#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1960
1961static int
dcbf9037 1962parse_neon_el_struct_list (char **str, unsigned *pbase,
477330fc 1963 struct neon_type_el *eltype)
5287ad62
JB
1964{
1965 char *ptr = *str;
1966 int base_reg = -1;
1967 int reg_incr = -1;
1968 int count = 0;
1969 int lane = -1;
1970 int leading_brace = 0;
1971 enum arm_reg_type rtype = REG_TYPE_NDQ;
20203fb9
NC
1972 const char *const incr_error = _("register stride must be 1 or 2");
1973 const char *const type_error = _("mismatched element/structure types in list");
dcbf9037 1974 struct neon_typed_alias firsttype;
5f4273c7 1975
5287ad62
JB
1976 if (skip_past_char (&ptr, '{') == SUCCESS)
1977 leading_brace = 1;
5f4273c7 1978
5287ad62
JB
1979 do
1980 {
dcbf9037
JB
1981 struct neon_typed_alias atype;
1982 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
1983
5287ad62 1984 if (getreg == FAIL)
477330fc
RM
1985 {
1986 first_error (_(reg_expected_msgs[rtype]));
1987 return FAIL;
1988 }
5f4273c7 1989
5287ad62 1990 if (base_reg == -1)
477330fc
RM
1991 {
1992 base_reg = getreg;
1993 if (rtype == REG_TYPE_NQ)
1994 {
1995 reg_incr = 1;
1996 }
1997 firsttype = atype;
1998 }
5287ad62 1999 else if (reg_incr == -1)
477330fc
RM
2000 {
2001 reg_incr = getreg - base_reg;
2002 if (reg_incr < 1 || reg_incr > 2)
2003 {
2004 first_error (_(incr_error));
2005 return FAIL;
2006 }
2007 }
5287ad62 2008 else if (getreg != base_reg + reg_incr * count)
477330fc
RM
2009 {
2010 first_error (_(incr_error));
2011 return FAIL;
2012 }
dcbf9037 2013
c921be7d 2014 if (! neon_alias_types_same (&atype, &firsttype))
477330fc
RM
2015 {
2016 first_error (_(type_error));
2017 return FAIL;
2018 }
5f4273c7 2019
5287ad62 2020 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
477330fc 2021 modes. */
5287ad62 2022 if (ptr[0] == '-')
477330fc
RM
2023 {
2024 struct neon_typed_alias htype;
2025 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
2026 if (lane == -1)
2027 lane = NEON_INTERLEAVE_LANES;
2028 else if (lane != NEON_INTERLEAVE_LANES)
2029 {
2030 first_error (_(type_error));
2031 return FAIL;
2032 }
2033 if (reg_incr == -1)
2034 reg_incr = 1;
2035 else if (reg_incr != 1)
2036 {
2037 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
2038 return FAIL;
2039 }
2040 ptr++;
2041 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
2042 if (hireg == FAIL)
2043 {
2044 first_error (_(reg_expected_msgs[rtype]));
2045 return FAIL;
2046 }
2047 if (! neon_alias_types_same (&htype, &firsttype))
2048 {
2049 first_error (_(type_error));
2050 return FAIL;
2051 }
2052 count += hireg + dregs - getreg;
2053 continue;
2054 }
5f4273c7 2055
5287ad62
JB
2056 /* If we're using Q registers, we can't use [] or [n] syntax. */
2057 if (rtype == REG_TYPE_NQ)
477330fc
RM
2058 {
2059 count += 2;
2060 continue;
2061 }
5f4273c7 2062
dcbf9037 2063 if ((atype.defined & NTA_HASINDEX) != 0)
477330fc
RM
2064 {
2065 if (lane == -1)
2066 lane = atype.index;
2067 else if (lane != atype.index)
2068 {
2069 first_error (_(type_error));
2070 return FAIL;
2071 }
2072 }
5287ad62 2073 else if (lane == -1)
477330fc 2074 lane = NEON_INTERLEAVE_LANES;
5287ad62 2075 else if (lane != NEON_INTERLEAVE_LANES)
477330fc
RM
2076 {
2077 first_error (_(type_error));
2078 return FAIL;
2079 }
5287ad62
JB
2080 count++;
2081 }
2082 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
5f4273c7 2083
5287ad62
JB
2084 /* No lane set by [x]. We must be interleaving structures. */
2085 if (lane == -1)
2086 lane = NEON_INTERLEAVE_LANES;
5f4273c7 2087
5287ad62
JB
2088 /* Sanity check. */
2089 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
2090 || (count > 1 && reg_incr == -1))
2091 {
dcbf9037 2092 first_error (_("error parsing element/structure list"));
5287ad62
JB
2093 return FAIL;
2094 }
2095
2096 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2097 {
dcbf9037 2098 first_error (_("expected }"));
5287ad62
JB
2099 return FAIL;
2100 }
5f4273c7 2101
5287ad62
JB
2102 if (reg_incr == -1)
2103 reg_incr = 1;
2104
dcbf9037
JB
2105 if (eltype)
2106 *eltype = firsttype.eltype;
2107
5287ad62
JB
2108 *pbase = base_reg;
2109 *str = ptr;
5f4273c7 2110
5287ad62
JB
2111 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2112}
2113
c19d1205
ZW
2114/* Parse an explicit relocation suffix on an expression. This is
2115 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2116 arm_reloc_hsh contains no entries, so this function can only
2117 succeed if there is no () after the word. Returns -1 on error,
2118 BFD_RELOC_UNUSED if there wasn't any suffix. */
3da1d841 2119
c19d1205
ZW
2120static int
2121parse_reloc (char **str)
b99bd4ef 2122{
c19d1205
ZW
2123 struct reloc_entry *r;
2124 char *p, *q;
b99bd4ef 2125
c19d1205
ZW
2126 if (**str != '(')
2127 return BFD_RELOC_UNUSED;
b99bd4ef 2128
c19d1205
ZW
2129 p = *str + 1;
2130 q = p;
2131
2132 while (*q && *q != ')' && *q != ',')
2133 q++;
2134 if (*q != ')')
2135 return -1;
2136
21d799b5
NC
2137 if ((r = (struct reloc_entry *)
2138 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
c19d1205
ZW
2139 return -1;
2140
2141 *str = q + 1;
2142 return r->reloc;
b99bd4ef
NC
2143}
2144
c19d1205
ZW
2145/* Directives: register aliases. */
2146
dcbf9037 2147static struct reg_entry *
90ec0d68 2148insert_reg_alias (char *str, unsigned number, int type)
b99bd4ef 2149{
d3ce72d0 2150 struct reg_entry *new_reg;
c19d1205 2151 const char *name;
b99bd4ef 2152
d3ce72d0 2153 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
c19d1205 2154 {
d3ce72d0 2155 if (new_reg->builtin)
c19d1205 2156 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 2157
c19d1205
ZW
2158 /* Only warn about a redefinition if it's not defined as the
2159 same register. */
d3ce72d0 2160 else if (new_reg->number != number || new_reg->type != type)
c19d1205 2161 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 2162
d929913e 2163 return NULL;
c19d1205 2164 }
b99bd4ef 2165
c19d1205 2166 name = xstrdup (str);
d3ce72d0 2167 new_reg = (struct reg_entry *) xmalloc (sizeof (struct reg_entry));
b99bd4ef 2168
d3ce72d0
NC
2169 new_reg->name = name;
2170 new_reg->number = number;
2171 new_reg->type = type;
2172 new_reg->builtin = FALSE;
2173 new_reg->neon = NULL;
b99bd4ef 2174
d3ce72d0 2175 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
c19d1205 2176 abort ();
5f4273c7 2177
d3ce72d0 2178 return new_reg;
dcbf9037
JB
2179}
2180
2181static void
2182insert_neon_reg_alias (char *str, int number, int type,
477330fc 2183 struct neon_typed_alias *atype)
dcbf9037
JB
2184{
2185 struct reg_entry *reg = insert_reg_alias (str, number, type);
5f4273c7 2186
dcbf9037
JB
2187 if (!reg)
2188 {
2189 first_error (_("attempt to redefine typed alias"));
2190 return;
2191 }
5f4273c7 2192
dcbf9037
JB
2193 if (atype)
2194 {
21d799b5 2195 reg->neon = (struct neon_typed_alias *)
477330fc 2196 xmalloc (sizeof (struct neon_typed_alias));
dcbf9037
JB
2197 *reg->neon = *atype;
2198 }
c19d1205 2199}
b99bd4ef 2200
c19d1205 2201/* Look for the .req directive. This is of the form:
b99bd4ef 2202
c19d1205 2203 new_register_name .req existing_register_name
b99bd4ef 2204
c19d1205 2205 If we find one, or if it looks sufficiently like one that we want to
d929913e 2206 handle any error here, return TRUE. Otherwise return FALSE. */
b99bd4ef 2207
d929913e 2208static bfd_boolean
c19d1205
ZW
2209create_register_alias (char * newname, char *p)
2210{
2211 struct reg_entry *old;
2212 char *oldname, *nbuf;
2213 size_t nlen;
b99bd4ef 2214
c19d1205
ZW
2215 /* The input scrubber ensures that whitespace after the mnemonic is
2216 collapsed to single spaces. */
2217 oldname = p;
2218 if (strncmp (oldname, " .req ", 6) != 0)
d929913e 2219 return FALSE;
b99bd4ef 2220
c19d1205
ZW
2221 oldname += 6;
2222 if (*oldname == '\0')
d929913e 2223 return FALSE;
b99bd4ef 2224
21d799b5 2225 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
c19d1205 2226 if (!old)
b99bd4ef 2227 {
c19d1205 2228 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
d929913e 2229 return TRUE;
b99bd4ef
NC
2230 }
2231
c19d1205
ZW
2232 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2233 the desired alias name, and p points to its end. If not, then
2234 the desired alias name is in the global original_case_string. */
2235#ifdef TC_CASE_SENSITIVE
2236 nlen = p - newname;
2237#else
2238 newname = original_case_string;
2239 nlen = strlen (newname);
2240#endif
b99bd4ef 2241
21d799b5 2242 nbuf = (char *) alloca (nlen + 1);
c19d1205
ZW
2243 memcpy (nbuf, newname, nlen);
2244 nbuf[nlen] = '\0';
b99bd4ef 2245
c19d1205
ZW
2246 /* Create aliases under the new name as stated; an all-lowercase
2247 version of the new name; and an all-uppercase version of the new
2248 name. */
d929913e
NC
2249 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2250 {
2251 for (p = nbuf; *p; p++)
2252 *p = TOUPPER (*p);
c19d1205 2253
d929913e
NC
2254 if (strncmp (nbuf, newname, nlen))
2255 {
2256 /* If this attempt to create an additional alias fails, do not bother
2257 trying to create the all-lower case alias. We will fail and issue
2258 a second, duplicate error message. This situation arises when the
2259 programmer does something like:
2260 foo .req r0
2261 Foo .req r1
2262 The second .req creates the "Foo" alias but then fails to create
5f4273c7 2263 the artificial FOO alias because it has already been created by the
d929913e
NC
2264 first .req. */
2265 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
2266 return TRUE;
2267 }
c19d1205 2268
d929913e
NC
2269 for (p = nbuf; *p; p++)
2270 *p = TOLOWER (*p);
c19d1205 2271
d929913e
NC
2272 if (strncmp (nbuf, newname, nlen))
2273 insert_reg_alias (nbuf, old->number, old->type);
2274 }
c19d1205 2275
d929913e 2276 return TRUE;
b99bd4ef
NC
2277}
2278
dcbf9037
JB
2279/* Create a Neon typed/indexed register alias using directives, e.g.:
2280 X .dn d5.s32[1]
2281 Y .qn 6.s16
2282 Z .dn d7
2283 T .dn Z[0]
2284 These typed registers can be used instead of the types specified after the
2285 Neon mnemonic, so long as all operands given have types. Types can also be
2286 specified directly, e.g.:
5f4273c7 2287 vadd d0.s32, d1.s32, d2.s32 */
dcbf9037 2288
c921be7d 2289static bfd_boolean
dcbf9037
JB
2290create_neon_reg_alias (char *newname, char *p)
2291{
2292 enum arm_reg_type basetype;
2293 struct reg_entry *basereg;
2294 struct reg_entry mybasereg;
2295 struct neon_type ntype;
2296 struct neon_typed_alias typeinfo;
12d6b0b7 2297 char *namebuf, *nameend ATTRIBUTE_UNUSED;
dcbf9037 2298 int namelen;
5f4273c7 2299
dcbf9037
JB
2300 typeinfo.defined = 0;
2301 typeinfo.eltype.type = NT_invtype;
2302 typeinfo.eltype.size = -1;
2303 typeinfo.index = -1;
5f4273c7 2304
dcbf9037 2305 nameend = p;
5f4273c7 2306
dcbf9037
JB
2307 if (strncmp (p, " .dn ", 5) == 0)
2308 basetype = REG_TYPE_VFD;
2309 else if (strncmp (p, " .qn ", 5) == 0)
2310 basetype = REG_TYPE_NQ;
2311 else
c921be7d 2312 return FALSE;
5f4273c7 2313
dcbf9037 2314 p += 5;
5f4273c7 2315
dcbf9037 2316 if (*p == '\0')
c921be7d 2317 return FALSE;
5f4273c7 2318
dcbf9037
JB
2319 basereg = arm_reg_parse_multi (&p);
2320
2321 if (basereg && basereg->type != basetype)
2322 {
2323 as_bad (_("bad type for register"));
c921be7d 2324 return FALSE;
dcbf9037
JB
2325 }
2326
2327 if (basereg == NULL)
2328 {
2329 expressionS exp;
2330 /* Try parsing as an integer. */
2331 my_get_expression (&exp, &p, GE_NO_PREFIX);
2332 if (exp.X_op != O_constant)
477330fc
RM
2333 {
2334 as_bad (_("expression must be constant"));
2335 return FALSE;
2336 }
dcbf9037
JB
2337 basereg = &mybasereg;
2338 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
477330fc 2339 : exp.X_add_number;
dcbf9037
JB
2340 basereg->neon = 0;
2341 }
2342
2343 if (basereg->neon)
2344 typeinfo = *basereg->neon;
2345
2346 if (parse_neon_type (&ntype, &p) == SUCCESS)
2347 {
2348 /* We got a type. */
2349 if (typeinfo.defined & NTA_HASTYPE)
477330fc
RM
2350 {
2351 as_bad (_("can't redefine the type of a register alias"));
2352 return FALSE;
2353 }
5f4273c7 2354
dcbf9037
JB
2355 typeinfo.defined |= NTA_HASTYPE;
2356 if (ntype.elems != 1)
477330fc
RM
2357 {
2358 as_bad (_("you must specify a single type only"));
2359 return FALSE;
2360 }
dcbf9037
JB
2361 typeinfo.eltype = ntype.el[0];
2362 }
5f4273c7 2363
dcbf9037
JB
2364 if (skip_past_char (&p, '[') == SUCCESS)
2365 {
2366 expressionS exp;
2367 /* We got a scalar index. */
5f4273c7 2368
dcbf9037 2369 if (typeinfo.defined & NTA_HASINDEX)
477330fc
RM
2370 {
2371 as_bad (_("can't redefine the index of a scalar alias"));
2372 return FALSE;
2373 }
5f4273c7 2374
dcbf9037 2375 my_get_expression (&exp, &p, GE_NO_PREFIX);
5f4273c7 2376
dcbf9037 2377 if (exp.X_op != O_constant)
477330fc
RM
2378 {
2379 as_bad (_("scalar index must be constant"));
2380 return FALSE;
2381 }
5f4273c7 2382
dcbf9037
JB
2383 typeinfo.defined |= NTA_HASINDEX;
2384 typeinfo.index = exp.X_add_number;
5f4273c7 2385
dcbf9037 2386 if (skip_past_char (&p, ']') == FAIL)
477330fc
RM
2387 {
2388 as_bad (_("expecting ]"));
2389 return FALSE;
2390 }
dcbf9037
JB
2391 }
2392
15735687
NS
2393 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2394 the desired alias name, and p points to its end. If not, then
2395 the desired alias name is in the global original_case_string. */
2396#ifdef TC_CASE_SENSITIVE
dcbf9037 2397 namelen = nameend - newname;
15735687
NS
2398#else
2399 newname = original_case_string;
2400 namelen = strlen (newname);
2401#endif
2402
21d799b5 2403 namebuf = (char *) alloca (namelen + 1);
dcbf9037
JB
2404 strncpy (namebuf, newname, namelen);
2405 namebuf[namelen] = '\0';
5f4273c7 2406
dcbf9037 2407 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2408 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2409
dcbf9037
JB
2410 /* Insert name in all uppercase. */
2411 for (p = namebuf; *p; p++)
2412 *p = TOUPPER (*p);
5f4273c7 2413
dcbf9037
JB
2414 if (strncmp (namebuf, newname, namelen))
2415 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2416 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2417
dcbf9037
JB
2418 /* Insert name in all lowercase. */
2419 for (p = namebuf; *p; p++)
2420 *p = TOLOWER (*p);
5f4273c7 2421
dcbf9037
JB
2422 if (strncmp (namebuf, newname, namelen))
2423 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2424 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2425
c921be7d 2426 return TRUE;
dcbf9037
JB
2427}
2428
c19d1205
ZW
2429/* Should never be called, as .req goes between the alias and the
2430 register name, not at the beginning of the line. */
c921be7d 2431
b99bd4ef 2432static void
c19d1205 2433s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2434{
c19d1205
ZW
2435 as_bad (_("invalid syntax for .req directive"));
2436}
b99bd4ef 2437
dcbf9037
JB
2438static void
2439s_dn (int a ATTRIBUTE_UNUSED)
2440{
2441 as_bad (_("invalid syntax for .dn directive"));
2442}
2443
2444static void
2445s_qn (int a ATTRIBUTE_UNUSED)
2446{
2447 as_bad (_("invalid syntax for .qn directive"));
2448}
2449
c19d1205
ZW
2450/* The .unreq directive deletes an alias which was previously defined
2451 by .req. For example:
b99bd4ef 2452
c19d1205
ZW
2453 my_alias .req r11
2454 .unreq my_alias */
b99bd4ef
NC
2455
2456static void
c19d1205 2457s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2458{
c19d1205
ZW
2459 char * name;
2460 char saved_char;
b99bd4ef 2461
c19d1205
ZW
2462 name = input_line_pointer;
2463
2464 while (*input_line_pointer != 0
2465 && *input_line_pointer != ' '
2466 && *input_line_pointer != '\n')
2467 ++input_line_pointer;
2468
2469 saved_char = *input_line_pointer;
2470 *input_line_pointer = 0;
2471
2472 if (!*name)
2473 as_bad (_("invalid syntax for .unreq directive"));
2474 else
2475 {
21d799b5 2476 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
477330fc 2477 name);
c19d1205
ZW
2478
2479 if (!reg)
2480 as_bad (_("unknown register alias '%s'"), name);
2481 else if (reg->builtin)
a1727c1a 2482 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
c19d1205
ZW
2483 name);
2484 else
2485 {
d929913e
NC
2486 char * p;
2487 char * nbuf;
2488
db0bc284 2489 hash_delete (arm_reg_hsh, name, FALSE);
c19d1205 2490 free ((char *) reg->name);
477330fc
RM
2491 if (reg->neon)
2492 free (reg->neon);
c19d1205 2493 free (reg);
d929913e
NC
2494
2495 /* Also locate the all upper case and all lower case versions.
2496 Do not complain if we cannot find one or the other as it
2497 was probably deleted above. */
5f4273c7 2498
d929913e
NC
2499 nbuf = strdup (name);
2500 for (p = nbuf; *p; p++)
2501 *p = TOUPPER (*p);
21d799b5 2502 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2503 if (reg)
2504 {
db0bc284 2505 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2506 free ((char *) reg->name);
2507 if (reg->neon)
2508 free (reg->neon);
2509 free (reg);
2510 }
2511
2512 for (p = nbuf; *p; p++)
2513 *p = TOLOWER (*p);
21d799b5 2514 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2515 if (reg)
2516 {
db0bc284 2517 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2518 free ((char *) reg->name);
2519 if (reg->neon)
2520 free (reg->neon);
2521 free (reg);
2522 }
2523
2524 free (nbuf);
c19d1205
ZW
2525 }
2526 }
b99bd4ef 2527
c19d1205 2528 *input_line_pointer = saved_char;
b99bd4ef
NC
2529 demand_empty_rest_of_line ();
2530}
2531
c19d1205
ZW
2532/* Directives: Instruction set selection. */
2533
2534#ifdef OBJ_ELF
2535/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2536 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2537 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2538 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2539
cd000bff
DJ
2540/* Create a new mapping symbol for the transition to STATE. */
2541
2542static void
2543make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
b99bd4ef 2544{
a737bd4d 2545 symbolS * symbolP;
c19d1205
ZW
2546 const char * symname;
2547 int type;
b99bd4ef 2548
c19d1205 2549 switch (state)
b99bd4ef 2550 {
c19d1205
ZW
2551 case MAP_DATA:
2552 symname = "$d";
2553 type = BSF_NO_FLAGS;
2554 break;
2555 case MAP_ARM:
2556 symname = "$a";
2557 type = BSF_NO_FLAGS;
2558 break;
2559 case MAP_THUMB:
2560 symname = "$t";
2561 type = BSF_NO_FLAGS;
2562 break;
c19d1205
ZW
2563 default:
2564 abort ();
2565 }
2566
cd000bff 2567 symbolP = symbol_new (symname, now_seg, value, frag);
c19d1205
ZW
2568 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2569
2570 switch (state)
2571 {
2572 case MAP_ARM:
2573 THUMB_SET_FUNC (symbolP, 0);
2574 ARM_SET_THUMB (symbolP, 0);
2575 ARM_SET_INTERWORK (symbolP, support_interwork);
2576 break;
2577
2578 case MAP_THUMB:
2579 THUMB_SET_FUNC (symbolP, 1);
2580 ARM_SET_THUMB (symbolP, 1);
2581 ARM_SET_INTERWORK (symbolP, support_interwork);
2582 break;
2583
2584 case MAP_DATA:
2585 default:
cd000bff
DJ
2586 break;
2587 }
2588
2589 /* Save the mapping symbols for future reference. Also check that
2590 we do not place two mapping symbols at the same offset within a
2591 frag. We'll handle overlap between frags in
2de7820f
JZ
2592 check_mapping_symbols.
2593
2594 If .fill or other data filling directive generates zero sized data,
2595 the mapping symbol for the following code will have the same value
2596 as the one generated for the data filling directive. In this case,
2597 we replace the old symbol with the new one at the same address. */
cd000bff
DJ
2598 if (value == 0)
2599 {
2de7820f
JZ
2600 if (frag->tc_frag_data.first_map != NULL)
2601 {
2602 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2603 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2604 }
cd000bff
DJ
2605 frag->tc_frag_data.first_map = symbolP;
2606 }
2607 if (frag->tc_frag_data.last_map != NULL)
0f020cef
JZ
2608 {
2609 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
0f020cef
JZ
2610 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2611 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2612 }
cd000bff
DJ
2613 frag->tc_frag_data.last_map = symbolP;
2614}
2615
2616/* We must sometimes convert a region marked as code to data during
2617 code alignment, if an odd number of bytes have to be padded. The
2618 code mapping symbol is pushed to an aligned address. */
2619
2620static void
2621insert_data_mapping_symbol (enum mstate state,
2622 valueT value, fragS *frag, offsetT bytes)
2623{
2624 /* If there was already a mapping symbol, remove it. */
2625 if (frag->tc_frag_data.last_map != NULL
2626 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2627 {
2628 symbolS *symp = frag->tc_frag_data.last_map;
2629
2630 if (value == 0)
2631 {
2632 know (frag->tc_frag_data.first_map == symp);
2633 frag->tc_frag_data.first_map = NULL;
2634 }
2635 frag->tc_frag_data.last_map = NULL;
2636 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
c19d1205 2637 }
cd000bff
DJ
2638
2639 make_mapping_symbol (MAP_DATA, value, frag);
2640 make_mapping_symbol (state, value + bytes, frag);
2641}
2642
2643static void mapping_state_2 (enum mstate state, int max_chars);
2644
2645/* Set the mapping state to STATE. Only call this when about to
2646 emit some STATE bytes to the file. */
2647
4e9aaefb 2648#define TRANSITION(from, to) (mapstate == (from) && state == (to))
cd000bff
DJ
2649void
2650mapping_state (enum mstate state)
2651{
940b5ce0
DJ
2652 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2653
cd000bff
DJ
2654 if (mapstate == state)
2655 /* The mapping symbol has already been emitted.
2656 There is nothing else to do. */
2657 return;
49c62a33
NC
2658
2659 if (state == MAP_ARM || state == MAP_THUMB)
2660 /* PR gas/12931
2661 All ARM instructions require 4-byte alignment.
2662 (Almost) all Thumb instructions require 2-byte alignment.
2663
2664 When emitting instructions into any section, mark the section
2665 appropriately.
2666
2667 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2668 but themselves require 2-byte alignment; this applies to some
2669 PC- relative forms. However, these cases will invovle implicit
2670 literal pool generation or an explicit .align >=2, both of
2671 which will cause the section to me marked with sufficient
2672 alignment. Thus, we don't handle those cases here. */
2673 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2674
2675 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
4e9aaefb 2676 /* This case will be evaluated later. */
cd000bff 2677 return;
cd000bff
DJ
2678
2679 mapping_state_2 (state, 0);
cd000bff
DJ
2680}
2681
2682/* Same as mapping_state, but MAX_CHARS bytes have already been
2683 allocated. Put the mapping symbol that far back. */
2684
2685static void
2686mapping_state_2 (enum mstate state, int max_chars)
2687{
940b5ce0
DJ
2688 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2689
2690 if (!SEG_NORMAL (now_seg))
2691 return;
2692
cd000bff
DJ
2693 if (mapstate == state)
2694 /* The mapping symbol has already been emitted.
2695 There is nothing else to do. */
2696 return;
2697
4e9aaefb
SA
2698 if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
2699 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
2700 {
2701 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
2702 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
2703
2704 if (add_symbol)
2705 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
2706 }
2707
cd000bff
DJ
2708 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2709 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
c19d1205 2710}
4e9aaefb 2711#undef TRANSITION
c19d1205 2712#else
d3106081
NS
2713#define mapping_state(x) ((void)0)
2714#define mapping_state_2(x, y) ((void)0)
c19d1205
ZW
2715#endif
2716
2717/* Find the real, Thumb encoded start of a Thumb function. */
2718
4343666d 2719#ifdef OBJ_COFF
c19d1205
ZW
2720static symbolS *
2721find_real_start (symbolS * symbolP)
2722{
2723 char * real_start;
2724 const char * name = S_GET_NAME (symbolP);
2725 symbolS * new_target;
2726
2727 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2728#define STUB_NAME ".real_start_of"
2729
2730 if (name == NULL)
2731 abort ();
2732
37f6032b
ZW
2733 /* The compiler may generate BL instructions to local labels because
2734 it needs to perform a branch to a far away location. These labels
2735 do not have a corresponding ".real_start_of" label. We check
2736 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2737 the ".real_start_of" convention for nonlocal branches. */
2738 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2739 return symbolP;
2740
37f6032b 2741 real_start = ACONCAT ((STUB_NAME, name, NULL));
c19d1205
ZW
2742 new_target = symbol_find (real_start);
2743
2744 if (new_target == NULL)
2745 {
bd3ba5d1 2746 as_warn (_("Failed to find real start of function: %s\n"), name);
c19d1205
ZW
2747 new_target = symbolP;
2748 }
2749
c19d1205
ZW
2750 return new_target;
2751}
4343666d 2752#endif
c19d1205
ZW
2753
2754static void
2755opcode_select (int width)
2756{
2757 switch (width)
2758 {
2759 case 16:
2760 if (! thumb_mode)
2761 {
e74cfd16 2762 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2763 as_bad (_("selected processor does not support THUMB opcodes"));
2764
2765 thumb_mode = 1;
2766 /* No need to force the alignment, since we will have been
2767 coming from ARM mode, which is word-aligned. */
2768 record_alignment (now_seg, 1);
2769 }
c19d1205
ZW
2770 break;
2771
2772 case 32:
2773 if (thumb_mode)
2774 {
e74cfd16 2775 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2776 as_bad (_("selected processor does not support ARM opcodes"));
2777
2778 thumb_mode = 0;
2779
2780 if (!need_pass_2)
2781 frag_align (2, 0, 0);
2782
2783 record_alignment (now_seg, 1);
2784 }
c19d1205
ZW
2785 break;
2786
2787 default:
2788 as_bad (_("invalid instruction size selected (%d)"), width);
2789 }
2790}
2791
2792static void
2793s_arm (int ignore ATTRIBUTE_UNUSED)
2794{
2795 opcode_select (32);
2796 demand_empty_rest_of_line ();
2797}
2798
2799static void
2800s_thumb (int ignore ATTRIBUTE_UNUSED)
2801{
2802 opcode_select (16);
2803 demand_empty_rest_of_line ();
2804}
2805
2806static void
2807s_code (int unused ATTRIBUTE_UNUSED)
2808{
2809 int temp;
2810
2811 temp = get_absolute_expression ();
2812 switch (temp)
2813 {
2814 case 16:
2815 case 32:
2816 opcode_select (temp);
2817 break;
2818
2819 default:
2820 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2821 }
2822}
2823
2824static void
2825s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2826{
2827 /* If we are not already in thumb mode go into it, EVEN if
2828 the target processor does not support thumb instructions.
2829 This is used by gcc/config/arm/lib1funcs.asm for example
2830 to compile interworking support functions even if the
2831 target processor should not support interworking. */
2832 if (! thumb_mode)
2833 {
2834 thumb_mode = 2;
2835 record_alignment (now_seg, 1);
2836 }
2837
2838 demand_empty_rest_of_line ();
2839}
2840
2841static void
2842s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2843{
2844 s_thumb (0);
2845
2846 /* The following label is the name/address of the start of a Thumb function.
2847 We need to know this for the interworking support. */
2848 label_is_thumb_function_name = TRUE;
2849}
2850
2851/* Perform a .set directive, but also mark the alias as
2852 being a thumb function. */
2853
2854static void
2855s_thumb_set (int equiv)
2856{
2857 /* XXX the following is a duplicate of the code for s_set() in read.c
2858 We cannot just call that code as we need to get at the symbol that
2859 is created. */
2860 char * name;
2861 char delim;
2862 char * end_name;
2863 symbolS * symbolP;
2864
2865 /* Especial apologies for the random logic:
2866 This just grew, and could be parsed much more simply!
2867 Dean - in haste. */
2868 name = input_line_pointer;
2869 delim = get_symbol_end ();
2870 end_name = input_line_pointer;
2871 *end_name = delim;
2872
2873 if (*input_line_pointer != ',')
2874 {
2875 *end_name = 0;
2876 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2877 *end_name = delim;
2878 ignore_rest_of_line ();
2879 return;
2880 }
2881
2882 input_line_pointer++;
2883 *end_name = 0;
2884
2885 if (name[0] == '.' && name[1] == '\0')
2886 {
2887 /* XXX - this should not happen to .thumb_set. */
2888 abort ();
2889 }
2890
2891 if ((symbolP = symbol_find (name)) == NULL
2892 && (symbolP = md_undefined_symbol (name)) == NULL)
2893 {
2894#ifndef NO_LISTING
2895 /* When doing symbol listings, play games with dummy fragments living
2896 outside the normal fragment chain to record the file and line info
c19d1205 2897 for this symbol. */
b99bd4ef
NC
2898 if (listing & LISTING_SYMBOLS)
2899 {
2900 extern struct list_info_struct * listing_tail;
21d799b5 2901 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
b99bd4ef
NC
2902
2903 memset (dummy_frag, 0, sizeof (fragS));
2904 dummy_frag->fr_type = rs_fill;
2905 dummy_frag->line = listing_tail;
2906 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2907 dummy_frag->fr_symbol = symbolP;
2908 }
2909 else
2910#endif
2911 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2912
2913#ifdef OBJ_COFF
2914 /* "set" symbols are local unless otherwise specified. */
2915 SF_SET_LOCAL (symbolP);
2916#endif /* OBJ_COFF */
2917 } /* Make a new symbol. */
2918
2919 symbol_table_insert (symbolP);
2920
2921 * end_name = delim;
2922
2923 if (equiv
2924 && S_IS_DEFINED (symbolP)
2925 && S_GET_SEGMENT (symbolP) != reg_section)
2926 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2927
2928 pseudo_set (symbolP);
2929
2930 demand_empty_rest_of_line ();
2931
c19d1205 2932 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2933
2934 THUMB_SET_FUNC (symbolP, 1);
2935 ARM_SET_THUMB (symbolP, 1);
2936#if defined OBJ_ELF || defined OBJ_COFF
2937 ARM_SET_INTERWORK (symbolP, support_interwork);
2938#endif
2939}
2940
c19d1205 2941/* Directives: Mode selection. */
b99bd4ef 2942
c19d1205
ZW
2943/* .syntax [unified|divided] - choose the new unified syntax
2944 (same for Arm and Thumb encoding, modulo slight differences in what
2945 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2946static void
c19d1205 2947s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2948{
c19d1205
ZW
2949 char *name, delim;
2950
2951 name = input_line_pointer;
2952 delim = get_symbol_end ();
2953
2954 if (!strcasecmp (name, "unified"))
2955 unified_syntax = TRUE;
2956 else if (!strcasecmp (name, "divided"))
2957 unified_syntax = FALSE;
2958 else
2959 {
2960 as_bad (_("unrecognized syntax mode \"%s\""), name);
2961 return;
2962 }
2963 *input_line_pointer = delim;
b99bd4ef
NC
2964 demand_empty_rest_of_line ();
2965}
2966
c19d1205
ZW
2967/* Directives: sectioning and alignment. */
2968
2969/* Same as s_align_ptwo but align 0 => align 2. */
2970
b99bd4ef 2971static void
c19d1205 2972s_align (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2973{
a737bd4d 2974 int temp;
dce323d1 2975 bfd_boolean fill_p;
c19d1205
ZW
2976 long temp_fill;
2977 long max_alignment = 15;
b99bd4ef
NC
2978
2979 temp = get_absolute_expression ();
c19d1205
ZW
2980 if (temp > max_alignment)
2981 as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
2982 else if (temp < 0)
b99bd4ef 2983 {
c19d1205
ZW
2984 as_bad (_("alignment negative. 0 assumed."));
2985 temp = 0;
2986 }
b99bd4ef 2987
c19d1205
ZW
2988 if (*input_line_pointer == ',')
2989 {
2990 input_line_pointer++;
2991 temp_fill = get_absolute_expression ();
dce323d1 2992 fill_p = TRUE;
b99bd4ef 2993 }
c19d1205 2994 else
dce323d1
PB
2995 {
2996 fill_p = FALSE;
2997 temp_fill = 0;
2998 }
b99bd4ef 2999
c19d1205
ZW
3000 if (!temp)
3001 temp = 2;
b99bd4ef 3002
c19d1205
ZW
3003 /* Only make a frag if we HAVE to. */
3004 if (temp && !need_pass_2)
dce323d1
PB
3005 {
3006 if (!fill_p && subseg_text_p (now_seg))
3007 frag_align_code (temp, 0);
3008 else
3009 frag_align (temp, (int) temp_fill, 0);
3010 }
c19d1205
ZW
3011 demand_empty_rest_of_line ();
3012
3013 record_alignment (now_seg, temp);
b99bd4ef
NC
3014}
3015
c19d1205
ZW
3016static void
3017s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 3018{
c19d1205
ZW
3019 /* We don't support putting frags in the BSS segment, we fake it by
3020 marking in_bss, then looking at s_skip for clues. */
3021 subseg_set (bss_section, 0);
3022 demand_empty_rest_of_line ();
cd000bff
DJ
3023
3024#ifdef md_elf_section_change_hook
3025 md_elf_section_change_hook ();
3026#endif
c19d1205 3027}
b99bd4ef 3028
c19d1205
ZW
3029static void
3030s_even (int ignore ATTRIBUTE_UNUSED)
3031{
3032 /* Never make frag if expect extra pass. */
3033 if (!need_pass_2)
3034 frag_align (1, 0, 0);
b99bd4ef 3035
c19d1205 3036 record_alignment (now_seg, 1);
b99bd4ef 3037
c19d1205 3038 demand_empty_rest_of_line ();
b99bd4ef
NC
3039}
3040
2e6976a8
DG
3041/* Directives: CodeComposer Studio. */
3042
3043/* .ref (for CodeComposer Studio syntax only). */
3044static void
3045s_ccs_ref (int unused ATTRIBUTE_UNUSED)
3046{
3047 if (codecomposer_syntax)
3048 ignore_rest_of_line ();
3049 else
3050 as_bad (_(".ref pseudo-op only available with -mccs flag."));
3051}
3052
3053/* If name is not NULL, then it is used for marking the beginning of a
3054 function, wherease if it is NULL then it means the function end. */
3055static void
3056asmfunc_debug (const char * name)
3057{
3058 static const char * last_name = NULL;
3059
3060 if (name != NULL)
3061 {
3062 gas_assert (last_name == NULL);
3063 last_name = name;
3064
3065 if (debug_type == DEBUG_STABS)
3066 stabs_generate_asm_func (name, name);
3067 }
3068 else
3069 {
3070 gas_assert (last_name != NULL);
3071
3072 if (debug_type == DEBUG_STABS)
3073 stabs_generate_asm_endfunc (last_name, last_name);
3074
3075 last_name = NULL;
3076 }
3077}
3078
3079static void
3080s_ccs_asmfunc (int unused ATTRIBUTE_UNUSED)
3081{
3082 if (codecomposer_syntax)
3083 {
3084 switch (asmfunc_state)
3085 {
3086 case OUTSIDE_ASMFUNC:
3087 asmfunc_state = WAITING_ASMFUNC_NAME;
3088 break;
3089
3090 case WAITING_ASMFUNC_NAME:
3091 as_bad (_(".asmfunc repeated."));
3092 break;
3093
3094 case WAITING_ENDASMFUNC:
3095 as_bad (_(".asmfunc without function."));
3096 break;
3097 }
3098 demand_empty_rest_of_line ();
3099 }
3100 else
3101 as_bad (_(".asmfunc pseudo-op only available with -mccs flag."));
3102}
3103
3104static void
3105s_ccs_endasmfunc (int unused ATTRIBUTE_UNUSED)
3106{
3107 if (codecomposer_syntax)
3108 {
3109 switch (asmfunc_state)
3110 {
3111 case OUTSIDE_ASMFUNC:
3112 as_bad (_(".endasmfunc without a .asmfunc."));
3113 break;
3114
3115 case WAITING_ASMFUNC_NAME:
3116 as_bad (_(".endasmfunc without function."));
3117 break;
3118
3119 case WAITING_ENDASMFUNC:
3120 asmfunc_state = OUTSIDE_ASMFUNC;
3121 asmfunc_debug (NULL);
3122 break;
3123 }
3124 demand_empty_rest_of_line ();
3125 }
3126 else
3127 as_bad (_(".endasmfunc pseudo-op only available with -mccs flag."));
3128}
3129
3130static void
3131s_ccs_def (int name)
3132{
3133 if (codecomposer_syntax)
3134 s_globl (name);
3135 else
3136 as_bad (_(".def pseudo-op only available with -mccs flag."));
3137}
3138
c19d1205 3139/* Directives: Literal pools. */
a737bd4d 3140
c19d1205
ZW
3141static literal_pool *
3142find_literal_pool (void)
a737bd4d 3143{
c19d1205 3144 literal_pool * pool;
a737bd4d 3145
c19d1205 3146 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 3147 {
c19d1205
ZW
3148 if (pool->section == now_seg
3149 && pool->sub_section == now_subseg)
3150 break;
a737bd4d
NC
3151 }
3152
c19d1205 3153 return pool;
a737bd4d
NC
3154}
3155
c19d1205
ZW
3156static literal_pool *
3157find_or_make_literal_pool (void)
a737bd4d 3158{
c19d1205
ZW
3159 /* Next literal pool ID number. */
3160 static unsigned int latest_pool_num = 1;
3161 literal_pool * pool;
a737bd4d 3162
c19d1205 3163 pool = find_literal_pool ();
a737bd4d 3164
c19d1205 3165 if (pool == NULL)
a737bd4d 3166 {
c19d1205 3167 /* Create a new pool. */
21d799b5 3168 pool = (literal_pool *) xmalloc (sizeof (* pool));
c19d1205
ZW
3169 if (! pool)
3170 return NULL;
a737bd4d 3171
c19d1205
ZW
3172 pool->next_free_entry = 0;
3173 pool->section = now_seg;
3174 pool->sub_section = now_subseg;
3175 pool->next = list_of_pools;
3176 pool->symbol = NULL;
8335d6aa 3177 pool->alignment = 2;
c19d1205
ZW
3178
3179 /* Add it to the list. */
3180 list_of_pools = pool;
a737bd4d 3181 }
a737bd4d 3182
c19d1205
ZW
3183 /* New pools, and emptied pools, will have a NULL symbol. */
3184 if (pool->symbol == NULL)
a737bd4d 3185 {
c19d1205
ZW
3186 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3187 (valueT) 0, &zero_address_frag);
3188 pool->id = latest_pool_num ++;
a737bd4d
NC
3189 }
3190
c19d1205
ZW
3191 /* Done. */
3192 return pool;
a737bd4d
NC
3193}
3194
c19d1205 3195/* Add the literal in the global 'inst'
5f4273c7 3196 structure to the relevant literal pool. */
b99bd4ef
NC
3197
3198static int
8335d6aa 3199add_to_lit_pool (unsigned int nbytes)
b99bd4ef 3200{
8335d6aa
JW
3201#define PADDING_SLOT 0x1
3202#define LIT_ENTRY_SIZE_MASK 0xFF
c19d1205 3203 literal_pool * pool;
8335d6aa
JW
3204 unsigned int entry, pool_size = 0;
3205 bfd_boolean padding_slot_p = FALSE;
e56c722b 3206 unsigned imm1 = 0;
8335d6aa
JW
3207 unsigned imm2 = 0;
3208
3209 if (nbytes == 8)
3210 {
3211 imm1 = inst.operands[1].imm;
3212 imm2 = (inst.operands[1].regisimm ? inst.operands[1].reg
3213 : inst.reloc.exp.X_unsigned ? 0
2569ceb0 3214 : ((bfd_int64_t) inst.operands[1].imm) >> 32);
8335d6aa
JW
3215 if (target_big_endian)
3216 {
3217 imm1 = imm2;
3218 imm2 = inst.operands[1].imm;
3219 }
3220 }
b99bd4ef 3221
c19d1205
ZW
3222 pool = find_or_make_literal_pool ();
3223
3224 /* Check if this literal value is already in the pool. */
3225 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 3226 {
8335d6aa
JW
3227 if (nbytes == 4)
3228 {
3229 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3230 && (inst.reloc.exp.X_op == O_constant)
3231 && (pool->literals[entry].X_add_number
3232 == inst.reloc.exp.X_add_number)
3233 && (pool->literals[entry].X_md == nbytes)
3234 && (pool->literals[entry].X_unsigned
3235 == inst.reloc.exp.X_unsigned))
3236 break;
3237
3238 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3239 && (inst.reloc.exp.X_op == O_symbol)
3240 && (pool->literals[entry].X_add_number
3241 == inst.reloc.exp.X_add_number)
3242 && (pool->literals[entry].X_add_symbol
3243 == inst.reloc.exp.X_add_symbol)
3244 && (pool->literals[entry].X_op_symbol
3245 == inst.reloc.exp.X_op_symbol)
3246 && (pool->literals[entry].X_md == nbytes))
3247 break;
3248 }
3249 else if ((nbytes == 8)
3250 && !(pool_size & 0x7)
3251 && ((entry + 1) != pool->next_free_entry)
3252 && (pool->literals[entry].X_op == O_constant)
19f2f6a9 3253 && (pool->literals[entry].X_add_number == (offsetT) imm1)
8335d6aa
JW
3254 && (pool->literals[entry].X_unsigned
3255 == inst.reloc.exp.X_unsigned)
3256 && (pool->literals[entry + 1].X_op == O_constant)
19f2f6a9 3257 && (pool->literals[entry + 1].X_add_number == (offsetT) imm2)
8335d6aa
JW
3258 && (pool->literals[entry + 1].X_unsigned
3259 == inst.reloc.exp.X_unsigned))
c19d1205
ZW
3260 break;
3261
8335d6aa
JW
3262 padding_slot_p = ((pool->literals[entry].X_md >> 8) == PADDING_SLOT);
3263 if (padding_slot_p && (nbytes == 4))
c19d1205 3264 break;
8335d6aa
JW
3265
3266 pool_size += 4;
b99bd4ef
NC
3267 }
3268
c19d1205
ZW
3269 /* Do we need to create a new entry? */
3270 if (entry == pool->next_free_entry)
3271 {
3272 if (entry >= MAX_LITERAL_POOL_SIZE)
3273 {
3274 inst.error = _("literal pool overflow");
3275 return FAIL;
3276 }
3277
8335d6aa
JW
3278 if (nbytes == 8)
3279 {
3280 /* For 8-byte entries, we align to an 8-byte boundary,
3281 and split it into two 4-byte entries, because on 32-bit
3282 host, 8-byte constants are treated as big num, thus
3283 saved in "generic_bignum" which will be overwritten
3284 by later assignments.
3285
3286 We also need to make sure there is enough space for
3287 the split.
3288
3289 We also check to make sure the literal operand is a
3290 constant number. */
19f2f6a9
JW
3291 if (!(inst.reloc.exp.X_op == O_constant
3292 || inst.reloc.exp.X_op == O_big))
8335d6aa
JW
3293 {
3294 inst.error = _("invalid type for literal pool");
3295 return FAIL;
3296 }
3297 else if (pool_size & 0x7)
3298 {
3299 if ((entry + 2) >= MAX_LITERAL_POOL_SIZE)
3300 {
3301 inst.error = _("literal pool overflow");
3302 return FAIL;
3303 }
3304
3305 pool->literals[entry] = inst.reloc.exp;
3306 pool->literals[entry].X_add_number = 0;
3307 pool->literals[entry++].X_md = (PADDING_SLOT << 8) | 4;
3308 pool->next_free_entry += 1;
3309 pool_size += 4;
3310 }
3311 else if ((entry + 1) >= MAX_LITERAL_POOL_SIZE)
3312 {
3313 inst.error = _("literal pool overflow");
3314 return FAIL;
3315 }
3316
3317 pool->literals[entry] = inst.reloc.exp;
3318 pool->literals[entry].X_op = O_constant;
3319 pool->literals[entry].X_add_number = imm1;
3320 pool->literals[entry].X_unsigned = inst.reloc.exp.X_unsigned;
3321 pool->literals[entry++].X_md = 4;
3322 pool->literals[entry] = inst.reloc.exp;
3323 pool->literals[entry].X_op = O_constant;
3324 pool->literals[entry].X_add_number = imm2;
3325 pool->literals[entry].X_unsigned = inst.reloc.exp.X_unsigned;
3326 pool->literals[entry].X_md = 4;
3327 pool->alignment = 3;
3328 pool->next_free_entry += 1;
3329 }
3330 else
3331 {
3332 pool->literals[entry] = inst.reloc.exp;
3333 pool->literals[entry].X_md = 4;
3334 }
3335
a8040cf2
NC
3336#ifdef OBJ_ELF
3337 /* PR ld/12974: Record the location of the first source line to reference
3338 this entry in the literal pool. If it turns out during linking that the
3339 symbol does not exist we will be able to give an accurate line number for
3340 the (first use of the) missing reference. */
3341 if (debug_type == DEBUG_DWARF2)
3342 dwarf2_where (pool->locs + entry);
3343#endif
c19d1205
ZW
3344 pool->next_free_entry += 1;
3345 }
8335d6aa
JW
3346 else if (padding_slot_p)
3347 {
3348 pool->literals[entry] = inst.reloc.exp;
3349 pool->literals[entry].X_md = nbytes;
3350 }
b99bd4ef 3351
c19d1205 3352 inst.reloc.exp.X_op = O_symbol;
8335d6aa 3353 inst.reloc.exp.X_add_number = pool_size;
c19d1205 3354 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 3355
c19d1205 3356 return SUCCESS;
b99bd4ef
NC
3357}
3358
2e6976a8
DG
3359bfd_boolean
3360tc_start_label_without_colon (char unused1 ATTRIBUTE_UNUSED, const char * rest)
3361{
3362 bfd_boolean ret = TRUE;
3363
3364 if (codecomposer_syntax && asmfunc_state == WAITING_ASMFUNC_NAME)
3365 {
3366 const char *label = rest;
3367
3368 while (!is_end_of_line[(int) label[-1]])
3369 --label;
3370
3371 if (*label == '.')
3372 {
3373 as_bad (_("Invalid label '%s'"), label);
3374 ret = FALSE;
3375 }
3376
3377 asmfunc_debug (label);
3378
3379 asmfunc_state = WAITING_ENDASMFUNC;
3380 }
3381
3382 return ret;
3383}
3384
c19d1205
ZW
3385/* Can't use symbol_new here, so have to create a symbol and then at
3386 a later date assign it a value. Thats what these functions do. */
e16bb312 3387
c19d1205
ZW
3388static void
3389symbol_locate (symbolS * symbolP,
3390 const char * name, /* It is copied, the caller can modify. */
3391 segT segment, /* Segment identifier (SEG_<something>). */
3392 valueT valu, /* Symbol value. */
3393 fragS * frag) /* Associated fragment. */
3394{
e57e6ddc 3395 size_t name_length;
c19d1205 3396 char * preserved_copy_of_name;
e16bb312 3397
c19d1205
ZW
3398 name_length = strlen (name) + 1; /* +1 for \0. */
3399 obstack_grow (&notes, name, name_length);
21d799b5 3400 preserved_copy_of_name = (char *) obstack_finish (&notes);
e16bb312 3401
c19d1205
ZW
3402#ifdef tc_canonicalize_symbol_name
3403 preserved_copy_of_name =
3404 tc_canonicalize_symbol_name (preserved_copy_of_name);
3405#endif
b99bd4ef 3406
c19d1205 3407 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 3408
c19d1205
ZW
3409 S_SET_SEGMENT (symbolP, segment);
3410 S_SET_VALUE (symbolP, valu);
3411 symbol_clear_list_pointers (symbolP);
b99bd4ef 3412
c19d1205 3413 symbol_set_frag (symbolP, frag);
b99bd4ef 3414
c19d1205
ZW
3415 /* Link to end of symbol chain. */
3416 {
3417 extern int symbol_table_frozen;
b99bd4ef 3418
c19d1205
ZW
3419 if (symbol_table_frozen)
3420 abort ();
3421 }
b99bd4ef 3422
c19d1205 3423 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 3424
c19d1205 3425 obj_symbol_new_hook (symbolP);
b99bd4ef 3426
c19d1205
ZW
3427#ifdef tc_symbol_new_hook
3428 tc_symbol_new_hook (symbolP);
3429#endif
3430
3431#ifdef DEBUG_SYMS
3432 verify_symbol_chain (symbol_rootP, symbol_lastP);
3433#endif /* DEBUG_SYMS */
b99bd4ef
NC
3434}
3435
c19d1205
ZW
3436static void
3437s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3438{
c19d1205
ZW
3439 unsigned int entry;
3440 literal_pool * pool;
3441 char sym_name[20];
b99bd4ef 3442
c19d1205
ZW
3443 pool = find_literal_pool ();
3444 if (pool == NULL
3445 || pool->symbol == NULL
3446 || pool->next_free_entry == 0)
3447 return;
b99bd4ef 3448
c19d1205
ZW
3449 /* Align pool as you have word accesses.
3450 Only make a frag if we have to. */
3451 if (!need_pass_2)
8335d6aa 3452 frag_align (pool->alignment, 0, 0);
b99bd4ef 3453
c19d1205 3454 record_alignment (now_seg, 2);
b99bd4ef 3455
aaca88ef 3456#ifdef OBJ_ELF
47fc6e36
WN
3457 seg_info (now_seg)->tc_segment_info_data.mapstate = MAP_DATA;
3458 make_mapping_symbol (MAP_DATA, (valueT) frag_now_fix (), frag_now);
aaca88ef 3459#endif
c19d1205 3460 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 3461
c19d1205
ZW
3462 symbol_locate (pool->symbol, sym_name, now_seg,
3463 (valueT) frag_now_fix (), frag_now);
3464 symbol_table_insert (pool->symbol);
b99bd4ef 3465
c19d1205 3466 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 3467
c19d1205
ZW
3468#if defined OBJ_COFF || defined OBJ_ELF
3469 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3470#endif
6c43fab6 3471
c19d1205 3472 for (entry = 0; entry < pool->next_free_entry; entry ++)
a8040cf2
NC
3473 {
3474#ifdef OBJ_ELF
3475 if (debug_type == DEBUG_DWARF2)
3476 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3477#endif
3478 /* First output the expression in the instruction to the pool. */
8335d6aa
JW
3479 emit_expr (&(pool->literals[entry]),
3480 pool->literals[entry].X_md & LIT_ENTRY_SIZE_MASK);
a8040cf2 3481 }
b99bd4ef 3482
c19d1205
ZW
3483 /* Mark the pool as empty. */
3484 pool->next_free_entry = 0;
3485 pool->symbol = NULL;
b99bd4ef
NC
3486}
3487
c19d1205
ZW
3488#ifdef OBJ_ELF
3489/* Forward declarations for functions below, in the MD interface
3490 section. */
3491static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3492static valueT create_unwind_entry (int);
3493static void start_unwind_section (const segT, int);
3494static void add_unwind_opcode (valueT, int);
3495static void flush_pending_unwind (void);
b99bd4ef 3496
c19d1205 3497/* Directives: Data. */
b99bd4ef 3498
c19d1205
ZW
3499static void
3500s_arm_elf_cons (int nbytes)
3501{
3502 expressionS exp;
b99bd4ef 3503
c19d1205
ZW
3504#ifdef md_flush_pending_output
3505 md_flush_pending_output ();
3506#endif
b99bd4ef 3507
c19d1205 3508 if (is_it_end_of_statement ())
b99bd4ef 3509 {
c19d1205
ZW
3510 demand_empty_rest_of_line ();
3511 return;
b99bd4ef
NC
3512 }
3513
c19d1205
ZW
3514#ifdef md_cons_align
3515 md_cons_align (nbytes);
3516#endif
b99bd4ef 3517
c19d1205
ZW
3518 mapping_state (MAP_DATA);
3519 do
b99bd4ef 3520 {
c19d1205
ZW
3521 int reloc;
3522 char *base = input_line_pointer;
b99bd4ef 3523
c19d1205 3524 expression (& exp);
b99bd4ef 3525
c19d1205
ZW
3526 if (exp.X_op != O_symbol)
3527 emit_expr (&exp, (unsigned int) nbytes);
3528 else
3529 {
3530 char *before_reloc = input_line_pointer;
3531 reloc = parse_reloc (&input_line_pointer);
3532 if (reloc == -1)
3533 {
3534 as_bad (_("unrecognized relocation suffix"));
3535 ignore_rest_of_line ();
3536 return;
3537 }
3538 else if (reloc == BFD_RELOC_UNUSED)
3539 emit_expr (&exp, (unsigned int) nbytes);
3540 else
3541 {
21d799b5 3542 reloc_howto_type *howto = (reloc_howto_type *)
477330fc
RM
3543 bfd_reloc_type_lookup (stdoutput,
3544 (bfd_reloc_code_real_type) reloc);
c19d1205 3545 int size = bfd_get_reloc_size (howto);
b99bd4ef 3546
2fc8bdac
ZW
3547 if (reloc == BFD_RELOC_ARM_PLT32)
3548 {
3549 as_bad (_("(plt) is only valid on branch targets"));
3550 reloc = BFD_RELOC_UNUSED;
3551 size = 0;
3552 }
3553
c19d1205 3554 if (size > nbytes)
2fc8bdac 3555 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
3556 howto->name, nbytes);
3557 else
3558 {
3559 /* We've parsed an expression stopping at O_symbol.
3560 But there may be more expression left now that we
3561 have parsed the relocation marker. Parse it again.
3562 XXX Surely there is a cleaner way to do this. */
3563 char *p = input_line_pointer;
3564 int offset;
21d799b5 3565 char *save_buf = (char *) alloca (input_line_pointer - base);
c19d1205
ZW
3566 memcpy (save_buf, base, input_line_pointer - base);
3567 memmove (base + (input_line_pointer - before_reloc),
3568 base, before_reloc - base);
3569
3570 input_line_pointer = base + (input_line_pointer-before_reloc);
3571 expression (&exp);
3572 memcpy (base, save_buf, p - base);
3573
3574 offset = nbytes - size;
4b1a927e
AM
3575 p = frag_more (nbytes);
3576 memset (p, 0, nbytes);
c19d1205 3577 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
21d799b5 3578 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
c19d1205
ZW
3579 }
3580 }
3581 }
b99bd4ef 3582 }
c19d1205 3583 while (*input_line_pointer++ == ',');
b99bd4ef 3584
c19d1205
ZW
3585 /* Put terminator back into stream. */
3586 input_line_pointer --;
3587 demand_empty_rest_of_line ();
b99bd4ef
NC
3588}
3589
c921be7d
NC
3590/* Emit an expression containing a 32-bit thumb instruction.
3591 Implementation based on put_thumb32_insn. */
3592
3593static void
3594emit_thumb32_expr (expressionS * exp)
3595{
3596 expressionS exp_high = *exp;
3597
3598 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3599 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3600 exp->X_add_number &= 0xffff;
3601 emit_expr (exp, (unsigned int) THUMB_SIZE);
3602}
3603
3604/* Guess the instruction size based on the opcode. */
3605
3606static int
3607thumb_insn_size (int opcode)
3608{
3609 if ((unsigned int) opcode < 0xe800u)
3610 return 2;
3611 else if ((unsigned int) opcode >= 0xe8000000u)
3612 return 4;
3613 else
3614 return 0;
3615}
3616
3617static bfd_boolean
3618emit_insn (expressionS *exp, int nbytes)
3619{
3620 int size = 0;
3621
3622 if (exp->X_op == O_constant)
3623 {
3624 size = nbytes;
3625
3626 if (size == 0)
3627 size = thumb_insn_size (exp->X_add_number);
3628
3629 if (size != 0)
3630 {
3631 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3632 {
3633 as_bad (_(".inst.n operand too big. "\
3634 "Use .inst.w instead"));
3635 size = 0;
3636 }
3637 else
3638 {
3639 if (now_it.state == AUTOMATIC_IT_BLOCK)
3640 set_it_insn_type_nonvoid (OUTSIDE_IT_INSN, 0);
3641 else
3642 set_it_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3643
3644 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3645 emit_thumb32_expr (exp);
3646 else
3647 emit_expr (exp, (unsigned int) size);
3648
3649 it_fsm_post_encode ();
3650 }
3651 }
3652 else
3653 as_bad (_("cannot determine Thumb instruction size. " \
3654 "Use .inst.n/.inst.w instead"));
3655 }
3656 else
3657 as_bad (_("constant expression required"));
3658
3659 return (size != 0);
3660}
3661
3662/* Like s_arm_elf_cons but do not use md_cons_align and
3663 set the mapping state to MAP_ARM/MAP_THUMB. */
3664
3665static void
3666s_arm_elf_inst (int nbytes)
3667{
3668 if (is_it_end_of_statement ())
3669 {
3670 demand_empty_rest_of_line ();
3671 return;
3672 }
3673
3674 /* Calling mapping_state () here will not change ARM/THUMB,
3675 but will ensure not to be in DATA state. */
3676
3677 if (thumb_mode)
3678 mapping_state (MAP_THUMB);
3679 else
3680 {
3681 if (nbytes != 0)
3682 {
3683 as_bad (_("width suffixes are invalid in ARM mode"));
3684 ignore_rest_of_line ();
3685 return;
3686 }
3687
3688 nbytes = 4;
3689
3690 mapping_state (MAP_ARM);
3691 }
3692
3693 do
3694 {
3695 expressionS exp;
3696
3697 expression (& exp);
3698
3699 if (! emit_insn (& exp, nbytes))
3700 {
3701 ignore_rest_of_line ();
3702 return;
3703 }
3704 }
3705 while (*input_line_pointer++ == ',');
3706
3707 /* Put terminator back into stream. */
3708 input_line_pointer --;
3709 demand_empty_rest_of_line ();
3710}
b99bd4ef 3711
c19d1205 3712/* Parse a .rel31 directive. */
b99bd4ef 3713
c19d1205
ZW
3714static void
3715s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3716{
3717 expressionS exp;
3718 char *p;
3719 valueT highbit;
b99bd4ef 3720
c19d1205
ZW
3721 highbit = 0;
3722 if (*input_line_pointer == '1')
3723 highbit = 0x80000000;
3724 else if (*input_line_pointer != '0')
3725 as_bad (_("expected 0 or 1"));
b99bd4ef 3726
c19d1205
ZW
3727 input_line_pointer++;
3728 if (*input_line_pointer != ',')
3729 as_bad (_("missing comma"));
3730 input_line_pointer++;
b99bd4ef 3731
c19d1205
ZW
3732#ifdef md_flush_pending_output
3733 md_flush_pending_output ();
3734#endif
b99bd4ef 3735
c19d1205
ZW
3736#ifdef md_cons_align
3737 md_cons_align (4);
3738#endif
b99bd4ef 3739
c19d1205 3740 mapping_state (MAP_DATA);
b99bd4ef 3741
c19d1205 3742 expression (&exp);
b99bd4ef 3743
c19d1205
ZW
3744 p = frag_more (4);
3745 md_number_to_chars (p, highbit, 4);
3746 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
3747 BFD_RELOC_ARM_PREL31);
b99bd4ef 3748
c19d1205 3749 demand_empty_rest_of_line ();
b99bd4ef
NC
3750}
3751
c19d1205 3752/* Directives: AEABI stack-unwind tables. */
b99bd4ef 3753
c19d1205 3754/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3755
c19d1205
ZW
3756static void
3757s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3758{
3759 demand_empty_rest_of_line ();
921e5f0a
PB
3760 if (unwind.proc_start)
3761 {
c921be7d 3762 as_bad (_("duplicate .fnstart directive"));
921e5f0a
PB
3763 return;
3764 }
3765
c19d1205
ZW
3766 /* Mark the start of the function. */
3767 unwind.proc_start = expr_build_dot ();
b99bd4ef 3768
c19d1205
ZW
3769 /* Reset the rest of the unwind info. */
3770 unwind.opcode_count = 0;
3771 unwind.table_entry = NULL;
3772 unwind.personality_routine = NULL;
3773 unwind.personality_index = -1;
3774 unwind.frame_size = 0;
3775 unwind.fp_offset = 0;
fdfde340 3776 unwind.fp_reg = REG_SP;
c19d1205
ZW
3777 unwind.fp_used = 0;
3778 unwind.sp_restored = 0;
3779}
b99bd4ef 3780
b99bd4ef 3781
c19d1205
ZW
3782/* Parse a handlerdata directive. Creates the exception handling table entry
3783 for the function. */
b99bd4ef 3784
c19d1205
ZW
3785static void
3786s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3787{
3788 demand_empty_rest_of_line ();
921e5f0a 3789 if (!unwind.proc_start)
c921be7d 3790 as_bad (MISSING_FNSTART);
921e5f0a 3791
c19d1205 3792 if (unwind.table_entry)
6decc662 3793 as_bad (_("duplicate .handlerdata directive"));
f02232aa 3794
c19d1205
ZW
3795 create_unwind_entry (1);
3796}
a737bd4d 3797
c19d1205 3798/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3799
c19d1205
ZW
3800static void
3801s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3802{
3803 long where;
3804 char *ptr;
3805 valueT val;
940b5ce0 3806 unsigned int marked_pr_dependency;
f02232aa 3807
c19d1205 3808 demand_empty_rest_of_line ();
f02232aa 3809
921e5f0a
PB
3810 if (!unwind.proc_start)
3811 {
c921be7d 3812 as_bad (_(".fnend directive without .fnstart"));
921e5f0a
PB
3813 return;
3814 }
3815
c19d1205
ZW
3816 /* Add eh table entry. */
3817 if (unwind.table_entry == NULL)
3818 val = create_unwind_entry (0);
3819 else
3820 val = 0;
f02232aa 3821
c19d1205
ZW
3822 /* Add index table entry. This is two words. */
3823 start_unwind_section (unwind.saved_seg, 1);
3824 frag_align (2, 0, 0);
3825 record_alignment (now_seg, 2);
b99bd4ef 3826
c19d1205 3827 ptr = frag_more (8);
5011093d 3828 memset (ptr, 0, 8);
c19d1205 3829 where = frag_now_fix () - 8;
f02232aa 3830
c19d1205
ZW
3831 /* Self relative offset of the function start. */
3832 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3833 BFD_RELOC_ARM_PREL31);
f02232aa 3834
c19d1205
ZW
3835 /* Indicate dependency on EHABI-defined personality routines to the
3836 linker, if it hasn't been done already. */
940b5ce0
DJ
3837 marked_pr_dependency
3838 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
c19d1205
ZW
3839 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3840 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3841 {
5f4273c7
NC
3842 static const char *const name[] =
3843 {
3844 "__aeabi_unwind_cpp_pr0",
3845 "__aeabi_unwind_cpp_pr1",
3846 "__aeabi_unwind_cpp_pr2"
3847 };
c19d1205
ZW
3848 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3849 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
c19d1205 3850 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
940b5ce0 3851 |= 1 << unwind.personality_index;
c19d1205 3852 }
f02232aa 3853
c19d1205
ZW
3854 if (val)
3855 /* Inline exception table entry. */
3856 md_number_to_chars (ptr + 4, val, 4);
3857 else
3858 /* Self relative offset of the table entry. */
3859 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3860 BFD_RELOC_ARM_PREL31);
f02232aa 3861
c19d1205
ZW
3862 /* Restore the original section. */
3863 subseg_set (unwind.saved_seg, unwind.saved_subseg);
921e5f0a
PB
3864
3865 unwind.proc_start = NULL;
c19d1205 3866}
f02232aa 3867
f02232aa 3868
c19d1205 3869/* Parse an unwind_cantunwind directive. */
b99bd4ef 3870
c19d1205
ZW
3871static void
3872s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3873{
3874 demand_empty_rest_of_line ();
921e5f0a 3875 if (!unwind.proc_start)
c921be7d 3876 as_bad (MISSING_FNSTART);
921e5f0a 3877
c19d1205
ZW
3878 if (unwind.personality_routine || unwind.personality_index != -1)
3879 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3880
c19d1205
ZW
3881 unwind.personality_index = -2;
3882}
b99bd4ef 3883
b99bd4ef 3884
c19d1205 3885/* Parse a personalityindex directive. */
b99bd4ef 3886
c19d1205
ZW
3887static void
3888s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3889{
3890 expressionS exp;
b99bd4ef 3891
921e5f0a 3892 if (!unwind.proc_start)
c921be7d 3893 as_bad (MISSING_FNSTART);
921e5f0a 3894
c19d1205
ZW
3895 if (unwind.personality_routine || unwind.personality_index != -1)
3896 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3897
c19d1205 3898 expression (&exp);
b99bd4ef 3899
c19d1205
ZW
3900 if (exp.X_op != O_constant
3901 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3902 {
c19d1205
ZW
3903 as_bad (_("bad personality routine number"));
3904 ignore_rest_of_line ();
3905 return;
b99bd4ef
NC
3906 }
3907
c19d1205 3908 unwind.personality_index = exp.X_add_number;
b99bd4ef 3909
c19d1205
ZW
3910 demand_empty_rest_of_line ();
3911}
e16bb312 3912
e16bb312 3913
c19d1205 3914/* Parse a personality directive. */
e16bb312 3915
c19d1205
ZW
3916static void
3917s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3918{
3919 char *name, *p, c;
a737bd4d 3920
921e5f0a 3921 if (!unwind.proc_start)
c921be7d 3922 as_bad (MISSING_FNSTART);
921e5f0a 3923
c19d1205
ZW
3924 if (unwind.personality_routine || unwind.personality_index != -1)
3925 as_bad (_("duplicate .personality directive"));
a737bd4d 3926
c19d1205
ZW
3927 name = input_line_pointer;
3928 c = get_symbol_end ();
3929 p = input_line_pointer;
3930 unwind.personality_routine = symbol_find_or_make (name);
3931 *p = c;
3932 demand_empty_rest_of_line ();
3933}
e16bb312 3934
e16bb312 3935
c19d1205 3936/* Parse a directive saving core registers. */
e16bb312 3937
c19d1205
ZW
3938static void
3939s_arm_unwind_save_core (void)
e16bb312 3940{
c19d1205
ZW
3941 valueT op;
3942 long range;
3943 int n;
e16bb312 3944
c19d1205
ZW
3945 range = parse_reg_list (&input_line_pointer);
3946 if (range == FAIL)
e16bb312 3947 {
c19d1205
ZW
3948 as_bad (_("expected register list"));
3949 ignore_rest_of_line ();
3950 return;
3951 }
e16bb312 3952
c19d1205 3953 demand_empty_rest_of_line ();
e16bb312 3954
c19d1205
ZW
3955 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3956 into .unwind_save {..., sp...}. We aren't bothered about the value of
3957 ip because it is clobbered by calls. */
3958 if (unwind.sp_restored && unwind.fp_reg == 12
3959 && (range & 0x3000) == 0x1000)
3960 {
3961 unwind.opcode_count--;
3962 unwind.sp_restored = 0;
3963 range = (range | 0x2000) & ~0x1000;
3964 unwind.pending_offset = 0;
3965 }
e16bb312 3966
01ae4198
DJ
3967 /* Pop r4-r15. */
3968 if (range & 0xfff0)
c19d1205 3969 {
01ae4198
DJ
3970 /* See if we can use the short opcodes. These pop a block of up to 8
3971 registers starting with r4, plus maybe r14. */
3972 for (n = 0; n < 8; n++)
3973 {
3974 /* Break at the first non-saved register. */
3975 if ((range & (1 << (n + 4))) == 0)
3976 break;
3977 }
3978 /* See if there are any other bits set. */
3979 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3980 {
3981 /* Use the long form. */
3982 op = 0x8000 | ((range >> 4) & 0xfff);
3983 add_unwind_opcode (op, 2);
3984 }
0dd132b6 3985 else
01ae4198
DJ
3986 {
3987 /* Use the short form. */
3988 if (range & 0x4000)
3989 op = 0xa8; /* Pop r14. */
3990 else
3991 op = 0xa0; /* Do not pop r14. */
3992 op |= (n - 1);
3993 add_unwind_opcode (op, 1);
3994 }
c19d1205 3995 }
0dd132b6 3996
c19d1205
ZW
3997 /* Pop r0-r3. */
3998 if (range & 0xf)
3999 {
4000 op = 0xb100 | (range & 0xf);
4001 add_unwind_opcode (op, 2);
0dd132b6
NC
4002 }
4003
c19d1205
ZW
4004 /* Record the number of bytes pushed. */
4005 for (n = 0; n < 16; n++)
4006 {
4007 if (range & (1 << n))
4008 unwind.frame_size += 4;
4009 }
0dd132b6
NC
4010}
4011
c19d1205
ZW
4012
4013/* Parse a directive saving FPA registers. */
b99bd4ef
NC
4014
4015static void
c19d1205 4016s_arm_unwind_save_fpa (int reg)
b99bd4ef 4017{
c19d1205
ZW
4018 expressionS exp;
4019 int num_regs;
4020 valueT op;
b99bd4ef 4021
c19d1205
ZW
4022 /* Get Number of registers to transfer. */
4023 if (skip_past_comma (&input_line_pointer) != FAIL)
4024 expression (&exp);
4025 else
4026 exp.X_op = O_illegal;
b99bd4ef 4027
c19d1205 4028 if (exp.X_op != O_constant)
b99bd4ef 4029 {
c19d1205
ZW
4030 as_bad (_("expected , <constant>"));
4031 ignore_rest_of_line ();
b99bd4ef
NC
4032 return;
4033 }
4034
c19d1205
ZW
4035 num_regs = exp.X_add_number;
4036
4037 if (num_regs < 1 || num_regs > 4)
b99bd4ef 4038 {
c19d1205
ZW
4039 as_bad (_("number of registers must be in the range [1:4]"));
4040 ignore_rest_of_line ();
b99bd4ef
NC
4041 return;
4042 }
4043
c19d1205 4044 demand_empty_rest_of_line ();
b99bd4ef 4045
c19d1205
ZW
4046 if (reg == 4)
4047 {
4048 /* Short form. */
4049 op = 0xb4 | (num_regs - 1);
4050 add_unwind_opcode (op, 1);
4051 }
b99bd4ef
NC
4052 else
4053 {
c19d1205
ZW
4054 /* Long form. */
4055 op = 0xc800 | (reg << 4) | (num_regs - 1);
4056 add_unwind_opcode (op, 2);
b99bd4ef 4057 }
c19d1205 4058 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
4059}
4060
c19d1205 4061
fa073d69
MS
4062/* Parse a directive saving VFP registers for ARMv6 and above. */
4063
4064static void
4065s_arm_unwind_save_vfp_armv6 (void)
4066{
4067 int count;
4068 unsigned int start;
4069 valueT op;
4070 int num_vfpv3_regs = 0;
4071 int num_regs_below_16;
4072
4073 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
4074 if (count == FAIL)
4075 {
4076 as_bad (_("expected register list"));
4077 ignore_rest_of_line ();
4078 return;
4079 }
4080
4081 demand_empty_rest_of_line ();
4082
4083 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
4084 than FSTMX/FLDMX-style ones). */
4085
4086 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
4087 if (start >= 16)
4088 num_vfpv3_regs = count;
4089 else if (start + count > 16)
4090 num_vfpv3_regs = start + count - 16;
4091
4092 if (num_vfpv3_regs > 0)
4093 {
4094 int start_offset = start > 16 ? start - 16 : 0;
4095 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
4096 add_unwind_opcode (op, 2);
4097 }
4098
4099 /* Generate opcode for registers numbered in the range 0 .. 15. */
4100 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
9c2799c2 4101 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
fa073d69
MS
4102 if (num_regs_below_16 > 0)
4103 {
4104 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
4105 add_unwind_opcode (op, 2);
4106 }
4107
4108 unwind.frame_size += count * 8;
4109}
4110
4111
4112/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
4113
4114static void
c19d1205 4115s_arm_unwind_save_vfp (void)
b99bd4ef 4116{
c19d1205 4117 int count;
ca3f61f7 4118 unsigned int reg;
c19d1205 4119 valueT op;
b99bd4ef 4120
5287ad62 4121 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 4122 if (count == FAIL)
b99bd4ef 4123 {
c19d1205
ZW
4124 as_bad (_("expected register list"));
4125 ignore_rest_of_line ();
b99bd4ef
NC
4126 return;
4127 }
4128
c19d1205 4129 demand_empty_rest_of_line ();
b99bd4ef 4130
c19d1205 4131 if (reg == 8)
b99bd4ef 4132 {
c19d1205
ZW
4133 /* Short form. */
4134 op = 0xb8 | (count - 1);
4135 add_unwind_opcode (op, 1);
b99bd4ef 4136 }
c19d1205 4137 else
b99bd4ef 4138 {
c19d1205
ZW
4139 /* Long form. */
4140 op = 0xb300 | (reg << 4) | (count - 1);
4141 add_unwind_opcode (op, 2);
b99bd4ef 4142 }
c19d1205
ZW
4143 unwind.frame_size += count * 8 + 4;
4144}
b99bd4ef 4145
b99bd4ef 4146
c19d1205
ZW
4147/* Parse a directive saving iWMMXt data registers. */
4148
4149static void
4150s_arm_unwind_save_mmxwr (void)
4151{
4152 int reg;
4153 int hi_reg;
4154 int i;
4155 unsigned mask = 0;
4156 valueT op;
b99bd4ef 4157
c19d1205
ZW
4158 if (*input_line_pointer == '{')
4159 input_line_pointer++;
b99bd4ef 4160
c19d1205 4161 do
b99bd4ef 4162 {
dcbf9037 4163 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 4164
c19d1205 4165 if (reg == FAIL)
b99bd4ef 4166 {
9b7132d3 4167 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205 4168 goto error;
b99bd4ef
NC
4169 }
4170
c19d1205
ZW
4171 if (mask >> reg)
4172 as_tsktsk (_("register list not in ascending order"));
4173 mask |= 1 << reg;
b99bd4ef 4174
c19d1205
ZW
4175 if (*input_line_pointer == '-')
4176 {
4177 input_line_pointer++;
dcbf9037 4178 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
4179 if (hi_reg == FAIL)
4180 {
9b7132d3 4181 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205
ZW
4182 goto error;
4183 }
4184 else if (reg >= hi_reg)
4185 {
4186 as_bad (_("bad register range"));
4187 goto error;
4188 }
4189 for (; reg < hi_reg; reg++)
4190 mask |= 1 << reg;
4191 }
4192 }
4193 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4194
d996d970 4195 skip_past_char (&input_line_pointer, '}');
b99bd4ef 4196
c19d1205 4197 demand_empty_rest_of_line ();
b99bd4ef 4198
708587a4 4199 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4200 the list. */
4201 flush_pending_unwind ();
b99bd4ef 4202
c19d1205 4203 for (i = 0; i < 16; i++)
b99bd4ef 4204 {
c19d1205
ZW
4205 if (mask & (1 << i))
4206 unwind.frame_size += 8;
b99bd4ef
NC
4207 }
4208
c19d1205
ZW
4209 /* Attempt to combine with a previous opcode. We do this because gcc
4210 likes to output separate unwind directives for a single block of
4211 registers. */
4212 if (unwind.opcode_count > 0)
b99bd4ef 4213 {
c19d1205
ZW
4214 i = unwind.opcodes[unwind.opcode_count - 1];
4215 if ((i & 0xf8) == 0xc0)
4216 {
4217 i &= 7;
4218 /* Only merge if the blocks are contiguous. */
4219 if (i < 6)
4220 {
4221 if ((mask & 0xfe00) == (1 << 9))
4222 {
4223 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
4224 unwind.opcode_count--;
4225 }
4226 }
4227 else if (i == 6 && unwind.opcode_count >= 2)
4228 {
4229 i = unwind.opcodes[unwind.opcode_count - 2];
4230 reg = i >> 4;
4231 i &= 0xf;
b99bd4ef 4232
c19d1205
ZW
4233 op = 0xffff << (reg - 1);
4234 if (reg > 0
87a1fd79 4235 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
4236 {
4237 op = (1 << (reg + i + 1)) - 1;
4238 op &= ~((1 << reg) - 1);
4239 mask |= op;
4240 unwind.opcode_count -= 2;
4241 }
4242 }
4243 }
b99bd4ef
NC
4244 }
4245
c19d1205
ZW
4246 hi_reg = 15;
4247 /* We want to generate opcodes in the order the registers have been
4248 saved, ie. descending order. */
4249 for (reg = 15; reg >= -1; reg--)
b99bd4ef 4250 {
c19d1205
ZW
4251 /* Save registers in blocks. */
4252 if (reg < 0
4253 || !(mask & (1 << reg)))
4254 {
4255 /* We found an unsaved reg. Generate opcodes to save the
5f4273c7 4256 preceding block. */
c19d1205
ZW
4257 if (reg != hi_reg)
4258 {
4259 if (reg == 9)
4260 {
4261 /* Short form. */
4262 op = 0xc0 | (hi_reg - 10);
4263 add_unwind_opcode (op, 1);
4264 }
4265 else
4266 {
4267 /* Long form. */
4268 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4269 add_unwind_opcode (op, 2);
4270 }
4271 }
4272 hi_reg = reg - 1;
4273 }
b99bd4ef
NC
4274 }
4275
c19d1205
ZW
4276 return;
4277error:
4278 ignore_rest_of_line ();
b99bd4ef
NC
4279}
4280
4281static void
c19d1205 4282s_arm_unwind_save_mmxwcg (void)
b99bd4ef 4283{
c19d1205
ZW
4284 int reg;
4285 int hi_reg;
4286 unsigned mask = 0;
4287 valueT op;
b99bd4ef 4288
c19d1205
ZW
4289 if (*input_line_pointer == '{')
4290 input_line_pointer++;
b99bd4ef 4291
477330fc
RM
4292 skip_whitespace (input_line_pointer);
4293
c19d1205 4294 do
b99bd4ef 4295 {
dcbf9037 4296 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 4297
c19d1205
ZW
4298 if (reg == FAIL)
4299 {
9b7132d3 4300 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4301 goto error;
4302 }
b99bd4ef 4303
c19d1205
ZW
4304 reg -= 8;
4305 if (mask >> reg)
4306 as_tsktsk (_("register list not in ascending order"));
4307 mask |= 1 << reg;
b99bd4ef 4308
c19d1205
ZW
4309 if (*input_line_pointer == '-')
4310 {
4311 input_line_pointer++;
dcbf9037 4312 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
4313 if (hi_reg == FAIL)
4314 {
9b7132d3 4315 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4316 goto error;
4317 }
4318 else if (reg >= hi_reg)
4319 {
4320 as_bad (_("bad register range"));
4321 goto error;
4322 }
4323 for (; reg < hi_reg; reg++)
4324 mask |= 1 << reg;
4325 }
b99bd4ef 4326 }
c19d1205 4327 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4328
d996d970 4329 skip_past_char (&input_line_pointer, '}');
b99bd4ef 4330
c19d1205
ZW
4331 demand_empty_rest_of_line ();
4332
708587a4 4333 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4334 the list. */
4335 flush_pending_unwind ();
b99bd4ef 4336
c19d1205 4337 for (reg = 0; reg < 16; reg++)
b99bd4ef 4338 {
c19d1205
ZW
4339 if (mask & (1 << reg))
4340 unwind.frame_size += 4;
b99bd4ef 4341 }
c19d1205
ZW
4342 op = 0xc700 | mask;
4343 add_unwind_opcode (op, 2);
4344 return;
4345error:
4346 ignore_rest_of_line ();
b99bd4ef
NC
4347}
4348
c19d1205 4349
fa073d69
MS
4350/* Parse an unwind_save directive.
4351 If the argument is non-zero, this is a .vsave directive. */
c19d1205 4352
b99bd4ef 4353static void
fa073d69 4354s_arm_unwind_save (int arch_v6)
b99bd4ef 4355{
c19d1205
ZW
4356 char *peek;
4357 struct reg_entry *reg;
4358 bfd_boolean had_brace = FALSE;
b99bd4ef 4359
921e5f0a 4360 if (!unwind.proc_start)
c921be7d 4361 as_bad (MISSING_FNSTART);
921e5f0a 4362
c19d1205
ZW
4363 /* Figure out what sort of save we have. */
4364 peek = input_line_pointer;
b99bd4ef 4365
c19d1205 4366 if (*peek == '{')
b99bd4ef 4367 {
c19d1205
ZW
4368 had_brace = TRUE;
4369 peek++;
b99bd4ef
NC
4370 }
4371
c19d1205 4372 reg = arm_reg_parse_multi (&peek);
b99bd4ef 4373
c19d1205 4374 if (!reg)
b99bd4ef 4375 {
c19d1205
ZW
4376 as_bad (_("register expected"));
4377 ignore_rest_of_line ();
b99bd4ef
NC
4378 return;
4379 }
4380
c19d1205 4381 switch (reg->type)
b99bd4ef 4382 {
c19d1205
ZW
4383 case REG_TYPE_FN:
4384 if (had_brace)
4385 {
4386 as_bad (_("FPA .unwind_save does not take a register list"));
4387 ignore_rest_of_line ();
4388 return;
4389 }
93ac2687 4390 input_line_pointer = peek;
c19d1205 4391 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 4392 return;
c19d1205 4393
1f5afe1c
NC
4394 case REG_TYPE_RN:
4395 s_arm_unwind_save_core ();
4396 return;
4397
fa073d69
MS
4398 case REG_TYPE_VFD:
4399 if (arch_v6)
477330fc 4400 s_arm_unwind_save_vfp_armv6 ();
fa073d69 4401 else
477330fc 4402 s_arm_unwind_save_vfp ();
fa073d69 4403 return;
1f5afe1c
NC
4404
4405 case REG_TYPE_MMXWR:
4406 s_arm_unwind_save_mmxwr ();
4407 return;
4408
4409 case REG_TYPE_MMXWCG:
4410 s_arm_unwind_save_mmxwcg ();
4411 return;
c19d1205
ZW
4412
4413 default:
4414 as_bad (_(".unwind_save does not support this kind of register"));
4415 ignore_rest_of_line ();
b99bd4ef 4416 }
c19d1205 4417}
b99bd4ef 4418
b99bd4ef 4419
c19d1205
ZW
4420/* Parse an unwind_movsp directive. */
4421
4422static void
4423s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4424{
4425 int reg;
4426 valueT op;
4fa3602b 4427 int offset;
c19d1205 4428
921e5f0a 4429 if (!unwind.proc_start)
c921be7d 4430 as_bad (MISSING_FNSTART);
921e5f0a 4431
dcbf9037 4432 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 4433 if (reg == FAIL)
b99bd4ef 4434 {
9b7132d3 4435 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
c19d1205 4436 ignore_rest_of_line ();
b99bd4ef
NC
4437 return;
4438 }
4fa3602b
PB
4439
4440 /* Optional constant. */
4441 if (skip_past_comma (&input_line_pointer) != FAIL)
4442 {
4443 if (immediate_for_directive (&offset) == FAIL)
4444 return;
4445 }
4446 else
4447 offset = 0;
4448
c19d1205 4449 demand_empty_rest_of_line ();
b99bd4ef 4450
c19d1205 4451 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 4452 {
c19d1205 4453 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
4454 return;
4455 }
4456
c19d1205
ZW
4457 if (unwind.fp_reg != REG_SP)
4458 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 4459
c19d1205
ZW
4460 /* Generate opcode to restore the value. */
4461 op = 0x90 | reg;
4462 add_unwind_opcode (op, 1);
4463
4464 /* Record the information for later. */
4465 unwind.fp_reg = reg;
4fa3602b 4466 unwind.fp_offset = unwind.frame_size - offset;
c19d1205 4467 unwind.sp_restored = 1;
b05fe5cf
ZW
4468}
4469
c19d1205
ZW
4470/* Parse an unwind_pad directive. */
4471
b05fe5cf 4472static void
c19d1205 4473s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 4474{
c19d1205 4475 int offset;
b05fe5cf 4476
921e5f0a 4477 if (!unwind.proc_start)
c921be7d 4478 as_bad (MISSING_FNSTART);
921e5f0a 4479
c19d1205
ZW
4480 if (immediate_for_directive (&offset) == FAIL)
4481 return;
b99bd4ef 4482
c19d1205
ZW
4483 if (offset & 3)
4484 {
4485 as_bad (_("stack increment must be multiple of 4"));
4486 ignore_rest_of_line ();
4487 return;
4488 }
b99bd4ef 4489
c19d1205
ZW
4490 /* Don't generate any opcodes, just record the details for later. */
4491 unwind.frame_size += offset;
4492 unwind.pending_offset += offset;
4493
4494 demand_empty_rest_of_line ();
4495}
4496
4497/* Parse an unwind_setfp directive. */
4498
4499static void
4500s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 4501{
c19d1205
ZW
4502 int sp_reg;
4503 int fp_reg;
4504 int offset;
4505
921e5f0a 4506 if (!unwind.proc_start)
c921be7d 4507 as_bad (MISSING_FNSTART);
921e5f0a 4508
dcbf9037 4509 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
4510 if (skip_past_comma (&input_line_pointer) == FAIL)
4511 sp_reg = FAIL;
4512 else
dcbf9037 4513 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 4514
c19d1205
ZW
4515 if (fp_reg == FAIL || sp_reg == FAIL)
4516 {
4517 as_bad (_("expected <reg>, <reg>"));
4518 ignore_rest_of_line ();
4519 return;
4520 }
b99bd4ef 4521
c19d1205
ZW
4522 /* Optional constant. */
4523 if (skip_past_comma (&input_line_pointer) != FAIL)
4524 {
4525 if (immediate_for_directive (&offset) == FAIL)
4526 return;
4527 }
4528 else
4529 offset = 0;
a737bd4d 4530
c19d1205 4531 demand_empty_rest_of_line ();
a737bd4d 4532
fdfde340 4533 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
a737bd4d 4534 {
c19d1205
ZW
4535 as_bad (_("register must be either sp or set by a previous"
4536 "unwind_movsp directive"));
4537 return;
a737bd4d
NC
4538 }
4539
c19d1205
ZW
4540 /* Don't generate any opcodes, just record the information for later. */
4541 unwind.fp_reg = fp_reg;
4542 unwind.fp_used = 1;
fdfde340 4543 if (sp_reg == REG_SP)
c19d1205
ZW
4544 unwind.fp_offset = unwind.frame_size - offset;
4545 else
4546 unwind.fp_offset -= offset;
a737bd4d
NC
4547}
4548
c19d1205
ZW
4549/* Parse an unwind_raw directive. */
4550
4551static void
4552s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 4553{
c19d1205 4554 expressionS exp;
708587a4 4555 /* This is an arbitrary limit. */
c19d1205
ZW
4556 unsigned char op[16];
4557 int count;
a737bd4d 4558
921e5f0a 4559 if (!unwind.proc_start)
c921be7d 4560 as_bad (MISSING_FNSTART);
921e5f0a 4561
c19d1205
ZW
4562 expression (&exp);
4563 if (exp.X_op == O_constant
4564 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 4565 {
c19d1205
ZW
4566 unwind.frame_size += exp.X_add_number;
4567 expression (&exp);
4568 }
4569 else
4570 exp.X_op = O_illegal;
a737bd4d 4571
c19d1205
ZW
4572 if (exp.X_op != O_constant)
4573 {
4574 as_bad (_("expected <offset>, <opcode>"));
4575 ignore_rest_of_line ();
4576 return;
4577 }
a737bd4d 4578
c19d1205 4579 count = 0;
a737bd4d 4580
c19d1205
ZW
4581 /* Parse the opcode. */
4582 for (;;)
4583 {
4584 if (count >= 16)
4585 {
4586 as_bad (_("unwind opcode too long"));
4587 ignore_rest_of_line ();
a737bd4d 4588 }
c19d1205 4589 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 4590 {
c19d1205
ZW
4591 as_bad (_("invalid unwind opcode"));
4592 ignore_rest_of_line ();
4593 return;
a737bd4d 4594 }
c19d1205 4595 op[count++] = exp.X_add_number;
a737bd4d 4596
c19d1205
ZW
4597 /* Parse the next byte. */
4598 if (skip_past_comma (&input_line_pointer) == FAIL)
4599 break;
a737bd4d 4600
c19d1205
ZW
4601 expression (&exp);
4602 }
b99bd4ef 4603
c19d1205
ZW
4604 /* Add the opcode bytes in reverse order. */
4605 while (count--)
4606 add_unwind_opcode (op[count], 1);
b99bd4ef 4607
c19d1205 4608 demand_empty_rest_of_line ();
b99bd4ef 4609}
ee065d83
PB
4610
4611
4612/* Parse a .eabi_attribute directive. */
4613
4614static void
4615s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4616{
0420f52b 4617 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
ee3c0378
AS
4618
4619 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4620 attributes_set_explicitly[tag] = 1;
ee065d83
PB
4621}
4622
0855e32b
NS
4623/* Emit a tls fix for the symbol. */
4624
4625static void
4626s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4627{
4628 char *p;
4629 expressionS exp;
4630#ifdef md_flush_pending_output
4631 md_flush_pending_output ();
4632#endif
4633
4634#ifdef md_cons_align
4635 md_cons_align (4);
4636#endif
4637
4638 /* Since we're just labelling the code, there's no need to define a
4639 mapping symbol. */
4640 expression (&exp);
4641 p = obstack_next_free (&frchain_now->frch_obstack);
4642 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4643 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4644 : BFD_RELOC_ARM_TLS_DESCSEQ);
4645}
cdf9ccec 4646#endif /* OBJ_ELF */
0855e32b 4647
ee065d83 4648static void s_arm_arch (int);
7a1d4c38 4649static void s_arm_object_arch (int);
ee065d83
PB
4650static void s_arm_cpu (int);
4651static void s_arm_fpu (int);
69133863 4652static void s_arm_arch_extension (int);
b99bd4ef 4653
f0927246
NC
4654#ifdef TE_PE
4655
4656static void
5f4273c7 4657pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
f0927246
NC
4658{
4659 expressionS exp;
4660
4661 do
4662 {
4663 expression (&exp);
4664 if (exp.X_op == O_symbol)
4665 exp.X_op = O_secrel;
4666
4667 emit_expr (&exp, 4);
4668 }
4669 while (*input_line_pointer++ == ',');
4670
4671 input_line_pointer--;
4672 demand_empty_rest_of_line ();
4673}
4674#endif /* TE_PE */
4675
c19d1205
ZW
4676/* This table describes all the machine specific pseudo-ops the assembler
4677 has to support. The fields are:
4678 pseudo-op name without dot
4679 function to call to execute this pseudo-op
4680 Integer arg to pass to the function. */
b99bd4ef 4681
c19d1205 4682const pseudo_typeS md_pseudo_table[] =
b99bd4ef 4683{
c19d1205
ZW
4684 /* Never called because '.req' does not start a line. */
4685 { "req", s_req, 0 },
dcbf9037
JB
4686 /* Following two are likewise never called. */
4687 { "dn", s_dn, 0 },
4688 { "qn", s_qn, 0 },
c19d1205
ZW
4689 { "unreq", s_unreq, 0 },
4690 { "bss", s_bss, 0 },
4691 { "align", s_align, 0 },
4692 { "arm", s_arm, 0 },
4693 { "thumb", s_thumb, 0 },
4694 { "code", s_code, 0 },
4695 { "force_thumb", s_force_thumb, 0 },
4696 { "thumb_func", s_thumb_func, 0 },
4697 { "thumb_set", s_thumb_set, 0 },
4698 { "even", s_even, 0 },
4699 { "ltorg", s_ltorg, 0 },
4700 { "pool", s_ltorg, 0 },
4701 { "syntax", s_syntax, 0 },
8463be01
PB
4702 { "cpu", s_arm_cpu, 0 },
4703 { "arch", s_arm_arch, 0 },
7a1d4c38 4704 { "object_arch", s_arm_object_arch, 0 },
8463be01 4705 { "fpu", s_arm_fpu, 0 },
69133863 4706 { "arch_extension", s_arm_arch_extension, 0 },
c19d1205 4707#ifdef OBJ_ELF
c921be7d
NC
4708 { "word", s_arm_elf_cons, 4 },
4709 { "long", s_arm_elf_cons, 4 },
4710 { "inst.n", s_arm_elf_inst, 2 },
4711 { "inst.w", s_arm_elf_inst, 4 },
4712 { "inst", s_arm_elf_inst, 0 },
4713 { "rel31", s_arm_rel31, 0 },
c19d1205
ZW
4714 { "fnstart", s_arm_unwind_fnstart, 0 },
4715 { "fnend", s_arm_unwind_fnend, 0 },
4716 { "cantunwind", s_arm_unwind_cantunwind, 0 },
4717 { "personality", s_arm_unwind_personality, 0 },
4718 { "personalityindex", s_arm_unwind_personalityindex, 0 },
4719 { "handlerdata", s_arm_unwind_handlerdata, 0 },
4720 { "save", s_arm_unwind_save, 0 },
fa073d69 4721 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
4722 { "movsp", s_arm_unwind_movsp, 0 },
4723 { "pad", s_arm_unwind_pad, 0 },
4724 { "setfp", s_arm_unwind_setfp, 0 },
4725 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 4726 { "eabi_attribute", s_arm_eabi_attribute, 0 },
0855e32b 4727 { "tlsdescseq", s_arm_tls_descseq, 0 },
c19d1205
ZW
4728#else
4729 { "word", cons, 4},
f0927246
NC
4730
4731 /* These are used for dwarf. */
4732 {"2byte", cons, 2},
4733 {"4byte", cons, 4},
4734 {"8byte", cons, 8},
4735 /* These are used for dwarf2. */
4736 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
4737 { "loc", dwarf2_directive_loc, 0 },
4738 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
4739#endif
4740 { "extend", float_cons, 'x' },
4741 { "ldouble", float_cons, 'x' },
4742 { "packed", float_cons, 'p' },
f0927246
NC
4743#ifdef TE_PE
4744 {"secrel32", pe_directive_secrel, 0},
4745#endif
2e6976a8
DG
4746
4747 /* These are for compatibility with CodeComposer Studio. */
4748 {"ref", s_ccs_ref, 0},
4749 {"def", s_ccs_def, 0},
4750 {"asmfunc", s_ccs_asmfunc, 0},
4751 {"endasmfunc", s_ccs_endasmfunc, 0},
4752
c19d1205
ZW
4753 { 0, 0, 0 }
4754};
4755\f
4756/* Parser functions used exclusively in instruction operands. */
b99bd4ef 4757
c19d1205
ZW
4758/* Generic immediate-value read function for use in insn parsing.
4759 STR points to the beginning of the immediate (the leading #);
4760 VAL receives the value; if the value is outside [MIN, MAX]
4761 issue an error. PREFIX_OPT is true if the immediate prefix is
4762 optional. */
b99bd4ef 4763
c19d1205
ZW
4764static int
4765parse_immediate (char **str, int *val, int min, int max,
4766 bfd_boolean prefix_opt)
4767{
4768 expressionS exp;
4769 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
4770 if (exp.X_op != O_constant)
b99bd4ef 4771 {
c19d1205
ZW
4772 inst.error = _("constant expression required");
4773 return FAIL;
4774 }
b99bd4ef 4775
c19d1205
ZW
4776 if (exp.X_add_number < min || exp.X_add_number > max)
4777 {
4778 inst.error = _("immediate value out of range");
4779 return FAIL;
4780 }
b99bd4ef 4781
c19d1205
ZW
4782 *val = exp.X_add_number;
4783 return SUCCESS;
4784}
b99bd4ef 4785
5287ad62 4786/* Less-generic immediate-value read function with the possibility of loading a
036dc3f7 4787 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5287ad62
JB
4788 instructions. Puts the result directly in inst.operands[i]. */
4789
4790static int
8335d6aa
JW
4791parse_big_immediate (char **str, int i, expressionS *in_exp,
4792 bfd_boolean allow_symbol_p)
5287ad62
JB
4793{
4794 expressionS exp;
8335d6aa 4795 expressionS *exp_p = in_exp ? in_exp : &exp;
5287ad62
JB
4796 char *ptr = *str;
4797
8335d6aa 4798 my_get_expression (exp_p, &ptr, GE_OPT_PREFIX_BIG);
5287ad62 4799
8335d6aa 4800 if (exp_p->X_op == O_constant)
036dc3f7 4801 {
8335d6aa 4802 inst.operands[i].imm = exp_p->X_add_number & 0xffffffff;
036dc3f7
PB
4803 /* If we're on a 64-bit host, then a 64-bit number can be returned using
4804 O_constant. We have to be careful not to break compilation for
4805 32-bit X_add_number, though. */
8335d6aa 4806 if ((exp_p->X_add_number & ~(offsetT)(0xffffffffU)) != 0)
036dc3f7 4807 {
8335d6aa
JW
4808 /* X >> 32 is illegal if sizeof (exp_p->X_add_number) == 4. */
4809 inst.operands[i].reg = (((exp_p->X_add_number >> 16) >> 16)
4810 & 0xffffffff);
036dc3f7
PB
4811 inst.operands[i].regisimm = 1;
4812 }
4813 }
8335d6aa
JW
4814 else if (exp_p->X_op == O_big
4815 && LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 32)
5287ad62
JB
4816 {
4817 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
95b75c01 4818
5287ad62 4819 /* Bignums have their least significant bits in
477330fc
RM
4820 generic_bignum[0]. Make sure we put 32 bits in imm and
4821 32 bits in reg, in a (hopefully) portable way. */
9c2799c2 4822 gas_assert (parts != 0);
95b75c01
NC
4823
4824 /* Make sure that the number is not too big.
4825 PR 11972: Bignums can now be sign-extended to the
4826 size of a .octa so check that the out of range bits
4827 are all zero or all one. */
8335d6aa 4828 if (LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 64)
95b75c01
NC
4829 {
4830 LITTLENUM_TYPE m = -1;
4831
4832 if (generic_bignum[parts * 2] != 0
4833 && generic_bignum[parts * 2] != m)
4834 return FAIL;
4835
8335d6aa 4836 for (j = parts * 2 + 1; j < (unsigned) exp_p->X_add_number; j++)
95b75c01
NC
4837 if (generic_bignum[j] != generic_bignum[j-1])
4838 return FAIL;
4839 }
4840
5287ad62
JB
4841 inst.operands[i].imm = 0;
4842 for (j = 0; j < parts; j++, idx++)
477330fc
RM
4843 inst.operands[i].imm |= generic_bignum[idx]
4844 << (LITTLENUM_NUMBER_OF_BITS * j);
5287ad62
JB
4845 inst.operands[i].reg = 0;
4846 for (j = 0; j < parts; j++, idx++)
477330fc
RM
4847 inst.operands[i].reg |= generic_bignum[idx]
4848 << (LITTLENUM_NUMBER_OF_BITS * j);
5287ad62
JB
4849 inst.operands[i].regisimm = 1;
4850 }
8335d6aa 4851 else if (!(exp_p->X_op == O_symbol && allow_symbol_p))
5287ad62 4852 return FAIL;
5f4273c7 4853
5287ad62
JB
4854 *str = ptr;
4855
4856 return SUCCESS;
4857}
4858
c19d1205
ZW
4859/* Returns the pseudo-register number of an FPA immediate constant,
4860 or FAIL if there isn't a valid constant here. */
b99bd4ef 4861
c19d1205
ZW
4862static int
4863parse_fpa_immediate (char ** str)
4864{
4865 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4866 char * save_in;
4867 expressionS exp;
4868 int i;
4869 int j;
b99bd4ef 4870
c19d1205
ZW
4871 /* First try and match exact strings, this is to guarantee
4872 that some formats will work even for cross assembly. */
b99bd4ef 4873
c19d1205
ZW
4874 for (i = 0; fp_const[i]; i++)
4875 {
4876 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4877 {
c19d1205 4878 char *start = *str;
b99bd4ef 4879
c19d1205
ZW
4880 *str += strlen (fp_const[i]);
4881 if (is_end_of_line[(unsigned char) **str])
4882 return i + 8;
4883 *str = start;
4884 }
4885 }
b99bd4ef 4886
c19d1205
ZW
4887 /* Just because we didn't get a match doesn't mean that the constant
4888 isn't valid, just that it is in a format that we don't
4889 automatically recognize. Try parsing it with the standard
4890 expression routines. */
b99bd4ef 4891
c19d1205 4892 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4893
c19d1205
ZW
4894 /* Look for a raw floating point number. */
4895 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4896 && is_end_of_line[(unsigned char) *save_in])
4897 {
4898 for (i = 0; i < NUM_FLOAT_VALS; i++)
4899 {
4900 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4901 {
c19d1205
ZW
4902 if (words[j] != fp_values[i][j])
4903 break;
b99bd4ef
NC
4904 }
4905
c19d1205 4906 if (j == MAX_LITTLENUMS)
b99bd4ef 4907 {
c19d1205
ZW
4908 *str = save_in;
4909 return i + 8;
b99bd4ef
NC
4910 }
4911 }
4912 }
b99bd4ef 4913
c19d1205
ZW
4914 /* Try and parse a more complex expression, this will probably fail
4915 unless the code uses a floating point prefix (eg "0f"). */
4916 save_in = input_line_pointer;
4917 input_line_pointer = *str;
4918 if (expression (&exp) == absolute_section
4919 && exp.X_op == O_big
4920 && exp.X_add_number < 0)
4921 {
4922 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4923 Ditto for 15. */
4924 if (gen_to_words (words, 5, (long) 15) == 0)
4925 {
4926 for (i = 0; i < NUM_FLOAT_VALS; i++)
4927 {
4928 for (j = 0; j < MAX_LITTLENUMS; j++)
4929 {
4930 if (words[j] != fp_values[i][j])
4931 break;
4932 }
b99bd4ef 4933
c19d1205
ZW
4934 if (j == MAX_LITTLENUMS)
4935 {
4936 *str = input_line_pointer;
4937 input_line_pointer = save_in;
4938 return i + 8;
4939 }
4940 }
4941 }
b99bd4ef
NC
4942 }
4943
c19d1205
ZW
4944 *str = input_line_pointer;
4945 input_line_pointer = save_in;
4946 inst.error = _("invalid FPA immediate expression");
4947 return FAIL;
b99bd4ef
NC
4948}
4949
136da414
JB
4950/* Returns 1 if a number has "quarter-precision" float format
4951 0baBbbbbbc defgh000 00000000 00000000. */
4952
4953static int
4954is_quarter_float (unsigned imm)
4955{
4956 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4957 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4958}
4959
aacf0b33
KT
4960
4961/* Detect the presence of a floating point or integer zero constant,
4962 i.e. #0.0 or #0. */
4963
4964static bfd_boolean
4965parse_ifimm_zero (char **in)
4966{
4967 int error_code;
4968
4969 if (!is_immediate_prefix (**in))
4970 return FALSE;
4971
4972 ++*in;
0900a05b
JW
4973
4974 /* Accept #0x0 as a synonym for #0. */
4975 if (strncmp (*in, "0x", 2) == 0)
4976 {
4977 int val;
4978 if (parse_immediate (in, &val, 0, 0, TRUE) == FAIL)
4979 return FALSE;
4980 return TRUE;
4981 }
4982
aacf0b33
KT
4983 error_code = atof_generic (in, ".", EXP_CHARS,
4984 &generic_floating_point_number);
4985
4986 if (!error_code
4987 && generic_floating_point_number.sign == '+'
4988 && (generic_floating_point_number.low
4989 > generic_floating_point_number.leader))
4990 return TRUE;
4991
4992 return FALSE;
4993}
4994
136da414
JB
4995/* Parse an 8-bit "quarter-precision" floating point number of the form:
4996 0baBbbbbbc defgh000 00000000 00000000.
c96612cc
JB
4997 The zero and minus-zero cases need special handling, since they can't be
4998 encoded in the "quarter-precision" float format, but can nonetheless be
4999 loaded as integer constants. */
136da414
JB
5000
5001static unsigned
5002parse_qfloat_immediate (char **ccp, int *immed)
5003{
5004 char *str = *ccp;
c96612cc 5005 char *fpnum;
136da414 5006 LITTLENUM_TYPE words[MAX_LITTLENUMS];
c96612cc 5007 int found_fpchar = 0;
5f4273c7 5008
136da414 5009 skip_past_char (&str, '#');
5f4273c7 5010
c96612cc
JB
5011 /* We must not accidentally parse an integer as a floating-point number. Make
5012 sure that the value we parse is not an integer by checking for special
5013 characters '.' or 'e'.
5014 FIXME: This is a horrible hack, but doing better is tricky because type
5015 information isn't in a very usable state at parse time. */
5016 fpnum = str;
5017 skip_whitespace (fpnum);
5018
5019 if (strncmp (fpnum, "0x", 2) == 0)
5020 return FAIL;
5021 else
5022 {
5023 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
477330fc
RM
5024 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
5025 {
5026 found_fpchar = 1;
5027 break;
5028 }
c96612cc
JB
5029
5030 if (!found_fpchar)
477330fc 5031 return FAIL;
c96612cc 5032 }
5f4273c7 5033
136da414
JB
5034 if ((str = atof_ieee (str, 's', words)) != NULL)
5035 {
5036 unsigned fpword = 0;
5037 int i;
5f4273c7 5038
136da414
JB
5039 /* Our FP word must be 32 bits (single-precision FP). */
5040 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
477330fc
RM
5041 {
5042 fpword <<= LITTLENUM_NUMBER_OF_BITS;
5043 fpword |= words[i];
5044 }
5f4273c7 5045
c96612cc 5046 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
477330fc 5047 *immed = fpword;
136da414 5048 else
477330fc 5049 return FAIL;
136da414
JB
5050
5051 *ccp = str;
5f4273c7 5052
136da414
JB
5053 return SUCCESS;
5054 }
5f4273c7 5055
136da414
JB
5056 return FAIL;
5057}
5058
c19d1205
ZW
5059/* Shift operands. */
5060enum shift_kind
b99bd4ef 5061{
c19d1205
ZW
5062 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
5063};
b99bd4ef 5064
c19d1205
ZW
5065struct asm_shift_name
5066{
5067 const char *name;
5068 enum shift_kind kind;
5069};
b99bd4ef 5070
c19d1205
ZW
5071/* Third argument to parse_shift. */
5072enum parse_shift_mode
5073{
5074 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
5075 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
5076 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
5077 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
5078 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
5079};
b99bd4ef 5080
c19d1205
ZW
5081/* Parse a <shift> specifier on an ARM data processing instruction.
5082 This has three forms:
b99bd4ef 5083
c19d1205
ZW
5084 (LSL|LSR|ASL|ASR|ROR) Rs
5085 (LSL|LSR|ASL|ASR|ROR) #imm
5086 RRX
b99bd4ef 5087
c19d1205
ZW
5088 Note that ASL is assimilated to LSL in the instruction encoding, and
5089 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 5090
c19d1205
ZW
5091static int
5092parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 5093{
c19d1205
ZW
5094 const struct asm_shift_name *shift_name;
5095 enum shift_kind shift;
5096 char *s = *str;
5097 char *p = s;
5098 int reg;
b99bd4ef 5099
c19d1205
ZW
5100 for (p = *str; ISALPHA (*p); p++)
5101 ;
b99bd4ef 5102
c19d1205 5103 if (p == *str)
b99bd4ef 5104 {
c19d1205
ZW
5105 inst.error = _("shift expression expected");
5106 return FAIL;
b99bd4ef
NC
5107 }
5108
21d799b5 5109 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
477330fc 5110 p - *str);
c19d1205
ZW
5111
5112 if (shift_name == NULL)
b99bd4ef 5113 {
c19d1205
ZW
5114 inst.error = _("shift expression expected");
5115 return FAIL;
b99bd4ef
NC
5116 }
5117
c19d1205 5118 shift = shift_name->kind;
b99bd4ef 5119
c19d1205
ZW
5120 switch (mode)
5121 {
5122 case NO_SHIFT_RESTRICT:
5123 case SHIFT_IMMEDIATE: break;
b99bd4ef 5124
c19d1205
ZW
5125 case SHIFT_LSL_OR_ASR_IMMEDIATE:
5126 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
5127 {
5128 inst.error = _("'LSL' or 'ASR' required");
5129 return FAIL;
5130 }
5131 break;
b99bd4ef 5132
c19d1205
ZW
5133 case SHIFT_LSL_IMMEDIATE:
5134 if (shift != SHIFT_LSL)
5135 {
5136 inst.error = _("'LSL' required");
5137 return FAIL;
5138 }
5139 break;
b99bd4ef 5140
c19d1205
ZW
5141 case SHIFT_ASR_IMMEDIATE:
5142 if (shift != SHIFT_ASR)
5143 {
5144 inst.error = _("'ASR' required");
5145 return FAIL;
5146 }
5147 break;
b99bd4ef 5148
c19d1205
ZW
5149 default: abort ();
5150 }
b99bd4ef 5151
c19d1205
ZW
5152 if (shift != SHIFT_RRX)
5153 {
5154 /* Whitespace can appear here if the next thing is a bare digit. */
5155 skip_whitespace (p);
b99bd4ef 5156
c19d1205 5157 if (mode == NO_SHIFT_RESTRICT
dcbf9037 5158 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
5159 {
5160 inst.operands[i].imm = reg;
5161 inst.operands[i].immisreg = 1;
5162 }
5163 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5164 return FAIL;
5165 }
5166 inst.operands[i].shift_kind = shift;
5167 inst.operands[i].shifted = 1;
5168 *str = p;
5169 return SUCCESS;
b99bd4ef
NC
5170}
5171
c19d1205 5172/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 5173
c19d1205
ZW
5174 #<immediate>
5175 #<immediate>, <rotate>
5176 <Rm>
5177 <Rm>, <shift>
b99bd4ef 5178
c19d1205
ZW
5179 where <shift> is defined by parse_shift above, and <rotate> is a
5180 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 5181 is deferred to md_apply_fix. */
b99bd4ef 5182
c19d1205
ZW
5183static int
5184parse_shifter_operand (char **str, int i)
5185{
5186 int value;
91d6fa6a 5187 expressionS exp;
b99bd4ef 5188
dcbf9037 5189 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
5190 {
5191 inst.operands[i].reg = value;
5192 inst.operands[i].isreg = 1;
b99bd4ef 5193
c19d1205
ZW
5194 /* parse_shift will override this if appropriate */
5195 inst.reloc.exp.X_op = O_constant;
5196 inst.reloc.exp.X_add_number = 0;
b99bd4ef 5197
c19d1205
ZW
5198 if (skip_past_comma (str) == FAIL)
5199 return SUCCESS;
b99bd4ef 5200
c19d1205
ZW
5201 /* Shift operation on register. */
5202 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
5203 }
5204
c19d1205
ZW
5205 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
5206 return FAIL;
b99bd4ef 5207
c19d1205 5208 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 5209 {
c19d1205 5210 /* #x, y -- ie explicit rotation by Y. */
91d6fa6a 5211 if (my_get_expression (&exp, str, GE_NO_PREFIX))
c19d1205 5212 return FAIL;
b99bd4ef 5213
91d6fa6a 5214 if (exp.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
c19d1205
ZW
5215 {
5216 inst.error = _("constant expression expected");
5217 return FAIL;
5218 }
b99bd4ef 5219
91d6fa6a 5220 value = exp.X_add_number;
c19d1205
ZW
5221 if (value < 0 || value > 30 || value % 2 != 0)
5222 {
5223 inst.error = _("invalid rotation");
5224 return FAIL;
5225 }
5226 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
5227 {
5228 inst.error = _("invalid constant");
5229 return FAIL;
5230 }
09d92015 5231
a415b1cd
JB
5232 /* Encode as specified. */
5233 inst.operands[i].imm = inst.reloc.exp.X_add_number | value << 7;
5234 return SUCCESS;
09d92015
MM
5235 }
5236
c19d1205
ZW
5237 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
5238 inst.reloc.pc_rel = 0;
5239 return SUCCESS;
09d92015
MM
5240}
5241
4962c51a
MS
5242/* Group relocation information. Each entry in the table contains the
5243 textual name of the relocation as may appear in assembler source
5244 and must end with a colon.
5245 Along with this textual name are the relocation codes to be used if
5246 the corresponding instruction is an ALU instruction (ADD or SUB only),
5247 an LDR, an LDRS, or an LDC. */
5248
5249struct group_reloc_table_entry
5250{
5251 const char *name;
5252 int alu_code;
5253 int ldr_code;
5254 int ldrs_code;
5255 int ldc_code;
5256};
5257
5258typedef enum
5259{
5260 /* Varieties of non-ALU group relocation. */
5261
5262 GROUP_LDR,
5263 GROUP_LDRS,
5264 GROUP_LDC
5265} group_reloc_type;
5266
5267static struct group_reloc_table_entry group_reloc_table[] =
5268 { /* Program counter relative: */
5269 { "pc_g0_nc",
5270 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
5271 0, /* LDR */
5272 0, /* LDRS */
5273 0 }, /* LDC */
5274 { "pc_g0",
5275 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
5276 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
5277 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
5278 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
5279 { "pc_g1_nc",
5280 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
5281 0, /* LDR */
5282 0, /* LDRS */
5283 0 }, /* LDC */
5284 { "pc_g1",
5285 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
5286 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
5287 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
5288 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
5289 { "pc_g2",
5290 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
5291 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
5292 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
5293 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
5294 /* Section base relative */
5295 { "sb_g0_nc",
5296 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
5297 0, /* LDR */
5298 0, /* LDRS */
5299 0 }, /* LDC */
5300 { "sb_g0",
5301 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
5302 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
5303 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
5304 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
5305 { "sb_g1_nc",
5306 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
5307 0, /* LDR */
5308 0, /* LDRS */
5309 0 }, /* LDC */
5310 { "sb_g1",
5311 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
5312 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
5313 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
5314 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
5315 { "sb_g2",
5316 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
5317 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5318 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
5319 BFD_RELOC_ARM_LDC_SB_G2 } }; /* LDC */
5320
5321/* Given the address of a pointer pointing to the textual name of a group
5322 relocation as may appear in assembler source, attempt to find its details
5323 in group_reloc_table. The pointer will be updated to the character after
5324 the trailing colon. On failure, FAIL will be returned; SUCCESS
5325 otherwise. On success, *entry will be updated to point at the relevant
5326 group_reloc_table entry. */
5327
5328static int
5329find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5330{
5331 unsigned int i;
5332 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5333 {
5334 int length = strlen (group_reloc_table[i].name);
5335
5f4273c7
NC
5336 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5337 && (*str)[length] == ':')
477330fc
RM
5338 {
5339 *out = &group_reloc_table[i];
5340 *str += (length + 1);
5341 return SUCCESS;
5342 }
4962c51a
MS
5343 }
5344
5345 return FAIL;
5346}
5347
5348/* Parse a <shifter_operand> for an ARM data processing instruction
5349 (as for parse_shifter_operand) where group relocations are allowed:
5350
5351 #<immediate>
5352 #<immediate>, <rotate>
5353 #:<group_reloc>:<expression>
5354 <Rm>
5355 <Rm>, <shift>
5356
5357 where <group_reloc> is one of the strings defined in group_reloc_table.
5358 The hashes are optional.
5359
5360 Everything else is as for parse_shifter_operand. */
5361
5362static parse_operand_result
5363parse_shifter_operand_group_reloc (char **str, int i)
5364{
5365 /* Determine if we have the sequence of characters #: or just :
5366 coming next. If we do, then we check for a group relocation.
5367 If we don't, punt the whole lot to parse_shifter_operand. */
5368
5369 if (((*str)[0] == '#' && (*str)[1] == ':')
5370 || (*str)[0] == ':')
5371 {
5372 struct group_reloc_table_entry *entry;
5373
5374 if ((*str)[0] == '#')
477330fc 5375 (*str) += 2;
4962c51a 5376 else
477330fc 5377 (*str)++;
4962c51a
MS
5378
5379 /* Try to parse a group relocation. Anything else is an error. */
5380 if (find_group_reloc_table_entry (str, &entry) == FAIL)
477330fc
RM
5381 {
5382 inst.error = _("unknown group relocation");
5383 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5384 }
4962c51a
MS
5385
5386 /* We now have the group relocation table entry corresponding to
477330fc 5387 the name in the assembler source. Next, we parse the expression. */
4962c51a 5388 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
477330fc 5389 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4962c51a
MS
5390
5391 /* Record the relocation type (always the ALU variant here). */
21d799b5 5392 inst.reloc.type = (bfd_reloc_code_real_type) entry->alu_code;
9c2799c2 5393 gas_assert (inst.reloc.type != 0);
4962c51a
MS
5394
5395 return PARSE_OPERAND_SUCCESS;
5396 }
5397 else
5398 return parse_shifter_operand (str, i) == SUCCESS
477330fc 5399 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
4962c51a
MS
5400
5401 /* Never reached. */
5402}
5403
8e560766
MGD
5404/* Parse a Neon alignment expression. Information is written to
5405 inst.operands[i]. We assume the initial ':' has been skipped.
fa94de6b 5406
8e560766
MGD
5407 align .imm = align << 8, .immisalign=1, .preind=0 */
5408static parse_operand_result
5409parse_neon_alignment (char **str, int i)
5410{
5411 char *p = *str;
5412 expressionS exp;
5413
5414 my_get_expression (&exp, &p, GE_NO_PREFIX);
5415
5416 if (exp.X_op != O_constant)
5417 {
5418 inst.error = _("alignment must be constant");
5419 return PARSE_OPERAND_FAIL;
5420 }
5421
5422 inst.operands[i].imm = exp.X_add_number << 8;
5423 inst.operands[i].immisalign = 1;
5424 /* Alignments are not pre-indexes. */
5425 inst.operands[i].preind = 0;
5426
5427 *str = p;
5428 return PARSE_OPERAND_SUCCESS;
5429}
5430
c19d1205
ZW
5431/* Parse all forms of an ARM address expression. Information is written
5432 to inst.operands[i] and/or inst.reloc.
09d92015 5433
c19d1205 5434 Preindexed addressing (.preind=1):
09d92015 5435
c19d1205
ZW
5436 [Rn, #offset] .reg=Rn .reloc.exp=offset
5437 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5438 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5439 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5440
c19d1205 5441 These three may have a trailing ! which causes .writeback to be set also.
09d92015 5442
c19d1205 5443 Postindexed addressing (.postind=1, .writeback=1):
09d92015 5444
c19d1205
ZW
5445 [Rn], #offset .reg=Rn .reloc.exp=offset
5446 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5447 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5448 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5449
c19d1205 5450 Unindexed addressing (.preind=0, .postind=0):
09d92015 5451
c19d1205 5452 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 5453
c19d1205 5454 Other:
09d92015 5455
c19d1205
ZW
5456 [Rn]{!} shorthand for [Rn,#0]{!}
5457 =immediate .isreg=0 .reloc.exp=immediate
5458 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 5459
c19d1205
ZW
5460 It is the caller's responsibility to check for addressing modes not
5461 supported by the instruction, and to set inst.reloc.type. */
5462
4962c51a
MS
5463static parse_operand_result
5464parse_address_main (char **str, int i, int group_relocations,
477330fc 5465 group_reloc_type group_type)
09d92015 5466{
c19d1205
ZW
5467 char *p = *str;
5468 int reg;
09d92015 5469
c19d1205 5470 if (skip_past_char (&p, '[') == FAIL)
09d92015 5471 {
c19d1205
ZW
5472 if (skip_past_char (&p, '=') == FAIL)
5473 {
974da60d 5474 /* Bare address - translate to PC-relative offset. */
c19d1205
ZW
5475 inst.reloc.pc_rel = 1;
5476 inst.operands[i].reg = REG_PC;
5477 inst.operands[i].isreg = 1;
5478 inst.operands[i].preind = 1;
09d92015 5479
8335d6aa
JW
5480 if (my_get_expression (&inst.reloc.exp, &p, GE_OPT_PREFIX_BIG))
5481 return PARSE_OPERAND_FAIL;
5482 }
5483 else if (parse_big_immediate (&p, i, &inst.reloc.exp,
5484 /*allow_symbol_p=*/TRUE))
4962c51a 5485 return PARSE_OPERAND_FAIL;
09d92015 5486
c19d1205 5487 *str = p;
4962c51a 5488 return PARSE_OPERAND_SUCCESS;
09d92015
MM
5489 }
5490
8ab8155f
NC
5491 /* PR gas/14887: Allow for whitespace after the opening bracket. */
5492 skip_whitespace (p);
5493
dcbf9037 5494 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 5495 {
c19d1205 5496 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 5497 return PARSE_OPERAND_FAIL;
09d92015 5498 }
c19d1205
ZW
5499 inst.operands[i].reg = reg;
5500 inst.operands[i].isreg = 1;
09d92015 5501
c19d1205 5502 if (skip_past_comma (&p) == SUCCESS)
09d92015 5503 {
c19d1205 5504 inst.operands[i].preind = 1;
09d92015 5505
c19d1205
ZW
5506 if (*p == '+') p++;
5507 else if (*p == '-') p++, inst.operands[i].negative = 1;
5508
dcbf9037 5509 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 5510 {
c19d1205
ZW
5511 inst.operands[i].imm = reg;
5512 inst.operands[i].immisreg = 1;
5513
5514 if (skip_past_comma (&p) == SUCCESS)
5515 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5516 return PARSE_OPERAND_FAIL;
c19d1205 5517 }
5287ad62 5518 else if (skip_past_char (&p, ':') == SUCCESS)
8e560766
MGD
5519 {
5520 /* FIXME: '@' should be used here, but it's filtered out by generic
5521 code before we get to see it here. This may be subject to
5522 change. */
5523 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5524
8e560766
MGD
5525 if (result != PARSE_OPERAND_SUCCESS)
5526 return result;
5527 }
c19d1205
ZW
5528 else
5529 {
5530 if (inst.operands[i].negative)
5531 {
5532 inst.operands[i].negative = 0;
5533 p--;
5534 }
4962c51a 5535
5f4273c7
NC
5536 if (group_relocations
5537 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4962c51a
MS
5538 {
5539 struct group_reloc_table_entry *entry;
5540
477330fc
RM
5541 /* Skip over the #: or : sequence. */
5542 if (*p == '#')
5543 p += 2;
5544 else
5545 p++;
4962c51a
MS
5546
5547 /* Try to parse a group relocation. Anything else is an
477330fc 5548 error. */
4962c51a
MS
5549 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5550 {
5551 inst.error = _("unknown group relocation");
5552 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5553 }
5554
5555 /* We now have the group relocation table entry corresponding to
5556 the name in the assembler source. Next, we parse the
477330fc 5557 expression. */
4962c51a
MS
5558 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5559 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5560
5561 /* Record the relocation type. */
477330fc
RM
5562 switch (group_type)
5563 {
5564 case GROUP_LDR:
5565 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldr_code;
5566 break;
4962c51a 5567
477330fc
RM
5568 case GROUP_LDRS:
5569 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldrs_code;
5570 break;
4962c51a 5571
477330fc
RM
5572 case GROUP_LDC:
5573 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldc_code;
5574 break;
4962c51a 5575
477330fc
RM
5576 default:
5577 gas_assert (0);
5578 }
4962c51a 5579
477330fc 5580 if (inst.reloc.type == 0)
4962c51a
MS
5581 {
5582 inst.error = _("this group relocation is not allowed on this instruction");
5583 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5584 }
477330fc
RM
5585 }
5586 else
26d97720
NS
5587 {
5588 char *q = p;
5589 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5590 return PARSE_OPERAND_FAIL;
5591 /* If the offset is 0, find out if it's a +0 or -0. */
5592 if (inst.reloc.exp.X_op == O_constant
5593 && inst.reloc.exp.X_add_number == 0)
5594 {
5595 skip_whitespace (q);
5596 if (*q == '#')
5597 {
5598 q++;
5599 skip_whitespace (q);
5600 }
5601 if (*q == '-')
5602 inst.operands[i].negative = 1;
5603 }
5604 }
09d92015
MM
5605 }
5606 }
8e560766
MGD
5607 else if (skip_past_char (&p, ':') == SUCCESS)
5608 {
5609 /* FIXME: '@' should be used here, but it's filtered out by generic code
5610 before we get to see it here. This may be subject to change. */
5611 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5612
8e560766
MGD
5613 if (result != PARSE_OPERAND_SUCCESS)
5614 return result;
5615 }
09d92015 5616
c19d1205 5617 if (skip_past_char (&p, ']') == FAIL)
09d92015 5618 {
c19d1205 5619 inst.error = _("']' expected");
4962c51a 5620 return PARSE_OPERAND_FAIL;
09d92015
MM
5621 }
5622
c19d1205
ZW
5623 if (skip_past_char (&p, '!') == SUCCESS)
5624 inst.operands[i].writeback = 1;
09d92015 5625
c19d1205 5626 else if (skip_past_comma (&p) == SUCCESS)
09d92015 5627 {
c19d1205
ZW
5628 if (skip_past_char (&p, '{') == SUCCESS)
5629 {
5630 /* [Rn], {expr} - unindexed, with option */
5631 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 5632 0, 255, TRUE) == FAIL)
4962c51a 5633 return PARSE_OPERAND_FAIL;
09d92015 5634
c19d1205
ZW
5635 if (skip_past_char (&p, '}') == FAIL)
5636 {
5637 inst.error = _("'}' expected at end of 'option' field");
4962c51a 5638 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5639 }
5640 if (inst.operands[i].preind)
5641 {
5642 inst.error = _("cannot combine index with option");
4962c51a 5643 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5644 }
5645 *str = p;
4962c51a 5646 return PARSE_OPERAND_SUCCESS;
09d92015 5647 }
c19d1205
ZW
5648 else
5649 {
5650 inst.operands[i].postind = 1;
5651 inst.operands[i].writeback = 1;
09d92015 5652
c19d1205
ZW
5653 if (inst.operands[i].preind)
5654 {
5655 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 5656 return PARSE_OPERAND_FAIL;
c19d1205 5657 }
09d92015 5658
c19d1205
ZW
5659 if (*p == '+') p++;
5660 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 5661
dcbf9037 5662 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 5663 {
477330fc
RM
5664 /* We might be using the immediate for alignment already. If we
5665 are, OR the register number into the low-order bits. */
5666 if (inst.operands[i].immisalign)
5667 inst.operands[i].imm |= reg;
5668 else
5669 inst.operands[i].imm = reg;
c19d1205 5670 inst.operands[i].immisreg = 1;
a737bd4d 5671
c19d1205
ZW
5672 if (skip_past_comma (&p) == SUCCESS)
5673 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5674 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5675 }
5676 else
5677 {
26d97720 5678 char *q = p;
c19d1205
ZW
5679 if (inst.operands[i].negative)
5680 {
5681 inst.operands[i].negative = 0;
5682 p--;
5683 }
5684 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 5685 return PARSE_OPERAND_FAIL;
26d97720
NS
5686 /* If the offset is 0, find out if it's a +0 or -0. */
5687 if (inst.reloc.exp.X_op == O_constant
5688 && inst.reloc.exp.X_add_number == 0)
5689 {
5690 skip_whitespace (q);
5691 if (*q == '#')
5692 {
5693 q++;
5694 skip_whitespace (q);
5695 }
5696 if (*q == '-')
5697 inst.operands[i].negative = 1;
5698 }
c19d1205
ZW
5699 }
5700 }
a737bd4d
NC
5701 }
5702
c19d1205
ZW
5703 /* If at this point neither .preind nor .postind is set, we have a
5704 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
5705 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
5706 {
5707 inst.operands[i].preind = 1;
5708 inst.reloc.exp.X_op = O_constant;
5709 inst.reloc.exp.X_add_number = 0;
5710 }
5711 *str = p;
4962c51a
MS
5712 return PARSE_OPERAND_SUCCESS;
5713}
5714
5715static int
5716parse_address (char **str, int i)
5717{
21d799b5 5718 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
477330fc 5719 ? SUCCESS : FAIL;
4962c51a
MS
5720}
5721
5722static parse_operand_result
5723parse_address_group_reloc (char **str, int i, group_reloc_type type)
5724{
5725 return parse_address_main (str, i, 1, type);
a737bd4d
NC
5726}
5727
b6895b4f
PB
5728/* Parse an operand for a MOVW or MOVT instruction. */
5729static int
5730parse_half (char **str)
5731{
5732 char * p;
5f4273c7 5733
b6895b4f
PB
5734 p = *str;
5735 skip_past_char (&p, '#');
5f4273c7 5736 if (strncasecmp (p, ":lower16:", 9) == 0)
b6895b4f
PB
5737 inst.reloc.type = BFD_RELOC_ARM_MOVW;
5738 else if (strncasecmp (p, ":upper16:", 9) == 0)
5739 inst.reloc.type = BFD_RELOC_ARM_MOVT;
5740
5741 if (inst.reloc.type != BFD_RELOC_UNUSED)
5742 {
5743 p += 9;
5f4273c7 5744 skip_whitespace (p);
b6895b4f
PB
5745 }
5746
5747 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5748 return FAIL;
5749
5750 if (inst.reloc.type == BFD_RELOC_UNUSED)
5751 {
5752 if (inst.reloc.exp.X_op != O_constant)
5753 {
5754 inst.error = _("constant expression expected");
5755 return FAIL;
5756 }
5757 if (inst.reloc.exp.X_add_number < 0
5758 || inst.reloc.exp.X_add_number > 0xffff)
5759 {
5760 inst.error = _("immediate value out of range");
5761 return FAIL;
5762 }
5763 }
5764 *str = p;
5765 return SUCCESS;
5766}
5767
c19d1205 5768/* Miscellaneous. */
a737bd4d 5769
c19d1205
ZW
5770/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
5771 or a bitmask suitable to be or-ed into the ARM msr instruction. */
5772static int
d2cd1205 5773parse_psr (char **str, bfd_boolean lhs)
09d92015 5774{
c19d1205
ZW
5775 char *p;
5776 unsigned long psr_field;
62b3e311
PB
5777 const struct asm_psr *psr;
5778 char *start;
d2cd1205 5779 bfd_boolean is_apsr = FALSE;
ac7f631b 5780 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
09d92015 5781
a4482bb6
NC
5782 /* PR gas/12698: If the user has specified -march=all then m_profile will
5783 be TRUE, but we want to ignore it in this case as we are building for any
5784 CPU type, including non-m variants. */
823d2571 5785 if (ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any))
a4482bb6
NC
5786 m_profile = FALSE;
5787
c19d1205
ZW
5788 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
5789 feature for ease of use and backwards compatibility. */
5790 p = *str;
62b3e311 5791 if (strncasecmp (p, "SPSR", 4) == 0)
d2cd1205
JB
5792 {
5793 if (m_profile)
5794 goto unsupported_psr;
fa94de6b 5795
d2cd1205
JB
5796 psr_field = SPSR_BIT;
5797 }
5798 else if (strncasecmp (p, "CPSR", 4) == 0)
5799 {
5800 if (m_profile)
5801 goto unsupported_psr;
5802
5803 psr_field = 0;
5804 }
5805 else if (strncasecmp (p, "APSR", 4) == 0)
5806 {
5807 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
5808 and ARMv7-R architecture CPUs. */
5809 is_apsr = TRUE;
5810 psr_field = 0;
5811 }
5812 else if (m_profile)
62b3e311
PB
5813 {
5814 start = p;
5815 do
5816 p++;
5817 while (ISALNUM (*p) || *p == '_');
5818
d2cd1205
JB
5819 if (strncasecmp (start, "iapsr", 5) == 0
5820 || strncasecmp (start, "eapsr", 5) == 0
5821 || strncasecmp (start, "xpsr", 4) == 0
5822 || strncasecmp (start, "psr", 3) == 0)
5823 p = start + strcspn (start, "rR") + 1;
5824
21d799b5 5825 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
477330fc 5826 p - start);
d2cd1205 5827
62b3e311
PB
5828 if (!psr)
5829 return FAIL;
09d92015 5830
d2cd1205
JB
5831 /* If APSR is being written, a bitfield may be specified. Note that
5832 APSR itself is handled above. */
5833 if (psr->field <= 3)
5834 {
5835 psr_field = psr->field;
5836 is_apsr = TRUE;
5837 goto check_suffix;
5838 }
5839
62b3e311 5840 *str = p;
d2cd1205
JB
5841 /* M-profile MSR instructions have the mask field set to "10", except
5842 *PSR variants which modify APSR, which may use a different mask (and
5843 have been handled already). Do that by setting the PSR_f field
5844 here. */
5845 return psr->field | (lhs ? PSR_f : 0);
62b3e311 5846 }
d2cd1205
JB
5847 else
5848 goto unsupported_psr;
09d92015 5849
62b3e311 5850 p += 4;
d2cd1205 5851check_suffix:
c19d1205
ZW
5852 if (*p == '_')
5853 {
5854 /* A suffix follows. */
c19d1205
ZW
5855 p++;
5856 start = p;
a737bd4d 5857
c19d1205
ZW
5858 do
5859 p++;
5860 while (ISALNUM (*p) || *p == '_');
a737bd4d 5861
d2cd1205
JB
5862 if (is_apsr)
5863 {
5864 /* APSR uses a notation for bits, rather than fields. */
5865 unsigned int nzcvq_bits = 0;
5866 unsigned int g_bit = 0;
5867 char *bit;
fa94de6b 5868
d2cd1205
JB
5869 for (bit = start; bit != p; bit++)
5870 {
5871 switch (TOLOWER (*bit))
477330fc 5872 {
d2cd1205
JB
5873 case 'n':
5874 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
5875 break;
5876
5877 case 'z':
5878 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
5879 break;
5880
5881 case 'c':
5882 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
5883 break;
5884
5885 case 'v':
5886 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
5887 break;
fa94de6b 5888
d2cd1205
JB
5889 case 'q':
5890 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
5891 break;
fa94de6b 5892
d2cd1205
JB
5893 case 'g':
5894 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
5895 break;
fa94de6b 5896
d2cd1205
JB
5897 default:
5898 inst.error = _("unexpected bit specified after APSR");
5899 return FAIL;
5900 }
5901 }
fa94de6b 5902
d2cd1205
JB
5903 if (nzcvq_bits == 0x1f)
5904 psr_field |= PSR_f;
fa94de6b 5905
d2cd1205
JB
5906 if (g_bit == 0x1)
5907 {
5908 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
477330fc 5909 {
d2cd1205
JB
5910 inst.error = _("selected processor does not "
5911 "support DSP extension");
5912 return FAIL;
5913 }
5914
5915 psr_field |= PSR_s;
5916 }
fa94de6b 5917
d2cd1205
JB
5918 if ((nzcvq_bits & 0x20) != 0
5919 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
5920 || (g_bit & 0x2) != 0)
5921 {
5922 inst.error = _("bad bitmask specified after APSR");
5923 return FAIL;
5924 }
5925 }
5926 else
477330fc 5927 {
d2cd1205 5928 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
477330fc 5929 p - start);
d2cd1205 5930 if (!psr)
477330fc 5931 goto error;
a737bd4d 5932
d2cd1205
JB
5933 psr_field |= psr->field;
5934 }
a737bd4d 5935 }
c19d1205 5936 else
a737bd4d 5937 {
c19d1205
ZW
5938 if (ISALNUM (*p))
5939 goto error; /* Garbage after "[CS]PSR". */
5940
d2cd1205 5941 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
477330fc 5942 is deprecated, but allow it anyway. */
d2cd1205
JB
5943 if (is_apsr && lhs)
5944 {
5945 psr_field |= PSR_f;
5946 as_tsktsk (_("writing to APSR without specifying a bitmask is "
5947 "deprecated"));
5948 }
5949 else if (!m_profile)
5950 /* These bits are never right for M-profile devices: don't set them
5951 (only code paths which read/write APSR reach here). */
5952 psr_field |= (PSR_c | PSR_f);
a737bd4d 5953 }
c19d1205
ZW
5954 *str = p;
5955 return psr_field;
a737bd4d 5956
d2cd1205
JB
5957 unsupported_psr:
5958 inst.error = _("selected processor does not support requested special "
5959 "purpose register");
5960 return FAIL;
5961
c19d1205
ZW
5962 error:
5963 inst.error = _("flag for {c}psr instruction expected");
5964 return FAIL;
a737bd4d
NC
5965}
5966
c19d1205
ZW
5967/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
5968 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 5969
c19d1205
ZW
5970static int
5971parse_cps_flags (char **str)
a737bd4d 5972{
c19d1205
ZW
5973 int val = 0;
5974 int saw_a_flag = 0;
5975 char *s = *str;
a737bd4d 5976
c19d1205
ZW
5977 for (;;)
5978 switch (*s++)
5979 {
5980 case '\0': case ',':
5981 goto done;
a737bd4d 5982
c19d1205
ZW
5983 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
5984 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
5985 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 5986
c19d1205
ZW
5987 default:
5988 inst.error = _("unrecognized CPS flag");
5989 return FAIL;
5990 }
a737bd4d 5991
c19d1205
ZW
5992 done:
5993 if (saw_a_flag == 0)
a737bd4d 5994 {
c19d1205
ZW
5995 inst.error = _("missing CPS flags");
5996 return FAIL;
a737bd4d 5997 }
a737bd4d 5998
c19d1205
ZW
5999 *str = s - 1;
6000 return val;
a737bd4d
NC
6001}
6002
c19d1205
ZW
6003/* Parse an endian specifier ("BE" or "LE", case insensitive);
6004 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
6005
6006static int
c19d1205 6007parse_endian_specifier (char **str)
a737bd4d 6008{
c19d1205
ZW
6009 int little_endian;
6010 char *s = *str;
a737bd4d 6011
c19d1205
ZW
6012 if (strncasecmp (s, "BE", 2))
6013 little_endian = 0;
6014 else if (strncasecmp (s, "LE", 2))
6015 little_endian = 1;
6016 else
a737bd4d 6017 {
c19d1205 6018 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
6019 return FAIL;
6020 }
6021
c19d1205 6022 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 6023 {
c19d1205 6024 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
6025 return FAIL;
6026 }
6027
c19d1205
ZW
6028 *str = s + 2;
6029 return little_endian;
6030}
a737bd4d 6031
c19d1205
ZW
6032/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
6033 value suitable for poking into the rotate field of an sxt or sxta
6034 instruction, or FAIL on error. */
6035
6036static int
6037parse_ror (char **str)
6038{
6039 int rot;
6040 char *s = *str;
6041
6042 if (strncasecmp (s, "ROR", 3) == 0)
6043 s += 3;
6044 else
a737bd4d 6045 {
c19d1205 6046 inst.error = _("missing rotation field after comma");
a737bd4d
NC
6047 return FAIL;
6048 }
c19d1205
ZW
6049
6050 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
6051 return FAIL;
6052
6053 switch (rot)
a737bd4d 6054 {
c19d1205
ZW
6055 case 0: *str = s; return 0x0;
6056 case 8: *str = s; return 0x1;
6057 case 16: *str = s; return 0x2;
6058 case 24: *str = s; return 0x3;
6059
6060 default:
6061 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
6062 return FAIL;
6063 }
c19d1205 6064}
a737bd4d 6065
c19d1205
ZW
6066/* Parse a conditional code (from conds[] below). The value returned is in the
6067 range 0 .. 14, or FAIL. */
6068static int
6069parse_cond (char **str)
6070{
c462b453 6071 char *q;
c19d1205 6072 const struct asm_cond *c;
c462b453
PB
6073 int n;
6074 /* Condition codes are always 2 characters, so matching up to
6075 3 characters is sufficient. */
6076 char cond[3];
a737bd4d 6077
c462b453
PB
6078 q = *str;
6079 n = 0;
6080 while (ISALPHA (*q) && n < 3)
6081 {
e07e6e58 6082 cond[n] = TOLOWER (*q);
c462b453
PB
6083 q++;
6084 n++;
6085 }
a737bd4d 6086
21d799b5 6087 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
c19d1205 6088 if (!c)
a737bd4d 6089 {
c19d1205 6090 inst.error = _("condition required");
a737bd4d
NC
6091 return FAIL;
6092 }
6093
c19d1205
ZW
6094 *str = q;
6095 return c->value;
6096}
6097
e797f7e0
MGD
6098/* If the given feature available in the selected CPU, mark it as used.
6099 Returns TRUE iff feature is available. */
6100static bfd_boolean
6101mark_feature_used (const arm_feature_set *feature)
6102{
6103 /* Ensure the option is valid on the current architecture. */
6104 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
6105 return FALSE;
6106
6107 /* Add the appropriate architecture feature for the barrier option used.
6108 */
6109 if (thumb_mode)
6110 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
6111 else
6112 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
6113
6114 return TRUE;
6115}
6116
62b3e311
PB
6117/* Parse an option for a barrier instruction. Returns the encoding for the
6118 option, or FAIL. */
6119static int
6120parse_barrier (char **str)
6121{
6122 char *p, *q;
6123 const struct asm_barrier_opt *o;
6124
6125 p = q = *str;
6126 while (ISALPHA (*q))
6127 q++;
6128
21d799b5 6129 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
477330fc 6130 q - p);
62b3e311
PB
6131 if (!o)
6132 return FAIL;
6133
e797f7e0
MGD
6134 if (!mark_feature_used (&o->arch))
6135 return FAIL;
6136
62b3e311
PB
6137 *str = q;
6138 return o->value;
6139}
6140
92e90b6e
PB
6141/* Parse the operands of a table branch instruction. Similar to a memory
6142 operand. */
6143static int
6144parse_tb (char **str)
6145{
6146 char * p = *str;
6147 int reg;
6148
6149 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
6150 {
6151 inst.error = _("'[' expected");
6152 return FAIL;
6153 }
92e90b6e 6154
dcbf9037 6155 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
6156 {
6157 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6158 return FAIL;
6159 }
6160 inst.operands[0].reg = reg;
6161
6162 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
6163 {
6164 inst.error = _("',' expected");
6165 return FAIL;
6166 }
5f4273c7 6167
dcbf9037 6168 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
6169 {
6170 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6171 return FAIL;
6172 }
6173 inst.operands[0].imm = reg;
6174
6175 if (skip_past_comma (&p) == SUCCESS)
6176 {
6177 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
6178 return FAIL;
6179 if (inst.reloc.exp.X_add_number != 1)
6180 {
6181 inst.error = _("invalid shift");
6182 return FAIL;
6183 }
6184 inst.operands[0].shifted = 1;
6185 }
6186
6187 if (skip_past_char (&p, ']') == FAIL)
6188 {
6189 inst.error = _("']' expected");
6190 return FAIL;
6191 }
6192 *str = p;
6193 return SUCCESS;
6194}
6195
5287ad62
JB
6196/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
6197 information on the types the operands can take and how they are encoded.
037e8744
JB
6198 Up to four operands may be read; this function handles setting the
6199 ".present" field for each read operand itself.
5287ad62
JB
6200 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
6201 else returns FAIL. */
6202
6203static int
6204parse_neon_mov (char **str, int *which_operand)
6205{
6206 int i = *which_operand, val;
6207 enum arm_reg_type rtype;
6208 char *ptr = *str;
dcbf9037 6209 struct neon_type_el optype;
5f4273c7 6210
dcbf9037 6211 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
6212 {
6213 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
6214 inst.operands[i].reg = val;
6215 inst.operands[i].isscalar = 1;
dcbf9037 6216 inst.operands[i].vectype = optype;
5287ad62
JB
6217 inst.operands[i++].present = 1;
6218
6219 if (skip_past_comma (&ptr) == FAIL)
477330fc 6220 goto wanted_comma;
5f4273c7 6221
dcbf9037 6222 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
477330fc 6223 goto wanted_arm;
5f4273c7 6224
5287ad62
JB
6225 inst.operands[i].reg = val;
6226 inst.operands[i].isreg = 1;
6227 inst.operands[i].present = 1;
6228 }
037e8744 6229 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
477330fc 6230 != FAIL)
5287ad62
JB
6231 {
6232 /* Cases 0, 1, 2, 3, 5 (D only). */
6233 if (skip_past_comma (&ptr) == FAIL)
477330fc 6234 goto wanted_comma;
5f4273c7 6235
5287ad62
JB
6236 inst.operands[i].reg = val;
6237 inst.operands[i].isreg = 1;
6238 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
6239 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6240 inst.operands[i].isvec = 1;
dcbf9037 6241 inst.operands[i].vectype = optype;
5287ad62
JB
6242 inst.operands[i++].present = 1;
6243
dcbf9037 6244 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
477330fc
RM
6245 {
6246 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
6247 Case 13: VMOV <Sd>, <Rm> */
6248 inst.operands[i].reg = val;
6249 inst.operands[i].isreg = 1;
6250 inst.operands[i].present = 1;
6251
6252 if (rtype == REG_TYPE_NQ)
6253 {
6254 first_error (_("can't use Neon quad register here"));
6255 return FAIL;
6256 }
6257 else if (rtype != REG_TYPE_VFS)
6258 {
6259 i++;
6260 if (skip_past_comma (&ptr) == FAIL)
6261 goto wanted_comma;
6262 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6263 goto wanted_arm;
6264 inst.operands[i].reg = val;
6265 inst.operands[i].isreg = 1;
6266 inst.operands[i].present = 1;
6267 }
6268 }
037e8744 6269 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
477330fc
RM
6270 &optype)) != FAIL)
6271 {
6272 /* Case 0: VMOV<c><q> <Qd>, <Qm>
6273 Case 1: VMOV<c><q> <Dd>, <Dm>
6274 Case 8: VMOV.F32 <Sd>, <Sm>
6275 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
6276
6277 inst.operands[i].reg = val;
6278 inst.operands[i].isreg = 1;
6279 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
6280 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6281 inst.operands[i].isvec = 1;
6282 inst.operands[i].vectype = optype;
6283 inst.operands[i].present = 1;
6284
6285 if (skip_past_comma (&ptr) == SUCCESS)
6286 {
6287 /* Case 15. */
6288 i++;
6289
6290 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6291 goto wanted_arm;
6292
6293 inst.operands[i].reg = val;
6294 inst.operands[i].isreg = 1;
6295 inst.operands[i++].present = 1;
6296
6297 if (skip_past_comma (&ptr) == FAIL)
6298 goto wanted_comma;
6299
6300 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6301 goto wanted_arm;
6302
6303 inst.operands[i].reg = val;
6304 inst.operands[i].isreg = 1;
6305 inst.operands[i].present = 1;
6306 }
6307 }
4641781c 6308 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
477330fc
RM
6309 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
6310 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
6311 Case 10: VMOV.F32 <Sd>, #<imm>
6312 Case 11: VMOV.F64 <Dd>, #<imm> */
6313 inst.operands[i].immisfloat = 1;
8335d6aa
JW
6314 else if (parse_big_immediate (&ptr, i, NULL, /*allow_symbol_p=*/FALSE)
6315 == SUCCESS)
477330fc
RM
6316 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
6317 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
6318 ;
5287ad62 6319 else
477330fc
RM
6320 {
6321 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
6322 return FAIL;
6323 }
5287ad62 6324 }
dcbf9037 6325 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6326 {
6327 /* Cases 6, 7. */
6328 inst.operands[i].reg = val;
6329 inst.operands[i].isreg = 1;
6330 inst.operands[i++].present = 1;
5f4273c7 6331
5287ad62 6332 if (skip_past_comma (&ptr) == FAIL)
477330fc 6333 goto wanted_comma;
5f4273c7 6334
dcbf9037 6335 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
477330fc
RM
6336 {
6337 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6338 inst.operands[i].reg = val;
6339 inst.operands[i].isscalar = 1;
6340 inst.operands[i].present = 1;
6341 inst.operands[i].vectype = optype;
6342 }
dcbf9037 6343 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
477330fc
RM
6344 {
6345 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6346 inst.operands[i].reg = val;
6347 inst.operands[i].isreg = 1;
6348 inst.operands[i++].present = 1;
6349
6350 if (skip_past_comma (&ptr) == FAIL)
6351 goto wanted_comma;
6352
6353 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
6354 == FAIL)
6355 {
6356 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
6357 return FAIL;
6358 }
6359
6360 inst.operands[i].reg = val;
6361 inst.operands[i].isreg = 1;
6362 inst.operands[i].isvec = 1;
6363 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6364 inst.operands[i].vectype = optype;
6365 inst.operands[i].present = 1;
6366
6367 if (rtype == REG_TYPE_VFS)
6368 {
6369 /* Case 14. */
6370 i++;
6371 if (skip_past_comma (&ptr) == FAIL)
6372 goto wanted_comma;
6373 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6374 &optype)) == FAIL)
6375 {
6376 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6377 return FAIL;
6378 }
6379 inst.operands[i].reg = val;
6380 inst.operands[i].isreg = 1;
6381 inst.operands[i].isvec = 1;
6382 inst.operands[i].issingle = 1;
6383 inst.operands[i].vectype = optype;
6384 inst.operands[i].present = 1;
6385 }
6386 }
037e8744 6387 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
477330fc
RM
6388 != FAIL)
6389 {
6390 /* Case 13. */
6391 inst.operands[i].reg = val;
6392 inst.operands[i].isreg = 1;
6393 inst.operands[i].isvec = 1;
6394 inst.operands[i].issingle = 1;
6395 inst.operands[i].vectype = optype;
6396 inst.operands[i].present = 1;
6397 }
5287ad62
JB
6398 }
6399 else
6400 {
dcbf9037 6401 first_error (_("parse error"));
5287ad62
JB
6402 return FAIL;
6403 }
6404
6405 /* Successfully parsed the operands. Update args. */
6406 *which_operand = i;
6407 *str = ptr;
6408 return SUCCESS;
6409
5f4273c7 6410 wanted_comma:
dcbf9037 6411 first_error (_("expected comma"));
5287ad62 6412 return FAIL;
5f4273c7
NC
6413
6414 wanted_arm:
dcbf9037 6415 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 6416 return FAIL;
5287ad62
JB
6417}
6418
5be8be5d
DG
6419/* Use this macro when the operand constraints are different
6420 for ARM and THUMB (e.g. ldrd). */
6421#define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6422 ((arm_operand) | ((thumb_operand) << 16))
6423
c19d1205
ZW
6424/* Matcher codes for parse_operands. */
6425enum operand_parse_code
6426{
6427 OP_stop, /* end of line */
6428
6429 OP_RR, /* ARM register */
6430 OP_RRnpc, /* ARM register, not r15 */
5be8be5d 6431 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
c19d1205 6432 OP_RRnpcb, /* ARM register, not r15, in square brackets */
fa94de6b 6433 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
55881a11 6434 optional trailing ! */
c19d1205
ZW
6435 OP_RRw, /* ARM register, not r15, optional trailing ! */
6436 OP_RCP, /* Coprocessor number */
6437 OP_RCN, /* Coprocessor register */
6438 OP_RF, /* FPA register */
6439 OP_RVS, /* VFP single precision register */
5287ad62
JB
6440 OP_RVD, /* VFP double precision register (0..15) */
6441 OP_RND, /* Neon double precision register (0..31) */
6442 OP_RNQ, /* Neon quad precision register */
037e8744 6443 OP_RVSD, /* VFP single or double precision register */
5287ad62 6444 OP_RNDQ, /* Neon double or quad precision register */
037e8744 6445 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 6446 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
6447 OP_RVC, /* VFP control register */
6448 OP_RMF, /* Maverick F register */
6449 OP_RMD, /* Maverick D register */
6450 OP_RMFX, /* Maverick FX register */
6451 OP_RMDX, /* Maverick DX register */
6452 OP_RMAX, /* Maverick AX register */
6453 OP_RMDS, /* Maverick DSPSC register */
6454 OP_RIWR, /* iWMMXt wR register */
6455 OP_RIWC, /* iWMMXt wC register */
6456 OP_RIWG, /* iWMMXt wCG register */
6457 OP_RXA, /* XScale accumulator register */
6458
6459 OP_REGLST, /* ARM register list */
6460 OP_VRSLST, /* VFP single-precision register list */
6461 OP_VRDLST, /* VFP double-precision register list */
037e8744 6462 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
6463 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
6464 OP_NSTRLST, /* Neon element/structure list */
6465
5287ad62 6466 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 6467 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
aacf0b33 6468 OP_RSVD_FI0, /* VFP S or D reg, or floating point immediate zero. */
5287ad62 6469 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 6470 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
6471 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
6472 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
6473 OP_VMOV, /* Neon VMOV operands. */
4316f0d2 6474 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
5287ad62 6475 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
2d447fca 6476 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
5287ad62
JB
6477
6478 OP_I0, /* immediate zero */
c19d1205
ZW
6479 OP_I7, /* immediate value 0 .. 7 */
6480 OP_I15, /* 0 .. 15 */
6481 OP_I16, /* 1 .. 16 */
5287ad62 6482 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
6483 OP_I31, /* 0 .. 31 */
6484 OP_I31w, /* 0 .. 31, optional trailing ! */
6485 OP_I32, /* 1 .. 32 */
5287ad62
JB
6486 OP_I32z, /* 0 .. 32 */
6487 OP_I63, /* 0 .. 63 */
c19d1205 6488 OP_I63s, /* -64 .. 63 */
5287ad62
JB
6489 OP_I64, /* 1 .. 64 */
6490 OP_I64z, /* 0 .. 64 */
c19d1205 6491 OP_I255, /* 0 .. 255 */
c19d1205
ZW
6492
6493 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
6494 OP_I7b, /* 0 .. 7 */
6495 OP_I15b, /* 0 .. 15 */
6496 OP_I31b, /* 0 .. 31 */
6497
6498 OP_SH, /* shifter operand */
4962c51a 6499 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 6500 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
6501 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
6502 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
6503 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
6504 OP_EXP, /* arbitrary expression */
6505 OP_EXPi, /* same, with optional immediate prefix */
6506 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 6507 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c19d1205
ZW
6508
6509 OP_CPSF, /* CPS flags */
6510 OP_ENDI, /* Endianness specifier */
d2cd1205
JB
6511 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
6512 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
c19d1205 6513 OP_COND, /* conditional code */
92e90b6e 6514 OP_TB, /* Table branch. */
c19d1205 6515
037e8744
JB
6516 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
6517
c19d1205
ZW
6518 OP_RRnpc_I0, /* ARM register or literal 0 */
6519 OP_RR_EXr, /* ARM register or expression with opt. reloc suff. */
6520 OP_RR_EXi, /* ARM register or expression with imm prefix */
6521 OP_RF_IF, /* FPA register or immediate */
6522 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 6523 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
6524
6525 /* Optional operands. */
6526 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
6527 OP_oI31b, /* 0 .. 31 */
5287ad62 6528 OP_oI32b, /* 1 .. 32 */
5f1af56b 6529 OP_oI32z, /* 0 .. 32 */
c19d1205
ZW
6530 OP_oIffffb, /* 0 .. 65535 */
6531 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
6532
6533 OP_oRR, /* ARM register */
6534 OP_oRRnpc, /* ARM register, not the PC */
5be8be5d 6535 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
b6702015 6536 OP_oRRw, /* ARM register, not r15, optional trailing ! */
5287ad62
JB
6537 OP_oRND, /* Optional Neon double precision register */
6538 OP_oRNQ, /* Optional Neon quad precision register */
6539 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 6540 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
6541 OP_oSHll, /* LSL immediate */
6542 OP_oSHar, /* ASR immediate */
6543 OP_oSHllar, /* LSL or ASR immediate */
6544 OP_oROR, /* ROR 0/8/16/24 */
52e7f43d 6545 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
c19d1205 6546
5be8be5d
DG
6547 /* Some pre-defined mixed (ARM/THUMB) operands. */
6548 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
6549 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
6550 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
6551
c19d1205
ZW
6552 OP_FIRST_OPTIONAL = OP_oI7b
6553};
a737bd4d 6554
c19d1205
ZW
6555/* Generic instruction operand parser. This does no encoding and no
6556 semantic validation; it merely squirrels values away in the inst
6557 structure. Returns SUCCESS or FAIL depending on whether the
6558 specified grammar matched. */
6559static int
5be8be5d 6560parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
c19d1205 6561{
5be8be5d 6562 unsigned const int *upat = pattern;
c19d1205
ZW
6563 char *backtrack_pos = 0;
6564 const char *backtrack_error = 0;
99aad254 6565 int i, val = 0, backtrack_index = 0;
5287ad62 6566 enum arm_reg_type rtype;
4962c51a 6567 parse_operand_result result;
5be8be5d 6568 unsigned int op_parse_code;
c19d1205 6569
e07e6e58
NC
6570#define po_char_or_fail(chr) \
6571 do \
6572 { \
6573 if (skip_past_char (&str, chr) == FAIL) \
477330fc 6574 goto bad_args; \
e07e6e58
NC
6575 } \
6576 while (0)
c19d1205 6577
e07e6e58
NC
6578#define po_reg_or_fail(regtype) \
6579 do \
dcbf9037 6580 { \
e07e6e58 6581 val = arm_typed_reg_parse (& str, regtype, & rtype, \
477330fc 6582 & inst.operands[i].vectype); \
e07e6e58 6583 if (val == FAIL) \
477330fc
RM
6584 { \
6585 first_error (_(reg_expected_msgs[regtype])); \
6586 goto failure; \
6587 } \
e07e6e58
NC
6588 inst.operands[i].reg = val; \
6589 inst.operands[i].isreg = 1; \
6590 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6591 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6592 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
477330fc
RM
6593 || rtype == REG_TYPE_VFD \
6594 || rtype == REG_TYPE_NQ); \
dcbf9037 6595 } \
e07e6e58
NC
6596 while (0)
6597
6598#define po_reg_or_goto(regtype, label) \
6599 do \
6600 { \
6601 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6602 & inst.operands[i].vectype); \
6603 if (val == FAIL) \
6604 goto label; \
dcbf9037 6605 \
e07e6e58
NC
6606 inst.operands[i].reg = val; \
6607 inst.operands[i].isreg = 1; \
6608 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6609 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6610 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
477330fc 6611 || rtype == REG_TYPE_VFD \
e07e6e58
NC
6612 || rtype == REG_TYPE_NQ); \
6613 } \
6614 while (0)
6615
6616#define po_imm_or_fail(min, max, popt) \
6617 do \
6618 { \
6619 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
6620 goto failure; \
6621 inst.operands[i].imm = val; \
6622 } \
6623 while (0)
6624
6625#define po_scalar_or_goto(elsz, label) \
6626 do \
6627 { \
6628 val = parse_scalar (& str, elsz, & inst.operands[i].vectype); \
6629 if (val == FAIL) \
6630 goto label; \
6631 inst.operands[i].reg = val; \
6632 inst.operands[i].isscalar = 1; \
6633 } \
6634 while (0)
6635
6636#define po_misc_or_fail(expr) \
6637 do \
6638 { \
6639 if (expr) \
6640 goto failure; \
6641 } \
6642 while (0)
6643
6644#define po_misc_or_fail_no_backtrack(expr) \
6645 do \
6646 { \
6647 result = expr; \
6648 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
6649 backtrack_pos = 0; \
6650 if (result != PARSE_OPERAND_SUCCESS) \
6651 goto failure; \
6652 } \
6653 while (0)
4962c51a 6654
52e7f43d
RE
6655#define po_barrier_or_imm(str) \
6656 do \
6657 { \
6658 val = parse_barrier (&str); \
ccb84d65
JB
6659 if (val == FAIL && ! ISALPHA (*str)) \
6660 goto immediate; \
6661 if (val == FAIL \
6662 /* ISB can only take SY as an option. */ \
6663 || ((inst.instruction & 0xf0) == 0x60 \
6664 && val != 0xf)) \
52e7f43d 6665 { \
ccb84d65
JB
6666 inst.error = _("invalid barrier type"); \
6667 backtrack_pos = 0; \
6668 goto failure; \
52e7f43d
RE
6669 } \
6670 } \
6671 while (0)
6672
c19d1205
ZW
6673 skip_whitespace (str);
6674
6675 for (i = 0; upat[i] != OP_stop; i++)
6676 {
5be8be5d
DG
6677 op_parse_code = upat[i];
6678 if (op_parse_code >= 1<<16)
6679 op_parse_code = thumb ? (op_parse_code >> 16)
6680 : (op_parse_code & ((1<<16)-1));
6681
6682 if (op_parse_code >= OP_FIRST_OPTIONAL)
c19d1205
ZW
6683 {
6684 /* Remember where we are in case we need to backtrack. */
9c2799c2 6685 gas_assert (!backtrack_pos);
c19d1205
ZW
6686 backtrack_pos = str;
6687 backtrack_error = inst.error;
6688 backtrack_index = i;
6689 }
6690
b6702015 6691 if (i > 0 && (i > 1 || inst.operands[0].present))
c19d1205
ZW
6692 po_char_or_fail (',');
6693
5be8be5d 6694 switch (op_parse_code)
c19d1205
ZW
6695 {
6696 /* Registers */
6697 case OP_oRRnpc:
5be8be5d 6698 case OP_oRRnpcsp:
c19d1205 6699 case OP_RRnpc:
5be8be5d 6700 case OP_RRnpcsp:
c19d1205
ZW
6701 case OP_oRR:
6702 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
6703 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
6704 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
6705 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
6706 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
6707 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
477330fc 6708 case OP_oRND:
5287ad62 6709 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
cd2cf30b
PB
6710 case OP_RVC:
6711 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
6712 break;
6713 /* Also accept generic coprocessor regs for unknown registers. */
6714 coproc_reg:
6715 po_reg_or_fail (REG_TYPE_CN);
6716 break;
c19d1205
ZW
6717 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
6718 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
6719 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
6720 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
6721 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
6722 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
6723 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
6724 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
6725 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
6726 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
477330fc 6727 case OP_oRNQ:
5287ad62 6728 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
477330fc 6729 case OP_oRNDQ:
5287ad62 6730 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
477330fc
RM
6731 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
6732 case OP_oRNSDQ:
6733 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
6734
6735 /* Neon scalar. Using an element size of 8 means that some invalid
6736 scalars are accepted here, so deal with those in later code. */
6737 case OP_RNSC: po_scalar_or_goto (8, failure); break;
6738
6739 case OP_RNDQ_I0:
6740 {
6741 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
6742 break;
6743 try_imm0:
6744 po_imm_or_fail (0, 0, TRUE);
6745 }
6746 break;
6747
6748 case OP_RVSD_I0:
6749 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
6750 break;
6751
aacf0b33
KT
6752 case OP_RSVD_FI0:
6753 {
6754 po_reg_or_goto (REG_TYPE_VFSD, try_ifimm0);
6755 break;
6756 try_ifimm0:
6757 if (parse_ifimm_zero (&str))
6758 inst.operands[i].imm = 0;
6759 else
6760 {
6761 inst.error
6762 = _("only floating point zero is allowed as immediate value");
6763 goto failure;
6764 }
6765 }
6766 break;
6767
477330fc
RM
6768 case OP_RR_RNSC:
6769 {
6770 po_scalar_or_goto (8, try_rr);
6771 break;
6772 try_rr:
6773 po_reg_or_fail (REG_TYPE_RN);
6774 }
6775 break;
6776
6777 case OP_RNSDQ_RNSC:
6778 {
6779 po_scalar_or_goto (8, try_nsdq);
6780 break;
6781 try_nsdq:
6782 po_reg_or_fail (REG_TYPE_NSDQ);
6783 }
6784 break;
6785
6786 case OP_RNDQ_RNSC:
6787 {
6788 po_scalar_or_goto (8, try_ndq);
6789 break;
6790 try_ndq:
6791 po_reg_or_fail (REG_TYPE_NDQ);
6792 }
6793 break;
6794
6795 case OP_RND_RNSC:
6796 {
6797 po_scalar_or_goto (8, try_vfd);
6798 break;
6799 try_vfd:
6800 po_reg_or_fail (REG_TYPE_VFD);
6801 }
6802 break;
6803
6804 case OP_VMOV:
6805 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
6806 not careful then bad things might happen. */
6807 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
6808 break;
6809
6810 case OP_RNDQ_Ibig:
6811 {
6812 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
6813 break;
6814 try_immbig:
6815 /* There's a possibility of getting a 64-bit immediate here, so
6816 we need special handling. */
8335d6aa
JW
6817 if (parse_big_immediate (&str, i, NULL, /*allow_symbol_p=*/FALSE)
6818 == FAIL)
477330fc
RM
6819 {
6820 inst.error = _("immediate value is out of range");
6821 goto failure;
6822 }
6823 }
6824 break;
6825
6826 case OP_RNDQ_I63b:
6827 {
6828 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
6829 break;
6830 try_shimm:
6831 po_imm_or_fail (0, 63, TRUE);
6832 }
6833 break;
c19d1205
ZW
6834
6835 case OP_RRnpcb:
6836 po_char_or_fail ('[');
6837 po_reg_or_fail (REG_TYPE_RN);
6838 po_char_or_fail (']');
6839 break;
a737bd4d 6840
55881a11 6841 case OP_RRnpctw:
c19d1205 6842 case OP_RRw:
b6702015 6843 case OP_oRRw:
c19d1205
ZW
6844 po_reg_or_fail (REG_TYPE_RN);
6845 if (skip_past_char (&str, '!') == SUCCESS)
6846 inst.operands[i].writeback = 1;
6847 break;
6848
6849 /* Immediates */
6850 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
6851 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
6852 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
477330fc 6853 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
6854 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
6855 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
477330fc 6856 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 6857 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
477330fc
RM
6858 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
6859 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
6860 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 6861 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
6862
6863 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
6864 case OP_oI7b:
6865 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
6866 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
6867 case OP_oI31b:
6868 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
477330fc
RM
6869 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
6870 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
c19d1205
ZW
6871 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
6872
6873 /* Immediate variants */
6874 case OP_oI255c:
6875 po_char_or_fail ('{');
6876 po_imm_or_fail (0, 255, TRUE);
6877 po_char_or_fail ('}');
6878 break;
6879
6880 case OP_I31w:
6881 /* The expression parser chokes on a trailing !, so we have
6882 to find it first and zap it. */
6883 {
6884 char *s = str;
6885 while (*s && *s != ',')
6886 s++;
6887 if (s[-1] == '!')
6888 {
6889 s[-1] = '\0';
6890 inst.operands[i].writeback = 1;
6891 }
6892 po_imm_or_fail (0, 31, TRUE);
6893 if (str == s - 1)
6894 str = s;
6895 }
6896 break;
6897
6898 /* Expressions */
6899 case OP_EXPi: EXPi:
6900 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6901 GE_OPT_PREFIX));
6902 break;
6903
6904 case OP_EXP:
6905 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6906 GE_NO_PREFIX));
6907 break;
6908
6909 case OP_EXPr: EXPr:
6910 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6911 GE_NO_PREFIX));
6912 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 6913 {
c19d1205
ZW
6914 val = parse_reloc (&str);
6915 if (val == -1)
6916 {
6917 inst.error = _("unrecognized relocation suffix");
6918 goto failure;
6919 }
6920 else if (val != BFD_RELOC_UNUSED)
6921 {
6922 inst.operands[i].imm = val;
6923 inst.operands[i].hasreloc = 1;
6924 }
a737bd4d 6925 }
c19d1205 6926 break;
a737bd4d 6927
b6895b4f
PB
6928 /* Operand for MOVW or MOVT. */
6929 case OP_HALF:
6930 po_misc_or_fail (parse_half (&str));
6931 break;
6932
e07e6e58 6933 /* Register or expression. */
c19d1205
ZW
6934 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
6935 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 6936
e07e6e58 6937 /* Register or immediate. */
c19d1205
ZW
6938 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
6939 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 6940
c19d1205
ZW
6941 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
6942 IF:
6943 if (!is_immediate_prefix (*str))
6944 goto bad_args;
6945 str++;
6946 val = parse_fpa_immediate (&str);
6947 if (val == FAIL)
6948 goto failure;
6949 /* FPA immediates are encoded as registers 8-15.
6950 parse_fpa_immediate has already applied the offset. */
6951 inst.operands[i].reg = val;
6952 inst.operands[i].isreg = 1;
6953 break;
09d92015 6954
2d447fca
JM
6955 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
6956 I32z: po_imm_or_fail (0, 32, FALSE); break;
6957
e07e6e58 6958 /* Two kinds of register. */
c19d1205
ZW
6959 case OP_RIWR_RIWC:
6960 {
6961 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
6962 if (!rege
6963 || (rege->type != REG_TYPE_MMXWR
6964 && rege->type != REG_TYPE_MMXWC
6965 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
6966 {
6967 inst.error = _("iWMMXt data or control register expected");
6968 goto failure;
6969 }
6970 inst.operands[i].reg = rege->number;
6971 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
6972 }
6973 break;
09d92015 6974
41adaa5c
JM
6975 case OP_RIWC_RIWG:
6976 {
6977 struct reg_entry *rege = arm_reg_parse_multi (&str);
6978 if (!rege
6979 || (rege->type != REG_TYPE_MMXWC
6980 && rege->type != REG_TYPE_MMXWCG))
6981 {
6982 inst.error = _("iWMMXt control register expected");
6983 goto failure;
6984 }
6985 inst.operands[i].reg = rege->number;
6986 inst.operands[i].isreg = 1;
6987 }
6988 break;
6989
c19d1205
ZW
6990 /* Misc */
6991 case OP_CPSF: val = parse_cps_flags (&str); break;
6992 case OP_ENDI: val = parse_endian_specifier (&str); break;
6993 case OP_oROR: val = parse_ror (&str); break;
c19d1205 6994 case OP_COND: val = parse_cond (&str); break;
52e7f43d
RE
6995 case OP_oBARRIER_I15:
6996 po_barrier_or_imm (str); break;
6997 immediate:
6998 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
477330fc 6999 goto failure;
52e7f43d 7000 break;
c19d1205 7001
fa94de6b 7002 case OP_wPSR:
d2cd1205 7003 case OP_rPSR:
90ec0d68
MGD
7004 po_reg_or_goto (REG_TYPE_RNB, try_psr);
7005 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
7006 {
7007 inst.error = _("Banked registers are not available with this "
7008 "architecture.");
7009 goto failure;
7010 }
7011 break;
d2cd1205
JB
7012 try_psr:
7013 val = parse_psr (&str, op_parse_code == OP_wPSR);
7014 break;
037e8744 7015
477330fc
RM
7016 case OP_APSR_RR:
7017 po_reg_or_goto (REG_TYPE_RN, try_apsr);
7018 break;
7019 try_apsr:
7020 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
7021 instruction). */
7022 if (strncasecmp (str, "APSR_", 5) == 0)
7023 {
7024 unsigned found = 0;
7025 str += 5;
7026 while (found < 15)
7027 switch (*str++)
7028 {
7029 case 'c': found = (found & 1) ? 16 : found | 1; break;
7030 case 'n': found = (found & 2) ? 16 : found | 2; break;
7031 case 'z': found = (found & 4) ? 16 : found | 4; break;
7032 case 'v': found = (found & 8) ? 16 : found | 8; break;
7033 default: found = 16;
7034 }
7035 if (found != 15)
7036 goto failure;
7037 inst.operands[i].isvec = 1;
f7c21dc7
NC
7038 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
7039 inst.operands[i].reg = REG_PC;
477330fc
RM
7040 }
7041 else
7042 goto failure;
7043 break;
037e8744 7044
92e90b6e
PB
7045 case OP_TB:
7046 po_misc_or_fail (parse_tb (&str));
7047 break;
7048
e07e6e58 7049 /* Register lists. */
c19d1205
ZW
7050 case OP_REGLST:
7051 val = parse_reg_list (&str);
7052 if (*str == '^')
7053 {
5e0d7f77 7054 inst.operands[i].writeback = 1;
c19d1205
ZW
7055 str++;
7056 }
7057 break;
09d92015 7058
c19d1205 7059 case OP_VRSLST:
5287ad62 7060 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 7061 break;
09d92015 7062
c19d1205 7063 case OP_VRDLST:
5287ad62 7064 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 7065 break;
a737bd4d 7066
477330fc
RM
7067 case OP_VRSDLST:
7068 /* Allow Q registers too. */
7069 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7070 REGLIST_NEON_D);
7071 if (val == FAIL)
7072 {
7073 inst.error = NULL;
7074 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7075 REGLIST_VFP_S);
7076 inst.operands[i].issingle = 1;
7077 }
7078 break;
7079
7080 case OP_NRDLST:
7081 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7082 REGLIST_NEON_D);
7083 break;
5287ad62
JB
7084
7085 case OP_NSTRLST:
477330fc
RM
7086 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
7087 &inst.operands[i].vectype);
7088 break;
5287ad62 7089
c19d1205
ZW
7090 /* Addressing modes */
7091 case OP_ADDR:
7092 po_misc_or_fail (parse_address (&str, i));
7093 break;
09d92015 7094
4962c51a
MS
7095 case OP_ADDRGLDR:
7096 po_misc_or_fail_no_backtrack (
477330fc 7097 parse_address_group_reloc (&str, i, GROUP_LDR));
4962c51a
MS
7098 break;
7099
7100 case OP_ADDRGLDRS:
7101 po_misc_or_fail_no_backtrack (
477330fc 7102 parse_address_group_reloc (&str, i, GROUP_LDRS));
4962c51a
MS
7103 break;
7104
7105 case OP_ADDRGLDC:
7106 po_misc_or_fail_no_backtrack (
477330fc 7107 parse_address_group_reloc (&str, i, GROUP_LDC));
4962c51a
MS
7108 break;
7109
c19d1205
ZW
7110 case OP_SH:
7111 po_misc_or_fail (parse_shifter_operand (&str, i));
7112 break;
09d92015 7113
4962c51a
MS
7114 case OP_SHG:
7115 po_misc_or_fail_no_backtrack (
477330fc 7116 parse_shifter_operand_group_reloc (&str, i));
4962c51a
MS
7117 break;
7118
c19d1205
ZW
7119 case OP_oSHll:
7120 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
7121 break;
09d92015 7122
c19d1205
ZW
7123 case OP_oSHar:
7124 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
7125 break;
09d92015 7126
c19d1205
ZW
7127 case OP_oSHllar:
7128 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
7129 break;
09d92015 7130
c19d1205 7131 default:
5be8be5d 7132 as_fatal (_("unhandled operand code %d"), op_parse_code);
c19d1205 7133 }
09d92015 7134
c19d1205
ZW
7135 /* Various value-based sanity checks and shared operations. We
7136 do not signal immediate failures for the register constraints;
7137 this allows a syntax error to take precedence. */
5be8be5d 7138 switch (op_parse_code)
c19d1205
ZW
7139 {
7140 case OP_oRRnpc:
7141 case OP_RRnpc:
7142 case OP_RRnpcb:
7143 case OP_RRw:
b6702015 7144 case OP_oRRw:
c19d1205
ZW
7145 case OP_RRnpc_I0:
7146 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
7147 inst.error = BAD_PC;
7148 break;
09d92015 7149
5be8be5d
DG
7150 case OP_oRRnpcsp:
7151 case OP_RRnpcsp:
7152 if (inst.operands[i].isreg)
7153 {
7154 if (inst.operands[i].reg == REG_PC)
7155 inst.error = BAD_PC;
7156 else if (inst.operands[i].reg == REG_SP)
7157 inst.error = BAD_SP;
7158 }
7159 break;
7160
55881a11 7161 case OP_RRnpctw:
fa94de6b
RM
7162 if (inst.operands[i].isreg
7163 && inst.operands[i].reg == REG_PC
55881a11
MGD
7164 && (inst.operands[i].writeback || thumb))
7165 inst.error = BAD_PC;
7166 break;
7167
c19d1205
ZW
7168 case OP_CPSF:
7169 case OP_ENDI:
7170 case OP_oROR:
d2cd1205
JB
7171 case OP_wPSR:
7172 case OP_rPSR:
c19d1205 7173 case OP_COND:
52e7f43d 7174 case OP_oBARRIER_I15:
c19d1205
ZW
7175 case OP_REGLST:
7176 case OP_VRSLST:
7177 case OP_VRDLST:
477330fc
RM
7178 case OP_VRSDLST:
7179 case OP_NRDLST:
7180 case OP_NSTRLST:
c19d1205
ZW
7181 if (val == FAIL)
7182 goto failure;
7183 inst.operands[i].imm = val;
7184 break;
a737bd4d 7185
c19d1205
ZW
7186 default:
7187 break;
7188 }
09d92015 7189
c19d1205
ZW
7190 /* If we get here, this operand was successfully parsed. */
7191 inst.operands[i].present = 1;
7192 continue;
09d92015 7193
c19d1205 7194 bad_args:
09d92015 7195 inst.error = BAD_ARGS;
c19d1205
ZW
7196
7197 failure:
7198 if (!backtrack_pos)
d252fdde
PB
7199 {
7200 /* The parse routine should already have set inst.error, but set a
5f4273c7 7201 default here just in case. */
d252fdde
PB
7202 if (!inst.error)
7203 inst.error = _("syntax error");
7204 return FAIL;
7205 }
c19d1205
ZW
7206
7207 /* Do not backtrack over a trailing optional argument that
7208 absorbed some text. We will only fail again, with the
7209 'garbage following instruction' error message, which is
7210 probably less helpful than the current one. */
7211 if (backtrack_index == i && backtrack_pos != str
7212 && upat[i+1] == OP_stop)
d252fdde
PB
7213 {
7214 if (!inst.error)
7215 inst.error = _("syntax error");
7216 return FAIL;
7217 }
c19d1205
ZW
7218
7219 /* Try again, skipping the optional argument at backtrack_pos. */
7220 str = backtrack_pos;
7221 inst.error = backtrack_error;
7222 inst.operands[backtrack_index].present = 0;
7223 i = backtrack_index;
7224 backtrack_pos = 0;
09d92015 7225 }
09d92015 7226
c19d1205
ZW
7227 /* Check that we have parsed all the arguments. */
7228 if (*str != '\0' && !inst.error)
7229 inst.error = _("garbage following instruction");
09d92015 7230
c19d1205 7231 return inst.error ? FAIL : SUCCESS;
09d92015
MM
7232}
7233
c19d1205
ZW
7234#undef po_char_or_fail
7235#undef po_reg_or_fail
7236#undef po_reg_or_goto
7237#undef po_imm_or_fail
5287ad62 7238#undef po_scalar_or_fail
52e7f43d 7239#undef po_barrier_or_imm
e07e6e58 7240
c19d1205 7241/* Shorthand macro for instruction encoding functions issuing errors. */
e07e6e58
NC
7242#define constraint(expr, err) \
7243 do \
c19d1205 7244 { \
e07e6e58
NC
7245 if (expr) \
7246 { \
7247 inst.error = err; \
7248 return; \
7249 } \
c19d1205 7250 } \
e07e6e58 7251 while (0)
c19d1205 7252
fdfde340
JM
7253/* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
7254 instructions are unpredictable if these registers are used. This
7255 is the BadReg predicate in ARM's Thumb-2 documentation. */
7256#define reject_bad_reg(reg) \
7257 do \
7258 if (reg == REG_SP || reg == REG_PC) \
7259 { \
7260 inst.error = (reg == REG_SP) ? BAD_SP : BAD_PC; \
7261 return; \
7262 } \
7263 while (0)
7264
94206790
MM
7265/* If REG is R13 (the stack pointer), warn that its use is
7266 deprecated. */
7267#define warn_deprecated_sp(reg) \
7268 do \
7269 if (warn_on_deprecated && reg == REG_SP) \
5c3696f8 7270 as_tsktsk (_("use of r13 is deprecated")); \
94206790
MM
7271 while (0)
7272
c19d1205
ZW
7273/* Functions for operand encoding. ARM, then Thumb. */
7274
d840c081 7275#define rotate_left(v, n) (v << (n & 31) | v >> ((32 - n) & 31))
c19d1205
ZW
7276
7277/* If VAL can be encoded in the immediate field of an ARM instruction,
7278 return the encoded form. Otherwise, return FAIL. */
7279
7280static unsigned int
7281encode_arm_immediate (unsigned int val)
09d92015 7282{
c19d1205
ZW
7283 unsigned int a, i;
7284
7285 for (i = 0; i < 32; i += 2)
7286 if ((a = rotate_left (val, i)) <= 0xff)
7287 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
7288
7289 return FAIL;
09d92015
MM
7290}
7291
c19d1205
ZW
7292/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
7293 return the encoded form. Otherwise, return FAIL. */
7294static unsigned int
7295encode_thumb32_immediate (unsigned int val)
09d92015 7296{
c19d1205 7297 unsigned int a, i;
09d92015 7298
9c3c69f2 7299 if (val <= 0xff)
c19d1205 7300 return val;
a737bd4d 7301
9c3c69f2 7302 for (i = 1; i <= 24; i++)
09d92015 7303 {
9c3c69f2
PB
7304 a = val >> i;
7305 if ((val & ~(0xff << i)) == 0)
7306 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 7307 }
a737bd4d 7308
c19d1205
ZW
7309 a = val & 0xff;
7310 if (val == ((a << 16) | a))
7311 return 0x100 | a;
7312 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
7313 return 0x300 | a;
09d92015 7314
c19d1205
ZW
7315 a = val & 0xff00;
7316 if (val == ((a << 16) | a))
7317 return 0x200 | (a >> 8);
a737bd4d 7318
c19d1205 7319 return FAIL;
09d92015 7320}
5287ad62 7321/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
7322
7323static void
5287ad62
JB
7324encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
7325{
7326 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
7327 && reg > 15)
7328 {
b1cc4aeb 7329 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
477330fc
RM
7330 {
7331 if (thumb_mode)
7332 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
7333 fpu_vfp_ext_d32);
7334 else
7335 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
7336 fpu_vfp_ext_d32);
7337 }
5287ad62 7338 else
477330fc
RM
7339 {
7340 first_error (_("D register out of range for selected VFP version"));
7341 return;
7342 }
5287ad62
JB
7343 }
7344
c19d1205 7345 switch (pos)
09d92015 7346 {
c19d1205
ZW
7347 case VFP_REG_Sd:
7348 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
7349 break;
7350
7351 case VFP_REG_Sn:
7352 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
7353 break;
7354
7355 case VFP_REG_Sm:
7356 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
7357 break;
7358
5287ad62
JB
7359 case VFP_REG_Dd:
7360 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
7361 break;
5f4273c7 7362
5287ad62
JB
7363 case VFP_REG_Dn:
7364 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
7365 break;
5f4273c7 7366
5287ad62
JB
7367 case VFP_REG_Dm:
7368 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
7369 break;
7370
c19d1205
ZW
7371 default:
7372 abort ();
09d92015 7373 }
09d92015
MM
7374}
7375
c19d1205 7376/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 7377 if any, is handled by md_apply_fix. */
09d92015 7378static void
c19d1205 7379encode_arm_shift (int i)
09d92015 7380{
c19d1205
ZW
7381 if (inst.operands[i].shift_kind == SHIFT_RRX)
7382 inst.instruction |= SHIFT_ROR << 5;
7383 else
09d92015 7384 {
c19d1205
ZW
7385 inst.instruction |= inst.operands[i].shift_kind << 5;
7386 if (inst.operands[i].immisreg)
7387 {
7388 inst.instruction |= SHIFT_BY_REG;
7389 inst.instruction |= inst.operands[i].imm << 8;
7390 }
7391 else
7392 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 7393 }
c19d1205 7394}
09d92015 7395
c19d1205
ZW
7396static void
7397encode_arm_shifter_operand (int i)
7398{
7399 if (inst.operands[i].isreg)
09d92015 7400 {
c19d1205
ZW
7401 inst.instruction |= inst.operands[i].reg;
7402 encode_arm_shift (i);
09d92015 7403 }
c19d1205 7404 else
a415b1cd
JB
7405 {
7406 inst.instruction |= INST_IMMEDIATE;
7407 if (inst.reloc.type != BFD_RELOC_ARM_IMMEDIATE)
7408 inst.instruction |= inst.operands[i].imm;
7409 }
09d92015
MM
7410}
7411
c19d1205 7412/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 7413static void
c19d1205 7414encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 7415{
2b2f5df9
NC
7416 /* PR 14260:
7417 Generate an error if the operand is not a register. */
7418 constraint (!inst.operands[i].isreg,
7419 _("Instruction does not support =N addresses"));
7420
c19d1205 7421 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7422
c19d1205 7423 if (inst.operands[i].preind)
09d92015 7424 {
c19d1205
ZW
7425 if (is_t)
7426 {
7427 inst.error = _("instruction does not accept preindexed addressing");
7428 return;
7429 }
7430 inst.instruction |= PRE_INDEX;
7431 if (inst.operands[i].writeback)
7432 inst.instruction |= WRITE_BACK;
09d92015 7433
c19d1205
ZW
7434 }
7435 else if (inst.operands[i].postind)
7436 {
9c2799c2 7437 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
7438 if (is_t)
7439 inst.instruction |= WRITE_BACK;
7440 }
7441 else /* unindexed - only for coprocessor */
09d92015 7442 {
c19d1205 7443 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
7444 return;
7445 }
7446
c19d1205
ZW
7447 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
7448 && (((inst.instruction & 0x000f0000) >> 16)
7449 == ((inst.instruction & 0x0000f000) >> 12)))
7450 as_warn ((inst.instruction & LOAD_BIT)
7451 ? _("destination register same as write-back base")
7452 : _("source register same as write-back base"));
09d92015
MM
7453}
7454
c19d1205
ZW
7455/* inst.operands[i] was set up by parse_address. Encode it into an
7456 ARM-format mode 2 load or store instruction. If is_t is true,
7457 reject forms that cannot be used with a T instruction (i.e. not
7458 post-indexed). */
a737bd4d 7459static void
c19d1205 7460encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 7461{
5be8be5d
DG
7462 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
7463
c19d1205 7464 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7465
c19d1205 7466 if (inst.operands[i].immisreg)
09d92015 7467 {
5be8be5d
DG
7468 constraint ((inst.operands[i].imm == REG_PC
7469 || (is_pc && inst.operands[i].writeback)),
7470 BAD_PC_ADDRESSING);
c19d1205
ZW
7471 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
7472 inst.instruction |= inst.operands[i].imm;
7473 if (!inst.operands[i].negative)
7474 inst.instruction |= INDEX_UP;
7475 if (inst.operands[i].shifted)
7476 {
7477 if (inst.operands[i].shift_kind == SHIFT_RRX)
7478 inst.instruction |= SHIFT_ROR << 5;
7479 else
7480 {
7481 inst.instruction |= inst.operands[i].shift_kind << 5;
7482 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7483 }
7484 }
09d92015 7485 }
c19d1205 7486 else /* immediate offset in inst.reloc */
09d92015 7487 {
5be8be5d
DG
7488 if (is_pc && !inst.reloc.pc_rel)
7489 {
7490 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
23a10334
JZ
7491
7492 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
7493 cannot use PC in addressing.
7494 PC cannot be used in writeback addressing, either. */
7495 constraint ((is_t || inst.operands[i].writeback),
5be8be5d 7496 BAD_PC_ADDRESSING);
23a10334 7497
dc5ec521 7498 /* Use of PC in str is deprecated for ARMv7. */
23a10334
JZ
7499 if (warn_on_deprecated
7500 && !is_load
7501 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
5c3696f8 7502 as_tsktsk (_("use of PC in this instruction is deprecated"));
5be8be5d
DG
7503 }
7504
c19d1205 7505 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7506 {
7507 /* Prefer + for zero encoded value. */
7508 if (!inst.operands[i].negative)
7509 inst.instruction |= INDEX_UP;
7510 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
7511 }
09d92015 7512 }
09d92015
MM
7513}
7514
c19d1205
ZW
7515/* inst.operands[i] was set up by parse_address. Encode it into an
7516 ARM-format mode 3 load or store instruction. Reject forms that
7517 cannot be used with such instructions. If is_t is true, reject
7518 forms that cannot be used with a T instruction (i.e. not
7519 post-indexed). */
7520static void
7521encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 7522{
c19d1205 7523 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 7524 {
c19d1205
ZW
7525 inst.error = _("instruction does not accept scaled register index");
7526 return;
09d92015 7527 }
a737bd4d 7528
c19d1205 7529 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7530
c19d1205
ZW
7531 if (inst.operands[i].immisreg)
7532 {
5be8be5d 7533 constraint ((inst.operands[i].imm == REG_PC
eb9f3f00 7534 || (is_t && inst.operands[i].reg == REG_PC)),
5be8be5d 7535 BAD_PC_ADDRESSING);
eb9f3f00
JB
7536 constraint (inst.operands[i].reg == REG_PC && inst.operands[i].writeback,
7537 BAD_PC_WRITEBACK);
c19d1205
ZW
7538 inst.instruction |= inst.operands[i].imm;
7539 if (!inst.operands[i].negative)
7540 inst.instruction |= INDEX_UP;
7541 }
7542 else /* immediate offset in inst.reloc */
7543 {
5be8be5d
DG
7544 constraint ((inst.operands[i].reg == REG_PC && !inst.reloc.pc_rel
7545 && inst.operands[i].writeback),
7546 BAD_PC_WRITEBACK);
c19d1205
ZW
7547 inst.instruction |= HWOFFSET_IMM;
7548 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7549 {
7550 /* Prefer + for zero encoded value. */
7551 if (!inst.operands[i].negative)
7552 inst.instruction |= INDEX_UP;
7553
7554 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
7555 }
c19d1205 7556 }
a737bd4d
NC
7557}
7558
8335d6aa
JW
7559/* Write immediate bits [7:0] to the following locations:
7560
7561 |28/24|23 19|18 16|15 4|3 0|
7562 | 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|
7563
7564 This function is used by VMOV/VMVN/VORR/VBIC. */
7565
7566static void
7567neon_write_immbits (unsigned immbits)
7568{
7569 inst.instruction |= immbits & 0xf;
7570 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
7571 inst.instruction |= ((immbits >> 7) & 0x1) << (thumb_mode ? 28 : 24);
7572}
7573
7574/* Invert low-order SIZE bits of XHI:XLO. */
7575
7576static void
7577neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
7578{
7579 unsigned immlo = xlo ? *xlo : 0;
7580 unsigned immhi = xhi ? *xhi : 0;
7581
7582 switch (size)
7583 {
7584 case 8:
7585 immlo = (~immlo) & 0xff;
7586 break;
7587
7588 case 16:
7589 immlo = (~immlo) & 0xffff;
7590 break;
7591
7592 case 64:
7593 immhi = (~immhi) & 0xffffffff;
7594 /* fall through. */
7595
7596 case 32:
7597 immlo = (~immlo) & 0xffffffff;
7598 break;
7599
7600 default:
7601 abort ();
7602 }
7603
7604 if (xlo)
7605 *xlo = immlo;
7606
7607 if (xhi)
7608 *xhi = immhi;
7609}
7610
7611/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
7612 A, B, C, D. */
09d92015 7613
c19d1205 7614static int
8335d6aa 7615neon_bits_same_in_bytes (unsigned imm)
09d92015 7616{
8335d6aa
JW
7617 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
7618 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
7619 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
7620 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
7621}
a737bd4d 7622
8335d6aa 7623/* For immediate of above form, return 0bABCD. */
09d92015 7624
8335d6aa
JW
7625static unsigned
7626neon_squash_bits (unsigned imm)
7627{
7628 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
7629 | ((imm & 0x01000000) >> 21);
7630}
7631
7632/* Compress quarter-float representation to 0b...000 abcdefgh. */
7633
7634static unsigned
7635neon_qfloat_bits (unsigned imm)
7636{
7637 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
7638}
7639
7640/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
7641 the instruction. *OP is passed as the initial value of the op field, and
7642 may be set to a different value depending on the constant (i.e.
7643 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
7644 MVN). If the immediate looks like a repeated pattern then also
7645 try smaller element sizes. */
7646
7647static int
7648neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
7649 unsigned *immbits, int *op, int size,
7650 enum neon_el_type type)
7651{
7652 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
7653 float. */
7654 if (type == NT_float && !float_p)
7655 return FAIL;
7656
7657 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
09d92015 7658 {
8335d6aa
JW
7659 if (size != 32 || *op == 1)
7660 return FAIL;
7661 *immbits = neon_qfloat_bits (immlo);
7662 return 0xf;
7663 }
7664
7665 if (size == 64)
7666 {
7667 if (neon_bits_same_in_bytes (immhi)
7668 && neon_bits_same_in_bytes (immlo))
c19d1205 7669 {
8335d6aa
JW
7670 if (*op == 1)
7671 return FAIL;
7672 *immbits = (neon_squash_bits (immhi) << 4)
7673 | neon_squash_bits (immlo);
7674 *op = 1;
7675 return 0xe;
c19d1205 7676 }
a737bd4d 7677
8335d6aa
JW
7678 if (immhi != immlo)
7679 return FAIL;
7680 }
a737bd4d 7681
8335d6aa 7682 if (size >= 32)
09d92015 7683 {
8335d6aa 7684 if (immlo == (immlo & 0x000000ff))
c19d1205 7685 {
8335d6aa
JW
7686 *immbits = immlo;
7687 return 0x0;
c19d1205 7688 }
8335d6aa 7689 else if (immlo == (immlo & 0x0000ff00))
c19d1205 7690 {
8335d6aa
JW
7691 *immbits = immlo >> 8;
7692 return 0x2;
c19d1205 7693 }
8335d6aa
JW
7694 else if (immlo == (immlo & 0x00ff0000))
7695 {
7696 *immbits = immlo >> 16;
7697 return 0x4;
7698 }
7699 else if (immlo == (immlo & 0xff000000))
7700 {
7701 *immbits = immlo >> 24;
7702 return 0x6;
7703 }
7704 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
7705 {
7706 *immbits = (immlo >> 8) & 0xff;
7707 return 0xc;
7708 }
7709 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
7710 {
7711 *immbits = (immlo >> 16) & 0xff;
7712 return 0xd;
7713 }
7714
7715 if ((immlo & 0xffff) != (immlo >> 16))
7716 return FAIL;
7717 immlo &= 0xffff;
09d92015 7718 }
a737bd4d 7719
8335d6aa 7720 if (size >= 16)
4962c51a 7721 {
8335d6aa
JW
7722 if (immlo == (immlo & 0x000000ff))
7723 {
7724 *immbits = immlo;
7725 return 0x8;
7726 }
7727 else if (immlo == (immlo & 0x0000ff00))
7728 {
7729 *immbits = immlo >> 8;
7730 return 0xa;
7731 }
7732
7733 if ((immlo & 0xff) != (immlo >> 8))
7734 return FAIL;
7735 immlo &= 0xff;
4962c51a
MS
7736 }
7737
8335d6aa
JW
7738 if (immlo == (immlo & 0x000000ff))
7739 {
7740 /* Don't allow MVN with 8-bit immediate. */
7741 if (*op == 1)
7742 return FAIL;
7743 *immbits = immlo;
7744 return 0xe;
7745 }
26d97720 7746
8335d6aa 7747 return FAIL;
c19d1205 7748}
a737bd4d 7749
8335d6aa
JW
7750enum lit_type
7751{
7752 CONST_THUMB,
7753 CONST_ARM,
7754 CONST_VEC
7755};
7756
c19d1205
ZW
7757/* inst.reloc.exp describes an "=expr" load pseudo-operation.
7758 Determine whether it can be performed with a move instruction; if
7759 it can, convert inst.instruction to that move instruction and
c921be7d
NC
7760 return TRUE; if it can't, convert inst.instruction to a literal-pool
7761 load and return FALSE. If this is not a valid thing to do in the
7762 current context, set inst.error and return TRUE.
a737bd4d 7763
c19d1205
ZW
7764 inst.operands[i] describes the destination register. */
7765
c921be7d 7766static bfd_boolean
8335d6aa 7767move_or_literal_pool (int i, enum lit_type t, bfd_boolean mode_3)
c19d1205 7768{
53365c0d 7769 unsigned long tbit;
8335d6aa
JW
7770 bfd_boolean thumb_p = (t == CONST_THUMB);
7771 bfd_boolean arm_p = (t == CONST_ARM);
7772 bfd_boolean vec64_p = (t == CONST_VEC) && !inst.operands[i].issingle;
53365c0d
PB
7773
7774 if (thumb_p)
7775 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
7776 else
7777 tbit = LOAD_BIT;
7778
7779 if ((inst.instruction & tbit) == 0)
09d92015 7780 {
c19d1205 7781 inst.error = _("invalid pseudo operation");
c921be7d 7782 return TRUE;
09d92015 7783 }
8335d6aa
JW
7784 if (inst.reloc.exp.X_op != O_constant
7785 && inst.reloc.exp.X_op != O_symbol
7786 && inst.reloc.exp.X_op != O_big)
09d92015
MM
7787 {
7788 inst.error = _("constant expression expected");
c921be7d 7789 return TRUE;
09d92015 7790 }
8335d6aa
JW
7791 if ((inst.reloc.exp.X_op == O_constant
7792 || inst.reloc.exp.X_op == O_big)
7793 && !inst.operands[i].issingle)
7794 {
7795 if (thumb_p && inst.reloc.exp.X_op == O_constant)
7796 {
7797 if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
7798 {
7799 /* This can be done with a mov(1) instruction. */
7800 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
7801 inst.instruction |= inst.reloc.exp.X_add_number;
7802 return TRUE;
7803 }
7804 }
7805 else if (arm_p && inst.reloc.exp.X_op == O_constant)
7806 {
7807 int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
7808 if (value != FAIL)
7809 {
7810 /* This can be done with a mov instruction. */
7811 inst.instruction &= LITERAL_MASK;
7812 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
7813 inst.instruction |= value & 0xfff;
7814 return TRUE;
7815 }
7816
7817 value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
7818 if (value != FAIL)
7819 {
7820 /* This can be done with a mvn instruction. */
7821 inst.instruction &= LITERAL_MASK;
7822 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
7823 inst.instruction |= value & 0xfff;
7824 return TRUE;
7825 }
7826 }
7827 else if (vec64_p)
7828 {
7829 int op = 0;
7830 unsigned immbits = 0;
7831 unsigned immlo = inst.operands[1].imm;
7832 unsigned immhi = inst.operands[1].regisimm
7833 ? inst.operands[1].reg
7834 : inst.reloc.exp.X_unsigned
7835 ? 0
2569ceb0 7836 : ((bfd_int64_t)((int) immlo)) >> 32;
8335d6aa
JW
7837 int cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
7838 &op, 64, NT_invtype);
7839
7840 if (cmode == FAIL)
7841 {
7842 neon_invert_size (&immlo, &immhi, 64);
7843 op = !op;
7844 cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
7845 &op, 64, NT_invtype);
7846 }
7847 if (cmode != FAIL)
7848 {
7849 inst.instruction = (inst.instruction & VLDR_VMOV_SAME)
7850 | (1 << 23)
7851 | (cmode << 8)
7852 | (op << 5)
7853 | (1 << 4);
7854 /* Fill other bits in vmov encoding for both thumb and arm. */
7855 if (thumb_mode)
7856 inst.instruction |= (0x7 << 29) | (0xF << 24);
7857 else
7858 inst.instruction |= (0xF << 28) | (0x1 << 25);
7859 neon_write_immbits (immbits);
7860 return TRUE;
7861 }
7862 }
7863 }
7864
7865 if (add_to_lit_pool ((!inst.operands[i].isvec
7866 || inst.operands[i].issingle) ? 4 : 8) == FAIL)
7867 return TRUE;
7868
7869 inst.operands[1].reg = REG_PC;
7870 inst.operands[1].isreg = 1;
7871 inst.operands[1].preind = 1;
7872 inst.reloc.pc_rel = 1;
7873 inst.reloc.type = (thumb_p
7874 ? BFD_RELOC_ARM_THUMB_OFFSET
7875 : (mode_3
7876 ? BFD_RELOC_ARM_HWLITERAL
7877 : BFD_RELOC_ARM_LITERAL));
7878 return FALSE;
7879}
7880
7881/* inst.operands[i] was set up by parse_address. Encode it into an
7882 ARM-format instruction. Reject all forms which cannot be encoded
7883 into a coprocessor load/store instruction. If wb_ok is false,
7884 reject use of writeback; if unind_ok is false, reject use of
7885 unindexed addressing. If reloc_override is not 0, use it instead
7886 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
7887 (in which case it is preserved). */
7888
7889static int
7890encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
7891{
7892 if (!inst.operands[i].isreg)
7893 {
7894 gas_assert (inst.operands[0].isvec);
7895 if (move_or_literal_pool (0, CONST_VEC, /*mode_3=*/FALSE))
7896 return SUCCESS;
7897 }
7898
7899 inst.instruction |= inst.operands[i].reg << 16;
7900
7901 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
7902
7903 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
7904 {
7905 gas_assert (!inst.operands[i].writeback);
7906 if (!unind_ok)
7907 {
7908 inst.error = _("instruction does not support unindexed addressing");
7909 return FAIL;
7910 }
7911 inst.instruction |= inst.operands[i].imm;
7912 inst.instruction |= INDEX_UP;
7913 return SUCCESS;
7914 }
7915
7916 if (inst.operands[i].preind)
7917 inst.instruction |= PRE_INDEX;
7918
7919 if (inst.operands[i].writeback)
09d92015 7920 {
8335d6aa 7921 if (inst.operands[i].reg == REG_PC)
c19d1205 7922 {
8335d6aa
JW
7923 inst.error = _("pc may not be used with write-back");
7924 return FAIL;
c19d1205 7925 }
8335d6aa 7926 if (!wb_ok)
c19d1205 7927 {
8335d6aa
JW
7928 inst.error = _("instruction does not support writeback");
7929 return FAIL;
c19d1205 7930 }
8335d6aa 7931 inst.instruction |= WRITE_BACK;
09d92015
MM
7932 }
7933
8335d6aa
JW
7934 if (reloc_override)
7935 inst.reloc.type = (bfd_reloc_code_real_type) reloc_override;
7936 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
7937 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
7938 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
c19d1205 7939 {
8335d6aa
JW
7940 if (thumb_mode)
7941 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
7942 else
7943 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
c19d1205 7944 }
8335d6aa
JW
7945
7946 /* Prefer + for zero encoded value. */
7947 if (!inst.operands[i].negative)
7948 inst.instruction |= INDEX_UP;
7949
7950 return SUCCESS;
09d92015
MM
7951}
7952
5f4273c7 7953/* Functions for instruction encoding, sorted by sub-architecture.
c19d1205
ZW
7954 First some generics; their names are taken from the conventional
7955 bit positions for register arguments in ARM format instructions. */
09d92015 7956
a737bd4d 7957static void
c19d1205 7958do_noargs (void)
09d92015 7959{
c19d1205 7960}
a737bd4d 7961
c19d1205
ZW
7962static void
7963do_rd (void)
7964{
7965 inst.instruction |= inst.operands[0].reg << 12;
7966}
a737bd4d 7967
c19d1205
ZW
7968static void
7969do_rd_rm (void)
7970{
7971 inst.instruction |= inst.operands[0].reg << 12;
7972 inst.instruction |= inst.operands[1].reg;
7973}
09d92015 7974
9eb6c0f1
MGD
7975static void
7976do_rm_rn (void)
7977{
7978 inst.instruction |= inst.operands[0].reg;
7979 inst.instruction |= inst.operands[1].reg << 16;
7980}
7981
c19d1205
ZW
7982static void
7983do_rd_rn (void)
7984{
7985 inst.instruction |= inst.operands[0].reg << 12;
7986 inst.instruction |= inst.operands[1].reg << 16;
7987}
a737bd4d 7988
c19d1205
ZW
7989static void
7990do_rn_rd (void)
7991{
7992 inst.instruction |= inst.operands[0].reg << 16;
7993 inst.instruction |= inst.operands[1].reg << 12;
7994}
09d92015 7995
59d09be6
MGD
7996static bfd_boolean
7997check_obsolete (const arm_feature_set *feature, const char *msg)
7998{
7999 if (ARM_CPU_IS_ANY (cpu_variant))
8000 {
5c3696f8 8001 as_tsktsk ("%s", msg);
59d09be6
MGD
8002 return TRUE;
8003 }
8004 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
8005 {
8006 as_bad ("%s", msg);
8007 return TRUE;
8008 }
8009
8010 return FALSE;
8011}
8012
c19d1205
ZW
8013static void
8014do_rd_rm_rn (void)
8015{
9a64e435 8016 unsigned Rn = inst.operands[2].reg;
708587a4 8017 /* Enforce restrictions on SWP instruction. */
9a64e435 8018 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
56adecf4
DG
8019 {
8020 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
8021 _("Rn must not overlap other operands"));
8022
59d09be6
MGD
8023 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
8024 */
8025 if (!check_obsolete (&arm_ext_v8,
8026 _("swp{b} use is obsoleted for ARMv8 and later"))
8027 && warn_on_deprecated
8028 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
5c3696f8 8029 as_tsktsk (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
56adecf4 8030 }
59d09be6 8031
c19d1205
ZW
8032 inst.instruction |= inst.operands[0].reg << 12;
8033 inst.instruction |= inst.operands[1].reg;
9a64e435 8034 inst.instruction |= Rn << 16;
c19d1205 8035}
09d92015 8036
c19d1205
ZW
8037static void
8038do_rd_rn_rm (void)
8039{
8040 inst.instruction |= inst.operands[0].reg << 12;
8041 inst.instruction |= inst.operands[1].reg << 16;
8042 inst.instruction |= inst.operands[2].reg;
8043}
a737bd4d 8044
c19d1205
ZW
8045static void
8046do_rm_rd_rn (void)
8047{
5be8be5d
DG
8048 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
8049 constraint (((inst.reloc.exp.X_op != O_constant
8050 && inst.reloc.exp.X_op != O_illegal)
8051 || inst.reloc.exp.X_add_number != 0),
8052 BAD_ADDR_MODE);
c19d1205
ZW
8053 inst.instruction |= inst.operands[0].reg;
8054 inst.instruction |= inst.operands[1].reg << 12;
8055 inst.instruction |= inst.operands[2].reg << 16;
8056}
09d92015 8057
c19d1205
ZW
8058static void
8059do_imm0 (void)
8060{
8061 inst.instruction |= inst.operands[0].imm;
8062}
09d92015 8063
c19d1205
ZW
8064static void
8065do_rd_cpaddr (void)
8066{
8067 inst.instruction |= inst.operands[0].reg << 12;
8068 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 8069}
a737bd4d 8070
c19d1205
ZW
8071/* ARM instructions, in alphabetical order by function name (except
8072 that wrapper functions appear immediately after the function they
8073 wrap). */
09d92015 8074
c19d1205
ZW
8075/* This is a pseudo-op of the form "adr rd, label" to be converted
8076 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
8077
8078static void
c19d1205 8079do_adr (void)
09d92015 8080{
c19d1205 8081 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 8082
c19d1205
ZW
8083 /* Frag hacking will turn this into a sub instruction if the offset turns
8084 out to be negative. */
8085 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 8086 inst.reloc.pc_rel = 1;
2fc8bdac 8087 inst.reloc.exp.X_add_number -= 8;
c19d1205 8088}
b99bd4ef 8089
c19d1205
ZW
8090/* This is a pseudo-op of the form "adrl rd, label" to be converted
8091 into a relative address of the form:
8092 add rd, pc, #low(label-.-8)"
8093 add rd, rd, #high(label-.-8)" */
b99bd4ef 8094
c19d1205
ZW
8095static void
8096do_adrl (void)
8097{
8098 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 8099
c19d1205
ZW
8100 /* Frag hacking will turn this into a sub instruction if the offset turns
8101 out to be negative. */
8102 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
8103 inst.reloc.pc_rel = 1;
8104 inst.size = INSN_SIZE * 2;
2fc8bdac 8105 inst.reloc.exp.X_add_number -= 8;
b99bd4ef
NC
8106}
8107
b99bd4ef 8108static void
c19d1205 8109do_arit (void)
b99bd4ef 8110{
c19d1205
ZW
8111 if (!inst.operands[1].present)
8112 inst.operands[1].reg = inst.operands[0].reg;
8113 inst.instruction |= inst.operands[0].reg << 12;
8114 inst.instruction |= inst.operands[1].reg << 16;
8115 encode_arm_shifter_operand (2);
8116}
b99bd4ef 8117
62b3e311
PB
8118static void
8119do_barrier (void)
8120{
8121 if (inst.operands[0].present)
ccb84d65 8122 inst.instruction |= inst.operands[0].imm;
62b3e311
PB
8123 else
8124 inst.instruction |= 0xf;
8125}
8126
c19d1205
ZW
8127static void
8128do_bfc (void)
8129{
8130 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
8131 constraint (msb > 32, _("bit-field extends past end of register"));
8132 /* The instruction encoding stores the LSB and MSB,
8133 not the LSB and width. */
8134 inst.instruction |= inst.operands[0].reg << 12;
8135 inst.instruction |= inst.operands[1].imm << 7;
8136 inst.instruction |= (msb - 1) << 16;
8137}
b99bd4ef 8138
c19d1205
ZW
8139static void
8140do_bfi (void)
8141{
8142 unsigned int msb;
b99bd4ef 8143
c19d1205
ZW
8144 /* #0 in second position is alternative syntax for bfc, which is
8145 the same instruction but with REG_PC in the Rm field. */
8146 if (!inst.operands[1].isreg)
8147 inst.operands[1].reg = REG_PC;
b99bd4ef 8148
c19d1205
ZW
8149 msb = inst.operands[2].imm + inst.operands[3].imm;
8150 constraint (msb > 32, _("bit-field extends past end of register"));
8151 /* The instruction encoding stores the LSB and MSB,
8152 not the LSB and width. */
8153 inst.instruction |= inst.operands[0].reg << 12;
8154 inst.instruction |= inst.operands[1].reg;
8155 inst.instruction |= inst.operands[2].imm << 7;
8156 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
8157}
8158
b99bd4ef 8159static void
c19d1205 8160do_bfx (void)
b99bd4ef 8161{
c19d1205
ZW
8162 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
8163 _("bit-field extends past end of register"));
8164 inst.instruction |= inst.operands[0].reg << 12;
8165 inst.instruction |= inst.operands[1].reg;
8166 inst.instruction |= inst.operands[2].imm << 7;
8167 inst.instruction |= (inst.operands[3].imm - 1) << 16;
8168}
09d92015 8169
c19d1205
ZW
8170/* ARM V5 breakpoint instruction (argument parse)
8171 BKPT <16 bit unsigned immediate>
8172 Instruction is not conditional.
8173 The bit pattern given in insns[] has the COND_ALWAYS condition,
8174 and it is an error if the caller tried to override that. */
b99bd4ef 8175
c19d1205
ZW
8176static void
8177do_bkpt (void)
8178{
8179 /* Top 12 of 16 bits to bits 19:8. */
8180 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 8181
c19d1205
ZW
8182 /* Bottom 4 of 16 bits to bits 3:0. */
8183 inst.instruction |= inst.operands[0].imm & 0xf;
8184}
09d92015 8185
c19d1205
ZW
8186static void
8187encode_branch (int default_reloc)
8188{
8189 if (inst.operands[0].hasreloc)
8190 {
0855e32b
NS
8191 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
8192 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
8193 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
8194 inst.reloc.type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
8195 ? BFD_RELOC_ARM_PLT32
8196 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
c19d1205 8197 }
b99bd4ef 8198 else
9ae92b05 8199 inst.reloc.type = (bfd_reloc_code_real_type) default_reloc;
2fc8bdac 8200 inst.reloc.pc_rel = 1;
b99bd4ef
NC
8201}
8202
b99bd4ef 8203static void
c19d1205 8204do_branch (void)
b99bd4ef 8205{
39b41c9c
PB
8206#ifdef OBJ_ELF
8207 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
8208 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
8209 else
8210#endif
8211 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
8212}
8213
8214static void
8215do_bl (void)
8216{
8217#ifdef OBJ_ELF
8218 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
8219 {
8220 if (inst.cond == COND_ALWAYS)
8221 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
8222 else
8223 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
8224 }
8225 else
8226#endif
8227 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 8228}
b99bd4ef 8229
c19d1205
ZW
8230/* ARM V5 branch-link-exchange instruction (argument parse)
8231 BLX <target_addr> ie BLX(1)
8232 BLX{<condition>} <Rm> ie BLX(2)
8233 Unfortunately, there are two different opcodes for this mnemonic.
8234 So, the insns[].value is not used, and the code here zaps values
8235 into inst.instruction.
8236 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 8237
c19d1205
ZW
8238static void
8239do_blx (void)
8240{
8241 if (inst.operands[0].isreg)
b99bd4ef 8242 {
c19d1205
ZW
8243 /* Arg is a register; the opcode provided by insns[] is correct.
8244 It is not illegal to do "blx pc", just useless. */
8245 if (inst.operands[0].reg == REG_PC)
8246 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 8247
c19d1205
ZW
8248 inst.instruction |= inst.operands[0].reg;
8249 }
8250 else
b99bd4ef 8251 {
c19d1205 8252 /* Arg is an address; this instruction cannot be executed
267bf995
RR
8253 conditionally, and the opcode must be adjusted.
8254 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
8255 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
c19d1205 8256 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 8257 inst.instruction = 0xfa000000;
267bf995 8258 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 8259 }
c19d1205
ZW
8260}
8261
8262static void
8263do_bx (void)
8264{
845b51d6
PB
8265 bfd_boolean want_reloc;
8266
c19d1205
ZW
8267 if (inst.operands[0].reg == REG_PC)
8268 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 8269
c19d1205 8270 inst.instruction |= inst.operands[0].reg;
845b51d6
PB
8271 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
8272 it is for ARMv4t or earlier. */
8273 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
8274 if (object_arch && !ARM_CPU_HAS_FEATURE (*object_arch, arm_ext_v5))
8275 want_reloc = TRUE;
8276
5ad34203 8277#ifdef OBJ_ELF
845b51d6 8278 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
5ad34203 8279#endif
584206db 8280 want_reloc = FALSE;
845b51d6
PB
8281
8282 if (want_reloc)
8283 inst.reloc.type = BFD_RELOC_ARM_V4BX;
09d92015
MM
8284}
8285
c19d1205
ZW
8286
8287/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
8288
8289static void
c19d1205 8290do_bxj (void)
a737bd4d 8291{
c19d1205
ZW
8292 if (inst.operands[0].reg == REG_PC)
8293 as_tsktsk (_("use of r15 in bxj is not really useful"));
8294
8295 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
8296}
8297
c19d1205
ZW
8298/* Co-processor data operation:
8299 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
8300 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
8301static void
8302do_cdp (void)
8303{
8304 inst.instruction |= inst.operands[0].reg << 8;
8305 inst.instruction |= inst.operands[1].imm << 20;
8306 inst.instruction |= inst.operands[2].reg << 12;
8307 inst.instruction |= inst.operands[3].reg << 16;
8308 inst.instruction |= inst.operands[4].reg;
8309 inst.instruction |= inst.operands[5].imm << 5;
8310}
a737bd4d
NC
8311
8312static void
c19d1205 8313do_cmp (void)
a737bd4d 8314{
c19d1205
ZW
8315 inst.instruction |= inst.operands[0].reg << 16;
8316 encode_arm_shifter_operand (1);
a737bd4d
NC
8317}
8318
c19d1205
ZW
8319/* Transfer between coprocessor and ARM registers.
8320 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
8321 MRC2
8322 MCR{cond}
8323 MCR2
8324
8325 No special properties. */
09d92015 8326
dcbd0d71
MGD
8327struct deprecated_coproc_regs_s
8328{
8329 unsigned cp;
8330 int opc1;
8331 unsigned crn;
8332 unsigned crm;
8333 int opc2;
8334 arm_feature_set deprecated;
8335 arm_feature_set obsoleted;
8336 const char *dep_msg;
8337 const char *obs_msg;
8338};
8339
8340#define DEPR_ACCESS_V8 \
8341 N_("This coprocessor register access is deprecated in ARMv8")
8342
8343/* Table of all deprecated coprocessor registers. */
8344static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
8345{
8346 {15, 0, 7, 10, 5, /* CP15DMB. */
823d2571 8347 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8348 DEPR_ACCESS_V8, NULL},
8349 {15, 0, 7, 10, 4, /* CP15DSB. */
823d2571 8350 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8351 DEPR_ACCESS_V8, NULL},
8352 {15, 0, 7, 5, 4, /* CP15ISB. */
823d2571 8353 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8354 DEPR_ACCESS_V8, NULL},
8355 {14, 6, 1, 0, 0, /* TEEHBR. */
823d2571 8356 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8357 DEPR_ACCESS_V8, NULL},
8358 {14, 6, 0, 0, 0, /* TEECR. */
823d2571 8359 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8360 DEPR_ACCESS_V8, NULL},
8361};
8362
8363#undef DEPR_ACCESS_V8
8364
8365static const size_t deprecated_coproc_reg_count =
8366 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
8367
09d92015 8368static void
c19d1205 8369do_co_reg (void)
09d92015 8370{
fdfde340 8371 unsigned Rd;
dcbd0d71 8372 size_t i;
fdfde340
JM
8373
8374 Rd = inst.operands[2].reg;
8375 if (thumb_mode)
8376 {
8377 if (inst.instruction == 0xee000010
8378 || inst.instruction == 0xfe000010)
8379 /* MCR, MCR2 */
8380 reject_bad_reg (Rd);
8381 else
8382 /* MRC, MRC2 */
8383 constraint (Rd == REG_SP, BAD_SP);
8384 }
8385 else
8386 {
8387 /* MCR */
8388 if (inst.instruction == 0xe000010)
8389 constraint (Rd == REG_PC, BAD_PC);
8390 }
8391
dcbd0d71
MGD
8392 for (i = 0; i < deprecated_coproc_reg_count; ++i)
8393 {
8394 const struct deprecated_coproc_regs_s *r =
8395 deprecated_coproc_regs + i;
8396
8397 if (inst.operands[0].reg == r->cp
8398 && inst.operands[1].imm == r->opc1
8399 && inst.operands[3].reg == r->crn
8400 && inst.operands[4].reg == r->crm
8401 && inst.operands[5].imm == r->opc2)
8402 {
b10bf8c5 8403 if (! ARM_CPU_IS_ANY (cpu_variant)
477330fc 8404 && warn_on_deprecated
dcbd0d71 8405 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
5c3696f8 8406 as_tsktsk ("%s", r->dep_msg);
dcbd0d71
MGD
8407 }
8408 }
fdfde340 8409
c19d1205
ZW
8410 inst.instruction |= inst.operands[0].reg << 8;
8411 inst.instruction |= inst.operands[1].imm << 21;
fdfde340 8412 inst.instruction |= Rd << 12;
c19d1205
ZW
8413 inst.instruction |= inst.operands[3].reg << 16;
8414 inst.instruction |= inst.operands[4].reg;
8415 inst.instruction |= inst.operands[5].imm << 5;
8416}
09d92015 8417
c19d1205
ZW
8418/* Transfer between coprocessor register and pair of ARM registers.
8419 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
8420 MCRR2
8421 MRRC{cond}
8422 MRRC2
b99bd4ef 8423
c19d1205 8424 Two XScale instructions are special cases of these:
09d92015 8425
c19d1205
ZW
8426 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
8427 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 8428
5f4273c7 8429 Result unpredictable if Rd or Rn is R15. */
a737bd4d 8430
c19d1205
ZW
8431static void
8432do_co_reg2c (void)
8433{
fdfde340
JM
8434 unsigned Rd, Rn;
8435
8436 Rd = inst.operands[2].reg;
8437 Rn = inst.operands[3].reg;
8438
8439 if (thumb_mode)
8440 {
8441 reject_bad_reg (Rd);
8442 reject_bad_reg (Rn);
8443 }
8444 else
8445 {
8446 constraint (Rd == REG_PC, BAD_PC);
8447 constraint (Rn == REG_PC, BAD_PC);
8448 }
8449
c19d1205
ZW
8450 inst.instruction |= inst.operands[0].reg << 8;
8451 inst.instruction |= inst.operands[1].imm << 4;
fdfde340
JM
8452 inst.instruction |= Rd << 12;
8453 inst.instruction |= Rn << 16;
c19d1205 8454 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
8455}
8456
c19d1205
ZW
8457static void
8458do_cpsi (void)
8459{
8460 inst.instruction |= inst.operands[0].imm << 6;
a028a6f5
PB
8461 if (inst.operands[1].present)
8462 {
8463 inst.instruction |= CPSI_MMOD;
8464 inst.instruction |= inst.operands[1].imm;
8465 }
c19d1205 8466}
b99bd4ef 8467
62b3e311
PB
8468static void
8469do_dbg (void)
8470{
8471 inst.instruction |= inst.operands[0].imm;
8472}
8473
eea54501
MGD
8474static void
8475do_div (void)
8476{
8477 unsigned Rd, Rn, Rm;
8478
8479 Rd = inst.operands[0].reg;
8480 Rn = (inst.operands[1].present
8481 ? inst.operands[1].reg : Rd);
8482 Rm = inst.operands[2].reg;
8483
8484 constraint ((Rd == REG_PC), BAD_PC);
8485 constraint ((Rn == REG_PC), BAD_PC);
8486 constraint ((Rm == REG_PC), BAD_PC);
8487
8488 inst.instruction |= Rd << 16;
8489 inst.instruction |= Rn << 0;
8490 inst.instruction |= Rm << 8;
8491}
8492
b99bd4ef 8493static void
c19d1205 8494do_it (void)
b99bd4ef 8495{
c19d1205 8496 /* There is no IT instruction in ARM mode. We
e07e6e58
NC
8497 process it to do the validation as if in
8498 thumb mode, just in case the code gets
8499 assembled for thumb using the unified syntax. */
8500
c19d1205 8501 inst.size = 0;
e07e6e58
NC
8502 if (unified_syntax)
8503 {
8504 set_it_insn_type (IT_INSN);
8505 now_it.mask = (inst.instruction & 0xf) | 0x10;
8506 now_it.cc = inst.operands[0].imm;
8507 }
09d92015 8508}
b99bd4ef 8509
6530b175
NC
8510/* If there is only one register in the register list,
8511 then return its register number. Otherwise return -1. */
8512static int
8513only_one_reg_in_list (int range)
8514{
8515 int i = ffs (range) - 1;
8516 return (i > 15 || range != (1 << i)) ? -1 : i;
8517}
8518
09d92015 8519static void
6530b175 8520encode_ldmstm(int from_push_pop_mnem)
ea6ef066 8521{
c19d1205
ZW
8522 int base_reg = inst.operands[0].reg;
8523 int range = inst.operands[1].imm;
6530b175 8524 int one_reg;
ea6ef066 8525
c19d1205
ZW
8526 inst.instruction |= base_reg << 16;
8527 inst.instruction |= range;
ea6ef066 8528
c19d1205
ZW
8529 if (inst.operands[1].writeback)
8530 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 8531
c19d1205 8532 if (inst.operands[0].writeback)
ea6ef066 8533 {
c19d1205
ZW
8534 inst.instruction |= WRITE_BACK;
8535 /* Check for unpredictable uses of writeback. */
8536 if (inst.instruction & LOAD_BIT)
09d92015 8537 {
c19d1205
ZW
8538 /* Not allowed in LDM type 2. */
8539 if ((inst.instruction & LDM_TYPE_2_OR_3)
8540 && ((range & (1 << REG_PC)) == 0))
8541 as_warn (_("writeback of base register is UNPREDICTABLE"));
8542 /* Only allowed if base reg not in list for other types. */
8543 else if (range & (1 << base_reg))
8544 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
8545 }
8546 else /* STM. */
8547 {
8548 /* Not allowed for type 2. */
8549 if (inst.instruction & LDM_TYPE_2_OR_3)
8550 as_warn (_("writeback of base register is UNPREDICTABLE"));
8551 /* Only allowed if base reg not in list, or first in list. */
8552 else if ((range & (1 << base_reg))
8553 && (range & ((1 << base_reg) - 1)))
8554 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 8555 }
ea6ef066 8556 }
6530b175
NC
8557
8558 /* If PUSH/POP has only one register, then use the A2 encoding. */
8559 one_reg = only_one_reg_in_list (range);
8560 if (from_push_pop_mnem && one_reg >= 0)
8561 {
8562 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
8563
8564 inst.instruction &= A_COND_MASK;
8565 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
8566 inst.instruction |= one_reg << 12;
8567 }
8568}
8569
8570static void
8571do_ldmstm (void)
8572{
8573 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
a737bd4d
NC
8574}
8575
c19d1205
ZW
8576/* ARMv5TE load-consecutive (argument parse)
8577 Mode is like LDRH.
8578
8579 LDRccD R, mode
8580 STRccD R, mode. */
8581
a737bd4d 8582static void
c19d1205 8583do_ldrd (void)
a737bd4d 8584{
c19d1205 8585 constraint (inst.operands[0].reg % 2 != 0,
c56791bb 8586 _("first transfer register must be even"));
c19d1205
ZW
8587 constraint (inst.operands[1].present
8588 && inst.operands[1].reg != inst.operands[0].reg + 1,
c56791bb 8589 _("can only transfer two consecutive registers"));
c19d1205
ZW
8590 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
8591 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 8592
c19d1205
ZW
8593 if (!inst.operands[1].present)
8594 inst.operands[1].reg = inst.operands[0].reg + 1;
5f4273c7 8595
c56791bb
RE
8596 /* encode_arm_addr_mode_3 will diagnose overlap between the base
8597 register and the first register written; we have to diagnose
8598 overlap between the base and the second register written here. */
ea6ef066 8599
c56791bb
RE
8600 if (inst.operands[2].reg == inst.operands[1].reg
8601 && (inst.operands[2].writeback || inst.operands[2].postind))
8602 as_warn (_("base register written back, and overlaps "
8603 "second transfer register"));
b05fe5cf 8604
c56791bb
RE
8605 if (!(inst.instruction & V4_STR_BIT))
8606 {
c19d1205 8607 /* For an index-register load, the index register must not overlap the
c56791bb
RE
8608 destination (even if not write-back). */
8609 if (inst.operands[2].immisreg
8610 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
8611 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
8612 as_warn (_("index register overlaps transfer register"));
b05fe5cf 8613 }
c19d1205
ZW
8614 inst.instruction |= inst.operands[0].reg << 12;
8615 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
8616}
8617
8618static void
c19d1205 8619do_ldrex (void)
b05fe5cf 8620{
c19d1205
ZW
8621 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
8622 || inst.operands[1].postind || inst.operands[1].writeback
8623 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
8624 || inst.operands[1].negative
8625 /* This can arise if the programmer has written
8626 strex rN, rM, foo
8627 or if they have mistakenly used a register name as the last
8628 operand, eg:
8629 strex rN, rM, rX
8630 It is very difficult to distinguish between these two cases
8631 because "rX" might actually be a label. ie the register
8632 name has been occluded by a symbol of the same name. So we
8633 just generate a general 'bad addressing mode' type error
8634 message and leave it up to the programmer to discover the
8635 true cause and fix their mistake. */
8636 || (inst.operands[1].reg == REG_PC),
8637 BAD_ADDR_MODE);
b05fe5cf 8638
c19d1205
ZW
8639 constraint (inst.reloc.exp.X_op != O_constant
8640 || inst.reloc.exp.X_add_number != 0,
8641 _("offset must be zero in ARM encoding"));
b05fe5cf 8642
5be8be5d
DG
8643 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
8644
c19d1205
ZW
8645 inst.instruction |= inst.operands[0].reg << 12;
8646 inst.instruction |= inst.operands[1].reg << 16;
8647 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
8648}
8649
8650static void
c19d1205 8651do_ldrexd (void)
b05fe5cf 8652{
c19d1205
ZW
8653 constraint (inst.operands[0].reg % 2 != 0,
8654 _("even register required"));
8655 constraint (inst.operands[1].present
8656 && inst.operands[1].reg != inst.operands[0].reg + 1,
8657 _("can only load two consecutive registers"));
8658 /* If op 1 were present and equal to PC, this function wouldn't
8659 have been called in the first place. */
8660 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 8661
c19d1205
ZW
8662 inst.instruction |= inst.operands[0].reg << 12;
8663 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
8664}
8665
1be5fd2e
NC
8666/* In both ARM and thumb state 'ldr pc, #imm' with an immediate
8667 which is not a multiple of four is UNPREDICTABLE. */
8668static void
8669check_ldr_r15_aligned (void)
8670{
8671 constraint (!(inst.operands[1].immisreg)
8672 && (inst.operands[0].reg == REG_PC
8673 && inst.operands[1].reg == REG_PC
8674 && (inst.reloc.exp.X_add_number & 0x3)),
8675 _("ldr to register 15 must be 4-byte alligned"));
8676}
8677
b05fe5cf 8678static void
c19d1205 8679do_ldst (void)
b05fe5cf 8680{
c19d1205
ZW
8681 inst.instruction |= inst.operands[0].reg << 12;
8682 if (!inst.operands[1].isreg)
8335d6aa 8683 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/FALSE))
b05fe5cf 8684 return;
c19d1205 8685 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
1be5fd2e 8686 check_ldr_r15_aligned ();
b05fe5cf
ZW
8687}
8688
8689static void
c19d1205 8690do_ldstt (void)
b05fe5cf 8691{
c19d1205
ZW
8692 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8693 reject [Rn,...]. */
8694 if (inst.operands[1].preind)
b05fe5cf 8695 {
bd3ba5d1
NC
8696 constraint (inst.reloc.exp.X_op != O_constant
8697 || inst.reloc.exp.X_add_number != 0,
c19d1205 8698 _("this instruction requires a post-indexed address"));
b05fe5cf 8699
c19d1205
ZW
8700 inst.operands[1].preind = 0;
8701 inst.operands[1].postind = 1;
8702 inst.operands[1].writeback = 1;
b05fe5cf 8703 }
c19d1205
ZW
8704 inst.instruction |= inst.operands[0].reg << 12;
8705 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
8706}
b05fe5cf 8707
c19d1205 8708/* Halfword and signed-byte load/store operations. */
b05fe5cf 8709
c19d1205
ZW
8710static void
8711do_ldstv4 (void)
8712{
ff4a8d2b 8713 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205
ZW
8714 inst.instruction |= inst.operands[0].reg << 12;
8715 if (!inst.operands[1].isreg)
8335d6aa 8716 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/TRUE))
b05fe5cf 8717 return;
c19d1205 8718 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
8719}
8720
8721static void
c19d1205 8722do_ldsttv4 (void)
b05fe5cf 8723{
c19d1205
ZW
8724 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8725 reject [Rn,...]. */
8726 if (inst.operands[1].preind)
b05fe5cf 8727 {
bd3ba5d1
NC
8728 constraint (inst.reloc.exp.X_op != O_constant
8729 || inst.reloc.exp.X_add_number != 0,
c19d1205 8730 _("this instruction requires a post-indexed address"));
b05fe5cf 8731
c19d1205
ZW
8732 inst.operands[1].preind = 0;
8733 inst.operands[1].postind = 1;
8734 inst.operands[1].writeback = 1;
b05fe5cf 8735 }
c19d1205
ZW
8736 inst.instruction |= inst.operands[0].reg << 12;
8737 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
8738}
b05fe5cf 8739
c19d1205
ZW
8740/* Co-processor register load/store.
8741 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
8742static void
8743do_lstc (void)
8744{
8745 inst.instruction |= inst.operands[0].reg << 8;
8746 inst.instruction |= inst.operands[1].reg << 12;
8747 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
8748}
8749
b05fe5cf 8750static void
c19d1205 8751do_mlas (void)
b05fe5cf 8752{
8fb9d7b9 8753 /* This restriction does not apply to mls (nor to mla in v6 or later). */
c19d1205 8754 if (inst.operands[0].reg == inst.operands[1].reg
8fb9d7b9 8755 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
c19d1205 8756 && !(inst.instruction & 0x00400000))
8fb9d7b9 8757 as_tsktsk (_("Rd and Rm should be different in mla"));
b05fe5cf 8758
c19d1205
ZW
8759 inst.instruction |= inst.operands[0].reg << 16;
8760 inst.instruction |= inst.operands[1].reg;
8761 inst.instruction |= inst.operands[2].reg << 8;
8762 inst.instruction |= inst.operands[3].reg << 12;
c19d1205 8763}
b05fe5cf 8764
c19d1205
ZW
8765static void
8766do_mov (void)
8767{
8768 inst.instruction |= inst.operands[0].reg << 12;
8769 encode_arm_shifter_operand (1);
8770}
b05fe5cf 8771
c19d1205
ZW
8772/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
8773static void
8774do_mov16 (void)
8775{
b6895b4f
PB
8776 bfd_vma imm;
8777 bfd_boolean top;
8778
8779 top = (inst.instruction & 0x00400000) != 0;
8780 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
8781 _(":lower16: not allowed this instruction"));
8782 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
8783 _(":upper16: not allowed instruction"));
c19d1205 8784 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
8785 if (inst.reloc.type == BFD_RELOC_UNUSED)
8786 {
8787 imm = inst.reloc.exp.X_add_number;
8788 /* The value is in two pieces: 0:11, 16:19. */
8789 inst.instruction |= (imm & 0x00000fff);
8790 inst.instruction |= (imm & 0x0000f000) << 4;
8791 }
b05fe5cf 8792}
b99bd4ef 8793
037e8744
JB
8794static void do_vfp_nsyn_opcode (const char *);
8795
8796static int
8797do_vfp_nsyn_mrs (void)
8798{
8799 if (inst.operands[0].isvec)
8800 {
8801 if (inst.operands[1].reg != 1)
477330fc 8802 first_error (_("operand 1 must be FPSCR"));
037e8744
JB
8803 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
8804 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
8805 do_vfp_nsyn_opcode ("fmstat");
8806 }
8807 else if (inst.operands[1].isvec)
8808 do_vfp_nsyn_opcode ("fmrx");
8809 else
8810 return FAIL;
5f4273c7 8811
037e8744
JB
8812 return SUCCESS;
8813}
8814
8815static int
8816do_vfp_nsyn_msr (void)
8817{
8818 if (inst.operands[0].isvec)
8819 do_vfp_nsyn_opcode ("fmxr");
8820 else
8821 return FAIL;
8822
8823 return SUCCESS;
8824}
8825
f7c21dc7
NC
8826static void
8827do_vmrs (void)
8828{
8829 unsigned Rt = inst.operands[0].reg;
fa94de6b 8830
16d02dc9 8831 if (thumb_mode && Rt == REG_SP)
f7c21dc7
NC
8832 {
8833 inst.error = BAD_SP;
8834 return;
8835 }
8836
8837 /* APSR_ sets isvec. All other refs to PC are illegal. */
16d02dc9 8838 if (!inst.operands[0].isvec && Rt == REG_PC)
f7c21dc7
NC
8839 {
8840 inst.error = BAD_PC;
8841 return;
8842 }
8843
16d02dc9
JB
8844 /* If we get through parsing the register name, we just insert the number
8845 generated into the instruction without further validation. */
8846 inst.instruction |= (inst.operands[1].reg << 16);
f7c21dc7
NC
8847 inst.instruction |= (Rt << 12);
8848}
8849
8850static void
8851do_vmsr (void)
8852{
8853 unsigned Rt = inst.operands[1].reg;
fa94de6b 8854
f7c21dc7
NC
8855 if (thumb_mode)
8856 reject_bad_reg (Rt);
8857 else if (Rt == REG_PC)
8858 {
8859 inst.error = BAD_PC;
8860 return;
8861 }
8862
16d02dc9
JB
8863 /* If we get through parsing the register name, we just insert the number
8864 generated into the instruction without further validation. */
8865 inst.instruction |= (inst.operands[0].reg << 16);
f7c21dc7
NC
8866 inst.instruction |= (Rt << 12);
8867}
8868
b99bd4ef 8869static void
c19d1205 8870do_mrs (void)
b99bd4ef 8871{
90ec0d68
MGD
8872 unsigned br;
8873
037e8744
JB
8874 if (do_vfp_nsyn_mrs () == SUCCESS)
8875 return;
8876
ff4a8d2b 8877 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205 8878 inst.instruction |= inst.operands[0].reg << 12;
90ec0d68
MGD
8879
8880 if (inst.operands[1].isreg)
8881 {
8882 br = inst.operands[1].reg;
8883 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf000))
8884 as_bad (_("bad register for mrs"));
8885 }
8886 else
8887 {
8888 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
8889 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
8890 != (PSR_c|PSR_f),
d2cd1205 8891 _("'APSR', 'CPSR' or 'SPSR' expected"));
90ec0d68
MGD
8892 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
8893 }
8894
8895 inst.instruction |= br;
c19d1205 8896}
b99bd4ef 8897
c19d1205
ZW
8898/* Two possible forms:
8899 "{C|S}PSR_<field>, Rm",
8900 "{C|S}PSR_f, #expression". */
b99bd4ef 8901
c19d1205
ZW
8902static void
8903do_msr (void)
8904{
037e8744
JB
8905 if (do_vfp_nsyn_msr () == SUCCESS)
8906 return;
8907
c19d1205
ZW
8908 inst.instruction |= inst.operands[0].imm;
8909 if (inst.operands[1].isreg)
8910 inst.instruction |= inst.operands[1].reg;
8911 else
b99bd4ef 8912 {
c19d1205
ZW
8913 inst.instruction |= INST_IMMEDIATE;
8914 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
8915 inst.reloc.pc_rel = 0;
b99bd4ef 8916 }
b99bd4ef
NC
8917}
8918
c19d1205
ZW
8919static void
8920do_mul (void)
a737bd4d 8921{
ff4a8d2b
NC
8922 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
8923
c19d1205
ZW
8924 if (!inst.operands[2].present)
8925 inst.operands[2].reg = inst.operands[0].reg;
8926 inst.instruction |= inst.operands[0].reg << 16;
8927 inst.instruction |= inst.operands[1].reg;
8928 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 8929
8fb9d7b9
MS
8930 if (inst.operands[0].reg == inst.operands[1].reg
8931 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
8932 as_tsktsk (_("Rd and Rm should be different in mul"));
a737bd4d
NC
8933}
8934
c19d1205
ZW
8935/* Long Multiply Parser
8936 UMULL RdLo, RdHi, Rm, Rs
8937 SMULL RdLo, RdHi, Rm, Rs
8938 UMLAL RdLo, RdHi, Rm, Rs
8939 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
8940
8941static void
c19d1205 8942do_mull (void)
b99bd4ef 8943{
c19d1205
ZW
8944 inst.instruction |= inst.operands[0].reg << 12;
8945 inst.instruction |= inst.operands[1].reg << 16;
8946 inst.instruction |= inst.operands[2].reg;
8947 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 8948
682b27ad
PB
8949 /* rdhi and rdlo must be different. */
8950 if (inst.operands[0].reg == inst.operands[1].reg)
8951 as_tsktsk (_("rdhi and rdlo must be different"));
8952
8953 /* rdhi, rdlo and rm must all be different before armv6. */
8954 if ((inst.operands[0].reg == inst.operands[2].reg
c19d1205 8955 || inst.operands[1].reg == inst.operands[2].reg)
682b27ad 8956 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
c19d1205
ZW
8957 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
8958}
b99bd4ef 8959
c19d1205
ZW
8960static void
8961do_nop (void)
8962{
e7495e45
NS
8963 if (inst.operands[0].present
8964 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
c19d1205
ZW
8965 {
8966 /* Architectural NOP hints are CPSR sets with no bits selected. */
8967 inst.instruction &= 0xf0000000;
e7495e45
NS
8968 inst.instruction |= 0x0320f000;
8969 if (inst.operands[0].present)
8970 inst.instruction |= inst.operands[0].imm;
c19d1205 8971 }
b99bd4ef
NC
8972}
8973
c19d1205
ZW
8974/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
8975 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
8976 Condition defaults to COND_ALWAYS.
8977 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
8978
8979static void
c19d1205 8980do_pkhbt (void)
b99bd4ef 8981{
c19d1205
ZW
8982 inst.instruction |= inst.operands[0].reg << 12;
8983 inst.instruction |= inst.operands[1].reg << 16;
8984 inst.instruction |= inst.operands[2].reg;
8985 if (inst.operands[3].present)
8986 encode_arm_shift (3);
8987}
b99bd4ef 8988
c19d1205 8989/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 8990
c19d1205
ZW
8991static void
8992do_pkhtb (void)
8993{
8994 if (!inst.operands[3].present)
b99bd4ef 8995 {
c19d1205
ZW
8996 /* If the shift specifier is omitted, turn the instruction
8997 into pkhbt rd, rm, rn. */
8998 inst.instruction &= 0xfff00010;
8999 inst.instruction |= inst.operands[0].reg << 12;
9000 inst.instruction |= inst.operands[1].reg;
9001 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9002 }
9003 else
9004 {
c19d1205
ZW
9005 inst.instruction |= inst.operands[0].reg << 12;
9006 inst.instruction |= inst.operands[1].reg << 16;
9007 inst.instruction |= inst.operands[2].reg;
9008 encode_arm_shift (3);
b99bd4ef
NC
9009 }
9010}
9011
c19d1205 9012/* ARMv5TE: Preload-Cache
60e5ef9f 9013 MP Extensions: Preload for write
c19d1205 9014
60e5ef9f 9015 PLD(W) <addr_mode>
c19d1205
ZW
9016
9017 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
9018
9019static void
c19d1205 9020do_pld (void)
b99bd4ef 9021{
c19d1205
ZW
9022 constraint (!inst.operands[0].isreg,
9023 _("'[' expected after PLD mnemonic"));
9024 constraint (inst.operands[0].postind,
9025 _("post-indexed expression used in preload instruction"));
9026 constraint (inst.operands[0].writeback,
9027 _("writeback used in preload instruction"));
9028 constraint (!inst.operands[0].preind,
9029 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
9030 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
9031}
b99bd4ef 9032
62b3e311
PB
9033/* ARMv7: PLI <addr_mode> */
9034static void
9035do_pli (void)
9036{
9037 constraint (!inst.operands[0].isreg,
9038 _("'[' expected after PLI mnemonic"));
9039 constraint (inst.operands[0].postind,
9040 _("post-indexed expression used in preload instruction"));
9041 constraint (inst.operands[0].writeback,
9042 _("writeback used in preload instruction"));
9043 constraint (!inst.operands[0].preind,
9044 _("unindexed addressing used in preload instruction"));
9045 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
9046 inst.instruction &= ~PRE_INDEX;
9047}
9048
c19d1205
ZW
9049static void
9050do_push_pop (void)
9051{
5e0d7f77
MP
9052 constraint (inst.operands[0].writeback,
9053 _("push/pop do not support {reglist}^"));
c19d1205
ZW
9054 inst.operands[1] = inst.operands[0];
9055 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
9056 inst.operands[0].isreg = 1;
9057 inst.operands[0].writeback = 1;
9058 inst.operands[0].reg = REG_SP;
6530b175 9059 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
c19d1205 9060}
b99bd4ef 9061
c19d1205
ZW
9062/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
9063 word at the specified address and the following word
9064 respectively.
9065 Unconditionally executed.
9066 Error if Rn is R15. */
b99bd4ef 9067
c19d1205
ZW
9068static void
9069do_rfe (void)
9070{
9071 inst.instruction |= inst.operands[0].reg << 16;
9072 if (inst.operands[0].writeback)
9073 inst.instruction |= WRITE_BACK;
9074}
b99bd4ef 9075
c19d1205 9076/* ARM V6 ssat (argument parse). */
b99bd4ef 9077
c19d1205
ZW
9078static void
9079do_ssat (void)
9080{
9081 inst.instruction |= inst.operands[0].reg << 12;
9082 inst.instruction |= (inst.operands[1].imm - 1) << 16;
9083 inst.instruction |= inst.operands[2].reg;
b99bd4ef 9084
c19d1205
ZW
9085 if (inst.operands[3].present)
9086 encode_arm_shift (3);
b99bd4ef
NC
9087}
9088
c19d1205 9089/* ARM V6 usat (argument parse). */
b99bd4ef
NC
9090
9091static void
c19d1205 9092do_usat (void)
b99bd4ef 9093{
c19d1205
ZW
9094 inst.instruction |= inst.operands[0].reg << 12;
9095 inst.instruction |= inst.operands[1].imm << 16;
9096 inst.instruction |= inst.operands[2].reg;
b99bd4ef 9097
c19d1205
ZW
9098 if (inst.operands[3].present)
9099 encode_arm_shift (3);
b99bd4ef
NC
9100}
9101
c19d1205 9102/* ARM V6 ssat16 (argument parse). */
09d92015
MM
9103
9104static void
c19d1205 9105do_ssat16 (void)
09d92015 9106{
c19d1205
ZW
9107 inst.instruction |= inst.operands[0].reg << 12;
9108 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
9109 inst.instruction |= inst.operands[2].reg;
09d92015
MM
9110}
9111
c19d1205
ZW
9112static void
9113do_usat16 (void)
a737bd4d 9114{
c19d1205
ZW
9115 inst.instruction |= inst.operands[0].reg << 12;
9116 inst.instruction |= inst.operands[1].imm << 16;
9117 inst.instruction |= inst.operands[2].reg;
9118}
a737bd4d 9119
c19d1205
ZW
9120/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
9121 preserving the other bits.
a737bd4d 9122
c19d1205
ZW
9123 setend <endian_specifier>, where <endian_specifier> is either
9124 BE or LE. */
a737bd4d 9125
c19d1205
ZW
9126static void
9127do_setend (void)
9128{
12e37cbc
MGD
9129 if (warn_on_deprecated
9130 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
5c3696f8 9131 as_tsktsk (_("setend use is deprecated for ARMv8"));
12e37cbc 9132
c19d1205
ZW
9133 if (inst.operands[0].imm)
9134 inst.instruction |= 0x200;
a737bd4d
NC
9135}
9136
9137static void
c19d1205 9138do_shift (void)
a737bd4d 9139{
c19d1205
ZW
9140 unsigned int Rm = (inst.operands[1].present
9141 ? inst.operands[1].reg
9142 : inst.operands[0].reg);
a737bd4d 9143
c19d1205
ZW
9144 inst.instruction |= inst.operands[0].reg << 12;
9145 inst.instruction |= Rm;
9146 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 9147 {
c19d1205
ZW
9148 inst.instruction |= inst.operands[2].reg << 8;
9149 inst.instruction |= SHIFT_BY_REG;
94342ec3
NC
9150 /* PR 12854: Error on extraneous shifts. */
9151 constraint (inst.operands[2].shifted,
9152 _("extraneous shift as part of operand to shift insn"));
a737bd4d
NC
9153 }
9154 else
c19d1205 9155 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
9156}
9157
09d92015 9158static void
3eb17e6b 9159do_smc (void)
09d92015 9160{
3eb17e6b 9161 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 9162 inst.reloc.pc_rel = 0;
09d92015
MM
9163}
9164
90ec0d68
MGD
9165static void
9166do_hvc (void)
9167{
9168 inst.reloc.type = BFD_RELOC_ARM_HVC;
9169 inst.reloc.pc_rel = 0;
9170}
9171
09d92015 9172static void
c19d1205 9173do_swi (void)
09d92015 9174{
c19d1205
ZW
9175 inst.reloc.type = BFD_RELOC_ARM_SWI;
9176 inst.reloc.pc_rel = 0;
09d92015
MM
9177}
9178
c19d1205
ZW
9179/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
9180 SMLAxy{cond} Rd,Rm,Rs,Rn
9181 SMLAWy{cond} Rd,Rm,Rs,Rn
9182 Error if any register is R15. */
e16bb312 9183
c19d1205
ZW
9184static void
9185do_smla (void)
e16bb312 9186{
c19d1205
ZW
9187 inst.instruction |= inst.operands[0].reg << 16;
9188 inst.instruction |= inst.operands[1].reg;
9189 inst.instruction |= inst.operands[2].reg << 8;
9190 inst.instruction |= inst.operands[3].reg << 12;
9191}
a737bd4d 9192
c19d1205
ZW
9193/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
9194 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
9195 Error if any register is R15.
9196 Warning if Rdlo == Rdhi. */
a737bd4d 9197
c19d1205
ZW
9198static void
9199do_smlal (void)
9200{
9201 inst.instruction |= inst.operands[0].reg << 12;
9202 inst.instruction |= inst.operands[1].reg << 16;
9203 inst.instruction |= inst.operands[2].reg;
9204 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 9205
c19d1205
ZW
9206 if (inst.operands[0].reg == inst.operands[1].reg)
9207 as_tsktsk (_("rdhi and rdlo must be different"));
9208}
a737bd4d 9209
c19d1205
ZW
9210/* ARM V5E (El Segundo) signed-multiply (argument parse)
9211 SMULxy{cond} Rd,Rm,Rs
9212 Error if any register is R15. */
a737bd4d 9213
c19d1205
ZW
9214static void
9215do_smul (void)
9216{
9217 inst.instruction |= inst.operands[0].reg << 16;
9218 inst.instruction |= inst.operands[1].reg;
9219 inst.instruction |= inst.operands[2].reg << 8;
9220}
a737bd4d 9221
b6702015
PB
9222/* ARM V6 srs (argument parse). The variable fields in the encoding are
9223 the same for both ARM and Thumb-2. */
a737bd4d 9224
c19d1205
ZW
9225static void
9226do_srs (void)
9227{
b6702015
PB
9228 int reg;
9229
9230 if (inst.operands[0].present)
9231 {
9232 reg = inst.operands[0].reg;
fdfde340 9233 constraint (reg != REG_SP, _("SRS base register must be r13"));
b6702015
PB
9234 }
9235 else
fdfde340 9236 reg = REG_SP;
b6702015
PB
9237
9238 inst.instruction |= reg << 16;
9239 inst.instruction |= inst.operands[1].imm;
9240 if (inst.operands[0].writeback || inst.operands[1].writeback)
c19d1205
ZW
9241 inst.instruction |= WRITE_BACK;
9242}
a737bd4d 9243
c19d1205 9244/* ARM V6 strex (argument parse). */
a737bd4d 9245
c19d1205
ZW
9246static void
9247do_strex (void)
9248{
9249 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
9250 || inst.operands[2].postind || inst.operands[2].writeback
9251 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
9252 || inst.operands[2].negative
9253 /* See comment in do_ldrex(). */
9254 || (inst.operands[2].reg == REG_PC),
9255 BAD_ADDR_MODE);
a737bd4d 9256
c19d1205
ZW
9257 constraint (inst.operands[0].reg == inst.operands[1].reg
9258 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 9259
c19d1205
ZW
9260 constraint (inst.reloc.exp.X_op != O_constant
9261 || inst.reloc.exp.X_add_number != 0,
9262 _("offset must be zero in ARM encoding"));
a737bd4d 9263
c19d1205
ZW
9264 inst.instruction |= inst.operands[0].reg << 12;
9265 inst.instruction |= inst.operands[1].reg;
9266 inst.instruction |= inst.operands[2].reg << 16;
9267 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
9268}
9269
877807f8
NC
9270static void
9271do_t_strexbh (void)
9272{
9273 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
9274 || inst.operands[2].postind || inst.operands[2].writeback
9275 || inst.operands[2].immisreg || inst.operands[2].shifted
9276 || inst.operands[2].negative,
9277 BAD_ADDR_MODE);
9278
9279 constraint (inst.operands[0].reg == inst.operands[1].reg
9280 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9281
9282 do_rm_rd_rn ();
9283}
9284
e16bb312 9285static void
c19d1205 9286do_strexd (void)
e16bb312 9287{
c19d1205
ZW
9288 constraint (inst.operands[1].reg % 2 != 0,
9289 _("even register required"));
9290 constraint (inst.operands[2].present
9291 && inst.operands[2].reg != inst.operands[1].reg + 1,
9292 _("can only store two consecutive registers"));
9293 /* If op 2 were present and equal to PC, this function wouldn't
9294 have been called in the first place. */
9295 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 9296
c19d1205
ZW
9297 constraint (inst.operands[0].reg == inst.operands[1].reg
9298 || inst.operands[0].reg == inst.operands[1].reg + 1
9299 || inst.operands[0].reg == inst.operands[3].reg,
9300 BAD_OVERLAP);
e16bb312 9301
c19d1205
ZW
9302 inst.instruction |= inst.operands[0].reg << 12;
9303 inst.instruction |= inst.operands[1].reg;
9304 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
9305}
9306
9eb6c0f1
MGD
9307/* ARM V8 STRL. */
9308static void
4b8c8c02 9309do_stlex (void)
9eb6c0f1
MGD
9310{
9311 constraint (inst.operands[0].reg == inst.operands[1].reg
9312 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9313
9314 do_rd_rm_rn ();
9315}
9316
9317static void
4b8c8c02 9318do_t_stlex (void)
9eb6c0f1
MGD
9319{
9320 constraint (inst.operands[0].reg == inst.operands[1].reg
9321 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9322
9323 do_rm_rd_rn ();
9324}
9325
c19d1205
ZW
9326/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
9327 extends it to 32-bits, and adds the result to a value in another
9328 register. You can specify a rotation by 0, 8, 16, or 24 bits
9329 before extracting the 16-bit value.
9330 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
9331 Condition defaults to COND_ALWAYS.
9332 Error if any register uses R15. */
9333
e16bb312 9334static void
c19d1205 9335do_sxtah (void)
e16bb312 9336{
c19d1205
ZW
9337 inst.instruction |= inst.operands[0].reg << 12;
9338 inst.instruction |= inst.operands[1].reg << 16;
9339 inst.instruction |= inst.operands[2].reg;
9340 inst.instruction |= inst.operands[3].imm << 10;
9341}
e16bb312 9342
c19d1205 9343/* ARM V6 SXTH.
e16bb312 9344
c19d1205
ZW
9345 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
9346 Condition defaults to COND_ALWAYS.
9347 Error if any register uses R15. */
e16bb312
NC
9348
9349static void
c19d1205 9350do_sxth (void)
e16bb312 9351{
c19d1205
ZW
9352 inst.instruction |= inst.operands[0].reg << 12;
9353 inst.instruction |= inst.operands[1].reg;
9354 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 9355}
c19d1205
ZW
9356\f
9357/* VFP instructions. In a logical order: SP variant first, monad
9358 before dyad, arithmetic then move then load/store. */
e16bb312
NC
9359
9360static void
c19d1205 9361do_vfp_sp_monadic (void)
e16bb312 9362{
5287ad62
JB
9363 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9364 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
9365}
9366
9367static void
c19d1205 9368do_vfp_sp_dyadic (void)
e16bb312 9369{
5287ad62
JB
9370 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9371 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
9372 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
9373}
9374
9375static void
c19d1205 9376do_vfp_sp_compare_z (void)
e16bb312 9377{
5287ad62 9378 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
9379}
9380
9381static void
c19d1205 9382do_vfp_dp_sp_cvt (void)
e16bb312 9383{
5287ad62
JB
9384 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9385 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
9386}
9387
9388static void
c19d1205 9389do_vfp_sp_dp_cvt (void)
e16bb312 9390{
5287ad62
JB
9391 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9392 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
9393}
9394
9395static void
c19d1205 9396do_vfp_reg_from_sp (void)
e16bb312 9397{
c19d1205 9398 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 9399 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
9400}
9401
9402static void
c19d1205 9403do_vfp_reg2_from_sp2 (void)
e16bb312 9404{
c19d1205
ZW
9405 constraint (inst.operands[2].imm != 2,
9406 _("only two consecutive VFP SP registers allowed here"));
9407 inst.instruction |= inst.operands[0].reg << 12;
9408 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 9409 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
9410}
9411
9412static void
c19d1205 9413do_vfp_sp_from_reg (void)
e16bb312 9414{
5287ad62 9415 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 9416 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
9417}
9418
9419static void
c19d1205 9420do_vfp_sp2_from_reg2 (void)
e16bb312 9421{
c19d1205
ZW
9422 constraint (inst.operands[0].imm != 2,
9423 _("only two consecutive VFP SP registers allowed here"));
5287ad62 9424 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
9425 inst.instruction |= inst.operands[1].reg << 12;
9426 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
9427}
9428
9429static void
c19d1205 9430do_vfp_sp_ldst (void)
e16bb312 9431{
5287ad62 9432 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 9433 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
9434}
9435
9436static void
c19d1205 9437do_vfp_dp_ldst (void)
e16bb312 9438{
5287ad62 9439 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 9440 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
9441}
9442
c19d1205 9443
e16bb312 9444static void
c19d1205 9445vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 9446{
c19d1205
ZW
9447 if (inst.operands[0].writeback)
9448 inst.instruction |= WRITE_BACK;
9449 else
9450 constraint (ldstm_type != VFP_LDSTMIA,
9451 _("this addressing mode requires base-register writeback"));
9452 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 9453 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 9454 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
9455}
9456
9457static void
c19d1205 9458vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 9459{
c19d1205 9460 int count;
e16bb312 9461
c19d1205
ZW
9462 if (inst.operands[0].writeback)
9463 inst.instruction |= WRITE_BACK;
9464 else
9465 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
9466 _("this addressing mode requires base-register writeback"));
e16bb312 9467
c19d1205 9468 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 9469 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 9470
c19d1205
ZW
9471 count = inst.operands[1].imm << 1;
9472 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
9473 count += 1;
e16bb312 9474
c19d1205 9475 inst.instruction |= count;
e16bb312
NC
9476}
9477
9478static void
c19d1205 9479do_vfp_sp_ldstmia (void)
e16bb312 9480{
c19d1205 9481 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
9482}
9483
9484static void
c19d1205 9485do_vfp_sp_ldstmdb (void)
e16bb312 9486{
c19d1205 9487 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
9488}
9489
9490static void
c19d1205 9491do_vfp_dp_ldstmia (void)
e16bb312 9492{
c19d1205 9493 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
9494}
9495
9496static void
c19d1205 9497do_vfp_dp_ldstmdb (void)
e16bb312 9498{
c19d1205 9499 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
9500}
9501
9502static void
c19d1205 9503do_vfp_xp_ldstmia (void)
e16bb312 9504{
c19d1205
ZW
9505 vfp_dp_ldstm (VFP_LDSTMIAX);
9506}
e16bb312 9507
c19d1205
ZW
9508static void
9509do_vfp_xp_ldstmdb (void)
9510{
9511 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 9512}
5287ad62
JB
9513
9514static void
9515do_vfp_dp_rd_rm (void)
9516{
9517 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9518 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
9519}
9520
9521static void
9522do_vfp_dp_rn_rd (void)
9523{
9524 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
9525 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
9526}
9527
9528static void
9529do_vfp_dp_rd_rn (void)
9530{
9531 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9532 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
9533}
9534
9535static void
9536do_vfp_dp_rd_rn_rm (void)
9537{
9538 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9539 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
9540 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
9541}
9542
9543static void
9544do_vfp_dp_rd (void)
9545{
9546 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9547}
9548
9549static void
9550do_vfp_dp_rm_rd_rn (void)
9551{
9552 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
9553 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
9554 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
9555}
9556
9557/* VFPv3 instructions. */
9558static void
9559do_vfp_sp_const (void)
9560{
9561 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
00249aaa
PB
9562 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9563 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9564}
9565
9566static void
9567do_vfp_dp_const (void)
9568{
9569 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
00249aaa
PB
9570 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9571 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9572}
9573
9574static void
9575vfp_conv (int srcsize)
9576{
5f1af56b
MGD
9577 int immbits = srcsize - inst.operands[1].imm;
9578
fa94de6b
RM
9579 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
9580 {
5f1af56b 9581 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
477330fc 9582 i.e. immbits must be in range 0 - 16. */
5f1af56b
MGD
9583 inst.error = _("immediate value out of range, expected range [0, 16]");
9584 return;
9585 }
fa94de6b 9586 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
5f1af56b
MGD
9587 {
9588 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
477330fc 9589 i.e. immbits must be in range 0 - 31. */
5f1af56b
MGD
9590 inst.error = _("immediate value out of range, expected range [1, 32]");
9591 return;
9592 }
9593
5287ad62
JB
9594 inst.instruction |= (immbits & 1) << 5;
9595 inst.instruction |= (immbits >> 1);
9596}
9597
9598static void
9599do_vfp_sp_conv_16 (void)
9600{
9601 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9602 vfp_conv (16);
9603}
9604
9605static void
9606do_vfp_dp_conv_16 (void)
9607{
9608 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9609 vfp_conv (16);
9610}
9611
9612static void
9613do_vfp_sp_conv_32 (void)
9614{
9615 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9616 vfp_conv (32);
9617}
9618
9619static void
9620do_vfp_dp_conv_32 (void)
9621{
9622 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9623 vfp_conv (32);
9624}
c19d1205
ZW
9625\f
9626/* FPA instructions. Also in a logical order. */
e16bb312 9627
c19d1205
ZW
9628static void
9629do_fpa_cmp (void)
9630{
9631 inst.instruction |= inst.operands[0].reg << 16;
9632 inst.instruction |= inst.operands[1].reg;
9633}
b99bd4ef
NC
9634
9635static void
c19d1205 9636do_fpa_ldmstm (void)
b99bd4ef 9637{
c19d1205
ZW
9638 inst.instruction |= inst.operands[0].reg << 12;
9639 switch (inst.operands[1].imm)
9640 {
9641 case 1: inst.instruction |= CP_T_X; break;
9642 case 2: inst.instruction |= CP_T_Y; break;
9643 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
9644 case 4: break;
9645 default: abort ();
9646 }
b99bd4ef 9647
c19d1205
ZW
9648 if (inst.instruction & (PRE_INDEX | INDEX_UP))
9649 {
9650 /* The instruction specified "ea" or "fd", so we can only accept
9651 [Rn]{!}. The instruction does not really support stacking or
9652 unstacking, so we have to emulate these by setting appropriate
9653 bits and offsets. */
9654 constraint (inst.reloc.exp.X_op != O_constant
9655 || inst.reloc.exp.X_add_number != 0,
9656 _("this instruction does not support indexing"));
b99bd4ef 9657
c19d1205
ZW
9658 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
9659 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 9660
c19d1205
ZW
9661 if (!(inst.instruction & INDEX_UP))
9662 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 9663
c19d1205
ZW
9664 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
9665 {
9666 inst.operands[2].preind = 0;
9667 inst.operands[2].postind = 1;
9668 }
9669 }
b99bd4ef 9670
c19d1205 9671 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 9672}
c19d1205
ZW
9673\f
9674/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 9675
c19d1205
ZW
9676static void
9677do_iwmmxt_tandorc (void)
9678{
9679 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
9680}
b99bd4ef 9681
c19d1205
ZW
9682static void
9683do_iwmmxt_textrc (void)
9684{
9685 inst.instruction |= inst.operands[0].reg << 12;
9686 inst.instruction |= inst.operands[1].imm;
9687}
b99bd4ef
NC
9688
9689static void
c19d1205 9690do_iwmmxt_textrm (void)
b99bd4ef 9691{
c19d1205
ZW
9692 inst.instruction |= inst.operands[0].reg << 12;
9693 inst.instruction |= inst.operands[1].reg << 16;
9694 inst.instruction |= inst.operands[2].imm;
9695}
b99bd4ef 9696
c19d1205
ZW
9697static void
9698do_iwmmxt_tinsr (void)
9699{
9700 inst.instruction |= inst.operands[0].reg << 16;
9701 inst.instruction |= inst.operands[1].reg << 12;
9702 inst.instruction |= inst.operands[2].imm;
9703}
b99bd4ef 9704
c19d1205
ZW
9705static void
9706do_iwmmxt_tmia (void)
9707{
9708 inst.instruction |= inst.operands[0].reg << 5;
9709 inst.instruction |= inst.operands[1].reg;
9710 inst.instruction |= inst.operands[2].reg << 12;
9711}
b99bd4ef 9712
c19d1205
ZW
9713static void
9714do_iwmmxt_waligni (void)
9715{
9716 inst.instruction |= inst.operands[0].reg << 12;
9717 inst.instruction |= inst.operands[1].reg << 16;
9718 inst.instruction |= inst.operands[2].reg;
9719 inst.instruction |= inst.operands[3].imm << 20;
9720}
b99bd4ef 9721
2d447fca
JM
9722static void
9723do_iwmmxt_wmerge (void)
9724{
9725 inst.instruction |= inst.operands[0].reg << 12;
9726 inst.instruction |= inst.operands[1].reg << 16;
9727 inst.instruction |= inst.operands[2].reg;
9728 inst.instruction |= inst.operands[3].imm << 21;
9729}
9730
c19d1205
ZW
9731static void
9732do_iwmmxt_wmov (void)
9733{
9734 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
9735 inst.instruction |= inst.operands[0].reg << 12;
9736 inst.instruction |= inst.operands[1].reg << 16;
9737 inst.instruction |= inst.operands[1].reg;
9738}
b99bd4ef 9739
c19d1205
ZW
9740static void
9741do_iwmmxt_wldstbh (void)
9742{
8f06b2d8 9743 int reloc;
c19d1205 9744 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
9745 if (thumb_mode)
9746 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
9747 else
9748 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
9749 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
9750}
9751
c19d1205
ZW
9752static void
9753do_iwmmxt_wldstw (void)
9754{
9755 /* RIWR_RIWC clears .isreg for a control register. */
9756 if (!inst.operands[0].isreg)
9757 {
9758 constraint (inst.cond != COND_ALWAYS, BAD_COND);
9759 inst.instruction |= 0xf0000000;
9760 }
b99bd4ef 9761
c19d1205
ZW
9762 inst.instruction |= inst.operands[0].reg << 12;
9763 encode_arm_cp_address (1, TRUE, TRUE, 0);
9764}
b99bd4ef
NC
9765
9766static void
c19d1205 9767do_iwmmxt_wldstd (void)
b99bd4ef 9768{
c19d1205 9769 inst.instruction |= inst.operands[0].reg << 12;
2d447fca
JM
9770 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
9771 && inst.operands[1].immisreg)
9772 {
9773 inst.instruction &= ~0x1a000ff;
9774 inst.instruction |= (0xf << 28);
9775 if (inst.operands[1].preind)
9776 inst.instruction |= PRE_INDEX;
9777 if (!inst.operands[1].negative)
9778 inst.instruction |= INDEX_UP;
9779 if (inst.operands[1].writeback)
9780 inst.instruction |= WRITE_BACK;
9781 inst.instruction |= inst.operands[1].reg << 16;
9782 inst.instruction |= inst.reloc.exp.X_add_number << 4;
9783 inst.instruction |= inst.operands[1].imm;
9784 }
9785 else
9786 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 9787}
b99bd4ef 9788
c19d1205
ZW
9789static void
9790do_iwmmxt_wshufh (void)
9791{
9792 inst.instruction |= inst.operands[0].reg << 12;
9793 inst.instruction |= inst.operands[1].reg << 16;
9794 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
9795 inst.instruction |= (inst.operands[2].imm & 0x0f);
9796}
b99bd4ef 9797
c19d1205
ZW
9798static void
9799do_iwmmxt_wzero (void)
9800{
9801 /* WZERO reg is an alias for WANDN reg, reg, reg. */
9802 inst.instruction |= inst.operands[0].reg;
9803 inst.instruction |= inst.operands[0].reg << 12;
9804 inst.instruction |= inst.operands[0].reg << 16;
9805}
2d447fca
JM
9806
9807static void
9808do_iwmmxt_wrwrwr_or_imm5 (void)
9809{
9810 if (inst.operands[2].isreg)
9811 do_rd_rn_rm ();
9812 else {
9813 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
9814 _("immediate operand requires iWMMXt2"));
9815 do_rd_rn ();
9816 if (inst.operands[2].imm == 0)
9817 {
9818 switch ((inst.instruction >> 20) & 0xf)
9819 {
9820 case 4:
9821 case 5:
9822 case 6:
5f4273c7 9823 case 7:
2d447fca
JM
9824 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
9825 inst.operands[2].imm = 16;
9826 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
9827 break;
9828 case 8:
9829 case 9:
9830 case 10:
9831 case 11:
9832 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
9833 inst.operands[2].imm = 32;
9834 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
9835 break;
9836 case 12:
9837 case 13:
9838 case 14:
9839 case 15:
9840 {
9841 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
9842 unsigned long wrn;
9843 wrn = (inst.instruction >> 16) & 0xf;
9844 inst.instruction &= 0xff0fff0f;
9845 inst.instruction |= wrn;
9846 /* Bail out here; the instruction is now assembled. */
9847 return;
9848 }
9849 }
9850 }
9851 /* Map 32 -> 0, etc. */
9852 inst.operands[2].imm &= 0x1f;
9853 inst.instruction |= (0xf << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
9854 }
9855}
c19d1205
ZW
9856\f
9857/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
9858 operations first, then control, shift, and load/store. */
b99bd4ef 9859
c19d1205 9860/* Insns like "foo X,Y,Z". */
b99bd4ef 9861
c19d1205
ZW
9862static void
9863do_mav_triple (void)
9864{
9865 inst.instruction |= inst.operands[0].reg << 16;
9866 inst.instruction |= inst.operands[1].reg;
9867 inst.instruction |= inst.operands[2].reg << 12;
9868}
b99bd4ef 9869
c19d1205
ZW
9870/* Insns like "foo W,X,Y,Z".
9871 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 9872
c19d1205
ZW
9873static void
9874do_mav_quad (void)
9875{
9876 inst.instruction |= inst.operands[0].reg << 5;
9877 inst.instruction |= inst.operands[1].reg << 12;
9878 inst.instruction |= inst.operands[2].reg << 16;
9879 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
9880}
9881
c19d1205
ZW
9882/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
9883static void
9884do_mav_dspsc (void)
a737bd4d 9885{
c19d1205
ZW
9886 inst.instruction |= inst.operands[1].reg << 12;
9887}
a737bd4d 9888
c19d1205
ZW
9889/* Maverick shift immediate instructions.
9890 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
9891 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 9892
c19d1205
ZW
9893static void
9894do_mav_shift (void)
9895{
9896 int imm = inst.operands[2].imm;
a737bd4d 9897
c19d1205
ZW
9898 inst.instruction |= inst.operands[0].reg << 12;
9899 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 9900
c19d1205
ZW
9901 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
9902 Bits 5-7 of the insn should have bits 4-6 of the immediate.
9903 Bit 4 should be 0. */
9904 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 9905
c19d1205
ZW
9906 inst.instruction |= imm;
9907}
9908\f
9909/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 9910
c19d1205
ZW
9911/* Xscale multiply-accumulate (argument parse)
9912 MIAcc acc0,Rm,Rs
9913 MIAPHcc acc0,Rm,Rs
9914 MIAxycc acc0,Rm,Rs. */
a737bd4d 9915
c19d1205
ZW
9916static void
9917do_xsc_mia (void)
9918{
9919 inst.instruction |= inst.operands[1].reg;
9920 inst.instruction |= inst.operands[2].reg << 12;
9921}
a737bd4d 9922
c19d1205 9923/* Xscale move-accumulator-register (argument parse)
a737bd4d 9924
c19d1205 9925 MARcc acc0,RdLo,RdHi. */
b99bd4ef 9926
c19d1205
ZW
9927static void
9928do_xsc_mar (void)
9929{
9930 inst.instruction |= inst.operands[1].reg << 12;
9931 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9932}
9933
c19d1205 9934/* Xscale move-register-accumulator (argument parse)
b99bd4ef 9935
c19d1205 9936 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
9937
9938static void
c19d1205 9939do_xsc_mra (void)
b99bd4ef 9940{
c19d1205
ZW
9941 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
9942 inst.instruction |= inst.operands[0].reg << 12;
9943 inst.instruction |= inst.operands[1].reg << 16;
9944}
9945\f
9946/* Encoding functions relevant only to Thumb. */
b99bd4ef 9947
c19d1205
ZW
9948/* inst.operands[i] is a shifted-register operand; encode
9949 it into inst.instruction in the format used by Thumb32. */
9950
9951static void
9952encode_thumb32_shifted_operand (int i)
9953{
9954 unsigned int value = inst.reloc.exp.X_add_number;
9955 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 9956
9c3c69f2
PB
9957 constraint (inst.operands[i].immisreg,
9958 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
9959 inst.instruction |= inst.operands[i].reg;
9960 if (shift == SHIFT_RRX)
9961 inst.instruction |= SHIFT_ROR << 4;
9962 else
b99bd4ef 9963 {
c19d1205
ZW
9964 constraint (inst.reloc.exp.X_op != O_constant,
9965 _("expression too complex"));
9966
9967 constraint (value > 32
9968 || (value == 32 && (shift == SHIFT_LSL
9969 || shift == SHIFT_ROR)),
9970 _("shift expression is too large"));
9971
9972 if (value == 0)
9973 shift = SHIFT_LSL;
9974 else if (value == 32)
9975 value = 0;
9976
9977 inst.instruction |= shift << 4;
9978 inst.instruction |= (value & 0x1c) << 10;
9979 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 9980 }
c19d1205 9981}
b99bd4ef 9982
b99bd4ef 9983
c19d1205
ZW
9984/* inst.operands[i] was set up by parse_address. Encode it into a
9985 Thumb32 format load or store instruction. Reject forms that cannot
9986 be used with such instructions. If is_t is true, reject forms that
9987 cannot be used with a T instruction; if is_d is true, reject forms
5be8be5d
DG
9988 that cannot be used with a D instruction. If it is a store insn,
9989 reject PC in Rn. */
b99bd4ef 9990
c19d1205
ZW
9991static void
9992encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
9993{
5be8be5d 9994 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
c19d1205
ZW
9995
9996 constraint (!inst.operands[i].isreg,
53365c0d 9997 _("Instruction does not support =N addresses"));
b99bd4ef 9998
c19d1205
ZW
9999 inst.instruction |= inst.operands[i].reg << 16;
10000 if (inst.operands[i].immisreg)
b99bd4ef 10001 {
5be8be5d 10002 constraint (is_pc, BAD_PC_ADDRESSING);
c19d1205
ZW
10003 constraint (is_t || is_d, _("cannot use register index with this instruction"));
10004 constraint (inst.operands[i].negative,
10005 _("Thumb does not support negative register indexing"));
10006 constraint (inst.operands[i].postind,
10007 _("Thumb does not support register post-indexing"));
10008 constraint (inst.operands[i].writeback,
10009 _("Thumb does not support register indexing with writeback"));
10010 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
10011 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 10012
f40d1643 10013 inst.instruction |= inst.operands[i].imm;
c19d1205 10014 if (inst.operands[i].shifted)
b99bd4ef 10015 {
c19d1205
ZW
10016 constraint (inst.reloc.exp.X_op != O_constant,
10017 _("expression too complex"));
9c3c69f2
PB
10018 constraint (inst.reloc.exp.X_add_number < 0
10019 || inst.reloc.exp.X_add_number > 3,
c19d1205 10020 _("shift out of range"));
9c3c69f2 10021 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
10022 }
10023 inst.reloc.type = BFD_RELOC_UNUSED;
10024 }
10025 else if (inst.operands[i].preind)
10026 {
5be8be5d 10027 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
f40d1643 10028 constraint (is_t && inst.operands[i].writeback,
c19d1205 10029 _("cannot use writeback with this instruction"));
4755303e
WN
10030 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0),
10031 BAD_PC_ADDRESSING);
c19d1205
ZW
10032
10033 if (is_d)
10034 {
10035 inst.instruction |= 0x01000000;
10036 if (inst.operands[i].writeback)
10037 inst.instruction |= 0x00200000;
b99bd4ef 10038 }
c19d1205 10039 else
b99bd4ef 10040 {
c19d1205
ZW
10041 inst.instruction |= 0x00000c00;
10042 if (inst.operands[i].writeback)
10043 inst.instruction |= 0x00000100;
b99bd4ef 10044 }
c19d1205 10045 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 10046 }
c19d1205 10047 else if (inst.operands[i].postind)
b99bd4ef 10048 {
9c2799c2 10049 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
10050 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
10051 constraint (is_t, _("cannot use post-indexing with this instruction"));
10052
10053 if (is_d)
10054 inst.instruction |= 0x00200000;
10055 else
10056 inst.instruction |= 0x00000900;
10057 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
10058 }
10059 else /* unindexed - only for coprocessor */
10060 inst.error = _("instruction does not accept unindexed addressing");
10061}
10062
10063/* Table of Thumb instructions which exist in both 16- and 32-bit
10064 encodings (the latter only in post-V6T2 cores). The index is the
10065 value used in the insns table below. When there is more than one
10066 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
10067 holds variant (1).
10068 Also contains several pseudo-instructions used during relaxation. */
c19d1205 10069#define T16_32_TAB \
21d799b5
NC
10070 X(_adc, 4140, eb400000), \
10071 X(_adcs, 4140, eb500000), \
10072 X(_add, 1c00, eb000000), \
10073 X(_adds, 1c00, eb100000), \
10074 X(_addi, 0000, f1000000), \
10075 X(_addis, 0000, f1100000), \
10076 X(_add_pc,000f, f20f0000), \
10077 X(_add_sp,000d, f10d0000), \
10078 X(_adr, 000f, f20f0000), \
10079 X(_and, 4000, ea000000), \
10080 X(_ands, 4000, ea100000), \
10081 X(_asr, 1000, fa40f000), \
10082 X(_asrs, 1000, fa50f000), \
10083 X(_b, e000, f000b000), \
10084 X(_bcond, d000, f0008000), \
10085 X(_bic, 4380, ea200000), \
10086 X(_bics, 4380, ea300000), \
10087 X(_cmn, 42c0, eb100f00), \
10088 X(_cmp, 2800, ebb00f00), \
10089 X(_cpsie, b660, f3af8400), \
10090 X(_cpsid, b670, f3af8600), \
10091 X(_cpy, 4600, ea4f0000), \
10092 X(_dec_sp,80dd, f1ad0d00), \
10093 X(_eor, 4040, ea800000), \
10094 X(_eors, 4040, ea900000), \
10095 X(_inc_sp,00dd, f10d0d00), \
10096 X(_ldmia, c800, e8900000), \
10097 X(_ldr, 6800, f8500000), \
10098 X(_ldrb, 7800, f8100000), \
10099 X(_ldrh, 8800, f8300000), \
10100 X(_ldrsb, 5600, f9100000), \
10101 X(_ldrsh, 5e00, f9300000), \
10102 X(_ldr_pc,4800, f85f0000), \
10103 X(_ldr_pc2,4800, f85f0000), \
10104 X(_ldr_sp,9800, f85d0000), \
10105 X(_lsl, 0000, fa00f000), \
10106 X(_lsls, 0000, fa10f000), \
10107 X(_lsr, 0800, fa20f000), \
10108 X(_lsrs, 0800, fa30f000), \
10109 X(_mov, 2000, ea4f0000), \
10110 X(_movs, 2000, ea5f0000), \
10111 X(_mul, 4340, fb00f000), \
10112 X(_muls, 4340, ffffffff), /* no 32b muls */ \
10113 X(_mvn, 43c0, ea6f0000), \
10114 X(_mvns, 43c0, ea7f0000), \
10115 X(_neg, 4240, f1c00000), /* rsb #0 */ \
10116 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
10117 X(_orr, 4300, ea400000), \
10118 X(_orrs, 4300, ea500000), \
10119 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
10120 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
10121 X(_rev, ba00, fa90f080), \
10122 X(_rev16, ba40, fa90f090), \
10123 X(_revsh, bac0, fa90f0b0), \
10124 X(_ror, 41c0, fa60f000), \
10125 X(_rors, 41c0, fa70f000), \
10126 X(_sbc, 4180, eb600000), \
10127 X(_sbcs, 4180, eb700000), \
10128 X(_stmia, c000, e8800000), \
10129 X(_str, 6000, f8400000), \
10130 X(_strb, 7000, f8000000), \
10131 X(_strh, 8000, f8200000), \
10132 X(_str_sp,9000, f84d0000), \
10133 X(_sub, 1e00, eba00000), \
10134 X(_subs, 1e00, ebb00000), \
10135 X(_subi, 8000, f1a00000), \
10136 X(_subis, 8000, f1b00000), \
10137 X(_sxtb, b240, fa4ff080), \
10138 X(_sxth, b200, fa0ff080), \
10139 X(_tst, 4200, ea100f00), \
10140 X(_uxtb, b2c0, fa5ff080), \
10141 X(_uxth, b280, fa1ff080), \
10142 X(_nop, bf00, f3af8000), \
10143 X(_yield, bf10, f3af8001), \
10144 X(_wfe, bf20, f3af8002), \
10145 X(_wfi, bf30, f3af8003), \
53c4b28b 10146 X(_sev, bf40, f3af8004), \
74db7efb
NC
10147 X(_sevl, bf50, f3af8005), \
10148 X(_udf, de00, f7f0a000)
c19d1205
ZW
10149
10150/* To catch errors in encoding functions, the codes are all offset by
10151 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
10152 as 16-bit instructions. */
21d799b5 10153#define X(a,b,c) T_MNEM##a
c19d1205
ZW
10154enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
10155#undef X
10156
10157#define X(a,b,c) 0x##b
10158static const unsigned short thumb_op16[] = { T16_32_TAB };
10159#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
10160#undef X
10161
10162#define X(a,b,c) 0x##c
10163static const unsigned int thumb_op32[] = { T16_32_TAB };
c921be7d
NC
10164#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
10165#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
c19d1205
ZW
10166#undef X
10167#undef T16_32_TAB
10168
10169/* Thumb instruction encoders, in alphabetical order. */
10170
92e90b6e 10171/* ADDW or SUBW. */
c921be7d 10172
92e90b6e
PB
10173static void
10174do_t_add_sub_w (void)
10175{
10176 int Rd, Rn;
10177
10178 Rd = inst.operands[0].reg;
10179 Rn = inst.operands[1].reg;
10180
539d4391
NC
10181 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
10182 is the SP-{plus,minus}-immediate form of the instruction. */
10183 if (Rn == REG_SP)
10184 constraint (Rd == REG_PC, BAD_PC);
10185 else
10186 reject_bad_reg (Rd);
fdfde340 10187
92e90b6e
PB
10188 inst.instruction |= (Rn << 16) | (Rd << 8);
10189 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
10190}
10191
c19d1205
ZW
10192/* Parse an add or subtract instruction. We get here with inst.instruction
10193 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
10194
10195static void
10196do_t_add_sub (void)
10197{
10198 int Rd, Rs, Rn;
10199
10200 Rd = inst.operands[0].reg;
10201 Rs = (inst.operands[1].present
10202 ? inst.operands[1].reg /* Rd, Rs, foo */
10203 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10204
e07e6e58
NC
10205 if (Rd == REG_PC)
10206 set_it_insn_type_last ();
10207
c19d1205
ZW
10208 if (unified_syntax)
10209 {
0110f2b8
PB
10210 bfd_boolean flags;
10211 bfd_boolean narrow;
10212 int opcode;
10213
10214 flags = (inst.instruction == T_MNEM_adds
10215 || inst.instruction == T_MNEM_subs);
10216 if (flags)
e07e6e58 10217 narrow = !in_it_block ();
0110f2b8 10218 else
e07e6e58 10219 narrow = in_it_block ();
c19d1205 10220 if (!inst.operands[2].isreg)
b99bd4ef 10221 {
16805f35
PB
10222 int add;
10223
fdfde340
JM
10224 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
10225
16805f35
PB
10226 add = (inst.instruction == T_MNEM_add
10227 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
10228 opcode = 0;
10229 if (inst.size_req != 4)
10230 {
0110f2b8 10231 /* Attempt to use a narrow opcode, with relaxation if
477330fc 10232 appropriate. */
0110f2b8
PB
10233 if (Rd == REG_SP && Rs == REG_SP && !flags)
10234 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
10235 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
10236 opcode = T_MNEM_add_sp;
10237 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
10238 opcode = T_MNEM_add_pc;
10239 else if (Rd <= 7 && Rs <= 7 && narrow)
10240 {
10241 if (flags)
10242 opcode = add ? T_MNEM_addis : T_MNEM_subis;
10243 else
10244 opcode = add ? T_MNEM_addi : T_MNEM_subi;
10245 }
10246 if (opcode)
10247 {
10248 inst.instruction = THUMB_OP16(opcode);
10249 inst.instruction |= (Rd << 4) | Rs;
10250 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
10251 if (inst.size_req != 2)
10252 inst.relax = opcode;
10253 }
10254 else
10255 constraint (inst.size_req == 2, BAD_HIREG);
10256 }
10257 if (inst.size_req == 4
10258 || (inst.size_req != 2 && !opcode))
10259 {
efd81785
PB
10260 if (Rd == REG_PC)
10261 {
fdfde340 10262 constraint (add, BAD_PC);
efd81785
PB
10263 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
10264 _("only SUBS PC, LR, #const allowed"));
10265 constraint (inst.reloc.exp.X_op != O_constant,
10266 _("expression too complex"));
10267 constraint (inst.reloc.exp.X_add_number < 0
10268 || inst.reloc.exp.X_add_number > 0xff,
10269 _("immediate value out of range"));
10270 inst.instruction = T2_SUBS_PC_LR
10271 | inst.reloc.exp.X_add_number;
10272 inst.reloc.type = BFD_RELOC_UNUSED;
10273 return;
10274 }
10275 else if (Rs == REG_PC)
16805f35
PB
10276 {
10277 /* Always use addw/subw. */
10278 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
10279 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
10280 }
10281 else
10282 {
10283 inst.instruction = THUMB_OP32 (inst.instruction);
10284 inst.instruction = (inst.instruction & 0xe1ffffff)
10285 | 0x10000000;
10286 if (flags)
10287 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
10288 else
10289 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
10290 }
dc4503c6
PB
10291 inst.instruction |= Rd << 8;
10292 inst.instruction |= Rs << 16;
0110f2b8 10293 }
b99bd4ef 10294 }
c19d1205
ZW
10295 else
10296 {
5f4cb198
NC
10297 unsigned int value = inst.reloc.exp.X_add_number;
10298 unsigned int shift = inst.operands[2].shift_kind;
10299
c19d1205
ZW
10300 Rn = inst.operands[2].reg;
10301 /* See if we can do this with a 16-bit instruction. */
10302 if (!inst.operands[2].shifted && inst.size_req != 4)
10303 {
e27ec89e
PB
10304 if (Rd > 7 || Rs > 7 || Rn > 7)
10305 narrow = FALSE;
10306
10307 if (narrow)
c19d1205 10308 {
e27ec89e
PB
10309 inst.instruction = ((inst.instruction == T_MNEM_adds
10310 || inst.instruction == T_MNEM_add)
c19d1205
ZW
10311 ? T_OPCODE_ADD_R3
10312 : T_OPCODE_SUB_R3);
10313 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
10314 return;
10315 }
b99bd4ef 10316
7e806470 10317 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
c19d1205 10318 {
7e806470
PB
10319 /* Thumb-1 cores (except v6-M) require at least one high
10320 register in a narrow non flag setting add. */
10321 if (Rd > 7 || Rn > 7
10322 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
10323 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
c19d1205 10324 {
7e806470
PB
10325 if (Rd == Rn)
10326 {
10327 Rn = Rs;
10328 Rs = Rd;
10329 }
c19d1205
ZW
10330 inst.instruction = T_OPCODE_ADD_HI;
10331 inst.instruction |= (Rd & 8) << 4;
10332 inst.instruction |= (Rd & 7);
10333 inst.instruction |= Rn << 3;
10334 return;
10335 }
c19d1205
ZW
10336 }
10337 }
c921be7d 10338
fdfde340
JM
10339 constraint (Rd == REG_PC, BAD_PC);
10340 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
10341 constraint (Rs == REG_PC, BAD_PC);
10342 reject_bad_reg (Rn);
10343
c19d1205
ZW
10344 /* If we get here, it can't be done in 16 bits. */
10345 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
10346 _("shift must be constant"));
10347 inst.instruction = THUMB_OP32 (inst.instruction);
10348 inst.instruction |= Rd << 8;
10349 inst.instruction |= Rs << 16;
5f4cb198
NC
10350 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
10351 _("shift value over 3 not allowed in thumb mode"));
10352 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
10353 _("only LSL shift allowed in thumb mode"));
c19d1205
ZW
10354 encode_thumb32_shifted_operand (2);
10355 }
10356 }
10357 else
10358 {
10359 constraint (inst.instruction == T_MNEM_adds
10360 || inst.instruction == T_MNEM_subs,
10361 BAD_THUMB32);
b99bd4ef 10362
c19d1205 10363 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 10364 {
c19d1205
ZW
10365 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
10366 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
10367 BAD_HIREG);
10368
10369 inst.instruction = (inst.instruction == T_MNEM_add
10370 ? 0x0000 : 0x8000);
10371 inst.instruction |= (Rd << 4) | Rs;
10372 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
10373 return;
10374 }
10375
c19d1205
ZW
10376 Rn = inst.operands[2].reg;
10377 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 10378
c19d1205
ZW
10379 /* We now have Rd, Rs, and Rn set to registers. */
10380 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 10381 {
c19d1205
ZW
10382 /* Can't do this for SUB. */
10383 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
10384 inst.instruction = T_OPCODE_ADD_HI;
10385 inst.instruction |= (Rd & 8) << 4;
10386 inst.instruction |= (Rd & 7);
10387 if (Rs == Rd)
10388 inst.instruction |= Rn << 3;
10389 else if (Rn == Rd)
10390 inst.instruction |= Rs << 3;
10391 else
10392 constraint (1, _("dest must overlap one source register"));
10393 }
10394 else
10395 {
10396 inst.instruction = (inst.instruction == T_MNEM_add
10397 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
10398 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 10399 }
b99bd4ef 10400 }
b99bd4ef
NC
10401}
10402
c19d1205
ZW
10403static void
10404do_t_adr (void)
10405{
fdfde340
JM
10406 unsigned Rd;
10407
10408 Rd = inst.operands[0].reg;
10409 reject_bad_reg (Rd);
10410
10411 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
0110f2b8
PB
10412 {
10413 /* Defer to section relaxation. */
10414 inst.relax = inst.instruction;
10415 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 10416 inst.instruction |= Rd << 4;
0110f2b8
PB
10417 }
10418 else if (unified_syntax && inst.size_req != 2)
e9f89963 10419 {
0110f2b8 10420 /* Generate a 32-bit opcode. */
e9f89963 10421 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 10422 inst.instruction |= Rd << 8;
e9f89963
PB
10423 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
10424 inst.reloc.pc_rel = 1;
10425 }
10426 else
10427 {
0110f2b8 10428 /* Generate a 16-bit opcode. */
e9f89963
PB
10429 inst.instruction = THUMB_OP16 (inst.instruction);
10430 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
10431 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
10432 inst.reloc.pc_rel = 1;
b99bd4ef 10433
fdfde340 10434 inst.instruction |= Rd << 4;
e9f89963 10435 }
c19d1205 10436}
b99bd4ef 10437
c19d1205
ZW
10438/* Arithmetic instructions for which there is just one 16-bit
10439 instruction encoding, and it allows only two low registers.
10440 For maximal compatibility with ARM syntax, we allow three register
10441 operands even when Thumb-32 instructions are not available, as long
10442 as the first two are identical. For instance, both "sbc r0,r1" and
10443 "sbc r0,r0,r1" are allowed. */
b99bd4ef 10444static void
c19d1205 10445do_t_arit3 (void)
b99bd4ef 10446{
c19d1205 10447 int Rd, Rs, Rn;
b99bd4ef 10448
c19d1205
ZW
10449 Rd = inst.operands[0].reg;
10450 Rs = (inst.operands[1].present
10451 ? inst.operands[1].reg /* Rd, Rs, foo */
10452 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10453 Rn = inst.operands[2].reg;
b99bd4ef 10454
fdfde340
JM
10455 reject_bad_reg (Rd);
10456 reject_bad_reg (Rs);
10457 if (inst.operands[2].isreg)
10458 reject_bad_reg (Rn);
10459
c19d1205 10460 if (unified_syntax)
b99bd4ef 10461 {
c19d1205
ZW
10462 if (!inst.operands[2].isreg)
10463 {
10464 /* For an immediate, we always generate a 32-bit opcode;
10465 section relaxation will shrink it later if possible. */
10466 inst.instruction = THUMB_OP32 (inst.instruction);
10467 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
10468 inst.instruction |= Rd << 8;
10469 inst.instruction |= Rs << 16;
10470 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
10471 }
10472 else
10473 {
e27ec89e
PB
10474 bfd_boolean narrow;
10475
c19d1205 10476 /* See if we can do this with a 16-bit instruction. */
e27ec89e 10477 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 10478 narrow = !in_it_block ();
e27ec89e 10479 else
e07e6e58 10480 narrow = in_it_block ();
e27ec89e
PB
10481
10482 if (Rd > 7 || Rn > 7 || Rs > 7)
10483 narrow = FALSE;
10484 if (inst.operands[2].shifted)
10485 narrow = FALSE;
10486 if (inst.size_req == 4)
10487 narrow = FALSE;
10488
10489 if (narrow
c19d1205
ZW
10490 && Rd == Rs)
10491 {
10492 inst.instruction = THUMB_OP16 (inst.instruction);
10493 inst.instruction |= Rd;
10494 inst.instruction |= Rn << 3;
10495 return;
10496 }
b99bd4ef 10497
c19d1205
ZW
10498 /* If we get here, it can't be done in 16 bits. */
10499 constraint (inst.operands[2].shifted
10500 && inst.operands[2].immisreg,
10501 _("shift must be constant"));
10502 inst.instruction = THUMB_OP32 (inst.instruction);
10503 inst.instruction |= Rd << 8;
10504 inst.instruction |= Rs << 16;
10505 encode_thumb32_shifted_operand (2);
10506 }
a737bd4d 10507 }
c19d1205 10508 else
b99bd4ef 10509 {
c19d1205
ZW
10510 /* On its face this is a lie - the instruction does set the
10511 flags. However, the only supported mnemonic in this mode
10512 says it doesn't. */
10513 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10514
c19d1205
ZW
10515 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10516 _("unshifted register required"));
10517 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10518 constraint (Rd != Rs,
10519 _("dest and source1 must be the same register"));
a737bd4d 10520
c19d1205
ZW
10521 inst.instruction = THUMB_OP16 (inst.instruction);
10522 inst.instruction |= Rd;
10523 inst.instruction |= Rn << 3;
b99bd4ef 10524 }
a737bd4d 10525}
b99bd4ef 10526
c19d1205
ZW
10527/* Similarly, but for instructions where the arithmetic operation is
10528 commutative, so we can allow either of them to be different from
10529 the destination operand in a 16-bit instruction. For instance, all
10530 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
10531 accepted. */
10532static void
10533do_t_arit3c (void)
a737bd4d 10534{
c19d1205 10535 int Rd, Rs, Rn;
b99bd4ef 10536
c19d1205
ZW
10537 Rd = inst.operands[0].reg;
10538 Rs = (inst.operands[1].present
10539 ? inst.operands[1].reg /* Rd, Rs, foo */
10540 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10541 Rn = inst.operands[2].reg;
c921be7d 10542
fdfde340
JM
10543 reject_bad_reg (Rd);
10544 reject_bad_reg (Rs);
10545 if (inst.operands[2].isreg)
10546 reject_bad_reg (Rn);
a737bd4d 10547
c19d1205 10548 if (unified_syntax)
a737bd4d 10549 {
c19d1205 10550 if (!inst.operands[2].isreg)
b99bd4ef 10551 {
c19d1205
ZW
10552 /* For an immediate, we always generate a 32-bit opcode;
10553 section relaxation will shrink it later if possible. */
10554 inst.instruction = THUMB_OP32 (inst.instruction);
10555 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
10556 inst.instruction |= Rd << 8;
10557 inst.instruction |= Rs << 16;
10558 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 10559 }
c19d1205 10560 else
a737bd4d 10561 {
e27ec89e
PB
10562 bfd_boolean narrow;
10563
c19d1205 10564 /* See if we can do this with a 16-bit instruction. */
e27ec89e 10565 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 10566 narrow = !in_it_block ();
e27ec89e 10567 else
e07e6e58 10568 narrow = in_it_block ();
e27ec89e
PB
10569
10570 if (Rd > 7 || Rn > 7 || Rs > 7)
10571 narrow = FALSE;
10572 if (inst.operands[2].shifted)
10573 narrow = FALSE;
10574 if (inst.size_req == 4)
10575 narrow = FALSE;
10576
10577 if (narrow)
a737bd4d 10578 {
c19d1205 10579 if (Rd == Rs)
a737bd4d 10580 {
c19d1205
ZW
10581 inst.instruction = THUMB_OP16 (inst.instruction);
10582 inst.instruction |= Rd;
10583 inst.instruction |= Rn << 3;
10584 return;
a737bd4d 10585 }
c19d1205 10586 if (Rd == Rn)
a737bd4d 10587 {
c19d1205
ZW
10588 inst.instruction = THUMB_OP16 (inst.instruction);
10589 inst.instruction |= Rd;
10590 inst.instruction |= Rs << 3;
10591 return;
a737bd4d
NC
10592 }
10593 }
c19d1205
ZW
10594
10595 /* If we get here, it can't be done in 16 bits. */
10596 constraint (inst.operands[2].shifted
10597 && inst.operands[2].immisreg,
10598 _("shift must be constant"));
10599 inst.instruction = THUMB_OP32 (inst.instruction);
10600 inst.instruction |= Rd << 8;
10601 inst.instruction |= Rs << 16;
10602 encode_thumb32_shifted_operand (2);
a737bd4d 10603 }
b99bd4ef 10604 }
c19d1205
ZW
10605 else
10606 {
10607 /* On its face this is a lie - the instruction does set the
10608 flags. However, the only supported mnemonic in this mode
10609 says it doesn't. */
10610 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10611
c19d1205
ZW
10612 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10613 _("unshifted register required"));
10614 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10615
10616 inst.instruction = THUMB_OP16 (inst.instruction);
10617 inst.instruction |= Rd;
10618
10619 if (Rd == Rs)
10620 inst.instruction |= Rn << 3;
10621 else if (Rd == Rn)
10622 inst.instruction |= Rs << 3;
10623 else
10624 constraint (1, _("dest must overlap one source register"));
10625 }
a737bd4d
NC
10626}
10627
c19d1205
ZW
10628static void
10629do_t_bfc (void)
a737bd4d 10630{
fdfde340 10631 unsigned Rd;
c19d1205
ZW
10632 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
10633 constraint (msb > 32, _("bit-field extends past end of register"));
10634 /* The instruction encoding stores the LSB and MSB,
10635 not the LSB and width. */
fdfde340
JM
10636 Rd = inst.operands[0].reg;
10637 reject_bad_reg (Rd);
10638 inst.instruction |= Rd << 8;
c19d1205
ZW
10639 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
10640 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
10641 inst.instruction |= msb - 1;
b99bd4ef
NC
10642}
10643
c19d1205
ZW
10644static void
10645do_t_bfi (void)
b99bd4ef 10646{
fdfde340 10647 int Rd, Rn;
c19d1205 10648 unsigned int msb;
b99bd4ef 10649
fdfde340
JM
10650 Rd = inst.operands[0].reg;
10651 reject_bad_reg (Rd);
10652
c19d1205
ZW
10653 /* #0 in second position is alternative syntax for bfc, which is
10654 the same instruction but with REG_PC in the Rm field. */
10655 if (!inst.operands[1].isreg)
fdfde340
JM
10656 Rn = REG_PC;
10657 else
10658 {
10659 Rn = inst.operands[1].reg;
10660 reject_bad_reg (Rn);
10661 }
b99bd4ef 10662
c19d1205
ZW
10663 msb = inst.operands[2].imm + inst.operands[3].imm;
10664 constraint (msb > 32, _("bit-field extends past end of register"));
10665 /* The instruction encoding stores the LSB and MSB,
10666 not the LSB and width. */
fdfde340
JM
10667 inst.instruction |= Rd << 8;
10668 inst.instruction |= Rn << 16;
c19d1205
ZW
10669 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10670 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10671 inst.instruction |= msb - 1;
b99bd4ef
NC
10672}
10673
c19d1205
ZW
10674static void
10675do_t_bfx (void)
b99bd4ef 10676{
fdfde340
JM
10677 unsigned Rd, Rn;
10678
10679 Rd = inst.operands[0].reg;
10680 Rn = inst.operands[1].reg;
10681
10682 reject_bad_reg (Rd);
10683 reject_bad_reg (Rn);
10684
c19d1205
ZW
10685 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
10686 _("bit-field extends past end of register"));
fdfde340
JM
10687 inst.instruction |= Rd << 8;
10688 inst.instruction |= Rn << 16;
c19d1205
ZW
10689 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10690 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10691 inst.instruction |= inst.operands[3].imm - 1;
10692}
b99bd4ef 10693
c19d1205
ZW
10694/* ARM V5 Thumb BLX (argument parse)
10695 BLX <target_addr> which is BLX(1)
10696 BLX <Rm> which is BLX(2)
10697 Unfortunately, there are two different opcodes for this mnemonic.
10698 So, the insns[].value is not used, and the code here zaps values
10699 into inst.instruction.
b99bd4ef 10700
c19d1205
ZW
10701 ??? How to take advantage of the additional two bits of displacement
10702 available in Thumb32 mode? Need new relocation? */
b99bd4ef 10703
c19d1205
ZW
10704static void
10705do_t_blx (void)
10706{
e07e6e58
NC
10707 set_it_insn_type_last ();
10708
c19d1205 10709 if (inst.operands[0].isreg)
fdfde340
JM
10710 {
10711 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10712 /* We have a register, so this is BLX(2). */
10713 inst.instruction |= inst.operands[0].reg << 3;
10714 }
b99bd4ef
NC
10715 else
10716 {
c19d1205 10717 /* No register. This must be BLX(1). */
2fc8bdac 10718 inst.instruction = 0xf000e800;
0855e32b 10719 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
b99bd4ef
NC
10720 }
10721}
10722
c19d1205
ZW
10723static void
10724do_t_branch (void)
b99bd4ef 10725{
0110f2b8 10726 int opcode;
dfa9f0d5 10727 int cond;
9ae92b05 10728 int reloc;
dfa9f0d5 10729
e07e6e58
NC
10730 cond = inst.cond;
10731 set_it_insn_type (IF_INSIDE_IT_LAST_INSN);
10732
10733 if (in_it_block ())
dfa9f0d5
PB
10734 {
10735 /* Conditional branches inside IT blocks are encoded as unconditional
477330fc 10736 branches. */
dfa9f0d5 10737 cond = COND_ALWAYS;
dfa9f0d5
PB
10738 }
10739 else
10740 cond = inst.cond;
10741
10742 if (cond != COND_ALWAYS)
0110f2b8
PB
10743 opcode = T_MNEM_bcond;
10744 else
10745 opcode = inst.instruction;
10746
12d6b0b7
RS
10747 if (unified_syntax
10748 && (inst.size_req == 4
10960bfb
PB
10749 || (inst.size_req != 2
10750 && (inst.operands[0].hasreloc
10751 || inst.reloc.exp.X_op == O_constant))))
c19d1205 10752 {
0110f2b8 10753 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 10754 if (cond == COND_ALWAYS)
9ae92b05 10755 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
10756 else
10757 {
9c2799c2 10758 gas_assert (cond != 0xF);
dfa9f0d5 10759 inst.instruction |= cond << 22;
9ae92b05 10760 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
c19d1205
ZW
10761 }
10762 }
b99bd4ef
NC
10763 else
10764 {
0110f2b8 10765 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 10766 if (cond == COND_ALWAYS)
9ae92b05 10767 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
c19d1205 10768 else
b99bd4ef 10769 {
dfa9f0d5 10770 inst.instruction |= cond << 8;
9ae92b05 10771 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 10772 }
0110f2b8
PB
10773 /* Allow section relaxation. */
10774 if (unified_syntax && inst.size_req != 2)
10775 inst.relax = opcode;
b99bd4ef 10776 }
9ae92b05 10777 inst.reloc.type = reloc;
c19d1205 10778 inst.reloc.pc_rel = 1;
b99bd4ef
NC
10779}
10780
8884b720 10781/* Actually do the work for Thumb state bkpt and hlt. The only difference
bacebabc 10782 between the two is the maximum immediate allowed - which is passed in
8884b720 10783 RANGE. */
b99bd4ef 10784static void
8884b720 10785do_t_bkpt_hlt1 (int range)
b99bd4ef 10786{
dfa9f0d5
PB
10787 constraint (inst.cond != COND_ALWAYS,
10788 _("instruction is always unconditional"));
c19d1205 10789 if (inst.operands[0].present)
b99bd4ef 10790 {
8884b720 10791 constraint (inst.operands[0].imm > range,
c19d1205
ZW
10792 _("immediate value out of range"));
10793 inst.instruction |= inst.operands[0].imm;
b99bd4ef 10794 }
8884b720
MGD
10795
10796 set_it_insn_type (NEUTRAL_IT_INSN);
10797}
10798
10799static void
10800do_t_hlt (void)
10801{
10802 do_t_bkpt_hlt1 (63);
10803}
10804
10805static void
10806do_t_bkpt (void)
10807{
10808 do_t_bkpt_hlt1 (255);
b99bd4ef
NC
10809}
10810
10811static void
c19d1205 10812do_t_branch23 (void)
b99bd4ef 10813{
e07e6e58 10814 set_it_insn_type_last ();
0855e32b 10815 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
fa94de6b 10816
0855e32b
NS
10817 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
10818 this file. We used to simply ignore the PLT reloc type here --
10819 the branch encoding is now needed to deal with TLSCALL relocs.
10820 So if we see a PLT reloc now, put it back to how it used to be to
10821 keep the preexisting behaviour. */
10822 if (inst.reloc.type == BFD_RELOC_ARM_PLT32)
10823 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a 10824
4343666d 10825#if defined(OBJ_COFF)
c19d1205
ZW
10826 /* If the destination of the branch is a defined symbol which does not have
10827 the THUMB_FUNC attribute, then we must be calling a function which has
10828 the (interfacearm) attribute. We look for the Thumb entry point to that
10829 function and change the branch to refer to that function instead. */
10830 if ( inst.reloc.exp.X_op == O_symbol
10831 && inst.reloc.exp.X_add_symbol != NULL
10832 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
10833 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
10834 inst.reloc.exp.X_add_symbol =
10835 find_real_start (inst.reloc.exp.X_add_symbol);
4343666d 10836#endif
90e4755a
RE
10837}
10838
10839static void
c19d1205 10840do_t_bx (void)
90e4755a 10841{
e07e6e58 10842 set_it_insn_type_last ();
c19d1205
ZW
10843 inst.instruction |= inst.operands[0].reg << 3;
10844 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
10845 should cause the alignment to be checked once it is known. This is
10846 because BX PC only works if the instruction is word aligned. */
10847}
90e4755a 10848
c19d1205
ZW
10849static void
10850do_t_bxj (void)
10851{
fdfde340 10852 int Rm;
90e4755a 10853
e07e6e58 10854 set_it_insn_type_last ();
fdfde340
JM
10855 Rm = inst.operands[0].reg;
10856 reject_bad_reg (Rm);
10857 inst.instruction |= Rm << 16;
90e4755a
RE
10858}
10859
10860static void
c19d1205 10861do_t_clz (void)
90e4755a 10862{
fdfde340
JM
10863 unsigned Rd;
10864 unsigned Rm;
10865
10866 Rd = inst.operands[0].reg;
10867 Rm = inst.operands[1].reg;
10868
10869 reject_bad_reg (Rd);
10870 reject_bad_reg (Rm);
10871
10872 inst.instruction |= Rd << 8;
10873 inst.instruction |= Rm << 16;
10874 inst.instruction |= Rm;
c19d1205 10875}
90e4755a 10876
dfa9f0d5
PB
10877static void
10878do_t_cps (void)
10879{
e07e6e58 10880 set_it_insn_type (OUTSIDE_IT_INSN);
dfa9f0d5
PB
10881 inst.instruction |= inst.operands[0].imm;
10882}
10883
c19d1205
ZW
10884static void
10885do_t_cpsi (void)
10886{
e07e6e58 10887 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205 10888 if (unified_syntax
62b3e311
PB
10889 && (inst.operands[1].present || inst.size_req == 4)
10890 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 10891 {
c19d1205
ZW
10892 unsigned int imod = (inst.instruction & 0x0030) >> 4;
10893 inst.instruction = 0xf3af8000;
10894 inst.instruction |= imod << 9;
10895 inst.instruction |= inst.operands[0].imm << 5;
10896 if (inst.operands[1].present)
10897 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 10898 }
c19d1205 10899 else
90e4755a 10900 {
62b3e311
PB
10901 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
10902 && (inst.operands[0].imm & 4),
10903 _("selected processor does not support 'A' form "
10904 "of this instruction"));
10905 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
10906 _("Thumb does not support the 2-argument "
10907 "form of this instruction"));
10908 inst.instruction |= inst.operands[0].imm;
90e4755a 10909 }
90e4755a
RE
10910}
10911
c19d1205
ZW
10912/* THUMB CPY instruction (argument parse). */
10913
90e4755a 10914static void
c19d1205 10915do_t_cpy (void)
90e4755a 10916{
c19d1205 10917 if (inst.size_req == 4)
90e4755a 10918 {
c19d1205
ZW
10919 inst.instruction = THUMB_OP32 (T_MNEM_mov);
10920 inst.instruction |= inst.operands[0].reg << 8;
10921 inst.instruction |= inst.operands[1].reg;
90e4755a 10922 }
c19d1205 10923 else
90e4755a 10924 {
c19d1205
ZW
10925 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
10926 inst.instruction |= (inst.operands[0].reg & 0x7);
10927 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 10928 }
90e4755a
RE
10929}
10930
90e4755a 10931static void
25fe350b 10932do_t_cbz (void)
90e4755a 10933{
e07e6e58 10934 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
10935 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10936 inst.instruction |= inst.operands[0].reg;
10937 inst.reloc.pc_rel = 1;
10938 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
10939}
90e4755a 10940
62b3e311
PB
10941static void
10942do_t_dbg (void)
10943{
10944 inst.instruction |= inst.operands[0].imm;
10945}
10946
10947static void
10948do_t_div (void)
10949{
fdfde340
JM
10950 unsigned Rd, Rn, Rm;
10951
10952 Rd = inst.operands[0].reg;
10953 Rn = (inst.operands[1].present
10954 ? inst.operands[1].reg : Rd);
10955 Rm = inst.operands[2].reg;
10956
10957 reject_bad_reg (Rd);
10958 reject_bad_reg (Rn);
10959 reject_bad_reg (Rm);
10960
10961 inst.instruction |= Rd << 8;
10962 inst.instruction |= Rn << 16;
10963 inst.instruction |= Rm;
62b3e311
PB
10964}
10965
c19d1205
ZW
10966static void
10967do_t_hint (void)
10968{
10969 if (unified_syntax && inst.size_req == 4)
10970 inst.instruction = THUMB_OP32 (inst.instruction);
10971 else
10972 inst.instruction = THUMB_OP16 (inst.instruction);
10973}
90e4755a 10974
c19d1205
ZW
10975static void
10976do_t_it (void)
10977{
10978 unsigned int cond = inst.operands[0].imm;
e27ec89e 10979
e07e6e58
NC
10980 set_it_insn_type (IT_INSN);
10981 now_it.mask = (inst.instruction & 0xf) | 0x10;
10982 now_it.cc = cond;
5a01bb1d 10983 now_it.warn_deprecated = FALSE;
e27ec89e
PB
10984
10985 /* If the condition is a negative condition, invert the mask. */
c19d1205 10986 if ((cond & 0x1) == 0x0)
90e4755a 10987 {
c19d1205 10988 unsigned int mask = inst.instruction & 0x000f;
90e4755a 10989
c19d1205 10990 if ((mask & 0x7) == 0)
5a01bb1d
MGD
10991 {
10992 /* No conversion needed. */
10993 now_it.block_length = 1;
10994 }
c19d1205 10995 else if ((mask & 0x3) == 0)
5a01bb1d
MGD
10996 {
10997 mask ^= 0x8;
10998 now_it.block_length = 2;
10999 }
e27ec89e 11000 else if ((mask & 0x1) == 0)
5a01bb1d
MGD
11001 {
11002 mask ^= 0xC;
11003 now_it.block_length = 3;
11004 }
c19d1205 11005 else
5a01bb1d
MGD
11006 {
11007 mask ^= 0xE;
11008 now_it.block_length = 4;
11009 }
90e4755a 11010
e27ec89e
PB
11011 inst.instruction &= 0xfff0;
11012 inst.instruction |= mask;
c19d1205 11013 }
90e4755a 11014
c19d1205
ZW
11015 inst.instruction |= cond << 4;
11016}
90e4755a 11017
3c707909
PB
11018/* Helper function used for both push/pop and ldm/stm. */
11019static void
11020encode_thumb2_ldmstm (int base, unsigned mask, bfd_boolean writeback)
11021{
11022 bfd_boolean load;
11023
11024 load = (inst.instruction & (1 << 20)) != 0;
11025
11026 if (mask & (1 << 13))
11027 inst.error = _("SP not allowed in register list");
1e5b0379
NC
11028
11029 if ((mask & (1 << base)) != 0
11030 && writeback)
11031 inst.error = _("having the base register in the register list when "
11032 "using write back is UNPREDICTABLE");
11033
3c707909
PB
11034 if (load)
11035 {
e07e6e58 11036 if (mask & (1 << 15))
477330fc
RM
11037 {
11038 if (mask & (1 << 14))
11039 inst.error = _("LR and PC should not both be in register list");
11040 else
11041 set_it_insn_type_last ();
11042 }
3c707909
PB
11043 }
11044 else
11045 {
11046 if (mask & (1 << 15))
11047 inst.error = _("PC not allowed in register list");
3c707909
PB
11048 }
11049
11050 if ((mask & (mask - 1)) == 0)
11051 {
11052 /* Single register transfers implemented as str/ldr. */
11053 if (writeback)
11054 {
11055 if (inst.instruction & (1 << 23))
11056 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
11057 else
11058 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
11059 }
11060 else
11061 {
11062 if (inst.instruction & (1 << 23))
11063 inst.instruction = 0x00800000; /* ia -> [base] */
11064 else
11065 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
11066 }
11067
11068 inst.instruction |= 0xf8400000;
11069 if (load)
11070 inst.instruction |= 0x00100000;
11071
5f4273c7 11072 mask = ffs (mask) - 1;
3c707909
PB
11073 mask <<= 12;
11074 }
11075 else if (writeback)
11076 inst.instruction |= WRITE_BACK;
11077
11078 inst.instruction |= mask;
11079 inst.instruction |= base << 16;
11080}
11081
c19d1205
ZW
11082static void
11083do_t_ldmstm (void)
11084{
11085 /* This really doesn't seem worth it. */
11086 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
11087 _("expression too complex"));
11088 constraint (inst.operands[1].writeback,
11089 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 11090
c19d1205
ZW
11091 if (unified_syntax)
11092 {
3c707909
PB
11093 bfd_boolean narrow;
11094 unsigned mask;
11095
11096 narrow = FALSE;
c19d1205
ZW
11097 /* See if we can use a 16-bit instruction. */
11098 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
11099 && inst.size_req != 4
3c707909 11100 && !(inst.operands[1].imm & ~0xff))
90e4755a 11101 {
3c707909 11102 mask = 1 << inst.operands[0].reg;
90e4755a 11103
eab4f823 11104 if (inst.operands[0].reg <= 7)
90e4755a 11105 {
3c707909 11106 if (inst.instruction == T_MNEM_stmia
eab4f823
MGD
11107 ? inst.operands[0].writeback
11108 : (inst.operands[0].writeback
11109 == !(inst.operands[1].imm & mask)))
477330fc 11110 {
eab4f823
MGD
11111 if (inst.instruction == T_MNEM_stmia
11112 && (inst.operands[1].imm & mask)
11113 && (inst.operands[1].imm & (mask - 1)))
11114 as_warn (_("value stored for r%d is UNKNOWN"),
11115 inst.operands[0].reg);
3c707909 11116
eab4f823
MGD
11117 inst.instruction = THUMB_OP16 (inst.instruction);
11118 inst.instruction |= inst.operands[0].reg << 8;
11119 inst.instruction |= inst.operands[1].imm;
11120 narrow = TRUE;
11121 }
11122 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
11123 {
11124 /* This means 1 register in reg list one of 3 situations:
11125 1. Instruction is stmia, but without writeback.
11126 2. lmdia without writeback, but with Rn not in
477330fc 11127 reglist.
eab4f823
MGD
11128 3. ldmia with writeback, but with Rn in reglist.
11129 Case 3 is UNPREDICTABLE behaviour, so we handle
11130 case 1 and 2 which can be converted into a 16-bit
11131 str or ldr. The SP cases are handled below. */
11132 unsigned long opcode;
11133 /* First, record an error for Case 3. */
11134 if (inst.operands[1].imm & mask
11135 && inst.operands[0].writeback)
fa94de6b 11136 inst.error =
eab4f823
MGD
11137 _("having the base register in the register list when "
11138 "using write back is UNPREDICTABLE");
fa94de6b
RM
11139
11140 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
eab4f823
MGD
11141 : T_MNEM_ldr);
11142 inst.instruction = THUMB_OP16 (opcode);
11143 inst.instruction |= inst.operands[0].reg << 3;
11144 inst.instruction |= (ffs (inst.operands[1].imm)-1);
11145 narrow = TRUE;
11146 }
90e4755a 11147 }
eab4f823 11148 else if (inst.operands[0] .reg == REG_SP)
90e4755a 11149 {
eab4f823
MGD
11150 if (inst.operands[0].writeback)
11151 {
fa94de6b 11152 inst.instruction =
eab4f823 11153 THUMB_OP16 (inst.instruction == T_MNEM_stmia
477330fc 11154 ? T_MNEM_push : T_MNEM_pop);
eab4f823 11155 inst.instruction |= inst.operands[1].imm;
477330fc 11156 narrow = TRUE;
eab4f823
MGD
11157 }
11158 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
11159 {
fa94de6b 11160 inst.instruction =
eab4f823 11161 THUMB_OP16 (inst.instruction == T_MNEM_stmia
477330fc 11162 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
eab4f823 11163 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
477330fc 11164 narrow = TRUE;
eab4f823 11165 }
90e4755a 11166 }
3c707909
PB
11167 }
11168
11169 if (!narrow)
11170 {
c19d1205
ZW
11171 if (inst.instruction < 0xffff)
11172 inst.instruction = THUMB_OP32 (inst.instruction);
3c707909 11173
5f4273c7
NC
11174 encode_thumb2_ldmstm (inst.operands[0].reg, inst.operands[1].imm,
11175 inst.operands[0].writeback);
90e4755a
RE
11176 }
11177 }
c19d1205 11178 else
90e4755a 11179 {
c19d1205
ZW
11180 constraint (inst.operands[0].reg > 7
11181 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
1198ca51
PB
11182 constraint (inst.instruction != T_MNEM_ldmia
11183 && inst.instruction != T_MNEM_stmia,
11184 _("Thumb-2 instruction only valid in unified syntax"));
c19d1205 11185 if (inst.instruction == T_MNEM_stmia)
f03698e6 11186 {
c19d1205
ZW
11187 if (!inst.operands[0].writeback)
11188 as_warn (_("this instruction will write back the base register"));
11189 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
11190 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
1e5b0379 11191 as_warn (_("value stored for r%d is UNKNOWN"),
c19d1205 11192 inst.operands[0].reg);
f03698e6 11193 }
c19d1205 11194 else
90e4755a 11195 {
c19d1205
ZW
11196 if (!inst.operands[0].writeback
11197 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
11198 as_warn (_("this instruction will write back the base register"));
11199 else if (inst.operands[0].writeback
11200 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
11201 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
11202 }
11203
c19d1205
ZW
11204 inst.instruction = THUMB_OP16 (inst.instruction);
11205 inst.instruction |= inst.operands[0].reg << 8;
11206 inst.instruction |= inst.operands[1].imm;
11207 }
11208}
e28cd48c 11209
c19d1205
ZW
11210static void
11211do_t_ldrex (void)
11212{
11213 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
11214 || inst.operands[1].postind || inst.operands[1].writeback
11215 || inst.operands[1].immisreg || inst.operands[1].shifted
11216 || inst.operands[1].negative,
01cfc07f 11217 BAD_ADDR_MODE);
e28cd48c 11218
5be8be5d
DG
11219 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
11220
c19d1205
ZW
11221 inst.instruction |= inst.operands[0].reg << 12;
11222 inst.instruction |= inst.operands[1].reg << 16;
11223 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
11224}
e28cd48c 11225
c19d1205
ZW
11226static void
11227do_t_ldrexd (void)
11228{
11229 if (!inst.operands[1].present)
1cac9012 11230 {
c19d1205
ZW
11231 constraint (inst.operands[0].reg == REG_LR,
11232 _("r14 not allowed as first register "
11233 "when second register is omitted"));
11234 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 11235 }
c19d1205
ZW
11236 constraint (inst.operands[0].reg == inst.operands[1].reg,
11237 BAD_OVERLAP);
b99bd4ef 11238
c19d1205
ZW
11239 inst.instruction |= inst.operands[0].reg << 12;
11240 inst.instruction |= inst.operands[1].reg << 8;
11241 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
11242}
11243
11244static void
c19d1205 11245do_t_ldst (void)
b99bd4ef 11246{
0110f2b8
PB
11247 unsigned long opcode;
11248 int Rn;
11249
e07e6e58
NC
11250 if (inst.operands[0].isreg
11251 && !inst.operands[0].preind
11252 && inst.operands[0].reg == REG_PC)
11253 set_it_insn_type_last ();
11254
0110f2b8 11255 opcode = inst.instruction;
c19d1205 11256 if (unified_syntax)
b99bd4ef 11257 {
53365c0d
PB
11258 if (!inst.operands[1].isreg)
11259 {
11260 if (opcode <= 0xffff)
11261 inst.instruction = THUMB_OP32 (opcode);
8335d6aa 11262 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
53365c0d
PB
11263 return;
11264 }
0110f2b8
PB
11265 if (inst.operands[1].isreg
11266 && !inst.operands[1].writeback
c19d1205
ZW
11267 && !inst.operands[1].shifted && !inst.operands[1].postind
11268 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
11269 && opcode <= 0xffff
11270 && inst.size_req != 4)
c19d1205 11271 {
0110f2b8
PB
11272 /* Insn may have a 16-bit form. */
11273 Rn = inst.operands[1].reg;
11274 if (inst.operands[1].immisreg)
11275 {
11276 inst.instruction = THUMB_OP16 (opcode);
5f4273c7 11277 /* [Rn, Rik] */
0110f2b8
PB
11278 if (Rn <= 7 && inst.operands[1].imm <= 7)
11279 goto op16;
5be8be5d
DG
11280 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
11281 reject_bad_reg (inst.operands[1].imm);
0110f2b8
PB
11282 }
11283 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
11284 && opcode != T_MNEM_ldrsb)
11285 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
11286 || (Rn == REG_SP && opcode == T_MNEM_str))
11287 {
11288 /* [Rn, #const] */
11289 if (Rn > 7)
11290 {
11291 if (Rn == REG_PC)
11292 {
11293 if (inst.reloc.pc_rel)
11294 opcode = T_MNEM_ldr_pc2;
11295 else
11296 opcode = T_MNEM_ldr_pc;
11297 }
11298 else
11299 {
11300 if (opcode == T_MNEM_ldr)
11301 opcode = T_MNEM_ldr_sp;
11302 else
11303 opcode = T_MNEM_str_sp;
11304 }
11305 inst.instruction = inst.operands[0].reg << 8;
11306 }
11307 else
11308 {
11309 inst.instruction = inst.operands[0].reg;
11310 inst.instruction |= inst.operands[1].reg << 3;
11311 }
11312 inst.instruction |= THUMB_OP16 (opcode);
11313 if (inst.size_req == 2)
11314 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11315 else
11316 inst.relax = opcode;
11317 return;
11318 }
c19d1205 11319 }
0110f2b8 11320 /* Definitely a 32-bit variant. */
5be8be5d 11321
8d67f500
NC
11322 /* Warning for Erratum 752419. */
11323 if (opcode == T_MNEM_ldr
11324 && inst.operands[0].reg == REG_SP
11325 && inst.operands[1].writeback == 1
11326 && !inst.operands[1].immisreg)
11327 {
11328 if (no_cpu_selected ()
11329 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
477330fc
RM
11330 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
11331 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
8d67f500
NC
11332 as_warn (_("This instruction may be unpredictable "
11333 "if executed on M-profile cores "
11334 "with interrupts enabled."));
11335 }
11336
5be8be5d 11337 /* Do some validations regarding addressing modes. */
1be5fd2e 11338 if (inst.operands[1].immisreg)
5be8be5d
DG
11339 reject_bad_reg (inst.operands[1].imm);
11340
1be5fd2e
NC
11341 constraint (inst.operands[1].writeback == 1
11342 && inst.operands[0].reg == inst.operands[1].reg,
11343 BAD_OVERLAP);
11344
0110f2b8 11345 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
11346 inst.instruction |= inst.operands[0].reg << 12;
11347 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
1be5fd2e 11348 check_ldr_r15_aligned ();
b99bd4ef
NC
11349 return;
11350 }
11351
c19d1205
ZW
11352 constraint (inst.operands[0].reg > 7, BAD_HIREG);
11353
11354 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 11355 {
c19d1205
ZW
11356 /* Only [Rn,Rm] is acceptable. */
11357 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
11358 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
11359 || inst.operands[1].postind || inst.operands[1].shifted
11360 || inst.operands[1].negative,
11361 _("Thumb does not support this addressing mode"));
11362 inst.instruction = THUMB_OP16 (inst.instruction);
11363 goto op16;
b99bd4ef 11364 }
5f4273c7 11365
c19d1205
ZW
11366 inst.instruction = THUMB_OP16 (inst.instruction);
11367 if (!inst.operands[1].isreg)
8335d6aa 11368 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
c19d1205 11369 return;
b99bd4ef 11370
c19d1205
ZW
11371 constraint (!inst.operands[1].preind
11372 || inst.operands[1].shifted
11373 || inst.operands[1].writeback,
11374 _("Thumb does not support this addressing mode"));
11375 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 11376 {
c19d1205
ZW
11377 constraint (inst.instruction & 0x0600,
11378 _("byte or halfword not valid for base register"));
11379 constraint (inst.operands[1].reg == REG_PC
11380 && !(inst.instruction & THUMB_LOAD_BIT),
11381 _("r15 based store not allowed"));
11382 constraint (inst.operands[1].immisreg,
11383 _("invalid base register for register offset"));
b99bd4ef 11384
c19d1205
ZW
11385 if (inst.operands[1].reg == REG_PC)
11386 inst.instruction = T_OPCODE_LDR_PC;
11387 else if (inst.instruction & THUMB_LOAD_BIT)
11388 inst.instruction = T_OPCODE_LDR_SP;
11389 else
11390 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 11391
c19d1205
ZW
11392 inst.instruction |= inst.operands[0].reg << 8;
11393 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11394 return;
11395 }
90e4755a 11396
c19d1205
ZW
11397 constraint (inst.operands[1].reg > 7, BAD_HIREG);
11398 if (!inst.operands[1].immisreg)
11399 {
11400 /* Immediate offset. */
11401 inst.instruction |= inst.operands[0].reg;
11402 inst.instruction |= inst.operands[1].reg << 3;
11403 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11404 return;
11405 }
90e4755a 11406
c19d1205
ZW
11407 /* Register offset. */
11408 constraint (inst.operands[1].imm > 7, BAD_HIREG);
11409 constraint (inst.operands[1].negative,
11410 _("Thumb does not support this addressing mode"));
90e4755a 11411
c19d1205
ZW
11412 op16:
11413 switch (inst.instruction)
11414 {
11415 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
11416 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
11417 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
11418 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
11419 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
11420 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
11421 case 0x5600 /* ldrsb */:
11422 case 0x5e00 /* ldrsh */: break;
11423 default: abort ();
11424 }
90e4755a 11425
c19d1205
ZW
11426 inst.instruction |= inst.operands[0].reg;
11427 inst.instruction |= inst.operands[1].reg << 3;
11428 inst.instruction |= inst.operands[1].imm << 6;
11429}
90e4755a 11430
c19d1205
ZW
11431static void
11432do_t_ldstd (void)
11433{
11434 if (!inst.operands[1].present)
b99bd4ef 11435 {
c19d1205
ZW
11436 inst.operands[1].reg = inst.operands[0].reg + 1;
11437 constraint (inst.operands[0].reg == REG_LR,
11438 _("r14 not allowed here"));
bd340a04 11439 constraint (inst.operands[0].reg == REG_R12,
477330fc 11440 _("r12 not allowed here"));
b99bd4ef 11441 }
bd340a04
MGD
11442
11443 if (inst.operands[2].writeback
11444 && (inst.operands[0].reg == inst.operands[2].reg
11445 || inst.operands[1].reg == inst.operands[2].reg))
11446 as_warn (_("base register written back, and overlaps "
477330fc 11447 "one of transfer registers"));
bd340a04 11448
c19d1205
ZW
11449 inst.instruction |= inst.operands[0].reg << 12;
11450 inst.instruction |= inst.operands[1].reg << 8;
11451 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
b99bd4ef
NC
11452}
11453
c19d1205
ZW
11454static void
11455do_t_ldstt (void)
11456{
11457 inst.instruction |= inst.operands[0].reg << 12;
11458 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
11459}
a737bd4d 11460
b99bd4ef 11461static void
c19d1205 11462do_t_mla (void)
b99bd4ef 11463{
fdfde340 11464 unsigned Rd, Rn, Rm, Ra;
c921be7d 11465
fdfde340
JM
11466 Rd = inst.operands[0].reg;
11467 Rn = inst.operands[1].reg;
11468 Rm = inst.operands[2].reg;
11469 Ra = inst.operands[3].reg;
11470
11471 reject_bad_reg (Rd);
11472 reject_bad_reg (Rn);
11473 reject_bad_reg (Rm);
11474 reject_bad_reg (Ra);
11475
11476 inst.instruction |= Rd << 8;
11477 inst.instruction |= Rn << 16;
11478 inst.instruction |= Rm;
11479 inst.instruction |= Ra << 12;
c19d1205 11480}
b99bd4ef 11481
c19d1205
ZW
11482static void
11483do_t_mlal (void)
11484{
fdfde340
JM
11485 unsigned RdLo, RdHi, Rn, Rm;
11486
11487 RdLo = inst.operands[0].reg;
11488 RdHi = inst.operands[1].reg;
11489 Rn = inst.operands[2].reg;
11490 Rm = inst.operands[3].reg;
11491
11492 reject_bad_reg (RdLo);
11493 reject_bad_reg (RdHi);
11494 reject_bad_reg (Rn);
11495 reject_bad_reg (Rm);
11496
11497 inst.instruction |= RdLo << 12;
11498 inst.instruction |= RdHi << 8;
11499 inst.instruction |= Rn << 16;
11500 inst.instruction |= Rm;
c19d1205 11501}
b99bd4ef 11502
c19d1205
ZW
11503static void
11504do_t_mov_cmp (void)
11505{
fdfde340
JM
11506 unsigned Rn, Rm;
11507
11508 Rn = inst.operands[0].reg;
11509 Rm = inst.operands[1].reg;
11510
e07e6e58
NC
11511 if (Rn == REG_PC)
11512 set_it_insn_type_last ();
11513
c19d1205 11514 if (unified_syntax)
b99bd4ef 11515 {
c19d1205
ZW
11516 int r0off = (inst.instruction == T_MNEM_mov
11517 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 11518 unsigned long opcode;
3d388997
PB
11519 bfd_boolean narrow;
11520 bfd_boolean low_regs;
11521
fdfde340 11522 low_regs = (Rn <= 7 && Rm <= 7);
0110f2b8 11523 opcode = inst.instruction;
e07e6e58 11524 if (in_it_block ())
0110f2b8 11525 narrow = opcode != T_MNEM_movs;
3d388997 11526 else
0110f2b8 11527 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
11528 if (inst.size_req == 4
11529 || inst.operands[1].shifted)
11530 narrow = FALSE;
11531
efd81785
PB
11532 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
11533 if (opcode == T_MNEM_movs && inst.operands[1].isreg
11534 && !inst.operands[1].shifted
fdfde340
JM
11535 && Rn == REG_PC
11536 && Rm == REG_LR)
efd81785
PB
11537 {
11538 inst.instruction = T2_SUBS_PC_LR;
11539 return;
11540 }
11541
fdfde340
JM
11542 if (opcode == T_MNEM_cmp)
11543 {
11544 constraint (Rn == REG_PC, BAD_PC);
94206790
MM
11545 if (narrow)
11546 {
11547 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
11548 but valid. */
11549 warn_deprecated_sp (Rm);
11550 /* R15 was documented as a valid choice for Rm in ARMv6,
11551 but as UNPREDICTABLE in ARMv7. ARM's proprietary
11552 tools reject R15, so we do too. */
11553 constraint (Rm == REG_PC, BAD_PC);
11554 }
11555 else
11556 reject_bad_reg (Rm);
fdfde340
JM
11557 }
11558 else if (opcode == T_MNEM_mov
11559 || opcode == T_MNEM_movs)
11560 {
11561 if (inst.operands[1].isreg)
11562 {
11563 if (opcode == T_MNEM_movs)
11564 {
11565 reject_bad_reg (Rn);
11566 reject_bad_reg (Rm);
11567 }
76fa04a4
MGD
11568 else if (narrow)
11569 {
11570 /* This is mov.n. */
11571 if ((Rn == REG_SP || Rn == REG_PC)
11572 && (Rm == REG_SP || Rm == REG_PC))
11573 {
5c3696f8 11574 as_tsktsk (_("Use of r%u as a source register is "
76fa04a4
MGD
11575 "deprecated when r%u is the destination "
11576 "register."), Rm, Rn);
11577 }
11578 }
11579 else
11580 {
11581 /* This is mov.w. */
11582 constraint (Rn == REG_PC, BAD_PC);
11583 constraint (Rm == REG_PC, BAD_PC);
11584 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
11585 }
fdfde340
JM
11586 }
11587 else
11588 reject_bad_reg (Rn);
11589 }
11590
c19d1205
ZW
11591 if (!inst.operands[1].isreg)
11592 {
0110f2b8 11593 /* Immediate operand. */
e07e6e58 11594 if (!in_it_block () && opcode == T_MNEM_mov)
0110f2b8
PB
11595 narrow = 0;
11596 if (low_regs && narrow)
11597 {
11598 inst.instruction = THUMB_OP16 (opcode);
fdfde340 11599 inst.instruction |= Rn << 8;
0110f2b8
PB
11600 if (inst.size_req == 2)
11601 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11602 else
11603 inst.relax = opcode;
11604 }
11605 else
11606 {
11607 inst.instruction = THUMB_OP32 (inst.instruction);
11608 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11609 inst.instruction |= Rn << r0off;
0110f2b8
PB
11610 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11611 }
c19d1205 11612 }
728ca7c9
PB
11613 else if (inst.operands[1].shifted && inst.operands[1].immisreg
11614 && (inst.instruction == T_MNEM_mov
11615 || inst.instruction == T_MNEM_movs))
11616 {
11617 /* Register shifts are encoded as separate shift instructions. */
11618 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
11619
e07e6e58 11620 if (in_it_block ())
728ca7c9
PB
11621 narrow = !flags;
11622 else
11623 narrow = flags;
11624
11625 if (inst.size_req == 4)
11626 narrow = FALSE;
11627
11628 if (!low_regs || inst.operands[1].imm > 7)
11629 narrow = FALSE;
11630
fdfde340 11631 if (Rn != Rm)
728ca7c9
PB
11632 narrow = FALSE;
11633
11634 switch (inst.operands[1].shift_kind)
11635 {
11636 case SHIFT_LSL:
11637 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
11638 break;
11639 case SHIFT_ASR:
11640 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
11641 break;
11642 case SHIFT_LSR:
11643 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
11644 break;
11645 case SHIFT_ROR:
11646 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
11647 break;
11648 default:
5f4273c7 11649 abort ();
728ca7c9
PB
11650 }
11651
11652 inst.instruction = opcode;
11653 if (narrow)
11654 {
fdfde340 11655 inst.instruction |= Rn;
728ca7c9
PB
11656 inst.instruction |= inst.operands[1].imm << 3;
11657 }
11658 else
11659 {
11660 if (flags)
11661 inst.instruction |= CONDS_BIT;
11662
fdfde340
JM
11663 inst.instruction |= Rn << 8;
11664 inst.instruction |= Rm << 16;
728ca7c9
PB
11665 inst.instruction |= inst.operands[1].imm;
11666 }
11667 }
3d388997 11668 else if (!narrow)
c19d1205 11669 {
728ca7c9
PB
11670 /* Some mov with immediate shift have narrow variants.
11671 Register shifts are handled above. */
11672 if (low_regs && inst.operands[1].shifted
11673 && (inst.instruction == T_MNEM_mov
11674 || inst.instruction == T_MNEM_movs))
11675 {
e07e6e58 11676 if (in_it_block ())
728ca7c9
PB
11677 narrow = (inst.instruction == T_MNEM_mov);
11678 else
11679 narrow = (inst.instruction == T_MNEM_movs);
11680 }
11681
11682 if (narrow)
11683 {
11684 switch (inst.operands[1].shift_kind)
11685 {
11686 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11687 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
11688 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11689 default: narrow = FALSE; break;
11690 }
11691 }
11692
11693 if (narrow)
11694 {
fdfde340
JM
11695 inst.instruction |= Rn;
11696 inst.instruction |= Rm << 3;
728ca7c9
PB
11697 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11698 }
11699 else
11700 {
11701 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11702 inst.instruction |= Rn << r0off;
728ca7c9
PB
11703 encode_thumb32_shifted_operand (1);
11704 }
c19d1205
ZW
11705 }
11706 else
11707 switch (inst.instruction)
11708 {
11709 case T_MNEM_mov:
837b3435 11710 /* In v4t or v5t a move of two lowregs produces unpredictable
c6400f8a
MGD
11711 results. Don't allow this. */
11712 if (low_regs)
11713 {
11714 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
11715 "MOV Rd, Rs with two low registers is not "
11716 "permitted on this architecture");
fa94de6b 11717 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
c6400f8a
MGD
11718 arm_ext_v6);
11719 }
11720
c19d1205 11721 inst.instruction = T_OPCODE_MOV_HR;
fdfde340
JM
11722 inst.instruction |= (Rn & 0x8) << 4;
11723 inst.instruction |= (Rn & 0x7);
11724 inst.instruction |= Rm << 3;
c19d1205 11725 break;
b99bd4ef 11726
c19d1205
ZW
11727 case T_MNEM_movs:
11728 /* We know we have low registers at this point.
941a8a52
MGD
11729 Generate LSLS Rd, Rs, #0. */
11730 inst.instruction = T_OPCODE_LSL_I;
fdfde340
JM
11731 inst.instruction |= Rn;
11732 inst.instruction |= Rm << 3;
c19d1205
ZW
11733 break;
11734
11735 case T_MNEM_cmp:
3d388997 11736 if (low_regs)
c19d1205
ZW
11737 {
11738 inst.instruction = T_OPCODE_CMP_LR;
fdfde340
JM
11739 inst.instruction |= Rn;
11740 inst.instruction |= Rm << 3;
c19d1205
ZW
11741 }
11742 else
11743 {
11744 inst.instruction = T_OPCODE_CMP_HR;
fdfde340
JM
11745 inst.instruction |= (Rn & 0x8) << 4;
11746 inst.instruction |= (Rn & 0x7);
11747 inst.instruction |= Rm << 3;
c19d1205
ZW
11748 }
11749 break;
11750 }
b99bd4ef
NC
11751 return;
11752 }
11753
c19d1205 11754 inst.instruction = THUMB_OP16 (inst.instruction);
539d4391
NC
11755
11756 /* PR 10443: Do not silently ignore shifted operands. */
11757 constraint (inst.operands[1].shifted,
11758 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
11759
c19d1205 11760 if (inst.operands[1].isreg)
b99bd4ef 11761 {
fdfde340 11762 if (Rn < 8 && Rm < 8)
b99bd4ef 11763 {
c19d1205
ZW
11764 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
11765 since a MOV instruction produces unpredictable results. */
11766 if (inst.instruction == T_OPCODE_MOV_I8)
11767 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 11768 else
c19d1205 11769 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 11770
fdfde340
JM
11771 inst.instruction |= Rn;
11772 inst.instruction |= Rm << 3;
b99bd4ef
NC
11773 }
11774 else
11775 {
c19d1205
ZW
11776 if (inst.instruction == T_OPCODE_MOV_I8)
11777 inst.instruction = T_OPCODE_MOV_HR;
11778 else
11779 inst.instruction = T_OPCODE_CMP_HR;
11780 do_t_cpy ();
b99bd4ef
NC
11781 }
11782 }
c19d1205 11783 else
b99bd4ef 11784 {
fdfde340 11785 constraint (Rn > 7,
c19d1205 11786 _("only lo regs allowed with immediate"));
fdfde340 11787 inst.instruction |= Rn << 8;
c19d1205
ZW
11788 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11789 }
11790}
b99bd4ef 11791
c19d1205
ZW
11792static void
11793do_t_mov16 (void)
11794{
fdfde340 11795 unsigned Rd;
b6895b4f
PB
11796 bfd_vma imm;
11797 bfd_boolean top;
11798
11799 top = (inst.instruction & 0x00800000) != 0;
11800 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
11801 {
11802 constraint (top, _(":lower16: not allowed this instruction"));
11803 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
11804 }
11805 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
11806 {
11807 constraint (!top, _(":upper16: not allowed this instruction"));
11808 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
11809 }
11810
fdfde340
JM
11811 Rd = inst.operands[0].reg;
11812 reject_bad_reg (Rd);
11813
11814 inst.instruction |= Rd << 8;
b6895b4f
PB
11815 if (inst.reloc.type == BFD_RELOC_UNUSED)
11816 {
11817 imm = inst.reloc.exp.X_add_number;
11818 inst.instruction |= (imm & 0xf000) << 4;
11819 inst.instruction |= (imm & 0x0800) << 15;
11820 inst.instruction |= (imm & 0x0700) << 4;
11821 inst.instruction |= (imm & 0x00ff);
11822 }
c19d1205 11823}
b99bd4ef 11824
c19d1205
ZW
11825static void
11826do_t_mvn_tst (void)
11827{
fdfde340 11828 unsigned Rn, Rm;
c921be7d 11829
fdfde340
JM
11830 Rn = inst.operands[0].reg;
11831 Rm = inst.operands[1].reg;
11832
11833 if (inst.instruction == T_MNEM_cmp
11834 || inst.instruction == T_MNEM_cmn)
11835 constraint (Rn == REG_PC, BAD_PC);
11836 else
11837 reject_bad_reg (Rn);
11838 reject_bad_reg (Rm);
11839
c19d1205
ZW
11840 if (unified_syntax)
11841 {
11842 int r0off = (inst.instruction == T_MNEM_mvn
11843 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
11844 bfd_boolean narrow;
11845
11846 if (inst.size_req == 4
11847 || inst.instruction > 0xffff
11848 || inst.operands[1].shifted
fdfde340 11849 || Rn > 7 || Rm > 7)
3d388997 11850 narrow = FALSE;
fe8b4cc3
KT
11851 else if (inst.instruction == T_MNEM_cmn
11852 || inst.instruction == T_MNEM_tst)
3d388997
PB
11853 narrow = TRUE;
11854 else if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11855 narrow = !in_it_block ();
3d388997 11856 else
e07e6e58 11857 narrow = in_it_block ();
3d388997 11858
c19d1205 11859 if (!inst.operands[1].isreg)
b99bd4ef 11860 {
c19d1205
ZW
11861 /* For an immediate, we always generate a 32-bit opcode;
11862 section relaxation will shrink it later if possible. */
11863 if (inst.instruction < 0xffff)
11864 inst.instruction = THUMB_OP32 (inst.instruction);
11865 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11866 inst.instruction |= Rn << r0off;
c19d1205 11867 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 11868 }
c19d1205 11869 else
b99bd4ef 11870 {
c19d1205 11871 /* See if we can do this with a 16-bit instruction. */
3d388997 11872 if (narrow)
b99bd4ef 11873 {
c19d1205 11874 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11875 inst.instruction |= Rn;
11876 inst.instruction |= Rm << 3;
b99bd4ef 11877 }
c19d1205 11878 else
b99bd4ef 11879 {
c19d1205
ZW
11880 constraint (inst.operands[1].shifted
11881 && inst.operands[1].immisreg,
11882 _("shift must be constant"));
11883 if (inst.instruction < 0xffff)
11884 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11885 inst.instruction |= Rn << r0off;
c19d1205 11886 encode_thumb32_shifted_operand (1);
b99bd4ef 11887 }
b99bd4ef
NC
11888 }
11889 }
11890 else
11891 {
c19d1205
ZW
11892 constraint (inst.instruction > 0xffff
11893 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
11894 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
11895 _("unshifted register required"));
fdfde340 11896 constraint (Rn > 7 || Rm > 7,
c19d1205 11897 BAD_HIREG);
b99bd4ef 11898
c19d1205 11899 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11900 inst.instruction |= Rn;
11901 inst.instruction |= Rm << 3;
b99bd4ef 11902 }
b99bd4ef
NC
11903}
11904
b05fe5cf 11905static void
c19d1205 11906do_t_mrs (void)
b05fe5cf 11907{
fdfde340 11908 unsigned Rd;
037e8744
JB
11909
11910 if (do_vfp_nsyn_mrs () == SUCCESS)
11911 return;
11912
90ec0d68
MGD
11913 Rd = inst.operands[0].reg;
11914 reject_bad_reg (Rd);
11915 inst.instruction |= Rd << 8;
11916
11917 if (inst.operands[1].isreg)
62b3e311 11918 {
90ec0d68
MGD
11919 unsigned br = inst.operands[1].reg;
11920 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
11921 as_bad (_("bad register for mrs"));
11922
11923 inst.instruction |= br & (0xf << 16);
11924 inst.instruction |= (br & 0x300) >> 4;
11925 inst.instruction |= (br & SPSR_BIT) >> 2;
62b3e311
PB
11926 }
11927 else
11928 {
90ec0d68 11929 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
5f4273c7 11930
d2cd1205 11931 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
1a43faaf
NC
11932 {
11933 /* PR gas/12698: The constraint is only applied for m_profile.
11934 If the user has specified -march=all, we want to ignore it as
11935 we are building for any CPU type, including non-m variants. */
823d2571
TG
11936 bfd_boolean m_profile =
11937 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
1a43faaf
NC
11938 constraint ((flags != 0) && m_profile, _("selected processor does "
11939 "not support requested special purpose register"));
11940 }
90ec0d68 11941 else
d2cd1205
JB
11942 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
11943 devices). */
11944 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
11945 _("'APSR', 'CPSR' or 'SPSR' expected"));
fdfde340 11946
90ec0d68
MGD
11947 inst.instruction |= (flags & SPSR_BIT) >> 2;
11948 inst.instruction |= inst.operands[1].imm & 0xff;
11949 inst.instruction |= 0xf0000;
11950 }
c19d1205 11951}
b05fe5cf 11952
c19d1205
ZW
11953static void
11954do_t_msr (void)
11955{
62b3e311 11956 int flags;
fdfde340 11957 unsigned Rn;
62b3e311 11958
037e8744
JB
11959 if (do_vfp_nsyn_msr () == SUCCESS)
11960 return;
11961
c19d1205
ZW
11962 constraint (!inst.operands[1].isreg,
11963 _("Thumb encoding does not support an immediate here"));
90ec0d68
MGD
11964
11965 if (inst.operands[0].isreg)
11966 flags = (int)(inst.operands[0].reg);
11967 else
11968 flags = inst.operands[0].imm;
11969
d2cd1205 11970 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
62b3e311 11971 {
d2cd1205
JB
11972 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
11973
1a43faaf 11974 /* PR gas/12698: The constraint is only applied for m_profile.
477330fc
RM
11975 If the user has specified -march=all, we want to ignore it as
11976 we are building for any CPU type, including non-m variants. */
823d2571
TG
11977 bfd_boolean m_profile =
11978 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
1a43faaf 11979 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
477330fc
RM
11980 && (bits & ~(PSR_s | PSR_f)) != 0)
11981 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11982 && bits != PSR_f)) && m_profile,
11983 _("selected processor does not support requested special "
11984 "purpose register"));
62b3e311
PB
11985 }
11986 else
d2cd1205
JB
11987 constraint ((flags & 0xff) != 0, _("selected processor does not support "
11988 "requested special purpose register"));
c921be7d 11989
fdfde340
JM
11990 Rn = inst.operands[1].reg;
11991 reject_bad_reg (Rn);
11992
62b3e311 11993 inst.instruction |= (flags & SPSR_BIT) >> 2;
90ec0d68
MGD
11994 inst.instruction |= (flags & 0xf0000) >> 8;
11995 inst.instruction |= (flags & 0x300) >> 4;
62b3e311 11996 inst.instruction |= (flags & 0xff);
fdfde340 11997 inst.instruction |= Rn << 16;
c19d1205 11998}
b05fe5cf 11999
c19d1205
ZW
12000static void
12001do_t_mul (void)
12002{
17828f45 12003 bfd_boolean narrow;
fdfde340 12004 unsigned Rd, Rn, Rm;
17828f45 12005
c19d1205
ZW
12006 if (!inst.operands[2].present)
12007 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 12008
fdfde340
JM
12009 Rd = inst.operands[0].reg;
12010 Rn = inst.operands[1].reg;
12011 Rm = inst.operands[2].reg;
12012
17828f45 12013 if (unified_syntax)
b05fe5cf 12014 {
17828f45 12015 if (inst.size_req == 4
fdfde340
JM
12016 || (Rd != Rn
12017 && Rd != Rm)
12018 || Rn > 7
12019 || Rm > 7)
17828f45
JM
12020 narrow = FALSE;
12021 else if (inst.instruction == T_MNEM_muls)
e07e6e58 12022 narrow = !in_it_block ();
17828f45 12023 else
e07e6e58 12024 narrow = in_it_block ();
b05fe5cf 12025 }
c19d1205 12026 else
b05fe5cf 12027 {
17828f45 12028 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
fdfde340 12029 constraint (Rn > 7 || Rm > 7,
c19d1205 12030 BAD_HIREG);
17828f45
JM
12031 narrow = TRUE;
12032 }
b05fe5cf 12033
17828f45
JM
12034 if (narrow)
12035 {
12036 /* 16-bit MULS/Conditional MUL. */
c19d1205 12037 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 12038 inst.instruction |= Rd;
b05fe5cf 12039
fdfde340
JM
12040 if (Rd == Rn)
12041 inst.instruction |= Rm << 3;
12042 else if (Rd == Rm)
12043 inst.instruction |= Rn << 3;
c19d1205
ZW
12044 else
12045 constraint (1, _("dest must overlap one source register"));
12046 }
17828f45
JM
12047 else
12048 {
e07e6e58
NC
12049 constraint (inst.instruction != T_MNEM_mul,
12050 _("Thumb-2 MUL must not set flags"));
17828f45
JM
12051 /* 32-bit MUL. */
12052 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12053 inst.instruction |= Rd << 8;
12054 inst.instruction |= Rn << 16;
12055 inst.instruction |= Rm << 0;
12056
12057 reject_bad_reg (Rd);
12058 reject_bad_reg (Rn);
12059 reject_bad_reg (Rm);
17828f45 12060 }
c19d1205 12061}
b05fe5cf 12062
c19d1205
ZW
12063static void
12064do_t_mull (void)
12065{
fdfde340 12066 unsigned RdLo, RdHi, Rn, Rm;
b05fe5cf 12067
fdfde340
JM
12068 RdLo = inst.operands[0].reg;
12069 RdHi = inst.operands[1].reg;
12070 Rn = inst.operands[2].reg;
12071 Rm = inst.operands[3].reg;
12072
12073 reject_bad_reg (RdLo);
12074 reject_bad_reg (RdHi);
12075 reject_bad_reg (Rn);
12076 reject_bad_reg (Rm);
12077
12078 inst.instruction |= RdLo << 12;
12079 inst.instruction |= RdHi << 8;
12080 inst.instruction |= Rn << 16;
12081 inst.instruction |= Rm;
12082
12083 if (RdLo == RdHi)
c19d1205
ZW
12084 as_tsktsk (_("rdhi and rdlo must be different"));
12085}
b05fe5cf 12086
c19d1205
ZW
12087static void
12088do_t_nop (void)
12089{
e07e6e58
NC
12090 set_it_insn_type (NEUTRAL_IT_INSN);
12091
c19d1205
ZW
12092 if (unified_syntax)
12093 {
12094 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 12095 {
c19d1205
ZW
12096 inst.instruction = THUMB_OP32 (inst.instruction);
12097 inst.instruction |= inst.operands[0].imm;
12098 }
12099 else
12100 {
bc2d1808
NC
12101 /* PR9722: Check for Thumb2 availability before
12102 generating a thumb2 nop instruction. */
afa62d5e 12103 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
bc2d1808
NC
12104 {
12105 inst.instruction = THUMB_OP16 (inst.instruction);
12106 inst.instruction |= inst.operands[0].imm << 4;
12107 }
12108 else
12109 inst.instruction = 0x46c0;
c19d1205
ZW
12110 }
12111 }
12112 else
12113 {
12114 constraint (inst.operands[0].present,
12115 _("Thumb does not support NOP with hints"));
12116 inst.instruction = 0x46c0;
12117 }
12118}
b05fe5cf 12119
c19d1205
ZW
12120static void
12121do_t_neg (void)
12122{
12123 if (unified_syntax)
12124 {
3d388997
PB
12125 bfd_boolean narrow;
12126
12127 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 12128 narrow = !in_it_block ();
3d388997 12129 else
e07e6e58 12130 narrow = in_it_block ();
3d388997
PB
12131 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
12132 narrow = FALSE;
12133 if (inst.size_req == 4)
12134 narrow = FALSE;
12135
12136 if (!narrow)
c19d1205
ZW
12137 {
12138 inst.instruction = THUMB_OP32 (inst.instruction);
12139 inst.instruction |= inst.operands[0].reg << 8;
12140 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
12141 }
12142 else
12143 {
c19d1205
ZW
12144 inst.instruction = THUMB_OP16 (inst.instruction);
12145 inst.instruction |= inst.operands[0].reg;
12146 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
12147 }
12148 }
12149 else
12150 {
c19d1205
ZW
12151 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
12152 BAD_HIREG);
12153 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
12154
12155 inst.instruction = THUMB_OP16 (inst.instruction);
12156 inst.instruction |= inst.operands[0].reg;
12157 inst.instruction |= inst.operands[1].reg << 3;
12158 }
12159}
12160
1c444d06
JM
12161static void
12162do_t_orn (void)
12163{
12164 unsigned Rd, Rn;
12165
12166 Rd = inst.operands[0].reg;
12167 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
12168
fdfde340
JM
12169 reject_bad_reg (Rd);
12170 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
12171 reject_bad_reg (Rn);
12172
1c444d06
JM
12173 inst.instruction |= Rd << 8;
12174 inst.instruction |= Rn << 16;
12175
12176 if (!inst.operands[2].isreg)
12177 {
12178 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
12179 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
12180 }
12181 else
12182 {
12183 unsigned Rm;
12184
12185 Rm = inst.operands[2].reg;
fdfde340 12186 reject_bad_reg (Rm);
1c444d06
JM
12187
12188 constraint (inst.operands[2].shifted
12189 && inst.operands[2].immisreg,
12190 _("shift must be constant"));
12191 encode_thumb32_shifted_operand (2);
12192 }
12193}
12194
c19d1205
ZW
12195static void
12196do_t_pkhbt (void)
12197{
fdfde340
JM
12198 unsigned Rd, Rn, Rm;
12199
12200 Rd = inst.operands[0].reg;
12201 Rn = inst.operands[1].reg;
12202 Rm = inst.operands[2].reg;
12203
12204 reject_bad_reg (Rd);
12205 reject_bad_reg (Rn);
12206 reject_bad_reg (Rm);
12207
12208 inst.instruction |= Rd << 8;
12209 inst.instruction |= Rn << 16;
12210 inst.instruction |= Rm;
c19d1205
ZW
12211 if (inst.operands[3].present)
12212 {
12213 unsigned int val = inst.reloc.exp.X_add_number;
12214 constraint (inst.reloc.exp.X_op != O_constant,
12215 _("expression too complex"));
12216 inst.instruction |= (val & 0x1c) << 10;
12217 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 12218 }
c19d1205 12219}
b05fe5cf 12220
c19d1205
ZW
12221static void
12222do_t_pkhtb (void)
12223{
12224 if (!inst.operands[3].present)
1ef52f49
NC
12225 {
12226 unsigned Rtmp;
12227
12228 inst.instruction &= ~0x00000020;
12229
12230 /* PR 10168. Swap the Rm and Rn registers. */
12231 Rtmp = inst.operands[1].reg;
12232 inst.operands[1].reg = inst.operands[2].reg;
12233 inst.operands[2].reg = Rtmp;
12234 }
c19d1205 12235 do_t_pkhbt ();
b05fe5cf
ZW
12236}
12237
c19d1205
ZW
12238static void
12239do_t_pld (void)
12240{
fdfde340
JM
12241 if (inst.operands[0].immisreg)
12242 reject_bad_reg (inst.operands[0].imm);
12243
c19d1205
ZW
12244 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
12245}
b05fe5cf 12246
c19d1205
ZW
12247static void
12248do_t_push_pop (void)
b99bd4ef 12249{
e9f89963 12250 unsigned mask;
5f4273c7 12251
c19d1205
ZW
12252 constraint (inst.operands[0].writeback,
12253 _("push/pop do not support {reglist}^"));
12254 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
12255 _("expression too complex"));
b99bd4ef 12256
e9f89963 12257 mask = inst.operands[0].imm;
d3bfe16e 12258 if (inst.size_req != 4 && (mask & ~0xff) == 0)
3c707909 12259 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
d3bfe16e
JB
12260 else if (inst.size_req != 4
12261 && (mask & ~0xff) == (1 << (inst.instruction == T_MNEM_push
12262 ? REG_LR : REG_PC)))
b99bd4ef 12263 {
c19d1205
ZW
12264 inst.instruction = THUMB_OP16 (inst.instruction);
12265 inst.instruction |= THUMB_PP_PC_LR;
3c707909 12266 inst.instruction |= mask & 0xff;
c19d1205
ZW
12267 }
12268 else if (unified_syntax)
12269 {
3c707909 12270 inst.instruction = THUMB_OP32 (inst.instruction);
5f4273c7 12271 encode_thumb2_ldmstm (13, mask, TRUE);
c19d1205
ZW
12272 }
12273 else
12274 {
12275 inst.error = _("invalid register list to push/pop instruction");
12276 return;
12277 }
c19d1205 12278}
b99bd4ef 12279
c19d1205
ZW
12280static void
12281do_t_rbit (void)
12282{
fdfde340
JM
12283 unsigned Rd, Rm;
12284
12285 Rd = inst.operands[0].reg;
12286 Rm = inst.operands[1].reg;
12287
12288 reject_bad_reg (Rd);
12289 reject_bad_reg (Rm);
12290
12291 inst.instruction |= Rd << 8;
12292 inst.instruction |= Rm << 16;
12293 inst.instruction |= Rm;
c19d1205 12294}
b99bd4ef 12295
c19d1205
ZW
12296static void
12297do_t_rev (void)
12298{
fdfde340
JM
12299 unsigned Rd, Rm;
12300
12301 Rd = inst.operands[0].reg;
12302 Rm = inst.operands[1].reg;
12303
12304 reject_bad_reg (Rd);
12305 reject_bad_reg (Rm);
12306
12307 if (Rd <= 7 && Rm <= 7
c19d1205
ZW
12308 && inst.size_req != 4)
12309 {
12310 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12311 inst.instruction |= Rd;
12312 inst.instruction |= Rm << 3;
c19d1205
ZW
12313 }
12314 else if (unified_syntax)
12315 {
12316 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12317 inst.instruction |= Rd << 8;
12318 inst.instruction |= Rm << 16;
12319 inst.instruction |= Rm;
c19d1205
ZW
12320 }
12321 else
12322 inst.error = BAD_HIREG;
12323}
b99bd4ef 12324
1c444d06
JM
12325static void
12326do_t_rrx (void)
12327{
12328 unsigned Rd, Rm;
12329
12330 Rd = inst.operands[0].reg;
12331 Rm = inst.operands[1].reg;
12332
fdfde340
JM
12333 reject_bad_reg (Rd);
12334 reject_bad_reg (Rm);
c921be7d 12335
1c444d06
JM
12336 inst.instruction |= Rd << 8;
12337 inst.instruction |= Rm;
12338}
12339
c19d1205
ZW
12340static void
12341do_t_rsb (void)
12342{
fdfde340 12343 unsigned Rd, Rs;
b99bd4ef 12344
c19d1205
ZW
12345 Rd = inst.operands[0].reg;
12346 Rs = (inst.operands[1].present
12347 ? inst.operands[1].reg /* Rd, Rs, foo */
12348 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 12349
fdfde340
JM
12350 reject_bad_reg (Rd);
12351 reject_bad_reg (Rs);
12352 if (inst.operands[2].isreg)
12353 reject_bad_reg (inst.operands[2].reg);
12354
c19d1205
ZW
12355 inst.instruction |= Rd << 8;
12356 inst.instruction |= Rs << 16;
12357 if (!inst.operands[2].isreg)
12358 {
026d3abb
PB
12359 bfd_boolean narrow;
12360
12361 if ((inst.instruction & 0x00100000) != 0)
e07e6e58 12362 narrow = !in_it_block ();
026d3abb 12363 else
e07e6e58 12364 narrow = in_it_block ();
026d3abb
PB
12365
12366 if (Rd > 7 || Rs > 7)
12367 narrow = FALSE;
12368
12369 if (inst.size_req == 4 || !unified_syntax)
12370 narrow = FALSE;
12371
12372 if (inst.reloc.exp.X_op != O_constant
12373 || inst.reloc.exp.X_add_number != 0)
12374 narrow = FALSE;
12375
12376 /* Turn rsb #0 into 16-bit neg. We should probably do this via
477330fc 12377 relaxation, but it doesn't seem worth the hassle. */
026d3abb
PB
12378 if (narrow)
12379 {
12380 inst.reloc.type = BFD_RELOC_UNUSED;
12381 inst.instruction = THUMB_OP16 (T_MNEM_negs);
12382 inst.instruction |= Rs << 3;
12383 inst.instruction |= Rd;
12384 }
12385 else
12386 {
12387 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
12388 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
12389 }
c19d1205
ZW
12390 }
12391 else
12392 encode_thumb32_shifted_operand (2);
12393}
b99bd4ef 12394
c19d1205
ZW
12395static void
12396do_t_setend (void)
12397{
12e37cbc
MGD
12398 if (warn_on_deprecated
12399 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
5c3696f8 12400 as_tsktsk (_("setend use is deprecated for ARMv8"));
12e37cbc 12401
e07e6e58 12402 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
12403 if (inst.operands[0].imm)
12404 inst.instruction |= 0x8;
12405}
b99bd4ef 12406
c19d1205
ZW
12407static void
12408do_t_shift (void)
12409{
12410 if (!inst.operands[1].present)
12411 inst.operands[1].reg = inst.operands[0].reg;
12412
12413 if (unified_syntax)
12414 {
3d388997
PB
12415 bfd_boolean narrow;
12416 int shift_kind;
12417
12418 switch (inst.instruction)
12419 {
12420 case T_MNEM_asr:
12421 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
12422 case T_MNEM_lsl:
12423 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
12424 case T_MNEM_lsr:
12425 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
12426 case T_MNEM_ror:
12427 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
12428 default: abort ();
12429 }
12430
12431 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 12432 narrow = !in_it_block ();
3d388997 12433 else
e07e6e58 12434 narrow = in_it_block ();
3d388997
PB
12435 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
12436 narrow = FALSE;
12437 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
12438 narrow = FALSE;
12439 if (inst.operands[2].isreg
12440 && (inst.operands[1].reg != inst.operands[0].reg
12441 || inst.operands[2].reg > 7))
12442 narrow = FALSE;
12443 if (inst.size_req == 4)
12444 narrow = FALSE;
12445
fdfde340
JM
12446 reject_bad_reg (inst.operands[0].reg);
12447 reject_bad_reg (inst.operands[1].reg);
c921be7d 12448
3d388997 12449 if (!narrow)
c19d1205
ZW
12450 {
12451 if (inst.operands[2].isreg)
b99bd4ef 12452 {
fdfde340 12453 reject_bad_reg (inst.operands[2].reg);
c19d1205
ZW
12454 inst.instruction = THUMB_OP32 (inst.instruction);
12455 inst.instruction |= inst.operands[0].reg << 8;
12456 inst.instruction |= inst.operands[1].reg << 16;
12457 inst.instruction |= inst.operands[2].reg;
94342ec3
NC
12458
12459 /* PR 12854: Error on extraneous shifts. */
12460 constraint (inst.operands[2].shifted,
12461 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
12462 }
12463 else
12464 {
12465 inst.operands[1].shifted = 1;
3d388997 12466 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
12467 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
12468 ? T_MNEM_movs : T_MNEM_mov);
12469 inst.instruction |= inst.operands[0].reg << 8;
12470 encode_thumb32_shifted_operand (1);
12471 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
12472 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
12473 }
12474 }
12475 else
12476 {
c19d1205 12477 if (inst.operands[2].isreg)
b99bd4ef 12478 {
3d388997 12479 switch (shift_kind)
b99bd4ef 12480 {
3d388997
PB
12481 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
12482 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
12483 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
12484 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 12485 default: abort ();
b99bd4ef 12486 }
5f4273c7 12487
c19d1205
ZW
12488 inst.instruction |= inst.operands[0].reg;
12489 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
12490
12491 /* PR 12854: Error on extraneous shifts. */
12492 constraint (inst.operands[2].shifted,
12493 _("extraneous shift as part of operand to shift insn"));
b99bd4ef
NC
12494 }
12495 else
12496 {
3d388997 12497 switch (shift_kind)
b99bd4ef 12498 {
3d388997
PB
12499 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
12500 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
12501 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 12502 default: abort ();
b99bd4ef 12503 }
c19d1205
ZW
12504 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12505 inst.instruction |= inst.operands[0].reg;
12506 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
12507 }
12508 }
c19d1205
ZW
12509 }
12510 else
12511 {
12512 constraint (inst.operands[0].reg > 7
12513 || inst.operands[1].reg > 7, BAD_HIREG);
12514 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 12515
c19d1205
ZW
12516 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
12517 {
12518 constraint (inst.operands[2].reg > 7, BAD_HIREG);
12519 constraint (inst.operands[0].reg != inst.operands[1].reg,
12520 _("source1 and dest must be same register"));
b99bd4ef 12521
c19d1205
ZW
12522 switch (inst.instruction)
12523 {
12524 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
12525 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
12526 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
12527 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
12528 default: abort ();
12529 }
5f4273c7 12530
c19d1205
ZW
12531 inst.instruction |= inst.operands[0].reg;
12532 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
12533
12534 /* PR 12854: Error on extraneous shifts. */
12535 constraint (inst.operands[2].shifted,
12536 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
12537 }
12538 else
b99bd4ef 12539 {
c19d1205
ZW
12540 switch (inst.instruction)
12541 {
12542 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
12543 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
12544 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
12545 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
12546 default: abort ();
12547 }
12548 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12549 inst.instruction |= inst.operands[0].reg;
12550 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
12551 }
12552 }
b99bd4ef
NC
12553}
12554
12555static void
c19d1205 12556do_t_simd (void)
b99bd4ef 12557{
fdfde340
JM
12558 unsigned Rd, Rn, Rm;
12559
12560 Rd = inst.operands[0].reg;
12561 Rn = inst.operands[1].reg;
12562 Rm = inst.operands[2].reg;
12563
12564 reject_bad_reg (Rd);
12565 reject_bad_reg (Rn);
12566 reject_bad_reg (Rm);
12567
12568 inst.instruction |= Rd << 8;
12569 inst.instruction |= Rn << 16;
12570 inst.instruction |= Rm;
c19d1205 12571}
b99bd4ef 12572
03ee1b7f
NC
12573static void
12574do_t_simd2 (void)
12575{
12576 unsigned Rd, Rn, Rm;
12577
12578 Rd = inst.operands[0].reg;
12579 Rm = inst.operands[1].reg;
12580 Rn = inst.operands[2].reg;
12581
12582 reject_bad_reg (Rd);
12583 reject_bad_reg (Rn);
12584 reject_bad_reg (Rm);
12585
12586 inst.instruction |= Rd << 8;
12587 inst.instruction |= Rn << 16;
12588 inst.instruction |= Rm;
12589}
12590
c19d1205 12591static void
3eb17e6b 12592do_t_smc (void)
c19d1205
ZW
12593{
12594 unsigned int value = inst.reloc.exp.X_add_number;
f4c65163
MGD
12595 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
12596 _("SMC is not permitted on this architecture"));
c19d1205
ZW
12597 constraint (inst.reloc.exp.X_op != O_constant,
12598 _("expression too complex"));
12599 inst.reloc.type = BFD_RELOC_UNUSED;
12600 inst.instruction |= (value & 0xf000) >> 12;
12601 inst.instruction |= (value & 0x0ff0);
12602 inst.instruction |= (value & 0x000f) << 16;
24382199
NC
12603 /* PR gas/15623: SMC instructions must be last in an IT block. */
12604 set_it_insn_type_last ();
c19d1205 12605}
b99bd4ef 12606
90ec0d68
MGD
12607static void
12608do_t_hvc (void)
12609{
12610 unsigned int value = inst.reloc.exp.X_add_number;
12611
12612 inst.reloc.type = BFD_RELOC_UNUSED;
12613 inst.instruction |= (value & 0x0fff);
12614 inst.instruction |= (value & 0xf000) << 4;
12615}
12616
c19d1205 12617static void
3a21c15a 12618do_t_ssat_usat (int bias)
c19d1205 12619{
fdfde340
JM
12620 unsigned Rd, Rn;
12621
12622 Rd = inst.operands[0].reg;
12623 Rn = inst.operands[2].reg;
12624
12625 reject_bad_reg (Rd);
12626 reject_bad_reg (Rn);
12627
12628 inst.instruction |= Rd << 8;
3a21c15a 12629 inst.instruction |= inst.operands[1].imm - bias;
fdfde340 12630 inst.instruction |= Rn << 16;
b99bd4ef 12631
c19d1205 12632 if (inst.operands[3].present)
b99bd4ef 12633 {
3a21c15a
NC
12634 offsetT shift_amount = inst.reloc.exp.X_add_number;
12635
12636 inst.reloc.type = BFD_RELOC_UNUSED;
12637
c19d1205
ZW
12638 constraint (inst.reloc.exp.X_op != O_constant,
12639 _("expression too complex"));
b99bd4ef 12640
3a21c15a 12641 if (shift_amount != 0)
6189168b 12642 {
3a21c15a
NC
12643 constraint (shift_amount > 31,
12644 _("shift expression is too large"));
12645
c19d1205 12646 if (inst.operands[3].shift_kind == SHIFT_ASR)
3a21c15a
NC
12647 inst.instruction |= 0x00200000; /* sh bit. */
12648
12649 inst.instruction |= (shift_amount & 0x1c) << 10;
12650 inst.instruction |= (shift_amount & 0x03) << 6;
6189168b
NC
12651 }
12652 }
b99bd4ef 12653}
c921be7d 12654
3a21c15a
NC
12655static void
12656do_t_ssat (void)
12657{
12658 do_t_ssat_usat (1);
12659}
b99bd4ef 12660
0dd132b6 12661static void
c19d1205 12662do_t_ssat16 (void)
0dd132b6 12663{
fdfde340
JM
12664 unsigned Rd, Rn;
12665
12666 Rd = inst.operands[0].reg;
12667 Rn = inst.operands[2].reg;
12668
12669 reject_bad_reg (Rd);
12670 reject_bad_reg (Rn);
12671
12672 inst.instruction |= Rd << 8;
c19d1205 12673 inst.instruction |= inst.operands[1].imm - 1;
fdfde340 12674 inst.instruction |= Rn << 16;
c19d1205 12675}
0dd132b6 12676
c19d1205
ZW
12677static void
12678do_t_strex (void)
12679{
12680 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
12681 || inst.operands[2].postind || inst.operands[2].writeback
12682 || inst.operands[2].immisreg || inst.operands[2].shifted
12683 || inst.operands[2].negative,
01cfc07f 12684 BAD_ADDR_MODE);
0dd132b6 12685
5be8be5d
DG
12686 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
12687
c19d1205
ZW
12688 inst.instruction |= inst.operands[0].reg << 8;
12689 inst.instruction |= inst.operands[1].reg << 12;
12690 inst.instruction |= inst.operands[2].reg << 16;
12691 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
12692}
12693
b99bd4ef 12694static void
c19d1205 12695do_t_strexd (void)
b99bd4ef 12696{
c19d1205
ZW
12697 if (!inst.operands[2].present)
12698 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 12699
c19d1205
ZW
12700 constraint (inst.operands[0].reg == inst.operands[1].reg
12701 || inst.operands[0].reg == inst.operands[2].reg
f8a8e9d6 12702 || inst.operands[0].reg == inst.operands[3].reg,
c19d1205 12703 BAD_OVERLAP);
b99bd4ef 12704
c19d1205
ZW
12705 inst.instruction |= inst.operands[0].reg;
12706 inst.instruction |= inst.operands[1].reg << 12;
12707 inst.instruction |= inst.operands[2].reg << 8;
12708 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
12709}
12710
12711static void
c19d1205 12712do_t_sxtah (void)
b99bd4ef 12713{
fdfde340
JM
12714 unsigned Rd, Rn, Rm;
12715
12716 Rd = inst.operands[0].reg;
12717 Rn = inst.operands[1].reg;
12718 Rm = inst.operands[2].reg;
12719
12720 reject_bad_reg (Rd);
12721 reject_bad_reg (Rn);
12722 reject_bad_reg (Rm);
12723
12724 inst.instruction |= Rd << 8;
12725 inst.instruction |= Rn << 16;
12726 inst.instruction |= Rm;
c19d1205
ZW
12727 inst.instruction |= inst.operands[3].imm << 4;
12728}
b99bd4ef 12729
c19d1205
ZW
12730static void
12731do_t_sxth (void)
12732{
fdfde340
JM
12733 unsigned Rd, Rm;
12734
12735 Rd = inst.operands[0].reg;
12736 Rm = inst.operands[1].reg;
12737
12738 reject_bad_reg (Rd);
12739 reject_bad_reg (Rm);
c921be7d
NC
12740
12741 if (inst.instruction <= 0xffff
12742 && inst.size_req != 4
fdfde340 12743 && Rd <= 7 && Rm <= 7
c19d1205 12744 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 12745 {
c19d1205 12746 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12747 inst.instruction |= Rd;
12748 inst.instruction |= Rm << 3;
b99bd4ef 12749 }
c19d1205 12750 else if (unified_syntax)
b99bd4ef 12751 {
c19d1205
ZW
12752 if (inst.instruction <= 0xffff)
12753 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12754 inst.instruction |= Rd << 8;
12755 inst.instruction |= Rm;
c19d1205 12756 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 12757 }
c19d1205 12758 else
b99bd4ef 12759 {
c19d1205
ZW
12760 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
12761 _("Thumb encoding does not support rotation"));
12762 constraint (1, BAD_HIREG);
b99bd4ef 12763 }
c19d1205 12764}
b99bd4ef 12765
c19d1205
ZW
12766static void
12767do_t_swi (void)
12768{
b2a5fbdc
MGD
12769 /* We have to do the following check manually as ARM_EXT_OS only applies
12770 to ARM_EXT_V6M. */
12771 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6m))
12772 {
ac7f631b
NC
12773 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_os)
12774 /* This only applies to the v6m howver, not later architectures. */
12775 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7))
b2a5fbdc
MGD
12776 as_bad (_("SVC is not permitted on this architecture"));
12777 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, arm_ext_os);
12778 }
12779
c19d1205
ZW
12780 inst.reloc.type = BFD_RELOC_ARM_SWI;
12781}
b99bd4ef 12782
92e90b6e
PB
12783static void
12784do_t_tb (void)
12785{
fdfde340 12786 unsigned Rn, Rm;
92e90b6e
PB
12787 int half;
12788
12789 half = (inst.instruction & 0x10) != 0;
e07e6e58 12790 set_it_insn_type_last ();
dfa9f0d5
PB
12791 constraint (inst.operands[0].immisreg,
12792 _("instruction requires register index"));
fdfde340
JM
12793
12794 Rn = inst.operands[0].reg;
12795 Rm = inst.operands[0].imm;
c921be7d 12796
fdfde340
JM
12797 constraint (Rn == REG_SP, BAD_SP);
12798 reject_bad_reg (Rm);
12799
92e90b6e
PB
12800 constraint (!half && inst.operands[0].shifted,
12801 _("instruction does not allow shifted index"));
fdfde340 12802 inst.instruction |= (Rn << 16) | Rm;
92e90b6e
PB
12803}
12804
74db7efb
NC
12805static void
12806do_t_udf (void)
12807{
12808 if (!inst.operands[0].present)
12809 inst.operands[0].imm = 0;
12810
12811 if ((unsigned int) inst.operands[0].imm > 255 || inst.size_req == 4)
12812 {
12813 constraint (inst.size_req == 2,
12814 _("immediate value out of range"));
12815 inst.instruction = THUMB_OP32 (inst.instruction);
12816 inst.instruction |= (inst.operands[0].imm & 0xf000u) << 4;
12817 inst.instruction |= (inst.operands[0].imm & 0x0fffu) << 0;
12818 }
12819 else
12820 {
12821 inst.instruction = THUMB_OP16 (inst.instruction);
12822 inst.instruction |= inst.operands[0].imm;
12823 }
12824
12825 set_it_insn_type (NEUTRAL_IT_INSN);
12826}
12827
12828
c19d1205
ZW
12829static void
12830do_t_usat (void)
12831{
3a21c15a 12832 do_t_ssat_usat (0);
b99bd4ef
NC
12833}
12834
12835static void
c19d1205 12836do_t_usat16 (void)
b99bd4ef 12837{
fdfde340
JM
12838 unsigned Rd, Rn;
12839
12840 Rd = inst.operands[0].reg;
12841 Rn = inst.operands[2].reg;
12842
12843 reject_bad_reg (Rd);
12844 reject_bad_reg (Rn);
12845
12846 inst.instruction |= Rd << 8;
c19d1205 12847 inst.instruction |= inst.operands[1].imm;
fdfde340 12848 inst.instruction |= Rn << 16;
b99bd4ef 12849}
c19d1205 12850
5287ad62 12851/* Neon instruction encoder helpers. */
5f4273c7 12852
5287ad62 12853/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 12854
5287ad62
JB
12855/* An "invalid" code for the following tables. */
12856#define N_INV -1u
12857
12858struct neon_tab_entry
b99bd4ef 12859{
5287ad62
JB
12860 unsigned integer;
12861 unsigned float_or_poly;
12862 unsigned scalar_or_imm;
12863};
5f4273c7 12864
5287ad62
JB
12865/* Map overloaded Neon opcodes to their respective encodings. */
12866#define NEON_ENC_TAB \
12867 X(vabd, 0x0000700, 0x1200d00, N_INV), \
12868 X(vmax, 0x0000600, 0x0000f00, N_INV), \
12869 X(vmin, 0x0000610, 0x0200f00, N_INV), \
12870 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
12871 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
12872 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
12873 X(vadd, 0x0000800, 0x0000d00, N_INV), \
12874 X(vsub, 0x1000800, 0x0200d00, N_INV), \
12875 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
12876 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
12877 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
12878 /* Register variants of the following two instructions are encoded as
e07e6e58 12879 vcge / vcgt with the operands reversed. */ \
92559b5b
PB
12880 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
12881 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
62f3b8c8
PB
12882 X(vfma, N_INV, 0x0000c10, N_INV), \
12883 X(vfms, N_INV, 0x0200c10, N_INV), \
5287ad62
JB
12884 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
12885 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
12886 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
12887 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
12888 X(vmlal, 0x0800800, N_INV, 0x0800240), \
12889 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
12890 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
12891 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
12892 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
12893 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
12894 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
12895 X(vshl, 0x0000400, N_INV, 0x0800510), \
12896 X(vqshl, 0x0000410, N_INV, 0x0800710), \
12897 X(vand, 0x0000110, N_INV, 0x0800030), \
12898 X(vbic, 0x0100110, N_INV, 0x0800030), \
12899 X(veor, 0x1000110, N_INV, N_INV), \
12900 X(vorn, 0x0300110, N_INV, 0x0800010), \
12901 X(vorr, 0x0200110, N_INV, 0x0800010), \
12902 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
12903 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
12904 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
12905 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
12906 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
12907 X(vst1, 0x0000000, 0x0800000, N_INV), \
12908 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
12909 X(vst2, 0x0000100, 0x0800100, N_INV), \
12910 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
12911 X(vst3, 0x0000200, 0x0800200, N_INV), \
12912 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
12913 X(vst4, 0x0000300, 0x0800300, N_INV), \
12914 X(vmovn, 0x1b20200, N_INV, N_INV), \
12915 X(vtrn, 0x1b20080, N_INV, N_INV), \
12916 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
12917 X(vqmovun, 0x1b20240, N_INV, N_INV), \
12918 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
e6655fda
PB
12919 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
12920 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
62f3b8c8
PB
12921 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
12922 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
037e8744
JB
12923 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
12924 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
12925 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
33399f07
MGD
12926 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
12927 X(vseleq, 0xe000a00, N_INV, N_INV), \
12928 X(vselvs, 0xe100a00, N_INV, N_INV), \
12929 X(vselge, 0xe200a00, N_INV, N_INV), \
73924fbc
MGD
12930 X(vselgt, 0xe300a00, N_INV, N_INV), \
12931 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
7e8e6784 12932 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
30bdf752
MGD
12933 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
12934 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
91ff7894 12935 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
48adcd8e 12936 X(aes, 0x3b00300, N_INV, N_INV), \
3c9017d2
MGD
12937 X(sha3op, 0x2000c00, N_INV, N_INV), \
12938 X(sha1h, 0x3b902c0, N_INV, N_INV), \
12939 X(sha2op, 0x3ba0380, N_INV, N_INV)
5287ad62
JB
12940
12941enum neon_opc
12942{
12943#define X(OPC,I,F,S) N_MNEM_##OPC
12944NEON_ENC_TAB
12945#undef X
12946};
b99bd4ef 12947
5287ad62
JB
12948static const struct neon_tab_entry neon_enc_tab[] =
12949{
12950#define X(OPC,I,F,S) { (I), (F), (S) }
12951NEON_ENC_TAB
12952#undef X
12953};
b99bd4ef 12954
88714cb8
DG
12955/* Do not use these macros; instead, use NEON_ENCODE defined below. */
12956#define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12957#define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12958#define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12959#define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12960#define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12961#define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12962#define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12963#define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12964#define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12965#define NEON_ENC_SINGLE_(X) \
037e8744 12966 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
88714cb8 12967#define NEON_ENC_DOUBLE_(X) \
037e8744 12968 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
33399f07
MGD
12969#define NEON_ENC_FPV8_(X) \
12970 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
5287ad62 12971
88714cb8
DG
12972#define NEON_ENCODE(type, inst) \
12973 do \
12974 { \
12975 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
12976 inst.is_neon = 1; \
12977 } \
12978 while (0)
12979
12980#define check_neon_suffixes \
12981 do \
12982 { \
12983 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
12984 { \
12985 as_bad (_("invalid neon suffix for non neon instruction")); \
12986 return; \
12987 } \
12988 } \
12989 while (0)
12990
037e8744
JB
12991/* Define shapes for instruction operands. The following mnemonic characters
12992 are used in this table:
5287ad62 12993
037e8744 12994 F - VFP S<n> register
5287ad62
JB
12995 D - Neon D<n> register
12996 Q - Neon Q<n> register
12997 I - Immediate
12998 S - Scalar
12999 R - ARM register
13000 L - D<n> register list
5f4273c7 13001
037e8744
JB
13002 This table is used to generate various data:
13003 - enumerations of the form NS_DDR to be used as arguments to
13004 neon_select_shape.
13005 - a table classifying shapes into single, double, quad, mixed.
5f4273c7 13006 - a table used to drive neon_select_shape. */
b99bd4ef 13007
037e8744
JB
13008#define NEON_SHAPE_DEF \
13009 X(3, (D, D, D), DOUBLE), \
13010 X(3, (Q, Q, Q), QUAD), \
13011 X(3, (D, D, I), DOUBLE), \
13012 X(3, (Q, Q, I), QUAD), \
13013 X(3, (D, D, S), DOUBLE), \
13014 X(3, (Q, Q, S), QUAD), \
13015 X(2, (D, D), DOUBLE), \
13016 X(2, (Q, Q), QUAD), \
13017 X(2, (D, S), DOUBLE), \
13018 X(2, (Q, S), QUAD), \
13019 X(2, (D, R), DOUBLE), \
13020 X(2, (Q, R), QUAD), \
13021 X(2, (D, I), DOUBLE), \
13022 X(2, (Q, I), QUAD), \
13023 X(3, (D, L, D), DOUBLE), \
13024 X(2, (D, Q), MIXED), \
13025 X(2, (Q, D), MIXED), \
13026 X(3, (D, Q, I), MIXED), \
13027 X(3, (Q, D, I), MIXED), \
13028 X(3, (Q, D, D), MIXED), \
13029 X(3, (D, Q, Q), MIXED), \
13030 X(3, (Q, Q, D), MIXED), \
13031 X(3, (Q, D, S), MIXED), \
13032 X(3, (D, Q, S), MIXED), \
13033 X(4, (D, D, D, I), DOUBLE), \
13034 X(4, (Q, Q, Q, I), QUAD), \
13035 X(2, (F, F), SINGLE), \
13036 X(3, (F, F, F), SINGLE), \
13037 X(2, (F, I), SINGLE), \
13038 X(2, (F, D), MIXED), \
13039 X(2, (D, F), MIXED), \
13040 X(3, (F, F, I), MIXED), \
13041 X(4, (R, R, F, F), SINGLE), \
13042 X(4, (F, F, R, R), SINGLE), \
13043 X(3, (D, R, R), DOUBLE), \
13044 X(3, (R, R, D), DOUBLE), \
13045 X(2, (S, R), SINGLE), \
13046 X(2, (R, S), SINGLE), \
13047 X(2, (F, R), SINGLE), \
13048 X(2, (R, F), SINGLE)
13049
13050#define S2(A,B) NS_##A##B
13051#define S3(A,B,C) NS_##A##B##C
13052#define S4(A,B,C,D) NS_##A##B##C##D
13053
13054#define X(N, L, C) S##N L
13055
5287ad62
JB
13056enum neon_shape
13057{
037e8744
JB
13058 NEON_SHAPE_DEF,
13059 NS_NULL
5287ad62 13060};
b99bd4ef 13061
037e8744
JB
13062#undef X
13063#undef S2
13064#undef S3
13065#undef S4
13066
13067enum neon_shape_class
13068{
13069 SC_SINGLE,
13070 SC_DOUBLE,
13071 SC_QUAD,
13072 SC_MIXED
13073};
13074
13075#define X(N, L, C) SC_##C
13076
13077static enum neon_shape_class neon_shape_class[] =
13078{
13079 NEON_SHAPE_DEF
13080};
13081
13082#undef X
13083
13084enum neon_shape_el
13085{
13086 SE_F,
13087 SE_D,
13088 SE_Q,
13089 SE_I,
13090 SE_S,
13091 SE_R,
13092 SE_L
13093};
13094
13095/* Register widths of above. */
13096static unsigned neon_shape_el_size[] =
13097{
13098 32,
13099 64,
13100 128,
13101 0,
13102 32,
13103 32,
13104 0
13105};
13106
13107struct neon_shape_info
13108{
13109 unsigned els;
13110 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
13111};
13112
13113#define S2(A,B) { SE_##A, SE_##B }
13114#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
13115#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
13116
13117#define X(N, L, C) { N, S##N L }
13118
13119static struct neon_shape_info neon_shape_tab[] =
13120{
13121 NEON_SHAPE_DEF
13122};
13123
13124#undef X
13125#undef S2
13126#undef S3
13127#undef S4
13128
5287ad62
JB
13129/* Bit masks used in type checking given instructions.
13130 'N_EQK' means the type must be the same as (or based on in some way) the key
13131 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
13132 set, various other bits can be set as well in order to modify the meaning of
13133 the type constraint. */
13134
13135enum neon_type_mask
13136{
8e79c3df
CM
13137 N_S8 = 0x0000001,
13138 N_S16 = 0x0000002,
13139 N_S32 = 0x0000004,
13140 N_S64 = 0x0000008,
13141 N_U8 = 0x0000010,
13142 N_U16 = 0x0000020,
13143 N_U32 = 0x0000040,
13144 N_U64 = 0x0000080,
13145 N_I8 = 0x0000100,
13146 N_I16 = 0x0000200,
13147 N_I32 = 0x0000400,
13148 N_I64 = 0x0000800,
13149 N_8 = 0x0001000,
13150 N_16 = 0x0002000,
13151 N_32 = 0x0004000,
13152 N_64 = 0x0008000,
13153 N_P8 = 0x0010000,
13154 N_P16 = 0x0020000,
13155 N_F16 = 0x0040000,
13156 N_F32 = 0x0080000,
13157 N_F64 = 0x0100000,
4f51b4bd 13158 N_P64 = 0x0200000,
c921be7d
NC
13159 N_KEY = 0x1000000, /* Key element (main type specifier). */
13160 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
8e79c3df 13161 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
91ff7894 13162 N_UNT = 0x8000000, /* Must be explicitly untyped. */
c921be7d
NC
13163 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
13164 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
13165 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
13166 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
13167 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
13168 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
13169 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
5287ad62 13170 N_UTYP = 0,
4f51b4bd 13171 N_MAX_NONSPECIAL = N_P64
5287ad62
JB
13172};
13173
dcbf9037
JB
13174#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
13175
5287ad62
JB
13176#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
13177#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
13178#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
13179#define N_SUF_32 (N_SU_32 | N_F32)
13180#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
13181#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F32)
13182
13183/* Pass this as the first type argument to neon_check_type to ignore types
13184 altogether. */
13185#define N_IGNORE_TYPE (N_KEY | N_EQK)
13186
037e8744
JB
13187/* Select a "shape" for the current instruction (describing register types or
13188 sizes) from a list of alternatives. Return NS_NULL if the current instruction
13189 doesn't fit. For non-polymorphic shapes, checking is usually done as a
13190 function of operand parsing, so this function doesn't need to be called.
13191 Shapes should be listed in order of decreasing length. */
5287ad62
JB
13192
13193static enum neon_shape
037e8744 13194neon_select_shape (enum neon_shape shape, ...)
5287ad62 13195{
037e8744
JB
13196 va_list ap;
13197 enum neon_shape first_shape = shape;
5287ad62
JB
13198
13199 /* Fix missing optional operands. FIXME: we don't know at this point how
13200 many arguments we should have, so this makes the assumption that we have
13201 > 1. This is true of all current Neon opcodes, I think, but may not be
13202 true in the future. */
13203 if (!inst.operands[1].present)
13204 inst.operands[1] = inst.operands[0];
13205
037e8744 13206 va_start (ap, shape);
5f4273c7 13207
21d799b5 13208 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
037e8744
JB
13209 {
13210 unsigned j;
13211 int matches = 1;
13212
13213 for (j = 0; j < neon_shape_tab[shape].els; j++)
477330fc
RM
13214 {
13215 if (!inst.operands[j].present)
13216 {
13217 matches = 0;
13218 break;
13219 }
13220
13221 switch (neon_shape_tab[shape].el[j])
13222 {
13223 case SE_F:
13224 if (!(inst.operands[j].isreg
13225 && inst.operands[j].isvec
13226 && inst.operands[j].issingle
13227 && !inst.operands[j].isquad))
13228 matches = 0;
13229 break;
13230
13231 case SE_D:
13232 if (!(inst.operands[j].isreg
13233 && inst.operands[j].isvec
13234 && !inst.operands[j].isquad
13235 && !inst.operands[j].issingle))
13236 matches = 0;
13237 break;
13238
13239 case SE_R:
13240 if (!(inst.operands[j].isreg
13241 && !inst.operands[j].isvec))
13242 matches = 0;
13243 break;
13244
13245 case SE_Q:
13246 if (!(inst.operands[j].isreg
13247 && inst.operands[j].isvec
13248 && inst.operands[j].isquad
13249 && !inst.operands[j].issingle))
13250 matches = 0;
13251 break;
13252
13253 case SE_I:
13254 if (!(!inst.operands[j].isreg
13255 && !inst.operands[j].isscalar))
13256 matches = 0;
13257 break;
13258
13259 case SE_S:
13260 if (!(!inst.operands[j].isreg
13261 && inst.operands[j].isscalar))
13262 matches = 0;
13263 break;
13264
13265 case SE_L:
13266 break;
13267 }
3fde54a2
JZ
13268 if (!matches)
13269 break;
477330fc 13270 }
ad6cec43
MGD
13271 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
13272 /* We've matched all the entries in the shape table, and we don't
13273 have any left over operands which have not been matched. */
477330fc 13274 break;
037e8744 13275 }
5f4273c7 13276
037e8744 13277 va_end (ap);
5287ad62 13278
037e8744
JB
13279 if (shape == NS_NULL && first_shape != NS_NULL)
13280 first_error (_("invalid instruction shape"));
5287ad62 13281
037e8744
JB
13282 return shape;
13283}
5287ad62 13284
037e8744
JB
13285/* True if SHAPE is predominantly a quadword operation (most of the time, this
13286 means the Q bit should be set). */
13287
13288static int
13289neon_quad (enum neon_shape shape)
13290{
13291 return neon_shape_class[shape] == SC_QUAD;
5287ad62 13292}
037e8744 13293
5287ad62
JB
13294static void
13295neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
477330fc 13296 unsigned *g_size)
5287ad62
JB
13297{
13298 /* Allow modification to be made to types which are constrained to be
13299 based on the key element, based on bits set alongside N_EQK. */
13300 if ((typebits & N_EQK) != 0)
13301 {
13302 if ((typebits & N_HLF) != 0)
13303 *g_size /= 2;
13304 else if ((typebits & N_DBL) != 0)
13305 *g_size *= 2;
13306 if ((typebits & N_SGN) != 0)
13307 *g_type = NT_signed;
13308 else if ((typebits & N_UNS) != 0)
477330fc 13309 *g_type = NT_unsigned;
5287ad62 13310 else if ((typebits & N_INT) != 0)
477330fc 13311 *g_type = NT_integer;
5287ad62 13312 else if ((typebits & N_FLT) != 0)
477330fc 13313 *g_type = NT_float;
dcbf9037 13314 else if ((typebits & N_SIZ) != 0)
477330fc 13315 *g_type = NT_untyped;
5287ad62
JB
13316 }
13317}
5f4273c7 13318
5287ad62
JB
13319/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
13320 operand type, i.e. the single type specified in a Neon instruction when it
13321 is the only one given. */
13322
13323static struct neon_type_el
13324neon_type_promote (struct neon_type_el *key, unsigned thisarg)
13325{
13326 struct neon_type_el dest = *key;
5f4273c7 13327
9c2799c2 13328 gas_assert ((thisarg & N_EQK) != 0);
5f4273c7 13329
5287ad62
JB
13330 neon_modify_type_size (thisarg, &dest.type, &dest.size);
13331
13332 return dest;
13333}
13334
13335/* Convert Neon type and size into compact bitmask representation. */
13336
13337static enum neon_type_mask
13338type_chk_of_el_type (enum neon_el_type type, unsigned size)
13339{
13340 switch (type)
13341 {
13342 case NT_untyped:
13343 switch (size)
477330fc
RM
13344 {
13345 case 8: return N_8;
13346 case 16: return N_16;
13347 case 32: return N_32;
13348 case 64: return N_64;
13349 default: ;
13350 }
5287ad62
JB
13351 break;
13352
13353 case NT_integer:
13354 switch (size)
477330fc
RM
13355 {
13356 case 8: return N_I8;
13357 case 16: return N_I16;
13358 case 32: return N_I32;
13359 case 64: return N_I64;
13360 default: ;
13361 }
5287ad62
JB
13362 break;
13363
13364 case NT_float:
037e8744 13365 switch (size)
477330fc 13366 {
8e79c3df 13367 case 16: return N_F16;
477330fc
RM
13368 case 32: return N_F32;
13369 case 64: return N_F64;
13370 default: ;
13371 }
5287ad62
JB
13372 break;
13373
13374 case NT_poly:
13375 switch (size)
477330fc
RM
13376 {
13377 case 8: return N_P8;
13378 case 16: return N_P16;
4f51b4bd 13379 case 64: return N_P64;
477330fc
RM
13380 default: ;
13381 }
5287ad62
JB
13382 break;
13383
13384 case NT_signed:
13385 switch (size)
477330fc
RM
13386 {
13387 case 8: return N_S8;
13388 case 16: return N_S16;
13389 case 32: return N_S32;
13390 case 64: return N_S64;
13391 default: ;
13392 }
5287ad62
JB
13393 break;
13394
13395 case NT_unsigned:
13396 switch (size)
477330fc
RM
13397 {
13398 case 8: return N_U8;
13399 case 16: return N_U16;
13400 case 32: return N_U32;
13401 case 64: return N_U64;
13402 default: ;
13403 }
5287ad62
JB
13404 break;
13405
13406 default: ;
13407 }
5f4273c7 13408
5287ad62
JB
13409 return N_UTYP;
13410}
13411
13412/* Convert compact Neon bitmask type representation to a type and size. Only
13413 handles the case where a single bit is set in the mask. */
13414
dcbf9037 13415static int
5287ad62 13416el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
477330fc 13417 enum neon_type_mask mask)
5287ad62 13418{
dcbf9037
JB
13419 if ((mask & N_EQK) != 0)
13420 return FAIL;
13421
5287ad62
JB
13422 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
13423 *size = 8;
c70a8987 13424 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16)) != 0)
5287ad62 13425 *size = 16;
dcbf9037 13426 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 13427 *size = 32;
4f51b4bd 13428 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
5287ad62 13429 *size = 64;
dcbf9037
JB
13430 else
13431 return FAIL;
13432
5287ad62
JB
13433 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
13434 *type = NT_signed;
dcbf9037 13435 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 13436 *type = NT_unsigned;
dcbf9037 13437 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 13438 *type = NT_integer;
dcbf9037 13439 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 13440 *type = NT_untyped;
4f51b4bd 13441 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
5287ad62 13442 *type = NT_poly;
c70a8987 13443 else if ((mask & (N_F16 | N_F32 | N_F64)) != 0)
5287ad62 13444 *type = NT_float;
dcbf9037
JB
13445 else
13446 return FAIL;
5f4273c7 13447
dcbf9037 13448 return SUCCESS;
5287ad62
JB
13449}
13450
13451/* Modify a bitmask of allowed types. This is only needed for type
13452 relaxation. */
13453
13454static unsigned
13455modify_types_allowed (unsigned allowed, unsigned mods)
13456{
13457 unsigned size;
13458 enum neon_el_type type;
13459 unsigned destmask;
13460 int i;
5f4273c7 13461
5287ad62 13462 destmask = 0;
5f4273c7 13463
5287ad62
JB
13464 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
13465 {
21d799b5 13466 if (el_type_of_type_chk (&type, &size,
477330fc
RM
13467 (enum neon_type_mask) (allowed & i)) == SUCCESS)
13468 {
13469 neon_modify_type_size (mods, &type, &size);
13470 destmask |= type_chk_of_el_type (type, size);
13471 }
5287ad62 13472 }
5f4273c7 13473
5287ad62
JB
13474 return destmask;
13475}
13476
13477/* Check type and return type classification.
13478 The manual states (paraphrase): If one datatype is given, it indicates the
13479 type given in:
13480 - the second operand, if there is one
13481 - the operand, if there is no second operand
13482 - the result, if there are no operands.
13483 This isn't quite good enough though, so we use a concept of a "key" datatype
13484 which is set on a per-instruction basis, which is the one which matters when
13485 only one data type is written.
13486 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 13487 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
13488
13489static struct neon_type_el
13490neon_check_type (unsigned els, enum neon_shape ns, ...)
13491{
13492 va_list ap;
13493 unsigned i, pass, key_el = 0;
13494 unsigned types[NEON_MAX_TYPE_ELS];
13495 enum neon_el_type k_type = NT_invtype;
13496 unsigned k_size = -1u;
13497 struct neon_type_el badtype = {NT_invtype, -1};
13498 unsigned key_allowed = 0;
13499
13500 /* Optional registers in Neon instructions are always (not) in operand 1.
13501 Fill in the missing operand here, if it was omitted. */
13502 if (els > 1 && !inst.operands[1].present)
13503 inst.operands[1] = inst.operands[0];
13504
13505 /* Suck up all the varargs. */
13506 va_start (ap, ns);
13507 for (i = 0; i < els; i++)
13508 {
13509 unsigned thisarg = va_arg (ap, unsigned);
13510 if (thisarg == N_IGNORE_TYPE)
477330fc
RM
13511 {
13512 va_end (ap);
13513 return badtype;
13514 }
5287ad62
JB
13515 types[i] = thisarg;
13516 if ((thisarg & N_KEY) != 0)
477330fc 13517 key_el = i;
5287ad62
JB
13518 }
13519 va_end (ap);
13520
dcbf9037
JB
13521 if (inst.vectype.elems > 0)
13522 for (i = 0; i < els; i++)
13523 if (inst.operands[i].vectype.type != NT_invtype)
477330fc
RM
13524 {
13525 first_error (_("types specified in both the mnemonic and operands"));
13526 return badtype;
13527 }
dcbf9037 13528
5287ad62
JB
13529 /* Duplicate inst.vectype elements here as necessary.
13530 FIXME: No idea if this is exactly the same as the ARM assembler,
13531 particularly when an insn takes one register and one non-register
13532 operand. */
13533 if (inst.vectype.elems == 1 && els > 1)
13534 {
13535 unsigned j;
13536 inst.vectype.elems = els;
13537 inst.vectype.el[key_el] = inst.vectype.el[0];
13538 for (j = 0; j < els; j++)
477330fc
RM
13539 if (j != key_el)
13540 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
13541 types[j]);
dcbf9037
JB
13542 }
13543 else if (inst.vectype.elems == 0 && els > 0)
13544 {
13545 unsigned j;
13546 /* No types were given after the mnemonic, so look for types specified
477330fc
RM
13547 after each operand. We allow some flexibility here; as long as the
13548 "key" operand has a type, we can infer the others. */
dcbf9037 13549 for (j = 0; j < els; j++)
477330fc
RM
13550 if (inst.operands[j].vectype.type != NT_invtype)
13551 inst.vectype.el[j] = inst.operands[j].vectype;
dcbf9037
JB
13552
13553 if (inst.operands[key_el].vectype.type != NT_invtype)
477330fc
RM
13554 {
13555 for (j = 0; j < els; j++)
13556 if (inst.operands[j].vectype.type == NT_invtype)
13557 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
13558 types[j]);
13559 }
dcbf9037 13560 else
477330fc
RM
13561 {
13562 first_error (_("operand types can't be inferred"));
13563 return badtype;
13564 }
5287ad62
JB
13565 }
13566 else if (inst.vectype.elems != els)
13567 {
dcbf9037 13568 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
13569 return badtype;
13570 }
13571
13572 for (pass = 0; pass < 2; pass++)
13573 {
13574 for (i = 0; i < els; i++)
477330fc
RM
13575 {
13576 unsigned thisarg = types[i];
13577 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
13578 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
13579 enum neon_el_type g_type = inst.vectype.el[i].type;
13580 unsigned g_size = inst.vectype.el[i].size;
13581
13582 /* Decay more-specific signed & unsigned types to sign-insensitive
5287ad62 13583 integer types if sign-specific variants are unavailable. */
477330fc 13584 if ((g_type == NT_signed || g_type == NT_unsigned)
5287ad62
JB
13585 && (types_allowed & N_SU_ALL) == 0)
13586 g_type = NT_integer;
13587
477330fc 13588 /* If only untyped args are allowed, decay any more specific types to
5287ad62
JB
13589 them. Some instructions only care about signs for some element
13590 sizes, so handle that properly. */
477330fc 13591 if (((types_allowed & N_UNT) == 0)
91ff7894
MGD
13592 && ((g_size == 8 && (types_allowed & N_8) != 0)
13593 || (g_size == 16 && (types_allowed & N_16) != 0)
13594 || (g_size == 32 && (types_allowed & N_32) != 0)
13595 || (g_size == 64 && (types_allowed & N_64) != 0)))
5287ad62
JB
13596 g_type = NT_untyped;
13597
477330fc
RM
13598 if (pass == 0)
13599 {
13600 if ((thisarg & N_KEY) != 0)
13601 {
13602 k_type = g_type;
13603 k_size = g_size;
13604 key_allowed = thisarg & ~N_KEY;
13605 }
13606 }
13607 else
13608 {
13609 if ((thisarg & N_VFP) != 0)
13610 {
13611 enum neon_shape_el regshape;
13612 unsigned regwidth, match;
99b253c5
NC
13613
13614 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
13615 if (ns == NS_NULL)
13616 {
13617 first_error (_("invalid instruction shape"));
13618 return badtype;
13619 }
477330fc
RM
13620 regshape = neon_shape_tab[ns].el[i];
13621 regwidth = neon_shape_el_size[regshape];
13622
13623 /* In VFP mode, operands must match register widths. If we
13624 have a key operand, use its width, else use the width of
13625 the current operand. */
13626 if (k_size != -1u)
13627 match = k_size;
13628 else
13629 match = g_size;
13630
13631 if (regwidth != match)
13632 {
13633 first_error (_("operand size must match register width"));
13634 return badtype;
13635 }
13636 }
13637
13638 if ((thisarg & N_EQK) == 0)
13639 {
13640 unsigned given_type = type_chk_of_el_type (g_type, g_size);
13641
13642 if ((given_type & types_allowed) == 0)
13643 {
13644 first_error (_("bad type in Neon instruction"));
13645 return badtype;
13646 }
13647 }
13648 else
13649 {
13650 enum neon_el_type mod_k_type = k_type;
13651 unsigned mod_k_size = k_size;
13652 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
13653 if (g_type != mod_k_type || g_size != mod_k_size)
13654 {
13655 first_error (_("inconsistent types in Neon instruction"));
13656 return badtype;
13657 }
13658 }
13659 }
13660 }
5287ad62
JB
13661 }
13662
13663 return inst.vectype.el[key_el];
13664}
13665
037e8744 13666/* Neon-style VFP instruction forwarding. */
5287ad62 13667
037e8744
JB
13668/* Thumb VFP instructions have 0xE in the condition field. */
13669
13670static void
13671do_vfp_cond_or_thumb (void)
5287ad62 13672{
88714cb8
DG
13673 inst.is_neon = 1;
13674
5287ad62 13675 if (thumb_mode)
037e8744 13676 inst.instruction |= 0xe0000000;
5287ad62 13677 else
037e8744 13678 inst.instruction |= inst.cond << 28;
5287ad62
JB
13679}
13680
037e8744
JB
13681/* Look up and encode a simple mnemonic, for use as a helper function for the
13682 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
13683 etc. It is assumed that operand parsing has already been done, and that the
13684 operands are in the form expected by the given opcode (this isn't necessarily
13685 the same as the form in which they were parsed, hence some massaging must
13686 take place before this function is called).
13687 Checks current arch version against that in the looked-up opcode. */
5287ad62 13688
037e8744
JB
13689static void
13690do_vfp_nsyn_opcode (const char *opname)
5287ad62 13691{
037e8744 13692 const struct asm_opcode *opcode;
5f4273c7 13693
21d799b5 13694 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
5287ad62 13695
037e8744
JB
13696 if (!opcode)
13697 abort ();
5287ad62 13698
037e8744 13699 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
477330fc
RM
13700 thumb_mode ? *opcode->tvariant : *opcode->avariant),
13701 _(BAD_FPU));
5287ad62 13702
88714cb8
DG
13703 inst.is_neon = 1;
13704
037e8744
JB
13705 if (thumb_mode)
13706 {
13707 inst.instruction = opcode->tvalue;
13708 opcode->tencode ();
13709 }
13710 else
13711 {
13712 inst.instruction = (inst.cond << 28) | opcode->avalue;
13713 opcode->aencode ();
13714 }
13715}
5287ad62
JB
13716
13717static void
037e8744 13718do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 13719{
037e8744
JB
13720 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
13721
13722 if (rs == NS_FFF)
13723 {
13724 if (is_add)
477330fc 13725 do_vfp_nsyn_opcode ("fadds");
037e8744 13726 else
477330fc 13727 do_vfp_nsyn_opcode ("fsubs");
037e8744
JB
13728 }
13729 else
13730 {
13731 if (is_add)
477330fc 13732 do_vfp_nsyn_opcode ("faddd");
037e8744 13733 else
477330fc 13734 do_vfp_nsyn_opcode ("fsubd");
037e8744
JB
13735 }
13736}
13737
13738/* Check operand types to see if this is a VFP instruction, and if so call
13739 PFN (). */
13740
13741static int
13742try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
13743{
13744 enum neon_shape rs;
13745 struct neon_type_el et;
13746
13747 switch (args)
13748 {
13749 case 2:
13750 rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13751 et = neon_check_type (2, rs,
477330fc 13752 N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
037e8744 13753 break;
5f4273c7 13754
037e8744
JB
13755 case 3:
13756 rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13757 et = neon_check_type (3, rs,
477330fc 13758 N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
037e8744
JB
13759 break;
13760
13761 default:
13762 abort ();
13763 }
13764
13765 if (et.type != NT_invtype)
13766 {
13767 pfn (rs);
13768 return SUCCESS;
13769 }
037e8744 13770
99b253c5 13771 inst.error = NULL;
037e8744
JB
13772 return FAIL;
13773}
13774
13775static void
13776do_vfp_nsyn_mla_mls (enum neon_shape rs)
13777{
13778 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
5f4273c7 13779
037e8744
JB
13780 if (rs == NS_FFF)
13781 {
13782 if (is_mla)
477330fc 13783 do_vfp_nsyn_opcode ("fmacs");
037e8744 13784 else
477330fc 13785 do_vfp_nsyn_opcode ("fnmacs");
037e8744
JB
13786 }
13787 else
13788 {
13789 if (is_mla)
477330fc 13790 do_vfp_nsyn_opcode ("fmacd");
037e8744 13791 else
477330fc 13792 do_vfp_nsyn_opcode ("fnmacd");
037e8744
JB
13793 }
13794}
13795
62f3b8c8
PB
13796static void
13797do_vfp_nsyn_fma_fms (enum neon_shape rs)
13798{
13799 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
13800
13801 if (rs == NS_FFF)
13802 {
13803 if (is_fma)
477330fc 13804 do_vfp_nsyn_opcode ("ffmas");
62f3b8c8 13805 else
477330fc 13806 do_vfp_nsyn_opcode ("ffnmas");
62f3b8c8
PB
13807 }
13808 else
13809 {
13810 if (is_fma)
477330fc 13811 do_vfp_nsyn_opcode ("ffmad");
62f3b8c8 13812 else
477330fc 13813 do_vfp_nsyn_opcode ("ffnmad");
62f3b8c8
PB
13814 }
13815}
13816
037e8744
JB
13817static void
13818do_vfp_nsyn_mul (enum neon_shape rs)
13819{
13820 if (rs == NS_FFF)
13821 do_vfp_nsyn_opcode ("fmuls");
13822 else
13823 do_vfp_nsyn_opcode ("fmuld");
13824}
13825
13826static void
13827do_vfp_nsyn_abs_neg (enum neon_shape rs)
13828{
13829 int is_neg = (inst.instruction & 0x80) != 0;
13830 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
13831
13832 if (rs == NS_FF)
13833 {
13834 if (is_neg)
477330fc 13835 do_vfp_nsyn_opcode ("fnegs");
037e8744 13836 else
477330fc 13837 do_vfp_nsyn_opcode ("fabss");
037e8744
JB
13838 }
13839 else
13840 {
13841 if (is_neg)
477330fc 13842 do_vfp_nsyn_opcode ("fnegd");
037e8744 13843 else
477330fc 13844 do_vfp_nsyn_opcode ("fabsd");
037e8744
JB
13845 }
13846}
13847
13848/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
13849 insns belong to Neon, and are handled elsewhere. */
13850
13851static void
13852do_vfp_nsyn_ldm_stm (int is_dbmode)
13853{
13854 int is_ldm = (inst.instruction & (1 << 20)) != 0;
13855 if (is_ldm)
13856 {
13857 if (is_dbmode)
477330fc 13858 do_vfp_nsyn_opcode ("fldmdbs");
037e8744 13859 else
477330fc 13860 do_vfp_nsyn_opcode ("fldmias");
037e8744
JB
13861 }
13862 else
13863 {
13864 if (is_dbmode)
477330fc 13865 do_vfp_nsyn_opcode ("fstmdbs");
037e8744 13866 else
477330fc 13867 do_vfp_nsyn_opcode ("fstmias");
037e8744
JB
13868 }
13869}
13870
037e8744
JB
13871static void
13872do_vfp_nsyn_sqrt (void)
13873{
13874 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13875 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13876
037e8744
JB
13877 if (rs == NS_FF)
13878 do_vfp_nsyn_opcode ("fsqrts");
13879 else
13880 do_vfp_nsyn_opcode ("fsqrtd");
13881}
13882
13883static void
13884do_vfp_nsyn_div (void)
13885{
13886 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13887 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13888 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13889
037e8744
JB
13890 if (rs == NS_FFF)
13891 do_vfp_nsyn_opcode ("fdivs");
13892 else
13893 do_vfp_nsyn_opcode ("fdivd");
13894}
13895
13896static void
13897do_vfp_nsyn_nmul (void)
13898{
13899 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13900 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13901 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13902
037e8744
JB
13903 if (rs == NS_FFF)
13904 {
88714cb8 13905 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13906 do_vfp_sp_dyadic ();
13907 }
13908 else
13909 {
88714cb8 13910 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13911 do_vfp_dp_rd_rn_rm ();
13912 }
13913 do_vfp_cond_or_thumb ();
13914}
13915
13916static void
13917do_vfp_nsyn_cmp (void)
13918{
13919 if (inst.operands[1].isreg)
13920 {
13921 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13922 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13923
037e8744 13924 if (rs == NS_FF)
477330fc
RM
13925 {
13926 NEON_ENCODE (SINGLE, inst);
13927 do_vfp_sp_monadic ();
13928 }
037e8744 13929 else
477330fc
RM
13930 {
13931 NEON_ENCODE (DOUBLE, inst);
13932 do_vfp_dp_rd_rm ();
13933 }
037e8744
JB
13934 }
13935 else
13936 {
13937 enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
13938 neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
13939
13940 switch (inst.instruction & 0x0fffffff)
477330fc
RM
13941 {
13942 case N_MNEM_vcmp:
13943 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
13944 break;
13945 case N_MNEM_vcmpe:
13946 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
13947 break;
13948 default:
13949 abort ();
13950 }
5f4273c7 13951
037e8744 13952 if (rs == NS_FI)
477330fc
RM
13953 {
13954 NEON_ENCODE (SINGLE, inst);
13955 do_vfp_sp_compare_z ();
13956 }
037e8744 13957 else
477330fc
RM
13958 {
13959 NEON_ENCODE (DOUBLE, inst);
13960 do_vfp_dp_rd ();
13961 }
037e8744
JB
13962 }
13963 do_vfp_cond_or_thumb ();
13964}
13965
13966static void
13967nsyn_insert_sp (void)
13968{
13969 inst.operands[1] = inst.operands[0];
13970 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
fdfde340 13971 inst.operands[0].reg = REG_SP;
037e8744
JB
13972 inst.operands[0].isreg = 1;
13973 inst.operands[0].writeback = 1;
13974 inst.operands[0].present = 1;
13975}
13976
13977static void
13978do_vfp_nsyn_push (void)
13979{
13980 nsyn_insert_sp ();
13981 if (inst.operands[1].issingle)
13982 do_vfp_nsyn_opcode ("fstmdbs");
13983 else
13984 do_vfp_nsyn_opcode ("fstmdbd");
13985}
13986
13987static void
13988do_vfp_nsyn_pop (void)
13989{
13990 nsyn_insert_sp ();
13991 if (inst.operands[1].issingle)
22b5b651 13992 do_vfp_nsyn_opcode ("fldmias");
037e8744 13993 else
22b5b651 13994 do_vfp_nsyn_opcode ("fldmiad");
037e8744
JB
13995}
13996
13997/* Fix up Neon data-processing instructions, ORing in the correct bits for
13998 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
13999
88714cb8
DG
14000static void
14001neon_dp_fixup (struct arm_it* insn)
037e8744 14002{
88714cb8
DG
14003 unsigned int i = insn->instruction;
14004 insn->is_neon = 1;
14005
037e8744
JB
14006 if (thumb_mode)
14007 {
14008 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
14009 if (i & (1 << 24))
477330fc 14010 i |= 1 << 28;
5f4273c7 14011
037e8744 14012 i &= ~(1 << 24);
5f4273c7 14013
037e8744
JB
14014 i |= 0xef000000;
14015 }
14016 else
14017 i |= 0xf2000000;
5f4273c7 14018
88714cb8 14019 insn->instruction = i;
037e8744
JB
14020}
14021
14022/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
14023 (0, 1, 2, 3). */
14024
14025static unsigned
14026neon_logbits (unsigned x)
14027{
14028 return ffs (x) - 4;
14029}
14030
14031#define LOW4(R) ((R) & 0xf)
14032#define HI1(R) (((R) >> 4) & 1)
14033
14034/* Encode insns with bit pattern:
14035
14036 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
14037 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
5f4273c7 14038
037e8744
JB
14039 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
14040 different meaning for some instruction. */
14041
14042static void
14043neon_three_same (int isquad, int ubit, int size)
14044{
14045 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14046 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14047 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14048 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14049 inst.instruction |= LOW4 (inst.operands[2].reg);
14050 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
14051 inst.instruction |= (isquad != 0) << 6;
14052 inst.instruction |= (ubit != 0) << 24;
14053 if (size != -1)
14054 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 14055
88714cb8 14056 neon_dp_fixup (&inst);
037e8744
JB
14057}
14058
14059/* Encode instructions of the form:
14060
14061 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
14062 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
14063
14064 Don't write size if SIZE == -1. */
14065
14066static void
14067neon_two_same (int qbit, int ubit, int size)
14068{
14069 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14070 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14071 inst.instruction |= LOW4 (inst.operands[1].reg);
14072 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14073 inst.instruction |= (qbit != 0) << 6;
14074 inst.instruction |= (ubit != 0) << 24;
14075
14076 if (size != -1)
14077 inst.instruction |= neon_logbits (size) << 18;
14078
88714cb8 14079 neon_dp_fixup (&inst);
5287ad62
JB
14080}
14081
14082/* Neon instruction encoders, in approximate order of appearance. */
14083
14084static void
14085do_neon_dyadic_i_su (void)
14086{
037e8744 14087 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14088 struct neon_type_el et = neon_check_type (3, rs,
14089 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 14090 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14091}
14092
14093static void
14094do_neon_dyadic_i64_su (void)
14095{
037e8744 14096 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14097 struct neon_type_el et = neon_check_type (3, rs,
14098 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 14099 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14100}
14101
14102static void
14103neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
477330fc 14104 unsigned immbits)
5287ad62
JB
14105{
14106 unsigned size = et.size >> 3;
14107 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14108 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14109 inst.instruction |= LOW4 (inst.operands[1].reg);
14110 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14111 inst.instruction |= (isquad != 0) << 6;
14112 inst.instruction |= immbits << 16;
14113 inst.instruction |= (size >> 3) << 7;
14114 inst.instruction |= (size & 0x7) << 19;
14115 if (write_ubit)
14116 inst.instruction |= (uval != 0) << 24;
14117
88714cb8 14118 neon_dp_fixup (&inst);
5287ad62
JB
14119}
14120
14121static void
14122do_neon_shl_imm (void)
14123{
14124 if (!inst.operands[2].isreg)
14125 {
037e8744 14126 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 14127 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
cb3b1e65
JB
14128 int imm = inst.operands[2].imm;
14129
14130 constraint (imm < 0 || (unsigned)imm >= et.size,
14131 _("immediate out of range for shift"));
88714cb8 14132 NEON_ENCODE (IMMED, inst);
cb3b1e65 14133 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14134 }
14135 else
14136 {
037e8744 14137 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14138 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14139 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
14140 unsigned int tmp;
14141
14142 /* VSHL/VQSHL 3-register variants have syntax such as:
477330fc
RM
14143 vshl.xx Dd, Dm, Dn
14144 whereas other 3-register operations encoded by neon_three_same have
14145 syntax like:
14146 vadd.xx Dd, Dn, Dm
14147 (i.e. with Dn & Dm reversed). Swap operands[1].reg and operands[2].reg
14148 here. */
627907b7
JB
14149 tmp = inst.operands[2].reg;
14150 inst.operands[2].reg = inst.operands[1].reg;
14151 inst.operands[1].reg = tmp;
88714cb8 14152 NEON_ENCODE (INTEGER, inst);
037e8744 14153 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14154 }
14155}
14156
14157static void
14158do_neon_qshl_imm (void)
14159{
14160 if (!inst.operands[2].isreg)
14161 {
037e8744 14162 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 14163 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
cb3b1e65 14164 int imm = inst.operands[2].imm;
627907b7 14165
cb3b1e65
JB
14166 constraint (imm < 0 || (unsigned)imm >= et.size,
14167 _("immediate out of range for shift"));
88714cb8 14168 NEON_ENCODE (IMMED, inst);
cb3b1e65 14169 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et, imm);
5287ad62
JB
14170 }
14171 else
14172 {
037e8744 14173 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14174 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14175 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
14176 unsigned int tmp;
14177
14178 /* See note in do_neon_shl_imm. */
14179 tmp = inst.operands[2].reg;
14180 inst.operands[2].reg = inst.operands[1].reg;
14181 inst.operands[1].reg = tmp;
88714cb8 14182 NEON_ENCODE (INTEGER, inst);
037e8744 14183 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14184 }
14185}
14186
627907b7
JB
14187static void
14188do_neon_rshl (void)
14189{
14190 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
14191 struct neon_type_el et = neon_check_type (3, rs,
14192 N_EQK, N_EQK, N_SU_ALL | N_KEY);
14193 unsigned int tmp;
14194
14195 tmp = inst.operands[2].reg;
14196 inst.operands[2].reg = inst.operands[1].reg;
14197 inst.operands[1].reg = tmp;
14198 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
14199}
14200
5287ad62
JB
14201static int
14202neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
14203{
036dc3f7
PB
14204 /* Handle .I8 pseudo-instructions. */
14205 if (size == 8)
5287ad62 14206 {
5287ad62 14207 /* Unfortunately, this will make everything apart from zero out-of-range.
477330fc
RM
14208 FIXME is this the intended semantics? There doesn't seem much point in
14209 accepting .I8 if so. */
5287ad62
JB
14210 immediate |= immediate << 8;
14211 size = 16;
036dc3f7
PB
14212 }
14213
14214 if (size >= 32)
14215 {
14216 if (immediate == (immediate & 0x000000ff))
14217 {
14218 *immbits = immediate;
14219 return 0x1;
14220 }
14221 else if (immediate == (immediate & 0x0000ff00))
14222 {
14223 *immbits = immediate >> 8;
14224 return 0x3;
14225 }
14226 else if (immediate == (immediate & 0x00ff0000))
14227 {
14228 *immbits = immediate >> 16;
14229 return 0x5;
14230 }
14231 else if (immediate == (immediate & 0xff000000))
14232 {
14233 *immbits = immediate >> 24;
14234 return 0x7;
14235 }
14236 if ((immediate & 0xffff) != (immediate >> 16))
14237 goto bad_immediate;
14238 immediate &= 0xffff;
5287ad62
JB
14239 }
14240
14241 if (immediate == (immediate & 0x000000ff))
14242 {
14243 *immbits = immediate;
036dc3f7 14244 return 0x9;
5287ad62
JB
14245 }
14246 else if (immediate == (immediate & 0x0000ff00))
14247 {
14248 *immbits = immediate >> 8;
036dc3f7 14249 return 0xb;
5287ad62
JB
14250 }
14251
14252 bad_immediate:
dcbf9037 14253 first_error (_("immediate value out of range"));
5287ad62
JB
14254 return FAIL;
14255}
14256
5287ad62
JB
14257static void
14258do_neon_logic (void)
14259{
14260 if (inst.operands[2].present && inst.operands[2].isreg)
14261 {
037e8744 14262 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14263 neon_check_type (3, rs, N_IGNORE_TYPE);
14264 /* U bit and size field were set as part of the bitmask. */
88714cb8 14265 NEON_ENCODE (INTEGER, inst);
037e8744 14266 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14267 }
14268 else
14269 {
4316f0d2
DG
14270 const int three_ops_form = (inst.operands[2].present
14271 && !inst.operands[2].isreg);
14272 const int immoperand = (three_ops_form ? 2 : 1);
14273 enum neon_shape rs = (three_ops_form
14274 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
14275 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
037e8744 14276 struct neon_type_el et = neon_check_type (2, rs,
477330fc 14277 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
21d799b5 14278 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
5287ad62
JB
14279 unsigned immbits;
14280 int cmode;
5f4273c7 14281
5287ad62 14282 if (et.type == NT_invtype)
477330fc 14283 return;
5f4273c7 14284
4316f0d2
DG
14285 if (three_ops_form)
14286 constraint (inst.operands[0].reg != inst.operands[1].reg,
14287 _("first and second operands shall be the same register"));
14288
88714cb8 14289 NEON_ENCODE (IMMED, inst);
5287ad62 14290
4316f0d2 14291 immbits = inst.operands[immoperand].imm;
036dc3f7
PB
14292 if (et.size == 64)
14293 {
14294 /* .i64 is a pseudo-op, so the immediate must be a repeating
14295 pattern. */
4316f0d2
DG
14296 if (immbits != (inst.operands[immoperand].regisimm ?
14297 inst.operands[immoperand].reg : 0))
036dc3f7
PB
14298 {
14299 /* Set immbits to an invalid constant. */
14300 immbits = 0xdeadbeef;
14301 }
14302 }
14303
5287ad62 14304 switch (opcode)
477330fc
RM
14305 {
14306 case N_MNEM_vbic:
14307 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14308 break;
14309
14310 case N_MNEM_vorr:
14311 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14312 break;
14313
14314 case N_MNEM_vand:
14315 /* Pseudo-instruction for VBIC. */
14316 neon_invert_size (&immbits, 0, et.size);
14317 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14318 break;
14319
14320 case N_MNEM_vorn:
14321 /* Pseudo-instruction for VORR. */
14322 neon_invert_size (&immbits, 0, et.size);
14323 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14324 break;
14325
14326 default:
14327 abort ();
14328 }
5287ad62
JB
14329
14330 if (cmode == FAIL)
477330fc 14331 return;
5287ad62 14332
037e8744 14333 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14334 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14335 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14336 inst.instruction |= cmode << 8;
14337 neon_write_immbits (immbits);
5f4273c7 14338
88714cb8 14339 neon_dp_fixup (&inst);
5287ad62
JB
14340 }
14341}
14342
14343static void
14344do_neon_bitfield (void)
14345{
037e8744 14346 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 14347 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 14348 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14349}
14350
14351static void
dcbf9037 14352neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
477330fc 14353 unsigned destbits)
5287ad62 14354{
037e8744 14355 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 14356 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
477330fc 14357 types | N_KEY);
5287ad62
JB
14358 if (et.type == NT_float)
14359 {
88714cb8 14360 NEON_ENCODE (FLOAT, inst);
037e8744 14361 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14362 }
14363 else
14364 {
88714cb8 14365 NEON_ENCODE (INTEGER, inst);
037e8744 14366 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
14367 }
14368}
14369
14370static void
14371do_neon_dyadic_if_su (void)
14372{
dcbf9037 14373 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
14374}
14375
14376static void
14377do_neon_dyadic_if_su_d (void)
14378{
14379 /* This version only allow D registers, but that constraint is enforced during
14380 operand parsing so we don't need to do anything extra here. */
dcbf9037 14381 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
14382}
14383
5287ad62
JB
14384static void
14385do_neon_dyadic_if_i_d (void)
14386{
428e3f1f
PB
14387 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14388 affected if we specify unsigned args. */
14389 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
14390}
14391
037e8744
JB
14392enum vfp_or_neon_is_neon_bits
14393{
14394 NEON_CHECK_CC = 1,
73924fbc
MGD
14395 NEON_CHECK_ARCH = 2,
14396 NEON_CHECK_ARCH8 = 4
037e8744
JB
14397};
14398
14399/* Call this function if an instruction which may have belonged to the VFP or
14400 Neon instruction sets, but turned out to be a Neon instruction (due to the
14401 operand types involved, etc.). We have to check and/or fix-up a couple of
14402 things:
14403
14404 - Make sure the user hasn't attempted to make a Neon instruction
14405 conditional.
14406 - Alter the value in the condition code field if necessary.
14407 - Make sure that the arch supports Neon instructions.
14408
14409 Which of these operations take place depends on bits from enum
14410 vfp_or_neon_is_neon_bits.
14411
14412 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
14413 current instruction's condition is COND_ALWAYS, the condition field is
14414 changed to inst.uncond_value. This is necessary because instructions shared
14415 between VFP and Neon may be conditional for the VFP variants only, and the
14416 unconditional Neon version must have, e.g., 0xF in the condition field. */
14417
14418static int
14419vfp_or_neon_is_neon (unsigned check)
14420{
14421 /* Conditions are always legal in Thumb mode (IT blocks). */
14422 if (!thumb_mode && (check & NEON_CHECK_CC))
14423 {
14424 if (inst.cond != COND_ALWAYS)
477330fc
RM
14425 {
14426 first_error (_(BAD_COND));
14427 return FAIL;
14428 }
037e8744 14429 if (inst.uncond_value != -1)
477330fc 14430 inst.instruction |= inst.uncond_value << 28;
037e8744 14431 }
5f4273c7 14432
037e8744 14433 if ((check & NEON_CHECK_ARCH)
73924fbc
MGD
14434 && !mark_feature_used (&fpu_neon_ext_v1))
14435 {
14436 first_error (_(BAD_FPU));
14437 return FAIL;
14438 }
14439
14440 if ((check & NEON_CHECK_ARCH8)
14441 && !mark_feature_used (&fpu_neon_ext_armv8))
037e8744
JB
14442 {
14443 first_error (_(BAD_FPU));
14444 return FAIL;
14445 }
5f4273c7 14446
037e8744
JB
14447 return SUCCESS;
14448}
14449
5287ad62
JB
14450static void
14451do_neon_addsub_if_i (void)
14452{
037e8744
JB
14453 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
14454 return;
14455
14456 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14457 return;
14458
5287ad62
JB
14459 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14460 affected if we specify unsigned args. */
dcbf9037 14461 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
14462}
14463
14464/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
14465 result to be:
14466 V<op> A,B (A is operand 0, B is operand 2)
14467 to mean:
14468 V<op> A,B,A
14469 not:
14470 V<op> A,B,B
14471 so handle that case specially. */
14472
14473static void
14474neon_exchange_operands (void)
14475{
14476 void *scratch = alloca (sizeof (inst.operands[0]));
14477 if (inst.operands[1].present)
14478 {
14479 /* Swap operands[1] and operands[2]. */
14480 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
14481 inst.operands[1] = inst.operands[2];
14482 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
14483 }
14484 else
14485 {
14486 inst.operands[1] = inst.operands[2];
14487 inst.operands[2] = inst.operands[0];
14488 }
14489}
14490
14491static void
14492neon_compare (unsigned regtypes, unsigned immtypes, int invert)
14493{
14494 if (inst.operands[2].isreg)
14495 {
14496 if (invert)
477330fc 14497 neon_exchange_operands ();
dcbf9037 14498 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
14499 }
14500 else
14501 {
037e8744 14502 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037 14503 struct neon_type_el et = neon_check_type (2, rs,
477330fc 14504 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62 14505
88714cb8 14506 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14507 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14508 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14509 inst.instruction |= LOW4 (inst.operands[1].reg);
14510 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14511 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14512 inst.instruction |= (et.type == NT_float) << 10;
14513 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14514
88714cb8 14515 neon_dp_fixup (&inst);
5287ad62
JB
14516 }
14517}
14518
14519static void
14520do_neon_cmp (void)
14521{
14522 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
14523}
14524
14525static void
14526do_neon_cmp_inv (void)
14527{
14528 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
14529}
14530
14531static void
14532do_neon_ceq (void)
14533{
14534 neon_compare (N_IF_32, N_IF_32, FALSE);
14535}
14536
14537/* For multiply instructions, we have the possibility of 16-bit or 32-bit
14538 scalars, which are encoded in 5 bits, M : Rm.
14539 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
14540 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
14541 index in M. */
14542
14543static unsigned
14544neon_scalar_for_mul (unsigned scalar, unsigned elsize)
14545{
dcbf9037
JB
14546 unsigned regno = NEON_SCALAR_REG (scalar);
14547 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
14548
14549 switch (elsize)
14550 {
14551 case 16:
14552 if (regno > 7 || elno > 3)
477330fc 14553 goto bad_scalar;
5287ad62 14554 return regno | (elno << 3);
5f4273c7 14555
5287ad62
JB
14556 case 32:
14557 if (regno > 15 || elno > 1)
477330fc 14558 goto bad_scalar;
5287ad62
JB
14559 return regno | (elno << 4);
14560
14561 default:
14562 bad_scalar:
dcbf9037 14563 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
14564 }
14565
14566 return 0;
14567}
14568
14569/* Encode multiply / multiply-accumulate scalar instructions. */
14570
14571static void
14572neon_mul_mac (struct neon_type_el et, int ubit)
14573{
dcbf9037
JB
14574 unsigned scalar;
14575
14576 /* Give a more helpful error message if we have an invalid type. */
14577 if (et.type == NT_invtype)
14578 return;
5f4273c7 14579
dcbf9037 14580 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
14581 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14582 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14583 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14584 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14585 inst.instruction |= LOW4 (scalar);
14586 inst.instruction |= HI1 (scalar) << 5;
14587 inst.instruction |= (et.type == NT_float) << 8;
14588 inst.instruction |= neon_logbits (et.size) << 20;
14589 inst.instruction |= (ubit != 0) << 24;
14590
88714cb8 14591 neon_dp_fixup (&inst);
5287ad62
JB
14592}
14593
14594static void
14595do_neon_mac_maybe_scalar (void)
14596{
037e8744
JB
14597 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
14598 return;
14599
14600 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14601 return;
14602
5287ad62
JB
14603 if (inst.operands[2].isscalar)
14604 {
037e8744 14605 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62 14606 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14607 N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
88714cb8 14608 NEON_ENCODE (SCALAR, inst);
037e8744 14609 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14610 }
14611 else
428e3f1f
PB
14612 {
14613 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14614 affected if we specify unsigned args. */
14615 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14616 }
5287ad62
JB
14617}
14618
62f3b8c8
PB
14619static void
14620do_neon_fmac (void)
14621{
14622 if (try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
14623 return;
14624
14625 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14626 return;
14627
14628 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14629}
14630
5287ad62
JB
14631static void
14632do_neon_tst (void)
14633{
037e8744 14634 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14635 struct neon_type_el et = neon_check_type (3, rs,
14636 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 14637 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14638}
14639
14640/* VMUL with 3 registers allows the P8 type. The scalar version supports the
14641 same types as the MAC equivalents. The polynomial type for this instruction
14642 is encoded the same as the integer type. */
14643
14644static void
14645do_neon_mul (void)
14646{
037e8744
JB
14647 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
14648 return;
14649
14650 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14651 return;
14652
5287ad62
JB
14653 if (inst.operands[2].isscalar)
14654 do_neon_mac_maybe_scalar ();
14655 else
dcbf9037 14656 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
5287ad62
JB
14657}
14658
14659static void
14660do_neon_qdmulh (void)
14661{
14662 if (inst.operands[2].isscalar)
14663 {
037e8744 14664 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62 14665 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14666 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14667 NEON_ENCODE (SCALAR, inst);
037e8744 14668 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14669 }
14670 else
14671 {
037e8744 14672 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14673 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14674 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14675 NEON_ENCODE (INTEGER, inst);
5287ad62 14676 /* The U bit (rounding) comes from bit mask. */
037e8744 14677 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14678 }
14679}
14680
14681static void
14682do_neon_fcmp_absolute (void)
14683{
037e8744 14684 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14685 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
14686 /* Size field comes from bit mask. */
037e8744 14687 neon_three_same (neon_quad (rs), 1, -1);
5287ad62
JB
14688}
14689
14690static void
14691do_neon_fcmp_absolute_inv (void)
14692{
14693 neon_exchange_operands ();
14694 do_neon_fcmp_absolute ();
14695}
14696
14697static void
14698do_neon_step (void)
14699{
037e8744 14700 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14701 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
037e8744 14702 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14703}
14704
14705static void
14706do_neon_abs_neg (void)
14707{
037e8744
JB
14708 enum neon_shape rs;
14709 struct neon_type_el et;
5f4273c7 14710
037e8744
JB
14711 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
14712 return;
14713
14714 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14715 return;
14716
14717 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
14718 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
5f4273c7 14719
5287ad62
JB
14720 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14721 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14722 inst.instruction |= LOW4 (inst.operands[1].reg);
14723 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14724 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14725 inst.instruction |= (et.type == NT_float) << 10;
14726 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14727
88714cb8 14728 neon_dp_fixup (&inst);
5287ad62
JB
14729}
14730
14731static void
14732do_neon_sli (void)
14733{
037e8744 14734 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14735 struct neon_type_el et = neon_check_type (2, rs,
14736 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14737 int imm = inst.operands[2].imm;
14738 constraint (imm < 0 || (unsigned)imm >= et.size,
477330fc 14739 _("immediate out of range for insert"));
037e8744 14740 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14741}
14742
14743static void
14744do_neon_sri (void)
14745{
037e8744 14746 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14747 struct neon_type_el et = neon_check_type (2, rs,
14748 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14749 int imm = inst.operands[2].imm;
14750 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 14751 _("immediate out of range for insert"));
037e8744 14752 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
14753}
14754
14755static void
14756do_neon_qshlu_imm (void)
14757{
037e8744 14758 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14759 struct neon_type_el et = neon_check_type (2, rs,
14760 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
14761 int imm = inst.operands[2].imm;
14762 constraint (imm < 0 || (unsigned)imm >= et.size,
477330fc 14763 _("immediate out of range for shift"));
5287ad62
JB
14764 /* Only encodes the 'U present' variant of the instruction.
14765 In this case, signed types have OP (bit 8) set to 0.
14766 Unsigned types have OP set to 1. */
14767 inst.instruction |= (et.type == NT_unsigned) << 8;
14768 /* The rest of the bits are the same as other immediate shifts. */
037e8744 14769 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14770}
14771
14772static void
14773do_neon_qmovn (void)
14774{
14775 struct neon_type_el et = neon_check_type (2, NS_DQ,
14776 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14777 /* Saturating move where operands can be signed or unsigned, and the
14778 destination has the same signedness. */
88714cb8 14779 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14780 if (et.type == NT_unsigned)
14781 inst.instruction |= 0xc0;
14782 else
14783 inst.instruction |= 0x80;
14784 neon_two_same (0, 1, et.size / 2);
14785}
14786
14787static void
14788do_neon_qmovun (void)
14789{
14790 struct neon_type_el et = neon_check_type (2, NS_DQ,
14791 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14792 /* Saturating move with unsigned results. Operands must be signed. */
88714cb8 14793 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14794 neon_two_same (0, 1, et.size / 2);
14795}
14796
14797static void
14798do_neon_rshift_sat_narrow (void)
14799{
14800 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14801 or unsigned. If operands are unsigned, results must also be unsigned. */
14802 struct neon_type_el et = neon_check_type (2, NS_DQI,
14803 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14804 int imm = inst.operands[2].imm;
14805 /* This gets the bounds check, size encoding and immediate bits calculation
14806 right. */
14807 et.size /= 2;
5f4273c7 14808
5287ad62
JB
14809 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
14810 VQMOVN.I<size> <Dd>, <Qm>. */
14811 if (imm == 0)
14812 {
14813 inst.operands[2].present = 0;
14814 inst.instruction = N_MNEM_vqmovn;
14815 do_neon_qmovn ();
14816 return;
14817 }
5f4273c7 14818
5287ad62 14819 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 14820 _("immediate out of range"));
5287ad62
JB
14821 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
14822}
14823
14824static void
14825do_neon_rshift_sat_narrow_u (void)
14826{
14827 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14828 or unsigned. If operands are unsigned, results must also be unsigned. */
14829 struct neon_type_el et = neon_check_type (2, NS_DQI,
14830 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14831 int imm = inst.operands[2].imm;
14832 /* This gets the bounds check, size encoding and immediate bits calculation
14833 right. */
14834 et.size /= 2;
14835
14836 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
14837 VQMOVUN.I<size> <Dd>, <Qm>. */
14838 if (imm == 0)
14839 {
14840 inst.operands[2].present = 0;
14841 inst.instruction = N_MNEM_vqmovun;
14842 do_neon_qmovun ();
14843 return;
14844 }
14845
14846 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 14847 _("immediate out of range"));
5287ad62
JB
14848 /* FIXME: The manual is kind of unclear about what value U should have in
14849 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
14850 must be 1. */
14851 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
14852}
14853
14854static void
14855do_neon_movn (void)
14856{
14857 struct neon_type_el et = neon_check_type (2, NS_DQ,
14858 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
88714cb8 14859 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14860 neon_two_same (0, 1, et.size / 2);
14861}
14862
14863static void
14864do_neon_rshift_narrow (void)
14865{
14866 struct neon_type_el et = neon_check_type (2, NS_DQI,
14867 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
14868 int imm = inst.operands[2].imm;
14869 /* This gets the bounds check, size encoding and immediate bits calculation
14870 right. */
14871 et.size /= 2;
5f4273c7 14872
5287ad62
JB
14873 /* If immediate is zero then we are a pseudo-instruction for
14874 VMOVN.I<size> <Dd>, <Qm> */
14875 if (imm == 0)
14876 {
14877 inst.operands[2].present = 0;
14878 inst.instruction = N_MNEM_vmovn;
14879 do_neon_movn ();
14880 return;
14881 }
5f4273c7 14882
5287ad62 14883 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 14884 _("immediate out of range for narrowing operation"));
5287ad62
JB
14885 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
14886}
14887
14888static void
14889do_neon_shll (void)
14890{
14891 /* FIXME: Type checking when lengthening. */
14892 struct neon_type_el et = neon_check_type (2, NS_QDI,
14893 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
14894 unsigned imm = inst.operands[2].imm;
14895
14896 if (imm == et.size)
14897 {
14898 /* Maximum shift variant. */
88714cb8 14899 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14900 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14901 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14902 inst.instruction |= LOW4 (inst.operands[1].reg);
14903 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14904 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14905
88714cb8 14906 neon_dp_fixup (&inst);
5287ad62
JB
14907 }
14908 else
14909 {
14910 /* A more-specific type check for non-max versions. */
14911 et = neon_check_type (2, NS_QDI,
477330fc 14912 N_EQK | N_DBL, N_SU_32 | N_KEY);
88714cb8 14913 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14914 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
14915 }
14916}
14917
037e8744 14918/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
14919 the current instruction is. */
14920
6b9a8b67
MGD
14921#define CVT_FLAVOUR_VAR \
14922 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
14923 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
14924 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
14925 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
14926 /* Half-precision conversions. */ \
14927 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
14928 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
14929 /* VFP instructions. */ \
14930 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
14931 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
14932 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
14933 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
14934 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
14935 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
14936 /* VFP instructions with bitshift. */ \
14937 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
14938 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
14939 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
14940 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
14941 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
14942 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
14943 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
14944 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
14945
14946#define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
14947 neon_cvt_flavour_##C,
14948
14949/* The different types of conversions we can do. */
14950enum neon_cvt_flavour
14951{
14952 CVT_FLAVOUR_VAR
14953 neon_cvt_flavour_invalid,
14954 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
14955};
14956
14957#undef CVT_VAR
14958
14959static enum neon_cvt_flavour
14960get_neon_cvt_flavour (enum neon_shape rs)
5287ad62 14961{
6b9a8b67
MGD
14962#define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
14963 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
14964 if (et.type != NT_invtype) \
14965 { \
14966 inst.error = NULL; \
14967 return (neon_cvt_flavour_##C); \
5287ad62 14968 }
6b9a8b67 14969
5287ad62 14970 struct neon_type_el et;
037e8744 14971 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
477330fc 14972 || rs == NS_FF) ? N_VFP : 0;
037e8744
JB
14973 /* The instruction versions which take an immediate take one register
14974 argument, which is extended to the width of the full register. Thus the
14975 "source" and "destination" registers must have the same width. Hack that
14976 here by making the size equal to the key (wider, in this case) operand. */
14977 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5f4273c7 14978
6b9a8b67
MGD
14979 CVT_FLAVOUR_VAR;
14980
14981 return neon_cvt_flavour_invalid;
5287ad62
JB
14982#undef CVT_VAR
14983}
14984
7e8e6784
MGD
14985enum neon_cvt_mode
14986{
14987 neon_cvt_mode_a,
14988 neon_cvt_mode_n,
14989 neon_cvt_mode_p,
14990 neon_cvt_mode_m,
14991 neon_cvt_mode_z,
30bdf752
MGD
14992 neon_cvt_mode_x,
14993 neon_cvt_mode_r
7e8e6784
MGD
14994};
14995
037e8744
JB
14996/* Neon-syntax VFP conversions. */
14997
5287ad62 14998static void
6b9a8b67 14999do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
5287ad62 15000{
037e8744 15001 const char *opname = 0;
5f4273c7 15002
037e8744 15003 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
5287ad62 15004 {
037e8744
JB
15005 /* Conversions with immediate bitshift. */
15006 const char *enc[] =
477330fc 15007 {
6b9a8b67
MGD
15008#define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
15009 CVT_FLAVOUR_VAR
15010 NULL
15011#undef CVT_VAR
477330fc 15012 };
037e8744 15013
6b9a8b67 15014 if (flavour < (int) ARRAY_SIZE (enc))
477330fc
RM
15015 {
15016 opname = enc[flavour];
15017 constraint (inst.operands[0].reg != inst.operands[1].reg,
15018 _("operands 0 and 1 must be the same register"));
15019 inst.operands[1] = inst.operands[2];
15020 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
15021 }
5287ad62
JB
15022 }
15023 else
15024 {
037e8744
JB
15025 /* Conversions without bitshift. */
15026 const char *enc[] =
477330fc 15027 {
6b9a8b67
MGD
15028#define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
15029 CVT_FLAVOUR_VAR
15030 NULL
15031#undef CVT_VAR
477330fc 15032 };
037e8744 15033
6b9a8b67 15034 if (flavour < (int) ARRAY_SIZE (enc))
477330fc 15035 opname = enc[flavour];
037e8744
JB
15036 }
15037
15038 if (opname)
15039 do_vfp_nsyn_opcode (opname);
15040}
15041
15042static void
15043do_vfp_nsyn_cvtz (void)
15044{
15045 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
6b9a8b67 15046 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744
JB
15047 const char *enc[] =
15048 {
6b9a8b67
MGD
15049#define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
15050 CVT_FLAVOUR_VAR
15051 NULL
15052#undef CVT_VAR
037e8744
JB
15053 };
15054
6b9a8b67 15055 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
037e8744
JB
15056 do_vfp_nsyn_opcode (enc[flavour]);
15057}
f31fef98 15058
037e8744 15059static void
bacebabc 15060do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
7e8e6784
MGD
15061 enum neon_cvt_mode mode)
15062{
15063 int sz, op;
15064 int rm;
15065
a715796b
TG
15066 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
15067 D register operands. */
15068 if (flavour == neon_cvt_flavour_s32_f64
15069 || flavour == neon_cvt_flavour_u32_f64)
15070 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15071 _(BAD_FPU));
15072
7e8e6784
MGD
15073 set_it_insn_type (OUTSIDE_IT_INSN);
15074
15075 switch (flavour)
15076 {
15077 case neon_cvt_flavour_s32_f64:
15078 sz = 1;
827f64ff 15079 op = 1;
7e8e6784
MGD
15080 break;
15081 case neon_cvt_flavour_s32_f32:
15082 sz = 0;
15083 op = 1;
15084 break;
15085 case neon_cvt_flavour_u32_f64:
15086 sz = 1;
15087 op = 0;
15088 break;
15089 case neon_cvt_flavour_u32_f32:
15090 sz = 0;
15091 op = 0;
15092 break;
15093 default:
15094 first_error (_("invalid instruction shape"));
15095 return;
15096 }
15097
15098 switch (mode)
15099 {
15100 case neon_cvt_mode_a: rm = 0; break;
15101 case neon_cvt_mode_n: rm = 1; break;
15102 case neon_cvt_mode_p: rm = 2; break;
15103 case neon_cvt_mode_m: rm = 3; break;
15104 default: first_error (_("invalid rounding mode")); return;
15105 }
15106
15107 NEON_ENCODE (FPV8, inst);
15108 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
15109 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
15110 inst.instruction |= sz << 8;
15111 inst.instruction |= op << 7;
15112 inst.instruction |= rm << 16;
15113 inst.instruction |= 0xf0000000;
15114 inst.is_neon = TRUE;
15115}
15116
15117static void
15118do_neon_cvt_1 (enum neon_cvt_mode mode)
037e8744
JB
15119{
15120 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
8e79c3df 15121 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ, NS_NULL);
6b9a8b67 15122 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744 15123
e3e535bc 15124 /* PR11109: Handle round-to-zero for VCVT conversions. */
7e8e6784 15125 if (mode == neon_cvt_mode_z
e3e535bc 15126 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
bacebabc
RM
15127 && (flavour == neon_cvt_flavour_s32_f32
15128 || flavour == neon_cvt_flavour_u32_f32
15129 || flavour == neon_cvt_flavour_s32_f64
6b9a8b67 15130 || flavour == neon_cvt_flavour_u32_f64)
e3e535bc
NC
15131 && (rs == NS_FD || rs == NS_FF))
15132 {
15133 do_vfp_nsyn_cvtz ();
15134 return;
15135 }
15136
037e8744 15137 /* VFP rather than Neon conversions. */
6b9a8b67 15138 if (flavour >= neon_cvt_flavour_first_fp)
037e8744 15139 {
7e8e6784
MGD
15140 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
15141 do_vfp_nsyn_cvt (rs, flavour);
15142 else
15143 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
15144
037e8744
JB
15145 return;
15146 }
15147
15148 switch (rs)
15149 {
15150 case NS_DDI:
15151 case NS_QQI:
15152 {
477330fc
RM
15153 unsigned immbits;
15154 unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
35997600 15155
477330fc
RM
15156 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15157 return;
037e8744 15158
477330fc
RM
15159 /* Fixed-point conversion with #0 immediate is encoded as an
15160 integer conversion. */
15161 if (inst.operands[2].present && inst.operands[2].imm == 0)
15162 goto int_encode;
35997600 15163 immbits = 32 - inst.operands[2].imm;
477330fc
RM
15164 NEON_ENCODE (IMMED, inst);
15165 if (flavour != neon_cvt_flavour_invalid)
15166 inst.instruction |= enctab[flavour];
15167 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15168 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15169 inst.instruction |= LOW4 (inst.operands[1].reg);
15170 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15171 inst.instruction |= neon_quad (rs) << 6;
15172 inst.instruction |= 1 << 21;
15173 inst.instruction |= immbits << 16;
15174
15175 neon_dp_fixup (&inst);
037e8744
JB
15176 }
15177 break;
15178
15179 case NS_DD:
15180 case NS_QQ:
7e8e6784
MGD
15181 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
15182 {
15183 NEON_ENCODE (FLOAT, inst);
15184 set_it_insn_type (OUTSIDE_IT_INSN);
15185
15186 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
15187 return;
15188
15189 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15190 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15191 inst.instruction |= LOW4 (inst.operands[1].reg);
15192 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15193 inst.instruction |= neon_quad (rs) << 6;
15194 inst.instruction |= (flavour == neon_cvt_flavour_u32_f32) << 7;
15195 inst.instruction |= mode << 8;
15196 if (thumb_mode)
15197 inst.instruction |= 0xfc000000;
15198 else
15199 inst.instruction |= 0xf0000000;
15200 }
15201 else
15202 {
037e8744 15203 int_encode:
7e8e6784
MGD
15204 {
15205 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
037e8744 15206
7e8e6784 15207 NEON_ENCODE (INTEGER, inst);
037e8744 15208
7e8e6784
MGD
15209 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15210 return;
037e8744 15211
7e8e6784
MGD
15212 if (flavour != neon_cvt_flavour_invalid)
15213 inst.instruction |= enctab[flavour];
037e8744 15214
7e8e6784
MGD
15215 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15216 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15217 inst.instruction |= LOW4 (inst.operands[1].reg);
15218 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15219 inst.instruction |= neon_quad (rs) << 6;
15220 inst.instruction |= 2 << 18;
037e8744 15221
7e8e6784
MGD
15222 neon_dp_fixup (&inst);
15223 }
15224 }
15225 break;
037e8744 15226
8e79c3df
CM
15227 /* Half-precision conversions for Advanced SIMD -- neon. */
15228 case NS_QD:
15229 case NS_DQ:
15230
15231 if ((rs == NS_DQ)
15232 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
15233 {
15234 as_bad (_("operand size must match register width"));
15235 break;
15236 }
15237
15238 if ((rs == NS_QD)
15239 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
15240 {
15241 as_bad (_("operand size must match register width"));
15242 break;
15243 }
15244
15245 if (rs == NS_DQ)
477330fc 15246 inst.instruction = 0x3b60600;
8e79c3df
CM
15247 else
15248 inst.instruction = 0x3b60700;
15249
15250 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15251 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15252 inst.instruction |= LOW4 (inst.operands[1].reg);
15253 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
88714cb8 15254 neon_dp_fixup (&inst);
8e79c3df
CM
15255 break;
15256
037e8744
JB
15257 default:
15258 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
7e8e6784
MGD
15259 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
15260 do_vfp_nsyn_cvt (rs, flavour);
15261 else
15262 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
5287ad62 15263 }
5287ad62
JB
15264}
15265
e3e535bc
NC
15266static void
15267do_neon_cvtr (void)
15268{
7e8e6784 15269 do_neon_cvt_1 (neon_cvt_mode_x);
e3e535bc
NC
15270}
15271
15272static void
15273do_neon_cvt (void)
15274{
7e8e6784
MGD
15275 do_neon_cvt_1 (neon_cvt_mode_z);
15276}
15277
15278static void
15279do_neon_cvta (void)
15280{
15281 do_neon_cvt_1 (neon_cvt_mode_a);
15282}
15283
15284static void
15285do_neon_cvtn (void)
15286{
15287 do_neon_cvt_1 (neon_cvt_mode_n);
15288}
15289
15290static void
15291do_neon_cvtp (void)
15292{
15293 do_neon_cvt_1 (neon_cvt_mode_p);
15294}
15295
15296static void
15297do_neon_cvtm (void)
15298{
15299 do_neon_cvt_1 (neon_cvt_mode_m);
e3e535bc
NC
15300}
15301
8e79c3df 15302static void
c70a8987 15303do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
8e79c3df 15304{
c70a8987
MGD
15305 if (is_double)
15306 mark_feature_used (&fpu_vfp_ext_armv8);
8e79c3df 15307
c70a8987
MGD
15308 encode_arm_vfp_reg (inst.operands[0].reg,
15309 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
15310 encode_arm_vfp_reg (inst.operands[1].reg,
15311 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
15312 inst.instruction |= to ? 0x10000 : 0;
15313 inst.instruction |= t ? 0x80 : 0;
15314 inst.instruction |= is_double ? 0x100 : 0;
15315 do_vfp_cond_or_thumb ();
15316}
8e79c3df 15317
c70a8987
MGD
15318static void
15319do_neon_cvttb_1 (bfd_boolean t)
15320{
15321 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_DF, NS_NULL);
8e79c3df 15322
c70a8987
MGD
15323 if (rs == NS_NULL)
15324 return;
15325 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
15326 {
15327 inst.error = NULL;
15328 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
15329 }
15330 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
15331 {
15332 inst.error = NULL;
15333 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
15334 }
15335 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
15336 {
a715796b
TG
15337 /* The VCVTB and VCVTT instructions with D-register operands
15338 don't work for SP only targets. */
15339 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15340 _(BAD_FPU));
15341
c70a8987
MGD
15342 inst.error = NULL;
15343 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
15344 }
15345 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
15346 {
a715796b
TG
15347 /* The VCVTB and VCVTT instructions with D-register operands
15348 don't work for SP only targets. */
15349 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15350 _(BAD_FPU));
15351
c70a8987
MGD
15352 inst.error = NULL;
15353 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
15354 }
15355 else
15356 return;
15357}
15358
15359static void
15360do_neon_cvtb (void)
15361{
15362 do_neon_cvttb_1 (FALSE);
8e79c3df
CM
15363}
15364
15365
15366static void
15367do_neon_cvtt (void)
15368{
c70a8987 15369 do_neon_cvttb_1 (TRUE);
8e79c3df
CM
15370}
15371
5287ad62
JB
15372static void
15373neon_move_immediate (void)
15374{
037e8744
JB
15375 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
15376 struct neon_type_el et = neon_check_type (2, rs,
15377 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62 15378 unsigned immlo, immhi = 0, immbits;
c96612cc 15379 int op, cmode, float_p;
5287ad62 15380
037e8744 15381 constraint (et.type == NT_invtype,
477330fc 15382 _("operand size must be specified for immediate VMOV"));
037e8744 15383
5287ad62
JB
15384 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
15385 op = (inst.instruction & (1 << 5)) != 0;
15386
15387 immlo = inst.operands[1].imm;
15388 if (inst.operands[1].regisimm)
15389 immhi = inst.operands[1].reg;
15390
15391 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
477330fc 15392 _("immediate has bits set outside the operand size"));
5287ad62 15393
c96612cc
JB
15394 float_p = inst.operands[1].immisfloat;
15395
15396 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
477330fc 15397 et.size, et.type)) == FAIL)
5287ad62
JB
15398 {
15399 /* Invert relevant bits only. */
15400 neon_invert_size (&immlo, &immhi, et.size);
15401 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
477330fc
RM
15402 with one or the other; those cases are caught by
15403 neon_cmode_for_move_imm. */
5287ad62 15404 op = !op;
c96612cc
JB
15405 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
15406 &op, et.size, et.type)) == FAIL)
477330fc
RM
15407 {
15408 first_error (_("immediate out of range"));
15409 return;
15410 }
5287ad62
JB
15411 }
15412
15413 inst.instruction &= ~(1 << 5);
15414 inst.instruction |= op << 5;
15415
15416 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15417 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 15418 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15419 inst.instruction |= cmode << 8;
15420
15421 neon_write_immbits (immbits);
15422}
15423
15424static void
15425do_neon_mvn (void)
15426{
15427 if (inst.operands[1].isreg)
15428 {
037e8744 15429 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5f4273c7 15430
88714cb8 15431 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15432 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15433 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15434 inst.instruction |= LOW4 (inst.operands[1].reg);
15435 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 15436 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15437 }
15438 else
15439 {
88714cb8 15440 NEON_ENCODE (IMMED, inst);
5287ad62
JB
15441 neon_move_immediate ();
15442 }
15443
88714cb8 15444 neon_dp_fixup (&inst);
5287ad62
JB
15445}
15446
15447/* Encode instructions of form:
15448
15449 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
5f4273c7 15450 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
5287ad62
JB
15451
15452static void
15453neon_mixed_length (struct neon_type_el et, unsigned size)
15454{
15455 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15456 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15457 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15458 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15459 inst.instruction |= LOW4 (inst.operands[2].reg);
15460 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15461 inst.instruction |= (et.type == NT_unsigned) << 24;
15462 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 15463
88714cb8 15464 neon_dp_fixup (&inst);
5287ad62
JB
15465}
15466
15467static void
15468do_neon_dyadic_long (void)
15469{
15470 /* FIXME: Type checking for lengthening op. */
15471 struct neon_type_el et = neon_check_type (3, NS_QDD,
15472 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
15473 neon_mixed_length (et, et.size);
15474}
15475
15476static void
15477do_neon_abal (void)
15478{
15479 struct neon_type_el et = neon_check_type (3, NS_QDD,
15480 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
15481 neon_mixed_length (et, et.size);
15482}
15483
15484static void
15485neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
15486{
15487 if (inst.operands[2].isscalar)
15488 {
dcbf9037 15489 struct neon_type_el et = neon_check_type (3, NS_QDS,
477330fc 15490 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
88714cb8 15491 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15492 neon_mul_mac (et, et.type == NT_unsigned);
15493 }
15494 else
15495 {
15496 struct neon_type_el et = neon_check_type (3, NS_QDD,
477330fc 15497 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
88714cb8 15498 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15499 neon_mixed_length (et, et.size);
15500 }
15501}
15502
15503static void
15504do_neon_mac_maybe_scalar_long (void)
15505{
15506 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
15507}
15508
15509static void
15510do_neon_dyadic_wide (void)
15511{
15512 struct neon_type_el et = neon_check_type (3, NS_QQD,
15513 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
15514 neon_mixed_length (et, et.size);
15515}
15516
15517static void
15518do_neon_dyadic_narrow (void)
15519{
15520 struct neon_type_el et = neon_check_type (3, NS_QDD,
15521 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
15522 /* Operand sign is unimportant, and the U bit is part of the opcode,
15523 so force the operand type to integer. */
15524 et.type = NT_integer;
5287ad62
JB
15525 neon_mixed_length (et, et.size / 2);
15526}
15527
15528static void
15529do_neon_mul_sat_scalar_long (void)
15530{
15531 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
15532}
15533
15534static void
15535do_neon_vmull (void)
15536{
15537 if (inst.operands[2].isscalar)
15538 do_neon_mac_maybe_scalar_long ();
15539 else
15540 {
15541 struct neon_type_el et = neon_check_type (3, NS_QDD,
477330fc 15542 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
4f51b4bd 15543
5287ad62 15544 if (et.type == NT_poly)
477330fc 15545 NEON_ENCODE (POLY, inst);
5287ad62 15546 else
477330fc 15547 NEON_ENCODE (INTEGER, inst);
4f51b4bd
MGD
15548
15549 /* For polynomial encoding the U bit must be zero, and the size must
15550 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
15551 obviously, as 0b10). */
15552 if (et.size == 64)
15553 {
15554 /* Check we're on the correct architecture. */
15555 if (!mark_feature_used (&fpu_crypto_ext_armv8))
15556 inst.error =
15557 _("Instruction form not available on this architecture.");
15558
15559 et.size = 32;
15560 }
15561
5287ad62
JB
15562 neon_mixed_length (et, et.size);
15563 }
15564}
15565
15566static void
15567do_neon_ext (void)
15568{
037e8744 15569 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
15570 struct neon_type_el et = neon_check_type (3, rs,
15571 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15572 unsigned imm = (inst.operands[3].imm * et.size) / 8;
35997600
NC
15573
15574 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
15575 _("shift out of range"));
5287ad62
JB
15576 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15577 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15578 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15579 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15580 inst.instruction |= LOW4 (inst.operands[2].reg);
15581 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 15582 inst.instruction |= neon_quad (rs) << 6;
5287ad62 15583 inst.instruction |= imm << 8;
5f4273c7 15584
88714cb8 15585 neon_dp_fixup (&inst);
5287ad62
JB
15586}
15587
15588static void
15589do_neon_rev (void)
15590{
037e8744 15591 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15592 struct neon_type_el et = neon_check_type (2, rs,
15593 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15594 unsigned op = (inst.instruction >> 7) & 3;
15595 /* N (width of reversed regions) is encoded as part of the bitmask. We
15596 extract it here to check the elements to be reversed are smaller.
15597 Otherwise we'd get a reserved instruction. */
15598 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
9c2799c2 15599 gas_assert (elsize != 0);
5287ad62 15600 constraint (et.size >= elsize,
477330fc 15601 _("elements must be smaller than reversal region"));
037e8744 15602 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15603}
15604
15605static void
15606do_neon_dup (void)
15607{
15608 if (inst.operands[1].isscalar)
15609 {
037e8744 15610 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037 15611 struct neon_type_el et = neon_check_type (2, rs,
477330fc 15612 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 15613 unsigned sizebits = et.size >> 3;
dcbf9037 15614 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 15615 int logsize = neon_logbits (et.size);
dcbf9037 15616 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
15617
15618 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
477330fc 15619 return;
037e8744 15620
88714cb8 15621 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15622 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15623 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15624 inst.instruction |= LOW4 (dm);
15625 inst.instruction |= HI1 (dm) << 5;
037e8744 15626 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15627 inst.instruction |= x << 17;
15628 inst.instruction |= sizebits << 16;
5f4273c7 15629
88714cb8 15630 neon_dp_fixup (&inst);
5287ad62
JB
15631 }
15632 else
15633 {
037e8744
JB
15634 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
15635 struct neon_type_el et = neon_check_type (2, rs,
477330fc 15636 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62 15637 /* Duplicate ARM register to lanes of vector. */
88714cb8 15638 NEON_ENCODE (ARMREG, inst);
5287ad62 15639 switch (et.size)
477330fc
RM
15640 {
15641 case 8: inst.instruction |= 0x400000; break;
15642 case 16: inst.instruction |= 0x000020; break;
15643 case 32: inst.instruction |= 0x000000; break;
15644 default: break;
15645 }
5287ad62
JB
15646 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15647 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
15648 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 15649 inst.instruction |= neon_quad (rs) << 21;
5287ad62 15650 /* The encoding for this instruction is identical for the ARM and Thumb
477330fc 15651 variants, except for the condition field. */
037e8744 15652 do_vfp_cond_or_thumb ();
5287ad62
JB
15653 }
15654}
15655
15656/* VMOV has particularly many variations. It can be one of:
15657 0. VMOV<c><q> <Qd>, <Qm>
15658 1. VMOV<c><q> <Dd>, <Dm>
15659 (Register operations, which are VORR with Rm = Rn.)
15660 2. VMOV<c><q>.<dt> <Qd>, #<imm>
15661 3. VMOV<c><q>.<dt> <Dd>, #<imm>
15662 (Immediate loads.)
15663 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
15664 (ARM register to scalar.)
15665 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
15666 (Two ARM registers to vector.)
15667 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
15668 (Scalar to ARM register.)
15669 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
15670 (Vector to two ARM registers.)
037e8744
JB
15671 8. VMOV.F32 <Sd>, <Sm>
15672 9. VMOV.F64 <Dd>, <Dm>
15673 (VFP register moves.)
15674 10. VMOV.F32 <Sd>, #imm
15675 11. VMOV.F64 <Dd>, #imm
15676 (VFP float immediate load.)
15677 12. VMOV <Rd>, <Sm>
15678 (VFP single to ARM reg.)
15679 13. VMOV <Sd>, <Rm>
15680 (ARM reg to VFP single.)
15681 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
15682 (Two ARM regs to two VFP singles.)
15683 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
15684 (Two VFP singles to two ARM regs.)
5f4273c7 15685
037e8744
JB
15686 These cases can be disambiguated using neon_select_shape, except cases 1/9
15687 and 3/11 which depend on the operand type too.
5f4273c7 15688
5287ad62 15689 All the encoded bits are hardcoded by this function.
5f4273c7 15690
b7fc2769
JB
15691 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
15692 Cases 5, 7 may be used with VFPv2 and above.
5f4273c7 15693
5287ad62 15694 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
5f4273c7 15695 can specify a type where it doesn't make sense to, and is ignored). */
5287ad62
JB
15696
15697static void
15698do_neon_mov (void)
15699{
037e8744
JB
15700 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
15701 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
15702 NS_NULL);
15703 struct neon_type_el et;
15704 const char *ldconst = 0;
5287ad62 15705
037e8744 15706 switch (rs)
5287ad62 15707 {
037e8744
JB
15708 case NS_DD: /* case 1/9. */
15709 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15710 /* It is not an error here if no type is given. */
15711 inst.error = NULL;
15712 if (et.type == NT_float && et.size == 64)
477330fc
RM
15713 {
15714 do_vfp_nsyn_opcode ("fcpyd");
15715 break;
15716 }
037e8744 15717 /* fall through. */
5287ad62 15718
037e8744
JB
15719 case NS_QQ: /* case 0/1. */
15720 {
477330fc
RM
15721 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15722 return;
15723 /* The architecture manual I have doesn't explicitly state which
15724 value the U bit should have for register->register moves, but
15725 the equivalent VORR instruction has U = 0, so do that. */
15726 inst.instruction = 0x0200110;
15727 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15728 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15729 inst.instruction |= LOW4 (inst.operands[1].reg);
15730 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15731 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15732 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15733 inst.instruction |= neon_quad (rs) << 6;
15734
15735 neon_dp_fixup (&inst);
037e8744
JB
15736 }
15737 break;
5f4273c7 15738
037e8744
JB
15739 case NS_DI: /* case 3/11. */
15740 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15741 inst.error = NULL;
15742 if (et.type == NT_float && et.size == 64)
477330fc
RM
15743 {
15744 /* case 11 (fconstd). */
15745 ldconst = "fconstd";
15746 goto encode_fconstd;
15747 }
037e8744
JB
15748 /* fall through. */
15749
15750 case NS_QI: /* case 2/3. */
15751 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
477330fc 15752 return;
037e8744
JB
15753 inst.instruction = 0x0800010;
15754 neon_move_immediate ();
88714cb8 15755 neon_dp_fixup (&inst);
5287ad62 15756 break;
5f4273c7 15757
037e8744
JB
15758 case NS_SR: /* case 4. */
15759 {
477330fc
RM
15760 unsigned bcdebits = 0;
15761 int logsize;
15762 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
15763 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
037e8744 15764
05ac0ffb
JB
15765 /* .<size> is optional here, defaulting to .32. */
15766 if (inst.vectype.elems == 0
15767 && inst.operands[0].vectype.type == NT_invtype
15768 && inst.operands[1].vectype.type == NT_invtype)
15769 {
15770 inst.vectype.el[0].type = NT_untyped;
15771 inst.vectype.el[0].size = 32;
15772 inst.vectype.elems = 1;
15773 }
15774
477330fc
RM
15775 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
15776 logsize = neon_logbits (et.size);
15777
15778 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15779 _(BAD_FPU));
15780 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15781 && et.size != 32, _(BAD_FPU));
15782 constraint (et.type == NT_invtype, _("bad type for scalar"));
15783 constraint (x >= 64 / et.size, _("scalar index out of range"));
15784
15785 switch (et.size)
15786 {
15787 case 8: bcdebits = 0x8; break;
15788 case 16: bcdebits = 0x1; break;
15789 case 32: bcdebits = 0x0; break;
15790 default: ;
15791 }
15792
15793 bcdebits |= x << logsize;
15794
15795 inst.instruction = 0xe000b10;
15796 do_vfp_cond_or_thumb ();
15797 inst.instruction |= LOW4 (dn) << 16;
15798 inst.instruction |= HI1 (dn) << 7;
15799 inst.instruction |= inst.operands[1].reg << 12;
15800 inst.instruction |= (bcdebits & 3) << 5;
15801 inst.instruction |= (bcdebits >> 2) << 21;
037e8744
JB
15802 }
15803 break;
5f4273c7 15804
037e8744 15805 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 15806 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
477330fc 15807 _(BAD_FPU));
b7fc2769 15808
037e8744
JB
15809 inst.instruction = 0xc400b10;
15810 do_vfp_cond_or_thumb ();
15811 inst.instruction |= LOW4 (inst.operands[0].reg);
15812 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
15813 inst.instruction |= inst.operands[1].reg << 12;
15814 inst.instruction |= inst.operands[2].reg << 16;
15815 break;
5f4273c7 15816
037e8744
JB
15817 case NS_RS: /* case 6. */
15818 {
477330fc
RM
15819 unsigned logsize;
15820 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
15821 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
15822 unsigned abcdebits = 0;
037e8744 15823
05ac0ffb
JB
15824 /* .<dt> is optional here, defaulting to .32. */
15825 if (inst.vectype.elems == 0
15826 && inst.operands[0].vectype.type == NT_invtype
15827 && inst.operands[1].vectype.type == NT_invtype)
15828 {
15829 inst.vectype.el[0].type = NT_untyped;
15830 inst.vectype.el[0].size = 32;
15831 inst.vectype.elems = 1;
15832 }
15833
91d6fa6a
NC
15834 et = neon_check_type (2, NS_NULL,
15835 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
477330fc
RM
15836 logsize = neon_logbits (et.size);
15837
15838 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15839 _(BAD_FPU));
15840 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15841 && et.size != 32, _(BAD_FPU));
15842 constraint (et.type == NT_invtype, _("bad type for scalar"));
15843 constraint (x >= 64 / et.size, _("scalar index out of range"));
15844
15845 switch (et.size)
15846 {
15847 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
15848 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
15849 case 32: abcdebits = 0x00; break;
15850 default: ;
15851 }
15852
15853 abcdebits |= x << logsize;
15854 inst.instruction = 0xe100b10;
15855 do_vfp_cond_or_thumb ();
15856 inst.instruction |= LOW4 (dn) << 16;
15857 inst.instruction |= HI1 (dn) << 7;
15858 inst.instruction |= inst.operands[0].reg << 12;
15859 inst.instruction |= (abcdebits & 3) << 5;
15860 inst.instruction |= (abcdebits >> 2) << 21;
037e8744
JB
15861 }
15862 break;
5f4273c7 15863
037e8744
JB
15864 case NS_RRD: /* case 7 (fmrrd). */
15865 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
477330fc 15866 _(BAD_FPU));
037e8744
JB
15867
15868 inst.instruction = 0xc500b10;
15869 do_vfp_cond_or_thumb ();
15870 inst.instruction |= inst.operands[0].reg << 12;
15871 inst.instruction |= inst.operands[1].reg << 16;
15872 inst.instruction |= LOW4 (inst.operands[2].reg);
15873 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15874 break;
5f4273c7 15875
037e8744
JB
15876 case NS_FF: /* case 8 (fcpys). */
15877 do_vfp_nsyn_opcode ("fcpys");
15878 break;
5f4273c7 15879
037e8744
JB
15880 case NS_FI: /* case 10 (fconsts). */
15881 ldconst = "fconsts";
15882 encode_fconstd:
15883 if (is_quarter_float (inst.operands[1].imm))
477330fc
RM
15884 {
15885 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
15886 do_vfp_nsyn_opcode (ldconst);
15887 }
5287ad62 15888 else
477330fc 15889 first_error (_("immediate out of range"));
037e8744 15890 break;
5f4273c7 15891
037e8744
JB
15892 case NS_RF: /* case 12 (fmrs). */
15893 do_vfp_nsyn_opcode ("fmrs");
15894 break;
5f4273c7 15895
037e8744
JB
15896 case NS_FR: /* case 13 (fmsr). */
15897 do_vfp_nsyn_opcode ("fmsr");
15898 break;
5f4273c7 15899
037e8744
JB
15900 /* The encoders for the fmrrs and fmsrr instructions expect three operands
15901 (one of which is a list), but we have parsed four. Do some fiddling to
15902 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
15903 expect. */
15904 case NS_RRFF: /* case 14 (fmrrs). */
15905 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
477330fc 15906 _("VFP registers must be adjacent"));
037e8744
JB
15907 inst.operands[2].imm = 2;
15908 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15909 do_vfp_nsyn_opcode ("fmrrs");
15910 break;
5f4273c7 15911
037e8744
JB
15912 case NS_FFRR: /* case 15 (fmsrr). */
15913 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
477330fc 15914 _("VFP registers must be adjacent"));
037e8744
JB
15915 inst.operands[1] = inst.operands[2];
15916 inst.operands[2] = inst.operands[3];
15917 inst.operands[0].imm = 2;
15918 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15919 do_vfp_nsyn_opcode ("fmsrr");
5287ad62 15920 break;
5f4273c7 15921
4c261dff
NC
15922 case NS_NULL:
15923 /* neon_select_shape has determined that the instruction
15924 shape is wrong and has already set the error message. */
15925 break;
15926
5287ad62
JB
15927 default:
15928 abort ();
15929 }
15930}
15931
15932static void
15933do_neon_rshift_round_imm (void)
15934{
037e8744 15935 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15936 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
15937 int imm = inst.operands[2].imm;
15938
15939 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
15940 if (imm == 0)
15941 {
15942 inst.operands[2].present = 0;
15943 do_neon_mov ();
15944 return;
15945 }
15946
15947 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15948 _("immediate out of range for shift"));
037e8744 15949 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
477330fc 15950 et.size - imm);
5287ad62
JB
15951}
15952
15953static void
15954do_neon_movl (void)
15955{
15956 struct neon_type_el et = neon_check_type (2, NS_QD,
15957 N_EQK | N_DBL, N_SU_32 | N_KEY);
15958 unsigned sizebits = et.size >> 3;
15959 inst.instruction |= sizebits << 19;
15960 neon_two_same (0, et.type == NT_unsigned, -1);
15961}
15962
15963static void
15964do_neon_trn (void)
15965{
037e8744 15966 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15967 struct neon_type_el et = neon_check_type (2, rs,
15968 N_EQK, N_8 | N_16 | N_32 | N_KEY);
88714cb8 15969 NEON_ENCODE (INTEGER, inst);
037e8744 15970 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15971}
15972
15973static void
15974do_neon_zip_uzp (void)
15975{
037e8744 15976 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15977 struct neon_type_el et = neon_check_type (2, rs,
15978 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15979 if (rs == NS_DD && et.size == 32)
15980 {
15981 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
15982 inst.instruction = N_MNEM_vtrn;
15983 do_neon_trn ();
15984 return;
15985 }
037e8744 15986 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15987}
15988
15989static void
15990do_neon_sat_abs_neg (void)
15991{
037e8744 15992 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15993 struct neon_type_el et = neon_check_type (2, rs,
15994 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15995 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15996}
15997
15998static void
15999do_neon_pair_long (void)
16000{
037e8744 16001 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16002 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
16003 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
16004 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 16005 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16006}
16007
16008static void
16009do_neon_recip_est (void)
16010{
037e8744 16011 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16012 struct neon_type_el et = neon_check_type (2, rs,
16013 N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
16014 inst.instruction |= (et.type == NT_float) << 8;
037e8744 16015 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16016}
16017
16018static void
16019do_neon_cls (void)
16020{
037e8744 16021 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16022 struct neon_type_el et = neon_check_type (2, rs,
16023 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 16024 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16025}
16026
16027static void
16028do_neon_clz (void)
16029{
037e8744 16030 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16031 struct neon_type_el et = neon_check_type (2, rs,
16032 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 16033 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16034}
16035
16036static void
16037do_neon_cnt (void)
16038{
037e8744 16039 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16040 struct neon_type_el et = neon_check_type (2, rs,
16041 N_EQK | N_INT, N_8 | N_KEY);
037e8744 16042 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16043}
16044
16045static void
16046do_neon_swp (void)
16047{
037e8744
JB
16048 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
16049 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
16050}
16051
16052static void
16053do_neon_tbl_tbx (void)
16054{
16055 unsigned listlenbits;
dcbf9037 16056 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5f4273c7 16057
5287ad62
JB
16058 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
16059 {
dcbf9037 16060 first_error (_("bad list length for table lookup"));
5287ad62
JB
16061 return;
16062 }
5f4273c7 16063
5287ad62
JB
16064 listlenbits = inst.operands[1].imm - 1;
16065 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16066 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16067 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16068 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16069 inst.instruction |= LOW4 (inst.operands[2].reg);
16070 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16071 inst.instruction |= listlenbits << 8;
5f4273c7 16072
88714cb8 16073 neon_dp_fixup (&inst);
5287ad62
JB
16074}
16075
16076static void
16077do_neon_ldm_stm (void)
16078{
16079 /* P, U and L bits are part of bitmask. */
16080 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
16081 unsigned offsetbits = inst.operands[1].imm * 2;
16082
037e8744
JB
16083 if (inst.operands[1].issingle)
16084 {
16085 do_vfp_nsyn_ldm_stm (is_dbmode);
16086 return;
16087 }
16088
5287ad62 16089 constraint (is_dbmode && !inst.operands[0].writeback,
477330fc 16090 _("writeback (!) must be used for VLDMDB and VSTMDB"));
5287ad62
JB
16091
16092 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
477330fc
RM
16093 _("register list must contain at least 1 and at most 16 "
16094 "registers"));
5287ad62
JB
16095
16096 inst.instruction |= inst.operands[0].reg << 16;
16097 inst.instruction |= inst.operands[0].writeback << 21;
16098 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
16099 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
16100
16101 inst.instruction |= offsetbits;
5f4273c7 16102
037e8744 16103 do_vfp_cond_or_thumb ();
5287ad62
JB
16104}
16105
16106static void
16107do_neon_ldr_str (void)
16108{
5287ad62 16109 int is_ldr = (inst.instruction & (1 << 20)) != 0;
5f4273c7 16110
6844b2c2
MGD
16111 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
16112 And is UNPREDICTABLE in thumb mode. */
fa94de6b 16113 if (!is_ldr
6844b2c2 16114 && inst.operands[1].reg == REG_PC
ba86b375 16115 && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode))
6844b2c2 16116 {
94dcf8bf 16117 if (thumb_mode)
6844b2c2 16118 inst.error = _("Use of PC here is UNPREDICTABLE");
94dcf8bf 16119 else if (warn_on_deprecated)
5c3696f8 16120 as_tsktsk (_("Use of PC here is deprecated"));
6844b2c2
MGD
16121 }
16122
037e8744
JB
16123 if (inst.operands[0].issingle)
16124 {
cd2f129f 16125 if (is_ldr)
477330fc 16126 do_vfp_nsyn_opcode ("flds");
cd2f129f 16127 else
477330fc 16128 do_vfp_nsyn_opcode ("fsts");
5287ad62
JB
16129 }
16130 else
5287ad62 16131 {
cd2f129f 16132 if (is_ldr)
477330fc 16133 do_vfp_nsyn_opcode ("fldd");
5287ad62 16134 else
477330fc 16135 do_vfp_nsyn_opcode ("fstd");
5287ad62 16136 }
5287ad62
JB
16137}
16138
16139/* "interleave" version also handles non-interleaving register VLD1/VST1
16140 instructions. */
16141
16142static void
16143do_neon_ld_st_interleave (void)
16144{
037e8744 16145 struct neon_type_el et = neon_check_type (1, NS_NULL,
477330fc 16146 N_8 | N_16 | N_32 | N_64);
5287ad62
JB
16147 unsigned alignbits = 0;
16148 unsigned idx;
16149 /* The bits in this table go:
16150 0: register stride of one (0) or two (1)
16151 1,2: register list length, minus one (1, 2, 3, 4).
16152 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
16153 We use -1 for invalid entries. */
16154 const int typetable[] =
16155 {
16156 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
16157 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
16158 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
16159 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
16160 };
16161 int typebits;
16162
dcbf9037
JB
16163 if (et.type == NT_invtype)
16164 return;
16165
5287ad62
JB
16166 if (inst.operands[1].immisalign)
16167 switch (inst.operands[1].imm >> 8)
16168 {
16169 case 64: alignbits = 1; break;
16170 case 128:
477330fc 16171 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
e23c0ad8 16172 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
477330fc
RM
16173 goto bad_alignment;
16174 alignbits = 2;
16175 break;
5287ad62 16176 case 256:
477330fc
RM
16177 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
16178 goto bad_alignment;
16179 alignbits = 3;
16180 break;
5287ad62
JB
16181 default:
16182 bad_alignment:
477330fc
RM
16183 first_error (_("bad alignment"));
16184 return;
5287ad62
JB
16185 }
16186
16187 inst.instruction |= alignbits << 4;
16188 inst.instruction |= neon_logbits (et.size) << 6;
16189
16190 /* Bits [4:6] of the immediate in a list specifier encode register stride
16191 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
16192 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
16193 up the right value for "type" in a table based on this value and the given
16194 list style, then stick it back. */
16195 idx = ((inst.operands[0].imm >> 4) & 7)
477330fc 16196 | (((inst.instruction >> 8) & 3) << 3);
5287ad62
JB
16197
16198 typebits = typetable[idx];
5f4273c7 16199
5287ad62 16200 constraint (typebits == -1, _("bad list type for instruction"));
1d50d57c
WN
16201 constraint (((inst.instruction >> 8) & 3) && et.size == 64,
16202 _("bad element type for instruction"));
5287ad62
JB
16203
16204 inst.instruction &= ~0xf00;
16205 inst.instruction |= typebits << 8;
16206}
16207
16208/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
16209 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
16210 otherwise. The variable arguments are a list of pairs of legal (size, align)
16211 values, terminated with -1. */
16212
16213static int
16214neon_alignment_bit (int size, int align, int *do_align, ...)
16215{
16216 va_list ap;
16217 int result = FAIL, thissize, thisalign;
5f4273c7 16218
5287ad62
JB
16219 if (!inst.operands[1].immisalign)
16220 {
16221 *do_align = 0;
16222 return SUCCESS;
16223 }
5f4273c7 16224
5287ad62
JB
16225 va_start (ap, do_align);
16226
16227 do
16228 {
16229 thissize = va_arg (ap, int);
16230 if (thissize == -1)
477330fc 16231 break;
5287ad62
JB
16232 thisalign = va_arg (ap, int);
16233
16234 if (size == thissize && align == thisalign)
477330fc 16235 result = SUCCESS;
5287ad62
JB
16236 }
16237 while (result != SUCCESS);
16238
16239 va_end (ap);
16240
16241 if (result == SUCCESS)
16242 *do_align = 1;
16243 else
dcbf9037 16244 first_error (_("unsupported alignment for instruction"));
5f4273c7 16245
5287ad62
JB
16246 return result;
16247}
16248
16249static void
16250do_neon_ld_st_lane (void)
16251{
037e8744 16252 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
16253 int align_good, do_align = 0;
16254 int logsize = neon_logbits (et.size);
16255 int align = inst.operands[1].imm >> 8;
16256 int n = (inst.instruction >> 8) & 3;
16257 int max_el = 64 / et.size;
5f4273c7 16258
dcbf9037
JB
16259 if (et.type == NT_invtype)
16260 return;
5f4273c7 16261
5287ad62 16262 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
477330fc 16263 _("bad list length"));
5287ad62 16264 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
477330fc 16265 _("scalar index out of range"));
5287ad62 16266 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
477330fc
RM
16267 && et.size == 8,
16268 _("stride of 2 unavailable when element size is 8"));
5f4273c7 16269
5287ad62
JB
16270 switch (n)
16271 {
16272 case 0: /* VLD1 / VST1. */
16273 align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
477330fc 16274 32, 32, -1);
5287ad62 16275 if (align_good == FAIL)
477330fc 16276 return;
5287ad62 16277 if (do_align)
477330fc
RM
16278 {
16279 unsigned alignbits = 0;
16280 switch (et.size)
16281 {
16282 case 16: alignbits = 0x1; break;
16283 case 32: alignbits = 0x3; break;
16284 default: ;
16285 }
16286 inst.instruction |= alignbits << 4;
16287 }
5287ad62
JB
16288 break;
16289
16290 case 1: /* VLD2 / VST2. */
16291 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
477330fc 16292 32, 64, -1);
5287ad62 16293 if (align_good == FAIL)
477330fc 16294 return;
5287ad62 16295 if (do_align)
477330fc 16296 inst.instruction |= 1 << 4;
5287ad62
JB
16297 break;
16298
16299 case 2: /* VLD3 / VST3. */
16300 constraint (inst.operands[1].immisalign,
477330fc 16301 _("can't use alignment with this instruction"));
5287ad62
JB
16302 break;
16303
16304 case 3: /* VLD4 / VST4. */
16305 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
477330fc 16306 16, 64, 32, 64, 32, 128, -1);
5287ad62 16307 if (align_good == FAIL)
477330fc 16308 return;
5287ad62 16309 if (do_align)
477330fc
RM
16310 {
16311 unsigned alignbits = 0;
16312 switch (et.size)
16313 {
16314 case 8: alignbits = 0x1; break;
16315 case 16: alignbits = 0x1; break;
16316 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
16317 default: ;
16318 }
16319 inst.instruction |= alignbits << 4;
16320 }
5287ad62
JB
16321 break;
16322
16323 default: ;
16324 }
16325
16326 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
16327 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
16328 inst.instruction |= 1 << (4 + logsize);
5f4273c7 16329
5287ad62
JB
16330 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
16331 inst.instruction |= logsize << 10;
16332}
16333
16334/* Encode single n-element structure to all lanes VLD<n> instructions. */
16335
16336static void
16337do_neon_ld_dup (void)
16338{
037e8744 16339 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
16340 int align_good, do_align = 0;
16341
dcbf9037
JB
16342 if (et.type == NT_invtype)
16343 return;
16344
5287ad62
JB
16345 switch ((inst.instruction >> 8) & 3)
16346 {
16347 case 0: /* VLD1. */
9c2799c2 16348 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
5287ad62 16349 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
477330fc 16350 &do_align, 16, 16, 32, 32, -1);
5287ad62 16351 if (align_good == FAIL)
477330fc 16352 return;
5287ad62 16353 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
477330fc
RM
16354 {
16355 case 1: break;
16356 case 2: inst.instruction |= 1 << 5; break;
16357 default: first_error (_("bad list length")); return;
16358 }
5287ad62
JB
16359 inst.instruction |= neon_logbits (et.size) << 6;
16360 break;
16361
16362 case 1: /* VLD2. */
16363 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
477330fc 16364 &do_align, 8, 16, 16, 32, 32, 64, -1);
5287ad62 16365 if (align_good == FAIL)
477330fc 16366 return;
5287ad62 16367 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
477330fc 16368 _("bad list length"));
5287ad62 16369 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
477330fc 16370 inst.instruction |= 1 << 5;
5287ad62
JB
16371 inst.instruction |= neon_logbits (et.size) << 6;
16372 break;
16373
16374 case 2: /* VLD3. */
16375 constraint (inst.operands[1].immisalign,
477330fc 16376 _("can't use alignment with this instruction"));
5287ad62 16377 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
477330fc 16378 _("bad list length"));
5287ad62 16379 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
477330fc 16380 inst.instruction |= 1 << 5;
5287ad62
JB
16381 inst.instruction |= neon_logbits (et.size) << 6;
16382 break;
16383
16384 case 3: /* VLD4. */
16385 {
477330fc
RM
16386 int align = inst.operands[1].imm >> 8;
16387 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
16388 16, 64, 32, 64, 32, 128, -1);
16389 if (align_good == FAIL)
16390 return;
16391 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
16392 _("bad list length"));
16393 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
16394 inst.instruction |= 1 << 5;
16395 if (et.size == 32 && align == 128)
16396 inst.instruction |= 0x3 << 6;
16397 else
16398 inst.instruction |= neon_logbits (et.size) << 6;
5287ad62
JB
16399 }
16400 break;
16401
16402 default: ;
16403 }
16404
16405 inst.instruction |= do_align << 4;
16406}
16407
16408/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
16409 apart from bits [11:4]. */
16410
16411static void
16412do_neon_ldx_stx (void)
16413{
b1a769ed
DG
16414 if (inst.operands[1].isreg)
16415 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
16416
5287ad62
JB
16417 switch (NEON_LANE (inst.operands[0].imm))
16418 {
16419 case NEON_INTERLEAVE_LANES:
88714cb8 16420 NEON_ENCODE (INTERLV, inst);
5287ad62
JB
16421 do_neon_ld_st_interleave ();
16422 break;
5f4273c7 16423
5287ad62 16424 case NEON_ALL_LANES:
88714cb8 16425 NEON_ENCODE (DUP, inst);
2d51fb74
JB
16426 if (inst.instruction == N_INV)
16427 {
16428 first_error ("only loads support such operands");
16429 break;
16430 }
5287ad62
JB
16431 do_neon_ld_dup ();
16432 break;
5f4273c7 16433
5287ad62 16434 default:
88714cb8 16435 NEON_ENCODE (LANE, inst);
5287ad62
JB
16436 do_neon_ld_st_lane ();
16437 }
16438
16439 /* L bit comes from bit mask. */
16440 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16441 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16442 inst.instruction |= inst.operands[1].reg << 16;
5f4273c7 16443
5287ad62
JB
16444 if (inst.operands[1].postind)
16445 {
16446 int postreg = inst.operands[1].imm & 0xf;
16447 constraint (!inst.operands[1].immisreg,
477330fc 16448 _("post-index must be a register"));
5287ad62 16449 constraint (postreg == 0xd || postreg == 0xf,
477330fc 16450 _("bad register for post-index"));
5287ad62
JB
16451 inst.instruction |= postreg;
16452 }
4f2374c7 16453 else
5287ad62 16454 {
4f2374c7
WN
16455 constraint (inst.operands[1].immisreg, BAD_ADDR_MODE);
16456 constraint (inst.reloc.exp.X_op != O_constant
16457 || inst.reloc.exp.X_add_number != 0,
16458 BAD_ADDR_MODE);
16459
16460 if (inst.operands[1].writeback)
16461 {
16462 inst.instruction |= 0xd;
16463 }
16464 else
16465 inst.instruction |= 0xf;
5287ad62 16466 }
5f4273c7 16467
5287ad62
JB
16468 if (thumb_mode)
16469 inst.instruction |= 0xf9000000;
16470 else
16471 inst.instruction |= 0xf4000000;
16472}
33399f07
MGD
16473
16474/* FP v8. */
16475static void
16476do_vfp_nsyn_fpv8 (enum neon_shape rs)
16477{
a715796b
TG
16478 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
16479 D register operands. */
16480 if (neon_shape_class[rs] == SC_DOUBLE)
16481 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
16482 _(BAD_FPU));
16483
33399f07
MGD
16484 NEON_ENCODE (FPV8, inst);
16485
16486 if (rs == NS_FFF)
16487 do_vfp_sp_dyadic ();
16488 else
16489 do_vfp_dp_rd_rn_rm ();
16490
16491 if (rs == NS_DDD)
16492 inst.instruction |= 0x100;
16493
16494 inst.instruction |= 0xf0000000;
16495}
16496
16497static void
16498do_vsel (void)
16499{
16500 set_it_insn_type (OUTSIDE_IT_INSN);
16501
16502 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
16503 first_error (_("invalid instruction shape"));
16504}
16505
73924fbc
MGD
16506static void
16507do_vmaxnm (void)
16508{
16509 set_it_insn_type (OUTSIDE_IT_INSN);
16510
16511 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
16512 return;
16513
16514 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16515 return;
16516
16517 neon_dyadic_misc (NT_untyped, N_F32, 0);
16518}
16519
30bdf752
MGD
16520static void
16521do_vrint_1 (enum neon_cvt_mode mode)
16522{
16523 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_QQ, NS_NULL);
16524 struct neon_type_el et;
16525
16526 if (rs == NS_NULL)
16527 return;
16528
a715796b
TG
16529 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
16530 D register operands. */
16531 if (neon_shape_class[rs] == SC_DOUBLE)
16532 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
16533 _(BAD_FPU));
16534
30bdf752
MGD
16535 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
16536 if (et.type != NT_invtype)
16537 {
16538 /* VFP encodings. */
16539 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
16540 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
16541 set_it_insn_type (OUTSIDE_IT_INSN);
16542
16543 NEON_ENCODE (FPV8, inst);
16544 if (rs == NS_FF)
16545 do_vfp_sp_monadic ();
16546 else
16547 do_vfp_dp_rd_rm ();
16548
16549 switch (mode)
16550 {
16551 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
16552 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
16553 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
16554 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
16555 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
16556 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
16557 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
16558 default: abort ();
16559 }
16560
16561 inst.instruction |= (rs == NS_DD) << 8;
16562 do_vfp_cond_or_thumb ();
16563 }
16564 else
16565 {
16566 /* Neon encodings (or something broken...). */
16567 inst.error = NULL;
16568 et = neon_check_type (2, rs, N_EQK, N_F32 | N_KEY);
16569
16570 if (et.type == NT_invtype)
16571 return;
16572
16573 set_it_insn_type (OUTSIDE_IT_INSN);
16574 NEON_ENCODE (FLOAT, inst);
16575
16576 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16577 return;
16578
16579 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16580 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16581 inst.instruction |= LOW4 (inst.operands[1].reg);
16582 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16583 inst.instruction |= neon_quad (rs) << 6;
16584 switch (mode)
16585 {
16586 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
16587 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
16588 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
16589 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
16590 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
16591 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
16592 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
16593 default: abort ();
16594 }
16595
16596 if (thumb_mode)
16597 inst.instruction |= 0xfc000000;
16598 else
16599 inst.instruction |= 0xf0000000;
16600 }
16601}
16602
16603static void
16604do_vrintx (void)
16605{
16606 do_vrint_1 (neon_cvt_mode_x);
16607}
16608
16609static void
16610do_vrintz (void)
16611{
16612 do_vrint_1 (neon_cvt_mode_z);
16613}
16614
16615static void
16616do_vrintr (void)
16617{
16618 do_vrint_1 (neon_cvt_mode_r);
16619}
16620
16621static void
16622do_vrinta (void)
16623{
16624 do_vrint_1 (neon_cvt_mode_a);
16625}
16626
16627static void
16628do_vrintn (void)
16629{
16630 do_vrint_1 (neon_cvt_mode_n);
16631}
16632
16633static void
16634do_vrintp (void)
16635{
16636 do_vrint_1 (neon_cvt_mode_p);
16637}
16638
16639static void
16640do_vrintm (void)
16641{
16642 do_vrint_1 (neon_cvt_mode_m);
16643}
16644
91ff7894
MGD
16645/* Crypto v1 instructions. */
16646static void
16647do_crypto_2op_1 (unsigned elttype, int op)
16648{
16649 set_it_insn_type (OUTSIDE_IT_INSN);
16650
16651 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
16652 == NT_invtype)
16653 return;
16654
16655 inst.error = NULL;
16656
16657 NEON_ENCODE (INTEGER, inst);
16658 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16659 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16660 inst.instruction |= LOW4 (inst.operands[1].reg);
16661 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16662 if (op != -1)
16663 inst.instruction |= op << 6;
16664
16665 if (thumb_mode)
16666 inst.instruction |= 0xfc000000;
16667 else
16668 inst.instruction |= 0xf0000000;
16669}
16670
48adcd8e
MGD
16671static void
16672do_crypto_3op_1 (int u, int op)
16673{
16674 set_it_insn_type (OUTSIDE_IT_INSN);
16675
16676 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
16677 N_32 | N_UNT | N_KEY).type == NT_invtype)
16678 return;
16679
16680 inst.error = NULL;
16681
16682 NEON_ENCODE (INTEGER, inst);
16683 neon_three_same (1, u, 8 << op);
16684}
16685
91ff7894
MGD
16686static void
16687do_aese (void)
16688{
16689 do_crypto_2op_1 (N_8, 0);
16690}
16691
16692static void
16693do_aesd (void)
16694{
16695 do_crypto_2op_1 (N_8, 1);
16696}
16697
16698static void
16699do_aesmc (void)
16700{
16701 do_crypto_2op_1 (N_8, 2);
16702}
16703
16704static void
16705do_aesimc (void)
16706{
16707 do_crypto_2op_1 (N_8, 3);
16708}
16709
48adcd8e
MGD
16710static void
16711do_sha1c (void)
16712{
16713 do_crypto_3op_1 (0, 0);
16714}
16715
16716static void
16717do_sha1p (void)
16718{
16719 do_crypto_3op_1 (0, 1);
16720}
16721
16722static void
16723do_sha1m (void)
16724{
16725 do_crypto_3op_1 (0, 2);
16726}
16727
16728static void
16729do_sha1su0 (void)
16730{
16731 do_crypto_3op_1 (0, 3);
16732}
91ff7894 16733
48adcd8e
MGD
16734static void
16735do_sha256h (void)
16736{
16737 do_crypto_3op_1 (1, 0);
16738}
16739
16740static void
16741do_sha256h2 (void)
16742{
16743 do_crypto_3op_1 (1, 1);
16744}
16745
16746static void
16747do_sha256su1 (void)
16748{
16749 do_crypto_3op_1 (1, 2);
16750}
3c9017d2
MGD
16751
16752static void
16753do_sha1h (void)
16754{
16755 do_crypto_2op_1 (N_32, -1);
16756}
16757
16758static void
16759do_sha1su1 (void)
16760{
16761 do_crypto_2op_1 (N_32, 0);
16762}
16763
16764static void
16765do_sha256su0 (void)
16766{
16767 do_crypto_2op_1 (N_32, 1);
16768}
dd5181d5
KT
16769
16770static void
16771do_crc32_1 (unsigned int poly, unsigned int sz)
16772{
16773 unsigned int Rd = inst.operands[0].reg;
16774 unsigned int Rn = inst.operands[1].reg;
16775 unsigned int Rm = inst.operands[2].reg;
16776
16777 set_it_insn_type (OUTSIDE_IT_INSN);
16778 inst.instruction |= LOW4 (Rd) << (thumb_mode ? 8 : 12);
16779 inst.instruction |= LOW4 (Rn) << 16;
16780 inst.instruction |= LOW4 (Rm);
16781 inst.instruction |= sz << (thumb_mode ? 4 : 21);
16782 inst.instruction |= poly << (thumb_mode ? 20 : 9);
16783
16784 if (Rd == REG_PC || Rn == REG_PC || Rm == REG_PC)
16785 as_warn (UNPRED_REG ("r15"));
16786 if (thumb_mode && (Rd == REG_SP || Rn == REG_SP || Rm == REG_SP))
16787 as_warn (UNPRED_REG ("r13"));
16788}
16789
16790static void
16791do_crc32b (void)
16792{
16793 do_crc32_1 (0, 0);
16794}
16795
16796static void
16797do_crc32h (void)
16798{
16799 do_crc32_1 (0, 1);
16800}
16801
16802static void
16803do_crc32w (void)
16804{
16805 do_crc32_1 (0, 2);
16806}
16807
16808static void
16809do_crc32cb (void)
16810{
16811 do_crc32_1 (1, 0);
16812}
16813
16814static void
16815do_crc32ch (void)
16816{
16817 do_crc32_1 (1, 1);
16818}
16819
16820static void
16821do_crc32cw (void)
16822{
16823 do_crc32_1 (1, 2);
16824}
16825
5287ad62
JB
16826\f
16827/* Overall per-instruction processing. */
16828
16829/* We need to be able to fix up arbitrary expressions in some statements.
16830 This is so that we can handle symbols that are an arbitrary distance from
16831 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
16832 which returns part of an address in a form which will be valid for
16833 a data instruction. We do this by pushing the expression into a symbol
16834 in the expr_section, and creating a fix for that. */
16835
16836static void
16837fix_new_arm (fragS * frag,
16838 int where,
16839 short int size,
16840 expressionS * exp,
16841 int pc_rel,
16842 int reloc)
16843{
16844 fixS * new_fix;
16845
16846 switch (exp->X_op)
16847 {
16848 case O_constant:
6e7ce2cd
PB
16849 if (pc_rel)
16850 {
16851 /* Create an absolute valued symbol, so we have something to
477330fc
RM
16852 refer to in the object file. Unfortunately for us, gas's
16853 generic expression parsing will already have folded out
16854 any use of .set foo/.type foo %function that may have
16855 been used to set type information of the target location,
16856 that's being specified symbolically. We have to presume
16857 the user knows what they are doing. */
6e7ce2cd
PB
16858 char name[16 + 8];
16859 symbolS *symbol;
16860
16861 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
16862
16863 symbol = symbol_find_or_make (name);
16864 S_SET_SEGMENT (symbol, absolute_section);
16865 symbol_set_frag (symbol, &zero_address_frag);
16866 S_SET_VALUE (symbol, exp->X_add_number);
16867 exp->X_op = O_symbol;
16868 exp->X_add_symbol = symbol;
16869 exp->X_add_number = 0;
16870 }
16871 /* FALLTHROUGH */
5287ad62
JB
16872 case O_symbol:
16873 case O_add:
16874 case O_subtract:
21d799b5 16875 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
477330fc 16876 (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16877 break;
16878
16879 default:
21d799b5 16880 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
477330fc 16881 pc_rel, (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16882 break;
16883 }
16884
16885 /* Mark whether the fix is to a THUMB instruction, or an ARM
16886 instruction. */
16887 new_fix->tc_fix_data = thumb_mode;
16888}
16889
16890/* Create a frg for an instruction requiring relaxation. */
16891static void
16892output_relax_insn (void)
16893{
16894 char * to;
16895 symbolS *sym;
0110f2b8
PB
16896 int offset;
16897
6e1cb1a6
PB
16898 /* The size of the instruction is unknown, so tie the debug info to the
16899 start of the instruction. */
16900 dwarf2_emit_insn (0);
6e1cb1a6 16901
0110f2b8
PB
16902 switch (inst.reloc.exp.X_op)
16903 {
16904 case O_symbol:
16905 sym = inst.reloc.exp.X_add_symbol;
16906 offset = inst.reloc.exp.X_add_number;
16907 break;
16908 case O_constant:
16909 sym = NULL;
16910 offset = inst.reloc.exp.X_add_number;
16911 break;
16912 default:
16913 sym = make_expr_symbol (&inst.reloc.exp);
16914 offset = 0;
16915 break;
16916 }
16917 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
16918 inst.relax, sym, offset, NULL/*offset, opcode*/);
16919 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
16920}
16921
16922/* Write a 32-bit thumb instruction to buf. */
16923static void
16924put_thumb32_insn (char * buf, unsigned long insn)
16925{
16926 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
16927 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
16928}
16929
b99bd4ef 16930static void
c19d1205 16931output_inst (const char * str)
b99bd4ef 16932{
c19d1205 16933 char * to = NULL;
b99bd4ef 16934
c19d1205 16935 if (inst.error)
b99bd4ef 16936 {
c19d1205 16937 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
16938 return;
16939 }
5f4273c7
NC
16940 if (inst.relax)
16941 {
16942 output_relax_insn ();
0110f2b8 16943 return;
5f4273c7 16944 }
c19d1205
ZW
16945 if (inst.size == 0)
16946 return;
b99bd4ef 16947
c19d1205 16948 to = frag_more (inst.size);
8dc2430f
NC
16949 /* PR 9814: Record the thumb mode into the current frag so that we know
16950 what type of NOP padding to use, if necessary. We override any previous
16951 setting so that if the mode has changed then the NOPS that we use will
16952 match the encoding of the last instruction in the frag. */
cd000bff 16953 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
c19d1205
ZW
16954
16955 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 16956 {
9c2799c2 16957 gas_assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 16958 put_thumb32_insn (to, inst.instruction);
b99bd4ef 16959 }
c19d1205 16960 else if (inst.size > INSN_SIZE)
b99bd4ef 16961 {
9c2799c2 16962 gas_assert (inst.size == (2 * INSN_SIZE));
c19d1205
ZW
16963 md_number_to_chars (to, inst.instruction, INSN_SIZE);
16964 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 16965 }
c19d1205
ZW
16966 else
16967 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 16968
c19d1205
ZW
16969 if (inst.reloc.type != BFD_RELOC_UNUSED)
16970 fix_new_arm (frag_now, to - frag_now->fr_literal,
16971 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
16972 inst.reloc.type);
b99bd4ef 16973
c19d1205 16974 dwarf2_emit_insn (inst.size);
c19d1205 16975}
b99bd4ef 16976
e07e6e58
NC
16977static char *
16978output_it_inst (int cond, int mask, char * to)
16979{
16980 unsigned long instruction = 0xbf00;
16981
16982 mask &= 0xf;
16983 instruction |= mask;
16984 instruction |= cond << 4;
16985
16986 if (to == NULL)
16987 {
16988 to = frag_more (2);
16989#ifdef OBJ_ELF
16990 dwarf2_emit_insn (2);
16991#endif
16992 }
16993
16994 md_number_to_chars (to, instruction, 2);
16995
16996 return to;
16997}
16998
c19d1205
ZW
16999/* Tag values used in struct asm_opcode's tag field. */
17000enum opcode_tag
17001{
17002 OT_unconditional, /* Instruction cannot be conditionalized.
17003 The ARM condition field is still 0xE. */
17004 OT_unconditionalF, /* Instruction cannot be conditionalized
17005 and carries 0xF in its ARM condition field. */
17006 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744 17007 OT_csuffixF, /* Some forms of the instruction take a conditional
477330fc
RM
17008 suffix, others place 0xF where the condition field
17009 would be. */
c19d1205
ZW
17010 OT_cinfix3, /* Instruction takes a conditional infix,
17011 beginning at character index 3. (In
17012 unified mode, it becomes a suffix.) */
088fa78e
KH
17013 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
17014 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
17015 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
17016 character index 3, even in unified mode. Used for
17017 legacy instructions where suffix and infix forms
17018 may be ambiguous. */
c19d1205 17019 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 17020 suffix or an infix at character index 3. */
c19d1205
ZW
17021 OT_odd_infix_unc, /* This is the unconditional variant of an
17022 instruction that takes a conditional infix
17023 at an unusual position. In unified mode,
17024 this variant will accept a suffix. */
17025 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
17026 are the conditional variants of instructions that
17027 take conditional infixes in unusual positions.
17028 The infix appears at character index
17029 (tag - OT_odd_infix_0). These are not accepted
17030 in unified mode. */
17031};
b99bd4ef 17032
c19d1205
ZW
17033/* Subroutine of md_assemble, responsible for looking up the primary
17034 opcode from the mnemonic the user wrote. STR points to the
17035 beginning of the mnemonic.
17036
17037 This is not simply a hash table lookup, because of conditional
17038 variants. Most instructions have conditional variants, which are
17039 expressed with a _conditional affix_ to the mnemonic. If we were
17040 to encode each conditional variant as a literal string in the opcode
17041 table, it would have approximately 20,000 entries.
17042
17043 Most mnemonics take this affix as a suffix, and in unified syntax,
17044 'most' is upgraded to 'all'. However, in the divided syntax, some
17045 instructions take the affix as an infix, notably the s-variants of
17046 the arithmetic instructions. Of those instructions, all but six
17047 have the infix appear after the third character of the mnemonic.
17048
17049 Accordingly, the algorithm for looking up primary opcodes given
17050 an identifier is:
17051
17052 1. Look up the identifier in the opcode table.
17053 If we find a match, go to step U.
17054
17055 2. Look up the last two characters of the identifier in the
17056 conditions table. If we find a match, look up the first N-2
17057 characters of the identifier in the opcode table. If we
17058 find a match, go to step CE.
17059
17060 3. Look up the fourth and fifth characters of the identifier in
17061 the conditions table. If we find a match, extract those
17062 characters from the identifier, and look up the remaining
17063 characters in the opcode table. If we find a match, go
17064 to step CM.
17065
17066 4. Fail.
17067
17068 U. Examine the tag field of the opcode structure, in case this is
17069 one of the six instructions with its conditional infix in an
17070 unusual place. If it is, the tag tells us where to find the
17071 infix; look it up in the conditions table and set inst.cond
17072 accordingly. Otherwise, this is an unconditional instruction.
17073 Again set inst.cond accordingly. Return the opcode structure.
17074
17075 CE. Examine the tag field to make sure this is an instruction that
17076 should receive a conditional suffix. If it is not, fail.
17077 Otherwise, set inst.cond from the suffix we already looked up,
17078 and return the opcode structure.
17079
17080 CM. Examine the tag field to make sure this is an instruction that
17081 should receive a conditional infix after the third character.
17082 If it is not, fail. Otherwise, undo the edits to the current
17083 line of input and proceed as for case CE. */
17084
17085static const struct asm_opcode *
17086opcode_lookup (char **str)
17087{
17088 char *end, *base;
17089 char *affix;
17090 const struct asm_opcode *opcode;
17091 const struct asm_cond *cond;
e3cb604e 17092 char save[2];
c19d1205
ZW
17093
17094 /* Scan up to the end of the mnemonic, which must end in white space,
721a8186 17095 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
c19d1205 17096 for (base = end = *str; *end != '\0'; end++)
721a8186 17097 if (*end == ' ' || *end == '.')
c19d1205 17098 break;
b99bd4ef 17099
c19d1205 17100 if (end == base)
c921be7d 17101 return NULL;
b99bd4ef 17102
5287ad62 17103 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 17104 if (end[0] == '.')
b99bd4ef 17105 {
5287ad62 17106 int offset = 2;
5f4273c7 17107
267d2029 17108 /* The .w and .n suffixes are only valid if the unified syntax is in
477330fc 17109 use. */
267d2029 17110 if (unified_syntax && end[1] == 'w')
c19d1205 17111 inst.size_req = 4;
267d2029 17112 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
17113 inst.size_req = 2;
17114 else
477330fc 17115 offset = 0;
5287ad62
JB
17116
17117 inst.vectype.elems = 0;
17118
17119 *str = end + offset;
b99bd4ef 17120
5f4273c7 17121 if (end[offset] == '.')
5287ad62 17122 {
267d2029 17123 /* See if we have a Neon type suffix (possible in either unified or
477330fc
RM
17124 non-unified ARM syntax mode). */
17125 if (parse_neon_type (&inst.vectype, str) == FAIL)
c921be7d 17126 return NULL;
477330fc 17127 }
5287ad62 17128 else if (end[offset] != '\0' && end[offset] != ' ')
477330fc 17129 return NULL;
b99bd4ef 17130 }
c19d1205
ZW
17131 else
17132 *str = end;
b99bd4ef 17133
c19d1205 17134 /* Look for unaffixed or special-case affixed mnemonic. */
21d799b5 17135 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17136 end - base);
c19d1205 17137 if (opcode)
b99bd4ef 17138 {
c19d1205
ZW
17139 /* step U */
17140 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 17141 {
c19d1205
ZW
17142 inst.cond = COND_ALWAYS;
17143 return opcode;
b99bd4ef 17144 }
b99bd4ef 17145
278df34e 17146 if (warn_on_deprecated && unified_syntax)
5c3696f8 17147 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
c19d1205 17148 affix = base + (opcode->tag - OT_odd_infix_0);
21d799b5 17149 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
9c2799c2 17150 gas_assert (cond);
b99bd4ef 17151
c19d1205
ZW
17152 inst.cond = cond->value;
17153 return opcode;
17154 }
b99bd4ef 17155
c19d1205
ZW
17156 /* Cannot have a conditional suffix on a mnemonic of less than two
17157 characters. */
17158 if (end - base < 3)
c921be7d 17159 return NULL;
b99bd4ef 17160
c19d1205
ZW
17161 /* Look for suffixed mnemonic. */
17162 affix = end - 2;
21d799b5
NC
17163 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
17164 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17165 affix - base);
c19d1205
ZW
17166 if (opcode && cond)
17167 {
17168 /* step CE */
17169 switch (opcode->tag)
17170 {
e3cb604e
PB
17171 case OT_cinfix3_legacy:
17172 /* Ignore conditional suffixes matched on infix only mnemonics. */
17173 break;
17174
c19d1205 17175 case OT_cinfix3:
088fa78e 17176 case OT_cinfix3_deprecated:
c19d1205
ZW
17177 case OT_odd_infix_unc:
17178 if (!unified_syntax)
e3cb604e 17179 return 0;
c19d1205
ZW
17180 /* else fall through */
17181
17182 case OT_csuffix:
477330fc 17183 case OT_csuffixF:
c19d1205
ZW
17184 case OT_csuf_or_in3:
17185 inst.cond = cond->value;
17186 return opcode;
17187
17188 case OT_unconditional:
17189 case OT_unconditionalF:
dfa9f0d5 17190 if (thumb_mode)
c921be7d 17191 inst.cond = cond->value;
dfa9f0d5
PB
17192 else
17193 {
c921be7d 17194 /* Delayed diagnostic. */
dfa9f0d5
PB
17195 inst.error = BAD_COND;
17196 inst.cond = COND_ALWAYS;
17197 }
c19d1205 17198 return opcode;
b99bd4ef 17199
c19d1205 17200 default:
c921be7d 17201 return NULL;
c19d1205
ZW
17202 }
17203 }
b99bd4ef 17204
c19d1205
ZW
17205 /* Cannot have a usual-position infix on a mnemonic of less than
17206 six characters (five would be a suffix). */
17207 if (end - base < 6)
c921be7d 17208 return NULL;
b99bd4ef 17209
c19d1205
ZW
17210 /* Look for infixed mnemonic in the usual position. */
17211 affix = base + 3;
21d799b5 17212 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e 17213 if (!cond)
c921be7d 17214 return NULL;
e3cb604e
PB
17215
17216 memcpy (save, affix, 2);
17217 memmove (affix, affix + 2, (end - affix) - 2);
21d799b5 17218 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17219 (end - base) - 2);
e3cb604e
PB
17220 memmove (affix + 2, affix, (end - affix) - 2);
17221 memcpy (affix, save, 2);
17222
088fa78e
KH
17223 if (opcode
17224 && (opcode->tag == OT_cinfix3
17225 || opcode->tag == OT_cinfix3_deprecated
17226 || opcode->tag == OT_csuf_or_in3
17227 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 17228 {
c921be7d 17229 /* Step CM. */
278df34e 17230 if (warn_on_deprecated && unified_syntax
088fa78e
KH
17231 && (opcode->tag == OT_cinfix3
17232 || opcode->tag == OT_cinfix3_deprecated))
5c3696f8 17233 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
c19d1205
ZW
17234
17235 inst.cond = cond->value;
17236 return opcode;
b99bd4ef
NC
17237 }
17238
c921be7d 17239 return NULL;
b99bd4ef
NC
17240}
17241
e07e6e58
NC
17242/* This function generates an initial IT instruction, leaving its block
17243 virtually open for the new instructions. Eventually,
17244 the mask will be updated by now_it_add_mask () each time
17245 a new instruction needs to be included in the IT block.
17246 Finally, the block is closed with close_automatic_it_block ().
17247 The block closure can be requested either from md_assemble (),
17248 a tencode (), or due to a label hook. */
17249
17250static void
17251new_automatic_it_block (int cond)
17252{
17253 now_it.state = AUTOMATIC_IT_BLOCK;
17254 now_it.mask = 0x18;
17255 now_it.cc = cond;
17256 now_it.block_length = 1;
cd000bff 17257 mapping_state (MAP_THUMB);
e07e6e58 17258 now_it.insn = output_it_inst (cond, now_it.mask, NULL);
5a01bb1d
MGD
17259 now_it.warn_deprecated = FALSE;
17260 now_it.insn_cond = TRUE;
e07e6e58
NC
17261}
17262
17263/* Close an automatic IT block.
17264 See comments in new_automatic_it_block (). */
17265
17266static void
17267close_automatic_it_block (void)
17268{
17269 now_it.mask = 0x10;
17270 now_it.block_length = 0;
17271}
17272
17273/* Update the mask of the current automatically-generated IT
17274 instruction. See comments in new_automatic_it_block (). */
17275
17276static void
17277now_it_add_mask (int cond)
17278{
17279#define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
17280#define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
477330fc 17281 | ((bitvalue) << (nbit)))
e07e6e58 17282 const int resulting_bit = (cond & 1);
c921be7d 17283
e07e6e58
NC
17284 now_it.mask &= 0xf;
17285 now_it.mask = SET_BIT_VALUE (now_it.mask,
477330fc
RM
17286 resulting_bit,
17287 (5 - now_it.block_length));
e07e6e58 17288 now_it.mask = SET_BIT_VALUE (now_it.mask,
477330fc
RM
17289 1,
17290 ((5 - now_it.block_length) - 1) );
e07e6e58
NC
17291 output_it_inst (now_it.cc, now_it.mask, now_it.insn);
17292
17293#undef CLEAR_BIT
17294#undef SET_BIT_VALUE
e07e6e58
NC
17295}
17296
17297/* The IT blocks handling machinery is accessed through the these functions:
17298 it_fsm_pre_encode () from md_assemble ()
17299 set_it_insn_type () optional, from the tencode functions
17300 set_it_insn_type_last () ditto
17301 in_it_block () ditto
17302 it_fsm_post_encode () from md_assemble ()
17303 force_automatic_it_block_close () from label habdling functions
17304
17305 Rationale:
17306 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
477330fc
RM
17307 initializing the IT insn type with a generic initial value depending
17308 on the inst.condition.
e07e6e58 17309 2) During the tencode function, two things may happen:
477330fc
RM
17310 a) The tencode function overrides the IT insn type by
17311 calling either set_it_insn_type (type) or set_it_insn_type_last ().
17312 b) The tencode function queries the IT block state by
17313 calling in_it_block () (i.e. to determine narrow/not narrow mode).
17314
17315 Both set_it_insn_type and in_it_block run the internal FSM state
17316 handling function (handle_it_state), because: a) setting the IT insn
17317 type may incur in an invalid state (exiting the function),
17318 and b) querying the state requires the FSM to be updated.
17319 Specifically we want to avoid creating an IT block for conditional
17320 branches, so it_fsm_pre_encode is actually a guess and we can't
17321 determine whether an IT block is required until the tencode () routine
17322 has decided what type of instruction this actually it.
17323 Because of this, if set_it_insn_type and in_it_block have to be used,
17324 set_it_insn_type has to be called first.
17325
17326 set_it_insn_type_last () is a wrapper of set_it_insn_type (type), that
17327 determines the insn IT type depending on the inst.cond code.
17328 When a tencode () routine encodes an instruction that can be
17329 either outside an IT block, or, in the case of being inside, has to be
17330 the last one, set_it_insn_type_last () will determine the proper
17331 IT instruction type based on the inst.cond code. Otherwise,
17332 set_it_insn_type can be called for overriding that logic or
17333 for covering other cases.
17334
17335 Calling handle_it_state () may not transition the IT block state to
17336 OUTSIDE_IT_BLOCK immediatelly, since the (current) state could be
17337 still queried. Instead, if the FSM determines that the state should
17338 be transitioned to OUTSIDE_IT_BLOCK, a flag is marked to be closed
17339 after the tencode () function: that's what it_fsm_post_encode () does.
17340
17341 Since in_it_block () calls the state handling function to get an
17342 updated state, an error may occur (due to invalid insns combination).
17343 In that case, inst.error is set.
17344 Therefore, inst.error has to be checked after the execution of
17345 the tencode () routine.
e07e6e58
NC
17346
17347 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
477330fc
RM
17348 any pending state change (if any) that didn't take place in
17349 handle_it_state () as explained above. */
e07e6e58
NC
17350
17351static void
17352it_fsm_pre_encode (void)
17353{
17354 if (inst.cond != COND_ALWAYS)
17355 inst.it_insn_type = INSIDE_IT_INSN;
17356 else
17357 inst.it_insn_type = OUTSIDE_IT_INSN;
17358
17359 now_it.state_handled = 0;
17360}
17361
17362/* IT state FSM handling function. */
17363
17364static int
17365handle_it_state (void)
17366{
17367 now_it.state_handled = 1;
5a01bb1d 17368 now_it.insn_cond = FALSE;
e07e6e58
NC
17369
17370 switch (now_it.state)
17371 {
17372 case OUTSIDE_IT_BLOCK:
17373 switch (inst.it_insn_type)
17374 {
17375 case OUTSIDE_IT_INSN:
17376 break;
17377
17378 case INSIDE_IT_INSN:
17379 case INSIDE_IT_LAST_INSN:
17380 if (thumb_mode == 0)
17381 {
c921be7d 17382 if (unified_syntax
e07e6e58
NC
17383 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
17384 as_tsktsk (_("Warning: conditional outside an IT block"\
17385 " for Thumb."));
17386 }
17387 else
17388 {
17389 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
17390 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2))
17391 {
17392 /* Automatically generate the IT instruction. */
17393 new_automatic_it_block (inst.cond);
17394 if (inst.it_insn_type == INSIDE_IT_LAST_INSN)
17395 close_automatic_it_block ();
17396 }
17397 else
17398 {
17399 inst.error = BAD_OUT_IT;
17400 return FAIL;
17401 }
17402 }
17403 break;
17404
17405 case IF_INSIDE_IT_LAST_INSN:
17406 case NEUTRAL_IT_INSN:
17407 break;
17408
17409 case IT_INSN:
17410 now_it.state = MANUAL_IT_BLOCK;
17411 now_it.block_length = 0;
17412 break;
17413 }
17414 break;
17415
17416 case AUTOMATIC_IT_BLOCK:
17417 /* Three things may happen now:
17418 a) We should increment current it block size;
17419 b) We should close current it block (closing insn or 4 insns);
17420 c) We should close current it block and start a new one (due
17421 to incompatible conditions or
17422 4 insns-length block reached). */
17423
17424 switch (inst.it_insn_type)
17425 {
17426 case OUTSIDE_IT_INSN:
17427 /* The closure of the block shall happen immediatelly,
17428 so any in_it_block () call reports the block as closed. */
17429 force_automatic_it_block_close ();
17430 break;
17431
17432 case INSIDE_IT_INSN:
17433 case INSIDE_IT_LAST_INSN:
17434 case IF_INSIDE_IT_LAST_INSN:
17435 now_it.block_length++;
17436
17437 if (now_it.block_length > 4
17438 || !now_it_compatible (inst.cond))
17439 {
17440 force_automatic_it_block_close ();
17441 if (inst.it_insn_type != IF_INSIDE_IT_LAST_INSN)
17442 new_automatic_it_block (inst.cond);
17443 }
17444 else
17445 {
5a01bb1d 17446 now_it.insn_cond = TRUE;
e07e6e58
NC
17447 now_it_add_mask (inst.cond);
17448 }
17449
17450 if (now_it.state == AUTOMATIC_IT_BLOCK
17451 && (inst.it_insn_type == INSIDE_IT_LAST_INSN
17452 || inst.it_insn_type == IF_INSIDE_IT_LAST_INSN))
17453 close_automatic_it_block ();
17454 break;
17455
17456 case NEUTRAL_IT_INSN:
17457 now_it.block_length++;
5a01bb1d 17458 now_it.insn_cond = TRUE;
e07e6e58
NC
17459
17460 if (now_it.block_length > 4)
17461 force_automatic_it_block_close ();
17462 else
17463 now_it_add_mask (now_it.cc & 1);
17464 break;
17465
17466 case IT_INSN:
17467 close_automatic_it_block ();
17468 now_it.state = MANUAL_IT_BLOCK;
17469 break;
17470 }
17471 break;
17472
17473 case MANUAL_IT_BLOCK:
17474 {
17475 /* Check conditional suffixes. */
17476 const int cond = now_it.cc ^ ((now_it.mask >> 4) & 1) ^ 1;
17477 int is_last;
17478 now_it.mask <<= 1;
17479 now_it.mask &= 0x1f;
17480 is_last = (now_it.mask == 0x10);
5a01bb1d 17481 now_it.insn_cond = TRUE;
e07e6e58
NC
17482
17483 switch (inst.it_insn_type)
17484 {
17485 case OUTSIDE_IT_INSN:
17486 inst.error = BAD_NOT_IT;
17487 return FAIL;
17488
17489 case INSIDE_IT_INSN:
17490 if (cond != inst.cond)
17491 {
17492 inst.error = BAD_IT_COND;
17493 return FAIL;
17494 }
17495 break;
17496
17497 case INSIDE_IT_LAST_INSN:
17498 case IF_INSIDE_IT_LAST_INSN:
17499 if (cond != inst.cond)
17500 {
17501 inst.error = BAD_IT_COND;
17502 return FAIL;
17503 }
17504 if (!is_last)
17505 {
17506 inst.error = BAD_BRANCH;
17507 return FAIL;
17508 }
17509 break;
17510
17511 case NEUTRAL_IT_INSN:
17512 /* The BKPT instruction is unconditional even in an IT block. */
17513 break;
17514
17515 case IT_INSN:
17516 inst.error = BAD_IT_IT;
17517 return FAIL;
17518 }
17519 }
17520 break;
17521 }
17522
17523 return SUCCESS;
17524}
17525
5a01bb1d
MGD
17526struct depr_insn_mask
17527{
17528 unsigned long pattern;
17529 unsigned long mask;
17530 const char* description;
17531};
17532
17533/* List of 16-bit instruction patterns deprecated in an IT block in
17534 ARMv8. */
17535static const struct depr_insn_mask depr_it_insns[] = {
17536 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
17537 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
17538 { 0xa000, 0xb800, N_("ADR") },
17539 { 0x4800, 0xf800, N_("Literal loads") },
17540 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
17541 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
c8de034b
JW
17542 /* NOTE: 0x00dd is not the real encoding, instead, it is the 'tvalue'
17543 field in asm_opcode. 'tvalue' is used at the stage this check happen. */
17544 { 0x00dd, 0x7fff, N_("ADD/SUB sp, sp #imm") },
5a01bb1d
MGD
17545 { 0, 0, NULL }
17546};
17547
e07e6e58
NC
17548static void
17549it_fsm_post_encode (void)
17550{
17551 int is_last;
17552
17553 if (!now_it.state_handled)
17554 handle_it_state ();
17555
5a01bb1d
MGD
17556 if (now_it.insn_cond
17557 && !now_it.warn_deprecated
17558 && warn_on_deprecated
17559 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
17560 {
17561 if (inst.instruction >= 0x10000)
17562 {
5c3696f8 17563 as_tsktsk (_("IT blocks containing 32-bit Thumb instructions are "
5a01bb1d
MGD
17564 "deprecated in ARMv8"));
17565 now_it.warn_deprecated = TRUE;
17566 }
17567 else
17568 {
17569 const struct depr_insn_mask *p = depr_it_insns;
17570
17571 while (p->mask != 0)
17572 {
17573 if ((inst.instruction & p->mask) == p->pattern)
17574 {
5c3696f8 17575 as_tsktsk (_("IT blocks containing 16-bit Thumb instructions "
5a01bb1d
MGD
17576 "of the following class are deprecated in ARMv8: "
17577 "%s"), p->description);
17578 now_it.warn_deprecated = TRUE;
17579 break;
17580 }
17581
17582 ++p;
17583 }
17584 }
17585
17586 if (now_it.block_length > 1)
17587 {
5c3696f8 17588 as_tsktsk (_("IT blocks containing more than one conditional "
0a8897c7 17589 "instruction are deprecated in ARMv8"));
5a01bb1d
MGD
17590 now_it.warn_deprecated = TRUE;
17591 }
17592 }
17593
e07e6e58
NC
17594 is_last = (now_it.mask == 0x10);
17595 if (is_last)
17596 {
17597 now_it.state = OUTSIDE_IT_BLOCK;
17598 now_it.mask = 0;
17599 }
17600}
17601
17602static void
17603force_automatic_it_block_close (void)
17604{
17605 if (now_it.state == AUTOMATIC_IT_BLOCK)
17606 {
17607 close_automatic_it_block ();
17608 now_it.state = OUTSIDE_IT_BLOCK;
17609 now_it.mask = 0;
17610 }
17611}
17612
17613static int
17614in_it_block (void)
17615{
17616 if (!now_it.state_handled)
17617 handle_it_state ();
17618
17619 return now_it.state != OUTSIDE_IT_BLOCK;
17620}
17621
c19d1205
ZW
17622void
17623md_assemble (char *str)
b99bd4ef 17624{
c19d1205
ZW
17625 char *p = str;
17626 const struct asm_opcode * opcode;
b99bd4ef 17627
c19d1205
ZW
17628 /* Align the previous label if needed. */
17629 if (last_label_seen != NULL)
b99bd4ef 17630 {
c19d1205
ZW
17631 symbol_set_frag (last_label_seen, frag_now);
17632 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
17633 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
17634 }
17635
c19d1205
ZW
17636 memset (&inst, '\0', sizeof (inst));
17637 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 17638
c19d1205
ZW
17639 opcode = opcode_lookup (&p);
17640 if (!opcode)
b99bd4ef 17641 {
c19d1205 17642 /* It wasn't an instruction, but it might be a register alias of
dcbf9037 17643 the form alias .req reg, or a Neon .dn/.qn directive. */
c921be7d 17644 if (! create_register_alias (str, p)
477330fc 17645 && ! create_neon_reg_alias (str, p))
c19d1205 17646 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 17647
b99bd4ef
NC
17648 return;
17649 }
17650
278df34e 17651 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
5c3696f8 17652 as_tsktsk (_("s suffix on comparison instruction is deprecated"));
088fa78e 17653
037e8744
JB
17654 /* The value which unconditional instructions should have in place of the
17655 condition field. */
17656 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
17657
c19d1205 17658 if (thumb_mode)
b99bd4ef 17659 {
e74cfd16 17660 arm_feature_set variant;
8f06b2d8
PB
17661
17662 variant = cpu_variant;
17663 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
17664 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
17665 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 17666 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
17667 if (!opcode->tvariant
17668 || (thumb_mode == 1
17669 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 17670 {
bf3eeda7 17671 as_bad (_("selected processor does not support Thumb mode `%s'"), str);
b99bd4ef
NC
17672 return;
17673 }
c19d1205
ZW
17674 if (inst.cond != COND_ALWAYS && !unified_syntax
17675 && opcode->tencode != do_t_branch)
b99bd4ef 17676 {
c19d1205 17677 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
17678 return;
17679 }
17680
752d5da4 17681 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2))
076d447c 17682 {
7e806470 17683 if (opcode->tencode != do_t_blx && opcode->tencode != do_t_branch23
752d5da4
NC
17684 && !(ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_msr)
17685 || ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_barrier)))
17686 {
17687 /* Two things are addressed here.
17688 1) Implicit require narrow instructions on Thumb-1.
17689 This avoids relaxation accidentally introducing Thumb-2
17690 instructions.
17691 2) Reject wide instructions in non Thumb-2 cores. */
17692 if (inst.size_req == 0)
17693 inst.size_req = 2;
17694 else if (inst.size_req == 4)
17695 {
bf3eeda7 17696 as_bad (_("selected processor does not support Thumb-2 mode `%s'"), str);
752d5da4
NC
17697 return;
17698 }
17699 }
076d447c
PB
17700 }
17701
c19d1205
ZW
17702 inst.instruction = opcode->tvalue;
17703
5be8be5d 17704 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
477330fc
RM
17705 {
17706 /* Prepare the it_insn_type for those encodings that don't set
17707 it. */
17708 it_fsm_pre_encode ();
c19d1205 17709
477330fc 17710 opcode->tencode ();
e07e6e58 17711
477330fc
RM
17712 it_fsm_post_encode ();
17713 }
e27ec89e 17714
0110f2b8 17715 if (!(inst.error || inst.relax))
b99bd4ef 17716 {
9c2799c2 17717 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
c19d1205
ZW
17718 inst.size = (inst.instruction > 0xffff ? 4 : 2);
17719 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 17720 {
c19d1205 17721 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
17722 return;
17723 }
17724 }
076d447c
PB
17725
17726 /* Something has gone badly wrong if we try to relax a fixed size
477330fc 17727 instruction. */
9c2799c2 17728 gas_assert (inst.size_req == 0 || !inst.relax);
076d447c 17729
e74cfd16
PB
17730 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17731 *opcode->tvariant);
ee065d83 17732 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
708587a4 17733 set those bits when Thumb-2 32-bit instructions are seen. ie.
7e806470 17734 anything other than bl/blx and v6-M instructions.
3cfdb781
TG
17735 The impact of relaxable instructions will be considered later after we
17736 finish all relaxation. */
17737 if ((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
e07e6e58
NC
17738 && !(ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
17739 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier)))
e74cfd16
PB
17740 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17741 arm_ext_v6t2);
cd000bff 17742
88714cb8
DG
17743 check_neon_suffixes;
17744
cd000bff 17745 if (!inst.error)
c877a2f2
NC
17746 {
17747 mapping_state (MAP_THUMB);
17748 }
c19d1205 17749 }
3e9e4fcf 17750 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205 17751 {
845b51d6
PB
17752 bfd_boolean is_bx;
17753
17754 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
17755 is_bx = (opcode->aencode == do_bx);
17756
c19d1205 17757 /* Check that this instruction is supported for this CPU. */
845b51d6
PB
17758 if (!(is_bx && fix_v4bx)
17759 && !(opcode->avariant &&
17760 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
b99bd4ef 17761 {
bf3eeda7 17762 as_bad (_("selected processor does not support ARM mode `%s'"), str);
c19d1205 17763 return;
b99bd4ef 17764 }
c19d1205 17765 if (inst.size_req)
b99bd4ef 17766 {
c19d1205
ZW
17767 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
17768 return;
b99bd4ef
NC
17769 }
17770
c19d1205
ZW
17771 inst.instruction = opcode->avalue;
17772 if (opcode->tag == OT_unconditionalF)
17773 inst.instruction |= 0xF << 28;
17774 else
17775 inst.instruction |= inst.cond << 28;
17776 inst.size = INSN_SIZE;
5be8be5d 17777 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
477330fc
RM
17778 {
17779 it_fsm_pre_encode ();
17780 opcode->aencode ();
17781 it_fsm_post_encode ();
17782 }
ee065d83 17783 /* Arm mode bx is marked as both v4T and v5 because it's still required
477330fc 17784 on a hypothetical non-thumb v5 core. */
845b51d6 17785 if (is_bx)
e74cfd16 17786 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 17787 else
e74cfd16
PB
17788 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
17789 *opcode->avariant);
88714cb8
DG
17790
17791 check_neon_suffixes;
17792
cd000bff 17793 if (!inst.error)
c877a2f2
NC
17794 {
17795 mapping_state (MAP_ARM);
17796 }
b99bd4ef 17797 }
3e9e4fcf
JB
17798 else
17799 {
17800 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
17801 "-- `%s'"), str);
17802 return;
17803 }
c19d1205
ZW
17804 output_inst (str);
17805}
b99bd4ef 17806
e07e6e58
NC
17807static void
17808check_it_blocks_finished (void)
17809{
17810#ifdef OBJ_ELF
17811 asection *sect;
17812
17813 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
17814 if (seg_info (sect)->tc_segment_info_data.current_it.state
17815 == MANUAL_IT_BLOCK)
17816 {
17817 as_warn (_("section '%s' finished with an open IT block."),
17818 sect->name);
17819 }
17820#else
17821 if (now_it.state == MANUAL_IT_BLOCK)
17822 as_warn (_("file finished with an open IT block."));
17823#endif
17824}
17825
c19d1205
ZW
17826/* Various frobbings of labels and their addresses. */
17827
17828void
17829arm_start_line_hook (void)
17830{
17831 last_label_seen = NULL;
b99bd4ef
NC
17832}
17833
c19d1205
ZW
17834void
17835arm_frob_label (symbolS * sym)
b99bd4ef 17836{
c19d1205 17837 last_label_seen = sym;
b99bd4ef 17838
c19d1205 17839 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 17840
c19d1205
ZW
17841#if defined OBJ_COFF || defined OBJ_ELF
17842 ARM_SET_INTERWORK (sym, support_interwork);
17843#endif
b99bd4ef 17844
e07e6e58
NC
17845 force_automatic_it_block_close ();
17846
5f4273c7 17847 /* Note - do not allow local symbols (.Lxxx) to be labelled
c19d1205
ZW
17848 as Thumb functions. This is because these labels, whilst
17849 they exist inside Thumb code, are not the entry points for
17850 possible ARM->Thumb calls. Also, these labels can be used
17851 as part of a computed goto or switch statement. eg gcc
17852 can generate code that looks like this:
b99bd4ef 17853
c19d1205
ZW
17854 ldr r2, [pc, .Laaa]
17855 lsl r3, r3, #2
17856 ldr r2, [r3, r2]
17857 mov pc, r2
b99bd4ef 17858
c19d1205
ZW
17859 .Lbbb: .word .Lxxx
17860 .Lccc: .word .Lyyy
17861 ..etc...
17862 .Laaa: .word Lbbb
b99bd4ef 17863
c19d1205
ZW
17864 The first instruction loads the address of the jump table.
17865 The second instruction converts a table index into a byte offset.
17866 The third instruction gets the jump address out of the table.
17867 The fourth instruction performs the jump.
b99bd4ef 17868
c19d1205
ZW
17869 If the address stored at .Laaa is that of a symbol which has the
17870 Thumb_Func bit set, then the linker will arrange for this address
17871 to have the bottom bit set, which in turn would mean that the
17872 address computation performed by the third instruction would end
17873 up with the bottom bit set. Since the ARM is capable of unaligned
17874 word loads, the instruction would then load the incorrect address
17875 out of the jump table, and chaos would ensue. */
17876 if (label_is_thumb_function_name
17877 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
17878 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 17879 {
c19d1205
ZW
17880 /* When the address of a Thumb function is taken the bottom
17881 bit of that address should be set. This will allow
17882 interworking between Arm and Thumb functions to work
17883 correctly. */
b99bd4ef 17884
c19d1205 17885 THUMB_SET_FUNC (sym, 1);
b99bd4ef 17886
c19d1205 17887 label_is_thumb_function_name = FALSE;
b99bd4ef 17888 }
07a53e5c 17889
07a53e5c 17890 dwarf2_emit_label (sym);
b99bd4ef
NC
17891}
17892
c921be7d 17893bfd_boolean
c19d1205 17894arm_data_in_code (void)
b99bd4ef 17895{
c19d1205 17896 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 17897 {
c19d1205
ZW
17898 *input_line_pointer = '/';
17899 input_line_pointer += 5;
17900 *input_line_pointer = 0;
c921be7d 17901 return TRUE;
b99bd4ef
NC
17902 }
17903
c921be7d 17904 return FALSE;
b99bd4ef
NC
17905}
17906
c19d1205
ZW
17907char *
17908arm_canonicalize_symbol_name (char * name)
b99bd4ef 17909{
c19d1205 17910 int len;
b99bd4ef 17911
c19d1205
ZW
17912 if (thumb_mode && (len = strlen (name)) > 5
17913 && streq (name + len - 5, "/data"))
17914 *(name + len - 5) = 0;
b99bd4ef 17915
c19d1205 17916 return name;
b99bd4ef 17917}
c19d1205
ZW
17918\f
17919/* Table of all register names defined by default. The user can
17920 define additional names with .req. Note that all register names
17921 should appear in both upper and lowercase variants. Some registers
17922 also have mixed-case names. */
b99bd4ef 17923
dcbf9037 17924#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 17925#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 17926#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
17927#define REGSET(p,t) \
17928 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
17929 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
17930 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
17931 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
17932#define REGSETH(p,t) \
17933 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
17934 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
17935 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
17936 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
17937#define REGSET2(p,t) \
17938 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
17939 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
17940 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
17941 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
90ec0d68
MGD
17942#define SPLRBANK(base,bank,t) \
17943 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
17944 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
17945 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
17946 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
17947 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
17948 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
7ed4c4c5 17949
c19d1205 17950static const struct reg_entry reg_names[] =
7ed4c4c5 17951{
c19d1205
ZW
17952 /* ARM integer registers. */
17953 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 17954
c19d1205
ZW
17955 /* ATPCS synonyms. */
17956 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
17957 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
17958 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 17959
c19d1205
ZW
17960 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
17961 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
17962 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 17963
c19d1205
ZW
17964 /* Well-known aliases. */
17965 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
17966 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
17967
17968 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
17969 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
17970
17971 /* Coprocessor numbers. */
17972 REGSET(p, CP), REGSET(P, CP),
17973
17974 /* Coprocessor register numbers. The "cr" variants are for backward
17975 compatibility. */
17976 REGSET(c, CN), REGSET(C, CN),
17977 REGSET(cr, CN), REGSET(CR, CN),
17978
90ec0d68
MGD
17979 /* ARM banked registers. */
17980 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
17981 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
17982 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
17983 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
17984 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
17985 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
17986 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
17987
17988 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
17989 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
17990 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
17991 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
17992 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
1472d06f 17993 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(sp_fiq,512|(13<<16),RNB),
90ec0d68
MGD
17994 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
17995 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
17996
17997 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
17998 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
17999 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
18000 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
18001 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
18002 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
18003 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
fa94de6b 18004 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
90ec0d68
MGD
18005 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
18006
c19d1205
ZW
18007 /* FPA registers. */
18008 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
18009 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
18010
18011 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
18012 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
18013
18014 /* VFP SP registers. */
5287ad62
JB
18015 REGSET(s,VFS), REGSET(S,VFS),
18016 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
18017
18018 /* VFP DP Registers. */
5287ad62
JB
18019 REGSET(d,VFD), REGSET(D,VFD),
18020 /* Extra Neon DP registers. */
18021 REGSETH(d,VFD), REGSETH(D,VFD),
18022
18023 /* Neon QP registers. */
18024 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
18025
18026 /* VFP control registers. */
18027 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
18028 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
cd2cf30b
PB
18029 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
18030 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
18031 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
18032 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
c19d1205
ZW
18033
18034 /* Maverick DSP coprocessor registers. */
18035 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
18036 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
18037
18038 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
18039 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
18040 REGDEF(dspsc,0,DSPSC),
18041
18042 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
18043 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
18044 REGDEF(DSPSC,0,DSPSC),
18045
18046 /* iWMMXt data registers - p0, c0-15. */
18047 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
18048
18049 /* iWMMXt control registers - p1, c0-3. */
18050 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
18051 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
18052 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
18053 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
18054
18055 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
18056 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
18057 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
18058 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
18059 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
18060
18061 /* XScale accumulator registers. */
18062 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
18063};
18064#undef REGDEF
18065#undef REGNUM
18066#undef REGSET
7ed4c4c5 18067
c19d1205
ZW
18068/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
18069 within psr_required_here. */
18070static const struct asm_psr psrs[] =
18071{
18072 /* Backward compatibility notation. Note that "all" is no longer
18073 truly all possible PSR bits. */
18074 {"all", PSR_c | PSR_f},
18075 {"flg", PSR_f},
18076 {"ctl", PSR_c},
18077
18078 /* Individual flags. */
18079 {"f", PSR_f},
18080 {"c", PSR_c},
18081 {"x", PSR_x},
18082 {"s", PSR_s},
59b42a0d 18083
c19d1205
ZW
18084 /* Combinations of flags. */
18085 {"fs", PSR_f | PSR_s},
18086 {"fx", PSR_f | PSR_x},
18087 {"fc", PSR_f | PSR_c},
18088 {"sf", PSR_s | PSR_f},
18089 {"sx", PSR_s | PSR_x},
18090 {"sc", PSR_s | PSR_c},
18091 {"xf", PSR_x | PSR_f},
18092 {"xs", PSR_x | PSR_s},
18093 {"xc", PSR_x | PSR_c},
18094 {"cf", PSR_c | PSR_f},
18095 {"cs", PSR_c | PSR_s},
18096 {"cx", PSR_c | PSR_x},
18097 {"fsx", PSR_f | PSR_s | PSR_x},
18098 {"fsc", PSR_f | PSR_s | PSR_c},
18099 {"fxs", PSR_f | PSR_x | PSR_s},
18100 {"fxc", PSR_f | PSR_x | PSR_c},
18101 {"fcs", PSR_f | PSR_c | PSR_s},
18102 {"fcx", PSR_f | PSR_c | PSR_x},
18103 {"sfx", PSR_s | PSR_f | PSR_x},
18104 {"sfc", PSR_s | PSR_f | PSR_c},
18105 {"sxf", PSR_s | PSR_x | PSR_f},
18106 {"sxc", PSR_s | PSR_x | PSR_c},
18107 {"scf", PSR_s | PSR_c | PSR_f},
18108 {"scx", PSR_s | PSR_c | PSR_x},
18109 {"xfs", PSR_x | PSR_f | PSR_s},
18110 {"xfc", PSR_x | PSR_f | PSR_c},
18111 {"xsf", PSR_x | PSR_s | PSR_f},
18112 {"xsc", PSR_x | PSR_s | PSR_c},
18113 {"xcf", PSR_x | PSR_c | PSR_f},
18114 {"xcs", PSR_x | PSR_c | PSR_s},
18115 {"cfs", PSR_c | PSR_f | PSR_s},
18116 {"cfx", PSR_c | PSR_f | PSR_x},
18117 {"csf", PSR_c | PSR_s | PSR_f},
18118 {"csx", PSR_c | PSR_s | PSR_x},
18119 {"cxf", PSR_c | PSR_x | PSR_f},
18120 {"cxs", PSR_c | PSR_x | PSR_s},
18121 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
18122 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
18123 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
18124 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
18125 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
18126 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
18127 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
18128 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
18129 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
18130 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
18131 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
18132 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
18133 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
18134 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
18135 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
18136 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
18137 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
18138 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
18139 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
18140 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
18141 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
18142 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
18143 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
18144 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
18145};
18146
62b3e311
PB
18147/* Table of V7M psr names. */
18148static const struct asm_psr v7m_psrs[] =
18149{
2b744c99
PB
18150 {"apsr", 0 }, {"APSR", 0 },
18151 {"iapsr", 1 }, {"IAPSR", 1 },
18152 {"eapsr", 2 }, {"EAPSR", 2 },
18153 {"psr", 3 }, {"PSR", 3 },
18154 {"xpsr", 3 }, {"XPSR", 3 }, {"xPSR", 3 },
18155 {"ipsr", 5 }, {"IPSR", 5 },
18156 {"epsr", 6 }, {"EPSR", 6 },
18157 {"iepsr", 7 }, {"IEPSR", 7 },
18158 {"msp", 8 }, {"MSP", 8 },
18159 {"psp", 9 }, {"PSP", 9 },
18160 {"primask", 16}, {"PRIMASK", 16},
18161 {"basepri", 17}, {"BASEPRI", 17},
00bbc0bd
NC
18162 {"basepri_max", 18}, {"BASEPRI_MAX", 18},
18163 {"basepri_max", 18}, {"BASEPRI_MASK", 18}, /* Typo, preserved for backwards compatibility. */
2b744c99
PB
18164 {"faultmask", 19}, {"FAULTMASK", 19},
18165 {"control", 20}, {"CONTROL", 20}
62b3e311
PB
18166};
18167
c19d1205
ZW
18168/* Table of all shift-in-operand names. */
18169static const struct asm_shift_name shift_names [] =
b99bd4ef 18170{
c19d1205
ZW
18171 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
18172 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
18173 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
18174 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
18175 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
18176 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
18177};
b99bd4ef 18178
c19d1205
ZW
18179/* Table of all explicit relocation names. */
18180#ifdef OBJ_ELF
18181static struct reloc_entry reloc_names[] =
18182{
18183 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
18184 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
18185 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
18186 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
18187 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
18188 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
18189 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
18190 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
18191 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
18192 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
b43420e6 18193 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
0855e32b
NS
18194 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
18195 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
477330fc 18196 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
0855e32b 18197 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
477330fc 18198 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
0855e32b 18199 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
477330fc 18200 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ}
c19d1205
ZW
18201};
18202#endif
b99bd4ef 18203
c19d1205
ZW
18204/* Table of all conditional affixes. 0xF is not defined as a condition code. */
18205static const struct asm_cond conds[] =
18206{
18207 {"eq", 0x0},
18208 {"ne", 0x1},
18209 {"cs", 0x2}, {"hs", 0x2},
18210 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
18211 {"mi", 0x4},
18212 {"pl", 0x5},
18213 {"vs", 0x6},
18214 {"vc", 0x7},
18215 {"hi", 0x8},
18216 {"ls", 0x9},
18217 {"ge", 0xa},
18218 {"lt", 0xb},
18219 {"gt", 0xc},
18220 {"le", 0xd},
18221 {"al", 0xe}
18222};
bfae80f2 18223
e797f7e0 18224#define UL_BARRIER(L,U,CODE,FEAT) \
823d2571
TG
18225 { L, CODE, ARM_FEATURE_CORE_LOW (FEAT) }, \
18226 { U, CODE, ARM_FEATURE_CORE_LOW (FEAT) }
e797f7e0 18227
62b3e311
PB
18228static struct asm_barrier_opt barrier_opt_names[] =
18229{
e797f7e0
MGD
18230 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
18231 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
18232 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
18233 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
18234 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
18235 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
18236 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
18237 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
18238 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
18239 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
18240 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
18241 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
18242 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
18243 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
18244 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
18245 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
62b3e311
PB
18246};
18247
e797f7e0
MGD
18248#undef UL_BARRIER
18249
c19d1205
ZW
18250/* Table of ARM-format instructions. */
18251
18252/* Macros for gluing together operand strings. N.B. In all cases
18253 other than OPS0, the trailing OP_stop comes from default
18254 zero-initialization of the unspecified elements of the array. */
18255#define OPS0() { OP_stop, }
18256#define OPS1(a) { OP_##a, }
18257#define OPS2(a,b) { OP_##a,OP_##b, }
18258#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
18259#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
18260#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
18261#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
18262
5be8be5d
DG
18263/* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
18264 This is useful when mixing operands for ARM and THUMB, i.e. using the
18265 MIX_ARM_THUMB_OPERANDS macro.
18266 In order to use these macros, prefix the number of operands with _
18267 e.g. _3. */
18268#define OPS_1(a) { a, }
18269#define OPS_2(a,b) { a,b, }
18270#define OPS_3(a,b,c) { a,b,c, }
18271#define OPS_4(a,b,c,d) { a,b,c,d, }
18272#define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
18273#define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
18274
c19d1205
ZW
18275/* These macros abstract out the exact format of the mnemonic table and
18276 save some repeated characters. */
18277
18278/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
18279#define TxCE(mnem, op, top, nops, ops, ae, te) \
21d799b5 18280 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 18281 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
18282
18283/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
18284 a T_MNEM_xyz enumerator. */
18285#define TCE(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 18286 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 18287#define tCE(mnem, aop, top, nops, ops, ae, te) \
21d799b5 18288 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
18289
18290/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
18291 infix after the third character. */
18292#define TxC3(mnem, op, top, nops, ops, ae, te) \
21d799b5 18293 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 18294 THUMB_VARIANT, do_##ae, do_##te }
088fa78e 18295#define TxC3w(mnem, op, top, nops, ops, ae, te) \
21d799b5 18296 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
088fa78e 18297 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 18298#define TC3(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 18299 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e 18300#define TC3w(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 18301 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 18302#define tC3(mnem, aop, top, nops, ops, ae, te) \
21d799b5 18303 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
088fa78e 18304#define tC3w(mnem, aop, top, nops, ops, ae, te) \
21d799b5 18305 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205 18306
c19d1205 18307/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
18308 field is still 0xE. Many of the Thumb variants can be executed
18309 conditionally, so this is checked separately. */
c19d1205 18310#define TUE(mnem, op, top, nops, ops, ae, te) \
21d799b5 18311 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 18312 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 18313
dd5181d5
KT
18314/* Same as TUE but the encoding function for ARM and Thumb modes is the same.
18315 Used by mnemonics that have very minimal differences in the encoding for
18316 ARM and Thumb variants and can be handled in a common function. */
18317#define TUEc(mnem, op, top, nops, ops, en) \
18318 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
18319 THUMB_VARIANT, do_##en, do_##en }
18320
c19d1205
ZW
18321/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
18322 condition code field. */
18323#define TUF(mnem, op, top, nops, ops, ae, te) \
21d799b5 18324 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 18325 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
18326
18327/* ARM-only variants of all the above. */
6a86118a 18328#define CE(mnem, op, nops, ops, ae) \
21d799b5 18329 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
6a86118a
NC
18330
18331#define C3(mnem, op, nops, ops, ae) \
18332 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
18333
e3cb604e
PB
18334/* Legacy mnemonics that always have conditional infix after the third
18335 character. */
18336#define CL(mnem, op, nops, ops, ae) \
21d799b5 18337 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
18338 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
18339
8f06b2d8
PB
18340/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
18341#define cCE(mnem, op, nops, ops, ae) \
21d799b5 18342 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 18343
e3cb604e
PB
18344/* Legacy coprocessor instructions where conditional infix and conditional
18345 suffix are ambiguous. For consistency this includes all FPA instructions,
18346 not just the potentially ambiguous ones. */
18347#define cCL(mnem, op, nops, ops, ae) \
21d799b5 18348 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
18349 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
18350
18351/* Coprocessor, takes either a suffix or a position-3 infix
18352 (for an FPA corner case). */
18353#define C3E(mnem, op, nops, ops, ae) \
21d799b5 18354 { mnem, OPS##nops ops, OT_csuf_or_in3, \
e3cb604e 18355 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 18356
6a86118a 18357#define xCM_(m1, m2, m3, op, nops, ops, ae) \
21d799b5
NC
18358 { m1 #m2 m3, OPS##nops ops, \
18359 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
6a86118a
NC
18360 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
18361
18362#define CM(m1, m2, op, nops, ops, ae) \
e07e6e58
NC
18363 xCM_ (m1, , m2, op, nops, ops, ae), \
18364 xCM_ (m1, eq, m2, op, nops, ops, ae), \
18365 xCM_ (m1, ne, m2, op, nops, ops, ae), \
18366 xCM_ (m1, cs, m2, op, nops, ops, ae), \
18367 xCM_ (m1, hs, m2, op, nops, ops, ae), \
18368 xCM_ (m1, cc, m2, op, nops, ops, ae), \
18369 xCM_ (m1, ul, m2, op, nops, ops, ae), \
18370 xCM_ (m1, lo, m2, op, nops, ops, ae), \
18371 xCM_ (m1, mi, m2, op, nops, ops, ae), \
18372 xCM_ (m1, pl, m2, op, nops, ops, ae), \
18373 xCM_ (m1, vs, m2, op, nops, ops, ae), \
18374 xCM_ (m1, vc, m2, op, nops, ops, ae), \
18375 xCM_ (m1, hi, m2, op, nops, ops, ae), \
18376 xCM_ (m1, ls, m2, op, nops, ops, ae), \
18377 xCM_ (m1, ge, m2, op, nops, ops, ae), \
18378 xCM_ (m1, lt, m2, op, nops, ops, ae), \
18379 xCM_ (m1, gt, m2, op, nops, ops, ae), \
18380 xCM_ (m1, le, m2, op, nops, ops, ae), \
18381 xCM_ (m1, al, m2, op, nops, ops, ae)
6a86118a
NC
18382
18383#define UE(mnem, op, nops, ops, ae) \
18384 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
18385
18386#define UF(mnem, op, nops, ops, ae) \
18387 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
18388
5287ad62
JB
18389/* Neon data-processing. ARM versions are unconditional with cond=0xf.
18390 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
18391 use the same encoding function for each. */
18392#define NUF(mnem, op, nops, ops, enc) \
18393 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
18394 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
18395
18396/* Neon data processing, version which indirects through neon_enc_tab for
18397 the various overloaded versions of opcodes. */
18398#define nUF(mnem, op, nops, ops, enc) \
21d799b5 18399 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
18400 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
18401
18402/* Neon insn with conditional suffix for the ARM version, non-overloaded
18403 version. */
037e8744
JB
18404#define NCE_tag(mnem, op, nops, ops, enc, tag) \
18405 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
18406 THUMB_VARIANT, do_##enc, do_##enc }
18407
037e8744 18408#define NCE(mnem, op, nops, ops, enc) \
e07e6e58 18409 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
18410
18411#define NCEF(mnem, op, nops, ops, enc) \
e07e6e58 18412 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 18413
5287ad62 18414/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744 18415#define nCE_tag(mnem, op, nops, ops, enc, tag) \
21d799b5 18416 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
18417 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
18418
037e8744 18419#define nCE(mnem, op, nops, ops, enc) \
e07e6e58 18420 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
18421
18422#define nCEF(mnem, op, nops, ops, enc) \
e07e6e58 18423 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 18424
c19d1205
ZW
18425#define do_0 0
18426
c19d1205 18427static const struct asm_opcode insns[] =
bfae80f2 18428{
74db7efb
NC
18429#define ARM_VARIANT & arm_ext_v1 /* Core ARM Instructions. */
18430#define THUMB_VARIANT & arm_ext_v4t
21d799b5
NC
18431 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
18432 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
18433 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
18434 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
18435 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
18436 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
18437 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
18438 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
18439 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
18440 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
18441 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
18442 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
18443 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
18444 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
18445 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
18446 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
c19d1205
ZW
18447
18448 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
18449 for setting PSR flag bits. They are obsolete in V6 and do not
18450 have Thumb equivalents. */
21d799b5
NC
18451 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
18452 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
18453 CL("tstp", 110f000, 2, (RR, SH), cmp),
18454 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
18455 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
18456 CL("cmpp", 150f000, 2, (RR, SH), cmp),
18457 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
18458 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
18459 CL("cmnp", 170f000, 2, (RR, SH), cmp),
18460
18461 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
18462 tC3("movs", 1b00000, _movs, 2, (RR, SH), mov, t_mov_cmp),
18463 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
18464 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
18465
18466 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
5be8be5d
DG
18467 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
18468 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
18469 OP_RRnpc),
18470 OP_ADDRGLDR),ldst, t_ldst),
18471 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
21d799b5
NC
18472
18473 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18474 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18475 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18476 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18477 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18478 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18479
18480 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
18481 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
18482 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
18483 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 18484
c19d1205 18485 /* Pseudo ops. */
21d799b5 18486 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac 18487 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
21d799b5 18488 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
74db7efb 18489 tCE("udf", 7f000f0, _udf, 1, (oIffffb), bkpt, t_udf),
c19d1205
ZW
18490
18491 /* Thumb-compatibility pseudo ops. */
21d799b5
NC
18492 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
18493 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
18494 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
18495 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
18496 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
18497 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
18498 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
18499 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
18500 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
18501 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
18502 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
18503 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
c19d1205 18504
16a4cf17 18505 /* These may simplify to neg. */
21d799b5
NC
18506 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
18507 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
16a4cf17 18508
c921be7d
NC
18509#undef THUMB_VARIANT
18510#define THUMB_VARIANT & arm_ext_v6
18511
21d799b5 18512 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
18513
18514 /* V1 instructions with no Thumb analogue prior to V6T2. */
c921be7d
NC
18515#undef THUMB_VARIANT
18516#define THUMB_VARIANT & arm_ext_v6t2
18517
21d799b5
NC
18518 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
18519 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
18520 CL("teqp", 130f000, 2, (RR, SH), cmp),
c19d1205 18521
5be8be5d
DG
18522 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
18523 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
18524 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
18525 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
c19d1205 18526
21d799b5
NC
18527 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18528 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 18529
21d799b5
NC
18530 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18531 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
18532
18533 /* V1 instructions with no Thumb analogue at all. */
21d799b5 18534 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
c19d1205
ZW
18535 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
18536
18537 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
18538 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
18539 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
18540 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
18541 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
18542 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
18543 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
18544 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
18545
c921be7d
NC
18546#undef ARM_VARIANT
18547#define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
18548#undef THUMB_VARIANT
18549#define THUMB_VARIANT & arm_ext_v4t
18550
21d799b5
NC
18551 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
18552 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
c19d1205 18553
c921be7d
NC
18554#undef THUMB_VARIANT
18555#define THUMB_VARIANT & arm_ext_v6t2
18556
21d799b5 18557 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
c19d1205
ZW
18558 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
18559
18560 /* Generic coprocessor instructions. */
21d799b5
NC
18561 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18562 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18563 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18564 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18565 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18566 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
db472d6f 18567 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18568
c921be7d
NC
18569#undef ARM_VARIANT
18570#define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
18571
21d799b5 18572 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
c19d1205
ZW
18573 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
18574
c921be7d
NC
18575#undef ARM_VARIANT
18576#define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
18577#undef THUMB_VARIANT
18578#define THUMB_VARIANT & arm_ext_msr
18579
d2cd1205
JB
18580 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
18581 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
c19d1205 18582
c921be7d
NC
18583#undef ARM_VARIANT
18584#define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
18585#undef THUMB_VARIANT
18586#define THUMB_VARIANT & arm_ext_v6t2
18587
21d799b5
NC
18588 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18589 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18590 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18591 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18592 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18593 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18594 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18595 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
c19d1205 18596
c921be7d
NC
18597#undef ARM_VARIANT
18598#define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
18599#undef THUMB_VARIANT
18600#define THUMB_VARIANT & arm_ext_v4t
18601
5be8be5d
DG
18602 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18603 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18604 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18605 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
56c0a61f
RE
18606 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18607 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
c19d1205 18608
c921be7d
NC
18609#undef ARM_VARIANT
18610#define ARM_VARIANT & arm_ext_v4t_5
18611
c19d1205
ZW
18612 /* ARM Architecture 4T. */
18613 /* Note: bx (and blx) are required on V5, even if the processor does
18614 not support Thumb. */
21d799b5 18615 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
c19d1205 18616
c921be7d
NC
18617#undef ARM_VARIANT
18618#define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
18619#undef THUMB_VARIANT
18620#define THUMB_VARIANT & arm_ext_v5t
18621
c19d1205
ZW
18622 /* Note: blx has 2 variants; the .value coded here is for
18623 BLX(2). Only this variant has conditional execution. */
21d799b5
NC
18624 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
18625 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
c19d1205 18626
c921be7d
NC
18627#undef THUMB_VARIANT
18628#define THUMB_VARIANT & arm_ext_v6t2
18629
21d799b5
NC
18630 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
18631 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18632 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18633 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18634 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18635 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18636 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
18637 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18638
c921be7d 18639#undef ARM_VARIANT
74db7efb
NC
18640#define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
18641#undef THUMB_VARIANT
18642#define THUMB_VARIANT & arm_ext_v5exp
c921be7d 18643
21d799b5
NC
18644 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18645 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18646 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18647 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18648
21d799b5
NC
18649 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18650 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18651
21d799b5
NC
18652 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18653 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18654 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18655 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
c19d1205 18656
21d799b5
NC
18657 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18658 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18659 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18660 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18661
21d799b5
NC
18662 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18663 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18664
03ee1b7f
NC
18665 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18666 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18667 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18668 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
c19d1205 18669
c921be7d 18670#undef ARM_VARIANT
74db7efb
NC
18671#define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
18672#undef THUMB_VARIANT
18673#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 18674
21d799b5 18675 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
5be8be5d
DG
18676 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
18677 ldrd, t_ldstd),
18678 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
18679 ADDRGLDRS), ldrd, t_ldstd),
c19d1205 18680
21d799b5
NC
18681 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18682 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
c19d1205 18683
c921be7d
NC
18684#undef ARM_VARIANT
18685#define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
18686
21d799b5 18687 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
c19d1205 18688
c921be7d
NC
18689#undef ARM_VARIANT
18690#define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
18691#undef THUMB_VARIANT
18692#define THUMB_VARIANT & arm_ext_v6
18693
21d799b5
NC
18694 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
18695 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
18696 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18697 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18698 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18699 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18700 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18701 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18702 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18703 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
c19d1205 18704
c921be7d
NC
18705#undef THUMB_VARIANT
18706#define THUMB_VARIANT & arm_ext_v6t2
18707
5be8be5d
DG
18708 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
18709 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
18710 strex, t_strex),
21d799b5
NC
18711 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18712 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311 18713
21d799b5
NC
18714 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
18715 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
62b3e311 18716
9e3c6df6 18717/* ARM V6 not included in V7M. */
c921be7d
NC
18718#undef THUMB_VARIANT
18719#define THUMB_VARIANT & arm_ext_v6_notm
9e3c6df6 18720 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6 18721 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
9e3c6df6
PB
18722 UF(rfeib, 9900a00, 1, (RRw), rfe),
18723 UF(rfeda, 8100a00, 1, (RRw), rfe),
18724 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18725 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6
RE
18726 UF(rfefa, 8100a00, 1, (RRw), rfe),
18727 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18728 UF(rfeed, 9900a00, 1, (RRw), rfe),
9e3c6df6 18729 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
d709e4e6
RE
18730 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
18731 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
9e3c6df6 18732 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
d709e4e6 18733 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
9e3c6df6 18734 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
d709e4e6 18735 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
9e3c6df6 18736 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
d709e4e6 18737 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
c921be7d 18738
9e3c6df6
PB
18739/* ARM V6 not included in V7M (eg. integer SIMD). */
18740#undef THUMB_VARIANT
18741#define THUMB_VARIANT & arm_ext_v6_dsp
21d799b5
NC
18742 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
18743 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
18744 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
18745 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18746 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18747 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18748 /* Old name for QASX. */
74db7efb 18749 TCE("qaddsubx",6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5 18750 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18751 /* Old name for QSAX. */
74db7efb 18752 TCE("qsubaddx",6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18753 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18754 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18755 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18756 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18757 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18758 /* Old name for SASX. */
74db7efb 18759 TCE("saddsubx",6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18760 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18761 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 18762 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18763 /* Old name for SHASX. */
21d799b5 18764 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 18765 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18766 /* Old name for SHSAX. */
21d799b5
NC
18767 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18768 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18769 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18770 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18771 /* Old name for SSAX. */
74db7efb 18772 TCE("ssubaddx",6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18773 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18774 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18775 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18776 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18777 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18778 /* Old name for UASX. */
74db7efb 18779 TCE("uaddsubx",6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18780 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18781 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 18782 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18783 /* Old name for UHASX. */
21d799b5
NC
18784 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18785 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18786 /* Old name for UHSAX. */
21d799b5
NC
18787 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18788 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18789 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18790 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18791 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 18792 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18793 /* Old name for UQASX. */
21d799b5
NC
18794 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18795 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18796 /* Old name for UQSAX. */
21d799b5
NC
18797 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18798 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18799 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18800 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18801 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18802 /* Old name for USAX. */
74db7efb 18803 TCE("usubaddx",6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5 18804 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18805 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18806 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18807 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18808 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18809 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18810 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18811 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18812 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18813 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18814 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18815 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18816 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18817 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18818 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18819 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18820 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18821 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18822 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18823 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18824 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18825 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18826 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18827 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18828 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18829 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18830 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18831 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
21d799b5
NC
18832 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
18833 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
18834 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18835 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18836 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
c19d1205 18837
c921be7d
NC
18838#undef ARM_VARIANT
18839#define ARM_VARIANT & arm_ext_v6k
18840#undef THUMB_VARIANT
18841#define THUMB_VARIANT & arm_ext_v6k
18842
21d799b5
NC
18843 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
18844 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
18845 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
18846 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
c19d1205 18847
c921be7d
NC
18848#undef THUMB_VARIANT
18849#define THUMB_VARIANT & arm_ext_v6_notm
5be8be5d
DG
18850 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
18851 ldrexd, t_ldrexd),
18852 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
18853 RRnpcb), strexd, t_strexd),
ebdca51a 18854
c921be7d
NC
18855#undef THUMB_VARIANT
18856#define THUMB_VARIANT & arm_ext_v6t2
5be8be5d
DG
18857 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
18858 rd_rn, rd_rn),
18859 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
18860 rd_rn, rd_rn),
18861 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18862 strex, t_strexbh),
5be8be5d 18863 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18864 strex, t_strexbh),
21d799b5 18865 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
c19d1205 18866
c921be7d 18867#undef ARM_VARIANT
f4c65163 18868#define ARM_VARIANT & arm_ext_sec
74db7efb 18869#undef THUMB_VARIANT
f4c65163 18870#define THUMB_VARIANT & arm_ext_sec
c921be7d 18871
21d799b5 18872 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205 18873
90ec0d68
MGD
18874#undef ARM_VARIANT
18875#define ARM_VARIANT & arm_ext_virt
18876#undef THUMB_VARIANT
18877#define THUMB_VARIANT & arm_ext_virt
18878
18879 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
18880 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
18881
c921be7d 18882#undef ARM_VARIANT
74db7efb 18883#define ARM_VARIANT & arm_ext_v6t2
f4c65163
MGD
18884#undef THUMB_VARIANT
18885#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 18886
21d799b5
NC
18887 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
18888 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
18889 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
18890 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
c19d1205 18891
21d799b5
NC
18892 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
18893 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
18894 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
18895 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205 18896
5be8be5d
DG
18897 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18898 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18899 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18900 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
c19d1205 18901
bf3eeda7 18902 /* Thumb-only instructions. */
74db7efb 18903#undef ARM_VARIANT
bf3eeda7
NS
18904#define ARM_VARIANT NULL
18905 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
18906 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
c921be7d
NC
18907
18908 /* ARM does not really have an IT instruction, so always allow it.
18909 The opcode is copied from Thumb in order to allow warnings in
18910 -mimplicit-it=[never | arm] modes. */
18911#undef ARM_VARIANT
18912#define ARM_VARIANT & arm_ext_v1
18913
21d799b5
NC
18914 TUE("it", bf08, bf08, 1, (COND), it, t_it),
18915 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
18916 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
18917 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
18918 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
18919 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
18920 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
18921 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
18922 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
18923 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
18924 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
18925 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
18926 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
18927 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
18928 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
1c444d06 18929 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
21d799b5
NC
18930 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
18931 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
c19d1205 18932
92e90b6e 18933 /* Thumb2 only instructions. */
c921be7d
NC
18934#undef ARM_VARIANT
18935#define ARM_VARIANT NULL
92e90b6e 18936
21d799b5
NC
18937 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18938 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18939 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
18940 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
18941 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
18942 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
92e90b6e 18943
eea54501
MGD
18944 /* Hardware division instructions. */
18945#undef ARM_VARIANT
18946#define ARM_VARIANT & arm_ext_adiv
c921be7d
NC
18947#undef THUMB_VARIANT
18948#define THUMB_VARIANT & arm_ext_div
18949
eea54501
MGD
18950 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
18951 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
62b3e311 18952
7e806470 18953 /* ARM V6M/V7 instructions. */
c921be7d
NC
18954#undef ARM_VARIANT
18955#define ARM_VARIANT & arm_ext_barrier
18956#undef THUMB_VARIANT
18957#define THUMB_VARIANT & arm_ext_barrier
18958
ccb84d65
JB
18959 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, barrier),
18960 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, barrier),
18961 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, barrier),
7e806470 18962
62b3e311 18963 /* ARM V7 instructions. */
c921be7d
NC
18964#undef ARM_VARIANT
18965#define ARM_VARIANT & arm_ext_v7
18966#undef THUMB_VARIANT
18967#define THUMB_VARIANT & arm_ext_v7
18968
21d799b5
NC
18969 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
18970 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
62b3e311 18971
74db7efb 18972#undef ARM_VARIANT
60e5ef9f 18973#define ARM_VARIANT & arm_ext_mp
74db7efb 18974#undef THUMB_VARIANT
60e5ef9f
MGD
18975#define THUMB_VARIANT & arm_ext_mp
18976
18977 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
18978
53c4b28b
MGD
18979 /* AArchv8 instructions. */
18980#undef ARM_VARIANT
18981#define ARM_VARIANT & arm_ext_v8
18982#undef THUMB_VARIANT
18983#define THUMB_VARIANT & arm_ext_v8
18984
18985 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
8884b720 18986 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
4b8c8c02
RE
18987 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18988 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18989 ldrexd, t_ldrexd),
4b8c8c02
RE
18990 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
18991 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18992 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
18993 stlex, t_stlex),
18994 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18995 strexd, t_strexd),
4b8c8c02
RE
18996 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
18997 stlex, t_stlex),
18998 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
18999 stlex, t_stlex),
19000 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19001 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19002 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19003 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
19004 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
19005 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
53c4b28b 19006
8884b720 19007 /* ARMv8 T32 only. */
74db7efb 19008#undef ARM_VARIANT
b79f7053
MGD
19009#define ARM_VARIANT NULL
19010 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
19011 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
19012 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
19013
33399f07
MGD
19014 /* FP for ARMv8. */
19015#undef ARM_VARIANT
a715796b 19016#define ARM_VARIANT & fpu_vfp_ext_armv8xd
33399f07 19017#undef THUMB_VARIANT
a715796b 19018#define THUMB_VARIANT & fpu_vfp_ext_armv8xd
33399f07
MGD
19019
19020 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
19021 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
19022 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
19023 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
73924fbc
MGD
19024 nUF(vmaxnm, _vmaxnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
19025 nUF(vminnm, _vminnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
7e8e6784
MGD
19026 nUF(vcvta, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvta),
19027 nUF(vcvtn, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtn),
19028 nUF(vcvtp, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtp),
19029 nUF(vcvtm, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtm),
30bdf752
MGD
19030 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
19031 nCE(vrintz, _vrintr, 2, (RNSDQ, oRNSDQ), vrintz),
19032 nCE(vrintx, _vrintr, 2, (RNSDQ, oRNSDQ), vrintx),
19033 nUF(vrinta, _vrinta, 2, (RNSDQ, oRNSDQ), vrinta),
19034 nUF(vrintn, _vrinta, 2, (RNSDQ, oRNSDQ), vrintn),
19035 nUF(vrintp, _vrinta, 2, (RNSDQ, oRNSDQ), vrintp),
19036 nUF(vrintm, _vrinta, 2, (RNSDQ, oRNSDQ), vrintm),
33399f07 19037
91ff7894
MGD
19038 /* Crypto v1 extensions. */
19039#undef ARM_VARIANT
19040#define ARM_VARIANT & fpu_crypto_ext_armv8
19041#undef THUMB_VARIANT
19042#define THUMB_VARIANT & fpu_crypto_ext_armv8
19043
19044 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
19045 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
19046 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
19047 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
48adcd8e
MGD
19048 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
19049 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
19050 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
19051 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
19052 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
19053 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
19054 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
3c9017d2
MGD
19055 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
19056 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
19057 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
91ff7894 19058
dd5181d5 19059#undef ARM_VARIANT
74db7efb 19060#define ARM_VARIANT & crc_ext_armv8
dd5181d5
KT
19061#undef THUMB_VARIANT
19062#define THUMB_VARIANT & crc_ext_armv8
19063 TUEc("crc32b", 1000040, fac0f080, 3, (RR, oRR, RR), crc32b),
19064 TUEc("crc32h", 1200040, fac0f090, 3, (RR, oRR, RR), crc32h),
19065 TUEc("crc32w", 1400040, fac0f0a0, 3, (RR, oRR, RR), crc32w),
19066 TUEc("crc32cb",1000240, fad0f080, 3, (RR, oRR, RR), crc32cb),
19067 TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
19068 TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
19069
c921be7d
NC
19070#undef ARM_VARIANT
19071#define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
53c4b28b
MGD
19072#undef THUMB_VARIANT
19073#define THUMB_VARIANT NULL
c921be7d 19074
21d799b5
NC
19075 cCE("wfs", e200110, 1, (RR), rd),
19076 cCE("rfs", e300110, 1, (RR), rd),
19077 cCE("wfc", e400110, 1, (RR), rd),
19078 cCE("rfc", e500110, 1, (RR), rd),
19079
19080 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
19081 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
19082 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
19083 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
19084
19085 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
19086 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
19087 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
19088 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
19089
19090 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
19091 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
19092 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
19093 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
19094 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
19095 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
19096 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
19097 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
19098 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
19099 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
19100 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
19101 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
19102
19103 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
19104 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
19105 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
19106 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
19107 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
19108 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
19109 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
19110 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
19111 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
19112 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
19113 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
19114 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
19115
19116 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
19117 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
19118 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
19119 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
19120 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
19121 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
19122 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
19123 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
19124 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
19125 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
19126 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
19127 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
19128
19129 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
19130 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
19131 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
19132 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
19133 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
19134 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
19135 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
19136 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
19137 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
19138 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
19139 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
19140 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
19141
19142 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
19143 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
19144 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
19145 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
19146 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
19147 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
19148 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
19149 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
19150 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
19151 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
19152 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
19153 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
19154
19155 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
19156 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
19157 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
19158 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
19159 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
19160 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
19161 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
19162 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
19163 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
19164 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
19165 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
19166 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
19167
19168 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
19169 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
19170 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
19171 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
19172 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
19173 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
19174 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
19175 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
19176 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
19177 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
19178 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
19179 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
19180
19181 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
19182 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
19183 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
19184 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
19185 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
19186 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
19187 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
19188 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
19189 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
19190 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
19191 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
19192 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
19193
19194 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
19195 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
19196 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
19197 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
19198 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
19199 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
19200 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
19201 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
19202 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
19203 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
19204 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
19205 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
19206
19207 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
19208 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
19209 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
19210 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
19211 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
19212 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
19213 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
19214 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
19215 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
19216 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
19217 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
19218 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
19219
19220 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
19221 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
19222 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
19223 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
19224 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
19225 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
19226 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
19227 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
19228 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
19229 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
19230 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
19231 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
19232
19233 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
19234 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
19235 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
19236 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
19237 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
19238 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
19239 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
19240 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
19241 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
19242 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
19243 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
19244 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
19245
19246 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
19247 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
19248 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
19249 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
19250 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
19251 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
19252 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
19253 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
19254 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
19255 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
19256 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
19257 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
19258
19259 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
19260 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
19261 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
19262 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
19263 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
19264 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
19265 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
19266 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
19267 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
19268 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
19269 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
19270 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
19271
19272 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
19273 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
19274 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
19275 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
19276 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
19277 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
19278 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
19279 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
19280 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
19281 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
19282 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
19283 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
19284
19285 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
19286 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
19287 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
19288 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
19289 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
19290 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
19291 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
19292 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
19293 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
19294 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
19295 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
19296 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
19297
19298 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
19299 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
19300 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
19301 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
19302 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
19303 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19304 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19305 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19306 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
19307 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
19308 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
19309 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
19310
19311 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
19312 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
19313 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
19314 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
19315 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
19316 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19317 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19318 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19319 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
19320 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
19321 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
19322 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
19323
19324 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
19325 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
19326 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
19327 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
19328 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
19329 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19330 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19331 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19332 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
19333 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
19334 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
19335 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
19336
19337 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
19338 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
19339 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
19340 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
19341 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
19342 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19343 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19344 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19345 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
19346 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
19347 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
19348 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
19349
19350 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
19351 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
19352 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
19353 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
19354 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
19355 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19356 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19357 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19358 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
19359 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
19360 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
19361 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
19362
19363 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
19364 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
19365 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
19366 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
19367 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
19368 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19369 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19370 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19371 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
19372 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
19373 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
19374 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
19375
19376 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
19377 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
19378 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
19379 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
19380 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
19381 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19382 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19383 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19384 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
19385 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
19386 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
19387 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
19388
19389 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
19390 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
19391 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
19392 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
19393 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
19394 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19395 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19396 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19397 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
19398 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
19399 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
19400 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
19401
19402 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
19403 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
19404 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
19405 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
19406 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
19407 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19408 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19409 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19410 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
19411 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
19412 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
19413 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
19414
19415 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
19416 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
19417 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
19418 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
19419 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
19420 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19421 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19422 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19423 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
19424 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
19425 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
19426 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
19427
19428 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19429 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19430 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19431 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19432 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19433 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19434 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19435 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19436 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19437 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19438 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19439 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19440
19441 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19442 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19443 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19444 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19445 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19446 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19447 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19448 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19449 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19450 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19451 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19452 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19453
19454 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19455 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19456 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19457 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19458 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19459 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19460 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19461 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19462 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19463 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19464 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19465 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19466
19467 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
19468 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
19469 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
19470 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
19471
19472 cCL("flts", e000110, 2, (RF, RR), rn_rd),
19473 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
19474 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
19475 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
19476 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
19477 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
19478 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
19479 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
19480 cCL("flte", e080110, 2, (RF, RR), rn_rd),
19481 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
19482 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
19483 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
b99bd4ef 19484
c19d1205
ZW
19485 /* The implementation of the FIX instruction is broken on some
19486 assemblers, in that it accepts a precision specifier as well as a
19487 rounding specifier, despite the fact that this is meaningless.
19488 To be more compatible, we accept it as well, though of course it
19489 does not set any bits. */
21d799b5
NC
19490 cCE("fix", e100110, 2, (RR, RF), rd_rm),
19491 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
19492 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
19493 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
19494 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
19495 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
19496 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
19497 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
19498 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
19499 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
19500 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
19501 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
19502 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
bfae80f2 19503
c19d1205 19504 /* Instructions that were new with the real FPA, call them V2. */
c921be7d
NC
19505#undef ARM_VARIANT
19506#define ARM_VARIANT & fpu_fpa_ext_v2
19507
21d799b5
NC
19508 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19509 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19510 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19511 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19512 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19513 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205 19514
c921be7d
NC
19515#undef ARM_VARIANT
19516#define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
19517
c19d1205 19518 /* Moves and type conversions. */
21d799b5
NC
19519 cCE("fcpys", eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
19520 cCE("fmrs", e100a10, 2, (RR, RVS), vfp_reg_from_sp),
19521 cCE("fmsr", e000a10, 2, (RVS, RR), vfp_sp_from_reg),
19522 cCE("fmstat", ef1fa10, 0, (), noargs),
7465e07a
NC
19523 cCE("vmrs", ef00a10, 2, (APSR_RR, RVC), vmrs),
19524 cCE("vmsr", ee00a10, 2, (RVC, RR), vmsr),
21d799b5
NC
19525 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
19526 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
19527 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
19528 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
19529 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
19530 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
19531 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
19532 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
19533
19534 /* Memory operations. */
21d799b5
NC
19535 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
19536 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
55881a11
MGD
19537 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19538 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19539 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19540 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19541 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19542 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19543 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19544 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19545 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19546 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19547 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19548 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19549 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19550 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19551 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19552 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 19553
c19d1205 19554 /* Monadic operations. */
21d799b5
NC
19555 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
19556 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
19557 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
19558
19559 /* Dyadic operations. */
21d799b5
NC
19560 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19561 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19562 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19563 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19564 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19565 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19566 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19567 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19568 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 19569
c19d1205 19570 /* Comparisons. */
21d799b5
NC
19571 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
19572 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
19573 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
19574 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 19575
62f3b8c8
PB
19576 /* Double precision load/store are still present on single precision
19577 implementations. */
19578 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
19579 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
55881a11
MGD
19580 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19581 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19582 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19583 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19584 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19585 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19586 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19587 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
62f3b8c8 19588
c921be7d
NC
19589#undef ARM_VARIANT
19590#define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
19591
c19d1205 19592 /* Moves and type conversions. */
21d799b5
NC
19593 cCE("fcpyd", eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19594 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19595 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19596 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
19597 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
19598 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
19599 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
19600 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19601 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
19602 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19603 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19604 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19605 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205 19606
c19d1205 19607 /* Monadic operations. */
21d799b5
NC
19608 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19609 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19610 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
19611
19612 /* Dyadic operations. */
21d799b5
NC
19613 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19614 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19615 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19616 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19617 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19618 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19619 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19620 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19621 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 19622
c19d1205 19623 /* Comparisons. */
21d799b5
NC
19624 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19625 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
19626 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19627 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205 19628
c921be7d
NC
19629#undef ARM_VARIANT
19630#define ARM_VARIANT & fpu_vfp_ext_v2
19631
21d799b5
NC
19632 cCE("fmsrr", c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
19633 cCE("fmrrs", c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
19634 cCE("fmdrr", c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
19635 cCE("fmrrd", c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
5287ad62 19636
037e8744
JB
19637/* Instructions which may belong to either the Neon or VFP instruction sets.
19638 Individual encoder functions perform additional architecture checks. */
c921be7d
NC
19639#undef ARM_VARIANT
19640#define ARM_VARIANT & fpu_vfp_ext_v1xd
19641#undef THUMB_VARIANT
19642#define THUMB_VARIANT & fpu_vfp_ext_v1xd
19643
037e8744
JB
19644 /* These mnemonics are unique to VFP. */
19645 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
19646 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
21d799b5
NC
19647 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19648 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19649 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
aacf0b33
KT
19650 nCE(vcmp, _vcmp, 2, (RVSD, RSVD_FI0), vfp_nsyn_cmp),
19651 nCE(vcmpe, _vcmpe, 2, (RVSD, RSVD_FI0), vfp_nsyn_cmp),
037e8744
JB
19652 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
19653 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
19654 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
19655
19656 /* Mnemonics shared by Neon and VFP. */
21d799b5
NC
19657 nCEF(vmul, _vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
19658 nCEF(vmla, _vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
19659 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
037e8744 19660
21d799b5
NC
19661 nCEF(vadd, _vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
19662 nCEF(vsub, _vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
037e8744
JB
19663
19664 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19665 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19666
55881a11
MGD
19667 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19668 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19669 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19670 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19671 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19672 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
4962c51a
MS
19673 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
19674 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744 19675
5f1af56b 19676 nCEF(vcvt, _vcvt, 3, (RNSDQ, RNSDQ, oI32z), neon_cvt),
e3e535bc 19677 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
c70a8987
MGD
19678 NCEF(vcvtb, eb20a40, 2, (RVSD, RVSD), neon_cvtb),
19679 NCEF(vcvtt, eb20a40, 2, (RVSD, RVSD), neon_cvtt),
f31fef98 19680
037e8744
JB
19681
19682 /* NOTE: All VMOV encoding is special-cased! */
19683 NCE(vmov, 0, 1, (VMOV), neon_mov),
19684 NCE(vmovq, 0, 1, (VMOV), neon_mov),
19685
c921be7d
NC
19686#undef THUMB_VARIANT
19687#define THUMB_VARIANT & fpu_neon_ext_v1
19688#undef ARM_VARIANT
19689#define ARM_VARIANT & fpu_neon_ext_v1
19690
5287ad62
JB
19691 /* Data processing with three registers of the same length. */
19692 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
19693 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
19694 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
19695 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19696 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19697 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19698 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19699 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19700 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19701 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
19702 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19703 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
19704 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19705 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
627907b7
JB
19706 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19707 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
19708 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19709 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
5287ad62
JB
19710 /* If not immediate, fall back to neon_dyadic_i64_su.
19711 shl_imm should accept I8 I16 I32 I64,
19712 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
21d799b5
NC
19713 nUF(vshl, _vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
19714 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
19715 nUF(vqshl, _vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
19716 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
5287ad62 19717 /* Logic ops, types optional & ignored. */
4316f0d2
DG
19718 nUF(vand, _vand, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19719 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19720 nUF(vbic, _vbic, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19721 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19722 nUF(vorr, _vorr, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19723 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19724 nUF(vorn, _vorn, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19725 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19726 nUF(veor, _veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
19727 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
5287ad62
JB
19728 /* Bitfield ops, untyped. */
19729 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19730 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19731 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19732 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19733 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19734 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19735 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32. */
21d799b5
NC
19736 nUF(vabd, _vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19737 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19738 nUF(vmax, _vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19739 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19740 nUF(vmin, _vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19741 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
5287ad62
JB
19742 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
19743 back to neon_dyadic_if_su. */
21d799b5
NC
19744 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19745 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19746 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19747 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19748 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19749 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
19750 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19751 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 19752 /* Comparison. Type I8 I16 I32 F32. */
21d799b5
NC
19753 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
19754 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
5287ad62 19755 /* As above, D registers only. */
21d799b5
NC
19756 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
19757 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
5287ad62 19758 /* Int and float variants, signedness unimportant. */
21d799b5
NC
19759 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19760 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19761 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
5287ad62 19762 /* Add/sub take types I8 I16 I32 I64 F32. */
21d799b5
NC
19763 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
19764 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
19765 /* vtst takes sizes 8, 16, 32. */
19766 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
19767 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
19768 /* VMUL takes I8 I16 I32 F32 P8. */
21d799b5 19769 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62 19770 /* VQD{R}MULH takes S16 S32. */
21d799b5
NC
19771 nUF(vqdmulh, _vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19772 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
19773 nUF(vqrdmulh, _vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19774 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
5287ad62
JB
19775 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19776 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
19777 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19778 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
92559b5b
PB
19779 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19780 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
19781 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19782 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
5287ad62
JB
19783 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19784 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19785 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19786 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19787
19788 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 19789 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
19790 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
19791
19792 /* Data processing with two registers and a shift amount. */
19793 /* Right shifts, and variants with rounding.
19794 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
19795 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19796 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19797 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19798 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19799 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19800 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19801 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19802 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19803 /* Shift and insert. Sizes accepted 8 16 32 64. */
19804 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
19805 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
19806 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
19807 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
19808 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
19809 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
19810 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
19811 /* Right shift immediate, saturating & narrowing, with rounding variants.
19812 Types accepted S16 S32 S64 U16 U32 U64. */
19813 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19814 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19815 /* As above, unsigned. Types accepted S16 S32 S64. */
19816 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19817 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19818 /* Right shift narrowing. Types accepted I16 I32 I64. */
19819 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19820 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19821 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
21d799b5 19822 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
5287ad62 19823 /* CVT with optional immediate for fixed-point variant. */
21d799b5 19824 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 19825
4316f0d2
DG
19826 nUF(vmvn, _vmvn, 2, (RNDQ, RNDQ_Ibig), neon_mvn),
19827 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
5287ad62
JB
19828
19829 /* Data processing, three registers of different lengths. */
19830 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
19831 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
19832 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
19833 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
19834 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
19835 /* If not scalar, fall back to neon_dyadic_long.
19836 Vector types as above, scalar types S16 S32 U16 U32. */
21d799b5
NC
19837 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
19838 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
5287ad62
JB
19839 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
19840 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19841 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19842 /* Dyadic, narrowing insns. Types I16 I32 I64. */
19843 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19844 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19845 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19846 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19847 /* Saturating doubling multiplies. Types S16 S32. */
21d799b5
NC
19848 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19849 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19850 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
5287ad62
JB
19851 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
19852 S16 S32 U16 U32. */
21d799b5 19853 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
5287ad62
JB
19854
19855 /* Extract. Size 8. */
3b8d421e
PB
19856 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
19857 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
5287ad62
JB
19858
19859 /* Two registers, miscellaneous. */
19860 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
19861 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
19862 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
19863 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
19864 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
19865 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
19866 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
19867 /* Vector replicate. Sizes 8 16 32. */
21d799b5
NC
19868 nCE(vdup, _vdup, 2, (RNDQ, RR_RNSC), neon_dup),
19869 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
5287ad62
JB
19870 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
19871 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
19872 /* VMOVN. Types I16 I32 I64. */
21d799b5 19873 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
5287ad62 19874 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
21d799b5 19875 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
5287ad62 19876 /* VQMOVUN. Types S16 S32 S64. */
21d799b5 19877 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
5287ad62
JB
19878 /* VZIP / VUZP. Sizes 8 16 32. */
19879 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
19880 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
19881 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
19882 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
19883 /* VQABS / VQNEG. Types S8 S16 S32. */
19884 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19885 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
19886 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19887 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
19888 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
19889 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
19890 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
19891 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
19892 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
19893 /* Reciprocal estimates. Types U32 F32. */
19894 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
19895 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
19896 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
19897 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
19898 /* VCLS. Types S8 S16 S32. */
19899 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
19900 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
19901 /* VCLZ. Types I8 I16 I32. */
19902 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
19903 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
19904 /* VCNT. Size 8. */
19905 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
19906 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
19907 /* Two address, untyped. */
19908 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
19909 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
19910 /* VTRN. Sizes 8 16 32. */
21d799b5
NC
19911 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
19912 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
5287ad62
JB
19913
19914 /* Table lookup. Size 8. */
19915 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19916 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19917
c921be7d
NC
19918#undef THUMB_VARIANT
19919#define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
19920#undef ARM_VARIANT
19921#define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
19922
5287ad62 19923 /* Neon element/structure load/store. */
21d799b5
NC
19924 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19925 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19926 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19927 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19928 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19929 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19930 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
19931 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
5287ad62 19932
c921be7d 19933#undef THUMB_VARIANT
74db7efb
NC
19934#define THUMB_VARIANT & fpu_vfp_ext_v3xd
19935#undef ARM_VARIANT
19936#define ARM_VARIANT & fpu_vfp_ext_v3xd
62f3b8c8
PB
19937 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
19938 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19939 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19940 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19941 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19942 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19943 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19944 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19945 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19946
74db7efb 19947#undef THUMB_VARIANT
c921be7d
NC
19948#define THUMB_VARIANT & fpu_vfp_ext_v3
19949#undef ARM_VARIANT
19950#define ARM_VARIANT & fpu_vfp_ext_v3
19951
21d799b5 19952 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
21d799b5 19953 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19954 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19955 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19956 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19957 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19958 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19959 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19960 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 19961
74db7efb
NC
19962#undef ARM_VARIANT
19963#define ARM_VARIANT & fpu_vfp_ext_fma
19964#undef THUMB_VARIANT
19965#define THUMB_VARIANT & fpu_vfp_ext_fma
62f3b8c8
PB
19966 /* Mnemonics shared by Neon and VFP. These are included in the
19967 VFP FMA variant; NEON and VFP FMA always includes the NEON
19968 FMA instructions. */
19969 nCEF(vfma, _vfma, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19970 nCEF(vfms, _vfms, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19971 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
19972 the v form should always be used. */
19973 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19974 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19975 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19976 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19977 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19978 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19979
5287ad62 19980#undef THUMB_VARIANT
c921be7d
NC
19981#undef ARM_VARIANT
19982#define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
19983
21d799b5
NC
19984 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19985 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19986 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19987 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19988 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19989 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19990 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
19991 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205 19992
c921be7d
NC
19993#undef ARM_VARIANT
19994#define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
19995
21d799b5
NC
19996 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
19997 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
19998 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
19999 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
20000 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
20001 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
20002 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
20003 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
20004 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
74db7efb
NC
20005 cCE("textrmub",e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20006 cCE("textrmuh",e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20007 cCE("textrmuw",e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20008 cCE("textrmsb",e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
20009 cCE("textrmsh",e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
20010 cCE("textrmsw",e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
21d799b5
NC
20011 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20012 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20013 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20014 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
20015 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
20016 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20017 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20018 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20019 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20020 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20021 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
74db7efb
NC
20022 cCE("tmovmskb",e100030, 2, (RR, RIWR), rd_rn),
20023 cCE("tmovmskh",e500030, 2, (RR, RIWR), rd_rn),
20024 cCE("tmovmskw",e900030, 2, (RR, RIWR), rd_rn),
21d799b5
NC
20025 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
20026 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
20027 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
20028 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
20029 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
20030 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
20031 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
20032 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
20033 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20034 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20035 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20036 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20037 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20038 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20039 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20040 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20041 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20042 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
74db7efb
NC
20043 cCE("walignr0",e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20044 cCE("walignr1",e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20045 cCE("walignr2",ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20046 cCE("walignr3",eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20047 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20048 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20049 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20050 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20051 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20052 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20053 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20054 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20055 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
74db7efb
NC
20056 cCE("wcmpgtub",e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20057 cCE("wcmpgtuh",e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20058 cCE("wcmpgtuw",e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20059 cCE("wcmpgtsb",e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20060 cCE("wcmpgtsh",e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20061 cCE("wcmpgtsw",eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20062 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20063 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20064 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
20065 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
20066 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20067 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20068 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20069 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20070 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20071 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20072 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20073 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20074 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20075 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20076 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20077 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20078 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20079 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20080 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20081 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20082 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20083 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20084 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
20085 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20086 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20087 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20088 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20089 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
74db7efb
NC
20090 cCE("wpackhss",e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20091 cCE("wpackhus",e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20092 cCE("wpackwss",eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20093 cCE("wpackwus",e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20094 cCE("wpackdss",ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20095 cCE("wpackdus",ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20096 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20097 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20098 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20099 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20100 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20101 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20102 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20103 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20104 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20105 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20106 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
20107 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20108 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20109 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20110 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20111 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20112 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20113 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20114 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20115 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20116 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20117 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20118 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20119 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20120 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20121 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20122 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20123 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20124 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20125 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20126 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20127 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
20128 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
20129 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20130 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20131 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20132 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20133 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20134 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20135 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20136 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20137 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20138 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
20139 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
20140 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
20141 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
20142 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
20143 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
20144 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20145 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20146 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20147 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
20148 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
20149 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
20150 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
20151 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
20152 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
20153 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20154 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20155 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20156 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20157 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205 20158
c921be7d
NC
20159#undef ARM_VARIANT
20160#define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
20161
21d799b5
NC
20162 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
20163 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
20164 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
20165 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
20166 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
20167 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
20168 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20169 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20170 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20171 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20172 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20173 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20174 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20175 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20176 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20177 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20178 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20179 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20180 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20181 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20182 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
20183 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20184 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20185 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20186 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20187 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20188 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20189 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20190 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20191 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20192 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20193 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20194 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20195 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20196 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20197 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20198 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20199 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20200 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20201 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20202 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20203 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20204 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20205 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20206 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20207 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20208 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20209 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20210 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20211 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20212 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20213 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20214 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20215 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20216 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20217 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20218 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
2d447fca 20219
c921be7d
NC
20220#undef ARM_VARIANT
20221#define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
20222
21d799b5
NC
20223 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
20224 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
20225 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
20226 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
20227 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
20228 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
20229 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
20230 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
20231 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
20232 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
20233 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
20234 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
20235 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
20236 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
74db7efb
NC
20237 cCE("cfmv64lr",e000510, 2, (RMDX, RR), rn_rd),
20238 cCE("cfmvr64l",e100510, 2, (RR, RMDX), rd_rn),
20239 cCE("cfmv64hr",e000530, 2, (RMDX, RR), rn_rd),
20240 cCE("cfmvr64h",e100530, 2, (RR, RMDX), rd_rn),
20241 cCE("cfmval32",e200440, 2, (RMAX, RMFX), rd_rn),
20242 cCE("cfmv32al",e100440, 2, (RMFX, RMAX), rd_rn),
20243 cCE("cfmvam32",e200460, 2, (RMAX, RMFX), rd_rn),
20244 cCE("cfmv32am",e100460, 2, (RMFX, RMAX), rd_rn),
20245 cCE("cfmvah32",e200480, 2, (RMAX, RMFX), rd_rn),
20246 cCE("cfmv32ah",e100480, 2, (RMFX, RMAX), rd_rn),
21d799b5
NC
20247 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
20248 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
20249 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
20250 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
74db7efb
NC
20251 cCE("cfmvsc32",e2004e0, 2, (RMDS, RMDX), mav_dspsc),
20252 cCE("cfmv32sc",e1004e0, 2, (RMDX, RMDS), rd),
21d799b5
NC
20253 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
20254 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
20255 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
20256 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
74db7efb
NC
20257 cCE("cfcvt32s",e000480, 2, (RMF, RMFX), rd_rn),
20258 cCE("cfcvt32d",e0004a0, 2, (RMD, RMFX), rd_rn),
20259 cCE("cfcvt64s",e0004c0, 2, (RMF, RMDX), rd_rn),
20260 cCE("cfcvt64d",e0004e0, 2, (RMD, RMDX), rd_rn),
20261 cCE("cfcvts32",e100580, 2, (RMFX, RMF), rd_rn),
20262 cCE("cfcvtd32",e1005a0, 2, (RMFX, RMD), rd_rn),
21d799b5
NC
20263 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
20264 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
74db7efb
NC
20265 cCE("cfrshl32",e000550, 3, (RMFX, RMFX, RR), mav_triple),
20266 cCE("cfrshl64",e000570, 3, (RMDX, RMDX, RR), mav_triple),
21d799b5
NC
20267 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
20268 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
20269 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
20270 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
20271 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
20272 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
20273 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
20274 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
20275 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
20276 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
20277 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
20278 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
20279 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
20280 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
20281 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
20282 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
20283 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
20284 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
20285 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
20286 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
20287 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
20288 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
20289 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
20290 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
20291 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
20292 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
20293 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
20294 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
74db7efb
NC
20295 cCE("cfmadd32",e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
20296 cCE("cfmsub32",e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
21d799b5
NC
20297 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
20298 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
c19d1205
ZW
20299};
20300#undef ARM_VARIANT
20301#undef THUMB_VARIANT
20302#undef TCE
c19d1205
ZW
20303#undef TUE
20304#undef TUF
20305#undef TCC
8f06b2d8 20306#undef cCE
e3cb604e
PB
20307#undef cCL
20308#undef C3E
c19d1205
ZW
20309#undef CE
20310#undef CM
20311#undef UE
20312#undef UF
20313#undef UT
5287ad62
JB
20314#undef NUF
20315#undef nUF
20316#undef NCE
20317#undef nCE
c19d1205
ZW
20318#undef OPS0
20319#undef OPS1
20320#undef OPS2
20321#undef OPS3
20322#undef OPS4
20323#undef OPS5
20324#undef OPS6
20325#undef do_0
20326\f
20327/* MD interface: bits in the object file. */
bfae80f2 20328
c19d1205
ZW
20329/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
20330 for use in the a.out file, and stores them in the array pointed to by buf.
20331 This knows about the endian-ness of the target machine and does
20332 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
20333 2 (short) and 4 (long) Floating numbers are put out as a series of
20334 LITTLENUMS (shorts, here at least). */
b99bd4ef 20335
c19d1205
ZW
20336void
20337md_number_to_chars (char * buf, valueT val, int n)
20338{
20339 if (target_big_endian)
20340 number_to_chars_bigendian (buf, val, n);
20341 else
20342 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
20343}
20344
c19d1205
ZW
20345static valueT
20346md_chars_to_number (char * buf, int n)
bfae80f2 20347{
c19d1205
ZW
20348 valueT result = 0;
20349 unsigned char * where = (unsigned char *) buf;
bfae80f2 20350
c19d1205 20351 if (target_big_endian)
b99bd4ef 20352 {
c19d1205
ZW
20353 while (n--)
20354 {
20355 result <<= 8;
20356 result |= (*where++ & 255);
20357 }
b99bd4ef 20358 }
c19d1205 20359 else
b99bd4ef 20360 {
c19d1205
ZW
20361 while (n--)
20362 {
20363 result <<= 8;
20364 result |= (where[n] & 255);
20365 }
bfae80f2 20366 }
b99bd4ef 20367
c19d1205 20368 return result;
bfae80f2 20369}
b99bd4ef 20370
c19d1205 20371/* MD interface: Sections. */
b99bd4ef 20372
fa94de6b
RM
20373/* Calculate the maximum variable size (i.e., excluding fr_fix)
20374 that an rs_machine_dependent frag may reach. */
20375
20376unsigned int
20377arm_frag_max_var (fragS *fragp)
20378{
20379 /* We only use rs_machine_dependent for variable-size Thumb instructions,
20380 which are either THUMB_SIZE (2) or INSN_SIZE (4).
20381
20382 Note that we generate relaxable instructions even for cases that don't
20383 really need it, like an immediate that's a trivial constant. So we're
20384 overestimating the instruction size for some of those cases. Rather
20385 than putting more intelligence here, it would probably be better to
20386 avoid generating a relaxation frag in the first place when it can be
20387 determined up front that a short instruction will suffice. */
20388
20389 gas_assert (fragp->fr_type == rs_machine_dependent);
20390 return INSN_SIZE;
20391}
20392
0110f2b8
PB
20393/* Estimate the size of a frag before relaxing. Assume everything fits in
20394 2 bytes. */
20395
c19d1205 20396int
0110f2b8 20397md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
20398 segT segtype ATTRIBUTE_UNUSED)
20399{
0110f2b8
PB
20400 fragp->fr_var = 2;
20401 return 2;
20402}
20403
20404/* Convert a machine dependent frag. */
20405
20406void
20407md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
20408{
20409 unsigned long insn;
20410 unsigned long old_op;
20411 char *buf;
20412 expressionS exp;
20413 fixS *fixp;
20414 int reloc_type;
20415 int pc_rel;
20416 int opcode;
20417
20418 buf = fragp->fr_literal + fragp->fr_fix;
20419
20420 old_op = bfd_get_16(abfd, buf);
5f4273c7
NC
20421 if (fragp->fr_symbol)
20422 {
0110f2b8
PB
20423 exp.X_op = O_symbol;
20424 exp.X_add_symbol = fragp->fr_symbol;
5f4273c7
NC
20425 }
20426 else
20427 {
0110f2b8 20428 exp.X_op = O_constant;
5f4273c7 20429 }
0110f2b8
PB
20430 exp.X_add_number = fragp->fr_offset;
20431 opcode = fragp->fr_subtype;
20432 switch (opcode)
20433 {
20434 case T_MNEM_ldr_pc:
20435 case T_MNEM_ldr_pc2:
20436 case T_MNEM_ldr_sp:
20437 case T_MNEM_str_sp:
20438 case T_MNEM_ldr:
20439 case T_MNEM_ldrb:
20440 case T_MNEM_ldrh:
20441 case T_MNEM_str:
20442 case T_MNEM_strb:
20443 case T_MNEM_strh:
20444 if (fragp->fr_var == 4)
20445 {
5f4273c7 20446 insn = THUMB_OP32 (opcode);
0110f2b8
PB
20447 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
20448 {
20449 insn |= (old_op & 0x700) << 4;
20450 }
20451 else
20452 {
20453 insn |= (old_op & 7) << 12;
20454 insn |= (old_op & 0x38) << 13;
20455 }
20456 insn |= 0x00000c00;
20457 put_thumb32_insn (buf, insn);
20458 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
20459 }
20460 else
20461 {
20462 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
20463 }
20464 pc_rel = (opcode == T_MNEM_ldr_pc2);
20465 break;
20466 case T_MNEM_adr:
20467 if (fragp->fr_var == 4)
20468 {
20469 insn = THUMB_OP32 (opcode);
20470 insn |= (old_op & 0xf0) << 4;
20471 put_thumb32_insn (buf, insn);
20472 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
20473 }
20474 else
20475 {
20476 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20477 exp.X_add_number -= 4;
20478 }
20479 pc_rel = 1;
20480 break;
20481 case T_MNEM_mov:
20482 case T_MNEM_movs:
20483 case T_MNEM_cmp:
20484 case T_MNEM_cmn:
20485 if (fragp->fr_var == 4)
20486 {
20487 int r0off = (opcode == T_MNEM_mov
20488 || opcode == T_MNEM_movs) ? 0 : 8;
20489 insn = THUMB_OP32 (opcode);
20490 insn = (insn & 0xe1ffffff) | 0x10000000;
20491 insn |= (old_op & 0x700) << r0off;
20492 put_thumb32_insn (buf, insn);
20493 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
20494 }
20495 else
20496 {
20497 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
20498 }
20499 pc_rel = 0;
20500 break;
20501 case T_MNEM_b:
20502 if (fragp->fr_var == 4)
20503 {
20504 insn = THUMB_OP32(opcode);
20505 put_thumb32_insn (buf, insn);
20506 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
20507 }
20508 else
20509 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
20510 pc_rel = 1;
20511 break;
20512 case T_MNEM_bcond:
20513 if (fragp->fr_var == 4)
20514 {
20515 insn = THUMB_OP32(opcode);
20516 insn |= (old_op & 0xf00) << 14;
20517 put_thumb32_insn (buf, insn);
20518 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
20519 }
20520 else
20521 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
20522 pc_rel = 1;
20523 break;
20524 case T_MNEM_add_sp:
20525 case T_MNEM_add_pc:
20526 case T_MNEM_inc_sp:
20527 case T_MNEM_dec_sp:
20528 if (fragp->fr_var == 4)
20529 {
20530 /* ??? Choose between add and addw. */
20531 insn = THUMB_OP32 (opcode);
20532 insn |= (old_op & 0xf0) << 4;
20533 put_thumb32_insn (buf, insn);
16805f35
PB
20534 if (opcode == T_MNEM_add_pc)
20535 reloc_type = BFD_RELOC_ARM_T32_IMM12;
20536 else
20537 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
20538 }
20539 else
20540 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20541 pc_rel = 0;
20542 break;
20543
20544 case T_MNEM_addi:
20545 case T_MNEM_addis:
20546 case T_MNEM_subi:
20547 case T_MNEM_subis:
20548 if (fragp->fr_var == 4)
20549 {
20550 insn = THUMB_OP32 (opcode);
20551 insn |= (old_op & 0xf0) << 4;
20552 insn |= (old_op & 0xf) << 16;
20553 put_thumb32_insn (buf, insn);
16805f35
PB
20554 if (insn & (1 << 20))
20555 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
20556 else
20557 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
20558 }
20559 else
20560 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20561 pc_rel = 0;
20562 break;
20563 default:
5f4273c7 20564 abort ();
0110f2b8
PB
20565 }
20566 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
21d799b5 20567 (enum bfd_reloc_code_real) reloc_type);
0110f2b8
PB
20568 fixp->fx_file = fragp->fr_file;
20569 fixp->fx_line = fragp->fr_line;
20570 fragp->fr_fix += fragp->fr_var;
3cfdb781
TG
20571
20572 /* Set whether we use thumb-2 ISA based on final relaxation results. */
20573 if (thumb_mode && fragp->fr_var == 4 && no_cpu_selected ()
20574 && !ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_t2))
20575 ARM_MERGE_FEATURE_SETS (arm_arch_used, thumb_arch_used, arm_ext_v6t2);
0110f2b8
PB
20576}
20577
20578/* Return the size of a relaxable immediate operand instruction.
20579 SHIFT and SIZE specify the form of the allowable immediate. */
20580static int
20581relax_immediate (fragS *fragp, int size, int shift)
20582{
20583 offsetT offset;
20584 offsetT mask;
20585 offsetT low;
20586
20587 /* ??? Should be able to do better than this. */
20588 if (fragp->fr_symbol)
20589 return 4;
20590
20591 low = (1 << shift) - 1;
20592 mask = (1 << (shift + size)) - (1 << shift);
20593 offset = fragp->fr_offset;
20594 /* Force misaligned offsets to 32-bit variant. */
20595 if (offset & low)
5e77afaa 20596 return 4;
0110f2b8
PB
20597 if (offset & ~mask)
20598 return 4;
20599 return 2;
20600}
20601
5e77afaa
PB
20602/* Get the address of a symbol during relaxation. */
20603static addressT
5f4273c7 20604relaxed_symbol_addr (fragS *fragp, long stretch)
5e77afaa
PB
20605{
20606 fragS *sym_frag;
20607 addressT addr;
20608 symbolS *sym;
20609
20610 sym = fragp->fr_symbol;
20611 sym_frag = symbol_get_frag (sym);
20612 know (S_GET_SEGMENT (sym) != absolute_section
20613 || sym_frag == &zero_address_frag);
20614 addr = S_GET_VALUE (sym) + fragp->fr_offset;
20615
20616 /* If frag has yet to be reached on this pass, assume it will
20617 move by STRETCH just as we did. If this is not so, it will
20618 be because some frag between grows, and that will force
20619 another pass. */
20620
20621 if (stretch != 0
20622 && sym_frag->relax_marker != fragp->relax_marker)
4396b686
PB
20623 {
20624 fragS *f;
20625
20626 /* Adjust stretch for any alignment frag. Note that if have
20627 been expanding the earlier code, the symbol may be
20628 defined in what appears to be an earlier frag. FIXME:
20629 This doesn't handle the fr_subtype field, which specifies
20630 a maximum number of bytes to skip when doing an
20631 alignment. */
20632 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
20633 {
20634 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
20635 {
20636 if (stretch < 0)
20637 stretch = - ((- stretch)
20638 & ~ ((1 << (int) f->fr_offset) - 1));
20639 else
20640 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
20641 if (stretch == 0)
20642 break;
20643 }
20644 }
20645 if (f != NULL)
20646 addr += stretch;
20647 }
5e77afaa
PB
20648
20649 return addr;
20650}
20651
0110f2b8
PB
20652/* Return the size of a relaxable adr pseudo-instruction or PC-relative
20653 load. */
20654static int
5e77afaa 20655relax_adr (fragS *fragp, asection *sec, long stretch)
0110f2b8
PB
20656{
20657 addressT addr;
20658 offsetT val;
20659
20660 /* Assume worst case for symbols not known to be in the same section. */
974da60d
NC
20661 if (fragp->fr_symbol == NULL
20662 || !S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20663 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20664 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20665 return 4;
20666
5f4273c7 20667 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20668 addr = fragp->fr_address + fragp->fr_fix;
20669 addr = (addr + 4) & ~3;
5e77afaa 20670 /* Force misaligned targets to 32-bit variant. */
0110f2b8 20671 if (val & 3)
5e77afaa 20672 return 4;
0110f2b8
PB
20673 val -= addr;
20674 if (val < 0 || val > 1020)
20675 return 4;
20676 return 2;
20677}
20678
20679/* Return the size of a relaxable add/sub immediate instruction. */
20680static int
20681relax_addsub (fragS *fragp, asection *sec)
20682{
20683 char *buf;
20684 int op;
20685
20686 buf = fragp->fr_literal + fragp->fr_fix;
20687 op = bfd_get_16(sec->owner, buf);
20688 if ((op & 0xf) == ((op >> 4) & 0xf))
20689 return relax_immediate (fragp, 8, 0);
20690 else
20691 return relax_immediate (fragp, 3, 0);
20692}
20693
e83a675f
RE
20694/* Return TRUE iff the definition of symbol S could be pre-empted
20695 (overridden) at link or load time. */
20696static bfd_boolean
20697symbol_preemptible (symbolS *s)
20698{
20699 /* Weak symbols can always be pre-empted. */
20700 if (S_IS_WEAK (s))
20701 return TRUE;
20702
20703 /* Non-global symbols cannot be pre-empted. */
20704 if (! S_IS_EXTERNAL (s))
20705 return FALSE;
20706
20707#ifdef OBJ_ELF
20708 /* In ELF, a global symbol can be marked protected, or private. In that
20709 case it can't be pre-empted (other definitions in the same link unit
20710 would violate the ODR). */
20711 if (ELF_ST_VISIBILITY (S_GET_OTHER (s)) > STV_DEFAULT)
20712 return FALSE;
20713#endif
20714
20715 /* Other global symbols might be pre-empted. */
20716 return TRUE;
20717}
0110f2b8
PB
20718
20719/* Return the size of a relaxable branch instruction. BITS is the
20720 size of the offset field in the narrow instruction. */
20721
20722static int
5e77afaa 20723relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
0110f2b8
PB
20724{
20725 addressT addr;
20726 offsetT val;
20727 offsetT limit;
20728
20729 /* Assume worst case for symbols not known to be in the same section. */
5f4273c7 20730 if (!S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20731 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20732 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20733 return 4;
20734
267bf995 20735#ifdef OBJ_ELF
e83a675f 20736 /* A branch to a function in ARM state will require interworking. */
267bf995
RR
20737 if (S_IS_DEFINED (fragp->fr_symbol)
20738 && ARM_IS_FUNC (fragp->fr_symbol))
20739 return 4;
e83a675f 20740#endif
0d9b4b55 20741
e83a675f 20742 if (symbol_preemptible (fragp->fr_symbol))
0d9b4b55 20743 return 4;
267bf995 20744
5f4273c7 20745 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20746 addr = fragp->fr_address + fragp->fr_fix + 4;
20747 val -= addr;
20748
20749 /* Offset is a signed value *2 */
20750 limit = 1 << bits;
20751 if (val >= limit || val < -limit)
20752 return 4;
20753 return 2;
20754}
20755
20756
20757/* Relax a machine dependent frag. This returns the amount by which
20758 the current size of the frag should change. */
20759
20760int
5e77afaa 20761arm_relax_frag (asection *sec, fragS *fragp, long stretch)
0110f2b8
PB
20762{
20763 int oldsize;
20764 int newsize;
20765
20766 oldsize = fragp->fr_var;
20767 switch (fragp->fr_subtype)
20768 {
20769 case T_MNEM_ldr_pc2:
5f4273c7 20770 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20771 break;
20772 case T_MNEM_ldr_pc:
20773 case T_MNEM_ldr_sp:
20774 case T_MNEM_str_sp:
5f4273c7 20775 newsize = relax_immediate (fragp, 8, 2);
0110f2b8
PB
20776 break;
20777 case T_MNEM_ldr:
20778 case T_MNEM_str:
5f4273c7 20779 newsize = relax_immediate (fragp, 5, 2);
0110f2b8
PB
20780 break;
20781 case T_MNEM_ldrh:
20782 case T_MNEM_strh:
5f4273c7 20783 newsize = relax_immediate (fragp, 5, 1);
0110f2b8
PB
20784 break;
20785 case T_MNEM_ldrb:
20786 case T_MNEM_strb:
5f4273c7 20787 newsize = relax_immediate (fragp, 5, 0);
0110f2b8
PB
20788 break;
20789 case T_MNEM_adr:
5f4273c7 20790 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20791 break;
20792 case T_MNEM_mov:
20793 case T_MNEM_movs:
20794 case T_MNEM_cmp:
20795 case T_MNEM_cmn:
5f4273c7 20796 newsize = relax_immediate (fragp, 8, 0);
0110f2b8
PB
20797 break;
20798 case T_MNEM_b:
5f4273c7 20799 newsize = relax_branch (fragp, sec, 11, stretch);
0110f2b8
PB
20800 break;
20801 case T_MNEM_bcond:
5f4273c7 20802 newsize = relax_branch (fragp, sec, 8, stretch);
0110f2b8
PB
20803 break;
20804 case T_MNEM_add_sp:
20805 case T_MNEM_add_pc:
20806 newsize = relax_immediate (fragp, 8, 2);
20807 break;
20808 case T_MNEM_inc_sp:
20809 case T_MNEM_dec_sp:
20810 newsize = relax_immediate (fragp, 7, 2);
20811 break;
20812 case T_MNEM_addi:
20813 case T_MNEM_addis:
20814 case T_MNEM_subi:
20815 case T_MNEM_subis:
20816 newsize = relax_addsub (fragp, sec);
20817 break;
20818 default:
5f4273c7 20819 abort ();
0110f2b8 20820 }
5e77afaa
PB
20821
20822 fragp->fr_var = newsize;
20823 /* Freeze wide instructions that are at or before the same location as
20824 in the previous pass. This avoids infinite loops.
5f4273c7
NC
20825 Don't freeze them unconditionally because targets may be artificially
20826 misaligned by the expansion of preceding frags. */
5e77afaa 20827 if (stretch <= 0 && newsize > 2)
0110f2b8 20828 {
0110f2b8 20829 md_convert_frag (sec->owner, sec, fragp);
5f4273c7 20830 frag_wane (fragp);
0110f2b8 20831 }
5e77afaa 20832
0110f2b8 20833 return newsize - oldsize;
c19d1205 20834}
b99bd4ef 20835
c19d1205 20836/* Round up a section size to the appropriate boundary. */
b99bd4ef 20837
c19d1205
ZW
20838valueT
20839md_section_align (segT segment ATTRIBUTE_UNUSED,
20840 valueT size)
20841{
f0927246
NC
20842#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
20843 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
20844 {
20845 /* For a.out, force the section size to be aligned. If we don't do
20846 this, BFD will align it for us, but it will not write out the
20847 final bytes of the section. This may be a bug in BFD, but it is
20848 easier to fix it here since that is how the other a.out targets
20849 work. */
20850 int align;
20851
20852 align = bfd_get_section_alignment (stdoutput, segment);
20853 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
20854 }
c19d1205 20855#endif
f0927246
NC
20856
20857 return size;
bfae80f2 20858}
b99bd4ef 20859
c19d1205
ZW
20860/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
20861 of an rs_align_code fragment. */
20862
20863void
20864arm_handle_align (fragS * fragP)
bfae80f2 20865{
e7495e45
NS
20866 static char const arm_noop[2][2][4] =
20867 {
20868 { /* ARMv1 */
20869 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
20870 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
20871 },
20872 { /* ARMv6k */
20873 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
20874 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
20875 },
20876 };
20877 static char const thumb_noop[2][2][2] =
20878 {
20879 { /* Thumb-1 */
20880 {0xc0, 0x46}, /* LE */
20881 {0x46, 0xc0}, /* BE */
20882 },
20883 { /* Thumb-2 */
20884 {0x00, 0xbf}, /* LE */
20885 {0xbf, 0x00} /* BE */
20886 }
20887 };
20888 static char const wide_thumb_noop[2][4] =
20889 { /* Wide Thumb-2 */
20890 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
20891 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
20892 };
c921be7d 20893
e7495e45 20894 unsigned bytes, fix, noop_size;
c19d1205
ZW
20895 char * p;
20896 const char * noop;
e7495e45 20897 const char *narrow_noop = NULL;
cd000bff
DJ
20898#ifdef OBJ_ELF
20899 enum mstate state;
20900#endif
bfae80f2 20901
c19d1205 20902 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
20903 return;
20904
c19d1205
ZW
20905 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
20906 p = fragP->fr_literal + fragP->fr_fix;
20907 fix = 0;
bfae80f2 20908
c19d1205
ZW
20909 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
20910 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 20911
cd000bff 20912 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
8dc2430f 20913
cd000bff 20914 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
a737bd4d 20915 {
7f78eb34
JW
20916 if (ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
20917 ? selected_cpu : arm_arch_none, arm_ext_v6t2))
e7495e45
NS
20918 {
20919 narrow_noop = thumb_noop[1][target_big_endian];
20920 noop = wide_thumb_noop[target_big_endian];
20921 }
c19d1205 20922 else
e7495e45
NS
20923 noop = thumb_noop[0][target_big_endian];
20924 noop_size = 2;
cd000bff
DJ
20925#ifdef OBJ_ELF
20926 state = MAP_THUMB;
20927#endif
7ed4c4c5
NC
20928 }
20929 else
20930 {
7f78eb34
JW
20931 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
20932 ? selected_cpu : arm_arch_none,
20933 arm_ext_v6k) != 0]
e7495e45
NS
20934 [target_big_endian];
20935 noop_size = 4;
cd000bff
DJ
20936#ifdef OBJ_ELF
20937 state = MAP_ARM;
20938#endif
7ed4c4c5 20939 }
c921be7d 20940
e7495e45 20941 fragP->fr_var = noop_size;
c921be7d 20942
c19d1205 20943 if (bytes & (noop_size - 1))
7ed4c4c5 20944 {
c19d1205 20945 fix = bytes & (noop_size - 1);
cd000bff
DJ
20946#ifdef OBJ_ELF
20947 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
20948#endif
c19d1205
ZW
20949 memset (p, 0, fix);
20950 p += fix;
20951 bytes -= fix;
a737bd4d 20952 }
a737bd4d 20953
e7495e45
NS
20954 if (narrow_noop)
20955 {
20956 if (bytes & noop_size)
20957 {
20958 /* Insert a narrow noop. */
20959 memcpy (p, narrow_noop, noop_size);
20960 p += noop_size;
20961 bytes -= noop_size;
20962 fix += noop_size;
20963 }
20964
20965 /* Use wide noops for the remainder */
20966 noop_size = 4;
20967 }
20968
c19d1205 20969 while (bytes >= noop_size)
a737bd4d 20970 {
c19d1205
ZW
20971 memcpy (p, noop, noop_size);
20972 p += noop_size;
20973 bytes -= noop_size;
20974 fix += noop_size;
a737bd4d
NC
20975 }
20976
c19d1205 20977 fragP->fr_fix += fix;
a737bd4d
NC
20978}
20979
c19d1205
ZW
20980/* Called from md_do_align. Used to create an alignment
20981 frag in a code section. */
20982
20983void
20984arm_frag_align_code (int n, int max)
bfae80f2 20985{
c19d1205 20986 char * p;
7ed4c4c5 20987
c19d1205 20988 /* We assume that there will never be a requirement
6ec8e702 20989 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
c19d1205 20990 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
6ec8e702
NC
20991 {
20992 char err_msg[128];
20993
fa94de6b 20994 sprintf (err_msg,
477330fc
RM
20995 _("alignments greater than %d bytes not supported in .text sections."),
20996 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
20203fb9 20997 as_fatal ("%s", err_msg);
6ec8e702 20998 }
bfae80f2 20999
c19d1205
ZW
21000 p = frag_var (rs_align_code,
21001 MAX_MEM_FOR_RS_ALIGN_CODE,
21002 1,
21003 (relax_substateT) max,
21004 (symbolS *) NULL,
21005 (offsetT) n,
21006 (char *) NULL);
21007 *p = 0;
21008}
bfae80f2 21009
8dc2430f
NC
21010/* Perform target specific initialisation of a frag.
21011 Note - despite the name this initialisation is not done when the frag
21012 is created, but only when its type is assigned. A frag can be created
21013 and used a long time before its type is set, so beware of assuming that
21014 this initialisationis performed first. */
bfae80f2 21015
cd000bff
DJ
21016#ifndef OBJ_ELF
21017void
21018arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
21019{
21020 /* Record whether this frag is in an ARM or a THUMB area. */
2e98972e 21021 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
cd000bff
DJ
21022}
21023
21024#else /* OBJ_ELF is defined. */
c19d1205 21025void
cd000bff 21026arm_init_frag (fragS * fragP, int max_chars)
c19d1205 21027{
8dc2430f
NC
21028 /* If the current ARM vs THUMB mode has not already
21029 been recorded into this frag then do so now. */
cd000bff
DJ
21030 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
21031 {
21032 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
21033
21034 /* Record a mapping symbol for alignment frags. We will delete this
21035 later if the alignment ends up empty. */
21036 switch (fragP->fr_type)
21037 {
21038 case rs_align:
21039 case rs_align_test:
21040 case rs_fill:
21041 mapping_state_2 (MAP_DATA, max_chars);
21042 break;
21043 case rs_align_code:
21044 mapping_state_2 (thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
21045 break;
21046 default:
21047 break;
21048 }
21049 }
bfae80f2
RE
21050}
21051
c19d1205
ZW
21052/* When we change sections we need to issue a new mapping symbol. */
21053
21054void
21055arm_elf_change_section (void)
bfae80f2 21056{
c19d1205
ZW
21057 /* Link an unlinked unwind index table section to the .text section. */
21058 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
21059 && elf_linked_to_section (now_seg) == NULL)
21060 elf_linked_to_section (now_seg) = text_section;
bfae80f2
RE
21061}
21062
c19d1205
ZW
21063int
21064arm_elf_section_type (const char * str, size_t len)
e45d0630 21065{
c19d1205
ZW
21066 if (len == 5 && strncmp (str, "exidx", 5) == 0)
21067 return SHT_ARM_EXIDX;
e45d0630 21068
c19d1205
ZW
21069 return -1;
21070}
21071\f
21072/* Code to deal with unwinding tables. */
e45d0630 21073
c19d1205 21074static void add_unwind_adjustsp (offsetT);
e45d0630 21075
5f4273c7 21076/* Generate any deferred unwind frame offset. */
e45d0630 21077
bfae80f2 21078static void
c19d1205 21079flush_pending_unwind (void)
bfae80f2 21080{
c19d1205 21081 offsetT offset;
bfae80f2 21082
c19d1205
ZW
21083 offset = unwind.pending_offset;
21084 unwind.pending_offset = 0;
21085 if (offset != 0)
21086 add_unwind_adjustsp (offset);
bfae80f2
RE
21087}
21088
c19d1205
ZW
21089/* Add an opcode to this list for this function. Two-byte opcodes should
21090 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
21091 order. */
21092
bfae80f2 21093static void
c19d1205 21094add_unwind_opcode (valueT op, int length)
bfae80f2 21095{
c19d1205
ZW
21096 /* Add any deferred stack adjustment. */
21097 if (unwind.pending_offset)
21098 flush_pending_unwind ();
bfae80f2 21099
c19d1205 21100 unwind.sp_restored = 0;
bfae80f2 21101
c19d1205 21102 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 21103 {
c19d1205
ZW
21104 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
21105 if (unwind.opcodes)
21d799b5 21106 unwind.opcodes = (unsigned char *) xrealloc (unwind.opcodes,
477330fc 21107 unwind.opcode_alloc);
c19d1205 21108 else
21d799b5 21109 unwind.opcodes = (unsigned char *) xmalloc (unwind.opcode_alloc);
bfae80f2 21110 }
c19d1205 21111 while (length > 0)
bfae80f2 21112 {
c19d1205
ZW
21113 length--;
21114 unwind.opcodes[unwind.opcode_count] = op & 0xff;
21115 op >>= 8;
21116 unwind.opcode_count++;
bfae80f2 21117 }
bfae80f2
RE
21118}
21119
c19d1205
ZW
21120/* Add unwind opcodes to adjust the stack pointer. */
21121
bfae80f2 21122static void
c19d1205 21123add_unwind_adjustsp (offsetT offset)
bfae80f2 21124{
c19d1205 21125 valueT op;
bfae80f2 21126
c19d1205 21127 if (offset > 0x200)
bfae80f2 21128 {
c19d1205
ZW
21129 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
21130 char bytes[5];
21131 int n;
21132 valueT o;
bfae80f2 21133
c19d1205
ZW
21134 /* Long form: 0xb2, uleb128. */
21135 /* This might not fit in a word so add the individual bytes,
21136 remembering the list is built in reverse order. */
21137 o = (valueT) ((offset - 0x204) >> 2);
21138 if (o == 0)
21139 add_unwind_opcode (0, 1);
bfae80f2 21140
c19d1205
ZW
21141 /* Calculate the uleb128 encoding of the offset. */
21142 n = 0;
21143 while (o)
21144 {
21145 bytes[n] = o & 0x7f;
21146 o >>= 7;
21147 if (o)
21148 bytes[n] |= 0x80;
21149 n++;
21150 }
21151 /* Add the insn. */
21152 for (; n; n--)
21153 add_unwind_opcode (bytes[n - 1], 1);
21154 add_unwind_opcode (0xb2, 1);
21155 }
21156 else if (offset > 0x100)
bfae80f2 21157 {
c19d1205
ZW
21158 /* Two short opcodes. */
21159 add_unwind_opcode (0x3f, 1);
21160 op = (offset - 0x104) >> 2;
21161 add_unwind_opcode (op, 1);
bfae80f2 21162 }
c19d1205
ZW
21163 else if (offset > 0)
21164 {
21165 /* Short opcode. */
21166 op = (offset - 4) >> 2;
21167 add_unwind_opcode (op, 1);
21168 }
21169 else if (offset < 0)
bfae80f2 21170 {
c19d1205
ZW
21171 offset = -offset;
21172 while (offset > 0x100)
bfae80f2 21173 {
c19d1205
ZW
21174 add_unwind_opcode (0x7f, 1);
21175 offset -= 0x100;
bfae80f2 21176 }
c19d1205
ZW
21177 op = ((offset - 4) >> 2) | 0x40;
21178 add_unwind_opcode (op, 1);
bfae80f2 21179 }
bfae80f2
RE
21180}
21181
c19d1205
ZW
21182/* Finish the list of unwind opcodes for this function. */
21183static void
21184finish_unwind_opcodes (void)
bfae80f2 21185{
c19d1205 21186 valueT op;
bfae80f2 21187
c19d1205 21188 if (unwind.fp_used)
bfae80f2 21189 {
708587a4 21190 /* Adjust sp as necessary. */
c19d1205
ZW
21191 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
21192 flush_pending_unwind ();
bfae80f2 21193
c19d1205
ZW
21194 /* After restoring sp from the frame pointer. */
21195 op = 0x90 | unwind.fp_reg;
21196 add_unwind_opcode (op, 1);
21197 }
21198 else
21199 flush_pending_unwind ();
bfae80f2
RE
21200}
21201
bfae80f2 21202
c19d1205
ZW
21203/* Start an exception table entry. If idx is nonzero this is an index table
21204 entry. */
bfae80f2
RE
21205
21206static void
c19d1205 21207start_unwind_section (const segT text_seg, int idx)
bfae80f2 21208{
c19d1205
ZW
21209 const char * text_name;
21210 const char * prefix;
21211 const char * prefix_once;
21212 const char * group_name;
21213 size_t prefix_len;
21214 size_t text_len;
21215 char * sec_name;
21216 size_t sec_name_len;
21217 int type;
21218 int flags;
21219 int linkonce;
bfae80f2 21220
c19d1205 21221 if (idx)
bfae80f2 21222 {
c19d1205
ZW
21223 prefix = ELF_STRING_ARM_unwind;
21224 prefix_once = ELF_STRING_ARM_unwind_once;
21225 type = SHT_ARM_EXIDX;
bfae80f2 21226 }
c19d1205 21227 else
bfae80f2 21228 {
c19d1205
ZW
21229 prefix = ELF_STRING_ARM_unwind_info;
21230 prefix_once = ELF_STRING_ARM_unwind_info_once;
21231 type = SHT_PROGBITS;
bfae80f2
RE
21232 }
21233
c19d1205
ZW
21234 text_name = segment_name (text_seg);
21235 if (streq (text_name, ".text"))
21236 text_name = "";
21237
21238 if (strncmp (text_name, ".gnu.linkonce.t.",
21239 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 21240 {
c19d1205
ZW
21241 prefix = prefix_once;
21242 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
21243 }
21244
c19d1205
ZW
21245 prefix_len = strlen (prefix);
21246 text_len = strlen (text_name);
21247 sec_name_len = prefix_len + text_len;
21d799b5 21248 sec_name = (char *) xmalloc (sec_name_len + 1);
c19d1205
ZW
21249 memcpy (sec_name, prefix, prefix_len);
21250 memcpy (sec_name + prefix_len, text_name, text_len);
21251 sec_name[prefix_len + text_len] = '\0';
bfae80f2 21252
c19d1205
ZW
21253 flags = SHF_ALLOC;
21254 linkonce = 0;
21255 group_name = 0;
bfae80f2 21256
c19d1205
ZW
21257 /* Handle COMDAT group. */
21258 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 21259 {
c19d1205
ZW
21260 group_name = elf_group_name (text_seg);
21261 if (group_name == NULL)
21262 {
bd3ba5d1 21263 as_bad (_("Group section `%s' has no group signature"),
c19d1205
ZW
21264 segment_name (text_seg));
21265 ignore_rest_of_line ();
21266 return;
21267 }
21268 flags |= SHF_GROUP;
21269 linkonce = 1;
bfae80f2
RE
21270 }
21271
c19d1205 21272 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
bfae80f2 21273
5f4273c7 21274 /* Set the section link for index tables. */
c19d1205
ZW
21275 if (idx)
21276 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
21277}
21278
bfae80f2 21279
c19d1205
ZW
21280/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
21281 personality routine data. Returns zero, or the index table value for
cad0da33 21282 an inline entry. */
c19d1205
ZW
21283
21284static valueT
21285create_unwind_entry (int have_data)
bfae80f2 21286{
c19d1205
ZW
21287 int size;
21288 addressT where;
21289 char *ptr;
21290 /* The current word of data. */
21291 valueT data;
21292 /* The number of bytes left in this word. */
21293 int n;
bfae80f2 21294
c19d1205 21295 finish_unwind_opcodes ();
bfae80f2 21296
c19d1205
ZW
21297 /* Remember the current text section. */
21298 unwind.saved_seg = now_seg;
21299 unwind.saved_subseg = now_subseg;
bfae80f2 21300
c19d1205 21301 start_unwind_section (now_seg, 0);
bfae80f2 21302
c19d1205 21303 if (unwind.personality_routine == NULL)
bfae80f2 21304 {
c19d1205
ZW
21305 if (unwind.personality_index == -2)
21306 {
21307 if (have_data)
5f4273c7 21308 as_bad (_("handlerdata in cantunwind frame"));
c19d1205
ZW
21309 return 1; /* EXIDX_CANTUNWIND. */
21310 }
bfae80f2 21311
c19d1205
ZW
21312 /* Use a default personality routine if none is specified. */
21313 if (unwind.personality_index == -1)
21314 {
21315 if (unwind.opcode_count > 3)
21316 unwind.personality_index = 1;
21317 else
21318 unwind.personality_index = 0;
21319 }
bfae80f2 21320
c19d1205
ZW
21321 /* Space for the personality routine entry. */
21322 if (unwind.personality_index == 0)
21323 {
21324 if (unwind.opcode_count > 3)
21325 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 21326
c19d1205
ZW
21327 if (!have_data)
21328 {
21329 /* All the data is inline in the index table. */
21330 data = 0x80;
21331 n = 3;
21332 while (unwind.opcode_count > 0)
21333 {
21334 unwind.opcode_count--;
21335 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
21336 n--;
21337 }
bfae80f2 21338
c19d1205
ZW
21339 /* Pad with "finish" opcodes. */
21340 while (n--)
21341 data = (data << 8) | 0xb0;
bfae80f2 21342
c19d1205
ZW
21343 return data;
21344 }
21345 size = 0;
21346 }
21347 else
21348 /* We get two opcodes "free" in the first word. */
21349 size = unwind.opcode_count - 2;
21350 }
21351 else
5011093d 21352 {
cad0da33
NC
21353 /* PR 16765: Missing or misplaced unwind directives can trigger this. */
21354 if (unwind.personality_index != -1)
21355 {
21356 as_bad (_("attempt to recreate an unwind entry"));
21357 return 1;
21358 }
5011093d
NC
21359
21360 /* An extra byte is required for the opcode count. */
21361 size = unwind.opcode_count + 1;
21362 }
bfae80f2 21363
c19d1205
ZW
21364 size = (size + 3) >> 2;
21365 if (size > 0xff)
21366 as_bad (_("too many unwind opcodes"));
bfae80f2 21367
c19d1205
ZW
21368 frag_align (2, 0, 0);
21369 record_alignment (now_seg, 2);
21370 unwind.table_entry = expr_build_dot ();
21371
21372 /* Allocate the table entry. */
21373 ptr = frag_more ((size << 2) + 4);
74929e7b
NC
21374 /* PR 13449: Zero the table entries in case some of them are not used. */
21375 memset (ptr, 0, (size << 2) + 4);
c19d1205 21376 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 21377
c19d1205 21378 switch (unwind.personality_index)
bfae80f2 21379 {
c19d1205
ZW
21380 case -1:
21381 /* ??? Should this be a PLT generating relocation? */
21382 /* Custom personality routine. */
21383 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
21384 BFD_RELOC_ARM_PREL31);
bfae80f2 21385
c19d1205
ZW
21386 where += 4;
21387 ptr += 4;
bfae80f2 21388
c19d1205 21389 /* Set the first byte to the number of additional words. */
5011093d 21390 data = size > 0 ? size - 1 : 0;
c19d1205
ZW
21391 n = 3;
21392 break;
bfae80f2 21393
c19d1205
ZW
21394 /* ABI defined personality routines. */
21395 case 0:
21396 /* Three opcodes bytes are packed into the first word. */
21397 data = 0x80;
21398 n = 3;
21399 break;
bfae80f2 21400
c19d1205
ZW
21401 case 1:
21402 case 2:
21403 /* The size and first two opcode bytes go in the first word. */
21404 data = ((0x80 + unwind.personality_index) << 8) | size;
21405 n = 2;
21406 break;
bfae80f2 21407
c19d1205
ZW
21408 default:
21409 /* Should never happen. */
21410 abort ();
21411 }
bfae80f2 21412
c19d1205
ZW
21413 /* Pack the opcodes into words (MSB first), reversing the list at the same
21414 time. */
21415 while (unwind.opcode_count > 0)
21416 {
21417 if (n == 0)
21418 {
21419 md_number_to_chars (ptr, data, 4);
21420 ptr += 4;
21421 n = 4;
21422 data = 0;
21423 }
21424 unwind.opcode_count--;
21425 n--;
21426 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
21427 }
21428
21429 /* Finish off the last word. */
21430 if (n < 4)
21431 {
21432 /* Pad with "finish" opcodes. */
21433 while (n--)
21434 data = (data << 8) | 0xb0;
21435
21436 md_number_to_chars (ptr, data, 4);
21437 }
21438
21439 if (!have_data)
21440 {
21441 /* Add an empty descriptor if there is no user-specified data. */
21442 ptr = frag_more (4);
21443 md_number_to_chars (ptr, 0, 4);
21444 }
21445
21446 return 0;
bfae80f2
RE
21447}
21448
f0927246
NC
21449
21450/* Initialize the DWARF-2 unwind information for this procedure. */
21451
21452void
21453tc_arm_frame_initial_instructions (void)
21454{
21455 cfi_add_CFA_def_cfa (REG_SP, 0);
21456}
21457#endif /* OBJ_ELF */
21458
c19d1205
ZW
21459/* Convert REGNAME to a DWARF-2 register number. */
21460
21461int
1df69f4f 21462tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 21463{
1df69f4f 21464 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
1f5afe1c
NC
21465 if (reg != FAIL)
21466 return reg;
c19d1205 21467
1f5afe1c
NC
21468 /* PR 16694: Allow VFP registers as well. */
21469 reg = arm_reg_parse (&regname, REG_TYPE_VFS);
21470 if (reg != FAIL)
21471 return 64 + reg;
c19d1205 21472
1f5afe1c
NC
21473 reg = arm_reg_parse (&regname, REG_TYPE_VFD);
21474 if (reg != FAIL)
21475 return reg + 256;
21476
21477 return -1;
bfae80f2
RE
21478}
21479
f0927246 21480#ifdef TE_PE
c19d1205 21481void
f0927246 21482tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 21483{
91d6fa6a 21484 expressionS exp;
bfae80f2 21485
91d6fa6a
NC
21486 exp.X_op = O_secrel;
21487 exp.X_add_symbol = symbol;
21488 exp.X_add_number = 0;
21489 emit_expr (&exp, size);
f0927246
NC
21490}
21491#endif
bfae80f2 21492
c19d1205 21493/* MD interface: Symbol and relocation handling. */
bfae80f2 21494
2fc8bdac
ZW
21495/* Return the address within the segment that a PC-relative fixup is
21496 relative to. For ARM, PC-relative fixups applied to instructions
21497 are generally relative to the location of the fixup plus 8 bytes.
21498 Thumb branches are offset by 4, and Thumb loads relative to PC
21499 require special handling. */
bfae80f2 21500
c19d1205 21501long
2fc8bdac 21502md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 21503{
2fc8bdac
ZW
21504 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
21505
21506 /* If this is pc-relative and we are going to emit a relocation
21507 then we just want to put out any pipeline compensation that the linker
53baae48
NC
21508 will need. Otherwise we want to use the calculated base.
21509 For WinCE we skip the bias for externals as well, since this
21510 is how the MS ARM-CE assembler behaves and we want to be compatible. */
5f4273c7 21511 if (fixP->fx_pcrel
2fc8bdac 21512 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
21513 || (arm_force_relocation (fixP)
21514#ifdef TE_WINCE
21515 && !S_IS_EXTERNAL (fixP->fx_addsy)
21516#endif
21517 )))
2fc8bdac 21518 base = 0;
bfae80f2 21519
267bf995 21520
c19d1205 21521 switch (fixP->fx_r_type)
bfae80f2 21522 {
2fc8bdac
ZW
21523 /* PC relative addressing on the Thumb is slightly odd as the
21524 bottom two bits of the PC are forced to zero for the
21525 calculation. This happens *after* application of the
21526 pipeline offset. However, Thumb adrl already adjusts for
21527 this, so we need not do it again. */
c19d1205 21528 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 21529 return base & ~3;
c19d1205
ZW
21530
21531 case BFD_RELOC_ARM_THUMB_OFFSET:
21532 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 21533 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 21534 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 21535 return (base + 4) & ~3;
c19d1205 21536
2fc8bdac
ZW
21537 /* Thumb branches are simply offset by +4. */
21538 case BFD_RELOC_THUMB_PCREL_BRANCH7:
21539 case BFD_RELOC_THUMB_PCREL_BRANCH9:
21540 case BFD_RELOC_THUMB_PCREL_BRANCH12:
21541 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac 21542 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac 21543 return base + 4;
bfae80f2 21544
267bf995 21545 case BFD_RELOC_THUMB_PCREL_BRANCH23:
486499d0
CL
21546 if (fixP->fx_addsy
21547 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21548 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995 21549 && ARM_IS_FUNC (fixP->fx_addsy)
477330fc
RM
21550 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21551 base = fixP->fx_where + fixP->fx_frag->fr_address;
267bf995
RR
21552 return base + 4;
21553
00adf2d4
JB
21554 /* BLX is like branches above, but forces the low two bits of PC to
21555 zero. */
486499d0
CL
21556 case BFD_RELOC_THUMB_PCREL_BLX:
21557 if (fixP->fx_addsy
21558 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21559 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
21560 && THUMB_IS_FUNC (fixP->fx_addsy)
21561 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21562 base = fixP->fx_where + fixP->fx_frag->fr_address;
00adf2d4
JB
21563 return (base + 4) & ~3;
21564
2fc8bdac
ZW
21565 /* ARM mode branches are offset by +8. However, the Windows CE
21566 loader expects the relocation not to take this into account. */
267bf995 21567 case BFD_RELOC_ARM_PCREL_BLX:
486499d0
CL
21568 if (fixP->fx_addsy
21569 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21570 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
21571 && ARM_IS_FUNC (fixP->fx_addsy)
21572 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21573 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21574 return base + 8;
267bf995 21575
486499d0
CL
21576 case BFD_RELOC_ARM_PCREL_CALL:
21577 if (fixP->fx_addsy
21578 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21579 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
21580 && THUMB_IS_FUNC (fixP->fx_addsy)
21581 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21582 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21583 return base + 8;
267bf995 21584
2fc8bdac 21585 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c 21586 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 21587 case BFD_RELOC_ARM_PLT32:
c19d1205 21588#ifdef TE_WINCE
5f4273c7 21589 /* When handling fixups immediately, because we have already
477330fc 21590 discovered the value of a symbol, or the address of the frag involved
53baae48 21591 we must account for the offset by +8, as the OS loader will never see the reloc.
477330fc
RM
21592 see fixup_segment() in write.c
21593 The S_IS_EXTERNAL test handles the case of global symbols.
21594 Those need the calculated base, not just the pipe compensation the linker will need. */
53baae48
NC
21595 if (fixP->fx_pcrel
21596 && fixP->fx_addsy != NULL
21597 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21598 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
21599 return base + 8;
2fc8bdac 21600 return base;
c19d1205 21601#else
2fc8bdac 21602 return base + 8;
c19d1205 21603#endif
2fc8bdac 21604
267bf995 21605
2fc8bdac
ZW
21606 /* ARM mode loads relative to PC are also offset by +8. Unlike
21607 branches, the Windows CE loader *does* expect the relocation
21608 to take this into account. */
21609 case BFD_RELOC_ARM_OFFSET_IMM:
21610 case BFD_RELOC_ARM_OFFSET_IMM8:
21611 case BFD_RELOC_ARM_HWLITERAL:
21612 case BFD_RELOC_ARM_LITERAL:
21613 case BFD_RELOC_ARM_CP_OFF_IMM:
21614 return base + 8;
21615
21616
21617 /* Other PC-relative relocations are un-offset. */
21618 default:
21619 return base;
21620 }
bfae80f2
RE
21621}
21622
c19d1205
ZW
21623/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
21624 Otherwise we have no need to default values of symbols. */
21625
21626symbolS *
21627md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
bfae80f2 21628{
c19d1205
ZW
21629#ifdef OBJ_ELF
21630 if (name[0] == '_' && name[1] == 'G'
21631 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
21632 {
21633 if (!GOT_symbol)
21634 {
21635 if (symbol_find (name))
bd3ba5d1 21636 as_bad (_("GOT already in the symbol table"));
bfae80f2 21637
c19d1205
ZW
21638 GOT_symbol = symbol_new (name, undefined_section,
21639 (valueT) 0, & zero_address_frag);
21640 }
bfae80f2 21641
c19d1205 21642 return GOT_symbol;
bfae80f2 21643 }
c19d1205 21644#endif
bfae80f2 21645
c921be7d 21646 return NULL;
bfae80f2
RE
21647}
21648
55cf6793 21649/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
21650 computed as two separate immediate values, added together. We
21651 already know that this value cannot be computed by just one ARM
21652 instruction. */
21653
21654static unsigned int
21655validate_immediate_twopart (unsigned int val,
21656 unsigned int * highpart)
bfae80f2 21657{
c19d1205
ZW
21658 unsigned int a;
21659 unsigned int i;
bfae80f2 21660
c19d1205
ZW
21661 for (i = 0; i < 32; i += 2)
21662 if (((a = rotate_left (val, i)) & 0xff) != 0)
21663 {
21664 if (a & 0xff00)
21665 {
21666 if (a & ~ 0xffff)
21667 continue;
21668 * highpart = (a >> 8) | ((i + 24) << 7);
21669 }
21670 else if (a & 0xff0000)
21671 {
21672 if (a & 0xff000000)
21673 continue;
21674 * highpart = (a >> 16) | ((i + 16) << 7);
21675 }
21676 else
21677 {
9c2799c2 21678 gas_assert (a & 0xff000000);
c19d1205
ZW
21679 * highpart = (a >> 24) | ((i + 8) << 7);
21680 }
bfae80f2 21681
c19d1205
ZW
21682 return (a & 0xff) | (i << 7);
21683 }
bfae80f2 21684
c19d1205 21685 return FAIL;
bfae80f2
RE
21686}
21687
c19d1205
ZW
21688static int
21689validate_offset_imm (unsigned int val, int hwse)
21690{
21691 if ((hwse && val > 255) || val > 4095)
21692 return FAIL;
21693 return val;
21694}
bfae80f2 21695
55cf6793 21696/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
21697 negative immediate constant by altering the instruction. A bit of
21698 a hack really.
21699 MOV <-> MVN
21700 AND <-> BIC
21701 ADC <-> SBC
21702 by inverting the second operand, and
21703 ADD <-> SUB
21704 CMP <-> CMN
21705 by negating the second operand. */
bfae80f2 21706
c19d1205
ZW
21707static int
21708negate_data_op (unsigned long * instruction,
21709 unsigned long value)
bfae80f2 21710{
c19d1205
ZW
21711 int op, new_inst;
21712 unsigned long negated, inverted;
bfae80f2 21713
c19d1205
ZW
21714 negated = encode_arm_immediate (-value);
21715 inverted = encode_arm_immediate (~value);
bfae80f2 21716
c19d1205
ZW
21717 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
21718 switch (op)
bfae80f2 21719 {
c19d1205
ZW
21720 /* First negates. */
21721 case OPCODE_SUB: /* ADD <-> SUB */
21722 new_inst = OPCODE_ADD;
21723 value = negated;
21724 break;
bfae80f2 21725
c19d1205
ZW
21726 case OPCODE_ADD:
21727 new_inst = OPCODE_SUB;
21728 value = negated;
21729 break;
bfae80f2 21730
c19d1205
ZW
21731 case OPCODE_CMP: /* CMP <-> CMN */
21732 new_inst = OPCODE_CMN;
21733 value = negated;
21734 break;
bfae80f2 21735
c19d1205
ZW
21736 case OPCODE_CMN:
21737 new_inst = OPCODE_CMP;
21738 value = negated;
21739 break;
bfae80f2 21740
c19d1205
ZW
21741 /* Now Inverted ops. */
21742 case OPCODE_MOV: /* MOV <-> MVN */
21743 new_inst = OPCODE_MVN;
21744 value = inverted;
21745 break;
bfae80f2 21746
c19d1205
ZW
21747 case OPCODE_MVN:
21748 new_inst = OPCODE_MOV;
21749 value = inverted;
21750 break;
bfae80f2 21751
c19d1205
ZW
21752 case OPCODE_AND: /* AND <-> BIC */
21753 new_inst = OPCODE_BIC;
21754 value = inverted;
21755 break;
bfae80f2 21756
c19d1205
ZW
21757 case OPCODE_BIC:
21758 new_inst = OPCODE_AND;
21759 value = inverted;
21760 break;
bfae80f2 21761
c19d1205
ZW
21762 case OPCODE_ADC: /* ADC <-> SBC */
21763 new_inst = OPCODE_SBC;
21764 value = inverted;
21765 break;
bfae80f2 21766
c19d1205
ZW
21767 case OPCODE_SBC:
21768 new_inst = OPCODE_ADC;
21769 value = inverted;
21770 break;
bfae80f2 21771
c19d1205
ZW
21772 /* We cannot do anything. */
21773 default:
21774 return FAIL;
b99bd4ef
NC
21775 }
21776
c19d1205
ZW
21777 if (value == (unsigned) FAIL)
21778 return FAIL;
21779
21780 *instruction &= OPCODE_MASK;
21781 *instruction |= new_inst << DATA_OP_SHIFT;
21782 return value;
b99bd4ef
NC
21783}
21784
ef8d22e6
PB
21785/* Like negate_data_op, but for Thumb-2. */
21786
21787static unsigned int
16dd5e42 21788thumb32_negate_data_op (offsetT *instruction, unsigned int value)
ef8d22e6
PB
21789{
21790 int op, new_inst;
21791 int rd;
16dd5e42 21792 unsigned int negated, inverted;
ef8d22e6
PB
21793
21794 negated = encode_thumb32_immediate (-value);
21795 inverted = encode_thumb32_immediate (~value);
21796
21797 rd = (*instruction >> 8) & 0xf;
21798 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
21799 switch (op)
21800 {
21801 /* ADD <-> SUB. Includes CMP <-> CMN. */
21802 case T2_OPCODE_SUB:
21803 new_inst = T2_OPCODE_ADD;
21804 value = negated;
21805 break;
21806
21807 case T2_OPCODE_ADD:
21808 new_inst = T2_OPCODE_SUB;
21809 value = negated;
21810 break;
21811
21812 /* ORR <-> ORN. Includes MOV <-> MVN. */
21813 case T2_OPCODE_ORR:
21814 new_inst = T2_OPCODE_ORN;
21815 value = inverted;
21816 break;
21817
21818 case T2_OPCODE_ORN:
21819 new_inst = T2_OPCODE_ORR;
21820 value = inverted;
21821 break;
21822
21823 /* AND <-> BIC. TST has no inverted equivalent. */
21824 case T2_OPCODE_AND:
21825 new_inst = T2_OPCODE_BIC;
21826 if (rd == 15)
21827 value = FAIL;
21828 else
21829 value = inverted;
21830 break;
21831
21832 case T2_OPCODE_BIC:
21833 new_inst = T2_OPCODE_AND;
21834 value = inverted;
21835 break;
21836
21837 /* ADC <-> SBC */
21838 case T2_OPCODE_ADC:
21839 new_inst = T2_OPCODE_SBC;
21840 value = inverted;
21841 break;
21842
21843 case T2_OPCODE_SBC:
21844 new_inst = T2_OPCODE_ADC;
21845 value = inverted;
21846 break;
21847
21848 /* We cannot do anything. */
21849 default:
21850 return FAIL;
21851 }
21852
16dd5e42 21853 if (value == (unsigned int)FAIL)
ef8d22e6
PB
21854 return FAIL;
21855
21856 *instruction &= T2_OPCODE_MASK;
21857 *instruction |= new_inst << T2_DATA_OP_SHIFT;
21858 return value;
21859}
21860
8f06b2d8
PB
21861/* Read a 32-bit thumb instruction from buf. */
21862static unsigned long
21863get_thumb32_insn (char * buf)
21864{
21865 unsigned long insn;
21866 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
21867 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21868
21869 return insn;
21870}
21871
a8bc6c78
PB
21872
21873/* We usually want to set the low bit on the address of thumb function
21874 symbols. In particular .word foo - . should have the low bit set.
21875 Generic code tries to fold the difference of two symbols to
21876 a constant. Prevent this and force a relocation when the first symbols
21877 is a thumb function. */
c921be7d
NC
21878
21879bfd_boolean
a8bc6c78
PB
21880arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
21881{
21882 if (op == O_subtract
21883 && l->X_op == O_symbol
21884 && r->X_op == O_symbol
21885 && THUMB_IS_FUNC (l->X_add_symbol))
21886 {
21887 l->X_op = O_subtract;
21888 l->X_op_symbol = r->X_add_symbol;
21889 l->X_add_number -= r->X_add_number;
c921be7d 21890 return TRUE;
a8bc6c78 21891 }
c921be7d 21892
a8bc6c78 21893 /* Process as normal. */
c921be7d 21894 return FALSE;
a8bc6c78
PB
21895}
21896
4a42ebbc
RR
21897/* Encode Thumb2 unconditional branches and calls. The encoding
21898 for the 2 are identical for the immediate values. */
21899
21900static void
21901encode_thumb2_b_bl_offset (char * buf, offsetT value)
21902{
21903#define T2I1I2MASK ((1 << 13) | (1 << 11))
21904 offsetT newval;
21905 offsetT newval2;
21906 addressT S, I1, I2, lo, hi;
21907
21908 S = (value >> 24) & 0x01;
21909 I1 = (value >> 23) & 0x01;
21910 I2 = (value >> 22) & 0x01;
21911 hi = (value >> 12) & 0x3ff;
fa94de6b 21912 lo = (value >> 1) & 0x7ff;
4a42ebbc
RR
21913 newval = md_chars_to_number (buf, THUMB_SIZE);
21914 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21915 newval |= (S << 10) | hi;
21916 newval2 &= ~T2I1I2MASK;
21917 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
21918 md_number_to_chars (buf, newval, THUMB_SIZE);
21919 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
21920}
21921
c19d1205 21922void
55cf6793 21923md_apply_fix (fixS * fixP,
c19d1205
ZW
21924 valueT * valP,
21925 segT seg)
21926{
21927 offsetT value = * valP;
21928 offsetT newval;
21929 unsigned int newimm;
21930 unsigned long temp;
21931 int sign;
21932 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 21933
9c2799c2 21934 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 21935
c19d1205 21936 /* Note whether this will delete the relocation. */
4962c51a 21937
c19d1205
ZW
21938 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
21939 fixP->fx_done = 1;
b99bd4ef 21940
adbaf948 21941 /* On a 64-bit host, silently truncate 'value' to 32 bits for
5f4273c7 21942 consistency with the behaviour on 32-bit hosts. Remember value
adbaf948
ZW
21943 for emit_reloc. */
21944 value &= 0xffffffff;
21945 value ^= 0x80000000;
5f4273c7 21946 value -= 0x80000000;
adbaf948
ZW
21947
21948 *valP = value;
c19d1205 21949 fixP->fx_addnumber = value;
b99bd4ef 21950
adbaf948
ZW
21951 /* Same treatment for fixP->fx_offset. */
21952 fixP->fx_offset &= 0xffffffff;
21953 fixP->fx_offset ^= 0x80000000;
21954 fixP->fx_offset -= 0x80000000;
21955
c19d1205 21956 switch (fixP->fx_r_type)
b99bd4ef 21957 {
c19d1205
ZW
21958 case BFD_RELOC_NONE:
21959 /* This will need to go in the object file. */
21960 fixP->fx_done = 0;
21961 break;
b99bd4ef 21962
c19d1205
ZW
21963 case BFD_RELOC_ARM_IMMEDIATE:
21964 /* We claim that this fixup has been processed here,
21965 even if in fact we generate an error because we do
21966 not have a reloc for it, so tc_gen_reloc will reject it. */
21967 fixP->fx_done = 1;
b99bd4ef 21968
77db8e2e 21969 if (fixP->fx_addsy)
b99bd4ef 21970 {
77db8e2e 21971 const char *msg = 0;
b99bd4ef 21972
77db8e2e
NC
21973 if (! S_IS_DEFINED (fixP->fx_addsy))
21974 msg = _("undefined symbol %s used as an immediate value");
21975 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21976 msg = _("symbol %s is in a different section");
21977 else if (S_IS_WEAK (fixP->fx_addsy))
21978 msg = _("symbol %s is weak and may be overridden later");
21979
21980 if (msg)
21981 {
21982 as_bad_where (fixP->fx_file, fixP->fx_line,
21983 msg, S_GET_NAME (fixP->fx_addsy));
21984 break;
21985 }
42e5fcbf
AS
21986 }
21987
c19d1205
ZW
21988 temp = md_chars_to_number (buf, INSN_SIZE);
21989
5e73442d
SL
21990 /* If the offset is negative, we should use encoding A2 for ADR. */
21991 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
21992 newimm = negate_data_op (&temp, value);
21993 else
21994 {
21995 newimm = encode_arm_immediate (value);
21996
21997 /* If the instruction will fail, see if we can fix things up by
21998 changing the opcode. */
21999 if (newimm == (unsigned int) FAIL)
22000 newimm = negate_data_op (&temp, value);
22001 }
22002
22003 if (newimm == (unsigned int) FAIL)
b99bd4ef 22004 {
c19d1205
ZW
22005 as_bad_where (fixP->fx_file, fixP->fx_line,
22006 _("invalid constant (%lx) after fixup"),
22007 (unsigned long) value);
22008 break;
b99bd4ef 22009 }
b99bd4ef 22010
c19d1205
ZW
22011 newimm |= (temp & 0xfffff000);
22012 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
22013 break;
b99bd4ef 22014
c19d1205
ZW
22015 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
22016 {
22017 unsigned int highpart = 0;
22018 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 22019
77db8e2e 22020 if (fixP->fx_addsy)
42e5fcbf 22021 {
77db8e2e 22022 const char *msg = 0;
42e5fcbf 22023
77db8e2e
NC
22024 if (! S_IS_DEFINED (fixP->fx_addsy))
22025 msg = _("undefined symbol %s used as an immediate value");
22026 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
22027 msg = _("symbol %s is in a different section");
22028 else if (S_IS_WEAK (fixP->fx_addsy))
22029 msg = _("symbol %s is weak and may be overridden later");
42e5fcbf 22030
77db8e2e
NC
22031 if (msg)
22032 {
22033 as_bad_where (fixP->fx_file, fixP->fx_line,
22034 msg, S_GET_NAME (fixP->fx_addsy));
22035 break;
22036 }
22037 }
fa94de6b 22038
c19d1205
ZW
22039 newimm = encode_arm_immediate (value);
22040 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 22041
c19d1205
ZW
22042 /* If the instruction will fail, see if we can fix things up by
22043 changing the opcode. */
22044 if (newimm == (unsigned int) FAIL
22045 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
22046 {
22047 /* No ? OK - try using two ADD instructions to generate
22048 the value. */
22049 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 22050
c19d1205
ZW
22051 /* Yes - then make sure that the second instruction is
22052 also an add. */
22053 if (newimm != (unsigned int) FAIL)
22054 newinsn = temp;
22055 /* Still No ? Try using a negated value. */
22056 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
22057 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
22058 /* Otherwise - give up. */
22059 else
22060 {
22061 as_bad_where (fixP->fx_file, fixP->fx_line,
22062 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
22063 (long) value);
22064 break;
22065 }
b99bd4ef 22066
c19d1205
ZW
22067 /* Replace the first operand in the 2nd instruction (which
22068 is the PC) with the destination register. We have
22069 already added in the PC in the first instruction and we
22070 do not want to do it again. */
22071 newinsn &= ~ 0xf0000;
22072 newinsn |= ((newinsn & 0x0f000) << 4);
22073 }
b99bd4ef 22074
c19d1205
ZW
22075 newimm |= (temp & 0xfffff000);
22076 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 22077
c19d1205
ZW
22078 highpart |= (newinsn & 0xfffff000);
22079 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
22080 }
22081 break;
b99bd4ef 22082
c19d1205 22083 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
22084 if (!fixP->fx_done && seg->use_rela_p)
22085 value = 0;
22086
c19d1205 22087 case BFD_RELOC_ARM_LITERAL:
26d97720 22088 sign = value > 0;
b99bd4ef 22089
c19d1205
ZW
22090 if (value < 0)
22091 value = - value;
b99bd4ef 22092
c19d1205 22093 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 22094 {
c19d1205
ZW
22095 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
22096 as_bad_where (fixP->fx_file, fixP->fx_line,
22097 _("invalid literal constant: pool needs to be closer"));
22098 else
22099 as_bad_where (fixP->fx_file, fixP->fx_line,
22100 _("bad immediate value for offset (%ld)"),
22101 (long) value);
22102 break;
f03698e6
RE
22103 }
22104
c19d1205 22105 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
22106 if (value == 0)
22107 newval &= 0xfffff000;
22108 else
22109 {
22110 newval &= 0xff7ff000;
22111 newval |= value | (sign ? INDEX_UP : 0);
22112 }
c19d1205
ZW
22113 md_number_to_chars (buf, newval, INSN_SIZE);
22114 break;
b99bd4ef 22115
c19d1205
ZW
22116 case BFD_RELOC_ARM_OFFSET_IMM8:
22117 case BFD_RELOC_ARM_HWLITERAL:
26d97720 22118 sign = value > 0;
b99bd4ef 22119
c19d1205
ZW
22120 if (value < 0)
22121 value = - value;
b99bd4ef 22122
c19d1205 22123 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 22124 {
c19d1205
ZW
22125 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
22126 as_bad_where (fixP->fx_file, fixP->fx_line,
22127 _("invalid literal constant: pool needs to be closer"));
22128 else
427d0db6
RM
22129 as_bad_where (fixP->fx_file, fixP->fx_line,
22130 _("bad immediate value for 8-bit offset (%ld)"),
22131 (long) value);
c19d1205 22132 break;
b99bd4ef
NC
22133 }
22134
c19d1205 22135 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
22136 if (value == 0)
22137 newval &= 0xfffff0f0;
22138 else
22139 {
22140 newval &= 0xff7ff0f0;
22141 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
22142 }
c19d1205
ZW
22143 md_number_to_chars (buf, newval, INSN_SIZE);
22144 break;
b99bd4ef 22145
c19d1205
ZW
22146 case BFD_RELOC_ARM_T32_OFFSET_U8:
22147 if (value < 0 || value > 1020 || value % 4 != 0)
22148 as_bad_where (fixP->fx_file, fixP->fx_line,
22149 _("bad immediate value for offset (%ld)"), (long) value);
22150 value /= 4;
b99bd4ef 22151
c19d1205 22152 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
22153 newval |= value;
22154 md_number_to_chars (buf+2, newval, THUMB_SIZE);
22155 break;
b99bd4ef 22156
c19d1205
ZW
22157 case BFD_RELOC_ARM_T32_OFFSET_IMM:
22158 /* This is a complicated relocation used for all varieties of Thumb32
22159 load/store instruction with immediate offset:
22160
22161 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
477330fc 22162 *4, optional writeback(W)
c19d1205
ZW
22163 (doubleword load/store)
22164
22165 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
22166 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
22167 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
22168 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
22169 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
22170
22171 Uppercase letters indicate bits that are already encoded at
22172 this point. Lowercase letters are our problem. For the
22173 second block of instructions, the secondary opcode nybble
22174 (bits 8..11) is present, and bit 23 is zero, even if this is
22175 a PC-relative operation. */
22176 newval = md_chars_to_number (buf, THUMB_SIZE);
22177 newval <<= 16;
22178 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 22179
c19d1205 22180 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 22181 {
c19d1205
ZW
22182 /* Doubleword load/store: 8-bit offset, scaled by 4. */
22183 if (value >= 0)
22184 newval |= (1 << 23);
22185 else
22186 value = -value;
22187 if (value % 4 != 0)
22188 {
22189 as_bad_where (fixP->fx_file, fixP->fx_line,
22190 _("offset not a multiple of 4"));
22191 break;
22192 }
22193 value /= 4;
216d22bc 22194 if (value > 0xff)
c19d1205
ZW
22195 {
22196 as_bad_where (fixP->fx_file, fixP->fx_line,
22197 _("offset out of range"));
22198 break;
22199 }
22200 newval &= ~0xff;
b99bd4ef 22201 }
c19d1205 22202 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 22203 {
c19d1205
ZW
22204 /* PC-relative, 12-bit offset. */
22205 if (value >= 0)
22206 newval |= (1 << 23);
22207 else
22208 value = -value;
216d22bc 22209 if (value > 0xfff)
c19d1205
ZW
22210 {
22211 as_bad_where (fixP->fx_file, fixP->fx_line,
22212 _("offset out of range"));
22213 break;
22214 }
22215 newval &= ~0xfff;
b99bd4ef 22216 }
c19d1205 22217 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 22218 {
c19d1205
ZW
22219 /* Writeback: 8-bit, +/- offset. */
22220 if (value >= 0)
22221 newval |= (1 << 9);
22222 else
22223 value = -value;
216d22bc 22224 if (value > 0xff)
c19d1205
ZW
22225 {
22226 as_bad_where (fixP->fx_file, fixP->fx_line,
22227 _("offset out of range"));
22228 break;
22229 }
22230 newval &= ~0xff;
b99bd4ef 22231 }
c19d1205 22232 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 22233 {
c19d1205 22234 /* T-instruction: positive 8-bit offset. */
216d22bc 22235 if (value < 0 || value > 0xff)
b99bd4ef 22236 {
c19d1205
ZW
22237 as_bad_where (fixP->fx_file, fixP->fx_line,
22238 _("offset out of range"));
22239 break;
b99bd4ef 22240 }
c19d1205
ZW
22241 newval &= ~0xff;
22242 newval |= value;
b99bd4ef
NC
22243 }
22244 else
b99bd4ef 22245 {
c19d1205
ZW
22246 /* Positive 12-bit or negative 8-bit offset. */
22247 int limit;
22248 if (value >= 0)
b99bd4ef 22249 {
c19d1205
ZW
22250 newval |= (1 << 23);
22251 limit = 0xfff;
22252 }
22253 else
22254 {
22255 value = -value;
22256 limit = 0xff;
22257 }
22258 if (value > limit)
22259 {
22260 as_bad_where (fixP->fx_file, fixP->fx_line,
22261 _("offset out of range"));
22262 break;
b99bd4ef 22263 }
c19d1205 22264 newval &= ~limit;
b99bd4ef 22265 }
b99bd4ef 22266
c19d1205
ZW
22267 newval |= value;
22268 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
22269 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
22270 break;
404ff6b5 22271
c19d1205
ZW
22272 case BFD_RELOC_ARM_SHIFT_IMM:
22273 newval = md_chars_to_number (buf, INSN_SIZE);
22274 if (((unsigned long) value) > 32
22275 || (value == 32
22276 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
22277 {
22278 as_bad_where (fixP->fx_file, fixP->fx_line,
22279 _("shift expression is too large"));
22280 break;
22281 }
404ff6b5 22282
c19d1205
ZW
22283 if (value == 0)
22284 /* Shifts of zero must be done as lsl. */
22285 newval &= ~0x60;
22286 else if (value == 32)
22287 value = 0;
22288 newval &= 0xfffff07f;
22289 newval |= (value & 0x1f) << 7;
22290 md_number_to_chars (buf, newval, INSN_SIZE);
22291 break;
404ff6b5 22292
c19d1205 22293 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 22294 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 22295 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 22296 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
22297 /* We claim that this fixup has been processed here,
22298 even if in fact we generate an error because we do
22299 not have a reloc for it, so tc_gen_reloc will reject it. */
22300 fixP->fx_done = 1;
404ff6b5 22301
c19d1205
ZW
22302 if (fixP->fx_addsy
22303 && ! S_IS_DEFINED (fixP->fx_addsy))
22304 {
22305 as_bad_where (fixP->fx_file, fixP->fx_line,
22306 _("undefined symbol %s used as an immediate value"),
22307 S_GET_NAME (fixP->fx_addsy));
22308 break;
22309 }
404ff6b5 22310
c19d1205
ZW
22311 newval = md_chars_to_number (buf, THUMB_SIZE);
22312 newval <<= 16;
22313 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 22314
16805f35
PB
22315 newimm = FAIL;
22316 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
22317 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
22318 {
22319 newimm = encode_thumb32_immediate (value);
22320 if (newimm == (unsigned int) FAIL)
22321 newimm = thumb32_negate_data_op (&newval, value);
22322 }
16805f35
PB
22323 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
22324 && newimm == (unsigned int) FAIL)
92e90b6e 22325 {
16805f35
PB
22326 /* Turn add/sum into addw/subw. */
22327 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
22328 newval = (newval & 0xfeffffff) | 0x02000000;
40f246e3
NC
22329 /* No flat 12-bit imm encoding for addsw/subsw. */
22330 if ((newval & 0x00100000) == 0)
e9f89963 22331 {
40f246e3
NC
22332 /* 12 bit immediate for addw/subw. */
22333 if (value < 0)
22334 {
22335 value = -value;
22336 newval ^= 0x00a00000;
22337 }
22338 if (value > 0xfff)
22339 newimm = (unsigned int) FAIL;
22340 else
22341 newimm = value;
e9f89963 22342 }
92e90b6e 22343 }
cc8a6dd0 22344
c19d1205 22345 if (newimm == (unsigned int)FAIL)
3631a3c8 22346 {
c19d1205
ZW
22347 as_bad_where (fixP->fx_file, fixP->fx_line,
22348 _("invalid constant (%lx) after fixup"),
22349 (unsigned long) value);
22350 break;
3631a3c8
NC
22351 }
22352
c19d1205
ZW
22353 newval |= (newimm & 0x800) << 15;
22354 newval |= (newimm & 0x700) << 4;
22355 newval |= (newimm & 0x0ff);
cc8a6dd0 22356
c19d1205
ZW
22357 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
22358 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
22359 break;
a737bd4d 22360
3eb17e6b 22361 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
22362 if (((unsigned long) value) > 0xffff)
22363 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 22364 _("invalid smc expression"));
2fc8bdac 22365 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
22366 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
22367 md_number_to_chars (buf, newval, INSN_SIZE);
22368 break;
a737bd4d 22369
90ec0d68
MGD
22370 case BFD_RELOC_ARM_HVC:
22371 if (((unsigned long) value) > 0xffff)
22372 as_bad_where (fixP->fx_file, fixP->fx_line,
22373 _("invalid hvc expression"));
22374 newval = md_chars_to_number (buf, INSN_SIZE);
22375 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
22376 md_number_to_chars (buf, newval, INSN_SIZE);
22377 break;
22378
c19d1205 22379 case BFD_RELOC_ARM_SWI:
adbaf948 22380 if (fixP->tc_fix_data != 0)
c19d1205
ZW
22381 {
22382 if (((unsigned long) value) > 0xff)
22383 as_bad_where (fixP->fx_file, fixP->fx_line,
22384 _("invalid swi expression"));
2fc8bdac 22385 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
22386 newval |= value;
22387 md_number_to_chars (buf, newval, THUMB_SIZE);
22388 }
22389 else
22390 {
22391 if (((unsigned long) value) > 0x00ffffff)
22392 as_bad_where (fixP->fx_file, fixP->fx_line,
22393 _("invalid swi expression"));
2fc8bdac 22394 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
22395 newval |= value;
22396 md_number_to_chars (buf, newval, INSN_SIZE);
22397 }
22398 break;
a737bd4d 22399
c19d1205
ZW
22400 case BFD_RELOC_ARM_MULTI:
22401 if (((unsigned long) value) > 0xffff)
22402 as_bad_where (fixP->fx_file, fixP->fx_line,
22403 _("invalid expression in load/store multiple"));
22404 newval = value | md_chars_to_number (buf, INSN_SIZE);
22405 md_number_to_chars (buf, newval, INSN_SIZE);
22406 break;
a737bd4d 22407
c19d1205 22408#ifdef OBJ_ELF
39b41c9c 22409 case BFD_RELOC_ARM_PCREL_CALL:
267bf995
RR
22410
22411 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
22412 && fixP->fx_addsy
34e77a92 22413 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22414 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22415 && THUMB_IS_FUNC (fixP->fx_addsy))
22416 /* Flip the bl to blx. This is a simple flip
22417 bit here because we generate PCREL_CALL for
22418 unconditional bls. */
22419 {
22420 newval = md_chars_to_number (buf, INSN_SIZE);
22421 newval = newval | 0x10000000;
22422 md_number_to_chars (buf, newval, INSN_SIZE);
22423 temp = 1;
22424 fixP->fx_done = 1;
22425 }
39b41c9c
PB
22426 else
22427 temp = 3;
22428 goto arm_branch_common;
22429
22430 case BFD_RELOC_ARM_PCREL_JUMP:
267bf995
RR
22431 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
22432 && fixP->fx_addsy
34e77a92 22433 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22434 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22435 && THUMB_IS_FUNC (fixP->fx_addsy))
22436 {
22437 /* This would map to a bl<cond>, b<cond>,
22438 b<always> to a Thumb function. We
22439 need to force a relocation for this particular
22440 case. */
22441 newval = md_chars_to_number (buf, INSN_SIZE);
22442 fixP->fx_done = 0;
22443 }
22444
2fc8bdac 22445 case BFD_RELOC_ARM_PLT32:
c19d1205 22446#endif
39b41c9c
PB
22447 case BFD_RELOC_ARM_PCREL_BRANCH:
22448 temp = 3;
22449 goto arm_branch_common;
a737bd4d 22450
39b41c9c 22451 case BFD_RELOC_ARM_PCREL_BLX:
267bf995 22452
39b41c9c 22453 temp = 1;
267bf995
RR
22454 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
22455 && fixP->fx_addsy
34e77a92 22456 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22457 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22458 && ARM_IS_FUNC (fixP->fx_addsy))
22459 {
22460 /* Flip the blx to a bl and warn. */
22461 const char *name = S_GET_NAME (fixP->fx_addsy);
22462 newval = 0xeb000000;
22463 as_warn_where (fixP->fx_file, fixP->fx_line,
22464 _("blx to '%s' an ARM ISA state function changed to bl"),
22465 name);
22466 md_number_to_chars (buf, newval, INSN_SIZE);
22467 temp = 3;
22468 fixP->fx_done = 1;
22469 }
22470
22471#ifdef OBJ_ELF
22472 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
477330fc 22473 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
267bf995
RR
22474#endif
22475
39b41c9c 22476 arm_branch_common:
c19d1205 22477 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
22478 instruction, in a 24 bit, signed field. Bits 26 through 32 either
22479 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
22480 also be be clear. */
22481 if (value & temp)
c19d1205 22482 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
22483 _("misaligned branch destination"));
22484 if ((value & (offsetT)0xfe000000) != (offsetT)0
22485 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
08f10d51 22486 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22487
2fc8bdac 22488 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 22489 {
2fc8bdac
ZW
22490 newval = md_chars_to_number (buf, INSN_SIZE);
22491 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
22492 /* Set the H bit on BLX instructions. */
22493 if (temp == 1)
22494 {
22495 if (value & 2)
22496 newval |= 0x01000000;
22497 else
22498 newval &= ~0x01000000;
22499 }
2fc8bdac 22500 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 22501 }
c19d1205 22502 break;
a737bd4d 22503
25fe350b
MS
22504 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
22505 /* CBZ can only branch forward. */
a737bd4d 22506
738755b0 22507 /* Attempts to use CBZ to branch to the next instruction
477330fc
RM
22508 (which, strictly speaking, are prohibited) will be turned into
22509 no-ops.
738755b0
MS
22510
22511 FIXME: It may be better to remove the instruction completely and
22512 perform relaxation. */
22513 if (value == -2)
2fc8bdac
ZW
22514 {
22515 newval = md_chars_to_number (buf, THUMB_SIZE);
738755b0 22516 newval = 0xbf00; /* NOP encoding T1 */
2fc8bdac
ZW
22517 md_number_to_chars (buf, newval, THUMB_SIZE);
22518 }
738755b0
MS
22519 else
22520 {
22521 if (value & ~0x7e)
08f10d51 22522 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
738755b0 22523
477330fc 22524 if (fixP->fx_done || !seg->use_rela_p)
738755b0
MS
22525 {
22526 newval = md_chars_to_number (buf, THUMB_SIZE);
22527 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
22528 md_number_to_chars (buf, newval, THUMB_SIZE);
22529 }
22530 }
c19d1205 22531 break;
a737bd4d 22532
c19d1205 22533 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac 22534 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
08f10d51 22535 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22536
2fc8bdac
ZW
22537 if (fixP->fx_done || !seg->use_rela_p)
22538 {
22539 newval = md_chars_to_number (buf, THUMB_SIZE);
22540 newval |= (value & 0x1ff) >> 1;
22541 md_number_to_chars (buf, newval, THUMB_SIZE);
22542 }
c19d1205 22543 break;
a737bd4d 22544
c19d1205 22545 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac 22546 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
08f10d51 22547 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22548
2fc8bdac
ZW
22549 if (fixP->fx_done || !seg->use_rela_p)
22550 {
22551 newval = md_chars_to_number (buf, THUMB_SIZE);
22552 newval |= (value & 0xfff) >> 1;
22553 md_number_to_chars (buf, newval, THUMB_SIZE);
22554 }
c19d1205 22555 break;
a737bd4d 22556
c19d1205 22557 case BFD_RELOC_THUMB_PCREL_BRANCH20:
267bf995
RR
22558 if (fixP->fx_addsy
22559 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22560 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22561 && ARM_IS_FUNC (fixP->fx_addsy)
22562 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22563 {
22564 /* Force a relocation for a branch 20 bits wide. */
22565 fixP->fx_done = 0;
22566 }
08f10d51 22567 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
2fc8bdac
ZW
22568 as_bad_where (fixP->fx_file, fixP->fx_line,
22569 _("conditional branch out of range"));
404ff6b5 22570
2fc8bdac
ZW
22571 if (fixP->fx_done || !seg->use_rela_p)
22572 {
22573 offsetT newval2;
22574 addressT S, J1, J2, lo, hi;
404ff6b5 22575
2fc8bdac
ZW
22576 S = (value & 0x00100000) >> 20;
22577 J2 = (value & 0x00080000) >> 19;
22578 J1 = (value & 0x00040000) >> 18;
22579 hi = (value & 0x0003f000) >> 12;
22580 lo = (value & 0x00000ffe) >> 1;
6c43fab6 22581
2fc8bdac
ZW
22582 newval = md_chars_to_number (buf, THUMB_SIZE);
22583 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22584 newval |= (S << 10) | hi;
22585 newval2 |= (J1 << 13) | (J2 << 11) | lo;
22586 md_number_to_chars (buf, newval, THUMB_SIZE);
22587 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
22588 }
c19d1205 22589 break;
6c43fab6 22590
c19d1205 22591 case BFD_RELOC_THUMB_PCREL_BLX:
267bf995
RR
22592 /* If there is a blx from a thumb state function to
22593 another thumb function flip this to a bl and warn
22594 about it. */
22595
22596 if (fixP->fx_addsy
34e77a92 22597 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22598 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22599 && THUMB_IS_FUNC (fixP->fx_addsy))
22600 {
22601 const char *name = S_GET_NAME (fixP->fx_addsy);
22602 as_warn_where (fixP->fx_file, fixP->fx_line,
22603 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
22604 name);
22605 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22606 newval = newval | 0x1000;
22607 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22608 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22609 fixP->fx_done = 1;
22610 }
22611
22612
22613 goto thumb_bl_common;
22614
c19d1205 22615 case BFD_RELOC_THUMB_PCREL_BRANCH23:
267bf995
RR
22616 /* A bl from Thumb state ISA to an internal ARM state function
22617 is converted to a blx. */
22618 if (fixP->fx_addsy
22619 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22620 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22621 && ARM_IS_FUNC (fixP->fx_addsy)
22622 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22623 {
22624 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22625 newval = newval & ~0x1000;
22626 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22627 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
22628 fixP->fx_done = 1;
22629 }
22630
22631 thumb_bl_common:
22632
2fc8bdac
ZW
22633 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22634 /* For a BLX instruction, make sure that the relocation is rounded up
22635 to a word boundary. This follows the semantics of the instruction
22636 which specifies that bit 1 of the target address will come from bit
22637 1 of the base address. */
d406f3e4
JB
22638 value = (value + 3) & ~ 3;
22639
22640#ifdef OBJ_ELF
22641 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
22642 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22643 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22644#endif
404ff6b5 22645
2b2f5df9
NC
22646 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
22647 {
22648 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2)))
22649 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
22650 else if ((value & ~0x1ffffff)
22651 && ((value & ~0x1ffffff) != ~0x1ffffff))
22652 as_bad_where (fixP->fx_file, fixP->fx_line,
22653 _("Thumb2 branch out of range"));
22654 }
4a42ebbc
RR
22655
22656 if (fixP->fx_done || !seg->use_rela_p)
22657 encode_thumb2_b_bl_offset (buf, value);
22658
c19d1205 22659 break;
404ff6b5 22660
c19d1205 22661 case BFD_RELOC_THUMB_PCREL_BRANCH25:
08f10d51
NC
22662 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
22663 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
6c43fab6 22664
2fc8bdac 22665 if (fixP->fx_done || !seg->use_rela_p)
4a42ebbc 22666 encode_thumb2_b_bl_offset (buf, value);
6c43fab6 22667
2fc8bdac 22668 break;
a737bd4d 22669
2fc8bdac
ZW
22670 case BFD_RELOC_8:
22671 if (fixP->fx_done || !seg->use_rela_p)
4b1a927e 22672 *buf = value;
c19d1205 22673 break;
a737bd4d 22674
c19d1205 22675 case BFD_RELOC_16:
2fc8bdac 22676 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 22677 md_number_to_chars (buf, value, 2);
c19d1205 22678 break;
a737bd4d 22679
c19d1205 22680#ifdef OBJ_ELF
0855e32b
NS
22681 case BFD_RELOC_ARM_TLS_CALL:
22682 case BFD_RELOC_ARM_THM_TLS_CALL:
22683 case BFD_RELOC_ARM_TLS_DESCSEQ:
22684 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
0855e32b 22685 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22686 case BFD_RELOC_ARM_TLS_GD32:
22687 case BFD_RELOC_ARM_TLS_LE32:
22688 case BFD_RELOC_ARM_TLS_IE32:
22689 case BFD_RELOC_ARM_TLS_LDM32:
22690 case BFD_RELOC_ARM_TLS_LDO32:
22691 S_SET_THREAD_LOCAL (fixP->fx_addsy);
4b1a927e 22692 break;
6c43fab6 22693
c19d1205
ZW
22694 case BFD_RELOC_ARM_GOT32:
22695 case BFD_RELOC_ARM_GOTOFF:
c19d1205 22696 break;
b43420e6
NC
22697
22698 case BFD_RELOC_ARM_GOT_PREL:
22699 if (fixP->fx_done || !seg->use_rela_p)
477330fc 22700 md_number_to_chars (buf, value, 4);
b43420e6
NC
22701 break;
22702
9a6f4e97
NS
22703 case BFD_RELOC_ARM_TARGET2:
22704 /* TARGET2 is not partial-inplace, so we need to write the
477330fc
RM
22705 addend here for REL targets, because it won't be written out
22706 during reloc processing later. */
9a6f4e97
NS
22707 if (fixP->fx_done || !seg->use_rela_p)
22708 md_number_to_chars (buf, fixP->fx_offset, 4);
22709 break;
c19d1205 22710#endif
6c43fab6 22711
c19d1205
ZW
22712 case BFD_RELOC_RVA:
22713 case BFD_RELOC_32:
22714 case BFD_RELOC_ARM_TARGET1:
22715 case BFD_RELOC_ARM_ROSEGREL32:
22716 case BFD_RELOC_ARM_SBREL32:
22717 case BFD_RELOC_32_PCREL:
f0927246
NC
22718#ifdef TE_PE
22719 case BFD_RELOC_32_SECREL:
22720#endif
2fc8bdac 22721 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
22722#ifdef TE_WINCE
22723 /* For WinCE we only do this for pcrel fixups. */
22724 if (fixP->fx_done || fixP->fx_pcrel)
22725#endif
22726 md_number_to_chars (buf, value, 4);
c19d1205 22727 break;
6c43fab6 22728
c19d1205
ZW
22729#ifdef OBJ_ELF
22730 case BFD_RELOC_ARM_PREL31:
2fc8bdac 22731 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
22732 {
22733 newval = md_chars_to_number (buf, 4) & 0x80000000;
22734 if ((value ^ (value >> 1)) & 0x40000000)
22735 {
22736 as_bad_where (fixP->fx_file, fixP->fx_line,
22737 _("rel31 relocation overflow"));
22738 }
22739 newval |= value & 0x7fffffff;
22740 md_number_to_chars (buf, newval, 4);
22741 }
22742 break;
c19d1205 22743#endif
a737bd4d 22744
c19d1205 22745 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 22746 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
c19d1205
ZW
22747 if (value < -1023 || value > 1023 || (value & 3))
22748 as_bad_where (fixP->fx_file, fixP->fx_line,
22749 _("co-processor offset out of range"));
22750 cp_off_common:
26d97720 22751 sign = value > 0;
c19d1205
ZW
22752 if (value < 0)
22753 value = -value;
8f06b2d8
PB
22754 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22755 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22756 newval = md_chars_to_number (buf, INSN_SIZE);
22757 else
22758 newval = get_thumb32_insn (buf);
26d97720
NS
22759 if (value == 0)
22760 newval &= 0xffffff00;
22761 else
22762 {
22763 newval &= 0xff7fff00;
22764 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
22765 }
8f06b2d8
PB
22766 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22767 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22768 md_number_to_chars (buf, newval, INSN_SIZE);
22769 else
22770 put_thumb32_insn (buf, newval);
c19d1205 22771 break;
a737bd4d 22772
c19d1205 22773 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 22774 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
22775 if (value < -255 || value > 255)
22776 as_bad_where (fixP->fx_file, fixP->fx_line,
22777 _("co-processor offset out of range"));
df7849c5 22778 value *= 4;
c19d1205 22779 goto cp_off_common;
6c43fab6 22780
c19d1205
ZW
22781 case BFD_RELOC_ARM_THUMB_OFFSET:
22782 newval = md_chars_to_number (buf, THUMB_SIZE);
22783 /* Exactly what ranges, and where the offset is inserted depends
22784 on the type of instruction, we can establish this from the
22785 top 4 bits. */
22786 switch (newval >> 12)
22787 {
22788 case 4: /* PC load. */
22789 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
22790 forced to zero for these loads; md_pcrel_from has already
22791 compensated for this. */
22792 if (value & 3)
22793 as_bad_where (fixP->fx_file, fixP->fx_line,
22794 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
22795 (((unsigned long) fixP->fx_frag->fr_address
22796 + (unsigned long) fixP->fx_where) & ~3)
22797 + (unsigned long) value);
a737bd4d 22798
c19d1205
ZW
22799 if (value & ~0x3fc)
22800 as_bad_where (fixP->fx_file, fixP->fx_line,
22801 _("invalid offset, value too big (0x%08lX)"),
22802 (long) value);
a737bd4d 22803
c19d1205
ZW
22804 newval |= value >> 2;
22805 break;
a737bd4d 22806
c19d1205
ZW
22807 case 9: /* SP load/store. */
22808 if (value & ~0x3fc)
22809 as_bad_where (fixP->fx_file, fixP->fx_line,
22810 _("invalid offset, value too big (0x%08lX)"),
22811 (long) value);
22812 newval |= value >> 2;
22813 break;
6c43fab6 22814
c19d1205
ZW
22815 case 6: /* Word load/store. */
22816 if (value & ~0x7c)
22817 as_bad_where (fixP->fx_file, fixP->fx_line,
22818 _("invalid offset, value too big (0x%08lX)"),
22819 (long) value);
22820 newval |= value << 4; /* 6 - 2. */
22821 break;
a737bd4d 22822
c19d1205
ZW
22823 case 7: /* Byte load/store. */
22824 if (value & ~0x1f)
22825 as_bad_where (fixP->fx_file, fixP->fx_line,
22826 _("invalid offset, value too big (0x%08lX)"),
22827 (long) value);
22828 newval |= value << 6;
22829 break;
a737bd4d 22830
c19d1205
ZW
22831 case 8: /* Halfword load/store. */
22832 if (value & ~0x3e)
22833 as_bad_where (fixP->fx_file, fixP->fx_line,
22834 _("invalid offset, value too big (0x%08lX)"),
22835 (long) value);
22836 newval |= value << 5; /* 6 - 1. */
22837 break;
a737bd4d 22838
c19d1205
ZW
22839 default:
22840 as_bad_where (fixP->fx_file, fixP->fx_line,
22841 "Unable to process relocation for thumb opcode: %lx",
22842 (unsigned long) newval);
22843 break;
22844 }
22845 md_number_to_chars (buf, newval, THUMB_SIZE);
22846 break;
a737bd4d 22847
c19d1205
ZW
22848 case BFD_RELOC_ARM_THUMB_ADD:
22849 /* This is a complicated relocation, since we use it for all of
22850 the following immediate relocations:
a737bd4d 22851
c19d1205
ZW
22852 3bit ADD/SUB
22853 8bit ADD/SUB
22854 9bit ADD/SUB SP word-aligned
22855 10bit ADD PC/SP word-aligned
a737bd4d 22856
c19d1205
ZW
22857 The type of instruction being processed is encoded in the
22858 instruction field:
a737bd4d 22859
c19d1205
ZW
22860 0x8000 SUB
22861 0x00F0 Rd
22862 0x000F Rs
22863 */
22864 newval = md_chars_to_number (buf, THUMB_SIZE);
22865 {
22866 int rd = (newval >> 4) & 0xf;
22867 int rs = newval & 0xf;
22868 int subtract = !!(newval & 0x8000);
a737bd4d 22869
c19d1205
ZW
22870 /* Check for HI regs, only very restricted cases allowed:
22871 Adjusting SP, and using PC or SP to get an address. */
22872 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
22873 || (rs > 7 && rs != REG_SP && rs != REG_PC))
22874 as_bad_where (fixP->fx_file, fixP->fx_line,
22875 _("invalid Hi register with immediate"));
a737bd4d 22876
c19d1205
ZW
22877 /* If value is negative, choose the opposite instruction. */
22878 if (value < 0)
22879 {
22880 value = -value;
22881 subtract = !subtract;
22882 if (value < 0)
22883 as_bad_where (fixP->fx_file, fixP->fx_line,
22884 _("immediate value out of range"));
22885 }
a737bd4d 22886
c19d1205
ZW
22887 if (rd == REG_SP)
22888 {
22889 if (value & ~0x1fc)
22890 as_bad_where (fixP->fx_file, fixP->fx_line,
22891 _("invalid immediate for stack address calculation"));
22892 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
22893 newval |= value >> 2;
22894 }
22895 else if (rs == REG_PC || rs == REG_SP)
22896 {
22897 if (subtract || value & ~0x3fc)
22898 as_bad_where (fixP->fx_file, fixP->fx_line,
22899 _("invalid immediate for address calculation (value = 0x%08lX)"),
22900 (unsigned long) value);
22901 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
22902 newval |= rd << 8;
22903 newval |= value >> 2;
22904 }
22905 else if (rs == rd)
22906 {
22907 if (value & ~0xff)
22908 as_bad_where (fixP->fx_file, fixP->fx_line,
22909 _("immediate value out of range"));
22910 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
22911 newval |= (rd << 8) | value;
22912 }
22913 else
22914 {
22915 if (value & ~0x7)
22916 as_bad_where (fixP->fx_file, fixP->fx_line,
22917 _("immediate value out of range"));
22918 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
22919 newval |= rd | (rs << 3) | (value << 6);
22920 }
22921 }
22922 md_number_to_chars (buf, newval, THUMB_SIZE);
22923 break;
a737bd4d 22924
c19d1205
ZW
22925 case BFD_RELOC_ARM_THUMB_IMM:
22926 newval = md_chars_to_number (buf, THUMB_SIZE);
22927 if (value < 0 || value > 255)
22928 as_bad_where (fixP->fx_file, fixP->fx_line,
4e6e072b 22929 _("invalid immediate: %ld is out of range"),
c19d1205
ZW
22930 (long) value);
22931 newval |= value;
22932 md_number_to_chars (buf, newval, THUMB_SIZE);
22933 break;
a737bd4d 22934
c19d1205
ZW
22935 case BFD_RELOC_ARM_THUMB_SHIFT:
22936 /* 5bit shift value (0..32). LSL cannot take 32. */
22937 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
22938 temp = newval & 0xf800;
22939 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
22940 as_bad_where (fixP->fx_file, fixP->fx_line,
22941 _("invalid shift value: %ld"), (long) value);
22942 /* Shifts of zero must be encoded as LSL. */
22943 if (value == 0)
22944 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
22945 /* Shifts of 32 are encoded as zero. */
22946 else if (value == 32)
22947 value = 0;
22948 newval |= value << 6;
22949 md_number_to_chars (buf, newval, THUMB_SIZE);
22950 break;
a737bd4d 22951
c19d1205
ZW
22952 case BFD_RELOC_VTABLE_INHERIT:
22953 case BFD_RELOC_VTABLE_ENTRY:
22954 fixP->fx_done = 0;
22955 return;
6c43fab6 22956
b6895b4f
PB
22957 case BFD_RELOC_ARM_MOVW:
22958 case BFD_RELOC_ARM_MOVT:
22959 case BFD_RELOC_ARM_THUMB_MOVW:
22960 case BFD_RELOC_ARM_THUMB_MOVT:
22961 if (fixP->fx_done || !seg->use_rela_p)
22962 {
22963 /* REL format relocations are limited to a 16-bit addend. */
22964 if (!fixP->fx_done)
22965 {
39623e12 22966 if (value < -0x8000 || value > 0x7fff)
b6895b4f 22967 as_bad_where (fixP->fx_file, fixP->fx_line,
ff5075ca 22968 _("offset out of range"));
b6895b4f
PB
22969 }
22970 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
22971 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22972 {
22973 value >>= 16;
22974 }
22975
22976 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
22977 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22978 {
22979 newval = get_thumb32_insn (buf);
22980 newval &= 0xfbf08f00;
22981 newval |= (value & 0xf000) << 4;
22982 newval |= (value & 0x0800) << 15;
22983 newval |= (value & 0x0700) << 4;
22984 newval |= (value & 0x00ff);
22985 put_thumb32_insn (buf, newval);
22986 }
22987 else
22988 {
22989 newval = md_chars_to_number (buf, 4);
22990 newval &= 0xfff0f000;
22991 newval |= value & 0x0fff;
22992 newval |= (value & 0xf000) << 4;
22993 md_number_to_chars (buf, newval, 4);
22994 }
22995 }
22996 return;
22997
4962c51a
MS
22998 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22999 case BFD_RELOC_ARM_ALU_PC_G0:
23000 case BFD_RELOC_ARM_ALU_PC_G1_NC:
23001 case BFD_RELOC_ARM_ALU_PC_G1:
23002 case BFD_RELOC_ARM_ALU_PC_G2:
23003 case BFD_RELOC_ARM_ALU_SB_G0_NC:
23004 case BFD_RELOC_ARM_ALU_SB_G0:
23005 case BFD_RELOC_ARM_ALU_SB_G1_NC:
23006 case BFD_RELOC_ARM_ALU_SB_G1:
23007 case BFD_RELOC_ARM_ALU_SB_G2:
9c2799c2 23008 gas_assert (!fixP->fx_done);
4962c51a
MS
23009 if (!seg->use_rela_p)
23010 {
477330fc
RM
23011 bfd_vma insn;
23012 bfd_vma encoded_addend;
23013 bfd_vma addend_abs = abs (value);
23014
23015 /* Check that the absolute value of the addend can be
23016 expressed as an 8-bit constant plus a rotation. */
23017 encoded_addend = encode_arm_immediate (addend_abs);
23018 if (encoded_addend == (unsigned int) FAIL)
4962c51a 23019 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23020 _("the offset 0x%08lX is not representable"),
23021 (unsigned long) addend_abs);
23022
23023 /* Extract the instruction. */
23024 insn = md_chars_to_number (buf, INSN_SIZE);
23025
23026 /* If the addend is positive, use an ADD instruction.
23027 Otherwise use a SUB. Take care not to destroy the S bit. */
23028 insn &= 0xff1fffff;
23029 if (value < 0)
23030 insn |= 1 << 22;
23031 else
23032 insn |= 1 << 23;
23033
23034 /* Place the encoded addend into the first 12 bits of the
23035 instruction. */
23036 insn &= 0xfffff000;
23037 insn |= encoded_addend;
23038
23039 /* Update the instruction. */
23040 md_number_to_chars (buf, insn, INSN_SIZE);
4962c51a
MS
23041 }
23042 break;
23043
23044 case BFD_RELOC_ARM_LDR_PC_G0:
23045 case BFD_RELOC_ARM_LDR_PC_G1:
23046 case BFD_RELOC_ARM_LDR_PC_G2:
23047 case BFD_RELOC_ARM_LDR_SB_G0:
23048 case BFD_RELOC_ARM_LDR_SB_G1:
23049 case BFD_RELOC_ARM_LDR_SB_G2:
9c2799c2 23050 gas_assert (!fixP->fx_done);
4962c51a 23051 if (!seg->use_rela_p)
477330fc
RM
23052 {
23053 bfd_vma insn;
23054 bfd_vma addend_abs = abs (value);
4962c51a 23055
477330fc
RM
23056 /* Check that the absolute value of the addend can be
23057 encoded in 12 bits. */
23058 if (addend_abs >= 0x1000)
4962c51a 23059 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23060 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
23061 (unsigned long) addend_abs);
23062
23063 /* Extract the instruction. */
23064 insn = md_chars_to_number (buf, INSN_SIZE);
23065
23066 /* If the addend is negative, clear bit 23 of the instruction.
23067 Otherwise set it. */
23068 if (value < 0)
23069 insn &= ~(1 << 23);
23070 else
23071 insn |= 1 << 23;
23072
23073 /* Place the absolute value of the addend into the first 12 bits
23074 of the instruction. */
23075 insn &= 0xfffff000;
23076 insn |= addend_abs;
23077
23078 /* Update the instruction. */
23079 md_number_to_chars (buf, insn, INSN_SIZE);
23080 }
4962c51a
MS
23081 break;
23082
23083 case BFD_RELOC_ARM_LDRS_PC_G0:
23084 case BFD_RELOC_ARM_LDRS_PC_G1:
23085 case BFD_RELOC_ARM_LDRS_PC_G2:
23086 case BFD_RELOC_ARM_LDRS_SB_G0:
23087 case BFD_RELOC_ARM_LDRS_SB_G1:
23088 case BFD_RELOC_ARM_LDRS_SB_G2:
9c2799c2 23089 gas_assert (!fixP->fx_done);
4962c51a 23090 if (!seg->use_rela_p)
477330fc
RM
23091 {
23092 bfd_vma insn;
23093 bfd_vma addend_abs = abs (value);
4962c51a 23094
477330fc
RM
23095 /* Check that the absolute value of the addend can be
23096 encoded in 8 bits. */
23097 if (addend_abs >= 0x100)
4962c51a 23098 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23099 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
23100 (unsigned long) addend_abs);
23101
23102 /* Extract the instruction. */
23103 insn = md_chars_to_number (buf, INSN_SIZE);
23104
23105 /* If the addend is negative, clear bit 23 of the instruction.
23106 Otherwise set it. */
23107 if (value < 0)
23108 insn &= ~(1 << 23);
23109 else
23110 insn |= 1 << 23;
23111
23112 /* Place the first four bits of the absolute value of the addend
23113 into the first 4 bits of the instruction, and the remaining
23114 four into bits 8 .. 11. */
23115 insn &= 0xfffff0f0;
23116 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
23117
23118 /* Update the instruction. */
23119 md_number_to_chars (buf, insn, INSN_SIZE);
23120 }
4962c51a
MS
23121 break;
23122
23123 case BFD_RELOC_ARM_LDC_PC_G0:
23124 case BFD_RELOC_ARM_LDC_PC_G1:
23125 case BFD_RELOC_ARM_LDC_PC_G2:
23126 case BFD_RELOC_ARM_LDC_SB_G0:
23127 case BFD_RELOC_ARM_LDC_SB_G1:
23128 case BFD_RELOC_ARM_LDC_SB_G2:
9c2799c2 23129 gas_assert (!fixP->fx_done);
4962c51a 23130 if (!seg->use_rela_p)
477330fc
RM
23131 {
23132 bfd_vma insn;
23133 bfd_vma addend_abs = abs (value);
4962c51a 23134
477330fc
RM
23135 /* Check that the absolute value of the addend is a multiple of
23136 four and, when divided by four, fits in 8 bits. */
23137 if (addend_abs & 0x3)
4962c51a 23138 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23139 _("bad offset 0x%08lX (must be word-aligned)"),
23140 (unsigned long) addend_abs);
4962c51a 23141
477330fc 23142 if ((addend_abs >> 2) > 0xff)
4962c51a 23143 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
23144 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
23145 (unsigned long) addend_abs);
23146
23147 /* Extract the instruction. */
23148 insn = md_chars_to_number (buf, INSN_SIZE);
23149
23150 /* If the addend is negative, clear bit 23 of the instruction.
23151 Otherwise set it. */
23152 if (value < 0)
23153 insn &= ~(1 << 23);
23154 else
23155 insn |= 1 << 23;
23156
23157 /* Place the addend (divided by four) into the first eight
23158 bits of the instruction. */
23159 insn &= 0xfffffff0;
23160 insn |= addend_abs >> 2;
23161
23162 /* Update the instruction. */
23163 md_number_to_chars (buf, insn, INSN_SIZE);
23164 }
4962c51a
MS
23165 break;
23166
845b51d6
PB
23167 case BFD_RELOC_ARM_V4BX:
23168 /* This will need to go in the object file. */
23169 fixP->fx_done = 0;
23170 break;
23171
c19d1205
ZW
23172 case BFD_RELOC_UNUSED:
23173 default:
23174 as_bad_where (fixP->fx_file, fixP->fx_line,
23175 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
23176 }
6c43fab6
RE
23177}
23178
c19d1205
ZW
23179/* Translate internal representation of relocation info to BFD target
23180 format. */
a737bd4d 23181
c19d1205 23182arelent *
00a97672 23183tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 23184{
c19d1205
ZW
23185 arelent * reloc;
23186 bfd_reloc_code_real_type code;
a737bd4d 23187
21d799b5 23188 reloc = (arelent *) xmalloc (sizeof (arelent));
a737bd4d 23189
21d799b5 23190 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
c19d1205
ZW
23191 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
23192 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 23193
2fc8bdac 23194 if (fixp->fx_pcrel)
00a97672
RS
23195 {
23196 if (section->use_rela_p)
23197 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
23198 else
23199 fixp->fx_offset = reloc->address;
23200 }
c19d1205 23201 reloc->addend = fixp->fx_offset;
a737bd4d 23202
c19d1205 23203 switch (fixp->fx_r_type)
a737bd4d 23204 {
c19d1205
ZW
23205 case BFD_RELOC_8:
23206 if (fixp->fx_pcrel)
23207 {
23208 code = BFD_RELOC_8_PCREL;
23209 break;
23210 }
a737bd4d 23211
c19d1205
ZW
23212 case BFD_RELOC_16:
23213 if (fixp->fx_pcrel)
23214 {
23215 code = BFD_RELOC_16_PCREL;
23216 break;
23217 }
6c43fab6 23218
c19d1205
ZW
23219 case BFD_RELOC_32:
23220 if (fixp->fx_pcrel)
23221 {
23222 code = BFD_RELOC_32_PCREL;
23223 break;
23224 }
a737bd4d 23225
b6895b4f
PB
23226 case BFD_RELOC_ARM_MOVW:
23227 if (fixp->fx_pcrel)
23228 {
23229 code = BFD_RELOC_ARM_MOVW_PCREL;
23230 break;
23231 }
23232
23233 case BFD_RELOC_ARM_MOVT:
23234 if (fixp->fx_pcrel)
23235 {
23236 code = BFD_RELOC_ARM_MOVT_PCREL;
23237 break;
23238 }
23239
23240 case BFD_RELOC_ARM_THUMB_MOVW:
23241 if (fixp->fx_pcrel)
23242 {
23243 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
23244 break;
23245 }
23246
23247 case BFD_RELOC_ARM_THUMB_MOVT:
23248 if (fixp->fx_pcrel)
23249 {
23250 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
23251 break;
23252 }
23253
c19d1205
ZW
23254 case BFD_RELOC_NONE:
23255 case BFD_RELOC_ARM_PCREL_BRANCH:
23256 case BFD_RELOC_ARM_PCREL_BLX:
23257 case BFD_RELOC_RVA:
23258 case BFD_RELOC_THUMB_PCREL_BRANCH7:
23259 case BFD_RELOC_THUMB_PCREL_BRANCH9:
23260 case BFD_RELOC_THUMB_PCREL_BRANCH12:
23261 case BFD_RELOC_THUMB_PCREL_BRANCH20:
23262 case BFD_RELOC_THUMB_PCREL_BRANCH23:
23263 case BFD_RELOC_THUMB_PCREL_BRANCH25:
c19d1205
ZW
23264 case BFD_RELOC_VTABLE_ENTRY:
23265 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
23266#ifdef TE_PE
23267 case BFD_RELOC_32_SECREL:
23268#endif
c19d1205
ZW
23269 code = fixp->fx_r_type;
23270 break;
a737bd4d 23271
00adf2d4
JB
23272 case BFD_RELOC_THUMB_PCREL_BLX:
23273#ifdef OBJ_ELF
23274 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
23275 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
23276 else
23277#endif
23278 code = BFD_RELOC_THUMB_PCREL_BLX;
23279 break;
23280
c19d1205
ZW
23281 case BFD_RELOC_ARM_LITERAL:
23282 case BFD_RELOC_ARM_HWLITERAL:
23283 /* If this is called then the a literal has
23284 been referenced across a section boundary. */
23285 as_bad_where (fixp->fx_file, fixp->fx_line,
23286 _("literal referenced across section boundary"));
23287 return NULL;
a737bd4d 23288
c19d1205 23289#ifdef OBJ_ELF
0855e32b
NS
23290 case BFD_RELOC_ARM_TLS_CALL:
23291 case BFD_RELOC_ARM_THM_TLS_CALL:
23292 case BFD_RELOC_ARM_TLS_DESCSEQ:
23293 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
c19d1205
ZW
23294 case BFD_RELOC_ARM_GOT32:
23295 case BFD_RELOC_ARM_GOTOFF:
b43420e6 23296 case BFD_RELOC_ARM_GOT_PREL:
c19d1205
ZW
23297 case BFD_RELOC_ARM_PLT32:
23298 case BFD_RELOC_ARM_TARGET1:
23299 case BFD_RELOC_ARM_ROSEGREL32:
23300 case BFD_RELOC_ARM_SBREL32:
23301 case BFD_RELOC_ARM_PREL31:
23302 case BFD_RELOC_ARM_TARGET2:
23303 case BFD_RELOC_ARM_TLS_LE32:
23304 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
23305 case BFD_RELOC_ARM_PCREL_CALL:
23306 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
23307 case BFD_RELOC_ARM_ALU_PC_G0_NC:
23308 case BFD_RELOC_ARM_ALU_PC_G0:
23309 case BFD_RELOC_ARM_ALU_PC_G1_NC:
23310 case BFD_RELOC_ARM_ALU_PC_G1:
23311 case BFD_RELOC_ARM_ALU_PC_G2:
23312 case BFD_RELOC_ARM_LDR_PC_G0:
23313 case BFD_RELOC_ARM_LDR_PC_G1:
23314 case BFD_RELOC_ARM_LDR_PC_G2:
23315 case BFD_RELOC_ARM_LDRS_PC_G0:
23316 case BFD_RELOC_ARM_LDRS_PC_G1:
23317 case BFD_RELOC_ARM_LDRS_PC_G2:
23318 case BFD_RELOC_ARM_LDC_PC_G0:
23319 case BFD_RELOC_ARM_LDC_PC_G1:
23320 case BFD_RELOC_ARM_LDC_PC_G2:
23321 case BFD_RELOC_ARM_ALU_SB_G0_NC:
23322 case BFD_RELOC_ARM_ALU_SB_G0:
23323 case BFD_RELOC_ARM_ALU_SB_G1_NC:
23324 case BFD_RELOC_ARM_ALU_SB_G1:
23325 case BFD_RELOC_ARM_ALU_SB_G2:
23326 case BFD_RELOC_ARM_LDR_SB_G0:
23327 case BFD_RELOC_ARM_LDR_SB_G1:
23328 case BFD_RELOC_ARM_LDR_SB_G2:
23329 case BFD_RELOC_ARM_LDRS_SB_G0:
23330 case BFD_RELOC_ARM_LDRS_SB_G1:
23331 case BFD_RELOC_ARM_LDRS_SB_G2:
23332 case BFD_RELOC_ARM_LDC_SB_G0:
23333 case BFD_RELOC_ARM_LDC_SB_G1:
23334 case BFD_RELOC_ARM_LDC_SB_G2:
845b51d6 23335 case BFD_RELOC_ARM_V4BX:
c19d1205
ZW
23336 code = fixp->fx_r_type;
23337 break;
a737bd4d 23338
0855e32b 23339 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
23340 case BFD_RELOC_ARM_TLS_GD32:
23341 case BFD_RELOC_ARM_TLS_IE32:
23342 case BFD_RELOC_ARM_TLS_LDM32:
23343 /* BFD will include the symbol's address in the addend.
23344 But we don't want that, so subtract it out again here. */
23345 if (!S_IS_COMMON (fixp->fx_addsy))
23346 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
23347 code = fixp->fx_r_type;
23348 break;
23349#endif
a737bd4d 23350
c19d1205
ZW
23351 case BFD_RELOC_ARM_IMMEDIATE:
23352 as_bad_where (fixp->fx_file, fixp->fx_line,
23353 _("internal relocation (type: IMMEDIATE) not fixed up"));
23354 return NULL;
a737bd4d 23355
c19d1205
ZW
23356 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
23357 as_bad_where (fixp->fx_file, fixp->fx_line,
23358 _("ADRL used for a symbol not defined in the same file"));
23359 return NULL;
a737bd4d 23360
c19d1205 23361 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
23362 if (section->use_rela_p)
23363 {
23364 code = fixp->fx_r_type;
23365 break;
23366 }
23367
c19d1205
ZW
23368 if (fixp->fx_addsy != NULL
23369 && !S_IS_DEFINED (fixp->fx_addsy)
23370 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 23371 {
c19d1205
ZW
23372 as_bad_where (fixp->fx_file, fixp->fx_line,
23373 _("undefined local label `%s'"),
23374 S_GET_NAME (fixp->fx_addsy));
23375 return NULL;
a737bd4d
NC
23376 }
23377
c19d1205
ZW
23378 as_bad_where (fixp->fx_file, fixp->fx_line,
23379 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
23380 return NULL;
a737bd4d 23381
c19d1205
ZW
23382 default:
23383 {
23384 char * type;
6c43fab6 23385
c19d1205
ZW
23386 switch (fixp->fx_r_type)
23387 {
23388 case BFD_RELOC_NONE: type = "NONE"; break;
23389 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
23390 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 23391 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
23392 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
23393 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
23394 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
db187cb9 23395 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
8f06b2d8 23396 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
23397 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
23398 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
23399 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
23400 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
23401 default: type = _("<unknown>"); break;
23402 }
23403 as_bad_where (fixp->fx_file, fixp->fx_line,
23404 _("cannot represent %s relocation in this object file format"),
23405 type);
23406 return NULL;
23407 }
a737bd4d 23408 }
6c43fab6 23409
c19d1205
ZW
23410#ifdef OBJ_ELF
23411 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
23412 && GOT_symbol
23413 && fixp->fx_addsy == GOT_symbol)
23414 {
23415 code = BFD_RELOC_ARM_GOTPC;
23416 reloc->addend = fixp->fx_offset = reloc->address;
23417 }
23418#endif
6c43fab6 23419
c19d1205 23420 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 23421
c19d1205
ZW
23422 if (reloc->howto == NULL)
23423 {
23424 as_bad_where (fixp->fx_file, fixp->fx_line,
23425 _("cannot represent %s relocation in this object file format"),
23426 bfd_get_reloc_code_name (code));
23427 return NULL;
23428 }
6c43fab6 23429
c19d1205
ZW
23430 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
23431 vtable entry to be used in the relocation's section offset. */
23432 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
23433 reloc->address = fixp->fx_offset;
6c43fab6 23434
c19d1205 23435 return reloc;
6c43fab6
RE
23436}
23437
c19d1205 23438/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 23439
c19d1205
ZW
23440void
23441cons_fix_new_arm (fragS * frag,
23442 int where,
23443 int size,
62ebcb5c
AM
23444 expressionS * exp,
23445 bfd_reloc_code_real_type reloc)
6c43fab6 23446{
c19d1205 23447 int pcrel = 0;
6c43fab6 23448
c19d1205
ZW
23449 /* Pick a reloc.
23450 FIXME: @@ Should look at CPU word size. */
23451 switch (size)
23452 {
23453 case 1:
62ebcb5c 23454 reloc = BFD_RELOC_8;
c19d1205
ZW
23455 break;
23456 case 2:
62ebcb5c 23457 reloc = BFD_RELOC_16;
c19d1205
ZW
23458 break;
23459 case 4:
23460 default:
62ebcb5c 23461 reloc = BFD_RELOC_32;
c19d1205
ZW
23462 break;
23463 case 8:
62ebcb5c 23464 reloc = BFD_RELOC_64;
c19d1205
ZW
23465 break;
23466 }
6c43fab6 23467
f0927246
NC
23468#ifdef TE_PE
23469 if (exp->X_op == O_secrel)
23470 {
23471 exp->X_op = O_symbol;
62ebcb5c 23472 reloc = BFD_RELOC_32_SECREL;
f0927246
NC
23473 }
23474#endif
23475
62ebcb5c 23476 fix_new_exp (frag, where, size, exp, pcrel, reloc);
c19d1205 23477}
6c43fab6 23478
4343666d 23479#if defined (OBJ_COFF)
c19d1205
ZW
23480void
23481arm_validate_fix (fixS * fixP)
6c43fab6 23482{
c19d1205
ZW
23483 /* If the destination of the branch is a defined symbol which does not have
23484 the THUMB_FUNC attribute, then we must be calling a function which has
23485 the (interfacearm) attribute. We look for the Thumb entry point to that
23486 function and change the branch to refer to that function instead. */
23487 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
23488 && fixP->fx_addsy != NULL
23489 && S_IS_DEFINED (fixP->fx_addsy)
23490 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 23491 {
c19d1205 23492 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 23493 }
c19d1205
ZW
23494}
23495#endif
6c43fab6 23496
267bf995 23497
c19d1205
ZW
23498int
23499arm_force_relocation (struct fix * fixp)
23500{
23501#if defined (OBJ_COFF) && defined (TE_PE)
23502 if (fixp->fx_r_type == BFD_RELOC_RVA)
23503 return 1;
23504#endif
6c43fab6 23505
267bf995
RR
23506 /* In case we have a call or a branch to a function in ARM ISA mode from
23507 a thumb function or vice-versa force the relocation. These relocations
23508 are cleared off for some cores that might have blx and simple transformations
23509 are possible. */
23510
23511#ifdef OBJ_ELF
23512 switch (fixp->fx_r_type)
23513 {
23514 case BFD_RELOC_ARM_PCREL_JUMP:
23515 case BFD_RELOC_ARM_PCREL_CALL:
23516 case BFD_RELOC_THUMB_PCREL_BLX:
23517 if (THUMB_IS_FUNC (fixp->fx_addsy))
23518 return 1;
23519 break;
23520
23521 case BFD_RELOC_ARM_PCREL_BLX:
23522 case BFD_RELOC_THUMB_PCREL_BRANCH25:
23523 case BFD_RELOC_THUMB_PCREL_BRANCH20:
23524 case BFD_RELOC_THUMB_PCREL_BRANCH23:
23525 if (ARM_IS_FUNC (fixp->fx_addsy))
23526 return 1;
23527 break;
23528
23529 default:
23530 break;
23531 }
23532#endif
23533
b5884301
PB
23534 /* Resolve these relocations even if the symbol is extern or weak.
23535 Technically this is probably wrong due to symbol preemption.
23536 In practice these relocations do not have enough range to be useful
23537 at dynamic link time, and some code (e.g. in the Linux kernel)
23538 expects these references to be resolved. */
c19d1205
ZW
23539 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
23540 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
b5884301 23541 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
0110f2b8 23542 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
b5884301
PB
23543 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
23544 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
23545 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
16805f35 23546 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
23547 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
23548 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
b5884301
PB
23549 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
23550 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
23551 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
23552 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
c19d1205 23553 return 0;
a737bd4d 23554
4962c51a
MS
23555 /* Always leave these relocations for the linker. */
23556 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23557 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23558 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
23559 return 1;
23560
f0291e4c
PB
23561 /* Always generate relocations against function symbols. */
23562 if (fixp->fx_r_type == BFD_RELOC_32
23563 && fixp->fx_addsy
23564 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
23565 return 1;
23566
c19d1205 23567 return generic_force_reloc (fixp);
404ff6b5
AH
23568}
23569
0ffdc86c 23570#if defined (OBJ_ELF) || defined (OBJ_COFF)
e28387c3
PB
23571/* Relocations against function names must be left unadjusted,
23572 so that the linker can use this information to generate interworking
23573 stubs. The MIPS version of this function
c19d1205
ZW
23574 also prevents relocations that are mips-16 specific, but I do not
23575 know why it does this.
404ff6b5 23576
c19d1205
ZW
23577 FIXME:
23578 There is one other problem that ought to be addressed here, but
23579 which currently is not: Taking the address of a label (rather
23580 than a function) and then later jumping to that address. Such
23581 addresses also ought to have their bottom bit set (assuming that
23582 they reside in Thumb code), but at the moment they will not. */
404ff6b5 23583
c19d1205
ZW
23584bfd_boolean
23585arm_fix_adjustable (fixS * fixP)
404ff6b5 23586{
c19d1205
ZW
23587 if (fixP->fx_addsy == NULL)
23588 return 1;
404ff6b5 23589
e28387c3
PB
23590 /* Preserve relocations against symbols with function type. */
23591 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
c921be7d 23592 return FALSE;
e28387c3 23593
c19d1205
ZW
23594 if (THUMB_IS_FUNC (fixP->fx_addsy)
23595 && fixP->fx_subsy == NULL)
c921be7d 23596 return FALSE;
a737bd4d 23597
c19d1205
ZW
23598 /* We need the symbol name for the VTABLE entries. */
23599 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
23600 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
c921be7d 23601 return FALSE;
404ff6b5 23602
c19d1205
ZW
23603 /* Don't allow symbols to be discarded on GOT related relocs. */
23604 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
23605 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
23606 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
23607 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
23608 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
23609 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
23610 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
23611 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
0855e32b
NS
23612 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
23613 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
23614 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
23615 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
23616 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
c19d1205 23617 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
c921be7d 23618 return FALSE;
a737bd4d 23619
4962c51a
MS
23620 /* Similarly for group relocations. */
23621 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23622 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23623 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
c921be7d 23624 return FALSE;
4962c51a 23625
79947c54
CD
23626 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
23627 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
23628 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
23629 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
23630 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
23631 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
23632 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
23633 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
23634 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
c921be7d 23635 return FALSE;
79947c54 23636
c921be7d 23637 return TRUE;
a737bd4d 23638}
0ffdc86c
NC
23639#endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
23640
23641#ifdef OBJ_ELF
404ff6b5 23642
c19d1205
ZW
23643const char *
23644elf32_arm_target_format (void)
404ff6b5 23645{
c19d1205
ZW
23646#ifdef TE_SYMBIAN
23647 return (target_big_endian
23648 ? "elf32-bigarm-symbian"
23649 : "elf32-littlearm-symbian");
23650#elif defined (TE_VXWORKS)
23651 return (target_big_endian
23652 ? "elf32-bigarm-vxworks"
23653 : "elf32-littlearm-vxworks");
b38cadfb
NC
23654#elif defined (TE_NACL)
23655 return (target_big_endian
23656 ? "elf32-bigarm-nacl"
23657 : "elf32-littlearm-nacl");
c19d1205
ZW
23658#else
23659 if (target_big_endian)
23660 return "elf32-bigarm";
23661 else
23662 return "elf32-littlearm";
23663#endif
404ff6b5
AH
23664}
23665
c19d1205
ZW
23666void
23667armelf_frob_symbol (symbolS * symp,
23668 int * puntp)
404ff6b5 23669{
c19d1205
ZW
23670 elf_frob_symbol (symp, puntp);
23671}
23672#endif
404ff6b5 23673
c19d1205 23674/* MD interface: Finalization. */
a737bd4d 23675
c19d1205
ZW
23676void
23677arm_cleanup (void)
23678{
23679 literal_pool * pool;
a737bd4d 23680
e07e6e58
NC
23681 /* Ensure that all the IT blocks are properly closed. */
23682 check_it_blocks_finished ();
23683
c19d1205
ZW
23684 for (pool = list_of_pools; pool; pool = pool->next)
23685 {
5f4273c7 23686 /* Put it at the end of the relevant section. */
c19d1205
ZW
23687 subseg_set (pool->section, pool->sub_section);
23688#ifdef OBJ_ELF
23689 arm_elf_change_section ();
23690#endif
23691 s_ltorg (0);
23692 }
404ff6b5
AH
23693}
23694
cd000bff
DJ
23695#ifdef OBJ_ELF
23696/* Remove any excess mapping symbols generated for alignment frags in
23697 SEC. We may have created a mapping symbol before a zero byte
23698 alignment; remove it if there's a mapping symbol after the
23699 alignment. */
23700static void
23701check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
23702 void *dummy ATTRIBUTE_UNUSED)
23703{
23704 segment_info_type *seginfo = seg_info (sec);
23705 fragS *fragp;
23706
23707 if (seginfo == NULL || seginfo->frchainP == NULL)
23708 return;
23709
23710 for (fragp = seginfo->frchainP->frch_root;
23711 fragp != NULL;
23712 fragp = fragp->fr_next)
23713 {
23714 symbolS *sym = fragp->tc_frag_data.last_map;
23715 fragS *next = fragp->fr_next;
23716
23717 /* Variable-sized frags have been converted to fixed size by
23718 this point. But if this was variable-sized to start with,
23719 there will be a fixed-size frag after it. So don't handle
23720 next == NULL. */
23721 if (sym == NULL || next == NULL)
23722 continue;
23723
23724 if (S_GET_VALUE (sym) < next->fr_address)
23725 /* Not at the end of this frag. */
23726 continue;
23727 know (S_GET_VALUE (sym) == next->fr_address);
23728
23729 do
23730 {
23731 if (next->tc_frag_data.first_map != NULL)
23732 {
23733 /* Next frag starts with a mapping symbol. Discard this
23734 one. */
23735 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23736 break;
23737 }
23738
23739 if (next->fr_next == NULL)
23740 {
23741 /* This mapping symbol is at the end of the section. Discard
23742 it. */
23743 know (next->fr_fix == 0 && next->fr_var == 0);
23744 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23745 break;
23746 }
23747
23748 /* As long as we have empty frags without any mapping symbols,
23749 keep looking. */
23750 /* If the next frag is non-empty and does not start with a
23751 mapping symbol, then this mapping symbol is required. */
23752 if (next->fr_address != next->fr_next->fr_address)
23753 break;
23754
23755 next = next->fr_next;
23756 }
23757 while (next != NULL);
23758 }
23759}
23760#endif
23761
c19d1205
ZW
23762/* Adjust the symbol table. This marks Thumb symbols as distinct from
23763 ARM ones. */
404ff6b5 23764
c19d1205
ZW
23765void
23766arm_adjust_symtab (void)
404ff6b5 23767{
c19d1205
ZW
23768#ifdef OBJ_COFF
23769 symbolS * sym;
404ff6b5 23770
c19d1205
ZW
23771 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
23772 {
23773 if (ARM_IS_THUMB (sym))
23774 {
23775 if (THUMB_IS_FUNC (sym))
23776 {
23777 /* Mark the symbol as a Thumb function. */
23778 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
23779 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
23780 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 23781
c19d1205
ZW
23782 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
23783 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
23784 else
23785 as_bad (_("%s: unexpected function type: %d"),
23786 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
23787 }
23788 else switch (S_GET_STORAGE_CLASS (sym))
23789 {
23790 case C_EXT:
23791 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
23792 break;
23793 case C_STAT:
23794 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
23795 break;
23796 case C_LABEL:
23797 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
23798 break;
23799 default:
23800 /* Do nothing. */
23801 break;
23802 }
23803 }
a737bd4d 23804
c19d1205
ZW
23805 if (ARM_IS_INTERWORK (sym))
23806 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 23807 }
c19d1205
ZW
23808#endif
23809#ifdef OBJ_ELF
23810 symbolS * sym;
23811 char bind;
404ff6b5 23812
c19d1205 23813 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 23814 {
c19d1205
ZW
23815 if (ARM_IS_THUMB (sym))
23816 {
23817 elf_symbol_type * elf_sym;
404ff6b5 23818
c19d1205
ZW
23819 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
23820 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 23821
b0796911
PB
23822 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
23823 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
23824 {
23825 /* If it's a .thumb_func, declare it as so,
23826 otherwise tag label as .code 16. */
23827 if (THUMB_IS_FUNC (sym))
35fc36a8
RS
23828 elf_sym->internal_elf_sym.st_target_internal
23829 = ST_BRANCH_TO_THUMB;
3ba67470 23830 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
c19d1205
ZW
23831 elf_sym->internal_elf_sym.st_info =
23832 ELF_ST_INFO (bind, STT_ARM_16BIT);
23833 }
23834 }
23835 }
cd000bff
DJ
23836
23837 /* Remove any overlapping mapping symbols generated by alignment frags. */
23838 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
709001e9
MM
23839 /* Now do generic ELF adjustments. */
23840 elf_adjust_symtab ();
c19d1205 23841#endif
404ff6b5
AH
23842}
23843
c19d1205 23844/* MD interface: Initialization. */
404ff6b5 23845
a737bd4d 23846static void
c19d1205 23847set_constant_flonums (void)
a737bd4d 23848{
c19d1205 23849 int i;
404ff6b5 23850
c19d1205
ZW
23851 for (i = 0; i < NUM_FLOAT_VALS; i++)
23852 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
23853 abort ();
a737bd4d 23854}
404ff6b5 23855
3e9e4fcf
JB
23856/* Auto-select Thumb mode if it's the only available instruction set for the
23857 given architecture. */
23858
23859static void
23860autoselect_thumb_from_cpu_variant (void)
23861{
23862 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
23863 opcode_select (16);
23864}
23865
c19d1205
ZW
23866void
23867md_begin (void)
a737bd4d 23868{
c19d1205
ZW
23869 unsigned mach;
23870 unsigned int i;
404ff6b5 23871
c19d1205
ZW
23872 if ( (arm_ops_hsh = hash_new ()) == NULL
23873 || (arm_cond_hsh = hash_new ()) == NULL
23874 || (arm_shift_hsh = hash_new ()) == NULL
23875 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 23876 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 23877 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
23878 || (arm_reloc_hsh = hash_new ()) == NULL
23879 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
23880 as_fatal (_("virtual memory exhausted"));
23881
23882 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
d3ce72d0 23883 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
c19d1205 23884 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
d3ce72d0 23885 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
c19d1205 23886 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
5a49b8ac 23887 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
c19d1205 23888 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 23889 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
62b3e311 23890 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 23891 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
477330fc 23892 (void *) (v7m_psrs + i));
c19d1205 23893 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
5a49b8ac 23894 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
62b3e311
PB
23895 for (i = 0;
23896 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
23897 i++)
d3ce72d0 23898 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
5a49b8ac 23899 (void *) (barrier_opt_names + i));
c19d1205 23900#ifdef OBJ_ELF
3da1d841
NC
23901 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
23902 {
23903 struct reloc_entry * entry = reloc_names + i;
23904
23905 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
23906 /* This makes encode_branch() use the EABI versions of this relocation. */
23907 entry->reloc = BFD_RELOC_UNUSED;
23908
23909 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
23910 }
c19d1205
ZW
23911#endif
23912
23913 set_constant_flonums ();
404ff6b5 23914
c19d1205
ZW
23915 /* Set the cpu variant based on the command-line options. We prefer
23916 -mcpu= over -march= if both are set (as for GCC); and we prefer
23917 -mfpu= over any other way of setting the floating point unit.
23918 Use of legacy options with new options are faulted. */
e74cfd16 23919 if (legacy_cpu)
404ff6b5 23920 {
e74cfd16 23921 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
23922 as_bad (_("use of old and new-style options to set CPU type"));
23923
23924 mcpu_cpu_opt = legacy_cpu;
404ff6b5 23925 }
e74cfd16 23926 else if (!mcpu_cpu_opt)
c19d1205 23927 mcpu_cpu_opt = march_cpu_opt;
404ff6b5 23928
e74cfd16 23929 if (legacy_fpu)
c19d1205 23930 {
e74cfd16 23931 if (mfpu_opt)
c19d1205 23932 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
23933
23934 mfpu_opt = legacy_fpu;
23935 }
e74cfd16 23936 else if (!mfpu_opt)
03b1477f 23937 {
45eb4c1b
NS
23938#if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
23939 || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
23940 /* Some environments specify a default FPU. If they don't, infer it
23941 from the processor. */
e74cfd16 23942 if (mcpu_fpu_opt)
03b1477f
RE
23943 mfpu_opt = mcpu_fpu_opt;
23944 else
23945 mfpu_opt = march_fpu_opt;
39c2da32 23946#else
e74cfd16 23947 mfpu_opt = &fpu_default;
39c2da32 23948#endif
03b1477f
RE
23949 }
23950
e74cfd16 23951 if (!mfpu_opt)
03b1477f 23952 {
493cb6ef 23953 if (mcpu_cpu_opt != NULL)
e74cfd16 23954 mfpu_opt = &fpu_default;
493cb6ef 23955 else if (mcpu_fpu_opt != NULL && ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
e74cfd16 23956 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 23957 else
e74cfd16 23958 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
23959 }
23960
ee065d83 23961#ifdef CPU_DEFAULT
e74cfd16 23962 if (!mcpu_cpu_opt)
ee065d83 23963 {
e74cfd16
PB
23964 mcpu_cpu_opt = &cpu_default;
23965 selected_cpu = cpu_default;
ee065d83 23966 }
73f43896
NC
23967 else if (no_cpu_selected ())
23968 selected_cpu = cpu_default;
e74cfd16
PB
23969#else
23970 if (mcpu_cpu_opt)
23971 selected_cpu = *mcpu_cpu_opt;
ee065d83 23972 else
e74cfd16 23973 mcpu_cpu_opt = &arm_arch_any;
ee065d83 23974#endif
03b1477f 23975
e74cfd16 23976 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
03b1477f 23977
3e9e4fcf
JB
23978 autoselect_thumb_from_cpu_variant ();
23979
e74cfd16 23980 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 23981
f17c130b 23982#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 23983 {
7cc69913
NC
23984 unsigned int flags = 0;
23985
23986#if defined OBJ_ELF
23987 flags = meabi_flags;
d507cf36
PB
23988
23989 switch (meabi_flags)
33a392fb 23990 {
d507cf36 23991 case EF_ARM_EABI_UNKNOWN:
7cc69913 23992#endif
d507cf36
PB
23993 /* Set the flags in the private structure. */
23994 if (uses_apcs_26) flags |= F_APCS26;
23995 if (support_interwork) flags |= F_INTERWORK;
23996 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 23997 if (pic_code) flags |= F_PIC;
e74cfd16 23998 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
23999 flags |= F_SOFT_FLOAT;
24000
d507cf36
PB
24001 switch (mfloat_abi_opt)
24002 {
24003 case ARM_FLOAT_ABI_SOFT:
24004 case ARM_FLOAT_ABI_SOFTFP:
24005 flags |= F_SOFT_FLOAT;
24006 break;
33a392fb 24007
d507cf36
PB
24008 case ARM_FLOAT_ABI_HARD:
24009 if (flags & F_SOFT_FLOAT)
24010 as_bad (_("hard-float conflicts with specified fpu"));
24011 break;
24012 }
03b1477f 24013
e74cfd16
PB
24014 /* Using pure-endian doubles (even if soft-float). */
24015 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 24016 flags |= F_VFP_FLOAT;
f17c130b 24017
fde78edd 24018#if defined OBJ_ELF
e74cfd16 24019 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 24020 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
24021 break;
24022
8cb51566 24023 case EF_ARM_EABI_VER4:
3a4a14e9 24024 case EF_ARM_EABI_VER5:
c19d1205 24025 /* No additional flags to set. */
d507cf36
PB
24026 break;
24027
24028 default:
24029 abort ();
24030 }
7cc69913 24031#endif
b99bd4ef
NC
24032 bfd_set_private_flags (stdoutput, flags);
24033
24034 /* We have run out flags in the COFF header to encode the
24035 status of ATPCS support, so instead we create a dummy,
c19d1205 24036 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
24037 if (atpcs)
24038 {
24039 asection * sec;
24040
24041 sec = bfd_make_section (stdoutput, ".arm.atpcs");
24042
24043 if (sec != NULL)
24044 {
24045 bfd_set_section_flags
24046 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
24047 bfd_set_section_size (stdoutput, sec, 0);
24048 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
24049 }
24050 }
7cc69913 24051 }
f17c130b 24052#endif
b99bd4ef
NC
24053
24054 /* Record the CPU type as well. */
2d447fca
JM
24055 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
24056 mach = bfd_mach_arm_iWMMXt2;
24057 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 24058 mach = bfd_mach_arm_iWMMXt;
e74cfd16 24059 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 24060 mach = bfd_mach_arm_XScale;
e74cfd16 24061 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 24062 mach = bfd_mach_arm_ep9312;
e74cfd16 24063 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 24064 mach = bfd_mach_arm_5TE;
e74cfd16 24065 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 24066 {
e74cfd16 24067 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
24068 mach = bfd_mach_arm_5T;
24069 else
24070 mach = bfd_mach_arm_5;
24071 }
e74cfd16 24072 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 24073 {
e74cfd16 24074 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
24075 mach = bfd_mach_arm_4T;
24076 else
24077 mach = bfd_mach_arm_4;
24078 }
e74cfd16 24079 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 24080 mach = bfd_mach_arm_3M;
e74cfd16
PB
24081 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
24082 mach = bfd_mach_arm_3;
24083 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
24084 mach = bfd_mach_arm_2a;
24085 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
24086 mach = bfd_mach_arm_2;
24087 else
24088 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
24089
24090 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
24091}
24092
c19d1205 24093/* Command line processing. */
b99bd4ef 24094
c19d1205
ZW
24095/* md_parse_option
24096 Invocation line includes a switch not recognized by the base assembler.
24097 See if it's a processor-specific option.
b99bd4ef 24098
c19d1205
ZW
24099 This routine is somewhat complicated by the need for backwards
24100 compatibility (since older releases of gcc can't be changed).
24101 The new options try to make the interface as compatible as
24102 possible with GCC.
b99bd4ef 24103
c19d1205 24104 New options (supported) are:
b99bd4ef 24105
c19d1205
ZW
24106 -mcpu=<cpu name> Assemble for selected processor
24107 -march=<architecture name> Assemble for selected architecture
24108 -mfpu=<fpu architecture> Assemble for selected FPU.
24109 -EB/-mbig-endian Big-endian
24110 -EL/-mlittle-endian Little-endian
24111 -k Generate PIC code
24112 -mthumb Start in Thumb mode
24113 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 24114
278df34e 24115 -m[no-]warn-deprecated Warn about deprecated features
267bf995 24116
c19d1205 24117 For now we will also provide support for:
b99bd4ef 24118
c19d1205
ZW
24119 -mapcs-32 32-bit Program counter
24120 -mapcs-26 26-bit Program counter
24121 -macps-float Floats passed in FP registers
24122 -mapcs-reentrant Reentrant code
24123 -matpcs
24124 (sometime these will probably be replaced with -mapcs=<list of options>
24125 and -matpcs=<list of options>)
b99bd4ef 24126
c19d1205
ZW
24127 The remaining options are only supported for back-wards compatibility.
24128 Cpu variants, the arm part is optional:
24129 -m[arm]1 Currently not supported.
24130 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
24131 -m[arm]3 Arm 3 processor
24132 -m[arm]6[xx], Arm 6 processors
24133 -m[arm]7[xx][t][[d]m] Arm 7 processors
24134 -m[arm]8[10] Arm 8 processors
24135 -m[arm]9[20][tdmi] Arm 9 processors
24136 -mstrongarm[110[0]] StrongARM processors
24137 -mxscale XScale processors
24138 -m[arm]v[2345[t[e]]] Arm architectures
24139 -mall All (except the ARM1)
24140 FP variants:
24141 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
24142 -mfpe-old (No float load/store multiples)
24143 -mvfpxd VFP Single precision
24144 -mvfp All VFP
24145 -mno-fpu Disable all floating point instructions
b99bd4ef 24146
c19d1205
ZW
24147 The following CPU names are recognized:
24148 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
24149 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
24150 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
24151 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
24152 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
24153 arm10t arm10e, arm1020t, arm1020e, arm10200e,
24154 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 24155
c19d1205 24156 */
b99bd4ef 24157
c19d1205 24158const char * md_shortopts = "m:k";
b99bd4ef 24159
c19d1205
ZW
24160#ifdef ARM_BI_ENDIAN
24161#define OPTION_EB (OPTION_MD_BASE + 0)
24162#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 24163#else
c19d1205
ZW
24164#if TARGET_BYTES_BIG_ENDIAN
24165#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 24166#else
c19d1205
ZW
24167#define OPTION_EL (OPTION_MD_BASE + 1)
24168#endif
b99bd4ef 24169#endif
845b51d6 24170#define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
b99bd4ef 24171
c19d1205 24172struct option md_longopts[] =
b99bd4ef 24173{
c19d1205
ZW
24174#ifdef OPTION_EB
24175 {"EB", no_argument, NULL, OPTION_EB},
24176#endif
24177#ifdef OPTION_EL
24178 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 24179#endif
845b51d6 24180 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
c19d1205
ZW
24181 {NULL, no_argument, NULL, 0}
24182};
b99bd4ef 24183
c19d1205 24184size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 24185
c19d1205 24186struct arm_option_table
b99bd4ef 24187{
c19d1205
ZW
24188 char *option; /* Option name to match. */
24189 char *help; /* Help information. */
24190 int *var; /* Variable to change. */
24191 int value; /* What to change it to. */
24192 char *deprecated; /* If non-null, print this message. */
24193};
b99bd4ef 24194
c19d1205
ZW
24195struct arm_option_table arm_opts[] =
24196{
24197 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
24198 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
24199 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
24200 &support_interwork, 1, NULL},
24201 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
24202 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
24203 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
24204 1, NULL},
24205 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
24206 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
24207 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
24208 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
24209 NULL},
b99bd4ef 24210
c19d1205
ZW
24211 /* These are recognized by the assembler, but have no affect on code. */
24212 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
24213 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
278df34e
NS
24214
24215 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
24216 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
24217 &warn_on_deprecated, 0, NULL},
e74cfd16
PB
24218 {NULL, NULL, NULL, 0, NULL}
24219};
24220
24221struct arm_legacy_option_table
24222{
24223 char *option; /* Option name to match. */
24224 const arm_feature_set **var; /* Variable to change. */
24225 const arm_feature_set value; /* What to change it to. */
24226 char *deprecated; /* If non-null, print this message. */
24227};
b99bd4ef 24228
e74cfd16
PB
24229const struct arm_legacy_option_table arm_legacy_opts[] =
24230{
c19d1205
ZW
24231 /* DON'T add any new processors to this list -- we want the whole list
24232 to go away... Add them to the processors table instead. */
e74cfd16
PB
24233 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
24234 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
24235 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
24236 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
24237 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
24238 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
24239 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
24240 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
24241 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
24242 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
24243 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
24244 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
24245 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
24246 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
24247 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
24248 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
24249 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
24250 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
24251 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
24252 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
24253 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
24254 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
24255 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
24256 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
24257 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
24258 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
24259 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
24260 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
24261 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
24262 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
24263 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
24264 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
24265 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
24266 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
24267 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
24268 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
24269 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
24270 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
24271 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
24272 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
24273 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
24274 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
24275 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
24276 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
24277 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
24278 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
24279 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
24280 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
24281 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
24282 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
24283 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
24284 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
24285 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
24286 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
24287 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
24288 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
24289 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
24290 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
24291 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
24292 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
24293 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
24294 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
24295 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
24296 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
24297 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
24298 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
24299 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
24300 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
24301 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
24302 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 24303 N_("use -mcpu=strongarm110")},
e74cfd16 24304 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 24305 N_("use -mcpu=strongarm1100")},
e74cfd16 24306 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 24307 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
24308 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
24309 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
24310 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 24311
c19d1205 24312 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
24313 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
24314 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
24315 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
24316 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
24317 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
24318 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
24319 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
24320 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
24321 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
24322 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
24323 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
24324 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
24325 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
24326 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
24327 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
24328 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
24329 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
24330 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 24331
c19d1205 24332 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
24333 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
24334 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
24335 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
24336 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 24337 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 24338
e74cfd16 24339 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 24340};
7ed4c4c5 24341
c19d1205 24342struct arm_cpu_option_table
7ed4c4c5 24343{
c19d1205 24344 char *name;
f3bad469 24345 size_t name_len;
e74cfd16 24346 const arm_feature_set value;
c19d1205
ZW
24347 /* For some CPUs we assume an FPU unless the user explicitly sets
24348 -mfpu=... */
e74cfd16 24349 const arm_feature_set default_fpu;
ee065d83
PB
24350 /* The canonical name of the CPU, or NULL to use NAME converted to upper
24351 case. */
24352 const char *canonical_name;
c19d1205 24353};
7ed4c4c5 24354
c19d1205
ZW
24355/* This list should, at a minimum, contain all the cpu names
24356 recognized by GCC. */
f3bad469 24357#define ARM_CPU_OPT(N, V, DF, CN) { N, sizeof (N) - 1, V, DF, CN }
e74cfd16 24358static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 24359{
f3bad469
MGD
24360 ARM_CPU_OPT ("all", ARM_ANY, FPU_ARCH_FPA, NULL),
24361 ARM_CPU_OPT ("arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL),
24362 ARM_CPU_OPT ("arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL),
24363 ARM_CPU_OPT ("arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
24364 ARM_CPU_OPT ("arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
24365 ARM_CPU_OPT ("arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24366 ARM_CPU_OPT ("arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24367 ARM_CPU_OPT ("arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24368 ARM_CPU_OPT ("arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24369 ARM_CPU_OPT ("arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24370 ARM_CPU_OPT ("arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24371 ARM_CPU_OPT ("arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
24372 ARM_CPU_OPT ("arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24373 ARM_CPU_OPT ("arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
24374 ARM_CPU_OPT ("arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24375 ARM_CPU_OPT ("arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
24376 ARM_CPU_OPT ("arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24377 ARM_CPU_OPT ("arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24378 ARM_CPU_OPT ("arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24379 ARM_CPU_OPT ("arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24380 ARM_CPU_OPT ("arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24381 ARM_CPU_OPT ("arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24382 ARM_CPU_OPT ("arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24383 ARM_CPU_OPT ("arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24384 ARM_CPU_OPT ("arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24385 ARM_CPU_OPT ("arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24386 ARM_CPU_OPT ("arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24387 ARM_CPU_OPT ("arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
24388 ARM_CPU_OPT ("arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24389 ARM_CPU_OPT ("arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24390 ARM_CPU_OPT ("arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24391 ARM_CPU_OPT ("arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
24392 ARM_CPU_OPT ("arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
24393 ARM_CPU_OPT ("strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
24394 ARM_CPU_OPT ("strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
24395 ARM_CPU_OPT ("strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
24396 ARM_CPU_OPT ("strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
24397 ARM_CPU_OPT ("strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
24398 ARM_CPU_OPT ("arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24399 ARM_CPU_OPT ("arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"),
24400 ARM_CPU_OPT ("arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24401 ARM_CPU_OPT ("arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24402 ARM_CPU_OPT ("arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24403 ARM_CPU_OPT ("arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
24404 ARM_CPU_OPT ("fa526", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
24405 ARM_CPU_OPT ("fa626", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
c19d1205
ZW
24406 /* For V5 or later processors we default to using VFP; but the user
24407 should really set the FPU type explicitly. */
f3bad469
MGD
24408 ARM_CPU_OPT ("arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
24409 ARM_CPU_OPT ("arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24410 ARM_CPU_OPT ("arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
24411 ARM_CPU_OPT ("arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
24412 ARM_CPU_OPT ("arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
24413 ARM_CPU_OPT ("arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
24414 ARM_CPU_OPT ("arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"),
24415 ARM_CPU_OPT ("arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24416 ARM_CPU_OPT ("arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
24417 ARM_CPU_OPT ("arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"),
24418 ARM_CPU_OPT ("arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24419 ARM_CPU_OPT ("arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24420 ARM_CPU_OPT ("arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
24421 ARM_CPU_OPT ("arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
24422 ARM_CPU_OPT ("arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24423 ARM_CPU_OPT ("arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"),
24424 ARM_CPU_OPT ("arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
24425 ARM_CPU_OPT ("arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24426 ARM_CPU_OPT ("arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24427 ARM_CPU_OPT ("arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2,
24428 "ARM1026EJ-S"),
24429 ARM_CPU_OPT ("arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
24430 ARM_CPU_OPT ("fa606te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24431 ARM_CPU_OPT ("fa616te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24432 ARM_CPU_OPT ("fa626te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24433 ARM_CPU_OPT ("fmp626", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24434 ARM_CPU_OPT ("fa726te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
24435 ARM_CPU_OPT ("arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"),
24436 ARM_CPU_OPT ("arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL),
24437 ARM_CPU_OPT ("arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2,
24438 "ARM1136JF-S"),
24439 ARM_CPU_OPT ("arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL),
24440 ARM_CPU_OPT ("mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, "MPCore"),
24441 ARM_CPU_OPT ("mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, "MPCore"),
24442 ARM_CPU_OPT ("arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL),
24443 ARM_CPU_OPT ("arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL),
24444 ARM_CPU_OPT ("arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL),
24445 ARM_CPU_OPT ("arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL),
24446 ARM_CPU_OPT ("cortex-a5", ARM_ARCH_V7A_MP_SEC,
24447 FPU_NONE, "Cortex-A5"),
c9fb6e58 24448 ARM_CPU_OPT ("cortex-a7", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
f3bad469
MGD
24449 "Cortex-A7"),
24450 ARM_CPU_OPT ("cortex-a8", ARM_ARCH_V7A_SEC,
823d2571 24451 ARM_FEATURE_COPROC (FPU_VFP_V3
477330fc 24452 | FPU_NEON_EXT_V1),
f3bad469
MGD
24453 "Cortex-A8"),
24454 ARM_CPU_OPT ("cortex-a9", ARM_ARCH_V7A_MP_SEC,
823d2571 24455 ARM_FEATURE_COPROC (FPU_VFP_V3
477330fc 24456 | FPU_NEON_EXT_V1),
f3bad469 24457 "Cortex-A9"),
c9fb6e58 24458 ARM_CPU_OPT ("cortex-a12", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
63a4bc21 24459 "Cortex-A12"),
c9fb6e58 24460 ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
f3bad469 24461 "Cortex-A15"),
d7adf960
KT
24462 ARM_CPU_OPT ("cortex-a17", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
24463 "Cortex-A17"),
92eb40d9 24464 ARM_CPU_OPT ("cortex-a53", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
477330fc 24465 "Cortex-A53"),
92eb40d9 24466 ARM_CPU_OPT ("cortex-a57", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
477330fc 24467 "Cortex-A57"),
b19f47ad
JW
24468 ARM_CPU_OPT ("cortex-a72", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
24469 "Cortex-A72"),
f3bad469
MGD
24470 ARM_CPU_OPT ("cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"),
24471 ARM_CPU_OPT ("cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16,
24472 "Cortex-R4F"),
24473 ARM_CPU_OPT ("cortex-r5", ARM_ARCH_V7R_IDIV,
24474 FPU_NONE, "Cortex-R5"),
70a8bc5b 24475 ARM_CPU_OPT ("cortex-r7", ARM_ARCH_V7R_IDIV,
24476 FPU_ARCH_VFP_V3D16,
24477 "Cortex-R7"),
a715796b 24478 ARM_CPU_OPT ("cortex-m7", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M7"),
f3bad469
MGD
24479 ARM_CPU_OPT ("cortex-m4", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M4"),
24480 ARM_CPU_OPT ("cortex-m3", ARM_ARCH_V7M, FPU_NONE, "Cortex-M3"),
24481 ARM_CPU_OPT ("cortex-m1", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M1"),
24482 ARM_CPU_OPT ("cortex-m0", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0"),
ce32bd10 24483 ARM_CPU_OPT ("cortex-m0plus", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0+"),
246496bb
EM
24484 ARM_CPU_OPT ("exynos-m1", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
24485 "Samsung " \
24486 "Exynos M1"),
c19d1205 24487 /* ??? XSCALE is really an architecture. */
f3bad469 24488 ARM_CPU_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 24489 /* ??? iwmmxt is not a processor. */
f3bad469
MGD
24490 ARM_CPU_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL),
24491 ARM_CPU_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP_V2, NULL),
24492 ARM_CPU_OPT ("i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 24493 /* Maverick */
823d2571 24494 ARM_CPU_OPT ("ep9312", ARM_FEATURE_LOW (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
da4339ed
NC
24495 FPU_ARCH_MAVERICK, "ARM920T"),
24496 /* Marvell processors. */
823d2571
TG
24497 ARM_CPU_OPT ("marvell-pj4", ARM_FEATURE_CORE_LOW (ARM_AEXT_V7A | ARM_EXT_MP
24498 | ARM_EXT_SEC),
477330fc 24499 FPU_ARCH_VFP_V3D16, NULL),
823d2571
TG
24500 ARM_CPU_OPT ("marvell-whitney", ARM_FEATURE_CORE_LOW (ARM_AEXT_V7A | ARM_EXT_MP
24501 | ARM_EXT_SEC),
4347085a 24502 FPU_ARCH_NEON_VFP_V4, NULL),
ea0d6bb9
PT
24503 /* APM X-Gene family. */
24504 ARM_CPU_OPT ("xgene1", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
24505 "APM X-Gene 1"),
24506 ARM_CPU_OPT ("xgene2", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
24507 "APM X-Gene 2"),
da4339ed 24508
f3bad469 24509 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
c19d1205 24510};
f3bad469 24511#undef ARM_CPU_OPT
7ed4c4c5 24512
c19d1205 24513struct arm_arch_option_table
7ed4c4c5 24514{
c19d1205 24515 char *name;
f3bad469 24516 size_t name_len;
e74cfd16
PB
24517 const arm_feature_set value;
24518 const arm_feature_set default_fpu;
c19d1205 24519};
7ed4c4c5 24520
c19d1205
ZW
24521/* This list should, at a minimum, contain all the architecture names
24522 recognized by GCC. */
f3bad469 24523#define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF }
e74cfd16 24524static const struct arm_arch_option_table arm_archs[] =
c19d1205 24525{
f3bad469
MGD
24526 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
24527 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
24528 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
24529 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
24530 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
24531 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
24532 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
24533 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
24534 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
24535 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
24536 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
24537 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
24538 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
24539 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
24540 ARM_ARCH_OPT ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP),
24541 ARM_ARCH_OPT ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP),
24542 ARM_ARCH_OPT ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP),
24543 ARM_ARCH_OPT ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP),
24544 ARM_ARCH_OPT ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP),
24545 ARM_ARCH_OPT ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP),
24546 ARM_ARCH_OPT ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP),
24547 ARM_ARCH_OPT ("armv6zk", ARM_ARCH_V6ZK, FPU_ARCH_VFP),
24548 ARM_ARCH_OPT ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP),
24549 ARM_ARCH_OPT ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP),
24550 ARM_ARCH_OPT ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP),
24551 ARM_ARCH_OPT ("armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP),
24552 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
24553 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
24554 ARM_ARCH_OPT ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP),
c450d570
PB
24555 /* The official spelling of the ARMv7 profile variants is the dashed form.
24556 Accept the non-dashed form for compatibility with old toolchains. */
f3bad469 24557 ARM_ARCH_OPT ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP),
c9fb6e58 24558 ARM_ARCH_OPT ("armv7ve", ARM_ARCH_V7VE, FPU_ARCH_VFP),
f3bad469
MGD
24559 ARM_ARCH_OPT ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP),
24560 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
24561 ARM_ARCH_OPT ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP),
24562 ARM_ARCH_OPT ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP),
24563 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
24564 ARM_ARCH_OPT ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP),
bca38921 24565 ARM_ARCH_OPT ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP),
f3bad469
MGD
24566 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
24567 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
24568 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP),
24569 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
c19d1205 24570};
f3bad469 24571#undef ARM_ARCH_OPT
7ed4c4c5 24572
69133863
MGD
24573/* ISA extensions in the co-processor and main instruction set space. */
24574struct arm_option_extension_value_table
c19d1205
ZW
24575{
24576 char *name;
f3bad469 24577 size_t name_len;
5a70a223
JB
24578 const arm_feature_set merge_value;
24579 const arm_feature_set clear_value;
69133863 24580 const arm_feature_set allowed_archs;
c19d1205 24581};
7ed4c4c5 24582
69133863
MGD
24583/* The following table must be in alphabetical order with a NULL last entry.
24584 */
5a70a223 24585#define ARM_EXT_OPT(N, M, C, AA) { N, sizeof (N) - 1, M, C, AA }
69133863 24586static const struct arm_option_extension_value_table arm_extensions[] =
c19d1205 24587{
823d2571
TG
24588 ARM_EXT_OPT ("crc", ARCH_CRC_ARMV8, ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
24589 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
bca38921 24590 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
823d2571
TG
24591 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8),
24592 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
24593 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8, ARM_FEATURE_COPROC (FPU_VFP_ARMV8),
24594 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
24595 ARM_EXT_OPT ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
24596 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
24597 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A | ARM_EXT_V7R)),
24598 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT),
24599 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT), ARM_ANY),
24600 ARM_EXT_OPT ("iwmmxt2", ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2),
24601 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2), ARM_ANY),
24602 ARM_EXT_OPT ("maverick", ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK),
24603 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK), ARM_ANY),
24604 ARM_EXT_OPT ("mp", ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
24605 ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
24606 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A | ARM_EXT_V7R)),
bca38921 24607 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
823d2571
TG
24608 ARM_FEATURE_COPROC (FPU_NEON_ARMV8),
24609 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
24610 ARM_EXT_OPT ("os", ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
24611 ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
24612 ARM_FEATURE_CORE_LOW (ARM_EXT_V6M)),
24613 ARM_EXT_OPT ("sec", ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
24614 ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
24615 ARM_FEATURE_CORE_LOW (ARM_EXT_V6K | ARM_EXT_V7A)),
24616 ARM_EXT_OPT ("virt", ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT | ARM_EXT_ADIV
24617 | ARM_EXT_DIV),
24618 ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT),
24619 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
24620 ARM_EXT_OPT ("xscale",ARM_FEATURE_COPROC (ARM_CEXT_XSCALE),
24621 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE), ARM_ANY),
5a70a223 24622 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, ARM_ARCH_NONE }
69133863 24623};
f3bad469 24624#undef ARM_EXT_OPT
69133863
MGD
24625
24626/* ISA floating-point and Advanced SIMD extensions. */
24627struct arm_option_fpu_value_table
24628{
24629 char *name;
24630 const arm_feature_set value;
c19d1205 24631};
7ed4c4c5 24632
c19d1205
ZW
24633/* This list should, at a minimum, contain all the fpu names
24634 recognized by GCC. */
69133863 24635static const struct arm_option_fpu_value_table arm_fpus[] =
c19d1205
ZW
24636{
24637 {"softfpa", FPU_NONE},
24638 {"fpe", FPU_ARCH_FPE},
24639 {"fpe2", FPU_ARCH_FPE},
24640 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
24641 {"fpa", FPU_ARCH_FPA},
24642 {"fpa10", FPU_ARCH_FPA},
24643 {"fpa11", FPU_ARCH_FPA},
24644 {"arm7500fe", FPU_ARCH_FPA},
24645 {"softvfp", FPU_ARCH_VFP},
24646 {"softvfp+vfp", FPU_ARCH_VFP_V2},
24647 {"vfp", FPU_ARCH_VFP_V2},
24648 {"vfp9", FPU_ARCH_VFP_V2},
b1cc4aeb 24649 {"vfp3", FPU_ARCH_VFP_V3}, /* For backwards compatbility. */
c19d1205
ZW
24650 {"vfp10", FPU_ARCH_VFP_V2},
24651 {"vfp10-r0", FPU_ARCH_VFP_V1},
24652 {"vfpxd", FPU_ARCH_VFP_V1xD},
b1cc4aeb
PB
24653 {"vfpv2", FPU_ARCH_VFP_V2},
24654 {"vfpv3", FPU_ARCH_VFP_V3},
62f3b8c8 24655 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
b1cc4aeb 24656 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
62f3b8c8
PB
24657 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
24658 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
24659 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
c19d1205
ZW
24660 {"arm1020t", FPU_ARCH_VFP_V1},
24661 {"arm1020e", FPU_ARCH_VFP_V2},
24662 {"arm1136jfs", FPU_ARCH_VFP_V2},
24663 {"arm1136jf-s", FPU_ARCH_VFP_V2},
24664 {"maverick", FPU_ARCH_MAVERICK},
5287ad62 24665 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
8e79c3df 24666 {"neon-fp16", FPU_ARCH_NEON_FP16},
62f3b8c8
PB
24667 {"vfpv4", FPU_ARCH_VFP_V4},
24668 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
ada65aa3 24669 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
a715796b
TG
24670 {"fpv5-d16", FPU_ARCH_VFP_V5D16},
24671 {"fpv5-sp-d16", FPU_ARCH_VFP_V5_SP_D16},
62f3b8c8 24672 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
bca38921
MGD
24673 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
24674 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
24675 {"crypto-neon-fp-armv8",
24676 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
e74cfd16
PB
24677 {NULL, ARM_ARCH_NONE}
24678};
24679
24680struct arm_option_value_table
24681{
24682 char *name;
24683 long value;
c19d1205 24684};
7ed4c4c5 24685
e74cfd16 24686static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
24687{
24688 {"hard", ARM_FLOAT_ABI_HARD},
24689 {"softfp", ARM_FLOAT_ABI_SOFTFP},
24690 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 24691 {NULL, 0}
c19d1205 24692};
7ed4c4c5 24693
c19d1205 24694#ifdef OBJ_ELF
3a4a14e9 24695/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 24696static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
24697{
24698 {"gnu", EF_ARM_EABI_UNKNOWN},
24699 {"4", EF_ARM_EABI_VER4},
3a4a14e9 24700 {"5", EF_ARM_EABI_VER5},
e74cfd16 24701 {NULL, 0}
c19d1205
ZW
24702};
24703#endif
7ed4c4c5 24704
c19d1205
ZW
24705struct arm_long_option_table
24706{
24707 char * option; /* Substring to match. */
24708 char * help; /* Help information. */
24709 int (* func) (char * subopt); /* Function to decode sub-option. */
24710 char * deprecated; /* If non-null, print this message. */
24711};
7ed4c4c5 24712
c921be7d 24713static bfd_boolean
f3bad469 24714arm_parse_extension (char *str, const arm_feature_set **opt_p)
7ed4c4c5 24715{
21d799b5
NC
24716 arm_feature_set *ext_set = (arm_feature_set *)
24717 xmalloc (sizeof (arm_feature_set));
e74cfd16 24718
69133863 24719 /* We insist on extensions being specified in alphabetical order, and with
fa94de6b
RM
24720 extensions being added before being removed. We achieve this by having
24721 the global ARM_EXTENSIONS table in alphabetical order, and using the
69133863 24722 ADDING_VALUE variable to indicate whether we are adding an extension (1)
fa94de6b 24723 or removing it (0) and only allowing it to change in the order
69133863
MGD
24724 -1 -> 1 -> 0. */
24725 const struct arm_option_extension_value_table * opt = NULL;
24726 int adding_value = -1;
24727
e74cfd16
PB
24728 /* Copy the feature set, so that we can modify it. */
24729 *ext_set = **opt_p;
24730 *opt_p = ext_set;
24731
c19d1205 24732 while (str != NULL && *str != 0)
7ed4c4c5 24733 {
f3bad469
MGD
24734 char *ext;
24735 size_t len;
7ed4c4c5 24736
c19d1205
ZW
24737 if (*str != '+')
24738 {
24739 as_bad (_("invalid architectural extension"));
c921be7d 24740 return FALSE;
c19d1205 24741 }
7ed4c4c5 24742
c19d1205
ZW
24743 str++;
24744 ext = strchr (str, '+');
7ed4c4c5 24745
c19d1205 24746 if (ext != NULL)
f3bad469 24747 len = ext - str;
c19d1205 24748 else
f3bad469 24749 len = strlen (str);
7ed4c4c5 24750
f3bad469 24751 if (len >= 2 && strncmp (str, "no", 2) == 0)
69133863
MGD
24752 {
24753 if (adding_value != 0)
24754 {
24755 adding_value = 0;
24756 opt = arm_extensions;
24757 }
24758
f3bad469 24759 len -= 2;
69133863
MGD
24760 str += 2;
24761 }
f3bad469 24762 else if (len > 0)
69133863
MGD
24763 {
24764 if (adding_value == -1)
24765 {
24766 adding_value = 1;
24767 opt = arm_extensions;
24768 }
24769 else if (adding_value != 1)
24770 {
24771 as_bad (_("must specify extensions to add before specifying "
24772 "those to remove"));
24773 return FALSE;
24774 }
24775 }
24776
f3bad469 24777 if (len == 0)
c19d1205
ZW
24778 {
24779 as_bad (_("missing architectural extension"));
c921be7d 24780 return FALSE;
c19d1205 24781 }
7ed4c4c5 24782
69133863
MGD
24783 gas_assert (adding_value != -1);
24784 gas_assert (opt != NULL);
24785
24786 /* Scan over the options table trying to find an exact match. */
24787 for (; opt->name != NULL; opt++)
f3bad469 24788 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24789 {
69133863
MGD
24790 /* Check we can apply the extension to this architecture. */
24791 if (!ARM_CPU_HAS_FEATURE (*ext_set, opt->allowed_archs))
24792 {
24793 as_bad (_("extension does not apply to the base architecture"));
24794 return FALSE;
24795 }
24796
24797 /* Add or remove the extension. */
24798 if (adding_value)
5a70a223 24799 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->merge_value);
69133863 24800 else
5a70a223 24801 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->clear_value);
69133863 24802
c19d1205
ZW
24803 break;
24804 }
7ed4c4c5 24805
c19d1205
ZW
24806 if (opt->name == NULL)
24807 {
69133863
MGD
24808 /* Did we fail to find an extension because it wasn't specified in
24809 alphabetical order, or because it does not exist? */
24810
24811 for (opt = arm_extensions; opt->name != NULL; opt++)
f3bad469 24812 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
69133863
MGD
24813 break;
24814
24815 if (opt->name == NULL)
24816 as_bad (_("unknown architectural extension `%s'"), str);
24817 else
24818 as_bad (_("architectural extensions must be specified in "
24819 "alphabetical order"));
24820
c921be7d 24821 return FALSE;
c19d1205 24822 }
69133863
MGD
24823 else
24824 {
24825 /* We should skip the extension we've just matched the next time
24826 round. */
24827 opt++;
24828 }
7ed4c4c5 24829
c19d1205
ZW
24830 str = ext;
24831 };
7ed4c4c5 24832
c921be7d 24833 return TRUE;
c19d1205 24834}
7ed4c4c5 24835
c921be7d 24836static bfd_boolean
f3bad469 24837arm_parse_cpu (char *str)
7ed4c4c5 24838{
f3bad469
MGD
24839 const struct arm_cpu_option_table *opt;
24840 char *ext = strchr (str, '+');
24841 size_t len;
7ed4c4c5 24842
c19d1205 24843 if (ext != NULL)
f3bad469 24844 len = ext - str;
7ed4c4c5 24845 else
f3bad469 24846 len = strlen (str);
7ed4c4c5 24847
f3bad469 24848 if (len == 0)
7ed4c4c5 24849 {
c19d1205 24850 as_bad (_("missing cpu name `%s'"), str);
c921be7d 24851 return FALSE;
7ed4c4c5
NC
24852 }
24853
c19d1205 24854 for (opt = arm_cpus; opt->name != NULL; opt++)
f3bad469 24855 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24856 {
e74cfd16
PB
24857 mcpu_cpu_opt = &opt->value;
24858 mcpu_fpu_opt = &opt->default_fpu;
ee065d83 24859 if (opt->canonical_name)
5f4273c7 24860 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24861 else
24862 {
f3bad469 24863 size_t i;
c921be7d 24864
f3bad469 24865 for (i = 0; i < len; i++)
ee065d83
PB
24866 selected_cpu_name[i] = TOUPPER (opt->name[i]);
24867 selected_cpu_name[i] = 0;
24868 }
7ed4c4c5 24869
c19d1205
ZW
24870 if (ext != NULL)
24871 return arm_parse_extension (ext, &mcpu_cpu_opt);
7ed4c4c5 24872
c921be7d 24873 return TRUE;
c19d1205 24874 }
7ed4c4c5 24875
c19d1205 24876 as_bad (_("unknown cpu `%s'"), str);
c921be7d 24877 return FALSE;
7ed4c4c5
NC
24878}
24879
c921be7d 24880static bfd_boolean
f3bad469 24881arm_parse_arch (char *str)
7ed4c4c5 24882{
e74cfd16 24883 const struct arm_arch_option_table *opt;
c19d1205 24884 char *ext = strchr (str, '+');
f3bad469 24885 size_t len;
7ed4c4c5 24886
c19d1205 24887 if (ext != NULL)
f3bad469 24888 len = ext - str;
7ed4c4c5 24889 else
f3bad469 24890 len = strlen (str);
7ed4c4c5 24891
f3bad469 24892 if (len == 0)
7ed4c4c5 24893 {
c19d1205 24894 as_bad (_("missing architecture name `%s'"), str);
c921be7d 24895 return FALSE;
7ed4c4c5
NC
24896 }
24897
c19d1205 24898 for (opt = arm_archs; opt->name != NULL; opt++)
f3bad469 24899 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24900 {
e74cfd16
PB
24901 march_cpu_opt = &opt->value;
24902 march_fpu_opt = &opt->default_fpu;
5f4273c7 24903 strcpy (selected_cpu_name, opt->name);
7ed4c4c5 24904
c19d1205
ZW
24905 if (ext != NULL)
24906 return arm_parse_extension (ext, &march_cpu_opt);
7ed4c4c5 24907
c921be7d 24908 return TRUE;
c19d1205
ZW
24909 }
24910
24911 as_bad (_("unknown architecture `%s'\n"), str);
c921be7d 24912 return FALSE;
7ed4c4c5 24913}
eb043451 24914
c921be7d 24915static bfd_boolean
c19d1205
ZW
24916arm_parse_fpu (char * str)
24917{
69133863 24918 const struct arm_option_fpu_value_table * opt;
b99bd4ef 24919
c19d1205
ZW
24920 for (opt = arm_fpus; opt->name != NULL; opt++)
24921 if (streq (opt->name, str))
24922 {
e74cfd16 24923 mfpu_opt = &opt->value;
c921be7d 24924 return TRUE;
c19d1205 24925 }
b99bd4ef 24926
c19d1205 24927 as_bad (_("unknown floating point format `%s'\n"), str);
c921be7d 24928 return FALSE;
c19d1205
ZW
24929}
24930
c921be7d 24931static bfd_boolean
c19d1205 24932arm_parse_float_abi (char * str)
b99bd4ef 24933{
e74cfd16 24934 const struct arm_option_value_table * opt;
b99bd4ef 24935
c19d1205
ZW
24936 for (opt = arm_float_abis; opt->name != NULL; opt++)
24937 if (streq (opt->name, str))
24938 {
24939 mfloat_abi_opt = opt->value;
c921be7d 24940 return TRUE;
c19d1205 24941 }
cc8a6dd0 24942
c19d1205 24943 as_bad (_("unknown floating point abi `%s'\n"), str);
c921be7d 24944 return FALSE;
c19d1205 24945}
b99bd4ef 24946
c19d1205 24947#ifdef OBJ_ELF
c921be7d 24948static bfd_boolean
c19d1205
ZW
24949arm_parse_eabi (char * str)
24950{
e74cfd16 24951 const struct arm_option_value_table *opt;
cc8a6dd0 24952
c19d1205
ZW
24953 for (opt = arm_eabis; opt->name != NULL; opt++)
24954 if (streq (opt->name, str))
24955 {
24956 meabi_flags = opt->value;
c921be7d 24957 return TRUE;
c19d1205
ZW
24958 }
24959 as_bad (_("unknown EABI `%s'\n"), str);
c921be7d 24960 return FALSE;
c19d1205
ZW
24961}
24962#endif
cc8a6dd0 24963
c921be7d 24964static bfd_boolean
e07e6e58
NC
24965arm_parse_it_mode (char * str)
24966{
c921be7d 24967 bfd_boolean ret = TRUE;
e07e6e58
NC
24968
24969 if (streq ("arm", str))
24970 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
24971 else if (streq ("thumb", str))
24972 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
24973 else if (streq ("always", str))
24974 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
24975 else if (streq ("never", str))
24976 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
24977 else
24978 {
24979 as_bad (_("unknown implicit IT mode `%s', should be "\
477330fc 24980 "arm, thumb, always, or never."), str);
c921be7d 24981 ret = FALSE;
e07e6e58
NC
24982 }
24983
24984 return ret;
24985}
24986
2e6976a8
DG
24987static bfd_boolean
24988arm_ccs_mode (char * unused ATTRIBUTE_UNUSED)
24989{
24990 codecomposer_syntax = TRUE;
24991 arm_comment_chars[0] = ';';
24992 arm_line_separator_chars[0] = 0;
24993 return TRUE;
24994}
24995
c19d1205
ZW
24996struct arm_long_option_table arm_long_opts[] =
24997{
24998 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
24999 arm_parse_cpu, NULL},
25000 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
25001 arm_parse_arch, NULL},
25002 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
25003 arm_parse_fpu, NULL},
25004 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
25005 arm_parse_float_abi, NULL},
25006#ifdef OBJ_ELF
7fac0536 25007 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
c19d1205
ZW
25008 arm_parse_eabi, NULL},
25009#endif
e07e6e58
NC
25010 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
25011 arm_parse_it_mode, NULL},
2e6976a8
DG
25012 {"mccs", N_("\t\t\t TI CodeComposer Studio syntax compatibility mode"),
25013 arm_ccs_mode, NULL},
c19d1205
ZW
25014 {NULL, NULL, 0, NULL}
25015};
cc8a6dd0 25016
c19d1205
ZW
25017int
25018md_parse_option (int c, char * arg)
25019{
25020 struct arm_option_table *opt;
e74cfd16 25021 const struct arm_legacy_option_table *fopt;
c19d1205 25022 struct arm_long_option_table *lopt;
b99bd4ef 25023
c19d1205 25024 switch (c)
b99bd4ef 25025 {
c19d1205
ZW
25026#ifdef OPTION_EB
25027 case OPTION_EB:
25028 target_big_endian = 1;
25029 break;
25030#endif
cc8a6dd0 25031
c19d1205
ZW
25032#ifdef OPTION_EL
25033 case OPTION_EL:
25034 target_big_endian = 0;
25035 break;
25036#endif
b99bd4ef 25037
845b51d6
PB
25038 case OPTION_FIX_V4BX:
25039 fix_v4bx = TRUE;
25040 break;
25041
c19d1205
ZW
25042 case 'a':
25043 /* Listing option. Just ignore these, we don't support additional
25044 ones. */
25045 return 0;
b99bd4ef 25046
c19d1205
ZW
25047 default:
25048 for (opt = arm_opts; opt->option != NULL; opt++)
25049 {
25050 if (c == opt->option[0]
25051 && ((arg == NULL && opt->option[1] == 0)
25052 || streq (arg, opt->option + 1)))
25053 {
c19d1205 25054 /* If the option is deprecated, tell the user. */
278df34e 25055 if (warn_on_deprecated && opt->deprecated != NULL)
c19d1205
ZW
25056 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
25057 arg ? arg : "", _(opt->deprecated));
b99bd4ef 25058
c19d1205
ZW
25059 if (opt->var != NULL)
25060 *opt->var = opt->value;
cc8a6dd0 25061
c19d1205
ZW
25062 return 1;
25063 }
25064 }
b99bd4ef 25065
e74cfd16
PB
25066 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
25067 {
25068 if (c == fopt->option[0]
25069 && ((arg == NULL && fopt->option[1] == 0)
25070 || streq (arg, fopt->option + 1)))
25071 {
e74cfd16 25072 /* If the option is deprecated, tell the user. */
278df34e 25073 if (warn_on_deprecated && fopt->deprecated != NULL)
e74cfd16
PB
25074 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
25075 arg ? arg : "", _(fopt->deprecated));
e74cfd16
PB
25076
25077 if (fopt->var != NULL)
25078 *fopt->var = &fopt->value;
25079
25080 return 1;
25081 }
25082 }
25083
c19d1205
ZW
25084 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
25085 {
25086 /* These options are expected to have an argument. */
25087 if (c == lopt->option[0]
25088 && arg != NULL
25089 && strncmp (arg, lopt->option + 1,
25090 strlen (lopt->option + 1)) == 0)
25091 {
c19d1205 25092 /* If the option is deprecated, tell the user. */
278df34e 25093 if (warn_on_deprecated && lopt->deprecated != NULL)
c19d1205
ZW
25094 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
25095 _(lopt->deprecated));
b99bd4ef 25096
c19d1205
ZW
25097 /* Call the sup-option parser. */
25098 return lopt->func (arg + strlen (lopt->option) - 1);
25099 }
25100 }
a737bd4d 25101
c19d1205
ZW
25102 return 0;
25103 }
a394c00f 25104
c19d1205
ZW
25105 return 1;
25106}
a394c00f 25107
c19d1205
ZW
25108void
25109md_show_usage (FILE * fp)
a394c00f 25110{
c19d1205
ZW
25111 struct arm_option_table *opt;
25112 struct arm_long_option_table *lopt;
a394c00f 25113
c19d1205 25114 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 25115
c19d1205
ZW
25116 for (opt = arm_opts; opt->option != NULL; opt++)
25117 if (opt->help != NULL)
25118 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 25119
c19d1205
ZW
25120 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
25121 if (lopt->help != NULL)
25122 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 25123
c19d1205
ZW
25124#ifdef OPTION_EB
25125 fprintf (fp, _("\
25126 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
25127#endif
25128
c19d1205
ZW
25129#ifdef OPTION_EL
25130 fprintf (fp, _("\
25131 -EL assemble code for a little-endian cpu\n"));
a737bd4d 25132#endif
845b51d6
PB
25133
25134 fprintf (fp, _("\
25135 --fix-v4bx Allow BX in ARMv4 code\n"));
c19d1205 25136}
ee065d83
PB
25137
25138
25139#ifdef OBJ_ELF
62b3e311
PB
25140typedef struct
25141{
25142 int val;
25143 arm_feature_set flags;
25144} cpu_arch_ver_table;
25145
25146/* Mapping from CPU features to EABI CPU arch values. Table must be sorted
25147 least features first. */
25148static const cpu_arch_ver_table cpu_arch_ver[] =
25149{
25150 {1, ARM_ARCH_V4},
25151 {2, ARM_ARCH_V4T},
25152 {3, ARM_ARCH_V5},
ee3c0378 25153 {3, ARM_ARCH_V5T},
62b3e311
PB
25154 {4, ARM_ARCH_V5TE},
25155 {5, ARM_ARCH_V5TEJ},
25156 {6, ARM_ARCH_V6},
7e806470 25157 {9, ARM_ARCH_V6K},
f4c65163 25158 {7, ARM_ARCH_V6Z},
91e22acd 25159 {11, ARM_ARCH_V6M},
b2a5fbdc 25160 {12, ARM_ARCH_V6SM},
7e806470 25161 {8, ARM_ARCH_V6T2},
c9fb6e58 25162 {10, ARM_ARCH_V7VE},
62b3e311
PB
25163 {10, ARM_ARCH_V7R},
25164 {10, ARM_ARCH_V7M},
bca38921 25165 {14, ARM_ARCH_V8A},
62b3e311
PB
25166 {0, ARM_ARCH_NONE}
25167};
25168
ee3c0378
AS
25169/* Set an attribute if it has not already been set by the user. */
25170static void
25171aeabi_set_attribute_int (int tag, int value)
25172{
25173 if (tag < 1
25174 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
25175 || !attributes_set_explicitly[tag])
25176 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
25177}
25178
25179static void
25180aeabi_set_attribute_string (int tag, const char *value)
25181{
25182 if (tag < 1
25183 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
25184 || !attributes_set_explicitly[tag])
25185 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
25186}
25187
ee065d83 25188/* Set the public EABI object attributes. */
3cfdb781 25189void
ee065d83
PB
25190aeabi_set_public_attributes (void)
25191{
25192 int arch;
69239280 25193 char profile;
90ec0d68 25194 int virt_sec = 0;
bca38921 25195 int fp16_optional = 0;
e74cfd16 25196 arm_feature_set flags;
62b3e311
PB
25197 arm_feature_set tmp;
25198 const cpu_arch_ver_table *p;
ee065d83
PB
25199
25200 /* Choose the architecture based on the capabilities of the requested cpu
25201 (if any) and/or the instructions actually used. */
e74cfd16
PB
25202 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
25203 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
25204 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
ddd7f988
RE
25205
25206 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
25207 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
25208
25209 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
25210 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
25211
7f78eb34
JW
25212 selected_cpu = flags;
25213
ddd7f988 25214 /* Allow the user to override the reported architecture. */
7a1d4c38
PB
25215 if (object_arch)
25216 {
25217 ARM_CLEAR_FEATURE (flags, flags, arm_arch_any);
25218 ARM_MERGE_FEATURE_SETS (flags, flags, *object_arch);
25219 }
25220
251665fc
MGD
25221 /* We need to make sure that the attributes do not identify us as v6S-M
25222 when the only v6S-M feature in use is the Operating System Extensions. */
25223 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_os))
25224 if (!ARM_CPU_HAS_FEATURE (flags, arm_arch_v6m_only))
477330fc 25225 ARM_CLEAR_FEATURE (flags, flags, arm_ext_os);
251665fc 25226
62b3e311
PB
25227 tmp = flags;
25228 arch = 0;
25229 for (p = cpu_arch_ver; p->val; p++)
25230 {
25231 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
25232 {
25233 arch = p->val;
25234 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
25235 }
25236 }
ee065d83 25237
9e3c6df6
PB
25238 /* The table lookup above finds the last architecture to contribute
25239 a new feature. Unfortunately, Tag13 is a subset of the union of
25240 v6T2 and v7-M, so it is never seen as contributing a new feature.
25241 We can not search for the last entry which is entirely used,
25242 because if no CPU is specified we build up only those flags
25243 actually used. Perhaps we should separate out the specified
25244 and implicit cases. Avoid taking this path for -march=all by
25245 checking for contradictory v7-A / v7-M features. */
25246 if (arch == 10
25247 && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
25248 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m)
25249 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v6_dsp))
25250 arch = 13;
25251
ee065d83
PB
25252 /* Tag_CPU_name. */
25253 if (selected_cpu_name[0])
25254 {
91d6fa6a 25255 char *q;
ee065d83 25256
91d6fa6a
NC
25257 q = selected_cpu_name;
25258 if (strncmp (q, "armv", 4) == 0)
ee065d83
PB
25259 {
25260 int i;
5f4273c7 25261
91d6fa6a
NC
25262 q += 4;
25263 for (i = 0; q[i]; i++)
25264 q[i] = TOUPPER (q[i]);
ee065d83 25265 }
91d6fa6a 25266 aeabi_set_attribute_string (Tag_CPU_name, q);
ee065d83 25267 }
62f3b8c8 25268
ee065d83 25269 /* Tag_CPU_arch. */
ee3c0378 25270 aeabi_set_attribute_int (Tag_CPU_arch, arch);
62f3b8c8 25271
62b3e311
PB
25272 /* Tag_CPU_arch_profile. */
25273 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
69239280 25274 profile = 'A';
62b3e311 25275 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
69239280 25276 profile = 'R';
7e806470 25277 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_m))
69239280
MGD
25278 profile = 'M';
25279 else
25280 profile = '\0';
25281
25282 if (profile != '\0')
25283 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
62f3b8c8 25284
ee065d83 25285 /* Tag_ARM_ISA_use. */
ee3c0378
AS
25286 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
25287 || arch == 0)
25288 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
62f3b8c8 25289
ee065d83 25290 /* Tag_THUMB_ISA_use. */
ee3c0378
AS
25291 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
25292 || arch == 0)
25293 aeabi_set_attribute_int (Tag_THUMB_ISA_use,
25294 ARM_CPU_HAS_FEATURE (flags, arm_arch_t2) ? 2 : 1);
62f3b8c8 25295
ee065d83 25296 /* Tag_VFP_arch. */
a715796b
TG
25297 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8xd))
25298 aeabi_set_attribute_int (Tag_VFP_arch,
25299 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
25300 ? 7 : 8);
bca38921 25301 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
62f3b8c8
PB
25302 aeabi_set_attribute_int (Tag_VFP_arch,
25303 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
25304 ? 5 : 6);
25305 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
bca38921
MGD
25306 {
25307 fp16_optional = 1;
25308 aeabi_set_attribute_int (Tag_VFP_arch, 3);
25309 }
ada65aa3 25310 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
bca38921
MGD
25311 {
25312 aeabi_set_attribute_int (Tag_VFP_arch, 4);
25313 fp16_optional = 1;
25314 }
ee3c0378
AS
25315 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
25316 aeabi_set_attribute_int (Tag_VFP_arch, 2);
25317 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
477330fc 25318 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
ee3c0378 25319 aeabi_set_attribute_int (Tag_VFP_arch, 1);
62f3b8c8 25320
4547cb56
NC
25321 /* Tag_ABI_HardFP_use. */
25322 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
25323 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
25324 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
25325
ee065d83 25326 /* Tag_WMMX_arch. */
ee3c0378
AS
25327 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
25328 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
25329 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
25330 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
62f3b8c8 25331
ee3c0378 25332 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
bca38921
MGD
25333 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
25334 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
25335 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
25336 {
25337 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
25338 {
25339 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
25340 }
25341 else
25342 {
25343 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
25344 fp16_optional = 1;
25345 }
25346 }
fa94de6b 25347
ee3c0378 25348 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
bca38921 25349 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
ee3c0378 25350 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
4547cb56 25351
69239280
MGD
25352 /* Tag_DIV_use.
25353
25354 We set Tag_DIV_use to two when integer divide instructions have been used
25355 in ARM state, or when Thumb integer divide instructions have been used,
25356 but we have no architecture profile set, nor have we any ARM instructions.
25357
bca38921
MGD
25358 For ARMv8 we set the tag to 0 as integer divide is implied by the base
25359 architecture.
25360
69239280 25361 For new architectures we will have to check these tests. */
bca38921
MGD
25362 gas_assert (arch <= TAG_CPU_ARCH_V8);
25363 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8))
25364 aeabi_set_attribute_int (Tag_DIV_use, 0);
25365 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
25366 || (profile == '\0'
25367 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
25368 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
eea54501 25369 aeabi_set_attribute_int (Tag_DIV_use, 2);
60e5ef9f
MGD
25370
25371 /* Tag_MP_extension_use. */
25372 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
25373 aeabi_set_attribute_int (Tag_MPextension_use, 1);
f4c65163
MGD
25374
25375 /* Tag Virtualization_use. */
25376 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
90ec0d68
MGD
25377 virt_sec |= 1;
25378 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
25379 virt_sec |= 2;
25380 if (virt_sec != 0)
25381 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
ee065d83
PB
25382}
25383
104d59d1 25384/* Add the default contents for the .ARM.attributes section. */
ee065d83
PB
25385void
25386arm_md_end (void)
25387{
ee065d83
PB
25388 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
25389 return;
25390
25391 aeabi_set_public_attributes ();
ee065d83 25392}
8463be01 25393#endif /* OBJ_ELF */
ee065d83
PB
25394
25395
25396/* Parse a .cpu directive. */
25397
25398static void
25399s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
25400{
e74cfd16 25401 const struct arm_cpu_option_table *opt;
ee065d83
PB
25402 char *name;
25403 char saved_char;
25404
25405 name = input_line_pointer;
5f4273c7 25406 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
25407 input_line_pointer++;
25408 saved_char = *input_line_pointer;
25409 *input_line_pointer = 0;
25410
25411 /* Skip the first "all" entry. */
25412 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
25413 if (streq (opt->name, name))
25414 {
e74cfd16
PB
25415 mcpu_cpu_opt = &opt->value;
25416 selected_cpu = opt->value;
ee065d83 25417 if (opt->canonical_name)
5f4273c7 25418 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
25419 else
25420 {
25421 int i;
25422 for (i = 0; opt->name[i]; i++)
25423 selected_cpu_name[i] = TOUPPER (opt->name[i]);
f3bad469 25424
ee065d83
PB
25425 selected_cpu_name[i] = 0;
25426 }
e74cfd16 25427 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
25428 *input_line_pointer = saved_char;
25429 demand_empty_rest_of_line ();
25430 return;
25431 }
25432 as_bad (_("unknown cpu `%s'"), name);
25433 *input_line_pointer = saved_char;
25434 ignore_rest_of_line ();
25435}
25436
25437
25438/* Parse a .arch directive. */
25439
25440static void
25441s_arm_arch (int ignored ATTRIBUTE_UNUSED)
25442{
e74cfd16 25443 const struct arm_arch_option_table *opt;
ee065d83
PB
25444 char saved_char;
25445 char *name;
25446
25447 name = input_line_pointer;
5f4273c7 25448 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
25449 input_line_pointer++;
25450 saved_char = *input_line_pointer;
25451 *input_line_pointer = 0;
25452
25453 /* Skip the first "all" entry. */
25454 for (opt = arm_archs + 1; opt->name != NULL; opt++)
25455 if (streq (opt->name, name))
25456 {
e74cfd16
PB
25457 mcpu_cpu_opt = &opt->value;
25458 selected_cpu = opt->value;
5f4273c7 25459 strcpy (selected_cpu_name, opt->name);
e74cfd16 25460 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
25461 *input_line_pointer = saved_char;
25462 demand_empty_rest_of_line ();
25463 return;
25464 }
25465
25466 as_bad (_("unknown architecture `%s'\n"), name);
25467 *input_line_pointer = saved_char;
25468 ignore_rest_of_line ();
25469}
25470
25471
7a1d4c38
PB
25472/* Parse a .object_arch directive. */
25473
25474static void
25475s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
25476{
25477 const struct arm_arch_option_table *opt;
25478 char saved_char;
25479 char *name;
25480
25481 name = input_line_pointer;
5f4273c7 25482 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
7a1d4c38
PB
25483 input_line_pointer++;
25484 saved_char = *input_line_pointer;
25485 *input_line_pointer = 0;
25486
25487 /* Skip the first "all" entry. */
25488 for (opt = arm_archs + 1; opt->name != NULL; opt++)
25489 if (streq (opt->name, name))
25490 {
25491 object_arch = &opt->value;
25492 *input_line_pointer = saved_char;
25493 demand_empty_rest_of_line ();
25494 return;
25495 }
25496
25497 as_bad (_("unknown architecture `%s'\n"), name);
25498 *input_line_pointer = saved_char;
25499 ignore_rest_of_line ();
25500}
25501
69133863
MGD
25502/* Parse a .arch_extension directive. */
25503
25504static void
25505s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
25506{
25507 const struct arm_option_extension_value_table *opt;
25508 char saved_char;
25509 char *name;
25510 int adding_value = 1;
25511
25512 name = input_line_pointer;
25513 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
25514 input_line_pointer++;
25515 saved_char = *input_line_pointer;
25516 *input_line_pointer = 0;
25517
25518 if (strlen (name) >= 2
25519 && strncmp (name, "no", 2) == 0)
25520 {
25521 adding_value = 0;
25522 name += 2;
25523 }
25524
25525 for (opt = arm_extensions; opt->name != NULL; opt++)
25526 if (streq (opt->name, name))
25527 {
25528 if (!ARM_CPU_HAS_FEATURE (*mcpu_cpu_opt, opt->allowed_archs))
25529 {
25530 as_bad (_("architectural extension `%s' is not allowed for the "
25531 "current base architecture"), name);
25532 break;
25533 }
25534
25535 if (adding_value)
5a70a223
JB
25536 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu,
25537 opt->merge_value);
69133863 25538 else
5a70a223 25539 ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->clear_value);
69133863
MGD
25540
25541 mcpu_cpu_opt = &selected_cpu;
25542 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
25543 *input_line_pointer = saved_char;
25544 demand_empty_rest_of_line ();
25545 return;
25546 }
25547
25548 if (opt->name == NULL)
e673710a 25549 as_bad (_("unknown architecture extension `%s'\n"), name);
69133863
MGD
25550
25551 *input_line_pointer = saved_char;
25552 ignore_rest_of_line ();
25553}
25554
ee065d83
PB
25555/* Parse a .fpu directive. */
25556
25557static void
25558s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
25559{
69133863 25560 const struct arm_option_fpu_value_table *opt;
ee065d83
PB
25561 char saved_char;
25562 char *name;
25563
25564 name = input_line_pointer;
5f4273c7 25565 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
25566 input_line_pointer++;
25567 saved_char = *input_line_pointer;
25568 *input_line_pointer = 0;
5f4273c7 25569
ee065d83
PB
25570 for (opt = arm_fpus; opt->name != NULL; opt++)
25571 if (streq (opt->name, name))
25572 {
e74cfd16
PB
25573 mfpu_opt = &opt->value;
25574 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
25575 *input_line_pointer = saved_char;
25576 demand_empty_rest_of_line ();
25577 return;
25578 }
25579
25580 as_bad (_("unknown floating point format `%s'\n"), name);
25581 *input_line_pointer = saved_char;
25582 ignore_rest_of_line ();
25583}
ee065d83 25584
794ba86a 25585/* Copy symbol information. */
f31fef98 25586
794ba86a
DJ
25587void
25588arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
25589{
25590 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
25591}
e04befd0 25592
f31fef98 25593#ifdef OBJ_ELF
e04befd0
AS
25594/* Given a symbolic attribute NAME, return the proper integer value.
25595 Returns -1 if the attribute is not known. */
f31fef98 25596
e04befd0
AS
25597int
25598arm_convert_symbolic_attribute (const char *name)
25599{
f31fef98
NC
25600 static const struct
25601 {
25602 const char * name;
25603 const int tag;
25604 }
25605 attribute_table[] =
25606 {
25607 /* When you modify this table you should
25608 also modify the list in doc/c-arm.texi. */
e04befd0 25609#define T(tag) {#tag, tag}
f31fef98
NC
25610 T (Tag_CPU_raw_name),
25611 T (Tag_CPU_name),
25612 T (Tag_CPU_arch),
25613 T (Tag_CPU_arch_profile),
25614 T (Tag_ARM_ISA_use),
25615 T (Tag_THUMB_ISA_use),
75375b3e 25616 T (Tag_FP_arch),
f31fef98
NC
25617 T (Tag_VFP_arch),
25618 T (Tag_WMMX_arch),
25619 T (Tag_Advanced_SIMD_arch),
25620 T (Tag_PCS_config),
25621 T (Tag_ABI_PCS_R9_use),
25622 T (Tag_ABI_PCS_RW_data),
25623 T (Tag_ABI_PCS_RO_data),
25624 T (Tag_ABI_PCS_GOT_use),
25625 T (Tag_ABI_PCS_wchar_t),
25626 T (Tag_ABI_FP_rounding),
25627 T (Tag_ABI_FP_denormal),
25628 T (Tag_ABI_FP_exceptions),
25629 T (Tag_ABI_FP_user_exceptions),
25630 T (Tag_ABI_FP_number_model),
75375b3e 25631 T (Tag_ABI_align_needed),
f31fef98 25632 T (Tag_ABI_align8_needed),
75375b3e 25633 T (Tag_ABI_align_preserved),
f31fef98
NC
25634 T (Tag_ABI_align8_preserved),
25635 T (Tag_ABI_enum_size),
25636 T (Tag_ABI_HardFP_use),
25637 T (Tag_ABI_VFP_args),
25638 T (Tag_ABI_WMMX_args),
25639 T (Tag_ABI_optimization_goals),
25640 T (Tag_ABI_FP_optimization_goals),
25641 T (Tag_compatibility),
25642 T (Tag_CPU_unaligned_access),
75375b3e 25643 T (Tag_FP_HP_extension),
f31fef98
NC
25644 T (Tag_VFP_HP_extension),
25645 T (Tag_ABI_FP_16bit_format),
cd21e546
MGD
25646 T (Tag_MPextension_use),
25647 T (Tag_DIV_use),
f31fef98
NC
25648 T (Tag_nodefaults),
25649 T (Tag_also_compatible_with),
25650 T (Tag_conformance),
25651 T (Tag_T2EE_use),
25652 T (Tag_Virtualization_use),
cd21e546 25653 /* We deliberately do not include Tag_MPextension_use_legacy. */
e04befd0 25654#undef T
f31fef98 25655 };
e04befd0
AS
25656 unsigned int i;
25657
25658 if (name == NULL)
25659 return -1;
25660
f31fef98 25661 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
c921be7d 25662 if (streq (name, attribute_table[i].name))
e04befd0
AS
25663 return attribute_table[i].tag;
25664
25665 return -1;
25666}
267bf995
RR
25667
25668
93ef582d
NC
25669/* Apply sym value for relocations only in the case that they are for
25670 local symbols in the same segment as the fixup and you have the
25671 respective architectural feature for blx and simple switches. */
267bf995 25672int
93ef582d 25673arm_apply_sym_value (struct fix * fixP, segT this_seg)
267bf995
RR
25674{
25675 if (fixP->fx_addsy
25676 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
93ef582d
NC
25677 /* PR 17444: If the local symbol is in a different section then a reloc
25678 will always be generated for it, so applying the symbol value now
25679 will result in a double offset being stored in the relocation. */
25680 && (S_GET_SEGMENT (fixP->fx_addsy) == this_seg)
34e77a92 25681 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
267bf995
RR
25682 {
25683 switch (fixP->fx_r_type)
25684 {
25685 case BFD_RELOC_ARM_PCREL_BLX:
25686 case BFD_RELOC_THUMB_PCREL_BRANCH23:
25687 if (ARM_IS_FUNC (fixP->fx_addsy))
25688 return 1;
25689 break;
25690
25691 case BFD_RELOC_ARM_PCREL_CALL:
25692 case BFD_RELOC_THUMB_PCREL_BLX:
25693 if (THUMB_IS_FUNC (fixP->fx_addsy))
93ef582d 25694 return 1;
267bf995
RR
25695 break;
25696
25697 default:
25698 break;
25699 }
25700
25701 }
25702 return 0;
25703}
f31fef98 25704#endif /* OBJ_ELF */