[gas/]
[deliverable/binutils-gdb.git] / gas / config / tc-arm.c
CommitLineData
b99bd4ef 1/* tc-arm.c -- Assemble for the ARM
da4339ed 2 Copyright 1994-2013 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
03b1477f
RE
140
141/* Variables that we set while parsing command-line options. Once all
142 options have been read we re-process these values to set the real
143 assembly flags. */
e74cfd16
PB
144static const arm_feature_set *legacy_cpu = NULL;
145static const arm_feature_set *legacy_fpu = NULL;
146
147static const arm_feature_set *mcpu_cpu_opt = NULL;
148static const arm_feature_set *mcpu_fpu_opt = NULL;
149static const arm_feature_set *march_cpu_opt = NULL;
150static const arm_feature_set *march_fpu_opt = NULL;
151static const arm_feature_set *mfpu_opt = NULL;
7a1d4c38 152static const arm_feature_set *object_arch = NULL;
e74cfd16
PB
153
154/* Constants for known architecture features. */
155static const arm_feature_set fpu_default = FPU_DEFAULT;
156static const arm_feature_set fpu_arch_vfp_v1 = FPU_ARCH_VFP_V1;
157static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
5287ad62
JB
158static const arm_feature_set fpu_arch_vfp_v3 = FPU_ARCH_VFP_V3;
159static const arm_feature_set fpu_arch_neon_v1 = FPU_ARCH_NEON_V1;
e74cfd16
PB
160static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
161static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
162static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
163static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
164
165#ifdef CPU_DEFAULT
166static const arm_feature_set cpu_default = CPU_DEFAULT;
167#endif
168
169static const arm_feature_set arm_ext_v1 = ARM_FEATURE (ARM_EXT_V1, 0);
170static const arm_feature_set arm_ext_v2 = ARM_FEATURE (ARM_EXT_V1, 0);
171static const arm_feature_set arm_ext_v2s = ARM_FEATURE (ARM_EXT_V2S, 0);
172static const arm_feature_set arm_ext_v3 = ARM_FEATURE (ARM_EXT_V3, 0);
173static const arm_feature_set arm_ext_v3m = ARM_FEATURE (ARM_EXT_V3M, 0);
174static const arm_feature_set arm_ext_v4 = ARM_FEATURE (ARM_EXT_V4, 0);
175static const arm_feature_set arm_ext_v4t = ARM_FEATURE (ARM_EXT_V4T, 0);
176static const arm_feature_set arm_ext_v5 = ARM_FEATURE (ARM_EXT_V5, 0);
177static const arm_feature_set arm_ext_v4t_5 =
178 ARM_FEATURE (ARM_EXT_V4T | ARM_EXT_V5, 0);
179static const arm_feature_set arm_ext_v5t = ARM_FEATURE (ARM_EXT_V5T, 0);
180static const arm_feature_set arm_ext_v5e = ARM_FEATURE (ARM_EXT_V5E, 0);
181static const arm_feature_set arm_ext_v5exp = ARM_FEATURE (ARM_EXT_V5ExP, 0);
182static const arm_feature_set arm_ext_v5j = ARM_FEATURE (ARM_EXT_V5J, 0);
183static const arm_feature_set arm_ext_v6 = ARM_FEATURE (ARM_EXT_V6, 0);
184static const arm_feature_set arm_ext_v6k = ARM_FEATURE (ARM_EXT_V6K, 0);
e74cfd16 185static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE (ARM_EXT_V6T2, 0);
b2a5fbdc 186static const arm_feature_set arm_ext_v6m = ARM_FEATURE (ARM_EXT_V6M, 0);
62b3e311 187static const arm_feature_set arm_ext_v6_notm = ARM_FEATURE (ARM_EXT_V6_NOTM, 0);
9e3c6df6 188static const arm_feature_set arm_ext_v6_dsp = ARM_FEATURE (ARM_EXT_V6_DSP, 0);
7e806470
PB
189static const arm_feature_set arm_ext_barrier = ARM_FEATURE (ARM_EXT_BARRIER, 0);
190static const arm_feature_set arm_ext_msr = ARM_FEATURE (ARM_EXT_THUMB_MSR, 0);
62b3e311
PB
191static const arm_feature_set arm_ext_div = ARM_FEATURE (ARM_EXT_DIV, 0);
192static const arm_feature_set arm_ext_v7 = ARM_FEATURE (ARM_EXT_V7, 0);
193static const arm_feature_set arm_ext_v7a = ARM_FEATURE (ARM_EXT_V7A, 0);
194static const arm_feature_set arm_ext_v7r = ARM_FEATURE (ARM_EXT_V7R, 0);
9e3c6df6 195static const arm_feature_set arm_ext_v7m = ARM_FEATURE (ARM_EXT_V7M, 0);
bca38921 196static const arm_feature_set arm_ext_v8 = ARM_FEATURE (ARM_EXT_V8, 0);
7e806470 197static const arm_feature_set arm_ext_m =
b2a5fbdc 198 ARM_FEATURE (ARM_EXT_V6M | ARM_EXT_OS | ARM_EXT_V7M, 0);
60e5ef9f 199static const arm_feature_set arm_ext_mp = ARM_FEATURE (ARM_EXT_MP, 0);
f4c65163 200static const arm_feature_set arm_ext_sec = ARM_FEATURE (ARM_EXT_SEC, 0);
b2a5fbdc 201static const arm_feature_set arm_ext_os = ARM_FEATURE (ARM_EXT_OS, 0);
eea54501 202static const arm_feature_set arm_ext_adiv = ARM_FEATURE (ARM_EXT_ADIV, 0);
90ec0d68 203static const arm_feature_set arm_ext_virt = ARM_FEATURE (ARM_EXT_VIRT, 0);
e74cfd16
PB
204
205static const arm_feature_set arm_arch_any = ARM_ANY;
206static const arm_feature_set arm_arch_full = ARM_FEATURE (-1, -1);
207static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
208static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
251665fc 209static const arm_feature_set arm_arch_v6m_only = ARM_ARCH_V6M_ONLY;
e74cfd16 210
2d447fca
JM
211static const arm_feature_set arm_cext_iwmmxt2 =
212 ARM_FEATURE (0, ARM_CEXT_IWMMXT2);
e74cfd16
PB
213static const arm_feature_set arm_cext_iwmmxt =
214 ARM_FEATURE (0, ARM_CEXT_IWMMXT);
215static const arm_feature_set arm_cext_xscale =
216 ARM_FEATURE (0, ARM_CEXT_XSCALE);
217static const arm_feature_set arm_cext_maverick =
218 ARM_FEATURE (0, ARM_CEXT_MAVERICK);
219static const arm_feature_set fpu_fpa_ext_v1 = ARM_FEATURE (0, FPU_FPA_EXT_V1);
220static const arm_feature_set fpu_fpa_ext_v2 = ARM_FEATURE (0, FPU_FPA_EXT_V2);
221static const arm_feature_set fpu_vfp_ext_v1xd =
222 ARM_FEATURE (0, FPU_VFP_EXT_V1xD);
223static const arm_feature_set fpu_vfp_ext_v1 = ARM_FEATURE (0, FPU_VFP_EXT_V1);
224static const arm_feature_set fpu_vfp_ext_v2 = ARM_FEATURE (0, FPU_VFP_EXT_V2);
62f3b8c8 225static const arm_feature_set fpu_vfp_ext_v3xd = ARM_FEATURE (0, FPU_VFP_EXT_V3xD);
5287ad62 226static const arm_feature_set fpu_vfp_ext_v3 = ARM_FEATURE (0, FPU_VFP_EXT_V3);
b1cc4aeb
PB
227static const arm_feature_set fpu_vfp_ext_d32 =
228 ARM_FEATURE (0, FPU_VFP_EXT_D32);
5287ad62
JB
229static const arm_feature_set fpu_neon_ext_v1 = ARM_FEATURE (0, FPU_NEON_EXT_V1);
230static const arm_feature_set fpu_vfp_v3_or_neon_ext =
231 ARM_FEATURE (0, FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
62f3b8c8
PB
232static const arm_feature_set fpu_vfp_fp16 = ARM_FEATURE (0, FPU_VFP_EXT_FP16);
233static const arm_feature_set fpu_neon_ext_fma = ARM_FEATURE (0, FPU_NEON_EXT_FMA);
234static const arm_feature_set fpu_vfp_ext_fma = ARM_FEATURE (0, FPU_VFP_EXT_FMA);
bca38921
MGD
235static const arm_feature_set fpu_vfp_ext_armv8 =
236 ARM_FEATURE (0, FPU_VFP_EXT_ARMV8);
237static const arm_feature_set fpu_neon_ext_armv8 =
238 ARM_FEATURE (0, FPU_NEON_EXT_ARMV8);
239static const arm_feature_set fpu_crypto_ext_armv8 =
240 ARM_FEATURE (0, FPU_CRYPTO_EXT_ARMV8);
dd5181d5
KT
241static const arm_feature_set crc_ext_armv8 =
242 ARM_FEATURE (0, CRC_EXT_ARMV8);
e74cfd16 243
33a392fb 244static int mfloat_abi_opt = -1;
e74cfd16
PB
245/* Record user cpu selection for object attributes. */
246static arm_feature_set selected_cpu = ARM_ARCH_NONE;
ee065d83
PB
247/* Must be long enough to hold any of the names in arm_cpus. */
248static char selected_cpu_name[16];
8d67f500
NC
249
250/* Return if no cpu was selected on command-line. */
251static bfd_boolean
252no_cpu_selected (void)
253{
254 return selected_cpu.core == arm_arch_none.core
255 && selected_cpu.coproc == arm_arch_none.coproc;
256}
257
7cc69913 258#ifdef OBJ_ELF
deeaaff8
DJ
259# ifdef EABI_DEFAULT
260static int meabi_flags = EABI_DEFAULT;
261# else
d507cf36 262static int meabi_flags = EF_ARM_EABI_UNKNOWN;
deeaaff8 263# endif
e1da3f5b 264
ee3c0378
AS
265static int attributes_set_explicitly[NUM_KNOWN_OBJ_ATTRIBUTES];
266
e1da3f5b 267bfd_boolean
5f4273c7 268arm_is_eabi (void)
e1da3f5b
PB
269{
270 return (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4);
271}
7cc69913 272#endif
b99bd4ef 273
b99bd4ef 274#ifdef OBJ_ELF
c19d1205 275/* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
b99bd4ef
NC
276symbolS * GOT_symbol;
277#endif
278
b99bd4ef
NC
279/* 0: assemble for ARM,
280 1: assemble for Thumb,
281 2: assemble for Thumb even though target CPU does not support thumb
282 instructions. */
283static int thumb_mode = 0;
8dc2430f
NC
284/* A value distinct from the possible values for thumb_mode that we
285 can use to record whether thumb_mode has been copied into the
286 tc_frag_data field of a frag. */
287#define MODE_RECORDED (1 << 4)
b99bd4ef 288
e07e6e58
NC
289/* Specifies the intrinsic IT insn behavior mode. */
290enum implicit_it_mode
291{
292 IMPLICIT_IT_MODE_NEVER = 0x00,
293 IMPLICIT_IT_MODE_ARM = 0x01,
294 IMPLICIT_IT_MODE_THUMB = 0x02,
295 IMPLICIT_IT_MODE_ALWAYS = (IMPLICIT_IT_MODE_ARM | IMPLICIT_IT_MODE_THUMB)
296};
297static int implicit_it_mode = IMPLICIT_IT_MODE_ARM;
298
c19d1205
ZW
299/* If unified_syntax is true, we are processing the new unified
300 ARM/Thumb syntax. Important differences from the old ARM mode:
301
302 - Immediate operands do not require a # prefix.
303 - Conditional affixes always appear at the end of the
304 instruction. (For backward compatibility, those instructions
305 that formerly had them in the middle, continue to accept them
306 there.)
307 - The IT instruction may appear, and if it does is validated
308 against subsequent conditional affixes. It does not generate
309 machine code.
310
311 Important differences from the old Thumb mode:
312
313 - Immediate operands do not require a # prefix.
314 - Most of the V6T2 instructions are only available in unified mode.
315 - The .N and .W suffixes are recognized and honored (it is an error
316 if they cannot be honored).
317 - All instructions set the flags if and only if they have an 's' affix.
318 - Conditional affixes may be used. They are validated against
319 preceding IT instructions. Unlike ARM mode, you cannot use a
320 conditional affix except in the scope of an IT instruction. */
321
322static bfd_boolean unified_syntax = FALSE;
b99bd4ef 323
bacebabc
RM
324/* An immediate operand can start with #, and ld*, st*, pld operands
325 can contain [ and ]. We need to tell APP not to elide whitespace
477330fc
RM
326 before a [, which can appear as the first operand for pld.
327 Likewise, a { can appear as the first operand for push, pop, vld*, etc. */
328const char arm_symbol_chars[] = "#[]{}";
bacebabc 329
5287ad62
JB
330enum neon_el_type
331{
dcbf9037 332 NT_invtype,
5287ad62
JB
333 NT_untyped,
334 NT_integer,
335 NT_float,
336 NT_poly,
337 NT_signed,
dcbf9037 338 NT_unsigned
5287ad62
JB
339};
340
341struct neon_type_el
342{
343 enum neon_el_type type;
344 unsigned size;
345};
346
347#define NEON_MAX_TYPE_ELS 4
348
349struct neon_type
350{
351 struct neon_type_el el[NEON_MAX_TYPE_ELS];
352 unsigned elems;
353};
354
e07e6e58
NC
355enum it_instruction_type
356{
357 OUTSIDE_IT_INSN,
358 INSIDE_IT_INSN,
359 INSIDE_IT_LAST_INSN,
360 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
477330fc 361 if inside, should be the last one. */
e07e6e58 362 NEUTRAL_IT_INSN, /* This could be either inside or outside,
477330fc 363 i.e. BKPT and NOP. */
e07e6e58
NC
364 IT_INSN /* The IT insn has been parsed. */
365};
366
ad6cec43
MGD
367/* The maximum number of operands we need. */
368#define ARM_IT_MAX_OPERANDS 6
369
b99bd4ef
NC
370struct arm_it
371{
c19d1205 372 const char * error;
b99bd4ef 373 unsigned long instruction;
c19d1205
ZW
374 int size;
375 int size_req;
376 int cond;
037e8744
JB
377 /* "uncond_value" is set to the value in place of the conditional field in
378 unconditional versions of the instruction, or -1 if nothing is
379 appropriate. */
380 int uncond_value;
5287ad62 381 struct neon_type vectype;
88714cb8
DG
382 /* This does not indicate an actual NEON instruction, only that
383 the mnemonic accepts neon-style type suffixes. */
384 int is_neon;
0110f2b8
PB
385 /* Set to the opcode if the instruction needs relaxation.
386 Zero if the instruction is not relaxed. */
387 unsigned long relax;
b99bd4ef
NC
388 struct
389 {
390 bfd_reloc_code_real_type type;
c19d1205
ZW
391 expressionS exp;
392 int pc_rel;
b99bd4ef 393 } reloc;
b99bd4ef 394
e07e6e58
NC
395 enum it_instruction_type it_insn_type;
396
c19d1205
ZW
397 struct
398 {
399 unsigned reg;
ca3f61f7 400 signed int imm;
dcbf9037 401 struct neon_type_el vectype;
ca3f61f7
NC
402 unsigned present : 1; /* Operand present. */
403 unsigned isreg : 1; /* Operand was a register. */
404 unsigned immisreg : 1; /* .imm field is a second register. */
5287ad62
JB
405 unsigned isscalar : 1; /* Operand is a (Neon) scalar. */
406 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
c96612cc 407 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
5287ad62
JB
408 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
409 instructions. This allows us to disambiguate ARM <-> vector insns. */
410 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
037e8744 411 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
5287ad62 412 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
037e8744 413 unsigned issingle : 1; /* Operand is VFP single-precision register. */
ca3f61f7
NC
414 unsigned hasreloc : 1; /* Operand has relocation suffix. */
415 unsigned writeback : 1; /* Operand has trailing ! */
416 unsigned preind : 1; /* Preindexed address. */
417 unsigned postind : 1; /* Postindexed address. */
418 unsigned negative : 1; /* Index register was negated. */
419 unsigned shifted : 1; /* Shift applied to operation. */
420 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
ad6cec43 421 } operands[ARM_IT_MAX_OPERANDS];
b99bd4ef
NC
422};
423
c19d1205 424static struct arm_it inst;
b99bd4ef
NC
425
426#define NUM_FLOAT_VALS 8
427
05d2d07e 428const char * fp_const[] =
b99bd4ef
NC
429{
430 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
431};
432
c19d1205 433/* Number of littlenums required to hold an extended precision number. */
b99bd4ef
NC
434#define MAX_LITTLENUMS 6
435
436LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
437
438#define FAIL (-1)
439#define SUCCESS (0)
440
441#define SUFF_S 1
442#define SUFF_D 2
443#define SUFF_E 3
444#define SUFF_P 4
445
c19d1205
ZW
446#define CP_T_X 0x00008000
447#define CP_T_Y 0x00400000
b99bd4ef 448
c19d1205
ZW
449#define CONDS_BIT 0x00100000
450#define LOAD_BIT 0x00100000
b99bd4ef
NC
451
452#define DOUBLE_LOAD_FLAG 0x00000001
453
454struct asm_cond
455{
d3ce72d0 456 const char * template_name;
c921be7d 457 unsigned long value;
b99bd4ef
NC
458};
459
c19d1205 460#define COND_ALWAYS 0xE
b99bd4ef 461
b99bd4ef
NC
462struct asm_psr
463{
d3ce72d0 464 const char * template_name;
c921be7d 465 unsigned long field;
b99bd4ef
NC
466};
467
62b3e311
PB
468struct asm_barrier_opt
469{
e797f7e0
MGD
470 const char * template_name;
471 unsigned long value;
472 const arm_feature_set arch;
62b3e311
PB
473};
474
2d2255b5 475/* The bit that distinguishes CPSR and SPSR. */
b99bd4ef
NC
476#define SPSR_BIT (1 << 22)
477
c19d1205
ZW
478/* The individual PSR flag bits. */
479#define PSR_c (1 << 16)
480#define PSR_x (1 << 17)
481#define PSR_s (1 << 18)
482#define PSR_f (1 << 19)
b99bd4ef 483
c19d1205 484struct reloc_entry
bfae80f2 485{
c921be7d
NC
486 char * name;
487 bfd_reloc_code_real_type reloc;
bfae80f2
RE
488};
489
5287ad62 490enum vfp_reg_pos
bfae80f2 491{
5287ad62
JB
492 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
493 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
bfae80f2
RE
494};
495
496enum vfp_ldstm_type
497{
498 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
499};
500
dcbf9037
JB
501/* Bits for DEFINED field in neon_typed_alias. */
502#define NTA_HASTYPE 1
503#define NTA_HASINDEX 2
504
505struct neon_typed_alias
506{
c921be7d
NC
507 unsigned char defined;
508 unsigned char index;
509 struct neon_type_el eltype;
dcbf9037
JB
510};
511
c19d1205
ZW
512/* ARM register categories. This includes coprocessor numbers and various
513 architecture extensions' registers. */
514enum arm_reg_type
bfae80f2 515{
c19d1205
ZW
516 REG_TYPE_RN,
517 REG_TYPE_CP,
518 REG_TYPE_CN,
519 REG_TYPE_FN,
520 REG_TYPE_VFS,
521 REG_TYPE_VFD,
5287ad62 522 REG_TYPE_NQ,
037e8744 523 REG_TYPE_VFSD,
5287ad62 524 REG_TYPE_NDQ,
037e8744 525 REG_TYPE_NSDQ,
c19d1205
ZW
526 REG_TYPE_VFC,
527 REG_TYPE_MVF,
528 REG_TYPE_MVD,
529 REG_TYPE_MVFX,
530 REG_TYPE_MVDX,
531 REG_TYPE_MVAX,
532 REG_TYPE_DSPSC,
533 REG_TYPE_MMXWR,
534 REG_TYPE_MMXWC,
535 REG_TYPE_MMXWCG,
536 REG_TYPE_XSCALE,
90ec0d68 537 REG_TYPE_RNB
bfae80f2
RE
538};
539
dcbf9037
JB
540/* Structure for a hash table entry for a register.
541 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
542 information which states whether a vector type or index is specified (for a
543 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
6c43fab6
RE
544struct reg_entry
545{
c921be7d 546 const char * name;
90ec0d68 547 unsigned int number;
c921be7d
NC
548 unsigned char type;
549 unsigned char builtin;
550 struct neon_typed_alias * neon;
6c43fab6
RE
551};
552
c19d1205 553/* Diagnostics used when we don't get a register of the expected type. */
c921be7d 554const char * const reg_expected_msgs[] =
c19d1205
ZW
555{
556 N_("ARM register expected"),
557 N_("bad or missing co-processor number"),
558 N_("co-processor register expected"),
559 N_("FPA register expected"),
560 N_("VFP single precision register expected"),
5287ad62
JB
561 N_("VFP/Neon double precision register expected"),
562 N_("Neon quad precision register expected"),
037e8744 563 N_("VFP single or double precision register expected"),
5287ad62 564 N_("Neon double or quad precision register expected"),
037e8744 565 N_("VFP single, double or Neon quad precision register expected"),
c19d1205
ZW
566 N_("VFP system register expected"),
567 N_("Maverick MVF register expected"),
568 N_("Maverick MVD register expected"),
569 N_("Maverick MVFX register expected"),
570 N_("Maverick MVDX register expected"),
571 N_("Maverick MVAX register expected"),
572 N_("Maverick DSPSC register expected"),
573 N_("iWMMXt data register expected"),
574 N_("iWMMXt control register expected"),
575 N_("iWMMXt scalar register expected"),
576 N_("XScale accumulator register expected"),
6c43fab6
RE
577};
578
c19d1205 579/* Some well known registers that we refer to directly elsewhere. */
bd340a04 580#define REG_R12 12
c19d1205
ZW
581#define REG_SP 13
582#define REG_LR 14
583#define REG_PC 15
404ff6b5 584
b99bd4ef
NC
585/* ARM instructions take 4bytes in the object file, Thumb instructions
586 take 2: */
c19d1205 587#define INSN_SIZE 4
b99bd4ef
NC
588
589struct asm_opcode
590{
591 /* Basic string to match. */
d3ce72d0 592 const char * template_name;
c19d1205
ZW
593
594 /* Parameters to instruction. */
5be8be5d 595 unsigned int operands[8];
c19d1205
ZW
596
597 /* Conditional tag - see opcode_lookup. */
598 unsigned int tag : 4;
b99bd4ef
NC
599
600 /* Basic instruction code. */
c19d1205 601 unsigned int avalue : 28;
b99bd4ef 602
c19d1205
ZW
603 /* Thumb-format instruction code. */
604 unsigned int tvalue;
b99bd4ef 605
90e4755a 606 /* Which architecture variant provides this instruction. */
c921be7d
NC
607 const arm_feature_set * avariant;
608 const arm_feature_set * tvariant;
c19d1205
ZW
609
610 /* Function to call to encode instruction in ARM format. */
611 void (* aencode) (void);
b99bd4ef 612
c19d1205
ZW
613 /* Function to call to encode instruction in Thumb format. */
614 void (* tencode) (void);
b99bd4ef
NC
615};
616
a737bd4d
NC
617/* Defines for various bits that we will want to toggle. */
618#define INST_IMMEDIATE 0x02000000
619#define OFFSET_REG 0x02000000
c19d1205 620#define HWOFFSET_IMM 0x00400000
a737bd4d
NC
621#define SHIFT_BY_REG 0x00000010
622#define PRE_INDEX 0x01000000
623#define INDEX_UP 0x00800000
624#define WRITE_BACK 0x00200000
625#define LDM_TYPE_2_OR_3 0x00400000
a028a6f5 626#define CPSI_MMOD 0x00020000
90e4755a 627
a737bd4d
NC
628#define LITERAL_MASK 0xf000f000
629#define OPCODE_MASK 0xfe1fffff
630#define V4_STR_BIT 0x00000020
90e4755a 631
efd81785
PB
632#define T2_SUBS_PC_LR 0xf3de8f00
633
a737bd4d 634#define DATA_OP_SHIFT 21
90e4755a 635
ef8d22e6
PB
636#define T2_OPCODE_MASK 0xfe1fffff
637#define T2_DATA_OP_SHIFT 21
638
6530b175
NC
639#define A_COND_MASK 0xf0000000
640#define A_PUSH_POP_OP_MASK 0x0fff0000
641
642/* Opcodes for pushing/poping registers to/from the stack. */
643#define A1_OPCODE_PUSH 0x092d0000
644#define A2_OPCODE_PUSH 0x052d0004
645#define A2_OPCODE_POP 0x049d0004
646
a737bd4d
NC
647/* Codes to distinguish the arithmetic instructions. */
648#define OPCODE_AND 0
649#define OPCODE_EOR 1
650#define OPCODE_SUB 2
651#define OPCODE_RSB 3
652#define OPCODE_ADD 4
653#define OPCODE_ADC 5
654#define OPCODE_SBC 6
655#define OPCODE_RSC 7
656#define OPCODE_TST 8
657#define OPCODE_TEQ 9
658#define OPCODE_CMP 10
659#define OPCODE_CMN 11
660#define OPCODE_ORR 12
661#define OPCODE_MOV 13
662#define OPCODE_BIC 14
663#define OPCODE_MVN 15
90e4755a 664
ef8d22e6
PB
665#define T2_OPCODE_AND 0
666#define T2_OPCODE_BIC 1
667#define T2_OPCODE_ORR 2
668#define T2_OPCODE_ORN 3
669#define T2_OPCODE_EOR 4
670#define T2_OPCODE_ADD 8
671#define T2_OPCODE_ADC 10
672#define T2_OPCODE_SBC 11
673#define T2_OPCODE_SUB 13
674#define T2_OPCODE_RSB 14
675
a737bd4d
NC
676#define T_OPCODE_MUL 0x4340
677#define T_OPCODE_TST 0x4200
678#define T_OPCODE_CMN 0x42c0
679#define T_OPCODE_NEG 0x4240
680#define T_OPCODE_MVN 0x43c0
90e4755a 681
a737bd4d
NC
682#define T_OPCODE_ADD_R3 0x1800
683#define T_OPCODE_SUB_R3 0x1a00
684#define T_OPCODE_ADD_HI 0x4400
685#define T_OPCODE_ADD_ST 0xb000
686#define T_OPCODE_SUB_ST 0xb080
687#define T_OPCODE_ADD_SP 0xa800
688#define T_OPCODE_ADD_PC 0xa000
689#define T_OPCODE_ADD_I8 0x3000
690#define T_OPCODE_SUB_I8 0x3800
691#define T_OPCODE_ADD_I3 0x1c00
692#define T_OPCODE_SUB_I3 0x1e00
b99bd4ef 693
a737bd4d
NC
694#define T_OPCODE_ASR_R 0x4100
695#define T_OPCODE_LSL_R 0x4080
c19d1205
ZW
696#define T_OPCODE_LSR_R 0x40c0
697#define T_OPCODE_ROR_R 0x41c0
a737bd4d
NC
698#define T_OPCODE_ASR_I 0x1000
699#define T_OPCODE_LSL_I 0x0000
700#define T_OPCODE_LSR_I 0x0800
b99bd4ef 701
a737bd4d
NC
702#define T_OPCODE_MOV_I8 0x2000
703#define T_OPCODE_CMP_I8 0x2800
704#define T_OPCODE_CMP_LR 0x4280
705#define T_OPCODE_MOV_HR 0x4600
706#define T_OPCODE_CMP_HR 0x4500
b99bd4ef 707
a737bd4d
NC
708#define T_OPCODE_LDR_PC 0x4800
709#define T_OPCODE_LDR_SP 0x9800
710#define T_OPCODE_STR_SP 0x9000
711#define T_OPCODE_LDR_IW 0x6800
712#define T_OPCODE_STR_IW 0x6000
713#define T_OPCODE_LDR_IH 0x8800
714#define T_OPCODE_STR_IH 0x8000
715#define T_OPCODE_LDR_IB 0x7800
716#define T_OPCODE_STR_IB 0x7000
717#define T_OPCODE_LDR_RW 0x5800
718#define T_OPCODE_STR_RW 0x5000
719#define T_OPCODE_LDR_RH 0x5a00
720#define T_OPCODE_STR_RH 0x5200
721#define T_OPCODE_LDR_RB 0x5c00
722#define T_OPCODE_STR_RB 0x5400
c9b604bd 723
a737bd4d
NC
724#define T_OPCODE_PUSH 0xb400
725#define T_OPCODE_POP 0xbc00
b99bd4ef 726
2fc8bdac 727#define T_OPCODE_BRANCH 0xe000
b99bd4ef 728
a737bd4d 729#define THUMB_SIZE 2 /* Size of thumb instruction. */
a737bd4d 730#define THUMB_PP_PC_LR 0x0100
c19d1205 731#define THUMB_LOAD_BIT 0x0800
53365c0d 732#define THUMB2_LOAD_BIT 0x00100000
c19d1205
ZW
733
734#define BAD_ARGS _("bad arguments to instruction")
fdfde340 735#define BAD_SP _("r13 not allowed here")
c19d1205
ZW
736#define BAD_PC _("r15 not allowed here")
737#define BAD_COND _("instruction cannot be conditional")
738#define BAD_OVERLAP _("registers may not be the same")
739#define BAD_HIREG _("lo register required")
740#define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
01cfc07f 741#define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
dfa9f0d5
PB
742#define BAD_BRANCH _("branch must be last instruction in IT block")
743#define BAD_NOT_IT _("instruction not allowed in IT block")
037e8744 744#define BAD_FPU _("selected FPU does not support instruction")
e07e6e58
NC
745#define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
746#define BAD_IT_COND _("incorrect condition in IT block")
747#define BAD_IT_IT _("IT falling in the range of a previous IT block")
921e5f0a 748#define MISSING_FNSTART _("missing .fnstart before unwinding directive")
5be8be5d
DG
749#define BAD_PC_ADDRESSING \
750 _("cannot use register index with PC-relative addressing")
751#define BAD_PC_WRITEBACK \
752 _("cannot use writeback with PC-relative addressing")
08f10d51 753#define BAD_RANGE _("branch out of range")
dd5181d5 754#define UNPRED_REG(R) _("using " R " results in unpredictable behaviour")
c19d1205 755
c921be7d
NC
756static struct hash_control * arm_ops_hsh;
757static struct hash_control * arm_cond_hsh;
758static struct hash_control * arm_shift_hsh;
759static struct hash_control * arm_psr_hsh;
760static struct hash_control * arm_v7m_psr_hsh;
761static struct hash_control * arm_reg_hsh;
762static struct hash_control * arm_reloc_hsh;
763static struct hash_control * arm_barrier_opt_hsh;
b99bd4ef 764
b99bd4ef
NC
765/* Stuff needed to resolve the label ambiguity
766 As:
767 ...
768 label: <insn>
769 may differ from:
770 ...
771 label:
5f4273c7 772 <insn> */
b99bd4ef
NC
773
774symbolS * last_label_seen;
b34976b6 775static int label_is_thumb_function_name = FALSE;
e07e6e58 776
3d0c9500
NC
777/* Literal pool structure. Held on a per-section
778 and per-sub-section basis. */
a737bd4d 779
c19d1205 780#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 781typedef struct literal_pool
b99bd4ef 782{
c921be7d
NC
783 expressionS literals [MAX_LITERAL_POOL_SIZE];
784 unsigned int next_free_entry;
785 unsigned int id;
786 symbolS * symbol;
787 segT section;
788 subsegT sub_section;
a8040cf2
NC
789#ifdef OBJ_ELF
790 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
791#endif
c921be7d 792 struct literal_pool * next;
3d0c9500 793} literal_pool;
b99bd4ef 794
3d0c9500
NC
795/* Pointer to a linked list of literal pools. */
796literal_pool * list_of_pools = NULL;
e27ec89e 797
e07e6e58
NC
798#ifdef OBJ_ELF
799# define now_it seg_info (now_seg)->tc_segment_info_data.current_it
800#else
801static struct current_it now_it;
802#endif
803
804static inline int
805now_it_compatible (int cond)
806{
807 return (cond & ~1) == (now_it.cc & ~1);
808}
809
810static inline int
811conditional_insn (void)
812{
813 return inst.cond != COND_ALWAYS;
814}
815
816static int in_it_block (void);
817
818static int handle_it_state (void);
819
820static void force_automatic_it_block_close (void);
821
c921be7d
NC
822static void it_fsm_post_encode (void);
823
e07e6e58
NC
824#define set_it_insn_type(type) \
825 do \
826 { \
827 inst.it_insn_type = type; \
828 if (handle_it_state () == FAIL) \
477330fc 829 return; \
e07e6e58
NC
830 } \
831 while (0)
832
c921be7d
NC
833#define set_it_insn_type_nonvoid(type, failret) \
834 do \
835 { \
836 inst.it_insn_type = type; \
837 if (handle_it_state () == FAIL) \
477330fc 838 return failret; \
c921be7d
NC
839 } \
840 while(0)
841
e07e6e58
NC
842#define set_it_insn_type_last() \
843 do \
844 { \
845 if (inst.cond == COND_ALWAYS) \
477330fc 846 set_it_insn_type (IF_INSIDE_IT_LAST_INSN); \
e07e6e58 847 else \
477330fc 848 set_it_insn_type (INSIDE_IT_LAST_INSN); \
e07e6e58
NC
849 } \
850 while (0)
851
c19d1205 852/* Pure syntax. */
b99bd4ef 853
c19d1205
ZW
854/* This array holds the chars that always start a comment. If the
855 pre-processor is disabled, these aren't very useful. */
856const char comment_chars[] = "@";
3d0c9500 857
c19d1205
ZW
858/* This array holds the chars that only start a comment at the beginning of
859 a line. If the line seems to have the form '# 123 filename'
860 .line and .file directives will appear in the pre-processed output. */
861/* Note that input_file.c hand checks for '#' at the beginning of the
862 first line of the input file. This is because the compiler outputs
863 #NO_APP at the beginning of its output. */
864/* Also note that comments like this one will always work. */
865const char line_comment_chars[] = "#";
3d0c9500 866
c19d1205 867const char line_separator_chars[] = ";";
b99bd4ef 868
c19d1205
ZW
869/* Chars that can be used to separate mant
870 from exp in floating point numbers. */
871const char EXP_CHARS[] = "eE";
3d0c9500 872
c19d1205
ZW
873/* Chars that mean this number is a floating point constant. */
874/* As in 0f12.456 */
875/* or 0d1.2345e12 */
b99bd4ef 876
c19d1205 877const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 878
c19d1205
ZW
879/* Prefix characters that indicate the start of an immediate
880 value. */
881#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 882
c19d1205
ZW
883/* Separator character handling. */
884
885#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
886
887static inline int
888skip_past_char (char ** str, char c)
889{
8ab8155f
NC
890 /* PR gas/14987: Allow for whitespace before the expected character. */
891 skip_whitespace (*str);
427d0db6 892
c19d1205
ZW
893 if (**str == c)
894 {
895 (*str)++;
896 return SUCCESS;
3d0c9500 897 }
c19d1205
ZW
898 else
899 return FAIL;
900}
c921be7d 901
c19d1205 902#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 903
c19d1205
ZW
904/* Arithmetic expressions (possibly involving symbols). */
905
906/* Return TRUE if anything in the expression is a bignum. */
907
908static int
909walk_no_bignums (symbolS * sp)
910{
911 if (symbol_get_value_expression (sp)->X_op == O_big)
912 return 1;
913
914 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 915 {
c19d1205
ZW
916 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
917 || (symbol_get_value_expression (sp)->X_op_symbol
918 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
919 }
920
c19d1205 921 return 0;
3d0c9500
NC
922}
923
c19d1205
ZW
924static int in_my_get_expression = 0;
925
926/* Third argument to my_get_expression. */
927#define GE_NO_PREFIX 0
928#define GE_IMM_PREFIX 1
929#define GE_OPT_PREFIX 2
5287ad62
JB
930/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
931 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
932#define GE_OPT_PREFIX_BIG 3
a737bd4d 933
b99bd4ef 934static int
c19d1205 935my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 936{
c19d1205
ZW
937 char * save_in;
938 segT seg;
b99bd4ef 939
c19d1205
ZW
940 /* In unified syntax, all prefixes are optional. */
941 if (unified_syntax)
5287ad62 942 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
477330fc 943 : GE_OPT_PREFIX;
b99bd4ef 944
c19d1205 945 switch (prefix_mode)
b99bd4ef 946 {
c19d1205
ZW
947 case GE_NO_PREFIX: break;
948 case GE_IMM_PREFIX:
949 if (!is_immediate_prefix (**str))
950 {
951 inst.error = _("immediate expression requires a # prefix");
952 return FAIL;
953 }
954 (*str)++;
955 break;
956 case GE_OPT_PREFIX:
5287ad62 957 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
958 if (is_immediate_prefix (**str))
959 (*str)++;
960 break;
961 default: abort ();
962 }
b99bd4ef 963
c19d1205 964 memset (ep, 0, sizeof (expressionS));
b99bd4ef 965
c19d1205
ZW
966 save_in = input_line_pointer;
967 input_line_pointer = *str;
968 in_my_get_expression = 1;
969 seg = expression (ep);
970 in_my_get_expression = 0;
971
f86adc07 972 if (ep->X_op == O_illegal || ep->X_op == O_absent)
b99bd4ef 973 {
f86adc07 974 /* We found a bad or missing expression in md_operand(). */
c19d1205
ZW
975 *str = input_line_pointer;
976 input_line_pointer = save_in;
977 if (inst.error == NULL)
f86adc07
NS
978 inst.error = (ep->X_op == O_absent
979 ? _("missing expression") :_("bad expression"));
c19d1205
ZW
980 return 1;
981 }
b99bd4ef 982
c19d1205
ZW
983#ifdef OBJ_AOUT
984 if (seg != absolute_section
985 && seg != text_section
986 && seg != data_section
987 && seg != bss_section
988 && seg != undefined_section)
989 {
990 inst.error = _("bad segment");
991 *str = input_line_pointer;
992 input_line_pointer = save_in;
993 return 1;
b99bd4ef 994 }
87975d2a
AM
995#else
996 (void) seg;
c19d1205 997#endif
b99bd4ef 998
c19d1205
ZW
999 /* Get rid of any bignums now, so that we don't generate an error for which
1000 we can't establish a line number later on. Big numbers are never valid
1001 in instructions, which is where this routine is always called. */
5287ad62
JB
1002 if (prefix_mode != GE_OPT_PREFIX_BIG
1003 && (ep->X_op == O_big
477330fc 1004 || (ep->X_add_symbol
5287ad62 1005 && (walk_no_bignums (ep->X_add_symbol)
477330fc 1006 || (ep->X_op_symbol
5287ad62 1007 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
1008 {
1009 inst.error = _("invalid constant");
1010 *str = input_line_pointer;
1011 input_line_pointer = save_in;
1012 return 1;
1013 }
b99bd4ef 1014
c19d1205
ZW
1015 *str = input_line_pointer;
1016 input_line_pointer = save_in;
1017 return 0;
b99bd4ef
NC
1018}
1019
c19d1205
ZW
1020/* Turn a string in input_line_pointer into a floating point constant
1021 of type TYPE, and store the appropriate bytes in *LITP. The number
1022 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1023 returned, or NULL on OK.
b99bd4ef 1024
c19d1205
ZW
1025 Note that fp constants aren't represent in the normal way on the ARM.
1026 In big endian mode, things are as expected. However, in little endian
1027 mode fp constants are big-endian word-wise, and little-endian byte-wise
1028 within the words. For example, (double) 1.1 in big endian mode is
1029 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1030 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 1031
c19d1205 1032 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 1033
c19d1205
ZW
1034char *
1035md_atof (int type, char * litP, int * sizeP)
1036{
1037 int prec;
1038 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1039 char *t;
1040 int i;
b99bd4ef 1041
c19d1205
ZW
1042 switch (type)
1043 {
1044 case 'f':
1045 case 'F':
1046 case 's':
1047 case 'S':
1048 prec = 2;
1049 break;
b99bd4ef 1050
c19d1205
ZW
1051 case 'd':
1052 case 'D':
1053 case 'r':
1054 case 'R':
1055 prec = 4;
1056 break;
b99bd4ef 1057
c19d1205
ZW
1058 case 'x':
1059 case 'X':
499ac353 1060 prec = 5;
c19d1205 1061 break;
b99bd4ef 1062
c19d1205
ZW
1063 case 'p':
1064 case 'P':
499ac353 1065 prec = 5;
c19d1205 1066 break;
a737bd4d 1067
c19d1205
ZW
1068 default:
1069 *sizeP = 0;
499ac353 1070 return _("Unrecognized or unsupported floating point constant");
c19d1205 1071 }
b99bd4ef 1072
c19d1205
ZW
1073 t = atof_ieee (input_line_pointer, type, words);
1074 if (t)
1075 input_line_pointer = t;
499ac353 1076 *sizeP = prec * sizeof (LITTLENUM_TYPE);
b99bd4ef 1077
c19d1205
ZW
1078 if (target_big_endian)
1079 {
1080 for (i = 0; i < prec; i++)
1081 {
499ac353
NC
1082 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1083 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1084 }
1085 }
1086 else
1087 {
e74cfd16 1088 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
1089 for (i = prec - 1; i >= 0; i--)
1090 {
499ac353
NC
1091 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1092 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1093 }
1094 else
1095 /* For a 4 byte float the order of elements in `words' is 1 0.
1096 For an 8 byte float the order is 1 0 3 2. */
1097 for (i = 0; i < prec; i += 2)
1098 {
499ac353
NC
1099 md_number_to_chars (litP, (valueT) words[i + 1],
1100 sizeof (LITTLENUM_TYPE));
1101 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1102 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1103 litP += 2 * sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1104 }
1105 }
b99bd4ef 1106
499ac353 1107 return NULL;
c19d1205 1108}
b99bd4ef 1109
c19d1205
ZW
1110/* We handle all bad expressions here, so that we can report the faulty
1111 instruction in the error message. */
1112void
91d6fa6a 1113md_operand (expressionS * exp)
c19d1205
ZW
1114{
1115 if (in_my_get_expression)
91d6fa6a 1116 exp->X_op = O_illegal;
b99bd4ef
NC
1117}
1118
c19d1205 1119/* Immediate values. */
b99bd4ef 1120
c19d1205
ZW
1121/* Generic immediate-value read function for use in directives.
1122 Accepts anything that 'expression' can fold to a constant.
1123 *val receives the number. */
1124#ifdef OBJ_ELF
1125static int
1126immediate_for_directive (int *val)
b99bd4ef 1127{
c19d1205
ZW
1128 expressionS exp;
1129 exp.X_op = O_illegal;
b99bd4ef 1130
c19d1205
ZW
1131 if (is_immediate_prefix (*input_line_pointer))
1132 {
1133 input_line_pointer++;
1134 expression (&exp);
1135 }
b99bd4ef 1136
c19d1205
ZW
1137 if (exp.X_op != O_constant)
1138 {
1139 as_bad (_("expected #constant"));
1140 ignore_rest_of_line ();
1141 return FAIL;
1142 }
1143 *val = exp.X_add_number;
1144 return SUCCESS;
b99bd4ef 1145}
c19d1205 1146#endif
b99bd4ef 1147
c19d1205 1148/* Register parsing. */
b99bd4ef 1149
c19d1205
ZW
1150/* Generic register parser. CCP points to what should be the
1151 beginning of a register name. If it is indeed a valid register
1152 name, advance CCP over it and return the reg_entry structure;
1153 otherwise return NULL. Does not issue diagnostics. */
1154
1155static struct reg_entry *
1156arm_reg_parse_multi (char **ccp)
b99bd4ef 1157{
c19d1205
ZW
1158 char *start = *ccp;
1159 char *p;
1160 struct reg_entry *reg;
b99bd4ef 1161
477330fc
RM
1162 skip_whitespace (start);
1163
c19d1205
ZW
1164#ifdef REGISTER_PREFIX
1165 if (*start != REGISTER_PREFIX)
01cfc07f 1166 return NULL;
c19d1205
ZW
1167 start++;
1168#endif
1169#ifdef OPTIONAL_REGISTER_PREFIX
1170 if (*start == OPTIONAL_REGISTER_PREFIX)
1171 start++;
1172#endif
b99bd4ef 1173
c19d1205
ZW
1174 p = start;
1175 if (!ISALPHA (*p) || !is_name_beginner (*p))
1176 return NULL;
b99bd4ef 1177
c19d1205
ZW
1178 do
1179 p++;
1180 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1181
1182 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1183
1184 if (!reg)
1185 return NULL;
1186
1187 *ccp = p;
1188 return reg;
b99bd4ef
NC
1189}
1190
1191static int
dcbf9037 1192arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
477330fc 1193 enum arm_reg_type type)
b99bd4ef 1194{
c19d1205
ZW
1195 /* Alternative syntaxes are accepted for a few register classes. */
1196 switch (type)
1197 {
1198 case REG_TYPE_MVF:
1199 case REG_TYPE_MVD:
1200 case REG_TYPE_MVFX:
1201 case REG_TYPE_MVDX:
1202 /* Generic coprocessor register names are allowed for these. */
79134647 1203 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1204 return reg->number;
1205 break;
69b97547 1206
c19d1205
ZW
1207 case REG_TYPE_CP:
1208 /* For backward compatibility, a bare number is valid here. */
1209 {
1210 unsigned long processor = strtoul (start, ccp, 10);
1211 if (*ccp != start && processor <= 15)
1212 return processor;
1213 }
6057a28f 1214
c19d1205
ZW
1215 case REG_TYPE_MMXWC:
1216 /* WC includes WCG. ??? I'm not sure this is true for all
1217 instructions that take WC registers. */
79134647 1218 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1219 return reg->number;
6057a28f 1220 break;
c19d1205 1221
6057a28f 1222 default:
c19d1205 1223 break;
6057a28f
NC
1224 }
1225
dcbf9037
JB
1226 return FAIL;
1227}
1228
1229/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1230 return value is the register number or FAIL. */
1231
1232static int
1233arm_reg_parse (char **ccp, enum arm_reg_type type)
1234{
1235 char *start = *ccp;
1236 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1237 int ret;
1238
1239 /* Do not allow a scalar (reg+index) to parse as a register. */
1240 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1241 return FAIL;
1242
1243 if (reg && reg->type == type)
1244 return reg->number;
1245
1246 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1247 return ret;
1248
c19d1205
ZW
1249 *ccp = start;
1250 return FAIL;
1251}
69b97547 1252
dcbf9037
JB
1253/* Parse a Neon type specifier. *STR should point at the leading '.'
1254 character. Does no verification at this stage that the type fits the opcode
1255 properly. E.g.,
1256
1257 .i32.i32.s16
1258 .s32.f32
1259 .u16
1260
1261 Can all be legally parsed by this function.
1262
1263 Fills in neon_type struct pointer with parsed information, and updates STR
1264 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1265 type, FAIL if not. */
1266
1267static int
1268parse_neon_type (struct neon_type *type, char **str)
1269{
1270 char *ptr = *str;
1271
1272 if (type)
1273 type->elems = 0;
1274
1275 while (type->elems < NEON_MAX_TYPE_ELS)
1276 {
1277 enum neon_el_type thistype = NT_untyped;
1278 unsigned thissize = -1u;
1279
1280 if (*ptr != '.')
1281 break;
1282
1283 ptr++;
1284
1285 /* Just a size without an explicit type. */
1286 if (ISDIGIT (*ptr))
1287 goto parsesize;
1288
1289 switch (TOLOWER (*ptr))
1290 {
1291 case 'i': thistype = NT_integer; break;
1292 case 'f': thistype = NT_float; break;
1293 case 'p': thistype = NT_poly; break;
1294 case 's': thistype = NT_signed; break;
1295 case 'u': thistype = NT_unsigned; break;
477330fc
RM
1296 case 'd':
1297 thistype = NT_float;
1298 thissize = 64;
1299 ptr++;
1300 goto done;
dcbf9037
JB
1301 default:
1302 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1303 return FAIL;
1304 }
1305
1306 ptr++;
1307
1308 /* .f is an abbreviation for .f32. */
1309 if (thistype == NT_float && !ISDIGIT (*ptr))
1310 thissize = 32;
1311 else
1312 {
1313 parsesize:
1314 thissize = strtoul (ptr, &ptr, 10);
1315
1316 if (thissize != 8 && thissize != 16 && thissize != 32
477330fc
RM
1317 && thissize != 64)
1318 {
1319 as_bad (_("bad size %d in type specifier"), thissize);
dcbf9037
JB
1320 return FAIL;
1321 }
1322 }
1323
037e8744 1324 done:
dcbf9037 1325 if (type)
477330fc
RM
1326 {
1327 type->el[type->elems].type = thistype;
dcbf9037
JB
1328 type->el[type->elems].size = thissize;
1329 type->elems++;
1330 }
1331 }
1332
1333 /* Empty/missing type is not a successful parse. */
1334 if (type->elems == 0)
1335 return FAIL;
1336
1337 *str = ptr;
1338
1339 return SUCCESS;
1340}
1341
1342/* Errors may be set multiple times during parsing or bit encoding
1343 (particularly in the Neon bits), but usually the earliest error which is set
1344 will be the most meaningful. Avoid overwriting it with later (cascading)
1345 errors by calling this function. */
1346
1347static void
1348first_error (const char *err)
1349{
1350 if (!inst.error)
1351 inst.error = err;
1352}
1353
1354/* Parse a single type, e.g. ".s32", leading period included. */
1355static int
1356parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1357{
1358 char *str = *ccp;
1359 struct neon_type optype;
1360
1361 if (*str == '.')
1362 {
1363 if (parse_neon_type (&optype, &str) == SUCCESS)
477330fc
RM
1364 {
1365 if (optype.elems == 1)
1366 *vectype = optype.el[0];
1367 else
1368 {
1369 first_error (_("only one type should be specified for operand"));
1370 return FAIL;
1371 }
1372 }
dcbf9037 1373 else
477330fc
RM
1374 {
1375 first_error (_("vector type expected"));
1376 return FAIL;
1377 }
dcbf9037
JB
1378 }
1379 else
1380 return FAIL;
5f4273c7 1381
dcbf9037 1382 *ccp = str;
5f4273c7 1383
dcbf9037
JB
1384 return SUCCESS;
1385}
1386
1387/* Special meanings for indices (which have a range of 0-7), which will fit into
1388 a 4-bit integer. */
1389
1390#define NEON_ALL_LANES 15
1391#define NEON_INTERLEAVE_LANES 14
1392
1393/* Parse either a register or a scalar, with an optional type. Return the
1394 register number, and optionally fill in the actual type of the register
1395 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1396 type/index information in *TYPEINFO. */
1397
1398static int
1399parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
477330fc
RM
1400 enum arm_reg_type *rtype,
1401 struct neon_typed_alias *typeinfo)
dcbf9037
JB
1402{
1403 char *str = *ccp;
1404 struct reg_entry *reg = arm_reg_parse_multi (&str);
1405 struct neon_typed_alias atype;
1406 struct neon_type_el parsetype;
1407
1408 atype.defined = 0;
1409 atype.index = -1;
1410 atype.eltype.type = NT_invtype;
1411 atype.eltype.size = -1;
1412
1413 /* Try alternate syntax for some types of register. Note these are mutually
1414 exclusive with the Neon syntax extensions. */
1415 if (reg == NULL)
1416 {
1417 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1418 if (altreg != FAIL)
477330fc 1419 *ccp = str;
dcbf9037 1420 if (typeinfo)
477330fc 1421 *typeinfo = atype;
dcbf9037
JB
1422 return altreg;
1423 }
1424
037e8744
JB
1425 /* Undo polymorphism when a set of register types may be accepted. */
1426 if ((type == REG_TYPE_NDQ
1427 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1428 || (type == REG_TYPE_VFSD
477330fc 1429 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
037e8744 1430 || (type == REG_TYPE_NSDQ
477330fc
RM
1431 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
1432 || reg->type == REG_TYPE_NQ))
f512f76f
NC
1433 || (type == REG_TYPE_MMXWC
1434 && (reg->type == REG_TYPE_MMXWCG)))
21d799b5 1435 type = (enum arm_reg_type) reg->type;
dcbf9037
JB
1436
1437 if (type != reg->type)
1438 return FAIL;
1439
1440 if (reg->neon)
1441 atype = *reg->neon;
5f4273c7 1442
dcbf9037
JB
1443 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1444 {
1445 if ((atype.defined & NTA_HASTYPE) != 0)
477330fc
RM
1446 {
1447 first_error (_("can't redefine type for operand"));
1448 return FAIL;
1449 }
dcbf9037
JB
1450 atype.defined |= NTA_HASTYPE;
1451 atype.eltype = parsetype;
1452 }
5f4273c7 1453
dcbf9037
JB
1454 if (skip_past_char (&str, '[') == SUCCESS)
1455 {
1456 if (type != REG_TYPE_VFD)
477330fc
RM
1457 {
1458 first_error (_("only D registers may be indexed"));
1459 return FAIL;
1460 }
5f4273c7 1461
dcbf9037 1462 if ((atype.defined & NTA_HASINDEX) != 0)
477330fc
RM
1463 {
1464 first_error (_("can't change index for operand"));
1465 return FAIL;
1466 }
dcbf9037
JB
1467
1468 atype.defined |= NTA_HASINDEX;
1469
1470 if (skip_past_char (&str, ']') == SUCCESS)
477330fc 1471 atype.index = NEON_ALL_LANES;
dcbf9037 1472 else
477330fc
RM
1473 {
1474 expressionS exp;
dcbf9037 1475
477330fc 1476 my_get_expression (&exp, &str, GE_NO_PREFIX);
dcbf9037 1477
477330fc
RM
1478 if (exp.X_op != O_constant)
1479 {
1480 first_error (_("constant expression required"));
1481 return FAIL;
1482 }
dcbf9037 1483
477330fc
RM
1484 if (skip_past_char (&str, ']') == FAIL)
1485 return FAIL;
dcbf9037 1486
477330fc
RM
1487 atype.index = exp.X_add_number;
1488 }
dcbf9037 1489 }
5f4273c7 1490
dcbf9037
JB
1491 if (typeinfo)
1492 *typeinfo = atype;
5f4273c7 1493
dcbf9037
JB
1494 if (rtype)
1495 *rtype = type;
5f4273c7 1496
dcbf9037 1497 *ccp = str;
5f4273c7 1498
dcbf9037
JB
1499 return reg->number;
1500}
1501
1502/* Like arm_reg_parse, but allow allow the following extra features:
1503 - If RTYPE is non-zero, return the (possibly restricted) type of the
1504 register (e.g. Neon double or quad reg when either has been requested).
1505 - If this is a Neon vector type with additional type information, fill
1506 in the struct pointed to by VECTYPE (if non-NULL).
5f4273c7 1507 This function will fault on encountering a scalar. */
dcbf9037
JB
1508
1509static int
1510arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
477330fc 1511 enum arm_reg_type *rtype, struct neon_type_el *vectype)
dcbf9037
JB
1512{
1513 struct neon_typed_alias atype;
1514 char *str = *ccp;
1515 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1516
1517 if (reg == FAIL)
1518 return FAIL;
1519
0855e32b
NS
1520 /* Do not allow regname(... to parse as a register. */
1521 if (*str == '(')
1522 return FAIL;
1523
dcbf9037
JB
1524 /* Do not allow a scalar (reg+index) to parse as a register. */
1525 if ((atype.defined & NTA_HASINDEX) != 0)
1526 {
1527 first_error (_("register operand expected, but got scalar"));
1528 return FAIL;
1529 }
1530
1531 if (vectype)
1532 *vectype = atype.eltype;
1533
1534 *ccp = str;
1535
1536 return reg;
1537}
1538
1539#define NEON_SCALAR_REG(X) ((X) >> 4)
1540#define NEON_SCALAR_INDEX(X) ((X) & 15)
1541
5287ad62
JB
1542/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1543 have enough information to be able to do a good job bounds-checking. So, we
1544 just do easy checks here, and do further checks later. */
1545
1546static int
dcbf9037 1547parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1548{
dcbf9037 1549 int reg;
5287ad62 1550 char *str = *ccp;
dcbf9037 1551 struct neon_typed_alias atype;
5f4273c7 1552
dcbf9037 1553 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5f4273c7 1554
dcbf9037 1555 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62 1556 return FAIL;
5f4273c7 1557
dcbf9037 1558 if (atype.index == NEON_ALL_LANES)
5287ad62 1559 {
dcbf9037 1560 first_error (_("scalar must have an index"));
5287ad62
JB
1561 return FAIL;
1562 }
dcbf9037 1563 else if (atype.index >= 64 / elsize)
5287ad62 1564 {
dcbf9037 1565 first_error (_("scalar index out of range"));
5287ad62
JB
1566 return FAIL;
1567 }
5f4273c7 1568
dcbf9037
JB
1569 if (type)
1570 *type = atype.eltype;
5f4273c7 1571
5287ad62 1572 *ccp = str;
5f4273c7 1573
dcbf9037 1574 return reg * 16 + atype.index;
5287ad62
JB
1575}
1576
c19d1205 1577/* Parse an ARM register list. Returns the bitmask, or FAIL. */
e07e6e58 1578
c19d1205
ZW
1579static long
1580parse_reg_list (char ** strp)
1581{
1582 char * str = * strp;
1583 long range = 0;
1584 int another_range;
a737bd4d 1585
c19d1205
ZW
1586 /* We come back here if we get ranges concatenated by '+' or '|'. */
1587 do
6057a28f 1588 {
477330fc
RM
1589 skip_whitespace (str);
1590
c19d1205 1591 another_range = 0;
a737bd4d 1592
c19d1205
ZW
1593 if (*str == '{')
1594 {
1595 int in_range = 0;
1596 int cur_reg = -1;
a737bd4d 1597
c19d1205
ZW
1598 str++;
1599 do
1600 {
1601 int reg;
6057a28f 1602
dcbf9037 1603 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1604 {
dcbf9037 1605 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1606 return FAIL;
1607 }
a737bd4d 1608
c19d1205
ZW
1609 if (in_range)
1610 {
1611 int i;
a737bd4d 1612
c19d1205
ZW
1613 if (reg <= cur_reg)
1614 {
dcbf9037 1615 first_error (_("bad range in register list"));
c19d1205
ZW
1616 return FAIL;
1617 }
40a18ebd 1618
c19d1205
ZW
1619 for (i = cur_reg + 1; i < reg; i++)
1620 {
1621 if (range & (1 << i))
1622 as_tsktsk
1623 (_("Warning: duplicated register (r%d) in register list"),
1624 i);
1625 else
1626 range |= 1 << i;
1627 }
1628 in_range = 0;
1629 }
a737bd4d 1630
c19d1205
ZW
1631 if (range & (1 << reg))
1632 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1633 reg);
1634 else if (reg <= cur_reg)
1635 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1636
c19d1205
ZW
1637 range |= 1 << reg;
1638 cur_reg = reg;
1639 }
1640 while (skip_past_comma (&str) != FAIL
1641 || (in_range = 1, *str++ == '-'));
1642 str--;
a737bd4d 1643
d996d970 1644 if (skip_past_char (&str, '}') == FAIL)
c19d1205 1645 {
dcbf9037 1646 first_error (_("missing `}'"));
c19d1205
ZW
1647 return FAIL;
1648 }
1649 }
1650 else
1651 {
91d6fa6a 1652 expressionS exp;
40a18ebd 1653
91d6fa6a 1654 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
c19d1205 1655 return FAIL;
40a18ebd 1656
91d6fa6a 1657 if (exp.X_op == O_constant)
c19d1205 1658 {
91d6fa6a
NC
1659 if (exp.X_add_number
1660 != (exp.X_add_number & 0x0000ffff))
c19d1205
ZW
1661 {
1662 inst.error = _("invalid register mask");
1663 return FAIL;
1664 }
a737bd4d 1665
91d6fa6a 1666 if ((range & exp.X_add_number) != 0)
c19d1205 1667 {
91d6fa6a 1668 int regno = range & exp.X_add_number;
a737bd4d 1669
c19d1205
ZW
1670 regno &= -regno;
1671 regno = (1 << regno) - 1;
1672 as_tsktsk
1673 (_("Warning: duplicated register (r%d) in register list"),
1674 regno);
1675 }
a737bd4d 1676
91d6fa6a 1677 range |= exp.X_add_number;
c19d1205
ZW
1678 }
1679 else
1680 {
1681 if (inst.reloc.type != 0)
1682 {
1683 inst.error = _("expression too complex");
1684 return FAIL;
1685 }
a737bd4d 1686
91d6fa6a 1687 memcpy (&inst.reloc.exp, &exp, sizeof (expressionS));
c19d1205
ZW
1688 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1689 inst.reloc.pc_rel = 0;
1690 }
1691 }
a737bd4d 1692
c19d1205
ZW
1693 if (*str == '|' || *str == '+')
1694 {
1695 str++;
1696 another_range = 1;
1697 }
a737bd4d 1698 }
c19d1205 1699 while (another_range);
a737bd4d 1700
c19d1205
ZW
1701 *strp = str;
1702 return range;
a737bd4d
NC
1703}
1704
5287ad62
JB
1705/* Types of registers in a list. */
1706
1707enum reg_list_els
1708{
1709 REGLIST_VFP_S,
1710 REGLIST_VFP_D,
1711 REGLIST_NEON_D
1712};
1713
c19d1205
ZW
1714/* Parse a VFP register list. If the string is invalid return FAIL.
1715 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1716 register. Parses registers of type ETYPE.
1717 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1718 - Q registers can be used to specify pairs of D registers
1719 - { } can be omitted from around a singleton register list
477330fc
RM
1720 FIXME: This is not implemented, as it would require backtracking in
1721 some cases, e.g.:
1722 vtbl.8 d3,d4,d5
1723 This could be done (the meaning isn't really ambiguous), but doesn't
1724 fit in well with the current parsing framework.
dcbf9037
JB
1725 - 32 D registers may be used (also true for VFPv3).
1726 FIXME: Types are ignored in these register lists, which is probably a
1727 bug. */
6057a28f 1728
c19d1205 1729static int
037e8744 1730parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1731{
037e8744 1732 char *str = *ccp;
c19d1205
ZW
1733 int base_reg;
1734 int new_base;
21d799b5 1735 enum arm_reg_type regtype = (enum arm_reg_type) 0;
5287ad62 1736 int max_regs = 0;
c19d1205
ZW
1737 int count = 0;
1738 int warned = 0;
1739 unsigned long mask = 0;
a737bd4d 1740 int i;
6057a28f 1741
477330fc 1742 if (skip_past_char (&str, '{') == FAIL)
5287ad62
JB
1743 {
1744 inst.error = _("expecting {");
1745 return FAIL;
1746 }
6057a28f 1747
5287ad62 1748 switch (etype)
c19d1205 1749 {
5287ad62 1750 case REGLIST_VFP_S:
c19d1205
ZW
1751 regtype = REG_TYPE_VFS;
1752 max_regs = 32;
5287ad62 1753 break;
5f4273c7 1754
5287ad62
JB
1755 case REGLIST_VFP_D:
1756 regtype = REG_TYPE_VFD;
b7fc2769 1757 break;
5f4273c7 1758
b7fc2769
JB
1759 case REGLIST_NEON_D:
1760 regtype = REG_TYPE_NDQ;
1761 break;
1762 }
1763
1764 if (etype != REGLIST_VFP_S)
1765 {
b1cc4aeb
PB
1766 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
1767 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
477330fc
RM
1768 {
1769 max_regs = 32;
1770 if (thumb_mode)
1771 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
1772 fpu_vfp_ext_d32);
1773 else
1774 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
1775 fpu_vfp_ext_d32);
1776 }
5287ad62 1777 else
477330fc 1778 max_regs = 16;
c19d1205 1779 }
6057a28f 1780
c19d1205 1781 base_reg = max_regs;
a737bd4d 1782
c19d1205
ZW
1783 do
1784 {
5287ad62 1785 int setmask = 1, addregs = 1;
dcbf9037 1786
037e8744 1787 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1788
c19d1205 1789 if (new_base == FAIL)
a737bd4d 1790 {
dcbf9037 1791 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1792 return FAIL;
1793 }
5f4273c7 1794
b7fc2769 1795 if (new_base >= max_regs)
477330fc
RM
1796 {
1797 first_error (_("register out of range in list"));
1798 return FAIL;
1799 }
5f4273c7 1800
5287ad62
JB
1801 /* Note: a value of 2 * n is returned for the register Q<n>. */
1802 if (regtype == REG_TYPE_NQ)
477330fc
RM
1803 {
1804 setmask = 3;
1805 addregs = 2;
1806 }
5287ad62 1807
c19d1205
ZW
1808 if (new_base < base_reg)
1809 base_reg = new_base;
a737bd4d 1810
5287ad62 1811 if (mask & (setmask << new_base))
c19d1205 1812 {
dcbf9037 1813 first_error (_("invalid register list"));
c19d1205 1814 return FAIL;
a737bd4d 1815 }
a737bd4d 1816
c19d1205
ZW
1817 if ((mask >> new_base) != 0 && ! warned)
1818 {
1819 as_tsktsk (_("register list not in ascending order"));
1820 warned = 1;
1821 }
0bbf2aa4 1822
5287ad62
JB
1823 mask |= setmask << new_base;
1824 count += addregs;
0bbf2aa4 1825
037e8744 1826 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1827 {
1828 int high_range;
0bbf2aa4 1829
037e8744 1830 str++;
0bbf2aa4 1831
037e8744 1832 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
477330fc 1833 == FAIL)
c19d1205
ZW
1834 {
1835 inst.error = gettext (reg_expected_msgs[regtype]);
1836 return FAIL;
1837 }
0bbf2aa4 1838
477330fc
RM
1839 if (high_range >= max_regs)
1840 {
1841 first_error (_("register out of range in list"));
1842 return FAIL;
1843 }
b7fc2769 1844
477330fc
RM
1845 if (regtype == REG_TYPE_NQ)
1846 high_range = high_range + 1;
5287ad62 1847
c19d1205
ZW
1848 if (high_range <= new_base)
1849 {
1850 inst.error = _("register range not in ascending order");
1851 return FAIL;
1852 }
0bbf2aa4 1853
5287ad62 1854 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1855 {
5287ad62 1856 if (mask & (setmask << new_base))
0bbf2aa4 1857 {
c19d1205
ZW
1858 inst.error = _("invalid register list");
1859 return FAIL;
0bbf2aa4 1860 }
c19d1205 1861
5287ad62
JB
1862 mask |= setmask << new_base;
1863 count += addregs;
0bbf2aa4 1864 }
0bbf2aa4 1865 }
0bbf2aa4 1866 }
037e8744 1867 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1868
037e8744 1869 str++;
0bbf2aa4 1870
c19d1205
ZW
1871 /* Sanity check -- should have raised a parse error above. */
1872 if (count == 0 || count > max_regs)
1873 abort ();
1874
1875 *pbase = base_reg;
1876
1877 /* Final test -- the registers must be consecutive. */
1878 mask >>= base_reg;
1879 for (i = 0; i < count; i++)
1880 {
1881 if ((mask & (1u << i)) == 0)
1882 {
1883 inst.error = _("non-contiguous register range");
1884 return FAIL;
1885 }
1886 }
1887
037e8744
JB
1888 *ccp = str;
1889
c19d1205 1890 return count;
b99bd4ef
NC
1891}
1892
dcbf9037
JB
1893/* True if two alias types are the same. */
1894
c921be7d 1895static bfd_boolean
dcbf9037
JB
1896neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1897{
1898 if (!a && !b)
c921be7d 1899 return TRUE;
5f4273c7 1900
dcbf9037 1901 if (!a || !b)
c921be7d 1902 return FALSE;
dcbf9037
JB
1903
1904 if (a->defined != b->defined)
c921be7d 1905 return FALSE;
5f4273c7 1906
dcbf9037
JB
1907 if ((a->defined & NTA_HASTYPE) != 0
1908 && (a->eltype.type != b->eltype.type
477330fc 1909 || a->eltype.size != b->eltype.size))
c921be7d 1910 return FALSE;
dcbf9037
JB
1911
1912 if ((a->defined & NTA_HASINDEX) != 0
1913 && (a->index != b->index))
c921be7d 1914 return FALSE;
5f4273c7 1915
c921be7d 1916 return TRUE;
dcbf9037
JB
1917}
1918
5287ad62
JB
1919/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1920 The base register is put in *PBASE.
dcbf9037 1921 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1922 the return value.
1923 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1924 Bits [6:5] encode the list length (minus one).
1925 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1926
5287ad62 1927#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1928#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1929#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1930
1931static int
dcbf9037 1932parse_neon_el_struct_list (char **str, unsigned *pbase,
477330fc 1933 struct neon_type_el *eltype)
5287ad62
JB
1934{
1935 char *ptr = *str;
1936 int base_reg = -1;
1937 int reg_incr = -1;
1938 int count = 0;
1939 int lane = -1;
1940 int leading_brace = 0;
1941 enum arm_reg_type rtype = REG_TYPE_NDQ;
20203fb9
NC
1942 const char *const incr_error = _("register stride must be 1 or 2");
1943 const char *const type_error = _("mismatched element/structure types in list");
dcbf9037 1944 struct neon_typed_alias firsttype;
5f4273c7 1945
5287ad62
JB
1946 if (skip_past_char (&ptr, '{') == SUCCESS)
1947 leading_brace = 1;
5f4273c7 1948
5287ad62
JB
1949 do
1950 {
dcbf9037
JB
1951 struct neon_typed_alias atype;
1952 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
1953
5287ad62 1954 if (getreg == FAIL)
477330fc
RM
1955 {
1956 first_error (_(reg_expected_msgs[rtype]));
1957 return FAIL;
1958 }
5f4273c7 1959
5287ad62 1960 if (base_reg == -1)
477330fc
RM
1961 {
1962 base_reg = getreg;
1963 if (rtype == REG_TYPE_NQ)
1964 {
1965 reg_incr = 1;
1966 }
1967 firsttype = atype;
1968 }
5287ad62 1969 else if (reg_incr == -1)
477330fc
RM
1970 {
1971 reg_incr = getreg - base_reg;
1972 if (reg_incr < 1 || reg_incr > 2)
1973 {
1974 first_error (_(incr_error));
1975 return FAIL;
1976 }
1977 }
5287ad62 1978 else if (getreg != base_reg + reg_incr * count)
477330fc
RM
1979 {
1980 first_error (_(incr_error));
1981 return FAIL;
1982 }
dcbf9037 1983
c921be7d 1984 if (! neon_alias_types_same (&atype, &firsttype))
477330fc
RM
1985 {
1986 first_error (_(type_error));
1987 return FAIL;
1988 }
5f4273c7 1989
5287ad62 1990 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
477330fc 1991 modes. */
5287ad62 1992 if (ptr[0] == '-')
477330fc
RM
1993 {
1994 struct neon_typed_alias htype;
1995 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
1996 if (lane == -1)
1997 lane = NEON_INTERLEAVE_LANES;
1998 else if (lane != NEON_INTERLEAVE_LANES)
1999 {
2000 first_error (_(type_error));
2001 return FAIL;
2002 }
2003 if (reg_incr == -1)
2004 reg_incr = 1;
2005 else if (reg_incr != 1)
2006 {
2007 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
2008 return FAIL;
2009 }
2010 ptr++;
2011 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
2012 if (hireg == FAIL)
2013 {
2014 first_error (_(reg_expected_msgs[rtype]));
2015 return FAIL;
2016 }
2017 if (! neon_alias_types_same (&htype, &firsttype))
2018 {
2019 first_error (_(type_error));
2020 return FAIL;
2021 }
2022 count += hireg + dregs - getreg;
2023 continue;
2024 }
5f4273c7 2025
5287ad62
JB
2026 /* If we're using Q registers, we can't use [] or [n] syntax. */
2027 if (rtype == REG_TYPE_NQ)
477330fc
RM
2028 {
2029 count += 2;
2030 continue;
2031 }
5f4273c7 2032
dcbf9037 2033 if ((atype.defined & NTA_HASINDEX) != 0)
477330fc
RM
2034 {
2035 if (lane == -1)
2036 lane = atype.index;
2037 else if (lane != atype.index)
2038 {
2039 first_error (_(type_error));
2040 return FAIL;
2041 }
2042 }
5287ad62 2043 else if (lane == -1)
477330fc 2044 lane = NEON_INTERLEAVE_LANES;
5287ad62 2045 else if (lane != NEON_INTERLEAVE_LANES)
477330fc
RM
2046 {
2047 first_error (_(type_error));
2048 return FAIL;
2049 }
5287ad62
JB
2050 count++;
2051 }
2052 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
5f4273c7 2053
5287ad62
JB
2054 /* No lane set by [x]. We must be interleaving structures. */
2055 if (lane == -1)
2056 lane = NEON_INTERLEAVE_LANES;
5f4273c7 2057
5287ad62
JB
2058 /* Sanity check. */
2059 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
2060 || (count > 1 && reg_incr == -1))
2061 {
dcbf9037 2062 first_error (_("error parsing element/structure list"));
5287ad62
JB
2063 return FAIL;
2064 }
2065
2066 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2067 {
dcbf9037 2068 first_error (_("expected }"));
5287ad62
JB
2069 return FAIL;
2070 }
5f4273c7 2071
5287ad62
JB
2072 if (reg_incr == -1)
2073 reg_incr = 1;
2074
dcbf9037
JB
2075 if (eltype)
2076 *eltype = firsttype.eltype;
2077
5287ad62
JB
2078 *pbase = base_reg;
2079 *str = ptr;
5f4273c7 2080
5287ad62
JB
2081 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2082}
2083
c19d1205
ZW
2084/* Parse an explicit relocation suffix on an expression. This is
2085 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2086 arm_reloc_hsh contains no entries, so this function can only
2087 succeed if there is no () after the word. Returns -1 on error,
2088 BFD_RELOC_UNUSED if there wasn't any suffix. */
3da1d841 2089
c19d1205
ZW
2090static int
2091parse_reloc (char **str)
b99bd4ef 2092{
c19d1205
ZW
2093 struct reloc_entry *r;
2094 char *p, *q;
b99bd4ef 2095
c19d1205
ZW
2096 if (**str != '(')
2097 return BFD_RELOC_UNUSED;
b99bd4ef 2098
c19d1205
ZW
2099 p = *str + 1;
2100 q = p;
2101
2102 while (*q && *q != ')' && *q != ',')
2103 q++;
2104 if (*q != ')')
2105 return -1;
2106
21d799b5
NC
2107 if ((r = (struct reloc_entry *)
2108 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
c19d1205
ZW
2109 return -1;
2110
2111 *str = q + 1;
2112 return r->reloc;
b99bd4ef
NC
2113}
2114
c19d1205
ZW
2115/* Directives: register aliases. */
2116
dcbf9037 2117static struct reg_entry *
90ec0d68 2118insert_reg_alias (char *str, unsigned number, int type)
b99bd4ef 2119{
d3ce72d0 2120 struct reg_entry *new_reg;
c19d1205 2121 const char *name;
b99bd4ef 2122
d3ce72d0 2123 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
c19d1205 2124 {
d3ce72d0 2125 if (new_reg->builtin)
c19d1205 2126 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 2127
c19d1205
ZW
2128 /* Only warn about a redefinition if it's not defined as the
2129 same register. */
d3ce72d0 2130 else if (new_reg->number != number || new_reg->type != type)
c19d1205 2131 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 2132
d929913e 2133 return NULL;
c19d1205 2134 }
b99bd4ef 2135
c19d1205 2136 name = xstrdup (str);
d3ce72d0 2137 new_reg = (struct reg_entry *) xmalloc (sizeof (struct reg_entry));
b99bd4ef 2138
d3ce72d0
NC
2139 new_reg->name = name;
2140 new_reg->number = number;
2141 new_reg->type = type;
2142 new_reg->builtin = FALSE;
2143 new_reg->neon = NULL;
b99bd4ef 2144
d3ce72d0 2145 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
c19d1205 2146 abort ();
5f4273c7 2147
d3ce72d0 2148 return new_reg;
dcbf9037
JB
2149}
2150
2151static void
2152insert_neon_reg_alias (char *str, int number, int type,
477330fc 2153 struct neon_typed_alias *atype)
dcbf9037
JB
2154{
2155 struct reg_entry *reg = insert_reg_alias (str, number, type);
5f4273c7 2156
dcbf9037
JB
2157 if (!reg)
2158 {
2159 first_error (_("attempt to redefine typed alias"));
2160 return;
2161 }
5f4273c7 2162
dcbf9037
JB
2163 if (atype)
2164 {
21d799b5 2165 reg->neon = (struct neon_typed_alias *)
477330fc 2166 xmalloc (sizeof (struct neon_typed_alias));
dcbf9037
JB
2167 *reg->neon = *atype;
2168 }
c19d1205 2169}
b99bd4ef 2170
c19d1205 2171/* Look for the .req directive. This is of the form:
b99bd4ef 2172
c19d1205 2173 new_register_name .req existing_register_name
b99bd4ef 2174
c19d1205 2175 If we find one, or if it looks sufficiently like one that we want to
d929913e 2176 handle any error here, return TRUE. Otherwise return FALSE. */
b99bd4ef 2177
d929913e 2178static bfd_boolean
c19d1205
ZW
2179create_register_alias (char * newname, char *p)
2180{
2181 struct reg_entry *old;
2182 char *oldname, *nbuf;
2183 size_t nlen;
b99bd4ef 2184
c19d1205
ZW
2185 /* The input scrubber ensures that whitespace after the mnemonic is
2186 collapsed to single spaces. */
2187 oldname = p;
2188 if (strncmp (oldname, " .req ", 6) != 0)
d929913e 2189 return FALSE;
b99bd4ef 2190
c19d1205
ZW
2191 oldname += 6;
2192 if (*oldname == '\0')
d929913e 2193 return FALSE;
b99bd4ef 2194
21d799b5 2195 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
c19d1205 2196 if (!old)
b99bd4ef 2197 {
c19d1205 2198 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
d929913e 2199 return TRUE;
b99bd4ef
NC
2200 }
2201
c19d1205
ZW
2202 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2203 the desired alias name, and p points to its end. If not, then
2204 the desired alias name is in the global original_case_string. */
2205#ifdef TC_CASE_SENSITIVE
2206 nlen = p - newname;
2207#else
2208 newname = original_case_string;
2209 nlen = strlen (newname);
2210#endif
b99bd4ef 2211
21d799b5 2212 nbuf = (char *) alloca (nlen + 1);
c19d1205
ZW
2213 memcpy (nbuf, newname, nlen);
2214 nbuf[nlen] = '\0';
b99bd4ef 2215
c19d1205
ZW
2216 /* Create aliases under the new name as stated; an all-lowercase
2217 version of the new name; and an all-uppercase version of the new
2218 name. */
d929913e
NC
2219 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2220 {
2221 for (p = nbuf; *p; p++)
2222 *p = TOUPPER (*p);
c19d1205 2223
d929913e
NC
2224 if (strncmp (nbuf, newname, nlen))
2225 {
2226 /* If this attempt to create an additional alias fails, do not bother
2227 trying to create the all-lower case alias. We will fail and issue
2228 a second, duplicate error message. This situation arises when the
2229 programmer does something like:
2230 foo .req r0
2231 Foo .req r1
2232 The second .req creates the "Foo" alias but then fails to create
5f4273c7 2233 the artificial FOO alias because it has already been created by the
d929913e
NC
2234 first .req. */
2235 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
2236 return TRUE;
2237 }
c19d1205 2238
d929913e
NC
2239 for (p = nbuf; *p; p++)
2240 *p = TOLOWER (*p);
c19d1205 2241
d929913e
NC
2242 if (strncmp (nbuf, newname, nlen))
2243 insert_reg_alias (nbuf, old->number, old->type);
2244 }
c19d1205 2245
d929913e 2246 return TRUE;
b99bd4ef
NC
2247}
2248
dcbf9037
JB
2249/* Create a Neon typed/indexed register alias using directives, e.g.:
2250 X .dn d5.s32[1]
2251 Y .qn 6.s16
2252 Z .dn d7
2253 T .dn Z[0]
2254 These typed registers can be used instead of the types specified after the
2255 Neon mnemonic, so long as all operands given have types. Types can also be
2256 specified directly, e.g.:
5f4273c7 2257 vadd d0.s32, d1.s32, d2.s32 */
dcbf9037 2258
c921be7d 2259static bfd_boolean
dcbf9037
JB
2260create_neon_reg_alias (char *newname, char *p)
2261{
2262 enum arm_reg_type basetype;
2263 struct reg_entry *basereg;
2264 struct reg_entry mybasereg;
2265 struct neon_type ntype;
2266 struct neon_typed_alias typeinfo;
12d6b0b7 2267 char *namebuf, *nameend ATTRIBUTE_UNUSED;
dcbf9037 2268 int namelen;
5f4273c7 2269
dcbf9037
JB
2270 typeinfo.defined = 0;
2271 typeinfo.eltype.type = NT_invtype;
2272 typeinfo.eltype.size = -1;
2273 typeinfo.index = -1;
5f4273c7 2274
dcbf9037 2275 nameend = p;
5f4273c7 2276
dcbf9037
JB
2277 if (strncmp (p, " .dn ", 5) == 0)
2278 basetype = REG_TYPE_VFD;
2279 else if (strncmp (p, " .qn ", 5) == 0)
2280 basetype = REG_TYPE_NQ;
2281 else
c921be7d 2282 return FALSE;
5f4273c7 2283
dcbf9037 2284 p += 5;
5f4273c7 2285
dcbf9037 2286 if (*p == '\0')
c921be7d 2287 return FALSE;
5f4273c7 2288
dcbf9037
JB
2289 basereg = arm_reg_parse_multi (&p);
2290
2291 if (basereg && basereg->type != basetype)
2292 {
2293 as_bad (_("bad type for register"));
c921be7d 2294 return FALSE;
dcbf9037
JB
2295 }
2296
2297 if (basereg == NULL)
2298 {
2299 expressionS exp;
2300 /* Try parsing as an integer. */
2301 my_get_expression (&exp, &p, GE_NO_PREFIX);
2302 if (exp.X_op != O_constant)
477330fc
RM
2303 {
2304 as_bad (_("expression must be constant"));
2305 return FALSE;
2306 }
dcbf9037
JB
2307 basereg = &mybasereg;
2308 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
477330fc 2309 : exp.X_add_number;
dcbf9037
JB
2310 basereg->neon = 0;
2311 }
2312
2313 if (basereg->neon)
2314 typeinfo = *basereg->neon;
2315
2316 if (parse_neon_type (&ntype, &p) == SUCCESS)
2317 {
2318 /* We got a type. */
2319 if (typeinfo.defined & NTA_HASTYPE)
477330fc
RM
2320 {
2321 as_bad (_("can't redefine the type of a register alias"));
2322 return FALSE;
2323 }
5f4273c7 2324
dcbf9037
JB
2325 typeinfo.defined |= NTA_HASTYPE;
2326 if (ntype.elems != 1)
477330fc
RM
2327 {
2328 as_bad (_("you must specify a single type only"));
2329 return FALSE;
2330 }
dcbf9037
JB
2331 typeinfo.eltype = ntype.el[0];
2332 }
5f4273c7 2333
dcbf9037
JB
2334 if (skip_past_char (&p, '[') == SUCCESS)
2335 {
2336 expressionS exp;
2337 /* We got a scalar index. */
5f4273c7 2338
dcbf9037 2339 if (typeinfo.defined & NTA_HASINDEX)
477330fc
RM
2340 {
2341 as_bad (_("can't redefine the index of a scalar alias"));
2342 return FALSE;
2343 }
5f4273c7 2344
dcbf9037 2345 my_get_expression (&exp, &p, GE_NO_PREFIX);
5f4273c7 2346
dcbf9037 2347 if (exp.X_op != O_constant)
477330fc
RM
2348 {
2349 as_bad (_("scalar index must be constant"));
2350 return FALSE;
2351 }
5f4273c7 2352
dcbf9037
JB
2353 typeinfo.defined |= NTA_HASINDEX;
2354 typeinfo.index = exp.X_add_number;
5f4273c7 2355
dcbf9037 2356 if (skip_past_char (&p, ']') == FAIL)
477330fc
RM
2357 {
2358 as_bad (_("expecting ]"));
2359 return FALSE;
2360 }
dcbf9037
JB
2361 }
2362
15735687
NS
2363 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2364 the desired alias name, and p points to its end. If not, then
2365 the desired alias name is in the global original_case_string. */
2366#ifdef TC_CASE_SENSITIVE
dcbf9037 2367 namelen = nameend - newname;
15735687
NS
2368#else
2369 newname = original_case_string;
2370 namelen = strlen (newname);
2371#endif
2372
21d799b5 2373 namebuf = (char *) alloca (namelen + 1);
dcbf9037
JB
2374 strncpy (namebuf, newname, namelen);
2375 namebuf[namelen] = '\0';
5f4273c7 2376
dcbf9037 2377 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2378 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2379
dcbf9037
JB
2380 /* Insert name in all uppercase. */
2381 for (p = namebuf; *p; p++)
2382 *p = TOUPPER (*p);
5f4273c7 2383
dcbf9037
JB
2384 if (strncmp (namebuf, newname, namelen))
2385 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2386 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2387
dcbf9037
JB
2388 /* Insert name in all lowercase. */
2389 for (p = namebuf; *p; p++)
2390 *p = TOLOWER (*p);
5f4273c7 2391
dcbf9037
JB
2392 if (strncmp (namebuf, newname, namelen))
2393 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2394 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2395
c921be7d 2396 return TRUE;
dcbf9037
JB
2397}
2398
c19d1205
ZW
2399/* Should never be called, as .req goes between the alias and the
2400 register name, not at the beginning of the line. */
c921be7d 2401
b99bd4ef 2402static void
c19d1205 2403s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2404{
c19d1205
ZW
2405 as_bad (_("invalid syntax for .req directive"));
2406}
b99bd4ef 2407
dcbf9037
JB
2408static void
2409s_dn (int a ATTRIBUTE_UNUSED)
2410{
2411 as_bad (_("invalid syntax for .dn directive"));
2412}
2413
2414static void
2415s_qn (int a ATTRIBUTE_UNUSED)
2416{
2417 as_bad (_("invalid syntax for .qn directive"));
2418}
2419
c19d1205
ZW
2420/* The .unreq directive deletes an alias which was previously defined
2421 by .req. For example:
b99bd4ef 2422
c19d1205
ZW
2423 my_alias .req r11
2424 .unreq my_alias */
b99bd4ef
NC
2425
2426static void
c19d1205 2427s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2428{
c19d1205
ZW
2429 char * name;
2430 char saved_char;
b99bd4ef 2431
c19d1205
ZW
2432 name = input_line_pointer;
2433
2434 while (*input_line_pointer != 0
2435 && *input_line_pointer != ' '
2436 && *input_line_pointer != '\n')
2437 ++input_line_pointer;
2438
2439 saved_char = *input_line_pointer;
2440 *input_line_pointer = 0;
2441
2442 if (!*name)
2443 as_bad (_("invalid syntax for .unreq directive"));
2444 else
2445 {
21d799b5 2446 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
477330fc 2447 name);
c19d1205
ZW
2448
2449 if (!reg)
2450 as_bad (_("unknown register alias '%s'"), name);
2451 else if (reg->builtin)
a1727c1a 2452 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
c19d1205
ZW
2453 name);
2454 else
2455 {
d929913e
NC
2456 char * p;
2457 char * nbuf;
2458
db0bc284 2459 hash_delete (arm_reg_hsh, name, FALSE);
c19d1205 2460 free ((char *) reg->name);
477330fc
RM
2461 if (reg->neon)
2462 free (reg->neon);
c19d1205 2463 free (reg);
d929913e
NC
2464
2465 /* Also locate the all upper case and all lower case versions.
2466 Do not complain if we cannot find one or the other as it
2467 was probably deleted above. */
5f4273c7 2468
d929913e
NC
2469 nbuf = strdup (name);
2470 for (p = nbuf; *p; p++)
2471 *p = TOUPPER (*p);
21d799b5 2472 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2473 if (reg)
2474 {
db0bc284 2475 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2476 free ((char *) reg->name);
2477 if (reg->neon)
2478 free (reg->neon);
2479 free (reg);
2480 }
2481
2482 for (p = nbuf; *p; p++)
2483 *p = TOLOWER (*p);
21d799b5 2484 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2485 if (reg)
2486 {
db0bc284 2487 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2488 free ((char *) reg->name);
2489 if (reg->neon)
2490 free (reg->neon);
2491 free (reg);
2492 }
2493
2494 free (nbuf);
c19d1205
ZW
2495 }
2496 }
b99bd4ef 2497
c19d1205 2498 *input_line_pointer = saved_char;
b99bd4ef
NC
2499 demand_empty_rest_of_line ();
2500}
2501
c19d1205
ZW
2502/* Directives: Instruction set selection. */
2503
2504#ifdef OBJ_ELF
2505/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2506 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2507 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2508 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2509
cd000bff
DJ
2510/* Create a new mapping symbol for the transition to STATE. */
2511
2512static void
2513make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
b99bd4ef 2514{
a737bd4d 2515 symbolS * symbolP;
c19d1205
ZW
2516 const char * symname;
2517 int type;
b99bd4ef 2518
c19d1205 2519 switch (state)
b99bd4ef 2520 {
c19d1205
ZW
2521 case MAP_DATA:
2522 symname = "$d";
2523 type = BSF_NO_FLAGS;
2524 break;
2525 case MAP_ARM:
2526 symname = "$a";
2527 type = BSF_NO_FLAGS;
2528 break;
2529 case MAP_THUMB:
2530 symname = "$t";
2531 type = BSF_NO_FLAGS;
2532 break;
c19d1205
ZW
2533 default:
2534 abort ();
2535 }
2536
cd000bff 2537 symbolP = symbol_new (symname, now_seg, value, frag);
c19d1205
ZW
2538 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2539
2540 switch (state)
2541 {
2542 case MAP_ARM:
2543 THUMB_SET_FUNC (symbolP, 0);
2544 ARM_SET_THUMB (symbolP, 0);
2545 ARM_SET_INTERWORK (symbolP, support_interwork);
2546 break;
2547
2548 case MAP_THUMB:
2549 THUMB_SET_FUNC (symbolP, 1);
2550 ARM_SET_THUMB (symbolP, 1);
2551 ARM_SET_INTERWORK (symbolP, support_interwork);
2552 break;
2553
2554 case MAP_DATA:
2555 default:
cd000bff
DJ
2556 break;
2557 }
2558
2559 /* Save the mapping symbols for future reference. Also check that
2560 we do not place two mapping symbols at the same offset within a
2561 frag. We'll handle overlap between frags in
2de7820f
JZ
2562 check_mapping_symbols.
2563
2564 If .fill or other data filling directive generates zero sized data,
2565 the mapping symbol for the following code will have the same value
2566 as the one generated for the data filling directive. In this case,
2567 we replace the old symbol with the new one at the same address. */
cd000bff
DJ
2568 if (value == 0)
2569 {
2de7820f
JZ
2570 if (frag->tc_frag_data.first_map != NULL)
2571 {
2572 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2573 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2574 }
cd000bff
DJ
2575 frag->tc_frag_data.first_map = symbolP;
2576 }
2577 if (frag->tc_frag_data.last_map != NULL)
0f020cef
JZ
2578 {
2579 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
0f020cef
JZ
2580 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2581 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2582 }
cd000bff
DJ
2583 frag->tc_frag_data.last_map = symbolP;
2584}
2585
2586/* We must sometimes convert a region marked as code to data during
2587 code alignment, if an odd number of bytes have to be padded. The
2588 code mapping symbol is pushed to an aligned address. */
2589
2590static void
2591insert_data_mapping_symbol (enum mstate state,
2592 valueT value, fragS *frag, offsetT bytes)
2593{
2594 /* If there was already a mapping symbol, remove it. */
2595 if (frag->tc_frag_data.last_map != NULL
2596 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2597 {
2598 symbolS *symp = frag->tc_frag_data.last_map;
2599
2600 if (value == 0)
2601 {
2602 know (frag->tc_frag_data.first_map == symp);
2603 frag->tc_frag_data.first_map = NULL;
2604 }
2605 frag->tc_frag_data.last_map = NULL;
2606 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
c19d1205 2607 }
cd000bff
DJ
2608
2609 make_mapping_symbol (MAP_DATA, value, frag);
2610 make_mapping_symbol (state, value + bytes, frag);
2611}
2612
2613static void mapping_state_2 (enum mstate state, int max_chars);
2614
2615/* Set the mapping state to STATE. Only call this when about to
2616 emit some STATE bytes to the file. */
2617
2618void
2619mapping_state (enum mstate state)
2620{
940b5ce0
DJ
2621 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2622
cd000bff
DJ
2623#define TRANSITION(from, to) (mapstate == (from) && state == (to))
2624
2625 if (mapstate == state)
2626 /* The mapping symbol has already been emitted.
2627 There is nothing else to do. */
2628 return;
49c62a33
NC
2629
2630 if (state == MAP_ARM || state == MAP_THUMB)
2631 /* PR gas/12931
2632 All ARM instructions require 4-byte alignment.
2633 (Almost) all Thumb instructions require 2-byte alignment.
2634
2635 When emitting instructions into any section, mark the section
2636 appropriately.
2637
2638 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2639 but themselves require 2-byte alignment; this applies to some
2640 PC- relative forms. However, these cases will invovle implicit
2641 literal pool generation or an explicit .align >=2, both of
2642 which will cause the section to me marked with sufficient
2643 alignment. Thus, we don't handle those cases here. */
2644 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2645
2646 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
cd000bff
DJ
2647 /* This case will be evaluated later in the next else. */
2648 return;
2649 else if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
477330fc 2650 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
cd000bff
DJ
2651 {
2652 /* Only add the symbol if the offset is > 0:
477330fc
RM
2653 if we're at the first frag, check it's size > 0;
2654 if we're not at the first frag, then for sure
2655 the offset is > 0. */
cd000bff
DJ
2656 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
2657 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
2658
2659 if (add_symbol)
477330fc 2660 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
cd000bff
DJ
2661 }
2662
2663 mapping_state_2 (state, 0);
2664#undef TRANSITION
2665}
2666
2667/* Same as mapping_state, but MAX_CHARS bytes have already been
2668 allocated. Put the mapping symbol that far back. */
2669
2670static void
2671mapping_state_2 (enum mstate state, int max_chars)
2672{
940b5ce0
DJ
2673 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2674
2675 if (!SEG_NORMAL (now_seg))
2676 return;
2677
cd000bff
DJ
2678 if (mapstate == state)
2679 /* The mapping symbol has already been emitted.
2680 There is nothing else to do. */
2681 return;
2682
cd000bff
DJ
2683 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2684 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
c19d1205
ZW
2685}
2686#else
d3106081
NS
2687#define mapping_state(x) ((void)0)
2688#define mapping_state_2(x, y) ((void)0)
c19d1205
ZW
2689#endif
2690
2691/* Find the real, Thumb encoded start of a Thumb function. */
2692
4343666d 2693#ifdef OBJ_COFF
c19d1205
ZW
2694static symbolS *
2695find_real_start (symbolS * symbolP)
2696{
2697 char * real_start;
2698 const char * name = S_GET_NAME (symbolP);
2699 symbolS * new_target;
2700
2701 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2702#define STUB_NAME ".real_start_of"
2703
2704 if (name == NULL)
2705 abort ();
2706
37f6032b
ZW
2707 /* The compiler may generate BL instructions to local labels because
2708 it needs to perform a branch to a far away location. These labels
2709 do not have a corresponding ".real_start_of" label. We check
2710 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2711 the ".real_start_of" convention for nonlocal branches. */
2712 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2713 return symbolP;
2714
37f6032b 2715 real_start = ACONCAT ((STUB_NAME, name, NULL));
c19d1205
ZW
2716 new_target = symbol_find (real_start);
2717
2718 if (new_target == NULL)
2719 {
bd3ba5d1 2720 as_warn (_("Failed to find real start of function: %s\n"), name);
c19d1205
ZW
2721 new_target = symbolP;
2722 }
2723
c19d1205
ZW
2724 return new_target;
2725}
4343666d 2726#endif
c19d1205
ZW
2727
2728static void
2729opcode_select (int width)
2730{
2731 switch (width)
2732 {
2733 case 16:
2734 if (! thumb_mode)
2735 {
e74cfd16 2736 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2737 as_bad (_("selected processor does not support THUMB opcodes"));
2738
2739 thumb_mode = 1;
2740 /* No need to force the alignment, since we will have been
2741 coming from ARM mode, which is word-aligned. */
2742 record_alignment (now_seg, 1);
2743 }
c19d1205
ZW
2744 break;
2745
2746 case 32:
2747 if (thumb_mode)
2748 {
e74cfd16 2749 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2750 as_bad (_("selected processor does not support ARM opcodes"));
2751
2752 thumb_mode = 0;
2753
2754 if (!need_pass_2)
2755 frag_align (2, 0, 0);
2756
2757 record_alignment (now_seg, 1);
2758 }
c19d1205
ZW
2759 break;
2760
2761 default:
2762 as_bad (_("invalid instruction size selected (%d)"), width);
2763 }
2764}
2765
2766static void
2767s_arm (int ignore ATTRIBUTE_UNUSED)
2768{
2769 opcode_select (32);
2770 demand_empty_rest_of_line ();
2771}
2772
2773static void
2774s_thumb (int ignore ATTRIBUTE_UNUSED)
2775{
2776 opcode_select (16);
2777 demand_empty_rest_of_line ();
2778}
2779
2780static void
2781s_code (int unused ATTRIBUTE_UNUSED)
2782{
2783 int temp;
2784
2785 temp = get_absolute_expression ();
2786 switch (temp)
2787 {
2788 case 16:
2789 case 32:
2790 opcode_select (temp);
2791 break;
2792
2793 default:
2794 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2795 }
2796}
2797
2798static void
2799s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2800{
2801 /* If we are not already in thumb mode go into it, EVEN if
2802 the target processor does not support thumb instructions.
2803 This is used by gcc/config/arm/lib1funcs.asm for example
2804 to compile interworking support functions even if the
2805 target processor should not support interworking. */
2806 if (! thumb_mode)
2807 {
2808 thumb_mode = 2;
2809 record_alignment (now_seg, 1);
2810 }
2811
2812 demand_empty_rest_of_line ();
2813}
2814
2815static void
2816s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2817{
2818 s_thumb (0);
2819
2820 /* The following label is the name/address of the start of a Thumb function.
2821 We need to know this for the interworking support. */
2822 label_is_thumb_function_name = TRUE;
2823}
2824
2825/* Perform a .set directive, but also mark the alias as
2826 being a thumb function. */
2827
2828static void
2829s_thumb_set (int equiv)
2830{
2831 /* XXX the following is a duplicate of the code for s_set() in read.c
2832 We cannot just call that code as we need to get at the symbol that
2833 is created. */
2834 char * name;
2835 char delim;
2836 char * end_name;
2837 symbolS * symbolP;
2838
2839 /* Especial apologies for the random logic:
2840 This just grew, and could be parsed much more simply!
2841 Dean - in haste. */
2842 name = input_line_pointer;
2843 delim = get_symbol_end ();
2844 end_name = input_line_pointer;
2845 *end_name = delim;
2846
2847 if (*input_line_pointer != ',')
2848 {
2849 *end_name = 0;
2850 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2851 *end_name = delim;
2852 ignore_rest_of_line ();
2853 return;
2854 }
2855
2856 input_line_pointer++;
2857 *end_name = 0;
2858
2859 if (name[0] == '.' && name[1] == '\0')
2860 {
2861 /* XXX - this should not happen to .thumb_set. */
2862 abort ();
2863 }
2864
2865 if ((symbolP = symbol_find (name)) == NULL
2866 && (symbolP = md_undefined_symbol (name)) == NULL)
2867 {
2868#ifndef NO_LISTING
2869 /* When doing symbol listings, play games with dummy fragments living
2870 outside the normal fragment chain to record the file and line info
c19d1205 2871 for this symbol. */
b99bd4ef
NC
2872 if (listing & LISTING_SYMBOLS)
2873 {
2874 extern struct list_info_struct * listing_tail;
21d799b5 2875 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
b99bd4ef
NC
2876
2877 memset (dummy_frag, 0, sizeof (fragS));
2878 dummy_frag->fr_type = rs_fill;
2879 dummy_frag->line = listing_tail;
2880 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2881 dummy_frag->fr_symbol = symbolP;
2882 }
2883 else
2884#endif
2885 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2886
2887#ifdef OBJ_COFF
2888 /* "set" symbols are local unless otherwise specified. */
2889 SF_SET_LOCAL (symbolP);
2890#endif /* OBJ_COFF */
2891 } /* Make a new symbol. */
2892
2893 symbol_table_insert (symbolP);
2894
2895 * end_name = delim;
2896
2897 if (equiv
2898 && S_IS_DEFINED (symbolP)
2899 && S_GET_SEGMENT (symbolP) != reg_section)
2900 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2901
2902 pseudo_set (symbolP);
2903
2904 demand_empty_rest_of_line ();
2905
c19d1205 2906 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2907
2908 THUMB_SET_FUNC (symbolP, 1);
2909 ARM_SET_THUMB (symbolP, 1);
2910#if defined OBJ_ELF || defined OBJ_COFF
2911 ARM_SET_INTERWORK (symbolP, support_interwork);
2912#endif
2913}
2914
c19d1205 2915/* Directives: Mode selection. */
b99bd4ef 2916
c19d1205
ZW
2917/* .syntax [unified|divided] - choose the new unified syntax
2918 (same for Arm and Thumb encoding, modulo slight differences in what
2919 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2920static void
c19d1205 2921s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2922{
c19d1205
ZW
2923 char *name, delim;
2924
2925 name = input_line_pointer;
2926 delim = get_symbol_end ();
2927
2928 if (!strcasecmp (name, "unified"))
2929 unified_syntax = TRUE;
2930 else if (!strcasecmp (name, "divided"))
2931 unified_syntax = FALSE;
2932 else
2933 {
2934 as_bad (_("unrecognized syntax mode \"%s\""), name);
2935 return;
2936 }
2937 *input_line_pointer = delim;
b99bd4ef
NC
2938 demand_empty_rest_of_line ();
2939}
2940
c19d1205
ZW
2941/* Directives: sectioning and alignment. */
2942
2943/* Same as s_align_ptwo but align 0 => align 2. */
2944
b99bd4ef 2945static void
c19d1205 2946s_align (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2947{
a737bd4d 2948 int temp;
dce323d1 2949 bfd_boolean fill_p;
c19d1205
ZW
2950 long temp_fill;
2951 long max_alignment = 15;
b99bd4ef
NC
2952
2953 temp = get_absolute_expression ();
c19d1205
ZW
2954 if (temp > max_alignment)
2955 as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
2956 else if (temp < 0)
b99bd4ef 2957 {
c19d1205
ZW
2958 as_bad (_("alignment negative. 0 assumed."));
2959 temp = 0;
2960 }
b99bd4ef 2961
c19d1205
ZW
2962 if (*input_line_pointer == ',')
2963 {
2964 input_line_pointer++;
2965 temp_fill = get_absolute_expression ();
dce323d1 2966 fill_p = TRUE;
b99bd4ef 2967 }
c19d1205 2968 else
dce323d1
PB
2969 {
2970 fill_p = FALSE;
2971 temp_fill = 0;
2972 }
b99bd4ef 2973
c19d1205
ZW
2974 if (!temp)
2975 temp = 2;
b99bd4ef 2976
c19d1205
ZW
2977 /* Only make a frag if we HAVE to. */
2978 if (temp && !need_pass_2)
dce323d1
PB
2979 {
2980 if (!fill_p && subseg_text_p (now_seg))
2981 frag_align_code (temp, 0);
2982 else
2983 frag_align (temp, (int) temp_fill, 0);
2984 }
c19d1205
ZW
2985 demand_empty_rest_of_line ();
2986
2987 record_alignment (now_seg, temp);
b99bd4ef
NC
2988}
2989
c19d1205
ZW
2990static void
2991s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 2992{
c19d1205
ZW
2993 /* We don't support putting frags in the BSS segment, we fake it by
2994 marking in_bss, then looking at s_skip for clues. */
2995 subseg_set (bss_section, 0);
2996 demand_empty_rest_of_line ();
cd000bff
DJ
2997
2998#ifdef md_elf_section_change_hook
2999 md_elf_section_change_hook ();
3000#endif
c19d1205 3001}
b99bd4ef 3002
c19d1205
ZW
3003static void
3004s_even (int ignore ATTRIBUTE_UNUSED)
3005{
3006 /* Never make frag if expect extra pass. */
3007 if (!need_pass_2)
3008 frag_align (1, 0, 0);
b99bd4ef 3009
c19d1205 3010 record_alignment (now_seg, 1);
b99bd4ef 3011
c19d1205 3012 demand_empty_rest_of_line ();
b99bd4ef
NC
3013}
3014
c19d1205 3015/* Directives: Literal pools. */
a737bd4d 3016
c19d1205
ZW
3017static literal_pool *
3018find_literal_pool (void)
a737bd4d 3019{
c19d1205 3020 literal_pool * pool;
a737bd4d 3021
c19d1205 3022 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 3023 {
c19d1205
ZW
3024 if (pool->section == now_seg
3025 && pool->sub_section == now_subseg)
3026 break;
a737bd4d
NC
3027 }
3028
c19d1205 3029 return pool;
a737bd4d
NC
3030}
3031
c19d1205
ZW
3032static literal_pool *
3033find_or_make_literal_pool (void)
a737bd4d 3034{
c19d1205
ZW
3035 /* Next literal pool ID number. */
3036 static unsigned int latest_pool_num = 1;
3037 literal_pool * pool;
a737bd4d 3038
c19d1205 3039 pool = find_literal_pool ();
a737bd4d 3040
c19d1205 3041 if (pool == NULL)
a737bd4d 3042 {
c19d1205 3043 /* Create a new pool. */
21d799b5 3044 pool = (literal_pool *) xmalloc (sizeof (* pool));
c19d1205
ZW
3045 if (! pool)
3046 return NULL;
a737bd4d 3047
c19d1205
ZW
3048 pool->next_free_entry = 0;
3049 pool->section = now_seg;
3050 pool->sub_section = now_subseg;
3051 pool->next = list_of_pools;
3052 pool->symbol = NULL;
3053
3054 /* Add it to the list. */
3055 list_of_pools = pool;
a737bd4d 3056 }
a737bd4d 3057
c19d1205
ZW
3058 /* New pools, and emptied pools, will have a NULL symbol. */
3059 if (pool->symbol == NULL)
a737bd4d 3060 {
c19d1205
ZW
3061 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3062 (valueT) 0, &zero_address_frag);
3063 pool->id = latest_pool_num ++;
a737bd4d
NC
3064 }
3065
c19d1205
ZW
3066 /* Done. */
3067 return pool;
a737bd4d
NC
3068}
3069
c19d1205 3070/* Add the literal in the global 'inst'
5f4273c7 3071 structure to the relevant literal pool. */
b99bd4ef
NC
3072
3073static int
c19d1205 3074add_to_lit_pool (void)
b99bd4ef 3075{
c19d1205
ZW
3076 literal_pool * pool;
3077 unsigned int entry;
b99bd4ef 3078
c19d1205
ZW
3079 pool = find_or_make_literal_pool ();
3080
3081 /* Check if this literal value is already in the pool. */
3082 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 3083 {
c19d1205
ZW
3084 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3085 && (inst.reloc.exp.X_op == O_constant)
3086 && (pool->literals[entry].X_add_number
3087 == inst.reloc.exp.X_add_number)
3088 && (pool->literals[entry].X_unsigned
3089 == inst.reloc.exp.X_unsigned))
3090 break;
3091
3092 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3093 && (inst.reloc.exp.X_op == O_symbol)
3094 && (pool->literals[entry].X_add_number
3095 == inst.reloc.exp.X_add_number)
3096 && (pool->literals[entry].X_add_symbol
3097 == inst.reloc.exp.X_add_symbol)
3098 && (pool->literals[entry].X_op_symbol
3099 == inst.reloc.exp.X_op_symbol))
3100 break;
b99bd4ef
NC
3101 }
3102
c19d1205
ZW
3103 /* Do we need to create a new entry? */
3104 if (entry == pool->next_free_entry)
3105 {
3106 if (entry >= MAX_LITERAL_POOL_SIZE)
3107 {
3108 inst.error = _("literal pool overflow");
3109 return FAIL;
3110 }
3111
3112 pool->literals[entry] = inst.reloc.exp;
a8040cf2
NC
3113#ifdef OBJ_ELF
3114 /* PR ld/12974: Record the location of the first source line to reference
3115 this entry in the literal pool. If it turns out during linking that the
3116 symbol does not exist we will be able to give an accurate line number for
3117 the (first use of the) missing reference. */
3118 if (debug_type == DEBUG_DWARF2)
3119 dwarf2_where (pool->locs + entry);
3120#endif
c19d1205
ZW
3121 pool->next_free_entry += 1;
3122 }
b99bd4ef 3123
c19d1205
ZW
3124 inst.reloc.exp.X_op = O_symbol;
3125 inst.reloc.exp.X_add_number = ((int) entry) * 4;
3126 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 3127
c19d1205 3128 return SUCCESS;
b99bd4ef
NC
3129}
3130
c19d1205
ZW
3131/* Can't use symbol_new here, so have to create a symbol and then at
3132 a later date assign it a value. Thats what these functions do. */
e16bb312 3133
c19d1205
ZW
3134static void
3135symbol_locate (symbolS * symbolP,
3136 const char * name, /* It is copied, the caller can modify. */
3137 segT segment, /* Segment identifier (SEG_<something>). */
3138 valueT valu, /* Symbol value. */
3139 fragS * frag) /* Associated fragment. */
3140{
3141 unsigned int name_length;
3142 char * preserved_copy_of_name;
e16bb312 3143
c19d1205
ZW
3144 name_length = strlen (name) + 1; /* +1 for \0. */
3145 obstack_grow (&notes, name, name_length);
21d799b5 3146 preserved_copy_of_name = (char *) obstack_finish (&notes);
e16bb312 3147
c19d1205
ZW
3148#ifdef tc_canonicalize_symbol_name
3149 preserved_copy_of_name =
3150 tc_canonicalize_symbol_name (preserved_copy_of_name);
3151#endif
b99bd4ef 3152
c19d1205 3153 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 3154
c19d1205
ZW
3155 S_SET_SEGMENT (symbolP, segment);
3156 S_SET_VALUE (symbolP, valu);
3157 symbol_clear_list_pointers (symbolP);
b99bd4ef 3158
c19d1205 3159 symbol_set_frag (symbolP, frag);
b99bd4ef 3160
c19d1205
ZW
3161 /* Link to end of symbol chain. */
3162 {
3163 extern int symbol_table_frozen;
b99bd4ef 3164
c19d1205
ZW
3165 if (symbol_table_frozen)
3166 abort ();
3167 }
b99bd4ef 3168
c19d1205 3169 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 3170
c19d1205 3171 obj_symbol_new_hook (symbolP);
b99bd4ef 3172
c19d1205
ZW
3173#ifdef tc_symbol_new_hook
3174 tc_symbol_new_hook (symbolP);
3175#endif
3176
3177#ifdef DEBUG_SYMS
3178 verify_symbol_chain (symbol_rootP, symbol_lastP);
3179#endif /* DEBUG_SYMS */
b99bd4ef
NC
3180}
3181
b99bd4ef 3182
c19d1205
ZW
3183static void
3184s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3185{
c19d1205
ZW
3186 unsigned int entry;
3187 literal_pool * pool;
3188 char sym_name[20];
b99bd4ef 3189
c19d1205
ZW
3190 pool = find_literal_pool ();
3191 if (pool == NULL
3192 || pool->symbol == NULL
3193 || pool->next_free_entry == 0)
3194 return;
b99bd4ef 3195
c19d1205 3196 mapping_state (MAP_DATA);
b99bd4ef 3197
c19d1205
ZW
3198 /* Align pool as you have word accesses.
3199 Only make a frag if we have to. */
3200 if (!need_pass_2)
3201 frag_align (2, 0, 0);
b99bd4ef 3202
c19d1205 3203 record_alignment (now_seg, 2);
b99bd4ef 3204
c19d1205 3205 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 3206
c19d1205
ZW
3207 symbol_locate (pool->symbol, sym_name, now_seg,
3208 (valueT) frag_now_fix (), frag_now);
3209 symbol_table_insert (pool->symbol);
b99bd4ef 3210
c19d1205 3211 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 3212
c19d1205
ZW
3213#if defined OBJ_COFF || defined OBJ_ELF
3214 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3215#endif
6c43fab6 3216
c19d1205 3217 for (entry = 0; entry < pool->next_free_entry; entry ++)
a8040cf2
NC
3218 {
3219#ifdef OBJ_ELF
3220 if (debug_type == DEBUG_DWARF2)
3221 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3222#endif
3223 /* First output the expression in the instruction to the pool. */
3224 emit_expr (&(pool->literals[entry]), 4); /* .word */
3225 }
b99bd4ef 3226
c19d1205
ZW
3227 /* Mark the pool as empty. */
3228 pool->next_free_entry = 0;
3229 pool->symbol = NULL;
b99bd4ef
NC
3230}
3231
c19d1205
ZW
3232#ifdef OBJ_ELF
3233/* Forward declarations for functions below, in the MD interface
3234 section. */
3235static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3236static valueT create_unwind_entry (int);
3237static void start_unwind_section (const segT, int);
3238static void add_unwind_opcode (valueT, int);
3239static void flush_pending_unwind (void);
b99bd4ef 3240
c19d1205 3241/* Directives: Data. */
b99bd4ef 3242
c19d1205
ZW
3243static void
3244s_arm_elf_cons (int nbytes)
3245{
3246 expressionS exp;
b99bd4ef 3247
c19d1205
ZW
3248#ifdef md_flush_pending_output
3249 md_flush_pending_output ();
3250#endif
b99bd4ef 3251
c19d1205 3252 if (is_it_end_of_statement ())
b99bd4ef 3253 {
c19d1205
ZW
3254 demand_empty_rest_of_line ();
3255 return;
b99bd4ef
NC
3256 }
3257
c19d1205
ZW
3258#ifdef md_cons_align
3259 md_cons_align (nbytes);
3260#endif
b99bd4ef 3261
c19d1205
ZW
3262 mapping_state (MAP_DATA);
3263 do
b99bd4ef 3264 {
c19d1205
ZW
3265 int reloc;
3266 char *base = input_line_pointer;
b99bd4ef 3267
c19d1205 3268 expression (& exp);
b99bd4ef 3269
c19d1205
ZW
3270 if (exp.X_op != O_symbol)
3271 emit_expr (&exp, (unsigned int) nbytes);
3272 else
3273 {
3274 char *before_reloc = input_line_pointer;
3275 reloc = parse_reloc (&input_line_pointer);
3276 if (reloc == -1)
3277 {
3278 as_bad (_("unrecognized relocation suffix"));
3279 ignore_rest_of_line ();
3280 return;
3281 }
3282 else if (reloc == BFD_RELOC_UNUSED)
3283 emit_expr (&exp, (unsigned int) nbytes);
3284 else
3285 {
21d799b5 3286 reloc_howto_type *howto = (reloc_howto_type *)
477330fc
RM
3287 bfd_reloc_type_lookup (stdoutput,
3288 (bfd_reloc_code_real_type) reloc);
c19d1205 3289 int size = bfd_get_reloc_size (howto);
b99bd4ef 3290
2fc8bdac
ZW
3291 if (reloc == BFD_RELOC_ARM_PLT32)
3292 {
3293 as_bad (_("(plt) is only valid on branch targets"));
3294 reloc = BFD_RELOC_UNUSED;
3295 size = 0;
3296 }
3297
c19d1205 3298 if (size > nbytes)
2fc8bdac 3299 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
3300 howto->name, nbytes);
3301 else
3302 {
3303 /* We've parsed an expression stopping at O_symbol.
3304 But there may be more expression left now that we
3305 have parsed the relocation marker. Parse it again.
3306 XXX Surely there is a cleaner way to do this. */
3307 char *p = input_line_pointer;
3308 int offset;
21d799b5 3309 char *save_buf = (char *) alloca (input_line_pointer - base);
c19d1205
ZW
3310 memcpy (save_buf, base, input_line_pointer - base);
3311 memmove (base + (input_line_pointer - before_reloc),
3312 base, before_reloc - base);
3313
3314 input_line_pointer = base + (input_line_pointer-before_reloc);
3315 expression (&exp);
3316 memcpy (base, save_buf, p - base);
3317
3318 offset = nbytes - size;
3319 p = frag_more ((int) nbytes);
3320 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
21d799b5 3321 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
c19d1205
ZW
3322 }
3323 }
3324 }
b99bd4ef 3325 }
c19d1205 3326 while (*input_line_pointer++ == ',');
b99bd4ef 3327
c19d1205
ZW
3328 /* Put terminator back into stream. */
3329 input_line_pointer --;
3330 demand_empty_rest_of_line ();
b99bd4ef
NC
3331}
3332
c921be7d
NC
3333/* Emit an expression containing a 32-bit thumb instruction.
3334 Implementation based on put_thumb32_insn. */
3335
3336static void
3337emit_thumb32_expr (expressionS * exp)
3338{
3339 expressionS exp_high = *exp;
3340
3341 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3342 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3343 exp->X_add_number &= 0xffff;
3344 emit_expr (exp, (unsigned int) THUMB_SIZE);
3345}
3346
3347/* Guess the instruction size based on the opcode. */
3348
3349static int
3350thumb_insn_size (int opcode)
3351{
3352 if ((unsigned int) opcode < 0xe800u)
3353 return 2;
3354 else if ((unsigned int) opcode >= 0xe8000000u)
3355 return 4;
3356 else
3357 return 0;
3358}
3359
3360static bfd_boolean
3361emit_insn (expressionS *exp, int nbytes)
3362{
3363 int size = 0;
3364
3365 if (exp->X_op == O_constant)
3366 {
3367 size = nbytes;
3368
3369 if (size == 0)
3370 size = thumb_insn_size (exp->X_add_number);
3371
3372 if (size != 0)
3373 {
3374 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3375 {
3376 as_bad (_(".inst.n operand too big. "\
3377 "Use .inst.w instead"));
3378 size = 0;
3379 }
3380 else
3381 {
3382 if (now_it.state == AUTOMATIC_IT_BLOCK)
3383 set_it_insn_type_nonvoid (OUTSIDE_IT_INSN, 0);
3384 else
3385 set_it_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3386
3387 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3388 emit_thumb32_expr (exp);
3389 else
3390 emit_expr (exp, (unsigned int) size);
3391
3392 it_fsm_post_encode ();
3393 }
3394 }
3395 else
3396 as_bad (_("cannot determine Thumb instruction size. " \
3397 "Use .inst.n/.inst.w instead"));
3398 }
3399 else
3400 as_bad (_("constant expression required"));
3401
3402 return (size != 0);
3403}
3404
3405/* Like s_arm_elf_cons but do not use md_cons_align and
3406 set the mapping state to MAP_ARM/MAP_THUMB. */
3407
3408static void
3409s_arm_elf_inst (int nbytes)
3410{
3411 if (is_it_end_of_statement ())
3412 {
3413 demand_empty_rest_of_line ();
3414 return;
3415 }
3416
3417 /* Calling mapping_state () here will not change ARM/THUMB,
3418 but will ensure not to be in DATA state. */
3419
3420 if (thumb_mode)
3421 mapping_state (MAP_THUMB);
3422 else
3423 {
3424 if (nbytes != 0)
3425 {
3426 as_bad (_("width suffixes are invalid in ARM mode"));
3427 ignore_rest_of_line ();
3428 return;
3429 }
3430
3431 nbytes = 4;
3432
3433 mapping_state (MAP_ARM);
3434 }
3435
3436 do
3437 {
3438 expressionS exp;
3439
3440 expression (& exp);
3441
3442 if (! emit_insn (& exp, nbytes))
3443 {
3444 ignore_rest_of_line ();
3445 return;
3446 }
3447 }
3448 while (*input_line_pointer++ == ',');
3449
3450 /* Put terminator back into stream. */
3451 input_line_pointer --;
3452 demand_empty_rest_of_line ();
3453}
b99bd4ef 3454
c19d1205 3455/* Parse a .rel31 directive. */
b99bd4ef 3456
c19d1205
ZW
3457static void
3458s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3459{
3460 expressionS exp;
3461 char *p;
3462 valueT highbit;
b99bd4ef 3463
c19d1205
ZW
3464 highbit = 0;
3465 if (*input_line_pointer == '1')
3466 highbit = 0x80000000;
3467 else if (*input_line_pointer != '0')
3468 as_bad (_("expected 0 or 1"));
b99bd4ef 3469
c19d1205
ZW
3470 input_line_pointer++;
3471 if (*input_line_pointer != ',')
3472 as_bad (_("missing comma"));
3473 input_line_pointer++;
b99bd4ef 3474
c19d1205
ZW
3475#ifdef md_flush_pending_output
3476 md_flush_pending_output ();
3477#endif
b99bd4ef 3478
c19d1205
ZW
3479#ifdef md_cons_align
3480 md_cons_align (4);
3481#endif
b99bd4ef 3482
c19d1205 3483 mapping_state (MAP_DATA);
b99bd4ef 3484
c19d1205 3485 expression (&exp);
b99bd4ef 3486
c19d1205
ZW
3487 p = frag_more (4);
3488 md_number_to_chars (p, highbit, 4);
3489 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
3490 BFD_RELOC_ARM_PREL31);
b99bd4ef 3491
c19d1205 3492 demand_empty_rest_of_line ();
b99bd4ef
NC
3493}
3494
c19d1205 3495/* Directives: AEABI stack-unwind tables. */
b99bd4ef 3496
c19d1205 3497/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3498
c19d1205
ZW
3499static void
3500s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3501{
3502 demand_empty_rest_of_line ();
921e5f0a
PB
3503 if (unwind.proc_start)
3504 {
c921be7d 3505 as_bad (_("duplicate .fnstart directive"));
921e5f0a
PB
3506 return;
3507 }
3508
c19d1205
ZW
3509 /* Mark the start of the function. */
3510 unwind.proc_start = expr_build_dot ();
b99bd4ef 3511
c19d1205
ZW
3512 /* Reset the rest of the unwind info. */
3513 unwind.opcode_count = 0;
3514 unwind.table_entry = NULL;
3515 unwind.personality_routine = NULL;
3516 unwind.personality_index = -1;
3517 unwind.frame_size = 0;
3518 unwind.fp_offset = 0;
fdfde340 3519 unwind.fp_reg = REG_SP;
c19d1205
ZW
3520 unwind.fp_used = 0;
3521 unwind.sp_restored = 0;
3522}
b99bd4ef 3523
b99bd4ef 3524
c19d1205
ZW
3525/* Parse a handlerdata directive. Creates the exception handling table entry
3526 for the function. */
b99bd4ef 3527
c19d1205
ZW
3528static void
3529s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3530{
3531 demand_empty_rest_of_line ();
921e5f0a 3532 if (!unwind.proc_start)
c921be7d 3533 as_bad (MISSING_FNSTART);
921e5f0a 3534
c19d1205 3535 if (unwind.table_entry)
6decc662 3536 as_bad (_("duplicate .handlerdata directive"));
f02232aa 3537
c19d1205
ZW
3538 create_unwind_entry (1);
3539}
a737bd4d 3540
c19d1205 3541/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3542
c19d1205
ZW
3543static void
3544s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3545{
3546 long where;
3547 char *ptr;
3548 valueT val;
940b5ce0 3549 unsigned int marked_pr_dependency;
f02232aa 3550
c19d1205 3551 demand_empty_rest_of_line ();
f02232aa 3552
921e5f0a
PB
3553 if (!unwind.proc_start)
3554 {
c921be7d 3555 as_bad (_(".fnend directive without .fnstart"));
921e5f0a
PB
3556 return;
3557 }
3558
c19d1205
ZW
3559 /* Add eh table entry. */
3560 if (unwind.table_entry == NULL)
3561 val = create_unwind_entry (0);
3562 else
3563 val = 0;
f02232aa 3564
c19d1205
ZW
3565 /* Add index table entry. This is two words. */
3566 start_unwind_section (unwind.saved_seg, 1);
3567 frag_align (2, 0, 0);
3568 record_alignment (now_seg, 2);
b99bd4ef 3569
c19d1205 3570 ptr = frag_more (8);
5011093d 3571 memset (ptr, 0, 8);
c19d1205 3572 where = frag_now_fix () - 8;
f02232aa 3573
c19d1205
ZW
3574 /* Self relative offset of the function start. */
3575 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3576 BFD_RELOC_ARM_PREL31);
f02232aa 3577
c19d1205
ZW
3578 /* Indicate dependency on EHABI-defined personality routines to the
3579 linker, if it hasn't been done already. */
940b5ce0
DJ
3580 marked_pr_dependency
3581 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
c19d1205
ZW
3582 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3583 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3584 {
5f4273c7
NC
3585 static const char *const name[] =
3586 {
3587 "__aeabi_unwind_cpp_pr0",
3588 "__aeabi_unwind_cpp_pr1",
3589 "__aeabi_unwind_cpp_pr2"
3590 };
c19d1205
ZW
3591 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3592 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
c19d1205 3593 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
940b5ce0 3594 |= 1 << unwind.personality_index;
c19d1205 3595 }
f02232aa 3596
c19d1205
ZW
3597 if (val)
3598 /* Inline exception table entry. */
3599 md_number_to_chars (ptr + 4, val, 4);
3600 else
3601 /* Self relative offset of the table entry. */
3602 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3603 BFD_RELOC_ARM_PREL31);
f02232aa 3604
c19d1205
ZW
3605 /* Restore the original section. */
3606 subseg_set (unwind.saved_seg, unwind.saved_subseg);
921e5f0a
PB
3607
3608 unwind.proc_start = NULL;
c19d1205 3609}
f02232aa 3610
f02232aa 3611
c19d1205 3612/* Parse an unwind_cantunwind directive. */
b99bd4ef 3613
c19d1205
ZW
3614static void
3615s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3616{
3617 demand_empty_rest_of_line ();
921e5f0a 3618 if (!unwind.proc_start)
c921be7d 3619 as_bad (MISSING_FNSTART);
921e5f0a 3620
c19d1205
ZW
3621 if (unwind.personality_routine || unwind.personality_index != -1)
3622 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3623
c19d1205
ZW
3624 unwind.personality_index = -2;
3625}
b99bd4ef 3626
b99bd4ef 3627
c19d1205 3628/* Parse a personalityindex directive. */
b99bd4ef 3629
c19d1205
ZW
3630static void
3631s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3632{
3633 expressionS exp;
b99bd4ef 3634
921e5f0a 3635 if (!unwind.proc_start)
c921be7d 3636 as_bad (MISSING_FNSTART);
921e5f0a 3637
c19d1205
ZW
3638 if (unwind.personality_routine || unwind.personality_index != -1)
3639 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3640
c19d1205 3641 expression (&exp);
b99bd4ef 3642
c19d1205
ZW
3643 if (exp.X_op != O_constant
3644 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3645 {
c19d1205
ZW
3646 as_bad (_("bad personality routine number"));
3647 ignore_rest_of_line ();
3648 return;
b99bd4ef
NC
3649 }
3650
c19d1205 3651 unwind.personality_index = exp.X_add_number;
b99bd4ef 3652
c19d1205
ZW
3653 demand_empty_rest_of_line ();
3654}
e16bb312 3655
e16bb312 3656
c19d1205 3657/* Parse a personality directive. */
e16bb312 3658
c19d1205
ZW
3659static void
3660s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3661{
3662 char *name, *p, c;
a737bd4d 3663
921e5f0a 3664 if (!unwind.proc_start)
c921be7d 3665 as_bad (MISSING_FNSTART);
921e5f0a 3666
c19d1205
ZW
3667 if (unwind.personality_routine || unwind.personality_index != -1)
3668 as_bad (_("duplicate .personality directive"));
a737bd4d 3669
c19d1205
ZW
3670 name = input_line_pointer;
3671 c = get_symbol_end ();
3672 p = input_line_pointer;
3673 unwind.personality_routine = symbol_find_or_make (name);
3674 *p = c;
3675 demand_empty_rest_of_line ();
3676}
e16bb312 3677
e16bb312 3678
c19d1205 3679/* Parse a directive saving core registers. */
e16bb312 3680
c19d1205
ZW
3681static void
3682s_arm_unwind_save_core (void)
e16bb312 3683{
c19d1205
ZW
3684 valueT op;
3685 long range;
3686 int n;
e16bb312 3687
c19d1205
ZW
3688 range = parse_reg_list (&input_line_pointer);
3689 if (range == FAIL)
e16bb312 3690 {
c19d1205
ZW
3691 as_bad (_("expected register list"));
3692 ignore_rest_of_line ();
3693 return;
3694 }
e16bb312 3695
c19d1205 3696 demand_empty_rest_of_line ();
e16bb312 3697
c19d1205
ZW
3698 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3699 into .unwind_save {..., sp...}. We aren't bothered about the value of
3700 ip because it is clobbered by calls. */
3701 if (unwind.sp_restored && unwind.fp_reg == 12
3702 && (range & 0x3000) == 0x1000)
3703 {
3704 unwind.opcode_count--;
3705 unwind.sp_restored = 0;
3706 range = (range | 0x2000) & ~0x1000;
3707 unwind.pending_offset = 0;
3708 }
e16bb312 3709
01ae4198
DJ
3710 /* Pop r4-r15. */
3711 if (range & 0xfff0)
c19d1205 3712 {
01ae4198
DJ
3713 /* See if we can use the short opcodes. These pop a block of up to 8
3714 registers starting with r4, plus maybe r14. */
3715 for (n = 0; n < 8; n++)
3716 {
3717 /* Break at the first non-saved register. */
3718 if ((range & (1 << (n + 4))) == 0)
3719 break;
3720 }
3721 /* See if there are any other bits set. */
3722 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3723 {
3724 /* Use the long form. */
3725 op = 0x8000 | ((range >> 4) & 0xfff);
3726 add_unwind_opcode (op, 2);
3727 }
0dd132b6 3728 else
01ae4198
DJ
3729 {
3730 /* Use the short form. */
3731 if (range & 0x4000)
3732 op = 0xa8; /* Pop r14. */
3733 else
3734 op = 0xa0; /* Do not pop r14. */
3735 op |= (n - 1);
3736 add_unwind_opcode (op, 1);
3737 }
c19d1205 3738 }
0dd132b6 3739
c19d1205
ZW
3740 /* Pop r0-r3. */
3741 if (range & 0xf)
3742 {
3743 op = 0xb100 | (range & 0xf);
3744 add_unwind_opcode (op, 2);
0dd132b6
NC
3745 }
3746
c19d1205
ZW
3747 /* Record the number of bytes pushed. */
3748 for (n = 0; n < 16; n++)
3749 {
3750 if (range & (1 << n))
3751 unwind.frame_size += 4;
3752 }
0dd132b6
NC
3753}
3754
c19d1205
ZW
3755
3756/* Parse a directive saving FPA registers. */
b99bd4ef
NC
3757
3758static void
c19d1205 3759s_arm_unwind_save_fpa (int reg)
b99bd4ef 3760{
c19d1205
ZW
3761 expressionS exp;
3762 int num_regs;
3763 valueT op;
b99bd4ef 3764
c19d1205
ZW
3765 /* Get Number of registers to transfer. */
3766 if (skip_past_comma (&input_line_pointer) != FAIL)
3767 expression (&exp);
3768 else
3769 exp.X_op = O_illegal;
b99bd4ef 3770
c19d1205 3771 if (exp.X_op != O_constant)
b99bd4ef 3772 {
c19d1205
ZW
3773 as_bad (_("expected , <constant>"));
3774 ignore_rest_of_line ();
b99bd4ef
NC
3775 return;
3776 }
3777
c19d1205
ZW
3778 num_regs = exp.X_add_number;
3779
3780 if (num_regs < 1 || num_regs > 4)
b99bd4ef 3781 {
c19d1205
ZW
3782 as_bad (_("number of registers must be in the range [1:4]"));
3783 ignore_rest_of_line ();
b99bd4ef
NC
3784 return;
3785 }
3786
c19d1205 3787 demand_empty_rest_of_line ();
b99bd4ef 3788
c19d1205
ZW
3789 if (reg == 4)
3790 {
3791 /* Short form. */
3792 op = 0xb4 | (num_regs - 1);
3793 add_unwind_opcode (op, 1);
3794 }
b99bd4ef
NC
3795 else
3796 {
c19d1205
ZW
3797 /* Long form. */
3798 op = 0xc800 | (reg << 4) | (num_regs - 1);
3799 add_unwind_opcode (op, 2);
b99bd4ef 3800 }
c19d1205 3801 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
3802}
3803
c19d1205 3804
fa073d69
MS
3805/* Parse a directive saving VFP registers for ARMv6 and above. */
3806
3807static void
3808s_arm_unwind_save_vfp_armv6 (void)
3809{
3810 int count;
3811 unsigned int start;
3812 valueT op;
3813 int num_vfpv3_regs = 0;
3814 int num_regs_below_16;
3815
3816 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
3817 if (count == FAIL)
3818 {
3819 as_bad (_("expected register list"));
3820 ignore_rest_of_line ();
3821 return;
3822 }
3823
3824 demand_empty_rest_of_line ();
3825
3826 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
3827 than FSTMX/FLDMX-style ones). */
3828
3829 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
3830 if (start >= 16)
3831 num_vfpv3_regs = count;
3832 else if (start + count > 16)
3833 num_vfpv3_regs = start + count - 16;
3834
3835 if (num_vfpv3_regs > 0)
3836 {
3837 int start_offset = start > 16 ? start - 16 : 0;
3838 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
3839 add_unwind_opcode (op, 2);
3840 }
3841
3842 /* Generate opcode for registers numbered in the range 0 .. 15. */
3843 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
9c2799c2 3844 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
fa073d69
MS
3845 if (num_regs_below_16 > 0)
3846 {
3847 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
3848 add_unwind_opcode (op, 2);
3849 }
3850
3851 unwind.frame_size += count * 8;
3852}
3853
3854
3855/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
3856
3857static void
c19d1205 3858s_arm_unwind_save_vfp (void)
b99bd4ef 3859{
c19d1205 3860 int count;
ca3f61f7 3861 unsigned int reg;
c19d1205 3862 valueT op;
b99bd4ef 3863
5287ad62 3864 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 3865 if (count == FAIL)
b99bd4ef 3866 {
c19d1205
ZW
3867 as_bad (_("expected register list"));
3868 ignore_rest_of_line ();
b99bd4ef
NC
3869 return;
3870 }
3871
c19d1205 3872 demand_empty_rest_of_line ();
b99bd4ef 3873
c19d1205 3874 if (reg == 8)
b99bd4ef 3875 {
c19d1205
ZW
3876 /* Short form. */
3877 op = 0xb8 | (count - 1);
3878 add_unwind_opcode (op, 1);
b99bd4ef 3879 }
c19d1205 3880 else
b99bd4ef 3881 {
c19d1205
ZW
3882 /* Long form. */
3883 op = 0xb300 | (reg << 4) | (count - 1);
3884 add_unwind_opcode (op, 2);
b99bd4ef 3885 }
c19d1205
ZW
3886 unwind.frame_size += count * 8 + 4;
3887}
b99bd4ef 3888
b99bd4ef 3889
c19d1205
ZW
3890/* Parse a directive saving iWMMXt data registers. */
3891
3892static void
3893s_arm_unwind_save_mmxwr (void)
3894{
3895 int reg;
3896 int hi_reg;
3897 int i;
3898 unsigned mask = 0;
3899 valueT op;
b99bd4ef 3900
c19d1205
ZW
3901 if (*input_line_pointer == '{')
3902 input_line_pointer++;
b99bd4ef 3903
c19d1205 3904 do
b99bd4ef 3905 {
dcbf9037 3906 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 3907
c19d1205 3908 if (reg == FAIL)
b99bd4ef 3909 {
9b7132d3 3910 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205 3911 goto error;
b99bd4ef
NC
3912 }
3913
c19d1205
ZW
3914 if (mask >> reg)
3915 as_tsktsk (_("register list not in ascending order"));
3916 mask |= 1 << reg;
b99bd4ef 3917
c19d1205
ZW
3918 if (*input_line_pointer == '-')
3919 {
3920 input_line_pointer++;
dcbf9037 3921 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
3922 if (hi_reg == FAIL)
3923 {
9b7132d3 3924 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205
ZW
3925 goto error;
3926 }
3927 else if (reg >= hi_reg)
3928 {
3929 as_bad (_("bad register range"));
3930 goto error;
3931 }
3932 for (; reg < hi_reg; reg++)
3933 mask |= 1 << reg;
3934 }
3935 }
3936 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 3937
d996d970 3938 skip_past_char (&input_line_pointer, '}');
b99bd4ef 3939
c19d1205 3940 demand_empty_rest_of_line ();
b99bd4ef 3941
708587a4 3942 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
3943 the list. */
3944 flush_pending_unwind ();
b99bd4ef 3945
c19d1205 3946 for (i = 0; i < 16; i++)
b99bd4ef 3947 {
c19d1205
ZW
3948 if (mask & (1 << i))
3949 unwind.frame_size += 8;
b99bd4ef
NC
3950 }
3951
c19d1205
ZW
3952 /* Attempt to combine with a previous opcode. We do this because gcc
3953 likes to output separate unwind directives for a single block of
3954 registers. */
3955 if (unwind.opcode_count > 0)
b99bd4ef 3956 {
c19d1205
ZW
3957 i = unwind.opcodes[unwind.opcode_count - 1];
3958 if ((i & 0xf8) == 0xc0)
3959 {
3960 i &= 7;
3961 /* Only merge if the blocks are contiguous. */
3962 if (i < 6)
3963 {
3964 if ((mask & 0xfe00) == (1 << 9))
3965 {
3966 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
3967 unwind.opcode_count--;
3968 }
3969 }
3970 else if (i == 6 && unwind.opcode_count >= 2)
3971 {
3972 i = unwind.opcodes[unwind.opcode_count - 2];
3973 reg = i >> 4;
3974 i &= 0xf;
b99bd4ef 3975
c19d1205
ZW
3976 op = 0xffff << (reg - 1);
3977 if (reg > 0
87a1fd79 3978 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
3979 {
3980 op = (1 << (reg + i + 1)) - 1;
3981 op &= ~((1 << reg) - 1);
3982 mask |= op;
3983 unwind.opcode_count -= 2;
3984 }
3985 }
3986 }
b99bd4ef
NC
3987 }
3988
c19d1205
ZW
3989 hi_reg = 15;
3990 /* We want to generate opcodes in the order the registers have been
3991 saved, ie. descending order. */
3992 for (reg = 15; reg >= -1; reg--)
b99bd4ef 3993 {
c19d1205
ZW
3994 /* Save registers in blocks. */
3995 if (reg < 0
3996 || !(mask & (1 << reg)))
3997 {
3998 /* We found an unsaved reg. Generate opcodes to save the
5f4273c7 3999 preceding block. */
c19d1205
ZW
4000 if (reg != hi_reg)
4001 {
4002 if (reg == 9)
4003 {
4004 /* Short form. */
4005 op = 0xc0 | (hi_reg - 10);
4006 add_unwind_opcode (op, 1);
4007 }
4008 else
4009 {
4010 /* Long form. */
4011 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4012 add_unwind_opcode (op, 2);
4013 }
4014 }
4015 hi_reg = reg - 1;
4016 }
b99bd4ef
NC
4017 }
4018
c19d1205
ZW
4019 return;
4020error:
4021 ignore_rest_of_line ();
b99bd4ef
NC
4022}
4023
4024static void
c19d1205 4025s_arm_unwind_save_mmxwcg (void)
b99bd4ef 4026{
c19d1205
ZW
4027 int reg;
4028 int hi_reg;
4029 unsigned mask = 0;
4030 valueT op;
b99bd4ef 4031
c19d1205
ZW
4032 if (*input_line_pointer == '{')
4033 input_line_pointer++;
b99bd4ef 4034
477330fc
RM
4035 skip_whitespace (input_line_pointer);
4036
c19d1205 4037 do
b99bd4ef 4038 {
dcbf9037 4039 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 4040
c19d1205
ZW
4041 if (reg == FAIL)
4042 {
9b7132d3 4043 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4044 goto error;
4045 }
b99bd4ef 4046
c19d1205
ZW
4047 reg -= 8;
4048 if (mask >> reg)
4049 as_tsktsk (_("register list not in ascending order"));
4050 mask |= 1 << reg;
b99bd4ef 4051
c19d1205
ZW
4052 if (*input_line_pointer == '-')
4053 {
4054 input_line_pointer++;
dcbf9037 4055 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
4056 if (hi_reg == FAIL)
4057 {
9b7132d3 4058 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4059 goto error;
4060 }
4061 else if (reg >= hi_reg)
4062 {
4063 as_bad (_("bad register range"));
4064 goto error;
4065 }
4066 for (; reg < hi_reg; reg++)
4067 mask |= 1 << reg;
4068 }
b99bd4ef 4069 }
c19d1205 4070 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4071
d996d970 4072 skip_past_char (&input_line_pointer, '}');
b99bd4ef 4073
c19d1205
ZW
4074 demand_empty_rest_of_line ();
4075
708587a4 4076 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4077 the list. */
4078 flush_pending_unwind ();
b99bd4ef 4079
c19d1205 4080 for (reg = 0; reg < 16; reg++)
b99bd4ef 4081 {
c19d1205
ZW
4082 if (mask & (1 << reg))
4083 unwind.frame_size += 4;
b99bd4ef 4084 }
c19d1205
ZW
4085 op = 0xc700 | mask;
4086 add_unwind_opcode (op, 2);
4087 return;
4088error:
4089 ignore_rest_of_line ();
b99bd4ef
NC
4090}
4091
c19d1205 4092
fa073d69
MS
4093/* Parse an unwind_save directive.
4094 If the argument is non-zero, this is a .vsave directive. */
c19d1205 4095
b99bd4ef 4096static void
fa073d69 4097s_arm_unwind_save (int arch_v6)
b99bd4ef 4098{
c19d1205
ZW
4099 char *peek;
4100 struct reg_entry *reg;
4101 bfd_boolean had_brace = FALSE;
b99bd4ef 4102
921e5f0a 4103 if (!unwind.proc_start)
c921be7d 4104 as_bad (MISSING_FNSTART);
921e5f0a 4105
c19d1205
ZW
4106 /* Figure out what sort of save we have. */
4107 peek = input_line_pointer;
b99bd4ef 4108
c19d1205 4109 if (*peek == '{')
b99bd4ef 4110 {
c19d1205
ZW
4111 had_brace = TRUE;
4112 peek++;
b99bd4ef
NC
4113 }
4114
c19d1205 4115 reg = arm_reg_parse_multi (&peek);
b99bd4ef 4116
c19d1205 4117 if (!reg)
b99bd4ef 4118 {
c19d1205
ZW
4119 as_bad (_("register expected"));
4120 ignore_rest_of_line ();
b99bd4ef
NC
4121 return;
4122 }
4123
c19d1205 4124 switch (reg->type)
b99bd4ef 4125 {
c19d1205
ZW
4126 case REG_TYPE_FN:
4127 if (had_brace)
4128 {
4129 as_bad (_("FPA .unwind_save does not take a register list"));
4130 ignore_rest_of_line ();
4131 return;
4132 }
93ac2687 4133 input_line_pointer = peek;
c19d1205 4134 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 4135 return;
c19d1205
ZW
4136
4137 case REG_TYPE_RN: s_arm_unwind_save_core (); return;
fa073d69
MS
4138 case REG_TYPE_VFD:
4139 if (arch_v6)
477330fc 4140 s_arm_unwind_save_vfp_armv6 ();
fa073d69 4141 else
477330fc 4142 s_arm_unwind_save_vfp ();
fa073d69 4143 return;
c19d1205
ZW
4144 case REG_TYPE_MMXWR: s_arm_unwind_save_mmxwr (); return;
4145 case REG_TYPE_MMXWCG: s_arm_unwind_save_mmxwcg (); return;
4146
4147 default:
4148 as_bad (_(".unwind_save does not support this kind of register"));
4149 ignore_rest_of_line ();
b99bd4ef 4150 }
c19d1205 4151}
b99bd4ef 4152
b99bd4ef 4153
c19d1205
ZW
4154/* Parse an unwind_movsp directive. */
4155
4156static void
4157s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4158{
4159 int reg;
4160 valueT op;
4fa3602b 4161 int offset;
c19d1205 4162
921e5f0a 4163 if (!unwind.proc_start)
c921be7d 4164 as_bad (MISSING_FNSTART);
921e5f0a 4165
dcbf9037 4166 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 4167 if (reg == FAIL)
b99bd4ef 4168 {
9b7132d3 4169 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
c19d1205 4170 ignore_rest_of_line ();
b99bd4ef
NC
4171 return;
4172 }
4fa3602b
PB
4173
4174 /* Optional constant. */
4175 if (skip_past_comma (&input_line_pointer) != FAIL)
4176 {
4177 if (immediate_for_directive (&offset) == FAIL)
4178 return;
4179 }
4180 else
4181 offset = 0;
4182
c19d1205 4183 demand_empty_rest_of_line ();
b99bd4ef 4184
c19d1205 4185 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 4186 {
c19d1205 4187 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
4188 return;
4189 }
4190
c19d1205
ZW
4191 if (unwind.fp_reg != REG_SP)
4192 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 4193
c19d1205
ZW
4194 /* Generate opcode to restore the value. */
4195 op = 0x90 | reg;
4196 add_unwind_opcode (op, 1);
4197
4198 /* Record the information for later. */
4199 unwind.fp_reg = reg;
4fa3602b 4200 unwind.fp_offset = unwind.frame_size - offset;
c19d1205 4201 unwind.sp_restored = 1;
b05fe5cf
ZW
4202}
4203
c19d1205
ZW
4204/* Parse an unwind_pad directive. */
4205
b05fe5cf 4206static void
c19d1205 4207s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 4208{
c19d1205 4209 int offset;
b05fe5cf 4210
921e5f0a 4211 if (!unwind.proc_start)
c921be7d 4212 as_bad (MISSING_FNSTART);
921e5f0a 4213
c19d1205
ZW
4214 if (immediate_for_directive (&offset) == FAIL)
4215 return;
b99bd4ef 4216
c19d1205
ZW
4217 if (offset & 3)
4218 {
4219 as_bad (_("stack increment must be multiple of 4"));
4220 ignore_rest_of_line ();
4221 return;
4222 }
b99bd4ef 4223
c19d1205
ZW
4224 /* Don't generate any opcodes, just record the details for later. */
4225 unwind.frame_size += offset;
4226 unwind.pending_offset += offset;
4227
4228 demand_empty_rest_of_line ();
4229}
4230
4231/* Parse an unwind_setfp directive. */
4232
4233static void
4234s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 4235{
c19d1205
ZW
4236 int sp_reg;
4237 int fp_reg;
4238 int offset;
4239
921e5f0a 4240 if (!unwind.proc_start)
c921be7d 4241 as_bad (MISSING_FNSTART);
921e5f0a 4242
dcbf9037 4243 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
4244 if (skip_past_comma (&input_line_pointer) == FAIL)
4245 sp_reg = FAIL;
4246 else
dcbf9037 4247 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 4248
c19d1205
ZW
4249 if (fp_reg == FAIL || sp_reg == FAIL)
4250 {
4251 as_bad (_("expected <reg>, <reg>"));
4252 ignore_rest_of_line ();
4253 return;
4254 }
b99bd4ef 4255
c19d1205
ZW
4256 /* Optional constant. */
4257 if (skip_past_comma (&input_line_pointer) != FAIL)
4258 {
4259 if (immediate_for_directive (&offset) == FAIL)
4260 return;
4261 }
4262 else
4263 offset = 0;
a737bd4d 4264
c19d1205 4265 demand_empty_rest_of_line ();
a737bd4d 4266
fdfde340 4267 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
a737bd4d 4268 {
c19d1205
ZW
4269 as_bad (_("register must be either sp or set by a previous"
4270 "unwind_movsp directive"));
4271 return;
a737bd4d
NC
4272 }
4273
c19d1205
ZW
4274 /* Don't generate any opcodes, just record the information for later. */
4275 unwind.fp_reg = fp_reg;
4276 unwind.fp_used = 1;
fdfde340 4277 if (sp_reg == REG_SP)
c19d1205
ZW
4278 unwind.fp_offset = unwind.frame_size - offset;
4279 else
4280 unwind.fp_offset -= offset;
a737bd4d
NC
4281}
4282
c19d1205
ZW
4283/* Parse an unwind_raw directive. */
4284
4285static void
4286s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 4287{
c19d1205 4288 expressionS exp;
708587a4 4289 /* This is an arbitrary limit. */
c19d1205
ZW
4290 unsigned char op[16];
4291 int count;
a737bd4d 4292
921e5f0a 4293 if (!unwind.proc_start)
c921be7d 4294 as_bad (MISSING_FNSTART);
921e5f0a 4295
c19d1205
ZW
4296 expression (&exp);
4297 if (exp.X_op == O_constant
4298 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 4299 {
c19d1205
ZW
4300 unwind.frame_size += exp.X_add_number;
4301 expression (&exp);
4302 }
4303 else
4304 exp.X_op = O_illegal;
a737bd4d 4305
c19d1205
ZW
4306 if (exp.X_op != O_constant)
4307 {
4308 as_bad (_("expected <offset>, <opcode>"));
4309 ignore_rest_of_line ();
4310 return;
4311 }
a737bd4d 4312
c19d1205 4313 count = 0;
a737bd4d 4314
c19d1205
ZW
4315 /* Parse the opcode. */
4316 for (;;)
4317 {
4318 if (count >= 16)
4319 {
4320 as_bad (_("unwind opcode too long"));
4321 ignore_rest_of_line ();
a737bd4d 4322 }
c19d1205 4323 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 4324 {
c19d1205
ZW
4325 as_bad (_("invalid unwind opcode"));
4326 ignore_rest_of_line ();
4327 return;
a737bd4d 4328 }
c19d1205 4329 op[count++] = exp.X_add_number;
a737bd4d 4330
c19d1205
ZW
4331 /* Parse the next byte. */
4332 if (skip_past_comma (&input_line_pointer) == FAIL)
4333 break;
a737bd4d 4334
c19d1205
ZW
4335 expression (&exp);
4336 }
b99bd4ef 4337
c19d1205
ZW
4338 /* Add the opcode bytes in reverse order. */
4339 while (count--)
4340 add_unwind_opcode (op[count], 1);
b99bd4ef 4341
c19d1205 4342 demand_empty_rest_of_line ();
b99bd4ef 4343}
ee065d83
PB
4344
4345
4346/* Parse a .eabi_attribute directive. */
4347
4348static void
4349s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4350{
0420f52b 4351 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
ee3c0378
AS
4352
4353 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4354 attributes_set_explicitly[tag] = 1;
ee065d83
PB
4355}
4356
0855e32b
NS
4357/* Emit a tls fix for the symbol. */
4358
4359static void
4360s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4361{
4362 char *p;
4363 expressionS exp;
4364#ifdef md_flush_pending_output
4365 md_flush_pending_output ();
4366#endif
4367
4368#ifdef md_cons_align
4369 md_cons_align (4);
4370#endif
4371
4372 /* Since we're just labelling the code, there's no need to define a
4373 mapping symbol. */
4374 expression (&exp);
4375 p = obstack_next_free (&frchain_now->frch_obstack);
4376 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4377 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4378 : BFD_RELOC_ARM_TLS_DESCSEQ);
4379}
cdf9ccec 4380#endif /* OBJ_ELF */
0855e32b 4381
ee065d83 4382static void s_arm_arch (int);
7a1d4c38 4383static void s_arm_object_arch (int);
ee065d83
PB
4384static void s_arm_cpu (int);
4385static void s_arm_fpu (int);
69133863 4386static void s_arm_arch_extension (int);
b99bd4ef 4387
f0927246
NC
4388#ifdef TE_PE
4389
4390static void
5f4273c7 4391pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
f0927246
NC
4392{
4393 expressionS exp;
4394
4395 do
4396 {
4397 expression (&exp);
4398 if (exp.X_op == O_symbol)
4399 exp.X_op = O_secrel;
4400
4401 emit_expr (&exp, 4);
4402 }
4403 while (*input_line_pointer++ == ',');
4404
4405 input_line_pointer--;
4406 demand_empty_rest_of_line ();
4407}
4408#endif /* TE_PE */
4409
c19d1205
ZW
4410/* This table describes all the machine specific pseudo-ops the assembler
4411 has to support. The fields are:
4412 pseudo-op name without dot
4413 function to call to execute this pseudo-op
4414 Integer arg to pass to the function. */
b99bd4ef 4415
c19d1205 4416const pseudo_typeS md_pseudo_table[] =
b99bd4ef 4417{
c19d1205
ZW
4418 /* Never called because '.req' does not start a line. */
4419 { "req", s_req, 0 },
dcbf9037
JB
4420 /* Following two are likewise never called. */
4421 { "dn", s_dn, 0 },
4422 { "qn", s_qn, 0 },
c19d1205
ZW
4423 { "unreq", s_unreq, 0 },
4424 { "bss", s_bss, 0 },
4425 { "align", s_align, 0 },
4426 { "arm", s_arm, 0 },
4427 { "thumb", s_thumb, 0 },
4428 { "code", s_code, 0 },
4429 { "force_thumb", s_force_thumb, 0 },
4430 { "thumb_func", s_thumb_func, 0 },
4431 { "thumb_set", s_thumb_set, 0 },
4432 { "even", s_even, 0 },
4433 { "ltorg", s_ltorg, 0 },
4434 { "pool", s_ltorg, 0 },
4435 { "syntax", s_syntax, 0 },
8463be01
PB
4436 { "cpu", s_arm_cpu, 0 },
4437 { "arch", s_arm_arch, 0 },
7a1d4c38 4438 { "object_arch", s_arm_object_arch, 0 },
8463be01 4439 { "fpu", s_arm_fpu, 0 },
69133863 4440 { "arch_extension", s_arm_arch_extension, 0 },
c19d1205 4441#ifdef OBJ_ELF
c921be7d
NC
4442 { "word", s_arm_elf_cons, 4 },
4443 { "long", s_arm_elf_cons, 4 },
4444 { "inst.n", s_arm_elf_inst, 2 },
4445 { "inst.w", s_arm_elf_inst, 4 },
4446 { "inst", s_arm_elf_inst, 0 },
4447 { "rel31", s_arm_rel31, 0 },
c19d1205
ZW
4448 { "fnstart", s_arm_unwind_fnstart, 0 },
4449 { "fnend", s_arm_unwind_fnend, 0 },
4450 { "cantunwind", s_arm_unwind_cantunwind, 0 },
4451 { "personality", s_arm_unwind_personality, 0 },
4452 { "personalityindex", s_arm_unwind_personalityindex, 0 },
4453 { "handlerdata", s_arm_unwind_handlerdata, 0 },
4454 { "save", s_arm_unwind_save, 0 },
fa073d69 4455 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
4456 { "movsp", s_arm_unwind_movsp, 0 },
4457 { "pad", s_arm_unwind_pad, 0 },
4458 { "setfp", s_arm_unwind_setfp, 0 },
4459 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 4460 { "eabi_attribute", s_arm_eabi_attribute, 0 },
0855e32b 4461 { "tlsdescseq", s_arm_tls_descseq, 0 },
c19d1205
ZW
4462#else
4463 { "word", cons, 4},
f0927246
NC
4464
4465 /* These are used for dwarf. */
4466 {"2byte", cons, 2},
4467 {"4byte", cons, 4},
4468 {"8byte", cons, 8},
4469 /* These are used for dwarf2. */
4470 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
4471 { "loc", dwarf2_directive_loc, 0 },
4472 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
4473#endif
4474 { "extend", float_cons, 'x' },
4475 { "ldouble", float_cons, 'x' },
4476 { "packed", float_cons, 'p' },
f0927246
NC
4477#ifdef TE_PE
4478 {"secrel32", pe_directive_secrel, 0},
4479#endif
c19d1205
ZW
4480 { 0, 0, 0 }
4481};
4482\f
4483/* Parser functions used exclusively in instruction operands. */
b99bd4ef 4484
c19d1205
ZW
4485/* Generic immediate-value read function for use in insn parsing.
4486 STR points to the beginning of the immediate (the leading #);
4487 VAL receives the value; if the value is outside [MIN, MAX]
4488 issue an error. PREFIX_OPT is true if the immediate prefix is
4489 optional. */
b99bd4ef 4490
c19d1205
ZW
4491static int
4492parse_immediate (char **str, int *val, int min, int max,
4493 bfd_boolean prefix_opt)
4494{
4495 expressionS exp;
4496 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
4497 if (exp.X_op != O_constant)
b99bd4ef 4498 {
c19d1205
ZW
4499 inst.error = _("constant expression required");
4500 return FAIL;
4501 }
b99bd4ef 4502
c19d1205
ZW
4503 if (exp.X_add_number < min || exp.X_add_number > max)
4504 {
4505 inst.error = _("immediate value out of range");
4506 return FAIL;
4507 }
b99bd4ef 4508
c19d1205
ZW
4509 *val = exp.X_add_number;
4510 return SUCCESS;
4511}
b99bd4ef 4512
5287ad62 4513/* Less-generic immediate-value read function with the possibility of loading a
036dc3f7 4514 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5287ad62
JB
4515 instructions. Puts the result directly in inst.operands[i]. */
4516
4517static int
4518parse_big_immediate (char **str, int i)
4519{
4520 expressionS exp;
4521 char *ptr = *str;
4522
4523 my_get_expression (&exp, &ptr, GE_OPT_PREFIX_BIG);
4524
4525 if (exp.X_op == O_constant)
036dc3f7
PB
4526 {
4527 inst.operands[i].imm = exp.X_add_number & 0xffffffff;
4528 /* If we're on a 64-bit host, then a 64-bit number can be returned using
4529 O_constant. We have to be careful not to break compilation for
4530 32-bit X_add_number, though. */
58ad575f 4531 if ((exp.X_add_number & ~(offsetT)(0xffffffffU)) != 0)
036dc3f7 4532 {
477330fc 4533 /* X >> 32 is illegal if sizeof (exp.X_add_number) == 4. */
036dc3f7
PB
4534 inst.operands[i].reg = ((exp.X_add_number >> 16) >> 16) & 0xffffffff;
4535 inst.operands[i].regisimm = 1;
4536 }
4537 }
5287ad62 4538 else if (exp.X_op == O_big
95b75c01 4539 && LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 32)
5287ad62
JB
4540 {
4541 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
95b75c01 4542
5287ad62 4543 /* Bignums have their least significant bits in
477330fc
RM
4544 generic_bignum[0]. Make sure we put 32 bits in imm and
4545 32 bits in reg, in a (hopefully) portable way. */
9c2799c2 4546 gas_assert (parts != 0);
95b75c01
NC
4547
4548 /* Make sure that the number is not too big.
4549 PR 11972: Bignums can now be sign-extended to the
4550 size of a .octa so check that the out of range bits
4551 are all zero or all one. */
4552 if (LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 64)
4553 {
4554 LITTLENUM_TYPE m = -1;
4555
4556 if (generic_bignum[parts * 2] != 0
4557 && generic_bignum[parts * 2] != m)
4558 return FAIL;
4559
4560 for (j = parts * 2 + 1; j < (unsigned) exp.X_add_number; j++)
4561 if (generic_bignum[j] != generic_bignum[j-1])
4562 return FAIL;
4563 }
4564
5287ad62
JB
4565 inst.operands[i].imm = 0;
4566 for (j = 0; j < parts; j++, idx++)
477330fc
RM
4567 inst.operands[i].imm |= generic_bignum[idx]
4568 << (LITTLENUM_NUMBER_OF_BITS * j);
5287ad62
JB
4569 inst.operands[i].reg = 0;
4570 for (j = 0; j < parts; j++, idx++)
477330fc
RM
4571 inst.operands[i].reg |= generic_bignum[idx]
4572 << (LITTLENUM_NUMBER_OF_BITS * j);
5287ad62
JB
4573 inst.operands[i].regisimm = 1;
4574 }
4575 else
4576 return FAIL;
5f4273c7 4577
5287ad62
JB
4578 *str = ptr;
4579
4580 return SUCCESS;
4581}
4582
c19d1205
ZW
4583/* Returns the pseudo-register number of an FPA immediate constant,
4584 or FAIL if there isn't a valid constant here. */
b99bd4ef 4585
c19d1205
ZW
4586static int
4587parse_fpa_immediate (char ** str)
4588{
4589 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4590 char * save_in;
4591 expressionS exp;
4592 int i;
4593 int j;
b99bd4ef 4594
c19d1205
ZW
4595 /* First try and match exact strings, this is to guarantee
4596 that some formats will work even for cross assembly. */
b99bd4ef 4597
c19d1205
ZW
4598 for (i = 0; fp_const[i]; i++)
4599 {
4600 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4601 {
c19d1205 4602 char *start = *str;
b99bd4ef 4603
c19d1205
ZW
4604 *str += strlen (fp_const[i]);
4605 if (is_end_of_line[(unsigned char) **str])
4606 return i + 8;
4607 *str = start;
4608 }
4609 }
b99bd4ef 4610
c19d1205
ZW
4611 /* Just because we didn't get a match doesn't mean that the constant
4612 isn't valid, just that it is in a format that we don't
4613 automatically recognize. Try parsing it with the standard
4614 expression routines. */
b99bd4ef 4615
c19d1205 4616 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4617
c19d1205
ZW
4618 /* Look for a raw floating point number. */
4619 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4620 && is_end_of_line[(unsigned char) *save_in])
4621 {
4622 for (i = 0; i < NUM_FLOAT_VALS; i++)
4623 {
4624 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4625 {
c19d1205
ZW
4626 if (words[j] != fp_values[i][j])
4627 break;
b99bd4ef
NC
4628 }
4629
c19d1205 4630 if (j == MAX_LITTLENUMS)
b99bd4ef 4631 {
c19d1205
ZW
4632 *str = save_in;
4633 return i + 8;
b99bd4ef
NC
4634 }
4635 }
4636 }
b99bd4ef 4637
c19d1205
ZW
4638 /* Try and parse a more complex expression, this will probably fail
4639 unless the code uses a floating point prefix (eg "0f"). */
4640 save_in = input_line_pointer;
4641 input_line_pointer = *str;
4642 if (expression (&exp) == absolute_section
4643 && exp.X_op == O_big
4644 && exp.X_add_number < 0)
4645 {
4646 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4647 Ditto for 15. */
4648 if (gen_to_words (words, 5, (long) 15) == 0)
4649 {
4650 for (i = 0; i < NUM_FLOAT_VALS; i++)
4651 {
4652 for (j = 0; j < MAX_LITTLENUMS; j++)
4653 {
4654 if (words[j] != fp_values[i][j])
4655 break;
4656 }
b99bd4ef 4657
c19d1205
ZW
4658 if (j == MAX_LITTLENUMS)
4659 {
4660 *str = input_line_pointer;
4661 input_line_pointer = save_in;
4662 return i + 8;
4663 }
4664 }
4665 }
b99bd4ef
NC
4666 }
4667
c19d1205
ZW
4668 *str = input_line_pointer;
4669 input_line_pointer = save_in;
4670 inst.error = _("invalid FPA immediate expression");
4671 return FAIL;
b99bd4ef
NC
4672}
4673
136da414
JB
4674/* Returns 1 if a number has "quarter-precision" float format
4675 0baBbbbbbc defgh000 00000000 00000000. */
4676
4677static int
4678is_quarter_float (unsigned imm)
4679{
4680 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4681 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4682}
4683
4684/* Parse an 8-bit "quarter-precision" floating point number of the form:
4685 0baBbbbbbc defgh000 00000000 00000000.
c96612cc
JB
4686 The zero and minus-zero cases need special handling, since they can't be
4687 encoded in the "quarter-precision" float format, but can nonetheless be
4688 loaded as integer constants. */
136da414
JB
4689
4690static unsigned
4691parse_qfloat_immediate (char **ccp, int *immed)
4692{
4693 char *str = *ccp;
c96612cc 4694 char *fpnum;
136da414 4695 LITTLENUM_TYPE words[MAX_LITTLENUMS];
c96612cc 4696 int found_fpchar = 0;
5f4273c7 4697
136da414 4698 skip_past_char (&str, '#');
5f4273c7 4699
c96612cc
JB
4700 /* We must not accidentally parse an integer as a floating-point number. Make
4701 sure that the value we parse is not an integer by checking for special
4702 characters '.' or 'e'.
4703 FIXME: This is a horrible hack, but doing better is tricky because type
4704 information isn't in a very usable state at parse time. */
4705 fpnum = str;
4706 skip_whitespace (fpnum);
4707
4708 if (strncmp (fpnum, "0x", 2) == 0)
4709 return FAIL;
4710 else
4711 {
4712 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
477330fc
RM
4713 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
4714 {
4715 found_fpchar = 1;
4716 break;
4717 }
c96612cc
JB
4718
4719 if (!found_fpchar)
477330fc 4720 return FAIL;
c96612cc 4721 }
5f4273c7 4722
136da414
JB
4723 if ((str = atof_ieee (str, 's', words)) != NULL)
4724 {
4725 unsigned fpword = 0;
4726 int i;
5f4273c7 4727
136da414
JB
4728 /* Our FP word must be 32 bits (single-precision FP). */
4729 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
477330fc
RM
4730 {
4731 fpword <<= LITTLENUM_NUMBER_OF_BITS;
4732 fpword |= words[i];
4733 }
5f4273c7 4734
c96612cc 4735 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
477330fc 4736 *immed = fpword;
136da414 4737 else
477330fc 4738 return FAIL;
136da414
JB
4739
4740 *ccp = str;
5f4273c7 4741
136da414
JB
4742 return SUCCESS;
4743 }
5f4273c7 4744
136da414
JB
4745 return FAIL;
4746}
4747
c19d1205
ZW
4748/* Shift operands. */
4749enum shift_kind
b99bd4ef 4750{
c19d1205
ZW
4751 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
4752};
b99bd4ef 4753
c19d1205
ZW
4754struct asm_shift_name
4755{
4756 const char *name;
4757 enum shift_kind kind;
4758};
b99bd4ef 4759
c19d1205
ZW
4760/* Third argument to parse_shift. */
4761enum parse_shift_mode
4762{
4763 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
4764 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
4765 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
4766 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
4767 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
4768};
b99bd4ef 4769
c19d1205
ZW
4770/* Parse a <shift> specifier on an ARM data processing instruction.
4771 This has three forms:
b99bd4ef 4772
c19d1205
ZW
4773 (LSL|LSR|ASL|ASR|ROR) Rs
4774 (LSL|LSR|ASL|ASR|ROR) #imm
4775 RRX
b99bd4ef 4776
c19d1205
ZW
4777 Note that ASL is assimilated to LSL in the instruction encoding, and
4778 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 4779
c19d1205
ZW
4780static int
4781parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 4782{
c19d1205
ZW
4783 const struct asm_shift_name *shift_name;
4784 enum shift_kind shift;
4785 char *s = *str;
4786 char *p = s;
4787 int reg;
b99bd4ef 4788
c19d1205
ZW
4789 for (p = *str; ISALPHA (*p); p++)
4790 ;
b99bd4ef 4791
c19d1205 4792 if (p == *str)
b99bd4ef 4793 {
c19d1205
ZW
4794 inst.error = _("shift expression expected");
4795 return FAIL;
b99bd4ef
NC
4796 }
4797
21d799b5 4798 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
477330fc 4799 p - *str);
c19d1205
ZW
4800
4801 if (shift_name == NULL)
b99bd4ef 4802 {
c19d1205
ZW
4803 inst.error = _("shift expression expected");
4804 return FAIL;
b99bd4ef
NC
4805 }
4806
c19d1205 4807 shift = shift_name->kind;
b99bd4ef 4808
c19d1205
ZW
4809 switch (mode)
4810 {
4811 case NO_SHIFT_RESTRICT:
4812 case SHIFT_IMMEDIATE: break;
b99bd4ef 4813
c19d1205
ZW
4814 case SHIFT_LSL_OR_ASR_IMMEDIATE:
4815 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
4816 {
4817 inst.error = _("'LSL' or 'ASR' required");
4818 return FAIL;
4819 }
4820 break;
b99bd4ef 4821
c19d1205
ZW
4822 case SHIFT_LSL_IMMEDIATE:
4823 if (shift != SHIFT_LSL)
4824 {
4825 inst.error = _("'LSL' required");
4826 return FAIL;
4827 }
4828 break;
b99bd4ef 4829
c19d1205
ZW
4830 case SHIFT_ASR_IMMEDIATE:
4831 if (shift != SHIFT_ASR)
4832 {
4833 inst.error = _("'ASR' required");
4834 return FAIL;
4835 }
4836 break;
b99bd4ef 4837
c19d1205
ZW
4838 default: abort ();
4839 }
b99bd4ef 4840
c19d1205
ZW
4841 if (shift != SHIFT_RRX)
4842 {
4843 /* Whitespace can appear here if the next thing is a bare digit. */
4844 skip_whitespace (p);
b99bd4ef 4845
c19d1205 4846 if (mode == NO_SHIFT_RESTRICT
dcbf9037 4847 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4848 {
4849 inst.operands[i].imm = reg;
4850 inst.operands[i].immisreg = 1;
4851 }
4852 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4853 return FAIL;
4854 }
4855 inst.operands[i].shift_kind = shift;
4856 inst.operands[i].shifted = 1;
4857 *str = p;
4858 return SUCCESS;
b99bd4ef
NC
4859}
4860
c19d1205 4861/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 4862
c19d1205
ZW
4863 #<immediate>
4864 #<immediate>, <rotate>
4865 <Rm>
4866 <Rm>, <shift>
b99bd4ef 4867
c19d1205
ZW
4868 where <shift> is defined by parse_shift above, and <rotate> is a
4869 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 4870 is deferred to md_apply_fix. */
b99bd4ef 4871
c19d1205
ZW
4872static int
4873parse_shifter_operand (char **str, int i)
4874{
4875 int value;
91d6fa6a 4876 expressionS exp;
b99bd4ef 4877
dcbf9037 4878 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4879 {
4880 inst.operands[i].reg = value;
4881 inst.operands[i].isreg = 1;
b99bd4ef 4882
c19d1205
ZW
4883 /* parse_shift will override this if appropriate */
4884 inst.reloc.exp.X_op = O_constant;
4885 inst.reloc.exp.X_add_number = 0;
b99bd4ef 4886
c19d1205
ZW
4887 if (skip_past_comma (str) == FAIL)
4888 return SUCCESS;
b99bd4ef 4889
c19d1205
ZW
4890 /* Shift operation on register. */
4891 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
4892 }
4893
c19d1205
ZW
4894 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
4895 return FAIL;
b99bd4ef 4896
c19d1205 4897 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 4898 {
c19d1205 4899 /* #x, y -- ie explicit rotation by Y. */
91d6fa6a 4900 if (my_get_expression (&exp, str, GE_NO_PREFIX))
c19d1205 4901 return FAIL;
b99bd4ef 4902
91d6fa6a 4903 if (exp.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
c19d1205
ZW
4904 {
4905 inst.error = _("constant expression expected");
4906 return FAIL;
4907 }
b99bd4ef 4908
91d6fa6a 4909 value = exp.X_add_number;
c19d1205
ZW
4910 if (value < 0 || value > 30 || value % 2 != 0)
4911 {
4912 inst.error = _("invalid rotation");
4913 return FAIL;
4914 }
4915 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
4916 {
4917 inst.error = _("invalid constant");
4918 return FAIL;
4919 }
09d92015 4920
a415b1cd
JB
4921 /* Encode as specified. */
4922 inst.operands[i].imm = inst.reloc.exp.X_add_number | value << 7;
4923 return SUCCESS;
09d92015
MM
4924 }
4925
c19d1205
ZW
4926 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
4927 inst.reloc.pc_rel = 0;
4928 return SUCCESS;
09d92015
MM
4929}
4930
4962c51a
MS
4931/* Group relocation information. Each entry in the table contains the
4932 textual name of the relocation as may appear in assembler source
4933 and must end with a colon.
4934 Along with this textual name are the relocation codes to be used if
4935 the corresponding instruction is an ALU instruction (ADD or SUB only),
4936 an LDR, an LDRS, or an LDC. */
4937
4938struct group_reloc_table_entry
4939{
4940 const char *name;
4941 int alu_code;
4942 int ldr_code;
4943 int ldrs_code;
4944 int ldc_code;
4945};
4946
4947typedef enum
4948{
4949 /* Varieties of non-ALU group relocation. */
4950
4951 GROUP_LDR,
4952 GROUP_LDRS,
4953 GROUP_LDC
4954} group_reloc_type;
4955
4956static struct group_reloc_table_entry group_reloc_table[] =
4957 { /* Program counter relative: */
4958 { "pc_g0_nc",
4959 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
4960 0, /* LDR */
4961 0, /* LDRS */
4962 0 }, /* LDC */
4963 { "pc_g0",
4964 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
4965 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
4966 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
4967 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
4968 { "pc_g1_nc",
4969 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
4970 0, /* LDR */
4971 0, /* LDRS */
4972 0 }, /* LDC */
4973 { "pc_g1",
4974 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
4975 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
4976 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
4977 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
4978 { "pc_g2",
4979 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
4980 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
4981 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
4982 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
4983 /* Section base relative */
4984 { "sb_g0_nc",
4985 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
4986 0, /* LDR */
4987 0, /* LDRS */
4988 0 }, /* LDC */
4989 { "sb_g0",
4990 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
4991 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
4992 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
4993 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
4994 { "sb_g1_nc",
4995 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
4996 0, /* LDR */
4997 0, /* LDRS */
4998 0 }, /* LDC */
4999 { "sb_g1",
5000 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
5001 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
5002 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
5003 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
5004 { "sb_g2",
5005 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
5006 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5007 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
5008 BFD_RELOC_ARM_LDC_SB_G2 } }; /* LDC */
5009
5010/* Given the address of a pointer pointing to the textual name of a group
5011 relocation as may appear in assembler source, attempt to find its details
5012 in group_reloc_table. The pointer will be updated to the character after
5013 the trailing colon. On failure, FAIL will be returned; SUCCESS
5014 otherwise. On success, *entry will be updated to point at the relevant
5015 group_reloc_table entry. */
5016
5017static int
5018find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5019{
5020 unsigned int i;
5021 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5022 {
5023 int length = strlen (group_reloc_table[i].name);
5024
5f4273c7
NC
5025 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5026 && (*str)[length] == ':')
477330fc
RM
5027 {
5028 *out = &group_reloc_table[i];
5029 *str += (length + 1);
5030 return SUCCESS;
5031 }
4962c51a
MS
5032 }
5033
5034 return FAIL;
5035}
5036
5037/* Parse a <shifter_operand> for an ARM data processing instruction
5038 (as for parse_shifter_operand) where group relocations are allowed:
5039
5040 #<immediate>
5041 #<immediate>, <rotate>
5042 #:<group_reloc>:<expression>
5043 <Rm>
5044 <Rm>, <shift>
5045
5046 where <group_reloc> is one of the strings defined in group_reloc_table.
5047 The hashes are optional.
5048
5049 Everything else is as for parse_shifter_operand. */
5050
5051static parse_operand_result
5052parse_shifter_operand_group_reloc (char **str, int i)
5053{
5054 /* Determine if we have the sequence of characters #: or just :
5055 coming next. If we do, then we check for a group relocation.
5056 If we don't, punt the whole lot to parse_shifter_operand. */
5057
5058 if (((*str)[0] == '#' && (*str)[1] == ':')
5059 || (*str)[0] == ':')
5060 {
5061 struct group_reloc_table_entry *entry;
5062
5063 if ((*str)[0] == '#')
477330fc 5064 (*str) += 2;
4962c51a 5065 else
477330fc 5066 (*str)++;
4962c51a
MS
5067
5068 /* Try to parse a group relocation. Anything else is an error. */
5069 if (find_group_reloc_table_entry (str, &entry) == FAIL)
477330fc
RM
5070 {
5071 inst.error = _("unknown group relocation");
5072 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5073 }
4962c51a
MS
5074
5075 /* We now have the group relocation table entry corresponding to
477330fc 5076 the name in the assembler source. Next, we parse the expression. */
4962c51a 5077 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
477330fc 5078 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4962c51a
MS
5079
5080 /* Record the relocation type (always the ALU variant here). */
21d799b5 5081 inst.reloc.type = (bfd_reloc_code_real_type) entry->alu_code;
9c2799c2 5082 gas_assert (inst.reloc.type != 0);
4962c51a
MS
5083
5084 return PARSE_OPERAND_SUCCESS;
5085 }
5086 else
5087 return parse_shifter_operand (str, i) == SUCCESS
477330fc 5088 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
4962c51a
MS
5089
5090 /* Never reached. */
5091}
5092
8e560766
MGD
5093/* Parse a Neon alignment expression. Information is written to
5094 inst.operands[i]. We assume the initial ':' has been skipped.
fa94de6b 5095
8e560766
MGD
5096 align .imm = align << 8, .immisalign=1, .preind=0 */
5097static parse_operand_result
5098parse_neon_alignment (char **str, int i)
5099{
5100 char *p = *str;
5101 expressionS exp;
5102
5103 my_get_expression (&exp, &p, GE_NO_PREFIX);
5104
5105 if (exp.X_op != O_constant)
5106 {
5107 inst.error = _("alignment must be constant");
5108 return PARSE_OPERAND_FAIL;
5109 }
5110
5111 inst.operands[i].imm = exp.X_add_number << 8;
5112 inst.operands[i].immisalign = 1;
5113 /* Alignments are not pre-indexes. */
5114 inst.operands[i].preind = 0;
5115
5116 *str = p;
5117 return PARSE_OPERAND_SUCCESS;
5118}
5119
c19d1205
ZW
5120/* Parse all forms of an ARM address expression. Information is written
5121 to inst.operands[i] and/or inst.reloc.
09d92015 5122
c19d1205 5123 Preindexed addressing (.preind=1):
09d92015 5124
c19d1205
ZW
5125 [Rn, #offset] .reg=Rn .reloc.exp=offset
5126 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5127 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5128 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5129
c19d1205 5130 These three may have a trailing ! which causes .writeback to be set also.
09d92015 5131
c19d1205 5132 Postindexed addressing (.postind=1, .writeback=1):
09d92015 5133
c19d1205
ZW
5134 [Rn], #offset .reg=Rn .reloc.exp=offset
5135 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5136 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5137 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5138
c19d1205 5139 Unindexed addressing (.preind=0, .postind=0):
09d92015 5140
c19d1205 5141 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 5142
c19d1205 5143 Other:
09d92015 5144
c19d1205
ZW
5145 [Rn]{!} shorthand for [Rn,#0]{!}
5146 =immediate .isreg=0 .reloc.exp=immediate
5147 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 5148
c19d1205
ZW
5149 It is the caller's responsibility to check for addressing modes not
5150 supported by the instruction, and to set inst.reloc.type. */
5151
4962c51a
MS
5152static parse_operand_result
5153parse_address_main (char **str, int i, int group_relocations,
477330fc 5154 group_reloc_type group_type)
09d92015 5155{
c19d1205
ZW
5156 char *p = *str;
5157 int reg;
09d92015 5158
c19d1205 5159 if (skip_past_char (&p, '[') == FAIL)
09d92015 5160 {
c19d1205
ZW
5161 if (skip_past_char (&p, '=') == FAIL)
5162 {
974da60d 5163 /* Bare address - translate to PC-relative offset. */
c19d1205
ZW
5164 inst.reloc.pc_rel = 1;
5165 inst.operands[i].reg = REG_PC;
5166 inst.operands[i].isreg = 1;
5167 inst.operands[i].preind = 1;
5168 }
974da60d 5169 /* Otherwise a load-constant pseudo op, no special treatment needed here. */
09d92015 5170
c19d1205 5171 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4962c51a 5172 return PARSE_OPERAND_FAIL;
09d92015 5173
c19d1205 5174 *str = p;
4962c51a 5175 return PARSE_OPERAND_SUCCESS;
09d92015
MM
5176 }
5177
8ab8155f
NC
5178 /* PR gas/14887: Allow for whitespace after the opening bracket. */
5179 skip_whitespace (p);
5180
dcbf9037 5181 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 5182 {
c19d1205 5183 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 5184 return PARSE_OPERAND_FAIL;
09d92015 5185 }
c19d1205
ZW
5186 inst.operands[i].reg = reg;
5187 inst.operands[i].isreg = 1;
09d92015 5188
c19d1205 5189 if (skip_past_comma (&p) == SUCCESS)
09d92015 5190 {
c19d1205 5191 inst.operands[i].preind = 1;
09d92015 5192
c19d1205
ZW
5193 if (*p == '+') p++;
5194 else if (*p == '-') p++, inst.operands[i].negative = 1;
5195
dcbf9037 5196 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 5197 {
c19d1205
ZW
5198 inst.operands[i].imm = reg;
5199 inst.operands[i].immisreg = 1;
5200
5201 if (skip_past_comma (&p) == SUCCESS)
5202 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5203 return PARSE_OPERAND_FAIL;
c19d1205 5204 }
5287ad62 5205 else if (skip_past_char (&p, ':') == SUCCESS)
8e560766
MGD
5206 {
5207 /* FIXME: '@' should be used here, but it's filtered out by generic
5208 code before we get to see it here. This may be subject to
5209 change. */
5210 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5211
8e560766
MGD
5212 if (result != PARSE_OPERAND_SUCCESS)
5213 return result;
5214 }
c19d1205
ZW
5215 else
5216 {
5217 if (inst.operands[i].negative)
5218 {
5219 inst.operands[i].negative = 0;
5220 p--;
5221 }
4962c51a 5222
5f4273c7
NC
5223 if (group_relocations
5224 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4962c51a
MS
5225 {
5226 struct group_reloc_table_entry *entry;
5227
477330fc
RM
5228 /* Skip over the #: or : sequence. */
5229 if (*p == '#')
5230 p += 2;
5231 else
5232 p++;
4962c51a
MS
5233
5234 /* Try to parse a group relocation. Anything else is an
477330fc 5235 error. */
4962c51a
MS
5236 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5237 {
5238 inst.error = _("unknown group relocation");
5239 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5240 }
5241
5242 /* We now have the group relocation table entry corresponding to
5243 the name in the assembler source. Next, we parse the
477330fc 5244 expression. */
4962c51a
MS
5245 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5246 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5247
5248 /* Record the relocation type. */
477330fc
RM
5249 switch (group_type)
5250 {
5251 case GROUP_LDR:
5252 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldr_code;
5253 break;
4962c51a 5254
477330fc
RM
5255 case GROUP_LDRS:
5256 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldrs_code;
5257 break;
4962c51a 5258
477330fc
RM
5259 case GROUP_LDC:
5260 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldc_code;
5261 break;
4962c51a 5262
477330fc
RM
5263 default:
5264 gas_assert (0);
5265 }
4962c51a 5266
477330fc 5267 if (inst.reloc.type == 0)
4962c51a
MS
5268 {
5269 inst.error = _("this group relocation is not allowed on this instruction");
5270 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5271 }
477330fc
RM
5272 }
5273 else
26d97720
NS
5274 {
5275 char *q = p;
5276 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5277 return PARSE_OPERAND_FAIL;
5278 /* If the offset is 0, find out if it's a +0 or -0. */
5279 if (inst.reloc.exp.X_op == O_constant
5280 && inst.reloc.exp.X_add_number == 0)
5281 {
5282 skip_whitespace (q);
5283 if (*q == '#')
5284 {
5285 q++;
5286 skip_whitespace (q);
5287 }
5288 if (*q == '-')
5289 inst.operands[i].negative = 1;
5290 }
5291 }
09d92015
MM
5292 }
5293 }
8e560766
MGD
5294 else if (skip_past_char (&p, ':') == SUCCESS)
5295 {
5296 /* FIXME: '@' should be used here, but it's filtered out by generic code
5297 before we get to see it here. This may be subject to change. */
5298 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5299
8e560766
MGD
5300 if (result != PARSE_OPERAND_SUCCESS)
5301 return result;
5302 }
09d92015 5303
c19d1205 5304 if (skip_past_char (&p, ']') == FAIL)
09d92015 5305 {
c19d1205 5306 inst.error = _("']' expected");
4962c51a 5307 return PARSE_OPERAND_FAIL;
09d92015
MM
5308 }
5309
c19d1205
ZW
5310 if (skip_past_char (&p, '!') == SUCCESS)
5311 inst.operands[i].writeback = 1;
09d92015 5312
c19d1205 5313 else if (skip_past_comma (&p) == SUCCESS)
09d92015 5314 {
c19d1205
ZW
5315 if (skip_past_char (&p, '{') == SUCCESS)
5316 {
5317 /* [Rn], {expr} - unindexed, with option */
5318 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 5319 0, 255, TRUE) == FAIL)
4962c51a 5320 return PARSE_OPERAND_FAIL;
09d92015 5321
c19d1205
ZW
5322 if (skip_past_char (&p, '}') == FAIL)
5323 {
5324 inst.error = _("'}' expected at end of 'option' field");
4962c51a 5325 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5326 }
5327 if (inst.operands[i].preind)
5328 {
5329 inst.error = _("cannot combine index with option");
4962c51a 5330 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5331 }
5332 *str = p;
4962c51a 5333 return PARSE_OPERAND_SUCCESS;
09d92015 5334 }
c19d1205
ZW
5335 else
5336 {
5337 inst.operands[i].postind = 1;
5338 inst.operands[i].writeback = 1;
09d92015 5339
c19d1205
ZW
5340 if (inst.operands[i].preind)
5341 {
5342 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 5343 return PARSE_OPERAND_FAIL;
c19d1205 5344 }
09d92015 5345
c19d1205
ZW
5346 if (*p == '+') p++;
5347 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 5348
dcbf9037 5349 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 5350 {
477330fc
RM
5351 /* We might be using the immediate for alignment already. If we
5352 are, OR the register number into the low-order bits. */
5353 if (inst.operands[i].immisalign)
5354 inst.operands[i].imm |= reg;
5355 else
5356 inst.operands[i].imm = reg;
c19d1205 5357 inst.operands[i].immisreg = 1;
a737bd4d 5358
c19d1205
ZW
5359 if (skip_past_comma (&p) == SUCCESS)
5360 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5361 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5362 }
5363 else
5364 {
26d97720 5365 char *q = p;
c19d1205
ZW
5366 if (inst.operands[i].negative)
5367 {
5368 inst.operands[i].negative = 0;
5369 p--;
5370 }
5371 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 5372 return PARSE_OPERAND_FAIL;
26d97720
NS
5373 /* If the offset is 0, find out if it's a +0 or -0. */
5374 if (inst.reloc.exp.X_op == O_constant
5375 && inst.reloc.exp.X_add_number == 0)
5376 {
5377 skip_whitespace (q);
5378 if (*q == '#')
5379 {
5380 q++;
5381 skip_whitespace (q);
5382 }
5383 if (*q == '-')
5384 inst.operands[i].negative = 1;
5385 }
c19d1205
ZW
5386 }
5387 }
a737bd4d
NC
5388 }
5389
c19d1205
ZW
5390 /* If at this point neither .preind nor .postind is set, we have a
5391 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
5392 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
5393 {
5394 inst.operands[i].preind = 1;
5395 inst.reloc.exp.X_op = O_constant;
5396 inst.reloc.exp.X_add_number = 0;
5397 }
5398 *str = p;
4962c51a
MS
5399 return PARSE_OPERAND_SUCCESS;
5400}
5401
5402static int
5403parse_address (char **str, int i)
5404{
21d799b5 5405 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
477330fc 5406 ? SUCCESS : FAIL;
4962c51a
MS
5407}
5408
5409static parse_operand_result
5410parse_address_group_reloc (char **str, int i, group_reloc_type type)
5411{
5412 return parse_address_main (str, i, 1, type);
a737bd4d
NC
5413}
5414
b6895b4f
PB
5415/* Parse an operand for a MOVW or MOVT instruction. */
5416static int
5417parse_half (char **str)
5418{
5419 char * p;
5f4273c7 5420
b6895b4f
PB
5421 p = *str;
5422 skip_past_char (&p, '#');
5f4273c7 5423 if (strncasecmp (p, ":lower16:", 9) == 0)
b6895b4f
PB
5424 inst.reloc.type = BFD_RELOC_ARM_MOVW;
5425 else if (strncasecmp (p, ":upper16:", 9) == 0)
5426 inst.reloc.type = BFD_RELOC_ARM_MOVT;
5427
5428 if (inst.reloc.type != BFD_RELOC_UNUSED)
5429 {
5430 p += 9;
5f4273c7 5431 skip_whitespace (p);
b6895b4f
PB
5432 }
5433
5434 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5435 return FAIL;
5436
5437 if (inst.reloc.type == BFD_RELOC_UNUSED)
5438 {
5439 if (inst.reloc.exp.X_op != O_constant)
5440 {
5441 inst.error = _("constant expression expected");
5442 return FAIL;
5443 }
5444 if (inst.reloc.exp.X_add_number < 0
5445 || inst.reloc.exp.X_add_number > 0xffff)
5446 {
5447 inst.error = _("immediate value out of range");
5448 return FAIL;
5449 }
5450 }
5451 *str = p;
5452 return SUCCESS;
5453}
5454
c19d1205 5455/* Miscellaneous. */
a737bd4d 5456
c19d1205
ZW
5457/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
5458 or a bitmask suitable to be or-ed into the ARM msr instruction. */
5459static int
d2cd1205 5460parse_psr (char **str, bfd_boolean lhs)
09d92015 5461{
c19d1205
ZW
5462 char *p;
5463 unsigned long psr_field;
62b3e311
PB
5464 const struct asm_psr *psr;
5465 char *start;
d2cd1205 5466 bfd_boolean is_apsr = FALSE;
ac7f631b 5467 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
09d92015 5468
a4482bb6
NC
5469 /* PR gas/12698: If the user has specified -march=all then m_profile will
5470 be TRUE, but we want to ignore it in this case as we are building for any
5471 CPU type, including non-m variants. */
5472 if (selected_cpu.core == arm_arch_any.core)
5473 m_profile = FALSE;
5474
c19d1205
ZW
5475 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
5476 feature for ease of use and backwards compatibility. */
5477 p = *str;
62b3e311 5478 if (strncasecmp (p, "SPSR", 4) == 0)
d2cd1205
JB
5479 {
5480 if (m_profile)
5481 goto unsupported_psr;
fa94de6b 5482
d2cd1205
JB
5483 psr_field = SPSR_BIT;
5484 }
5485 else if (strncasecmp (p, "CPSR", 4) == 0)
5486 {
5487 if (m_profile)
5488 goto unsupported_psr;
5489
5490 psr_field = 0;
5491 }
5492 else if (strncasecmp (p, "APSR", 4) == 0)
5493 {
5494 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
5495 and ARMv7-R architecture CPUs. */
5496 is_apsr = TRUE;
5497 psr_field = 0;
5498 }
5499 else if (m_profile)
62b3e311
PB
5500 {
5501 start = p;
5502 do
5503 p++;
5504 while (ISALNUM (*p) || *p == '_');
5505
d2cd1205
JB
5506 if (strncasecmp (start, "iapsr", 5) == 0
5507 || strncasecmp (start, "eapsr", 5) == 0
5508 || strncasecmp (start, "xpsr", 4) == 0
5509 || strncasecmp (start, "psr", 3) == 0)
5510 p = start + strcspn (start, "rR") + 1;
5511
21d799b5 5512 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
477330fc 5513 p - start);
d2cd1205 5514
62b3e311
PB
5515 if (!psr)
5516 return FAIL;
09d92015 5517
d2cd1205
JB
5518 /* If APSR is being written, a bitfield may be specified. Note that
5519 APSR itself is handled above. */
5520 if (psr->field <= 3)
5521 {
5522 psr_field = psr->field;
5523 is_apsr = TRUE;
5524 goto check_suffix;
5525 }
5526
62b3e311 5527 *str = p;
d2cd1205
JB
5528 /* M-profile MSR instructions have the mask field set to "10", except
5529 *PSR variants which modify APSR, which may use a different mask (and
5530 have been handled already). Do that by setting the PSR_f field
5531 here. */
5532 return psr->field | (lhs ? PSR_f : 0);
62b3e311 5533 }
d2cd1205
JB
5534 else
5535 goto unsupported_psr;
09d92015 5536
62b3e311 5537 p += 4;
d2cd1205 5538check_suffix:
c19d1205
ZW
5539 if (*p == '_')
5540 {
5541 /* A suffix follows. */
c19d1205
ZW
5542 p++;
5543 start = p;
a737bd4d 5544
c19d1205
ZW
5545 do
5546 p++;
5547 while (ISALNUM (*p) || *p == '_');
a737bd4d 5548
d2cd1205
JB
5549 if (is_apsr)
5550 {
5551 /* APSR uses a notation for bits, rather than fields. */
5552 unsigned int nzcvq_bits = 0;
5553 unsigned int g_bit = 0;
5554 char *bit;
fa94de6b 5555
d2cd1205
JB
5556 for (bit = start; bit != p; bit++)
5557 {
5558 switch (TOLOWER (*bit))
477330fc 5559 {
d2cd1205
JB
5560 case 'n':
5561 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
5562 break;
5563
5564 case 'z':
5565 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
5566 break;
5567
5568 case 'c':
5569 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
5570 break;
5571
5572 case 'v':
5573 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
5574 break;
fa94de6b 5575
d2cd1205
JB
5576 case 'q':
5577 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
5578 break;
fa94de6b 5579
d2cd1205
JB
5580 case 'g':
5581 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
5582 break;
fa94de6b 5583
d2cd1205
JB
5584 default:
5585 inst.error = _("unexpected bit specified after APSR");
5586 return FAIL;
5587 }
5588 }
fa94de6b 5589
d2cd1205
JB
5590 if (nzcvq_bits == 0x1f)
5591 psr_field |= PSR_f;
fa94de6b 5592
d2cd1205
JB
5593 if (g_bit == 0x1)
5594 {
5595 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
477330fc 5596 {
d2cd1205
JB
5597 inst.error = _("selected processor does not "
5598 "support DSP extension");
5599 return FAIL;
5600 }
5601
5602 psr_field |= PSR_s;
5603 }
fa94de6b 5604
d2cd1205
JB
5605 if ((nzcvq_bits & 0x20) != 0
5606 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
5607 || (g_bit & 0x2) != 0)
5608 {
5609 inst.error = _("bad bitmask specified after APSR");
5610 return FAIL;
5611 }
5612 }
5613 else
477330fc 5614 {
d2cd1205 5615 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
477330fc 5616 p - start);
d2cd1205 5617 if (!psr)
477330fc 5618 goto error;
a737bd4d 5619
d2cd1205
JB
5620 psr_field |= psr->field;
5621 }
a737bd4d 5622 }
c19d1205 5623 else
a737bd4d 5624 {
c19d1205
ZW
5625 if (ISALNUM (*p))
5626 goto error; /* Garbage after "[CS]PSR". */
5627
d2cd1205 5628 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
477330fc 5629 is deprecated, but allow it anyway. */
d2cd1205
JB
5630 if (is_apsr && lhs)
5631 {
5632 psr_field |= PSR_f;
5633 as_tsktsk (_("writing to APSR without specifying a bitmask is "
5634 "deprecated"));
5635 }
5636 else if (!m_profile)
5637 /* These bits are never right for M-profile devices: don't set them
5638 (only code paths which read/write APSR reach here). */
5639 psr_field |= (PSR_c | PSR_f);
a737bd4d 5640 }
c19d1205
ZW
5641 *str = p;
5642 return psr_field;
a737bd4d 5643
d2cd1205
JB
5644 unsupported_psr:
5645 inst.error = _("selected processor does not support requested special "
5646 "purpose register");
5647 return FAIL;
5648
c19d1205
ZW
5649 error:
5650 inst.error = _("flag for {c}psr instruction expected");
5651 return FAIL;
a737bd4d
NC
5652}
5653
c19d1205
ZW
5654/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
5655 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 5656
c19d1205
ZW
5657static int
5658parse_cps_flags (char **str)
a737bd4d 5659{
c19d1205
ZW
5660 int val = 0;
5661 int saw_a_flag = 0;
5662 char *s = *str;
a737bd4d 5663
c19d1205
ZW
5664 for (;;)
5665 switch (*s++)
5666 {
5667 case '\0': case ',':
5668 goto done;
a737bd4d 5669
c19d1205
ZW
5670 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
5671 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
5672 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 5673
c19d1205
ZW
5674 default:
5675 inst.error = _("unrecognized CPS flag");
5676 return FAIL;
5677 }
a737bd4d 5678
c19d1205
ZW
5679 done:
5680 if (saw_a_flag == 0)
a737bd4d 5681 {
c19d1205
ZW
5682 inst.error = _("missing CPS flags");
5683 return FAIL;
a737bd4d 5684 }
a737bd4d 5685
c19d1205
ZW
5686 *str = s - 1;
5687 return val;
a737bd4d
NC
5688}
5689
c19d1205
ZW
5690/* Parse an endian specifier ("BE" or "LE", case insensitive);
5691 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
5692
5693static int
c19d1205 5694parse_endian_specifier (char **str)
a737bd4d 5695{
c19d1205
ZW
5696 int little_endian;
5697 char *s = *str;
a737bd4d 5698
c19d1205
ZW
5699 if (strncasecmp (s, "BE", 2))
5700 little_endian = 0;
5701 else if (strncasecmp (s, "LE", 2))
5702 little_endian = 1;
5703 else
a737bd4d 5704 {
c19d1205 5705 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5706 return FAIL;
5707 }
5708
c19d1205 5709 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 5710 {
c19d1205 5711 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5712 return FAIL;
5713 }
5714
c19d1205
ZW
5715 *str = s + 2;
5716 return little_endian;
5717}
a737bd4d 5718
c19d1205
ZW
5719/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
5720 value suitable for poking into the rotate field of an sxt or sxta
5721 instruction, or FAIL on error. */
5722
5723static int
5724parse_ror (char **str)
5725{
5726 int rot;
5727 char *s = *str;
5728
5729 if (strncasecmp (s, "ROR", 3) == 0)
5730 s += 3;
5731 else
a737bd4d 5732 {
c19d1205 5733 inst.error = _("missing rotation field after comma");
a737bd4d
NC
5734 return FAIL;
5735 }
c19d1205
ZW
5736
5737 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
5738 return FAIL;
5739
5740 switch (rot)
a737bd4d 5741 {
c19d1205
ZW
5742 case 0: *str = s; return 0x0;
5743 case 8: *str = s; return 0x1;
5744 case 16: *str = s; return 0x2;
5745 case 24: *str = s; return 0x3;
5746
5747 default:
5748 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
5749 return FAIL;
5750 }
c19d1205 5751}
a737bd4d 5752
c19d1205
ZW
5753/* Parse a conditional code (from conds[] below). The value returned is in the
5754 range 0 .. 14, or FAIL. */
5755static int
5756parse_cond (char **str)
5757{
c462b453 5758 char *q;
c19d1205 5759 const struct asm_cond *c;
c462b453
PB
5760 int n;
5761 /* Condition codes are always 2 characters, so matching up to
5762 3 characters is sufficient. */
5763 char cond[3];
a737bd4d 5764
c462b453
PB
5765 q = *str;
5766 n = 0;
5767 while (ISALPHA (*q) && n < 3)
5768 {
e07e6e58 5769 cond[n] = TOLOWER (*q);
c462b453
PB
5770 q++;
5771 n++;
5772 }
a737bd4d 5773
21d799b5 5774 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
c19d1205 5775 if (!c)
a737bd4d 5776 {
c19d1205 5777 inst.error = _("condition required");
a737bd4d
NC
5778 return FAIL;
5779 }
5780
c19d1205
ZW
5781 *str = q;
5782 return c->value;
5783}
5784
e797f7e0
MGD
5785/* If the given feature available in the selected CPU, mark it as used.
5786 Returns TRUE iff feature is available. */
5787static bfd_boolean
5788mark_feature_used (const arm_feature_set *feature)
5789{
5790 /* Ensure the option is valid on the current architecture. */
5791 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
5792 return FALSE;
5793
5794 /* Add the appropriate architecture feature for the barrier option used.
5795 */
5796 if (thumb_mode)
5797 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
5798 else
5799 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
5800
5801 return TRUE;
5802}
5803
62b3e311
PB
5804/* Parse an option for a barrier instruction. Returns the encoding for the
5805 option, or FAIL. */
5806static int
5807parse_barrier (char **str)
5808{
5809 char *p, *q;
5810 const struct asm_barrier_opt *o;
5811
5812 p = q = *str;
5813 while (ISALPHA (*q))
5814 q++;
5815
21d799b5 5816 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
477330fc 5817 q - p);
62b3e311
PB
5818 if (!o)
5819 return FAIL;
5820
e797f7e0
MGD
5821 if (!mark_feature_used (&o->arch))
5822 return FAIL;
5823
62b3e311
PB
5824 *str = q;
5825 return o->value;
5826}
5827
92e90b6e
PB
5828/* Parse the operands of a table branch instruction. Similar to a memory
5829 operand. */
5830static int
5831parse_tb (char **str)
5832{
5833 char * p = *str;
5834 int reg;
5835
5836 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
5837 {
5838 inst.error = _("'[' expected");
5839 return FAIL;
5840 }
92e90b6e 5841
dcbf9037 5842 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5843 {
5844 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5845 return FAIL;
5846 }
5847 inst.operands[0].reg = reg;
5848
5849 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
5850 {
5851 inst.error = _("',' expected");
5852 return FAIL;
5853 }
5f4273c7 5854
dcbf9037 5855 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5856 {
5857 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5858 return FAIL;
5859 }
5860 inst.operands[0].imm = reg;
5861
5862 if (skip_past_comma (&p) == SUCCESS)
5863 {
5864 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
5865 return FAIL;
5866 if (inst.reloc.exp.X_add_number != 1)
5867 {
5868 inst.error = _("invalid shift");
5869 return FAIL;
5870 }
5871 inst.operands[0].shifted = 1;
5872 }
5873
5874 if (skip_past_char (&p, ']') == FAIL)
5875 {
5876 inst.error = _("']' expected");
5877 return FAIL;
5878 }
5879 *str = p;
5880 return SUCCESS;
5881}
5882
5287ad62
JB
5883/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
5884 information on the types the operands can take and how they are encoded.
037e8744
JB
5885 Up to four operands may be read; this function handles setting the
5886 ".present" field for each read operand itself.
5287ad62
JB
5887 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
5888 else returns FAIL. */
5889
5890static int
5891parse_neon_mov (char **str, int *which_operand)
5892{
5893 int i = *which_operand, val;
5894 enum arm_reg_type rtype;
5895 char *ptr = *str;
dcbf9037 5896 struct neon_type_el optype;
5f4273c7 5897
dcbf9037 5898 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
5899 {
5900 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
5901 inst.operands[i].reg = val;
5902 inst.operands[i].isscalar = 1;
dcbf9037 5903 inst.operands[i].vectype = optype;
5287ad62
JB
5904 inst.operands[i++].present = 1;
5905
5906 if (skip_past_comma (&ptr) == FAIL)
477330fc 5907 goto wanted_comma;
5f4273c7 5908
dcbf9037 5909 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
477330fc 5910 goto wanted_arm;
5f4273c7 5911
5287ad62
JB
5912 inst.operands[i].reg = val;
5913 inst.operands[i].isreg = 1;
5914 inst.operands[i].present = 1;
5915 }
037e8744 5916 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
477330fc 5917 != FAIL)
5287ad62
JB
5918 {
5919 /* Cases 0, 1, 2, 3, 5 (D only). */
5920 if (skip_past_comma (&ptr) == FAIL)
477330fc 5921 goto wanted_comma;
5f4273c7 5922
5287ad62
JB
5923 inst.operands[i].reg = val;
5924 inst.operands[i].isreg = 1;
5925 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5926 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5927 inst.operands[i].isvec = 1;
dcbf9037 5928 inst.operands[i].vectype = optype;
5287ad62
JB
5929 inst.operands[i++].present = 1;
5930
dcbf9037 5931 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
477330fc
RM
5932 {
5933 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
5934 Case 13: VMOV <Sd>, <Rm> */
5935 inst.operands[i].reg = val;
5936 inst.operands[i].isreg = 1;
5937 inst.operands[i].present = 1;
5938
5939 if (rtype == REG_TYPE_NQ)
5940 {
5941 first_error (_("can't use Neon quad register here"));
5942 return FAIL;
5943 }
5944 else if (rtype != REG_TYPE_VFS)
5945 {
5946 i++;
5947 if (skip_past_comma (&ptr) == FAIL)
5948 goto wanted_comma;
5949 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5950 goto wanted_arm;
5951 inst.operands[i].reg = val;
5952 inst.operands[i].isreg = 1;
5953 inst.operands[i].present = 1;
5954 }
5955 }
037e8744 5956 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
477330fc
RM
5957 &optype)) != FAIL)
5958 {
5959 /* Case 0: VMOV<c><q> <Qd>, <Qm>
5960 Case 1: VMOV<c><q> <Dd>, <Dm>
5961 Case 8: VMOV.F32 <Sd>, <Sm>
5962 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
5963
5964 inst.operands[i].reg = val;
5965 inst.operands[i].isreg = 1;
5966 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
5967 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5968 inst.operands[i].isvec = 1;
5969 inst.operands[i].vectype = optype;
5970 inst.operands[i].present = 1;
5971
5972 if (skip_past_comma (&ptr) == SUCCESS)
5973 {
5974 /* Case 15. */
5975 i++;
5976
5977 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5978 goto wanted_arm;
5979
5980 inst.operands[i].reg = val;
5981 inst.operands[i].isreg = 1;
5982 inst.operands[i++].present = 1;
5983
5984 if (skip_past_comma (&ptr) == FAIL)
5985 goto wanted_comma;
5986
5987 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5988 goto wanted_arm;
5989
5990 inst.operands[i].reg = val;
5991 inst.operands[i].isreg = 1;
5992 inst.operands[i].present = 1;
5993 }
5994 }
4641781c 5995 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
477330fc
RM
5996 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
5997 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
5998 Case 10: VMOV.F32 <Sd>, #<imm>
5999 Case 11: VMOV.F64 <Dd>, #<imm> */
6000 inst.operands[i].immisfloat = 1;
4641781c 6001 else if (parse_big_immediate (&ptr, i) == SUCCESS)
477330fc
RM
6002 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
6003 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
6004 ;
5287ad62 6005 else
477330fc
RM
6006 {
6007 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
6008 return FAIL;
6009 }
5287ad62 6010 }
dcbf9037 6011 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6012 {
6013 /* Cases 6, 7. */
6014 inst.operands[i].reg = val;
6015 inst.operands[i].isreg = 1;
6016 inst.operands[i++].present = 1;
5f4273c7 6017
5287ad62 6018 if (skip_past_comma (&ptr) == FAIL)
477330fc 6019 goto wanted_comma;
5f4273c7 6020
dcbf9037 6021 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
477330fc
RM
6022 {
6023 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6024 inst.operands[i].reg = val;
6025 inst.operands[i].isscalar = 1;
6026 inst.operands[i].present = 1;
6027 inst.operands[i].vectype = optype;
6028 }
dcbf9037 6029 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
477330fc
RM
6030 {
6031 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6032 inst.operands[i].reg = val;
6033 inst.operands[i].isreg = 1;
6034 inst.operands[i++].present = 1;
6035
6036 if (skip_past_comma (&ptr) == FAIL)
6037 goto wanted_comma;
6038
6039 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
6040 == FAIL)
6041 {
6042 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
6043 return FAIL;
6044 }
6045
6046 inst.operands[i].reg = val;
6047 inst.operands[i].isreg = 1;
6048 inst.operands[i].isvec = 1;
6049 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6050 inst.operands[i].vectype = optype;
6051 inst.operands[i].present = 1;
6052
6053 if (rtype == REG_TYPE_VFS)
6054 {
6055 /* Case 14. */
6056 i++;
6057 if (skip_past_comma (&ptr) == FAIL)
6058 goto wanted_comma;
6059 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6060 &optype)) == FAIL)
6061 {
6062 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6063 return FAIL;
6064 }
6065 inst.operands[i].reg = val;
6066 inst.operands[i].isreg = 1;
6067 inst.operands[i].isvec = 1;
6068 inst.operands[i].issingle = 1;
6069 inst.operands[i].vectype = optype;
6070 inst.operands[i].present = 1;
6071 }
6072 }
037e8744 6073 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
477330fc
RM
6074 != FAIL)
6075 {
6076 /* Case 13. */
6077 inst.operands[i].reg = val;
6078 inst.operands[i].isreg = 1;
6079 inst.operands[i].isvec = 1;
6080 inst.operands[i].issingle = 1;
6081 inst.operands[i].vectype = optype;
6082 inst.operands[i].present = 1;
6083 }
5287ad62
JB
6084 }
6085 else
6086 {
dcbf9037 6087 first_error (_("parse error"));
5287ad62
JB
6088 return FAIL;
6089 }
6090
6091 /* Successfully parsed the operands. Update args. */
6092 *which_operand = i;
6093 *str = ptr;
6094 return SUCCESS;
6095
5f4273c7 6096 wanted_comma:
dcbf9037 6097 first_error (_("expected comma"));
5287ad62 6098 return FAIL;
5f4273c7
NC
6099
6100 wanted_arm:
dcbf9037 6101 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 6102 return FAIL;
5287ad62
JB
6103}
6104
5be8be5d
DG
6105/* Use this macro when the operand constraints are different
6106 for ARM and THUMB (e.g. ldrd). */
6107#define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6108 ((arm_operand) | ((thumb_operand) << 16))
6109
c19d1205
ZW
6110/* Matcher codes for parse_operands. */
6111enum operand_parse_code
6112{
6113 OP_stop, /* end of line */
6114
6115 OP_RR, /* ARM register */
6116 OP_RRnpc, /* ARM register, not r15 */
5be8be5d 6117 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
c19d1205 6118 OP_RRnpcb, /* ARM register, not r15, in square brackets */
fa94de6b 6119 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
55881a11 6120 optional trailing ! */
c19d1205
ZW
6121 OP_RRw, /* ARM register, not r15, optional trailing ! */
6122 OP_RCP, /* Coprocessor number */
6123 OP_RCN, /* Coprocessor register */
6124 OP_RF, /* FPA register */
6125 OP_RVS, /* VFP single precision register */
5287ad62
JB
6126 OP_RVD, /* VFP double precision register (0..15) */
6127 OP_RND, /* Neon double precision register (0..31) */
6128 OP_RNQ, /* Neon quad precision register */
037e8744 6129 OP_RVSD, /* VFP single or double precision register */
5287ad62 6130 OP_RNDQ, /* Neon double or quad precision register */
037e8744 6131 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 6132 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
6133 OP_RVC, /* VFP control register */
6134 OP_RMF, /* Maverick F register */
6135 OP_RMD, /* Maverick D register */
6136 OP_RMFX, /* Maverick FX register */
6137 OP_RMDX, /* Maverick DX register */
6138 OP_RMAX, /* Maverick AX register */
6139 OP_RMDS, /* Maverick DSPSC register */
6140 OP_RIWR, /* iWMMXt wR register */
6141 OP_RIWC, /* iWMMXt wC register */
6142 OP_RIWG, /* iWMMXt wCG register */
6143 OP_RXA, /* XScale accumulator register */
6144
6145 OP_REGLST, /* ARM register list */
6146 OP_VRSLST, /* VFP single-precision register list */
6147 OP_VRDLST, /* VFP double-precision register list */
037e8744 6148 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
6149 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
6150 OP_NSTRLST, /* Neon element/structure list */
6151
5287ad62 6152 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 6153 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
5287ad62 6154 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 6155 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
6156 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
6157 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
6158 OP_VMOV, /* Neon VMOV operands. */
4316f0d2 6159 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
5287ad62 6160 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
2d447fca 6161 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
5287ad62
JB
6162
6163 OP_I0, /* immediate zero */
c19d1205
ZW
6164 OP_I7, /* immediate value 0 .. 7 */
6165 OP_I15, /* 0 .. 15 */
6166 OP_I16, /* 1 .. 16 */
5287ad62 6167 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
6168 OP_I31, /* 0 .. 31 */
6169 OP_I31w, /* 0 .. 31, optional trailing ! */
6170 OP_I32, /* 1 .. 32 */
5287ad62
JB
6171 OP_I32z, /* 0 .. 32 */
6172 OP_I63, /* 0 .. 63 */
c19d1205 6173 OP_I63s, /* -64 .. 63 */
5287ad62
JB
6174 OP_I64, /* 1 .. 64 */
6175 OP_I64z, /* 0 .. 64 */
c19d1205 6176 OP_I255, /* 0 .. 255 */
c19d1205
ZW
6177
6178 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
6179 OP_I7b, /* 0 .. 7 */
6180 OP_I15b, /* 0 .. 15 */
6181 OP_I31b, /* 0 .. 31 */
6182
6183 OP_SH, /* shifter operand */
4962c51a 6184 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 6185 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
6186 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
6187 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
6188 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
6189 OP_EXP, /* arbitrary expression */
6190 OP_EXPi, /* same, with optional immediate prefix */
6191 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 6192 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c19d1205
ZW
6193
6194 OP_CPSF, /* CPS flags */
6195 OP_ENDI, /* Endianness specifier */
d2cd1205
JB
6196 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
6197 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
c19d1205 6198 OP_COND, /* conditional code */
92e90b6e 6199 OP_TB, /* Table branch. */
c19d1205 6200
037e8744
JB
6201 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
6202
c19d1205
ZW
6203 OP_RRnpc_I0, /* ARM register or literal 0 */
6204 OP_RR_EXr, /* ARM register or expression with opt. reloc suff. */
6205 OP_RR_EXi, /* ARM register or expression with imm prefix */
6206 OP_RF_IF, /* FPA register or immediate */
6207 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 6208 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
6209
6210 /* Optional operands. */
6211 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
6212 OP_oI31b, /* 0 .. 31 */
5287ad62 6213 OP_oI32b, /* 1 .. 32 */
5f1af56b 6214 OP_oI32z, /* 0 .. 32 */
c19d1205
ZW
6215 OP_oIffffb, /* 0 .. 65535 */
6216 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
6217
6218 OP_oRR, /* ARM register */
6219 OP_oRRnpc, /* ARM register, not the PC */
5be8be5d 6220 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
b6702015 6221 OP_oRRw, /* ARM register, not r15, optional trailing ! */
5287ad62
JB
6222 OP_oRND, /* Optional Neon double precision register */
6223 OP_oRNQ, /* Optional Neon quad precision register */
6224 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 6225 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
6226 OP_oSHll, /* LSL immediate */
6227 OP_oSHar, /* ASR immediate */
6228 OP_oSHllar, /* LSL or ASR immediate */
6229 OP_oROR, /* ROR 0/8/16/24 */
52e7f43d 6230 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
c19d1205 6231
5be8be5d
DG
6232 /* Some pre-defined mixed (ARM/THUMB) operands. */
6233 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
6234 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
6235 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
6236
c19d1205
ZW
6237 OP_FIRST_OPTIONAL = OP_oI7b
6238};
a737bd4d 6239
c19d1205
ZW
6240/* Generic instruction operand parser. This does no encoding and no
6241 semantic validation; it merely squirrels values away in the inst
6242 structure. Returns SUCCESS or FAIL depending on whether the
6243 specified grammar matched. */
6244static int
5be8be5d 6245parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
c19d1205 6246{
5be8be5d 6247 unsigned const int *upat = pattern;
c19d1205
ZW
6248 char *backtrack_pos = 0;
6249 const char *backtrack_error = 0;
99aad254 6250 int i, val = 0, backtrack_index = 0;
5287ad62 6251 enum arm_reg_type rtype;
4962c51a 6252 parse_operand_result result;
5be8be5d 6253 unsigned int op_parse_code;
c19d1205 6254
e07e6e58
NC
6255#define po_char_or_fail(chr) \
6256 do \
6257 { \
6258 if (skip_past_char (&str, chr) == FAIL) \
477330fc 6259 goto bad_args; \
e07e6e58
NC
6260 } \
6261 while (0)
c19d1205 6262
e07e6e58
NC
6263#define po_reg_or_fail(regtype) \
6264 do \
dcbf9037 6265 { \
e07e6e58 6266 val = arm_typed_reg_parse (& str, regtype, & rtype, \
477330fc 6267 & inst.operands[i].vectype); \
e07e6e58 6268 if (val == FAIL) \
477330fc
RM
6269 { \
6270 first_error (_(reg_expected_msgs[regtype])); \
6271 goto failure; \
6272 } \
e07e6e58
NC
6273 inst.operands[i].reg = val; \
6274 inst.operands[i].isreg = 1; \
6275 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6276 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6277 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
477330fc
RM
6278 || rtype == REG_TYPE_VFD \
6279 || rtype == REG_TYPE_NQ); \
dcbf9037 6280 } \
e07e6e58
NC
6281 while (0)
6282
6283#define po_reg_or_goto(regtype, label) \
6284 do \
6285 { \
6286 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6287 & inst.operands[i].vectype); \
6288 if (val == FAIL) \
6289 goto label; \
dcbf9037 6290 \
e07e6e58
NC
6291 inst.operands[i].reg = val; \
6292 inst.operands[i].isreg = 1; \
6293 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6294 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6295 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
477330fc 6296 || rtype == REG_TYPE_VFD \
e07e6e58
NC
6297 || rtype == REG_TYPE_NQ); \
6298 } \
6299 while (0)
6300
6301#define po_imm_or_fail(min, max, popt) \
6302 do \
6303 { \
6304 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
6305 goto failure; \
6306 inst.operands[i].imm = val; \
6307 } \
6308 while (0)
6309
6310#define po_scalar_or_goto(elsz, label) \
6311 do \
6312 { \
6313 val = parse_scalar (& str, elsz, & inst.operands[i].vectype); \
6314 if (val == FAIL) \
6315 goto label; \
6316 inst.operands[i].reg = val; \
6317 inst.operands[i].isscalar = 1; \
6318 } \
6319 while (0)
6320
6321#define po_misc_or_fail(expr) \
6322 do \
6323 { \
6324 if (expr) \
6325 goto failure; \
6326 } \
6327 while (0)
6328
6329#define po_misc_or_fail_no_backtrack(expr) \
6330 do \
6331 { \
6332 result = expr; \
6333 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
6334 backtrack_pos = 0; \
6335 if (result != PARSE_OPERAND_SUCCESS) \
6336 goto failure; \
6337 } \
6338 while (0)
4962c51a 6339
52e7f43d
RE
6340#define po_barrier_or_imm(str) \
6341 do \
6342 { \
6343 val = parse_barrier (&str); \
ccb84d65
JB
6344 if (val == FAIL && ! ISALPHA (*str)) \
6345 goto immediate; \
6346 if (val == FAIL \
6347 /* ISB can only take SY as an option. */ \
6348 || ((inst.instruction & 0xf0) == 0x60 \
6349 && val != 0xf)) \
52e7f43d 6350 { \
ccb84d65
JB
6351 inst.error = _("invalid barrier type"); \
6352 backtrack_pos = 0; \
6353 goto failure; \
52e7f43d
RE
6354 } \
6355 } \
6356 while (0)
6357
c19d1205
ZW
6358 skip_whitespace (str);
6359
6360 for (i = 0; upat[i] != OP_stop; i++)
6361 {
5be8be5d
DG
6362 op_parse_code = upat[i];
6363 if (op_parse_code >= 1<<16)
6364 op_parse_code = thumb ? (op_parse_code >> 16)
6365 : (op_parse_code & ((1<<16)-1));
6366
6367 if (op_parse_code >= OP_FIRST_OPTIONAL)
c19d1205
ZW
6368 {
6369 /* Remember where we are in case we need to backtrack. */
9c2799c2 6370 gas_assert (!backtrack_pos);
c19d1205
ZW
6371 backtrack_pos = str;
6372 backtrack_error = inst.error;
6373 backtrack_index = i;
6374 }
6375
b6702015 6376 if (i > 0 && (i > 1 || inst.operands[0].present))
c19d1205
ZW
6377 po_char_or_fail (',');
6378
5be8be5d 6379 switch (op_parse_code)
c19d1205
ZW
6380 {
6381 /* Registers */
6382 case OP_oRRnpc:
5be8be5d 6383 case OP_oRRnpcsp:
c19d1205 6384 case OP_RRnpc:
5be8be5d 6385 case OP_RRnpcsp:
c19d1205
ZW
6386 case OP_oRR:
6387 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
6388 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
6389 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
6390 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
6391 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
6392 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
477330fc 6393 case OP_oRND:
5287ad62 6394 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
cd2cf30b
PB
6395 case OP_RVC:
6396 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
6397 break;
6398 /* Also accept generic coprocessor regs for unknown registers. */
6399 coproc_reg:
6400 po_reg_or_fail (REG_TYPE_CN);
6401 break;
c19d1205
ZW
6402 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
6403 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
6404 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
6405 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
6406 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
6407 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
6408 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
6409 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
6410 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
6411 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
477330fc 6412 case OP_oRNQ:
5287ad62 6413 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
477330fc 6414 case OP_oRNDQ:
5287ad62 6415 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
477330fc
RM
6416 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
6417 case OP_oRNSDQ:
6418 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
6419
6420 /* Neon scalar. Using an element size of 8 means that some invalid
6421 scalars are accepted here, so deal with those in later code. */
6422 case OP_RNSC: po_scalar_or_goto (8, failure); break;
6423
6424 case OP_RNDQ_I0:
6425 {
6426 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
6427 break;
6428 try_imm0:
6429 po_imm_or_fail (0, 0, TRUE);
6430 }
6431 break;
6432
6433 case OP_RVSD_I0:
6434 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
6435 break;
6436
6437 case OP_RR_RNSC:
6438 {
6439 po_scalar_or_goto (8, try_rr);
6440 break;
6441 try_rr:
6442 po_reg_or_fail (REG_TYPE_RN);
6443 }
6444 break;
6445
6446 case OP_RNSDQ_RNSC:
6447 {
6448 po_scalar_or_goto (8, try_nsdq);
6449 break;
6450 try_nsdq:
6451 po_reg_or_fail (REG_TYPE_NSDQ);
6452 }
6453 break;
6454
6455 case OP_RNDQ_RNSC:
6456 {
6457 po_scalar_or_goto (8, try_ndq);
6458 break;
6459 try_ndq:
6460 po_reg_or_fail (REG_TYPE_NDQ);
6461 }
6462 break;
6463
6464 case OP_RND_RNSC:
6465 {
6466 po_scalar_or_goto (8, try_vfd);
6467 break;
6468 try_vfd:
6469 po_reg_or_fail (REG_TYPE_VFD);
6470 }
6471 break;
6472
6473 case OP_VMOV:
6474 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
6475 not careful then bad things might happen. */
6476 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
6477 break;
6478
6479 case OP_RNDQ_Ibig:
6480 {
6481 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
6482 break;
6483 try_immbig:
6484 /* There's a possibility of getting a 64-bit immediate here, so
6485 we need special handling. */
6486 if (parse_big_immediate (&str, i) == FAIL)
6487 {
6488 inst.error = _("immediate value is out of range");
6489 goto failure;
6490 }
6491 }
6492 break;
6493
6494 case OP_RNDQ_I63b:
6495 {
6496 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
6497 break;
6498 try_shimm:
6499 po_imm_or_fail (0, 63, TRUE);
6500 }
6501 break;
c19d1205
ZW
6502
6503 case OP_RRnpcb:
6504 po_char_or_fail ('[');
6505 po_reg_or_fail (REG_TYPE_RN);
6506 po_char_or_fail (']');
6507 break;
a737bd4d 6508
55881a11 6509 case OP_RRnpctw:
c19d1205 6510 case OP_RRw:
b6702015 6511 case OP_oRRw:
c19d1205
ZW
6512 po_reg_or_fail (REG_TYPE_RN);
6513 if (skip_past_char (&str, '!') == SUCCESS)
6514 inst.operands[i].writeback = 1;
6515 break;
6516
6517 /* Immediates */
6518 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
6519 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
6520 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
477330fc 6521 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
6522 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
6523 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
477330fc 6524 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 6525 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
477330fc
RM
6526 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
6527 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
6528 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 6529 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
6530
6531 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
6532 case OP_oI7b:
6533 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
6534 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
6535 case OP_oI31b:
6536 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
477330fc
RM
6537 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
6538 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
c19d1205
ZW
6539 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
6540
6541 /* Immediate variants */
6542 case OP_oI255c:
6543 po_char_or_fail ('{');
6544 po_imm_or_fail (0, 255, TRUE);
6545 po_char_or_fail ('}');
6546 break;
6547
6548 case OP_I31w:
6549 /* The expression parser chokes on a trailing !, so we have
6550 to find it first and zap it. */
6551 {
6552 char *s = str;
6553 while (*s && *s != ',')
6554 s++;
6555 if (s[-1] == '!')
6556 {
6557 s[-1] = '\0';
6558 inst.operands[i].writeback = 1;
6559 }
6560 po_imm_or_fail (0, 31, TRUE);
6561 if (str == s - 1)
6562 str = s;
6563 }
6564 break;
6565
6566 /* Expressions */
6567 case OP_EXPi: EXPi:
6568 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6569 GE_OPT_PREFIX));
6570 break;
6571
6572 case OP_EXP:
6573 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6574 GE_NO_PREFIX));
6575 break;
6576
6577 case OP_EXPr: EXPr:
6578 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6579 GE_NO_PREFIX));
6580 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 6581 {
c19d1205
ZW
6582 val = parse_reloc (&str);
6583 if (val == -1)
6584 {
6585 inst.error = _("unrecognized relocation suffix");
6586 goto failure;
6587 }
6588 else if (val != BFD_RELOC_UNUSED)
6589 {
6590 inst.operands[i].imm = val;
6591 inst.operands[i].hasreloc = 1;
6592 }
a737bd4d 6593 }
c19d1205 6594 break;
a737bd4d 6595
b6895b4f
PB
6596 /* Operand for MOVW or MOVT. */
6597 case OP_HALF:
6598 po_misc_or_fail (parse_half (&str));
6599 break;
6600
e07e6e58 6601 /* Register or expression. */
c19d1205
ZW
6602 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
6603 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 6604
e07e6e58 6605 /* Register or immediate. */
c19d1205
ZW
6606 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
6607 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 6608
c19d1205
ZW
6609 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
6610 IF:
6611 if (!is_immediate_prefix (*str))
6612 goto bad_args;
6613 str++;
6614 val = parse_fpa_immediate (&str);
6615 if (val == FAIL)
6616 goto failure;
6617 /* FPA immediates are encoded as registers 8-15.
6618 parse_fpa_immediate has already applied the offset. */
6619 inst.operands[i].reg = val;
6620 inst.operands[i].isreg = 1;
6621 break;
09d92015 6622
2d447fca
JM
6623 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
6624 I32z: po_imm_or_fail (0, 32, FALSE); break;
6625
e07e6e58 6626 /* Two kinds of register. */
c19d1205
ZW
6627 case OP_RIWR_RIWC:
6628 {
6629 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
6630 if (!rege
6631 || (rege->type != REG_TYPE_MMXWR
6632 && rege->type != REG_TYPE_MMXWC
6633 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
6634 {
6635 inst.error = _("iWMMXt data or control register expected");
6636 goto failure;
6637 }
6638 inst.operands[i].reg = rege->number;
6639 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
6640 }
6641 break;
09d92015 6642
41adaa5c
JM
6643 case OP_RIWC_RIWG:
6644 {
6645 struct reg_entry *rege = arm_reg_parse_multi (&str);
6646 if (!rege
6647 || (rege->type != REG_TYPE_MMXWC
6648 && rege->type != REG_TYPE_MMXWCG))
6649 {
6650 inst.error = _("iWMMXt control register expected");
6651 goto failure;
6652 }
6653 inst.operands[i].reg = rege->number;
6654 inst.operands[i].isreg = 1;
6655 }
6656 break;
6657
c19d1205
ZW
6658 /* Misc */
6659 case OP_CPSF: val = parse_cps_flags (&str); break;
6660 case OP_ENDI: val = parse_endian_specifier (&str); break;
6661 case OP_oROR: val = parse_ror (&str); break;
c19d1205 6662 case OP_COND: val = parse_cond (&str); break;
52e7f43d
RE
6663 case OP_oBARRIER_I15:
6664 po_barrier_or_imm (str); break;
6665 immediate:
6666 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
477330fc 6667 goto failure;
52e7f43d 6668 break;
c19d1205 6669
fa94de6b 6670 case OP_wPSR:
d2cd1205 6671 case OP_rPSR:
90ec0d68
MGD
6672 po_reg_or_goto (REG_TYPE_RNB, try_psr);
6673 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
6674 {
6675 inst.error = _("Banked registers are not available with this "
6676 "architecture.");
6677 goto failure;
6678 }
6679 break;
d2cd1205
JB
6680 try_psr:
6681 val = parse_psr (&str, op_parse_code == OP_wPSR);
6682 break;
037e8744 6683
477330fc
RM
6684 case OP_APSR_RR:
6685 po_reg_or_goto (REG_TYPE_RN, try_apsr);
6686 break;
6687 try_apsr:
6688 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
6689 instruction). */
6690 if (strncasecmp (str, "APSR_", 5) == 0)
6691 {
6692 unsigned found = 0;
6693 str += 5;
6694 while (found < 15)
6695 switch (*str++)
6696 {
6697 case 'c': found = (found & 1) ? 16 : found | 1; break;
6698 case 'n': found = (found & 2) ? 16 : found | 2; break;
6699 case 'z': found = (found & 4) ? 16 : found | 4; break;
6700 case 'v': found = (found & 8) ? 16 : found | 8; break;
6701 default: found = 16;
6702 }
6703 if (found != 15)
6704 goto failure;
6705 inst.operands[i].isvec = 1;
f7c21dc7
NC
6706 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
6707 inst.operands[i].reg = REG_PC;
477330fc
RM
6708 }
6709 else
6710 goto failure;
6711 break;
037e8744 6712
92e90b6e
PB
6713 case OP_TB:
6714 po_misc_or_fail (parse_tb (&str));
6715 break;
6716
e07e6e58 6717 /* Register lists. */
c19d1205
ZW
6718 case OP_REGLST:
6719 val = parse_reg_list (&str);
6720 if (*str == '^')
6721 {
6722 inst.operands[1].writeback = 1;
6723 str++;
6724 }
6725 break;
09d92015 6726
c19d1205 6727 case OP_VRSLST:
5287ad62 6728 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 6729 break;
09d92015 6730
c19d1205 6731 case OP_VRDLST:
5287ad62 6732 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 6733 break;
a737bd4d 6734
477330fc
RM
6735 case OP_VRSDLST:
6736 /* Allow Q registers too. */
6737 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6738 REGLIST_NEON_D);
6739 if (val == FAIL)
6740 {
6741 inst.error = NULL;
6742 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6743 REGLIST_VFP_S);
6744 inst.operands[i].issingle = 1;
6745 }
6746 break;
6747
6748 case OP_NRDLST:
6749 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6750 REGLIST_NEON_D);
6751 break;
5287ad62
JB
6752
6753 case OP_NSTRLST:
477330fc
RM
6754 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
6755 &inst.operands[i].vectype);
6756 break;
5287ad62 6757
c19d1205
ZW
6758 /* Addressing modes */
6759 case OP_ADDR:
6760 po_misc_or_fail (parse_address (&str, i));
6761 break;
09d92015 6762
4962c51a
MS
6763 case OP_ADDRGLDR:
6764 po_misc_or_fail_no_backtrack (
477330fc 6765 parse_address_group_reloc (&str, i, GROUP_LDR));
4962c51a
MS
6766 break;
6767
6768 case OP_ADDRGLDRS:
6769 po_misc_or_fail_no_backtrack (
477330fc 6770 parse_address_group_reloc (&str, i, GROUP_LDRS));
4962c51a
MS
6771 break;
6772
6773 case OP_ADDRGLDC:
6774 po_misc_or_fail_no_backtrack (
477330fc 6775 parse_address_group_reloc (&str, i, GROUP_LDC));
4962c51a
MS
6776 break;
6777
c19d1205
ZW
6778 case OP_SH:
6779 po_misc_or_fail (parse_shifter_operand (&str, i));
6780 break;
09d92015 6781
4962c51a
MS
6782 case OP_SHG:
6783 po_misc_or_fail_no_backtrack (
477330fc 6784 parse_shifter_operand_group_reloc (&str, i));
4962c51a
MS
6785 break;
6786
c19d1205
ZW
6787 case OP_oSHll:
6788 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
6789 break;
09d92015 6790
c19d1205
ZW
6791 case OP_oSHar:
6792 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
6793 break;
09d92015 6794
c19d1205
ZW
6795 case OP_oSHllar:
6796 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
6797 break;
09d92015 6798
c19d1205 6799 default:
5be8be5d 6800 as_fatal (_("unhandled operand code %d"), op_parse_code);
c19d1205 6801 }
09d92015 6802
c19d1205
ZW
6803 /* Various value-based sanity checks and shared operations. We
6804 do not signal immediate failures for the register constraints;
6805 this allows a syntax error to take precedence. */
5be8be5d 6806 switch (op_parse_code)
c19d1205
ZW
6807 {
6808 case OP_oRRnpc:
6809 case OP_RRnpc:
6810 case OP_RRnpcb:
6811 case OP_RRw:
b6702015 6812 case OP_oRRw:
c19d1205
ZW
6813 case OP_RRnpc_I0:
6814 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
6815 inst.error = BAD_PC;
6816 break;
09d92015 6817
5be8be5d
DG
6818 case OP_oRRnpcsp:
6819 case OP_RRnpcsp:
6820 if (inst.operands[i].isreg)
6821 {
6822 if (inst.operands[i].reg == REG_PC)
6823 inst.error = BAD_PC;
6824 else if (inst.operands[i].reg == REG_SP)
6825 inst.error = BAD_SP;
6826 }
6827 break;
6828
55881a11 6829 case OP_RRnpctw:
fa94de6b
RM
6830 if (inst.operands[i].isreg
6831 && inst.operands[i].reg == REG_PC
55881a11
MGD
6832 && (inst.operands[i].writeback || thumb))
6833 inst.error = BAD_PC;
6834 break;
6835
c19d1205
ZW
6836 case OP_CPSF:
6837 case OP_ENDI:
6838 case OP_oROR:
d2cd1205
JB
6839 case OP_wPSR:
6840 case OP_rPSR:
c19d1205 6841 case OP_COND:
52e7f43d 6842 case OP_oBARRIER_I15:
c19d1205
ZW
6843 case OP_REGLST:
6844 case OP_VRSLST:
6845 case OP_VRDLST:
477330fc
RM
6846 case OP_VRSDLST:
6847 case OP_NRDLST:
6848 case OP_NSTRLST:
c19d1205
ZW
6849 if (val == FAIL)
6850 goto failure;
6851 inst.operands[i].imm = val;
6852 break;
a737bd4d 6853
c19d1205
ZW
6854 default:
6855 break;
6856 }
09d92015 6857
c19d1205
ZW
6858 /* If we get here, this operand was successfully parsed. */
6859 inst.operands[i].present = 1;
6860 continue;
09d92015 6861
c19d1205 6862 bad_args:
09d92015 6863 inst.error = BAD_ARGS;
c19d1205
ZW
6864
6865 failure:
6866 if (!backtrack_pos)
d252fdde
PB
6867 {
6868 /* The parse routine should already have set inst.error, but set a
5f4273c7 6869 default here just in case. */
d252fdde
PB
6870 if (!inst.error)
6871 inst.error = _("syntax error");
6872 return FAIL;
6873 }
c19d1205
ZW
6874
6875 /* Do not backtrack over a trailing optional argument that
6876 absorbed some text. We will only fail again, with the
6877 'garbage following instruction' error message, which is
6878 probably less helpful than the current one. */
6879 if (backtrack_index == i && backtrack_pos != str
6880 && upat[i+1] == OP_stop)
d252fdde
PB
6881 {
6882 if (!inst.error)
6883 inst.error = _("syntax error");
6884 return FAIL;
6885 }
c19d1205
ZW
6886
6887 /* Try again, skipping the optional argument at backtrack_pos. */
6888 str = backtrack_pos;
6889 inst.error = backtrack_error;
6890 inst.operands[backtrack_index].present = 0;
6891 i = backtrack_index;
6892 backtrack_pos = 0;
09d92015 6893 }
09d92015 6894
c19d1205
ZW
6895 /* Check that we have parsed all the arguments. */
6896 if (*str != '\0' && !inst.error)
6897 inst.error = _("garbage following instruction");
09d92015 6898
c19d1205 6899 return inst.error ? FAIL : SUCCESS;
09d92015
MM
6900}
6901
c19d1205
ZW
6902#undef po_char_or_fail
6903#undef po_reg_or_fail
6904#undef po_reg_or_goto
6905#undef po_imm_or_fail
5287ad62 6906#undef po_scalar_or_fail
52e7f43d 6907#undef po_barrier_or_imm
e07e6e58 6908
c19d1205 6909/* Shorthand macro for instruction encoding functions issuing errors. */
e07e6e58
NC
6910#define constraint(expr, err) \
6911 do \
c19d1205 6912 { \
e07e6e58
NC
6913 if (expr) \
6914 { \
6915 inst.error = err; \
6916 return; \
6917 } \
c19d1205 6918 } \
e07e6e58 6919 while (0)
c19d1205 6920
fdfde340
JM
6921/* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
6922 instructions are unpredictable if these registers are used. This
6923 is the BadReg predicate in ARM's Thumb-2 documentation. */
6924#define reject_bad_reg(reg) \
6925 do \
6926 if (reg == REG_SP || reg == REG_PC) \
6927 { \
6928 inst.error = (reg == REG_SP) ? BAD_SP : BAD_PC; \
6929 return; \
6930 } \
6931 while (0)
6932
94206790
MM
6933/* If REG is R13 (the stack pointer), warn that its use is
6934 deprecated. */
6935#define warn_deprecated_sp(reg) \
6936 do \
6937 if (warn_on_deprecated && reg == REG_SP) \
6938 as_warn (_("use of r13 is deprecated")); \
6939 while (0)
6940
c19d1205
ZW
6941/* Functions for operand encoding. ARM, then Thumb. */
6942
6943#define rotate_left(v, n) (v << n | v >> (32 - n))
6944
6945/* If VAL can be encoded in the immediate field of an ARM instruction,
6946 return the encoded form. Otherwise, return FAIL. */
6947
6948static unsigned int
6949encode_arm_immediate (unsigned int val)
09d92015 6950{
c19d1205
ZW
6951 unsigned int a, i;
6952
6953 for (i = 0; i < 32; i += 2)
6954 if ((a = rotate_left (val, i)) <= 0xff)
6955 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
6956
6957 return FAIL;
09d92015
MM
6958}
6959
c19d1205
ZW
6960/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
6961 return the encoded form. Otherwise, return FAIL. */
6962static unsigned int
6963encode_thumb32_immediate (unsigned int val)
09d92015 6964{
c19d1205 6965 unsigned int a, i;
09d92015 6966
9c3c69f2 6967 if (val <= 0xff)
c19d1205 6968 return val;
a737bd4d 6969
9c3c69f2 6970 for (i = 1; i <= 24; i++)
09d92015 6971 {
9c3c69f2
PB
6972 a = val >> i;
6973 if ((val & ~(0xff << i)) == 0)
6974 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 6975 }
a737bd4d 6976
c19d1205
ZW
6977 a = val & 0xff;
6978 if (val == ((a << 16) | a))
6979 return 0x100 | a;
6980 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
6981 return 0x300 | a;
09d92015 6982
c19d1205
ZW
6983 a = val & 0xff00;
6984 if (val == ((a << 16) | a))
6985 return 0x200 | (a >> 8);
a737bd4d 6986
c19d1205 6987 return FAIL;
09d92015 6988}
5287ad62 6989/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
6990
6991static void
5287ad62
JB
6992encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
6993{
6994 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
6995 && reg > 15)
6996 {
b1cc4aeb 6997 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
477330fc
RM
6998 {
6999 if (thumb_mode)
7000 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
7001 fpu_vfp_ext_d32);
7002 else
7003 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
7004 fpu_vfp_ext_d32);
7005 }
5287ad62 7006 else
477330fc
RM
7007 {
7008 first_error (_("D register out of range for selected VFP version"));
7009 return;
7010 }
5287ad62
JB
7011 }
7012
c19d1205 7013 switch (pos)
09d92015 7014 {
c19d1205
ZW
7015 case VFP_REG_Sd:
7016 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
7017 break;
7018
7019 case VFP_REG_Sn:
7020 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
7021 break;
7022
7023 case VFP_REG_Sm:
7024 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
7025 break;
7026
5287ad62
JB
7027 case VFP_REG_Dd:
7028 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
7029 break;
5f4273c7 7030
5287ad62
JB
7031 case VFP_REG_Dn:
7032 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
7033 break;
5f4273c7 7034
5287ad62
JB
7035 case VFP_REG_Dm:
7036 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
7037 break;
7038
c19d1205
ZW
7039 default:
7040 abort ();
09d92015 7041 }
09d92015
MM
7042}
7043
c19d1205 7044/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 7045 if any, is handled by md_apply_fix. */
09d92015 7046static void
c19d1205 7047encode_arm_shift (int i)
09d92015 7048{
c19d1205
ZW
7049 if (inst.operands[i].shift_kind == SHIFT_RRX)
7050 inst.instruction |= SHIFT_ROR << 5;
7051 else
09d92015 7052 {
c19d1205
ZW
7053 inst.instruction |= inst.operands[i].shift_kind << 5;
7054 if (inst.operands[i].immisreg)
7055 {
7056 inst.instruction |= SHIFT_BY_REG;
7057 inst.instruction |= inst.operands[i].imm << 8;
7058 }
7059 else
7060 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 7061 }
c19d1205 7062}
09d92015 7063
c19d1205
ZW
7064static void
7065encode_arm_shifter_operand (int i)
7066{
7067 if (inst.operands[i].isreg)
09d92015 7068 {
c19d1205
ZW
7069 inst.instruction |= inst.operands[i].reg;
7070 encode_arm_shift (i);
09d92015 7071 }
c19d1205 7072 else
a415b1cd
JB
7073 {
7074 inst.instruction |= INST_IMMEDIATE;
7075 if (inst.reloc.type != BFD_RELOC_ARM_IMMEDIATE)
7076 inst.instruction |= inst.operands[i].imm;
7077 }
09d92015
MM
7078}
7079
c19d1205 7080/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 7081static void
c19d1205 7082encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 7083{
2b2f5df9
NC
7084 /* PR 14260:
7085 Generate an error if the operand is not a register. */
7086 constraint (!inst.operands[i].isreg,
7087 _("Instruction does not support =N addresses"));
7088
c19d1205 7089 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7090
c19d1205 7091 if (inst.operands[i].preind)
09d92015 7092 {
c19d1205
ZW
7093 if (is_t)
7094 {
7095 inst.error = _("instruction does not accept preindexed addressing");
7096 return;
7097 }
7098 inst.instruction |= PRE_INDEX;
7099 if (inst.operands[i].writeback)
7100 inst.instruction |= WRITE_BACK;
09d92015 7101
c19d1205
ZW
7102 }
7103 else if (inst.operands[i].postind)
7104 {
9c2799c2 7105 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
7106 if (is_t)
7107 inst.instruction |= WRITE_BACK;
7108 }
7109 else /* unindexed - only for coprocessor */
09d92015 7110 {
c19d1205 7111 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
7112 return;
7113 }
7114
c19d1205
ZW
7115 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
7116 && (((inst.instruction & 0x000f0000) >> 16)
7117 == ((inst.instruction & 0x0000f000) >> 12)))
7118 as_warn ((inst.instruction & LOAD_BIT)
7119 ? _("destination register same as write-back base")
7120 : _("source register same as write-back base"));
09d92015
MM
7121}
7122
c19d1205
ZW
7123/* inst.operands[i] was set up by parse_address. Encode it into an
7124 ARM-format mode 2 load or store instruction. If is_t is true,
7125 reject forms that cannot be used with a T instruction (i.e. not
7126 post-indexed). */
a737bd4d 7127static void
c19d1205 7128encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 7129{
5be8be5d
DG
7130 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
7131
c19d1205 7132 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7133
c19d1205 7134 if (inst.operands[i].immisreg)
09d92015 7135 {
5be8be5d
DG
7136 constraint ((inst.operands[i].imm == REG_PC
7137 || (is_pc && inst.operands[i].writeback)),
7138 BAD_PC_ADDRESSING);
c19d1205
ZW
7139 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
7140 inst.instruction |= inst.operands[i].imm;
7141 if (!inst.operands[i].negative)
7142 inst.instruction |= INDEX_UP;
7143 if (inst.operands[i].shifted)
7144 {
7145 if (inst.operands[i].shift_kind == SHIFT_RRX)
7146 inst.instruction |= SHIFT_ROR << 5;
7147 else
7148 {
7149 inst.instruction |= inst.operands[i].shift_kind << 5;
7150 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7151 }
7152 }
09d92015 7153 }
c19d1205 7154 else /* immediate offset in inst.reloc */
09d92015 7155 {
5be8be5d
DG
7156 if (is_pc && !inst.reloc.pc_rel)
7157 {
7158 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
23a10334
JZ
7159
7160 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
7161 cannot use PC in addressing.
7162 PC cannot be used in writeback addressing, either. */
7163 constraint ((is_t || inst.operands[i].writeback),
5be8be5d 7164 BAD_PC_ADDRESSING);
23a10334 7165
dc5ec521 7166 /* Use of PC in str is deprecated for ARMv7. */
23a10334
JZ
7167 if (warn_on_deprecated
7168 && !is_load
7169 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
7170 as_warn (_("use of PC in this instruction is deprecated"));
5be8be5d
DG
7171 }
7172
c19d1205 7173 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7174 {
7175 /* Prefer + for zero encoded value. */
7176 if (!inst.operands[i].negative)
7177 inst.instruction |= INDEX_UP;
7178 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
7179 }
09d92015 7180 }
09d92015
MM
7181}
7182
c19d1205
ZW
7183/* inst.operands[i] was set up by parse_address. Encode it into an
7184 ARM-format mode 3 load or store instruction. Reject forms that
7185 cannot be used with such instructions. If is_t is true, reject
7186 forms that cannot be used with a T instruction (i.e. not
7187 post-indexed). */
7188static void
7189encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 7190{
c19d1205 7191 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 7192 {
c19d1205
ZW
7193 inst.error = _("instruction does not accept scaled register index");
7194 return;
09d92015 7195 }
a737bd4d 7196
c19d1205 7197 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7198
c19d1205
ZW
7199 if (inst.operands[i].immisreg)
7200 {
5be8be5d 7201 constraint ((inst.operands[i].imm == REG_PC
eb9f3f00 7202 || (is_t && inst.operands[i].reg == REG_PC)),
5be8be5d 7203 BAD_PC_ADDRESSING);
eb9f3f00
JB
7204 constraint (inst.operands[i].reg == REG_PC && inst.operands[i].writeback,
7205 BAD_PC_WRITEBACK);
c19d1205
ZW
7206 inst.instruction |= inst.operands[i].imm;
7207 if (!inst.operands[i].negative)
7208 inst.instruction |= INDEX_UP;
7209 }
7210 else /* immediate offset in inst.reloc */
7211 {
5be8be5d
DG
7212 constraint ((inst.operands[i].reg == REG_PC && !inst.reloc.pc_rel
7213 && inst.operands[i].writeback),
7214 BAD_PC_WRITEBACK);
c19d1205
ZW
7215 inst.instruction |= HWOFFSET_IMM;
7216 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7217 {
7218 /* Prefer + for zero encoded value. */
7219 if (!inst.operands[i].negative)
7220 inst.instruction |= INDEX_UP;
7221
7222 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
7223 }
c19d1205 7224 }
a737bd4d
NC
7225}
7226
c19d1205
ZW
7227/* inst.operands[i] was set up by parse_address. Encode it into an
7228 ARM-format instruction. Reject all forms which cannot be encoded
7229 into a coprocessor load/store instruction. If wb_ok is false,
7230 reject use of writeback; if unind_ok is false, reject use of
7231 unindexed addressing. If reloc_override is not 0, use it instead
4962c51a
MS
7232 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
7233 (in which case it is preserved). */
09d92015 7234
c19d1205
ZW
7235static int
7236encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
09d92015 7237{
c19d1205 7238 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7239
9c2799c2 7240 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
09d92015 7241
c19d1205 7242 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
09d92015 7243 {
9c2799c2 7244 gas_assert (!inst.operands[i].writeback);
c19d1205
ZW
7245 if (!unind_ok)
7246 {
7247 inst.error = _("instruction does not support unindexed addressing");
7248 return FAIL;
7249 }
7250 inst.instruction |= inst.operands[i].imm;
7251 inst.instruction |= INDEX_UP;
7252 return SUCCESS;
09d92015 7253 }
a737bd4d 7254
c19d1205
ZW
7255 if (inst.operands[i].preind)
7256 inst.instruction |= PRE_INDEX;
a737bd4d 7257
c19d1205 7258 if (inst.operands[i].writeback)
09d92015 7259 {
c19d1205
ZW
7260 if (inst.operands[i].reg == REG_PC)
7261 {
7262 inst.error = _("pc may not be used with write-back");
7263 return FAIL;
7264 }
7265 if (!wb_ok)
7266 {
7267 inst.error = _("instruction does not support writeback");
7268 return FAIL;
7269 }
7270 inst.instruction |= WRITE_BACK;
09d92015 7271 }
a737bd4d 7272
c19d1205 7273 if (reloc_override)
21d799b5 7274 inst.reloc.type = (bfd_reloc_code_real_type) reloc_override;
4962c51a 7275 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
477330fc
RM
7276 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
7277 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
4962c51a
MS
7278 {
7279 if (thumb_mode)
477330fc 7280 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
4962c51a 7281 else
477330fc 7282 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
4962c51a
MS
7283 }
7284
26d97720
NS
7285 /* Prefer + for zero encoded value. */
7286 if (!inst.operands[i].negative)
7287 inst.instruction |= INDEX_UP;
7288
c19d1205
ZW
7289 return SUCCESS;
7290}
a737bd4d 7291
c19d1205
ZW
7292/* inst.reloc.exp describes an "=expr" load pseudo-operation.
7293 Determine whether it can be performed with a move instruction; if
7294 it can, convert inst.instruction to that move instruction and
c921be7d
NC
7295 return TRUE; if it can't, convert inst.instruction to a literal-pool
7296 load and return FALSE. If this is not a valid thing to do in the
7297 current context, set inst.error and return TRUE.
a737bd4d 7298
c19d1205
ZW
7299 inst.operands[i] describes the destination register. */
7300
c921be7d 7301static bfd_boolean
c19d1205
ZW
7302move_or_literal_pool (int i, bfd_boolean thumb_p, bfd_boolean mode_3)
7303{
53365c0d
PB
7304 unsigned long tbit;
7305
7306 if (thumb_p)
7307 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
7308 else
7309 tbit = LOAD_BIT;
7310
7311 if ((inst.instruction & tbit) == 0)
09d92015 7312 {
c19d1205 7313 inst.error = _("invalid pseudo operation");
c921be7d 7314 return TRUE;
09d92015 7315 }
c19d1205 7316 if (inst.reloc.exp.X_op != O_constant && inst.reloc.exp.X_op != O_symbol)
09d92015
MM
7317 {
7318 inst.error = _("constant expression expected");
c921be7d 7319 return TRUE;
09d92015 7320 }
c19d1205 7321 if (inst.reloc.exp.X_op == O_constant)
09d92015 7322 {
c19d1205
ZW
7323 if (thumb_p)
7324 {
53365c0d 7325 if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
c19d1205
ZW
7326 {
7327 /* This can be done with a mov(1) instruction. */
7328 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
7329 inst.instruction |= inst.reloc.exp.X_add_number;
c921be7d 7330 return TRUE;
c19d1205
ZW
7331 }
7332 }
7333 else
7334 {
7335 int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
7336 if (value != FAIL)
7337 {
7338 /* This can be done with a mov instruction. */
7339 inst.instruction &= LITERAL_MASK;
7340 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
7341 inst.instruction |= value & 0xfff;
c921be7d 7342 return TRUE;
c19d1205 7343 }
09d92015 7344
c19d1205
ZW
7345 value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
7346 if (value != FAIL)
7347 {
7348 /* This can be done with a mvn instruction. */
7349 inst.instruction &= LITERAL_MASK;
7350 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
7351 inst.instruction |= value & 0xfff;
c921be7d 7352 return TRUE;
c19d1205
ZW
7353 }
7354 }
09d92015
MM
7355 }
7356
c19d1205
ZW
7357 if (add_to_lit_pool () == FAIL)
7358 {
7359 inst.error = _("literal pool insertion failed");
c921be7d 7360 return TRUE;
c19d1205
ZW
7361 }
7362 inst.operands[1].reg = REG_PC;
7363 inst.operands[1].isreg = 1;
7364 inst.operands[1].preind = 1;
7365 inst.reloc.pc_rel = 1;
7366 inst.reloc.type = (thumb_p
7367 ? BFD_RELOC_ARM_THUMB_OFFSET
7368 : (mode_3
7369 ? BFD_RELOC_ARM_HWLITERAL
7370 : BFD_RELOC_ARM_LITERAL));
c921be7d 7371 return FALSE;
09d92015
MM
7372}
7373
5f4273c7 7374/* Functions for instruction encoding, sorted by sub-architecture.
c19d1205
ZW
7375 First some generics; their names are taken from the conventional
7376 bit positions for register arguments in ARM format instructions. */
09d92015 7377
a737bd4d 7378static void
c19d1205 7379do_noargs (void)
09d92015 7380{
c19d1205 7381}
a737bd4d 7382
c19d1205
ZW
7383static void
7384do_rd (void)
7385{
7386 inst.instruction |= inst.operands[0].reg << 12;
7387}
a737bd4d 7388
c19d1205
ZW
7389static void
7390do_rd_rm (void)
7391{
7392 inst.instruction |= inst.operands[0].reg << 12;
7393 inst.instruction |= inst.operands[1].reg;
7394}
09d92015 7395
9eb6c0f1
MGD
7396static void
7397do_rm_rn (void)
7398{
7399 inst.instruction |= inst.operands[0].reg;
7400 inst.instruction |= inst.operands[1].reg << 16;
7401}
7402
c19d1205
ZW
7403static void
7404do_rd_rn (void)
7405{
7406 inst.instruction |= inst.operands[0].reg << 12;
7407 inst.instruction |= inst.operands[1].reg << 16;
7408}
a737bd4d 7409
c19d1205
ZW
7410static void
7411do_rn_rd (void)
7412{
7413 inst.instruction |= inst.operands[0].reg << 16;
7414 inst.instruction |= inst.operands[1].reg << 12;
7415}
09d92015 7416
59d09be6
MGD
7417static bfd_boolean
7418check_obsolete (const arm_feature_set *feature, const char *msg)
7419{
7420 if (ARM_CPU_IS_ANY (cpu_variant))
7421 {
7422 as_warn ("%s", msg);
7423 return TRUE;
7424 }
7425 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
7426 {
7427 as_bad ("%s", msg);
7428 return TRUE;
7429 }
7430
7431 return FALSE;
7432}
7433
c19d1205
ZW
7434static void
7435do_rd_rm_rn (void)
7436{
9a64e435 7437 unsigned Rn = inst.operands[2].reg;
708587a4 7438 /* Enforce restrictions on SWP instruction. */
9a64e435 7439 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
56adecf4
DG
7440 {
7441 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
7442 _("Rn must not overlap other operands"));
7443
59d09be6
MGD
7444 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
7445 */
7446 if (!check_obsolete (&arm_ext_v8,
7447 _("swp{b} use is obsoleted for ARMv8 and later"))
7448 && warn_on_deprecated
7449 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
7450 as_warn (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
56adecf4 7451 }
59d09be6 7452
c19d1205
ZW
7453 inst.instruction |= inst.operands[0].reg << 12;
7454 inst.instruction |= inst.operands[1].reg;
9a64e435 7455 inst.instruction |= Rn << 16;
c19d1205 7456}
09d92015 7457
c19d1205
ZW
7458static void
7459do_rd_rn_rm (void)
7460{
7461 inst.instruction |= inst.operands[0].reg << 12;
7462 inst.instruction |= inst.operands[1].reg << 16;
7463 inst.instruction |= inst.operands[2].reg;
7464}
a737bd4d 7465
c19d1205
ZW
7466static void
7467do_rm_rd_rn (void)
7468{
5be8be5d
DG
7469 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
7470 constraint (((inst.reloc.exp.X_op != O_constant
7471 && inst.reloc.exp.X_op != O_illegal)
7472 || inst.reloc.exp.X_add_number != 0),
7473 BAD_ADDR_MODE);
c19d1205
ZW
7474 inst.instruction |= inst.operands[0].reg;
7475 inst.instruction |= inst.operands[1].reg << 12;
7476 inst.instruction |= inst.operands[2].reg << 16;
7477}
09d92015 7478
c19d1205
ZW
7479static void
7480do_imm0 (void)
7481{
7482 inst.instruction |= inst.operands[0].imm;
7483}
09d92015 7484
c19d1205
ZW
7485static void
7486do_rd_cpaddr (void)
7487{
7488 inst.instruction |= inst.operands[0].reg << 12;
7489 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 7490}
a737bd4d 7491
c19d1205
ZW
7492/* ARM instructions, in alphabetical order by function name (except
7493 that wrapper functions appear immediately after the function they
7494 wrap). */
09d92015 7495
c19d1205
ZW
7496/* This is a pseudo-op of the form "adr rd, label" to be converted
7497 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
7498
7499static void
c19d1205 7500do_adr (void)
09d92015 7501{
c19d1205 7502 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7503
c19d1205
ZW
7504 /* Frag hacking will turn this into a sub instruction if the offset turns
7505 out to be negative. */
7506 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 7507 inst.reloc.pc_rel = 1;
2fc8bdac 7508 inst.reloc.exp.X_add_number -= 8;
c19d1205 7509}
b99bd4ef 7510
c19d1205
ZW
7511/* This is a pseudo-op of the form "adrl rd, label" to be converted
7512 into a relative address of the form:
7513 add rd, pc, #low(label-.-8)"
7514 add rd, rd, #high(label-.-8)" */
b99bd4ef 7515
c19d1205
ZW
7516static void
7517do_adrl (void)
7518{
7519 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7520
c19d1205
ZW
7521 /* Frag hacking will turn this into a sub instruction if the offset turns
7522 out to be negative. */
7523 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
7524 inst.reloc.pc_rel = 1;
7525 inst.size = INSN_SIZE * 2;
2fc8bdac 7526 inst.reloc.exp.X_add_number -= 8;
b99bd4ef
NC
7527}
7528
b99bd4ef 7529static void
c19d1205 7530do_arit (void)
b99bd4ef 7531{
c19d1205
ZW
7532 if (!inst.operands[1].present)
7533 inst.operands[1].reg = inst.operands[0].reg;
7534 inst.instruction |= inst.operands[0].reg << 12;
7535 inst.instruction |= inst.operands[1].reg << 16;
7536 encode_arm_shifter_operand (2);
7537}
b99bd4ef 7538
62b3e311
PB
7539static void
7540do_barrier (void)
7541{
7542 if (inst.operands[0].present)
ccb84d65 7543 inst.instruction |= inst.operands[0].imm;
62b3e311
PB
7544 else
7545 inst.instruction |= 0xf;
7546}
7547
c19d1205
ZW
7548static void
7549do_bfc (void)
7550{
7551 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
7552 constraint (msb > 32, _("bit-field extends past end of register"));
7553 /* The instruction encoding stores the LSB and MSB,
7554 not the LSB and width. */
7555 inst.instruction |= inst.operands[0].reg << 12;
7556 inst.instruction |= inst.operands[1].imm << 7;
7557 inst.instruction |= (msb - 1) << 16;
7558}
b99bd4ef 7559
c19d1205
ZW
7560static void
7561do_bfi (void)
7562{
7563 unsigned int msb;
b99bd4ef 7564
c19d1205
ZW
7565 /* #0 in second position is alternative syntax for bfc, which is
7566 the same instruction but with REG_PC in the Rm field. */
7567 if (!inst.operands[1].isreg)
7568 inst.operands[1].reg = REG_PC;
b99bd4ef 7569
c19d1205
ZW
7570 msb = inst.operands[2].imm + inst.operands[3].imm;
7571 constraint (msb > 32, _("bit-field extends past end of register"));
7572 /* The instruction encoding stores the LSB and MSB,
7573 not the LSB and width. */
7574 inst.instruction |= inst.operands[0].reg << 12;
7575 inst.instruction |= inst.operands[1].reg;
7576 inst.instruction |= inst.operands[2].imm << 7;
7577 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
7578}
7579
b99bd4ef 7580static void
c19d1205 7581do_bfx (void)
b99bd4ef 7582{
c19d1205
ZW
7583 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
7584 _("bit-field extends past end of register"));
7585 inst.instruction |= inst.operands[0].reg << 12;
7586 inst.instruction |= inst.operands[1].reg;
7587 inst.instruction |= inst.operands[2].imm << 7;
7588 inst.instruction |= (inst.operands[3].imm - 1) << 16;
7589}
09d92015 7590
c19d1205
ZW
7591/* ARM V5 breakpoint instruction (argument parse)
7592 BKPT <16 bit unsigned immediate>
7593 Instruction is not conditional.
7594 The bit pattern given in insns[] has the COND_ALWAYS condition,
7595 and it is an error if the caller tried to override that. */
b99bd4ef 7596
c19d1205
ZW
7597static void
7598do_bkpt (void)
7599{
7600 /* Top 12 of 16 bits to bits 19:8. */
7601 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 7602
c19d1205
ZW
7603 /* Bottom 4 of 16 bits to bits 3:0. */
7604 inst.instruction |= inst.operands[0].imm & 0xf;
7605}
09d92015 7606
c19d1205
ZW
7607static void
7608encode_branch (int default_reloc)
7609{
7610 if (inst.operands[0].hasreloc)
7611 {
0855e32b
NS
7612 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
7613 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
7614 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
7615 inst.reloc.type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
7616 ? BFD_RELOC_ARM_PLT32
7617 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
c19d1205 7618 }
b99bd4ef 7619 else
9ae92b05 7620 inst.reloc.type = (bfd_reloc_code_real_type) default_reloc;
2fc8bdac 7621 inst.reloc.pc_rel = 1;
b99bd4ef
NC
7622}
7623
b99bd4ef 7624static void
c19d1205 7625do_branch (void)
b99bd4ef 7626{
39b41c9c
PB
7627#ifdef OBJ_ELF
7628 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7629 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7630 else
7631#endif
7632 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
7633}
7634
7635static void
7636do_bl (void)
7637{
7638#ifdef OBJ_ELF
7639 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7640 {
7641 if (inst.cond == COND_ALWAYS)
7642 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
7643 else
7644 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7645 }
7646 else
7647#endif
7648 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 7649}
b99bd4ef 7650
c19d1205
ZW
7651/* ARM V5 branch-link-exchange instruction (argument parse)
7652 BLX <target_addr> ie BLX(1)
7653 BLX{<condition>} <Rm> ie BLX(2)
7654 Unfortunately, there are two different opcodes for this mnemonic.
7655 So, the insns[].value is not used, and the code here zaps values
7656 into inst.instruction.
7657 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 7658
c19d1205
ZW
7659static void
7660do_blx (void)
7661{
7662 if (inst.operands[0].isreg)
b99bd4ef 7663 {
c19d1205
ZW
7664 /* Arg is a register; the opcode provided by insns[] is correct.
7665 It is not illegal to do "blx pc", just useless. */
7666 if (inst.operands[0].reg == REG_PC)
7667 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 7668
c19d1205
ZW
7669 inst.instruction |= inst.operands[0].reg;
7670 }
7671 else
b99bd4ef 7672 {
c19d1205 7673 /* Arg is an address; this instruction cannot be executed
267bf995
RR
7674 conditionally, and the opcode must be adjusted.
7675 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
7676 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
c19d1205 7677 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 7678 inst.instruction = 0xfa000000;
267bf995 7679 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 7680 }
c19d1205
ZW
7681}
7682
7683static void
7684do_bx (void)
7685{
845b51d6
PB
7686 bfd_boolean want_reloc;
7687
c19d1205
ZW
7688 if (inst.operands[0].reg == REG_PC)
7689 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 7690
c19d1205 7691 inst.instruction |= inst.operands[0].reg;
845b51d6
PB
7692 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
7693 it is for ARMv4t or earlier. */
7694 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
7695 if (object_arch && !ARM_CPU_HAS_FEATURE (*object_arch, arm_ext_v5))
7696 want_reloc = TRUE;
7697
5ad34203 7698#ifdef OBJ_ELF
845b51d6 7699 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
5ad34203 7700#endif
584206db 7701 want_reloc = FALSE;
845b51d6
PB
7702
7703 if (want_reloc)
7704 inst.reloc.type = BFD_RELOC_ARM_V4BX;
09d92015
MM
7705}
7706
c19d1205
ZW
7707
7708/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
7709
7710static void
c19d1205 7711do_bxj (void)
a737bd4d 7712{
c19d1205
ZW
7713 if (inst.operands[0].reg == REG_PC)
7714 as_tsktsk (_("use of r15 in bxj is not really useful"));
7715
7716 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
7717}
7718
c19d1205
ZW
7719/* Co-processor data operation:
7720 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
7721 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
7722static void
7723do_cdp (void)
7724{
7725 inst.instruction |= inst.operands[0].reg << 8;
7726 inst.instruction |= inst.operands[1].imm << 20;
7727 inst.instruction |= inst.operands[2].reg << 12;
7728 inst.instruction |= inst.operands[3].reg << 16;
7729 inst.instruction |= inst.operands[4].reg;
7730 inst.instruction |= inst.operands[5].imm << 5;
7731}
a737bd4d
NC
7732
7733static void
c19d1205 7734do_cmp (void)
a737bd4d 7735{
c19d1205
ZW
7736 inst.instruction |= inst.operands[0].reg << 16;
7737 encode_arm_shifter_operand (1);
a737bd4d
NC
7738}
7739
c19d1205
ZW
7740/* Transfer between coprocessor and ARM registers.
7741 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
7742 MRC2
7743 MCR{cond}
7744 MCR2
7745
7746 No special properties. */
09d92015 7747
dcbd0d71
MGD
7748struct deprecated_coproc_regs_s
7749{
7750 unsigned cp;
7751 int opc1;
7752 unsigned crn;
7753 unsigned crm;
7754 int opc2;
7755 arm_feature_set deprecated;
7756 arm_feature_set obsoleted;
7757 const char *dep_msg;
7758 const char *obs_msg;
7759};
7760
7761#define DEPR_ACCESS_V8 \
7762 N_("This coprocessor register access is deprecated in ARMv8")
7763
7764/* Table of all deprecated coprocessor registers. */
7765static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
7766{
7767 {15, 0, 7, 10, 5, /* CP15DMB. */
7768 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7769 DEPR_ACCESS_V8, NULL},
7770 {15, 0, 7, 10, 4, /* CP15DSB. */
7771 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7772 DEPR_ACCESS_V8, NULL},
7773 {15, 0, 7, 5, 4, /* CP15ISB. */
7774 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7775 DEPR_ACCESS_V8, NULL},
7776 {14, 6, 1, 0, 0, /* TEEHBR. */
7777 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7778 DEPR_ACCESS_V8, NULL},
7779 {14, 6, 0, 0, 0, /* TEECR. */
7780 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7781 DEPR_ACCESS_V8, NULL},
7782};
7783
7784#undef DEPR_ACCESS_V8
7785
7786static const size_t deprecated_coproc_reg_count =
7787 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
7788
09d92015 7789static void
c19d1205 7790do_co_reg (void)
09d92015 7791{
fdfde340 7792 unsigned Rd;
dcbd0d71 7793 size_t i;
fdfde340
JM
7794
7795 Rd = inst.operands[2].reg;
7796 if (thumb_mode)
7797 {
7798 if (inst.instruction == 0xee000010
7799 || inst.instruction == 0xfe000010)
7800 /* MCR, MCR2 */
7801 reject_bad_reg (Rd);
7802 else
7803 /* MRC, MRC2 */
7804 constraint (Rd == REG_SP, BAD_SP);
7805 }
7806 else
7807 {
7808 /* MCR */
7809 if (inst.instruction == 0xe000010)
7810 constraint (Rd == REG_PC, BAD_PC);
7811 }
7812
dcbd0d71
MGD
7813 for (i = 0; i < deprecated_coproc_reg_count; ++i)
7814 {
7815 const struct deprecated_coproc_regs_s *r =
7816 deprecated_coproc_regs + i;
7817
7818 if (inst.operands[0].reg == r->cp
7819 && inst.operands[1].imm == r->opc1
7820 && inst.operands[3].reg == r->crn
7821 && inst.operands[4].reg == r->crm
7822 && inst.operands[5].imm == r->opc2)
7823 {
b10bf8c5 7824 if (! ARM_CPU_IS_ANY (cpu_variant)
477330fc 7825 && warn_on_deprecated
dcbd0d71
MGD
7826 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
7827 as_warn ("%s", r->dep_msg);
7828 }
7829 }
fdfde340 7830
c19d1205
ZW
7831 inst.instruction |= inst.operands[0].reg << 8;
7832 inst.instruction |= inst.operands[1].imm << 21;
fdfde340 7833 inst.instruction |= Rd << 12;
c19d1205
ZW
7834 inst.instruction |= inst.operands[3].reg << 16;
7835 inst.instruction |= inst.operands[4].reg;
7836 inst.instruction |= inst.operands[5].imm << 5;
7837}
09d92015 7838
c19d1205
ZW
7839/* Transfer between coprocessor register and pair of ARM registers.
7840 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
7841 MCRR2
7842 MRRC{cond}
7843 MRRC2
b99bd4ef 7844
c19d1205 7845 Two XScale instructions are special cases of these:
09d92015 7846
c19d1205
ZW
7847 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
7848 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 7849
5f4273c7 7850 Result unpredictable if Rd or Rn is R15. */
a737bd4d 7851
c19d1205
ZW
7852static void
7853do_co_reg2c (void)
7854{
fdfde340
JM
7855 unsigned Rd, Rn;
7856
7857 Rd = inst.operands[2].reg;
7858 Rn = inst.operands[3].reg;
7859
7860 if (thumb_mode)
7861 {
7862 reject_bad_reg (Rd);
7863 reject_bad_reg (Rn);
7864 }
7865 else
7866 {
7867 constraint (Rd == REG_PC, BAD_PC);
7868 constraint (Rn == REG_PC, BAD_PC);
7869 }
7870
c19d1205
ZW
7871 inst.instruction |= inst.operands[0].reg << 8;
7872 inst.instruction |= inst.operands[1].imm << 4;
fdfde340
JM
7873 inst.instruction |= Rd << 12;
7874 inst.instruction |= Rn << 16;
c19d1205 7875 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
7876}
7877
c19d1205
ZW
7878static void
7879do_cpsi (void)
7880{
7881 inst.instruction |= inst.operands[0].imm << 6;
a028a6f5
PB
7882 if (inst.operands[1].present)
7883 {
7884 inst.instruction |= CPSI_MMOD;
7885 inst.instruction |= inst.operands[1].imm;
7886 }
c19d1205 7887}
b99bd4ef 7888
62b3e311
PB
7889static void
7890do_dbg (void)
7891{
7892 inst.instruction |= inst.operands[0].imm;
7893}
7894
eea54501
MGD
7895static void
7896do_div (void)
7897{
7898 unsigned Rd, Rn, Rm;
7899
7900 Rd = inst.operands[0].reg;
7901 Rn = (inst.operands[1].present
7902 ? inst.operands[1].reg : Rd);
7903 Rm = inst.operands[2].reg;
7904
7905 constraint ((Rd == REG_PC), BAD_PC);
7906 constraint ((Rn == REG_PC), BAD_PC);
7907 constraint ((Rm == REG_PC), BAD_PC);
7908
7909 inst.instruction |= Rd << 16;
7910 inst.instruction |= Rn << 0;
7911 inst.instruction |= Rm << 8;
7912}
7913
b99bd4ef 7914static void
c19d1205 7915do_it (void)
b99bd4ef 7916{
c19d1205 7917 /* There is no IT instruction in ARM mode. We
e07e6e58
NC
7918 process it to do the validation as if in
7919 thumb mode, just in case the code gets
7920 assembled for thumb using the unified syntax. */
7921
c19d1205 7922 inst.size = 0;
e07e6e58
NC
7923 if (unified_syntax)
7924 {
7925 set_it_insn_type (IT_INSN);
7926 now_it.mask = (inst.instruction & 0xf) | 0x10;
7927 now_it.cc = inst.operands[0].imm;
7928 }
09d92015 7929}
b99bd4ef 7930
6530b175
NC
7931/* If there is only one register in the register list,
7932 then return its register number. Otherwise return -1. */
7933static int
7934only_one_reg_in_list (int range)
7935{
7936 int i = ffs (range) - 1;
7937 return (i > 15 || range != (1 << i)) ? -1 : i;
7938}
7939
09d92015 7940static void
6530b175 7941encode_ldmstm(int from_push_pop_mnem)
ea6ef066 7942{
c19d1205
ZW
7943 int base_reg = inst.operands[0].reg;
7944 int range = inst.operands[1].imm;
6530b175 7945 int one_reg;
ea6ef066 7946
c19d1205
ZW
7947 inst.instruction |= base_reg << 16;
7948 inst.instruction |= range;
ea6ef066 7949
c19d1205
ZW
7950 if (inst.operands[1].writeback)
7951 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 7952
c19d1205 7953 if (inst.operands[0].writeback)
ea6ef066 7954 {
c19d1205
ZW
7955 inst.instruction |= WRITE_BACK;
7956 /* Check for unpredictable uses of writeback. */
7957 if (inst.instruction & LOAD_BIT)
09d92015 7958 {
c19d1205
ZW
7959 /* Not allowed in LDM type 2. */
7960 if ((inst.instruction & LDM_TYPE_2_OR_3)
7961 && ((range & (1 << REG_PC)) == 0))
7962 as_warn (_("writeback of base register is UNPREDICTABLE"));
7963 /* Only allowed if base reg not in list for other types. */
7964 else if (range & (1 << base_reg))
7965 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
7966 }
7967 else /* STM. */
7968 {
7969 /* Not allowed for type 2. */
7970 if (inst.instruction & LDM_TYPE_2_OR_3)
7971 as_warn (_("writeback of base register is UNPREDICTABLE"));
7972 /* Only allowed if base reg not in list, or first in list. */
7973 else if ((range & (1 << base_reg))
7974 && (range & ((1 << base_reg) - 1)))
7975 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 7976 }
ea6ef066 7977 }
6530b175
NC
7978
7979 /* If PUSH/POP has only one register, then use the A2 encoding. */
7980 one_reg = only_one_reg_in_list (range);
7981 if (from_push_pop_mnem && one_reg >= 0)
7982 {
7983 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
7984
7985 inst.instruction &= A_COND_MASK;
7986 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
7987 inst.instruction |= one_reg << 12;
7988 }
7989}
7990
7991static void
7992do_ldmstm (void)
7993{
7994 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
a737bd4d
NC
7995}
7996
c19d1205
ZW
7997/* ARMv5TE load-consecutive (argument parse)
7998 Mode is like LDRH.
7999
8000 LDRccD R, mode
8001 STRccD R, mode. */
8002
a737bd4d 8003static void
c19d1205 8004do_ldrd (void)
a737bd4d 8005{
c19d1205 8006 constraint (inst.operands[0].reg % 2 != 0,
c56791bb 8007 _("first transfer register must be even"));
c19d1205
ZW
8008 constraint (inst.operands[1].present
8009 && inst.operands[1].reg != inst.operands[0].reg + 1,
c56791bb 8010 _("can only transfer two consecutive registers"));
c19d1205
ZW
8011 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
8012 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 8013
c19d1205
ZW
8014 if (!inst.operands[1].present)
8015 inst.operands[1].reg = inst.operands[0].reg + 1;
5f4273c7 8016
c56791bb
RE
8017 /* encode_arm_addr_mode_3 will diagnose overlap between the base
8018 register and the first register written; we have to diagnose
8019 overlap between the base and the second register written here. */
ea6ef066 8020
c56791bb
RE
8021 if (inst.operands[2].reg == inst.operands[1].reg
8022 && (inst.operands[2].writeback || inst.operands[2].postind))
8023 as_warn (_("base register written back, and overlaps "
8024 "second transfer register"));
b05fe5cf 8025
c56791bb
RE
8026 if (!(inst.instruction & V4_STR_BIT))
8027 {
c19d1205 8028 /* For an index-register load, the index register must not overlap the
c56791bb
RE
8029 destination (even if not write-back). */
8030 if (inst.operands[2].immisreg
8031 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
8032 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
8033 as_warn (_("index register overlaps transfer register"));
b05fe5cf 8034 }
c19d1205
ZW
8035 inst.instruction |= inst.operands[0].reg << 12;
8036 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
8037}
8038
8039static void
c19d1205 8040do_ldrex (void)
b05fe5cf 8041{
c19d1205
ZW
8042 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
8043 || inst.operands[1].postind || inst.operands[1].writeback
8044 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
8045 || inst.operands[1].negative
8046 /* This can arise if the programmer has written
8047 strex rN, rM, foo
8048 or if they have mistakenly used a register name as the last
8049 operand, eg:
8050 strex rN, rM, rX
8051 It is very difficult to distinguish between these two cases
8052 because "rX" might actually be a label. ie the register
8053 name has been occluded by a symbol of the same name. So we
8054 just generate a general 'bad addressing mode' type error
8055 message and leave it up to the programmer to discover the
8056 true cause and fix their mistake. */
8057 || (inst.operands[1].reg == REG_PC),
8058 BAD_ADDR_MODE);
b05fe5cf 8059
c19d1205
ZW
8060 constraint (inst.reloc.exp.X_op != O_constant
8061 || inst.reloc.exp.X_add_number != 0,
8062 _("offset must be zero in ARM encoding"));
b05fe5cf 8063
5be8be5d
DG
8064 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
8065
c19d1205
ZW
8066 inst.instruction |= inst.operands[0].reg << 12;
8067 inst.instruction |= inst.operands[1].reg << 16;
8068 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
8069}
8070
8071static void
c19d1205 8072do_ldrexd (void)
b05fe5cf 8073{
c19d1205
ZW
8074 constraint (inst.operands[0].reg % 2 != 0,
8075 _("even register required"));
8076 constraint (inst.operands[1].present
8077 && inst.operands[1].reg != inst.operands[0].reg + 1,
8078 _("can only load two consecutive registers"));
8079 /* If op 1 were present and equal to PC, this function wouldn't
8080 have been called in the first place. */
8081 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 8082
c19d1205
ZW
8083 inst.instruction |= inst.operands[0].reg << 12;
8084 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
8085}
8086
1be5fd2e
NC
8087/* In both ARM and thumb state 'ldr pc, #imm' with an immediate
8088 which is not a multiple of four is UNPREDICTABLE. */
8089static void
8090check_ldr_r15_aligned (void)
8091{
8092 constraint (!(inst.operands[1].immisreg)
8093 && (inst.operands[0].reg == REG_PC
8094 && inst.operands[1].reg == REG_PC
8095 && (inst.reloc.exp.X_add_number & 0x3)),
8096 _("ldr to register 15 must be 4-byte alligned"));
8097}
8098
b05fe5cf 8099static void
c19d1205 8100do_ldst (void)
b05fe5cf 8101{
c19d1205
ZW
8102 inst.instruction |= inst.operands[0].reg << 12;
8103 if (!inst.operands[1].isreg)
8104 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/FALSE))
b05fe5cf 8105 return;
c19d1205 8106 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
1be5fd2e 8107 check_ldr_r15_aligned ();
b05fe5cf
ZW
8108}
8109
8110static void
c19d1205 8111do_ldstt (void)
b05fe5cf 8112{
c19d1205
ZW
8113 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8114 reject [Rn,...]. */
8115 if (inst.operands[1].preind)
b05fe5cf 8116 {
bd3ba5d1
NC
8117 constraint (inst.reloc.exp.X_op != O_constant
8118 || inst.reloc.exp.X_add_number != 0,
c19d1205 8119 _("this instruction requires a post-indexed address"));
b05fe5cf 8120
c19d1205
ZW
8121 inst.operands[1].preind = 0;
8122 inst.operands[1].postind = 1;
8123 inst.operands[1].writeback = 1;
b05fe5cf 8124 }
c19d1205
ZW
8125 inst.instruction |= inst.operands[0].reg << 12;
8126 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
8127}
b05fe5cf 8128
c19d1205 8129/* Halfword and signed-byte load/store operations. */
b05fe5cf 8130
c19d1205
ZW
8131static void
8132do_ldstv4 (void)
8133{
ff4a8d2b 8134 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205
ZW
8135 inst.instruction |= inst.operands[0].reg << 12;
8136 if (!inst.operands[1].isreg)
8137 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/TRUE))
b05fe5cf 8138 return;
c19d1205 8139 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
8140}
8141
8142static void
c19d1205 8143do_ldsttv4 (void)
b05fe5cf 8144{
c19d1205
ZW
8145 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8146 reject [Rn,...]. */
8147 if (inst.operands[1].preind)
b05fe5cf 8148 {
bd3ba5d1
NC
8149 constraint (inst.reloc.exp.X_op != O_constant
8150 || inst.reloc.exp.X_add_number != 0,
c19d1205 8151 _("this instruction requires a post-indexed address"));
b05fe5cf 8152
c19d1205
ZW
8153 inst.operands[1].preind = 0;
8154 inst.operands[1].postind = 1;
8155 inst.operands[1].writeback = 1;
b05fe5cf 8156 }
c19d1205
ZW
8157 inst.instruction |= inst.operands[0].reg << 12;
8158 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
8159}
b05fe5cf 8160
c19d1205
ZW
8161/* Co-processor register load/store.
8162 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
8163static void
8164do_lstc (void)
8165{
8166 inst.instruction |= inst.operands[0].reg << 8;
8167 inst.instruction |= inst.operands[1].reg << 12;
8168 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
8169}
8170
b05fe5cf 8171static void
c19d1205 8172do_mlas (void)
b05fe5cf 8173{
8fb9d7b9 8174 /* This restriction does not apply to mls (nor to mla in v6 or later). */
c19d1205 8175 if (inst.operands[0].reg == inst.operands[1].reg
8fb9d7b9 8176 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
c19d1205 8177 && !(inst.instruction & 0x00400000))
8fb9d7b9 8178 as_tsktsk (_("Rd and Rm should be different in mla"));
b05fe5cf 8179
c19d1205
ZW
8180 inst.instruction |= inst.operands[0].reg << 16;
8181 inst.instruction |= inst.operands[1].reg;
8182 inst.instruction |= inst.operands[2].reg << 8;
8183 inst.instruction |= inst.operands[3].reg << 12;
c19d1205 8184}
b05fe5cf 8185
c19d1205
ZW
8186static void
8187do_mov (void)
8188{
8189 inst.instruction |= inst.operands[0].reg << 12;
8190 encode_arm_shifter_operand (1);
8191}
b05fe5cf 8192
c19d1205
ZW
8193/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
8194static void
8195do_mov16 (void)
8196{
b6895b4f
PB
8197 bfd_vma imm;
8198 bfd_boolean top;
8199
8200 top = (inst.instruction & 0x00400000) != 0;
8201 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
8202 _(":lower16: not allowed this instruction"));
8203 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
8204 _(":upper16: not allowed instruction"));
c19d1205 8205 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
8206 if (inst.reloc.type == BFD_RELOC_UNUSED)
8207 {
8208 imm = inst.reloc.exp.X_add_number;
8209 /* The value is in two pieces: 0:11, 16:19. */
8210 inst.instruction |= (imm & 0x00000fff);
8211 inst.instruction |= (imm & 0x0000f000) << 4;
8212 }
b05fe5cf 8213}
b99bd4ef 8214
037e8744
JB
8215static void do_vfp_nsyn_opcode (const char *);
8216
8217static int
8218do_vfp_nsyn_mrs (void)
8219{
8220 if (inst.operands[0].isvec)
8221 {
8222 if (inst.operands[1].reg != 1)
477330fc 8223 first_error (_("operand 1 must be FPSCR"));
037e8744
JB
8224 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
8225 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
8226 do_vfp_nsyn_opcode ("fmstat");
8227 }
8228 else if (inst.operands[1].isvec)
8229 do_vfp_nsyn_opcode ("fmrx");
8230 else
8231 return FAIL;
5f4273c7 8232
037e8744
JB
8233 return SUCCESS;
8234}
8235
8236static int
8237do_vfp_nsyn_msr (void)
8238{
8239 if (inst.operands[0].isvec)
8240 do_vfp_nsyn_opcode ("fmxr");
8241 else
8242 return FAIL;
8243
8244 return SUCCESS;
8245}
8246
f7c21dc7
NC
8247static void
8248do_vmrs (void)
8249{
8250 unsigned Rt = inst.operands[0].reg;
fa94de6b 8251
16d02dc9 8252 if (thumb_mode && Rt == REG_SP)
f7c21dc7
NC
8253 {
8254 inst.error = BAD_SP;
8255 return;
8256 }
8257
8258 /* APSR_ sets isvec. All other refs to PC are illegal. */
16d02dc9 8259 if (!inst.operands[0].isvec && Rt == REG_PC)
f7c21dc7
NC
8260 {
8261 inst.error = BAD_PC;
8262 return;
8263 }
8264
16d02dc9
JB
8265 /* If we get through parsing the register name, we just insert the number
8266 generated into the instruction without further validation. */
8267 inst.instruction |= (inst.operands[1].reg << 16);
f7c21dc7
NC
8268 inst.instruction |= (Rt << 12);
8269}
8270
8271static void
8272do_vmsr (void)
8273{
8274 unsigned Rt = inst.operands[1].reg;
fa94de6b 8275
f7c21dc7
NC
8276 if (thumb_mode)
8277 reject_bad_reg (Rt);
8278 else if (Rt == REG_PC)
8279 {
8280 inst.error = BAD_PC;
8281 return;
8282 }
8283
16d02dc9
JB
8284 /* If we get through parsing the register name, we just insert the number
8285 generated into the instruction without further validation. */
8286 inst.instruction |= (inst.operands[0].reg << 16);
f7c21dc7
NC
8287 inst.instruction |= (Rt << 12);
8288}
8289
b99bd4ef 8290static void
c19d1205 8291do_mrs (void)
b99bd4ef 8292{
90ec0d68
MGD
8293 unsigned br;
8294
037e8744
JB
8295 if (do_vfp_nsyn_mrs () == SUCCESS)
8296 return;
8297
ff4a8d2b 8298 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205 8299 inst.instruction |= inst.operands[0].reg << 12;
90ec0d68
MGD
8300
8301 if (inst.operands[1].isreg)
8302 {
8303 br = inst.operands[1].reg;
8304 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf000))
8305 as_bad (_("bad register for mrs"));
8306 }
8307 else
8308 {
8309 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
8310 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
8311 != (PSR_c|PSR_f),
d2cd1205 8312 _("'APSR', 'CPSR' or 'SPSR' expected"));
90ec0d68
MGD
8313 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
8314 }
8315
8316 inst.instruction |= br;
c19d1205 8317}
b99bd4ef 8318
c19d1205
ZW
8319/* Two possible forms:
8320 "{C|S}PSR_<field>, Rm",
8321 "{C|S}PSR_f, #expression". */
b99bd4ef 8322
c19d1205
ZW
8323static void
8324do_msr (void)
8325{
037e8744
JB
8326 if (do_vfp_nsyn_msr () == SUCCESS)
8327 return;
8328
c19d1205
ZW
8329 inst.instruction |= inst.operands[0].imm;
8330 if (inst.operands[1].isreg)
8331 inst.instruction |= inst.operands[1].reg;
8332 else
b99bd4ef 8333 {
c19d1205
ZW
8334 inst.instruction |= INST_IMMEDIATE;
8335 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
8336 inst.reloc.pc_rel = 0;
b99bd4ef 8337 }
b99bd4ef
NC
8338}
8339
c19d1205
ZW
8340static void
8341do_mul (void)
a737bd4d 8342{
ff4a8d2b
NC
8343 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
8344
c19d1205
ZW
8345 if (!inst.operands[2].present)
8346 inst.operands[2].reg = inst.operands[0].reg;
8347 inst.instruction |= inst.operands[0].reg << 16;
8348 inst.instruction |= inst.operands[1].reg;
8349 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 8350
8fb9d7b9
MS
8351 if (inst.operands[0].reg == inst.operands[1].reg
8352 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
8353 as_tsktsk (_("Rd and Rm should be different in mul"));
a737bd4d
NC
8354}
8355
c19d1205
ZW
8356/* Long Multiply Parser
8357 UMULL RdLo, RdHi, Rm, Rs
8358 SMULL RdLo, RdHi, Rm, Rs
8359 UMLAL RdLo, RdHi, Rm, Rs
8360 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
8361
8362static void
c19d1205 8363do_mull (void)
b99bd4ef 8364{
c19d1205
ZW
8365 inst.instruction |= inst.operands[0].reg << 12;
8366 inst.instruction |= inst.operands[1].reg << 16;
8367 inst.instruction |= inst.operands[2].reg;
8368 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 8369
682b27ad
PB
8370 /* rdhi and rdlo must be different. */
8371 if (inst.operands[0].reg == inst.operands[1].reg)
8372 as_tsktsk (_("rdhi and rdlo must be different"));
8373
8374 /* rdhi, rdlo and rm must all be different before armv6. */
8375 if ((inst.operands[0].reg == inst.operands[2].reg
c19d1205 8376 || inst.operands[1].reg == inst.operands[2].reg)
682b27ad 8377 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
c19d1205
ZW
8378 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
8379}
b99bd4ef 8380
c19d1205
ZW
8381static void
8382do_nop (void)
8383{
e7495e45
NS
8384 if (inst.operands[0].present
8385 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
c19d1205
ZW
8386 {
8387 /* Architectural NOP hints are CPSR sets with no bits selected. */
8388 inst.instruction &= 0xf0000000;
e7495e45
NS
8389 inst.instruction |= 0x0320f000;
8390 if (inst.operands[0].present)
8391 inst.instruction |= inst.operands[0].imm;
c19d1205 8392 }
b99bd4ef
NC
8393}
8394
c19d1205
ZW
8395/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
8396 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
8397 Condition defaults to COND_ALWAYS.
8398 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
8399
8400static void
c19d1205 8401do_pkhbt (void)
b99bd4ef 8402{
c19d1205
ZW
8403 inst.instruction |= inst.operands[0].reg << 12;
8404 inst.instruction |= inst.operands[1].reg << 16;
8405 inst.instruction |= inst.operands[2].reg;
8406 if (inst.operands[3].present)
8407 encode_arm_shift (3);
8408}
b99bd4ef 8409
c19d1205 8410/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 8411
c19d1205
ZW
8412static void
8413do_pkhtb (void)
8414{
8415 if (!inst.operands[3].present)
b99bd4ef 8416 {
c19d1205
ZW
8417 /* If the shift specifier is omitted, turn the instruction
8418 into pkhbt rd, rm, rn. */
8419 inst.instruction &= 0xfff00010;
8420 inst.instruction |= inst.operands[0].reg << 12;
8421 inst.instruction |= inst.operands[1].reg;
8422 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
8423 }
8424 else
8425 {
c19d1205
ZW
8426 inst.instruction |= inst.operands[0].reg << 12;
8427 inst.instruction |= inst.operands[1].reg << 16;
8428 inst.instruction |= inst.operands[2].reg;
8429 encode_arm_shift (3);
b99bd4ef
NC
8430 }
8431}
8432
c19d1205 8433/* ARMv5TE: Preload-Cache
60e5ef9f 8434 MP Extensions: Preload for write
c19d1205 8435
60e5ef9f 8436 PLD(W) <addr_mode>
c19d1205
ZW
8437
8438 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
8439
8440static void
c19d1205 8441do_pld (void)
b99bd4ef 8442{
c19d1205
ZW
8443 constraint (!inst.operands[0].isreg,
8444 _("'[' expected after PLD mnemonic"));
8445 constraint (inst.operands[0].postind,
8446 _("post-indexed expression used in preload instruction"));
8447 constraint (inst.operands[0].writeback,
8448 _("writeback used in preload instruction"));
8449 constraint (!inst.operands[0].preind,
8450 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
8451 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8452}
b99bd4ef 8453
62b3e311
PB
8454/* ARMv7: PLI <addr_mode> */
8455static void
8456do_pli (void)
8457{
8458 constraint (!inst.operands[0].isreg,
8459 _("'[' expected after PLI mnemonic"));
8460 constraint (inst.operands[0].postind,
8461 _("post-indexed expression used in preload instruction"));
8462 constraint (inst.operands[0].writeback,
8463 _("writeback used in preload instruction"));
8464 constraint (!inst.operands[0].preind,
8465 _("unindexed addressing used in preload instruction"));
8466 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8467 inst.instruction &= ~PRE_INDEX;
8468}
8469
c19d1205
ZW
8470static void
8471do_push_pop (void)
8472{
8473 inst.operands[1] = inst.operands[0];
8474 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
8475 inst.operands[0].isreg = 1;
8476 inst.operands[0].writeback = 1;
8477 inst.operands[0].reg = REG_SP;
6530b175 8478 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
c19d1205 8479}
b99bd4ef 8480
c19d1205
ZW
8481/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
8482 word at the specified address and the following word
8483 respectively.
8484 Unconditionally executed.
8485 Error if Rn is R15. */
b99bd4ef 8486
c19d1205
ZW
8487static void
8488do_rfe (void)
8489{
8490 inst.instruction |= inst.operands[0].reg << 16;
8491 if (inst.operands[0].writeback)
8492 inst.instruction |= WRITE_BACK;
8493}
b99bd4ef 8494
c19d1205 8495/* ARM V6 ssat (argument parse). */
b99bd4ef 8496
c19d1205
ZW
8497static void
8498do_ssat (void)
8499{
8500 inst.instruction |= inst.operands[0].reg << 12;
8501 inst.instruction |= (inst.operands[1].imm - 1) << 16;
8502 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8503
c19d1205
ZW
8504 if (inst.operands[3].present)
8505 encode_arm_shift (3);
b99bd4ef
NC
8506}
8507
c19d1205 8508/* ARM V6 usat (argument parse). */
b99bd4ef
NC
8509
8510static void
c19d1205 8511do_usat (void)
b99bd4ef 8512{
c19d1205
ZW
8513 inst.instruction |= inst.operands[0].reg << 12;
8514 inst.instruction |= inst.operands[1].imm << 16;
8515 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8516
c19d1205
ZW
8517 if (inst.operands[3].present)
8518 encode_arm_shift (3);
b99bd4ef
NC
8519}
8520
c19d1205 8521/* ARM V6 ssat16 (argument parse). */
09d92015
MM
8522
8523static void
c19d1205 8524do_ssat16 (void)
09d92015 8525{
c19d1205
ZW
8526 inst.instruction |= inst.operands[0].reg << 12;
8527 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
8528 inst.instruction |= inst.operands[2].reg;
09d92015
MM
8529}
8530
c19d1205
ZW
8531static void
8532do_usat16 (void)
a737bd4d 8533{
c19d1205
ZW
8534 inst.instruction |= inst.operands[0].reg << 12;
8535 inst.instruction |= inst.operands[1].imm << 16;
8536 inst.instruction |= inst.operands[2].reg;
8537}
a737bd4d 8538
c19d1205
ZW
8539/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
8540 preserving the other bits.
a737bd4d 8541
c19d1205
ZW
8542 setend <endian_specifier>, where <endian_specifier> is either
8543 BE or LE. */
a737bd4d 8544
c19d1205
ZW
8545static void
8546do_setend (void)
8547{
12e37cbc
MGD
8548 if (warn_on_deprecated
8549 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
8550 as_warn (_("setend use is deprecated for ARMv8"));
8551
c19d1205
ZW
8552 if (inst.operands[0].imm)
8553 inst.instruction |= 0x200;
a737bd4d
NC
8554}
8555
8556static void
c19d1205 8557do_shift (void)
a737bd4d 8558{
c19d1205
ZW
8559 unsigned int Rm = (inst.operands[1].present
8560 ? inst.operands[1].reg
8561 : inst.operands[0].reg);
a737bd4d 8562
c19d1205
ZW
8563 inst.instruction |= inst.operands[0].reg << 12;
8564 inst.instruction |= Rm;
8565 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 8566 {
c19d1205
ZW
8567 inst.instruction |= inst.operands[2].reg << 8;
8568 inst.instruction |= SHIFT_BY_REG;
94342ec3
NC
8569 /* PR 12854: Error on extraneous shifts. */
8570 constraint (inst.operands[2].shifted,
8571 _("extraneous shift as part of operand to shift insn"));
a737bd4d
NC
8572 }
8573 else
c19d1205 8574 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
8575}
8576
09d92015 8577static void
3eb17e6b 8578do_smc (void)
09d92015 8579{
3eb17e6b 8580 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 8581 inst.reloc.pc_rel = 0;
09d92015
MM
8582}
8583
90ec0d68
MGD
8584static void
8585do_hvc (void)
8586{
8587 inst.reloc.type = BFD_RELOC_ARM_HVC;
8588 inst.reloc.pc_rel = 0;
8589}
8590
09d92015 8591static void
c19d1205 8592do_swi (void)
09d92015 8593{
c19d1205
ZW
8594 inst.reloc.type = BFD_RELOC_ARM_SWI;
8595 inst.reloc.pc_rel = 0;
09d92015
MM
8596}
8597
c19d1205
ZW
8598/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
8599 SMLAxy{cond} Rd,Rm,Rs,Rn
8600 SMLAWy{cond} Rd,Rm,Rs,Rn
8601 Error if any register is R15. */
e16bb312 8602
c19d1205
ZW
8603static void
8604do_smla (void)
e16bb312 8605{
c19d1205
ZW
8606 inst.instruction |= inst.operands[0].reg << 16;
8607 inst.instruction |= inst.operands[1].reg;
8608 inst.instruction |= inst.operands[2].reg << 8;
8609 inst.instruction |= inst.operands[3].reg << 12;
8610}
a737bd4d 8611
c19d1205
ZW
8612/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
8613 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
8614 Error if any register is R15.
8615 Warning if Rdlo == Rdhi. */
a737bd4d 8616
c19d1205
ZW
8617static void
8618do_smlal (void)
8619{
8620 inst.instruction |= inst.operands[0].reg << 12;
8621 inst.instruction |= inst.operands[1].reg << 16;
8622 inst.instruction |= inst.operands[2].reg;
8623 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 8624
c19d1205
ZW
8625 if (inst.operands[0].reg == inst.operands[1].reg)
8626 as_tsktsk (_("rdhi and rdlo must be different"));
8627}
a737bd4d 8628
c19d1205
ZW
8629/* ARM V5E (El Segundo) signed-multiply (argument parse)
8630 SMULxy{cond} Rd,Rm,Rs
8631 Error if any register is R15. */
a737bd4d 8632
c19d1205
ZW
8633static void
8634do_smul (void)
8635{
8636 inst.instruction |= inst.operands[0].reg << 16;
8637 inst.instruction |= inst.operands[1].reg;
8638 inst.instruction |= inst.operands[2].reg << 8;
8639}
a737bd4d 8640
b6702015
PB
8641/* ARM V6 srs (argument parse). The variable fields in the encoding are
8642 the same for both ARM and Thumb-2. */
a737bd4d 8643
c19d1205
ZW
8644static void
8645do_srs (void)
8646{
b6702015
PB
8647 int reg;
8648
8649 if (inst.operands[0].present)
8650 {
8651 reg = inst.operands[0].reg;
fdfde340 8652 constraint (reg != REG_SP, _("SRS base register must be r13"));
b6702015
PB
8653 }
8654 else
fdfde340 8655 reg = REG_SP;
b6702015
PB
8656
8657 inst.instruction |= reg << 16;
8658 inst.instruction |= inst.operands[1].imm;
8659 if (inst.operands[0].writeback || inst.operands[1].writeback)
c19d1205
ZW
8660 inst.instruction |= WRITE_BACK;
8661}
a737bd4d 8662
c19d1205 8663/* ARM V6 strex (argument parse). */
a737bd4d 8664
c19d1205
ZW
8665static void
8666do_strex (void)
8667{
8668 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8669 || inst.operands[2].postind || inst.operands[2].writeback
8670 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
8671 || inst.operands[2].negative
8672 /* See comment in do_ldrex(). */
8673 || (inst.operands[2].reg == REG_PC),
8674 BAD_ADDR_MODE);
a737bd4d 8675
c19d1205
ZW
8676 constraint (inst.operands[0].reg == inst.operands[1].reg
8677 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 8678
c19d1205
ZW
8679 constraint (inst.reloc.exp.X_op != O_constant
8680 || inst.reloc.exp.X_add_number != 0,
8681 _("offset must be zero in ARM encoding"));
a737bd4d 8682
c19d1205
ZW
8683 inst.instruction |= inst.operands[0].reg << 12;
8684 inst.instruction |= inst.operands[1].reg;
8685 inst.instruction |= inst.operands[2].reg << 16;
8686 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
8687}
8688
877807f8
NC
8689static void
8690do_t_strexbh (void)
8691{
8692 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8693 || inst.operands[2].postind || inst.operands[2].writeback
8694 || inst.operands[2].immisreg || inst.operands[2].shifted
8695 || inst.operands[2].negative,
8696 BAD_ADDR_MODE);
8697
8698 constraint (inst.operands[0].reg == inst.operands[1].reg
8699 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8700
8701 do_rm_rd_rn ();
8702}
8703
e16bb312 8704static void
c19d1205 8705do_strexd (void)
e16bb312 8706{
c19d1205
ZW
8707 constraint (inst.operands[1].reg % 2 != 0,
8708 _("even register required"));
8709 constraint (inst.operands[2].present
8710 && inst.operands[2].reg != inst.operands[1].reg + 1,
8711 _("can only store two consecutive registers"));
8712 /* If op 2 were present and equal to PC, this function wouldn't
8713 have been called in the first place. */
8714 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 8715
c19d1205
ZW
8716 constraint (inst.operands[0].reg == inst.operands[1].reg
8717 || inst.operands[0].reg == inst.operands[1].reg + 1
8718 || inst.operands[0].reg == inst.operands[3].reg,
8719 BAD_OVERLAP);
e16bb312 8720
c19d1205
ZW
8721 inst.instruction |= inst.operands[0].reg << 12;
8722 inst.instruction |= inst.operands[1].reg;
8723 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
8724}
8725
9eb6c0f1
MGD
8726/* ARM V8 STRL. */
8727static void
4b8c8c02 8728do_stlex (void)
9eb6c0f1
MGD
8729{
8730 constraint (inst.operands[0].reg == inst.operands[1].reg
8731 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8732
8733 do_rd_rm_rn ();
8734}
8735
8736static void
4b8c8c02 8737do_t_stlex (void)
9eb6c0f1
MGD
8738{
8739 constraint (inst.operands[0].reg == inst.operands[1].reg
8740 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8741
8742 do_rm_rd_rn ();
8743}
8744
c19d1205
ZW
8745/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
8746 extends it to 32-bits, and adds the result to a value in another
8747 register. You can specify a rotation by 0, 8, 16, or 24 bits
8748 before extracting the 16-bit value.
8749 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
8750 Condition defaults to COND_ALWAYS.
8751 Error if any register uses R15. */
8752
e16bb312 8753static void
c19d1205 8754do_sxtah (void)
e16bb312 8755{
c19d1205
ZW
8756 inst.instruction |= inst.operands[0].reg << 12;
8757 inst.instruction |= inst.operands[1].reg << 16;
8758 inst.instruction |= inst.operands[2].reg;
8759 inst.instruction |= inst.operands[3].imm << 10;
8760}
e16bb312 8761
c19d1205 8762/* ARM V6 SXTH.
e16bb312 8763
c19d1205
ZW
8764 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
8765 Condition defaults to COND_ALWAYS.
8766 Error if any register uses R15. */
e16bb312
NC
8767
8768static void
c19d1205 8769do_sxth (void)
e16bb312 8770{
c19d1205
ZW
8771 inst.instruction |= inst.operands[0].reg << 12;
8772 inst.instruction |= inst.operands[1].reg;
8773 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 8774}
c19d1205
ZW
8775\f
8776/* VFP instructions. In a logical order: SP variant first, monad
8777 before dyad, arithmetic then move then load/store. */
e16bb312
NC
8778
8779static void
c19d1205 8780do_vfp_sp_monadic (void)
e16bb312 8781{
5287ad62
JB
8782 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8783 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8784}
8785
8786static void
c19d1205 8787do_vfp_sp_dyadic (void)
e16bb312 8788{
5287ad62
JB
8789 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8790 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
8791 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8792}
8793
8794static void
c19d1205 8795do_vfp_sp_compare_z (void)
e16bb312 8796{
5287ad62 8797 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
8798}
8799
8800static void
c19d1205 8801do_vfp_dp_sp_cvt (void)
e16bb312 8802{
5287ad62
JB
8803 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8804 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8805}
8806
8807static void
c19d1205 8808do_vfp_sp_dp_cvt (void)
e16bb312 8809{
5287ad62
JB
8810 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8811 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
8812}
8813
8814static void
c19d1205 8815do_vfp_reg_from_sp (void)
e16bb312 8816{
c19d1205 8817 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 8818 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
8819}
8820
8821static void
c19d1205 8822do_vfp_reg2_from_sp2 (void)
e16bb312 8823{
c19d1205
ZW
8824 constraint (inst.operands[2].imm != 2,
8825 _("only two consecutive VFP SP registers allowed here"));
8826 inst.instruction |= inst.operands[0].reg << 12;
8827 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 8828 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8829}
8830
8831static void
c19d1205 8832do_vfp_sp_from_reg (void)
e16bb312 8833{
5287ad62 8834 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 8835 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
8836}
8837
8838static void
c19d1205 8839do_vfp_sp2_from_reg2 (void)
e16bb312 8840{
c19d1205
ZW
8841 constraint (inst.operands[0].imm != 2,
8842 _("only two consecutive VFP SP registers allowed here"));
5287ad62 8843 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
8844 inst.instruction |= inst.operands[1].reg << 12;
8845 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
8846}
8847
8848static void
c19d1205 8849do_vfp_sp_ldst (void)
e16bb312 8850{
5287ad62 8851 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 8852 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8853}
8854
8855static void
c19d1205 8856do_vfp_dp_ldst (void)
e16bb312 8857{
5287ad62 8858 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 8859 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8860}
8861
c19d1205 8862
e16bb312 8863static void
c19d1205 8864vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8865{
c19d1205
ZW
8866 if (inst.operands[0].writeback)
8867 inst.instruction |= WRITE_BACK;
8868 else
8869 constraint (ldstm_type != VFP_LDSTMIA,
8870 _("this addressing mode requires base-register writeback"));
8871 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8872 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 8873 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
8874}
8875
8876static void
c19d1205 8877vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8878{
c19d1205 8879 int count;
e16bb312 8880
c19d1205
ZW
8881 if (inst.operands[0].writeback)
8882 inst.instruction |= WRITE_BACK;
8883 else
8884 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
8885 _("this addressing mode requires base-register writeback"));
e16bb312 8886
c19d1205 8887 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8888 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 8889
c19d1205
ZW
8890 count = inst.operands[1].imm << 1;
8891 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
8892 count += 1;
e16bb312 8893
c19d1205 8894 inst.instruction |= count;
e16bb312
NC
8895}
8896
8897static void
c19d1205 8898do_vfp_sp_ldstmia (void)
e16bb312 8899{
c19d1205 8900 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8901}
8902
8903static void
c19d1205 8904do_vfp_sp_ldstmdb (void)
e16bb312 8905{
c19d1205 8906 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8907}
8908
8909static void
c19d1205 8910do_vfp_dp_ldstmia (void)
e16bb312 8911{
c19d1205 8912 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8913}
8914
8915static void
c19d1205 8916do_vfp_dp_ldstmdb (void)
e16bb312 8917{
c19d1205 8918 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8919}
8920
8921static void
c19d1205 8922do_vfp_xp_ldstmia (void)
e16bb312 8923{
c19d1205
ZW
8924 vfp_dp_ldstm (VFP_LDSTMIAX);
8925}
e16bb312 8926
c19d1205
ZW
8927static void
8928do_vfp_xp_ldstmdb (void)
8929{
8930 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 8931}
5287ad62
JB
8932
8933static void
8934do_vfp_dp_rd_rm (void)
8935{
8936 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8937 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
8938}
8939
8940static void
8941do_vfp_dp_rn_rd (void)
8942{
8943 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
8944 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8945}
8946
8947static void
8948do_vfp_dp_rd_rn (void)
8949{
8950 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8951 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8952}
8953
8954static void
8955do_vfp_dp_rd_rn_rm (void)
8956{
8957 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8958 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8959 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
8960}
8961
8962static void
8963do_vfp_dp_rd (void)
8964{
8965 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8966}
8967
8968static void
8969do_vfp_dp_rm_rd_rn (void)
8970{
8971 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
8972 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8973 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
8974}
8975
8976/* VFPv3 instructions. */
8977static void
8978do_vfp_sp_const (void)
8979{
8980 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
00249aaa
PB
8981 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
8982 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
8983}
8984
8985static void
8986do_vfp_dp_const (void)
8987{
8988 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
00249aaa
PB
8989 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
8990 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
8991}
8992
8993static void
8994vfp_conv (int srcsize)
8995{
5f1af56b
MGD
8996 int immbits = srcsize - inst.operands[1].imm;
8997
fa94de6b
RM
8998 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
8999 {
5f1af56b 9000 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
477330fc 9001 i.e. immbits must be in range 0 - 16. */
5f1af56b
MGD
9002 inst.error = _("immediate value out of range, expected range [0, 16]");
9003 return;
9004 }
fa94de6b 9005 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
5f1af56b
MGD
9006 {
9007 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
477330fc 9008 i.e. immbits must be in range 0 - 31. */
5f1af56b
MGD
9009 inst.error = _("immediate value out of range, expected range [1, 32]");
9010 return;
9011 }
9012
5287ad62
JB
9013 inst.instruction |= (immbits & 1) << 5;
9014 inst.instruction |= (immbits >> 1);
9015}
9016
9017static void
9018do_vfp_sp_conv_16 (void)
9019{
9020 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9021 vfp_conv (16);
9022}
9023
9024static void
9025do_vfp_dp_conv_16 (void)
9026{
9027 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9028 vfp_conv (16);
9029}
9030
9031static void
9032do_vfp_sp_conv_32 (void)
9033{
9034 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9035 vfp_conv (32);
9036}
9037
9038static void
9039do_vfp_dp_conv_32 (void)
9040{
9041 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9042 vfp_conv (32);
9043}
c19d1205
ZW
9044\f
9045/* FPA instructions. Also in a logical order. */
e16bb312 9046
c19d1205
ZW
9047static void
9048do_fpa_cmp (void)
9049{
9050 inst.instruction |= inst.operands[0].reg << 16;
9051 inst.instruction |= inst.operands[1].reg;
9052}
b99bd4ef
NC
9053
9054static void
c19d1205 9055do_fpa_ldmstm (void)
b99bd4ef 9056{
c19d1205
ZW
9057 inst.instruction |= inst.operands[0].reg << 12;
9058 switch (inst.operands[1].imm)
9059 {
9060 case 1: inst.instruction |= CP_T_X; break;
9061 case 2: inst.instruction |= CP_T_Y; break;
9062 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
9063 case 4: break;
9064 default: abort ();
9065 }
b99bd4ef 9066
c19d1205
ZW
9067 if (inst.instruction & (PRE_INDEX | INDEX_UP))
9068 {
9069 /* The instruction specified "ea" or "fd", so we can only accept
9070 [Rn]{!}. The instruction does not really support stacking or
9071 unstacking, so we have to emulate these by setting appropriate
9072 bits and offsets. */
9073 constraint (inst.reloc.exp.X_op != O_constant
9074 || inst.reloc.exp.X_add_number != 0,
9075 _("this instruction does not support indexing"));
b99bd4ef 9076
c19d1205
ZW
9077 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
9078 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 9079
c19d1205
ZW
9080 if (!(inst.instruction & INDEX_UP))
9081 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 9082
c19d1205
ZW
9083 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
9084 {
9085 inst.operands[2].preind = 0;
9086 inst.operands[2].postind = 1;
9087 }
9088 }
b99bd4ef 9089
c19d1205 9090 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 9091}
c19d1205
ZW
9092\f
9093/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 9094
c19d1205
ZW
9095static void
9096do_iwmmxt_tandorc (void)
9097{
9098 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
9099}
b99bd4ef 9100
c19d1205
ZW
9101static void
9102do_iwmmxt_textrc (void)
9103{
9104 inst.instruction |= inst.operands[0].reg << 12;
9105 inst.instruction |= inst.operands[1].imm;
9106}
b99bd4ef
NC
9107
9108static void
c19d1205 9109do_iwmmxt_textrm (void)
b99bd4ef 9110{
c19d1205
ZW
9111 inst.instruction |= inst.operands[0].reg << 12;
9112 inst.instruction |= inst.operands[1].reg << 16;
9113 inst.instruction |= inst.operands[2].imm;
9114}
b99bd4ef 9115
c19d1205
ZW
9116static void
9117do_iwmmxt_tinsr (void)
9118{
9119 inst.instruction |= inst.operands[0].reg << 16;
9120 inst.instruction |= inst.operands[1].reg << 12;
9121 inst.instruction |= inst.operands[2].imm;
9122}
b99bd4ef 9123
c19d1205
ZW
9124static void
9125do_iwmmxt_tmia (void)
9126{
9127 inst.instruction |= inst.operands[0].reg << 5;
9128 inst.instruction |= inst.operands[1].reg;
9129 inst.instruction |= inst.operands[2].reg << 12;
9130}
b99bd4ef 9131
c19d1205
ZW
9132static void
9133do_iwmmxt_waligni (void)
9134{
9135 inst.instruction |= inst.operands[0].reg << 12;
9136 inst.instruction |= inst.operands[1].reg << 16;
9137 inst.instruction |= inst.operands[2].reg;
9138 inst.instruction |= inst.operands[3].imm << 20;
9139}
b99bd4ef 9140
2d447fca
JM
9141static void
9142do_iwmmxt_wmerge (void)
9143{
9144 inst.instruction |= inst.operands[0].reg << 12;
9145 inst.instruction |= inst.operands[1].reg << 16;
9146 inst.instruction |= inst.operands[2].reg;
9147 inst.instruction |= inst.operands[3].imm << 21;
9148}
9149
c19d1205
ZW
9150static void
9151do_iwmmxt_wmov (void)
9152{
9153 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
9154 inst.instruction |= inst.operands[0].reg << 12;
9155 inst.instruction |= inst.operands[1].reg << 16;
9156 inst.instruction |= inst.operands[1].reg;
9157}
b99bd4ef 9158
c19d1205
ZW
9159static void
9160do_iwmmxt_wldstbh (void)
9161{
8f06b2d8 9162 int reloc;
c19d1205 9163 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
9164 if (thumb_mode)
9165 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
9166 else
9167 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
9168 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
9169}
9170
c19d1205
ZW
9171static void
9172do_iwmmxt_wldstw (void)
9173{
9174 /* RIWR_RIWC clears .isreg for a control register. */
9175 if (!inst.operands[0].isreg)
9176 {
9177 constraint (inst.cond != COND_ALWAYS, BAD_COND);
9178 inst.instruction |= 0xf0000000;
9179 }
b99bd4ef 9180
c19d1205
ZW
9181 inst.instruction |= inst.operands[0].reg << 12;
9182 encode_arm_cp_address (1, TRUE, TRUE, 0);
9183}
b99bd4ef
NC
9184
9185static void
c19d1205 9186do_iwmmxt_wldstd (void)
b99bd4ef 9187{
c19d1205 9188 inst.instruction |= inst.operands[0].reg << 12;
2d447fca
JM
9189 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
9190 && inst.operands[1].immisreg)
9191 {
9192 inst.instruction &= ~0x1a000ff;
9193 inst.instruction |= (0xf << 28);
9194 if (inst.operands[1].preind)
9195 inst.instruction |= PRE_INDEX;
9196 if (!inst.operands[1].negative)
9197 inst.instruction |= INDEX_UP;
9198 if (inst.operands[1].writeback)
9199 inst.instruction |= WRITE_BACK;
9200 inst.instruction |= inst.operands[1].reg << 16;
9201 inst.instruction |= inst.reloc.exp.X_add_number << 4;
9202 inst.instruction |= inst.operands[1].imm;
9203 }
9204 else
9205 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 9206}
b99bd4ef 9207
c19d1205
ZW
9208static void
9209do_iwmmxt_wshufh (void)
9210{
9211 inst.instruction |= inst.operands[0].reg << 12;
9212 inst.instruction |= inst.operands[1].reg << 16;
9213 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
9214 inst.instruction |= (inst.operands[2].imm & 0x0f);
9215}
b99bd4ef 9216
c19d1205
ZW
9217static void
9218do_iwmmxt_wzero (void)
9219{
9220 /* WZERO reg is an alias for WANDN reg, reg, reg. */
9221 inst.instruction |= inst.operands[0].reg;
9222 inst.instruction |= inst.operands[0].reg << 12;
9223 inst.instruction |= inst.operands[0].reg << 16;
9224}
2d447fca
JM
9225
9226static void
9227do_iwmmxt_wrwrwr_or_imm5 (void)
9228{
9229 if (inst.operands[2].isreg)
9230 do_rd_rn_rm ();
9231 else {
9232 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
9233 _("immediate operand requires iWMMXt2"));
9234 do_rd_rn ();
9235 if (inst.operands[2].imm == 0)
9236 {
9237 switch ((inst.instruction >> 20) & 0xf)
9238 {
9239 case 4:
9240 case 5:
9241 case 6:
5f4273c7 9242 case 7:
2d447fca
JM
9243 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
9244 inst.operands[2].imm = 16;
9245 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
9246 break;
9247 case 8:
9248 case 9:
9249 case 10:
9250 case 11:
9251 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
9252 inst.operands[2].imm = 32;
9253 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
9254 break;
9255 case 12:
9256 case 13:
9257 case 14:
9258 case 15:
9259 {
9260 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
9261 unsigned long wrn;
9262 wrn = (inst.instruction >> 16) & 0xf;
9263 inst.instruction &= 0xff0fff0f;
9264 inst.instruction |= wrn;
9265 /* Bail out here; the instruction is now assembled. */
9266 return;
9267 }
9268 }
9269 }
9270 /* Map 32 -> 0, etc. */
9271 inst.operands[2].imm &= 0x1f;
9272 inst.instruction |= (0xf << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
9273 }
9274}
c19d1205
ZW
9275\f
9276/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
9277 operations first, then control, shift, and load/store. */
b99bd4ef 9278
c19d1205 9279/* Insns like "foo X,Y,Z". */
b99bd4ef 9280
c19d1205
ZW
9281static void
9282do_mav_triple (void)
9283{
9284 inst.instruction |= inst.operands[0].reg << 16;
9285 inst.instruction |= inst.operands[1].reg;
9286 inst.instruction |= inst.operands[2].reg << 12;
9287}
b99bd4ef 9288
c19d1205
ZW
9289/* Insns like "foo W,X,Y,Z".
9290 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 9291
c19d1205
ZW
9292static void
9293do_mav_quad (void)
9294{
9295 inst.instruction |= inst.operands[0].reg << 5;
9296 inst.instruction |= inst.operands[1].reg << 12;
9297 inst.instruction |= inst.operands[2].reg << 16;
9298 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
9299}
9300
c19d1205
ZW
9301/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
9302static void
9303do_mav_dspsc (void)
a737bd4d 9304{
c19d1205
ZW
9305 inst.instruction |= inst.operands[1].reg << 12;
9306}
a737bd4d 9307
c19d1205
ZW
9308/* Maverick shift immediate instructions.
9309 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
9310 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 9311
c19d1205
ZW
9312static void
9313do_mav_shift (void)
9314{
9315 int imm = inst.operands[2].imm;
a737bd4d 9316
c19d1205
ZW
9317 inst.instruction |= inst.operands[0].reg << 12;
9318 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 9319
c19d1205
ZW
9320 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
9321 Bits 5-7 of the insn should have bits 4-6 of the immediate.
9322 Bit 4 should be 0. */
9323 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 9324
c19d1205
ZW
9325 inst.instruction |= imm;
9326}
9327\f
9328/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 9329
c19d1205
ZW
9330/* Xscale multiply-accumulate (argument parse)
9331 MIAcc acc0,Rm,Rs
9332 MIAPHcc acc0,Rm,Rs
9333 MIAxycc acc0,Rm,Rs. */
a737bd4d 9334
c19d1205
ZW
9335static void
9336do_xsc_mia (void)
9337{
9338 inst.instruction |= inst.operands[1].reg;
9339 inst.instruction |= inst.operands[2].reg << 12;
9340}
a737bd4d 9341
c19d1205 9342/* Xscale move-accumulator-register (argument parse)
a737bd4d 9343
c19d1205 9344 MARcc acc0,RdLo,RdHi. */
b99bd4ef 9345
c19d1205
ZW
9346static void
9347do_xsc_mar (void)
9348{
9349 inst.instruction |= inst.operands[1].reg << 12;
9350 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9351}
9352
c19d1205 9353/* Xscale move-register-accumulator (argument parse)
b99bd4ef 9354
c19d1205 9355 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
9356
9357static void
c19d1205 9358do_xsc_mra (void)
b99bd4ef 9359{
c19d1205
ZW
9360 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
9361 inst.instruction |= inst.operands[0].reg << 12;
9362 inst.instruction |= inst.operands[1].reg << 16;
9363}
9364\f
9365/* Encoding functions relevant only to Thumb. */
b99bd4ef 9366
c19d1205
ZW
9367/* inst.operands[i] is a shifted-register operand; encode
9368 it into inst.instruction in the format used by Thumb32. */
9369
9370static void
9371encode_thumb32_shifted_operand (int i)
9372{
9373 unsigned int value = inst.reloc.exp.X_add_number;
9374 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 9375
9c3c69f2
PB
9376 constraint (inst.operands[i].immisreg,
9377 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
9378 inst.instruction |= inst.operands[i].reg;
9379 if (shift == SHIFT_RRX)
9380 inst.instruction |= SHIFT_ROR << 4;
9381 else
b99bd4ef 9382 {
c19d1205
ZW
9383 constraint (inst.reloc.exp.X_op != O_constant,
9384 _("expression too complex"));
9385
9386 constraint (value > 32
9387 || (value == 32 && (shift == SHIFT_LSL
9388 || shift == SHIFT_ROR)),
9389 _("shift expression is too large"));
9390
9391 if (value == 0)
9392 shift = SHIFT_LSL;
9393 else if (value == 32)
9394 value = 0;
9395
9396 inst.instruction |= shift << 4;
9397 inst.instruction |= (value & 0x1c) << 10;
9398 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 9399 }
c19d1205 9400}
b99bd4ef 9401
b99bd4ef 9402
c19d1205
ZW
9403/* inst.operands[i] was set up by parse_address. Encode it into a
9404 Thumb32 format load or store instruction. Reject forms that cannot
9405 be used with such instructions. If is_t is true, reject forms that
9406 cannot be used with a T instruction; if is_d is true, reject forms
5be8be5d
DG
9407 that cannot be used with a D instruction. If it is a store insn,
9408 reject PC in Rn. */
b99bd4ef 9409
c19d1205
ZW
9410static void
9411encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
9412{
5be8be5d 9413 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
c19d1205
ZW
9414
9415 constraint (!inst.operands[i].isreg,
53365c0d 9416 _("Instruction does not support =N addresses"));
b99bd4ef 9417
c19d1205
ZW
9418 inst.instruction |= inst.operands[i].reg << 16;
9419 if (inst.operands[i].immisreg)
b99bd4ef 9420 {
5be8be5d 9421 constraint (is_pc, BAD_PC_ADDRESSING);
c19d1205
ZW
9422 constraint (is_t || is_d, _("cannot use register index with this instruction"));
9423 constraint (inst.operands[i].negative,
9424 _("Thumb does not support negative register indexing"));
9425 constraint (inst.operands[i].postind,
9426 _("Thumb does not support register post-indexing"));
9427 constraint (inst.operands[i].writeback,
9428 _("Thumb does not support register indexing with writeback"));
9429 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
9430 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 9431
f40d1643 9432 inst.instruction |= inst.operands[i].imm;
c19d1205 9433 if (inst.operands[i].shifted)
b99bd4ef 9434 {
c19d1205
ZW
9435 constraint (inst.reloc.exp.X_op != O_constant,
9436 _("expression too complex"));
9c3c69f2
PB
9437 constraint (inst.reloc.exp.X_add_number < 0
9438 || inst.reloc.exp.X_add_number > 3,
c19d1205 9439 _("shift out of range"));
9c3c69f2 9440 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
9441 }
9442 inst.reloc.type = BFD_RELOC_UNUSED;
9443 }
9444 else if (inst.operands[i].preind)
9445 {
5be8be5d 9446 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
f40d1643 9447 constraint (is_t && inst.operands[i].writeback,
c19d1205 9448 _("cannot use writeback with this instruction"));
4755303e
WN
9449 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0),
9450 BAD_PC_ADDRESSING);
c19d1205
ZW
9451
9452 if (is_d)
9453 {
9454 inst.instruction |= 0x01000000;
9455 if (inst.operands[i].writeback)
9456 inst.instruction |= 0x00200000;
b99bd4ef 9457 }
c19d1205 9458 else
b99bd4ef 9459 {
c19d1205
ZW
9460 inst.instruction |= 0x00000c00;
9461 if (inst.operands[i].writeback)
9462 inst.instruction |= 0x00000100;
b99bd4ef 9463 }
c19d1205 9464 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 9465 }
c19d1205 9466 else if (inst.operands[i].postind)
b99bd4ef 9467 {
9c2799c2 9468 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
9469 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
9470 constraint (is_t, _("cannot use post-indexing with this instruction"));
9471
9472 if (is_d)
9473 inst.instruction |= 0x00200000;
9474 else
9475 inst.instruction |= 0x00000900;
9476 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
9477 }
9478 else /* unindexed - only for coprocessor */
9479 inst.error = _("instruction does not accept unindexed addressing");
9480}
9481
9482/* Table of Thumb instructions which exist in both 16- and 32-bit
9483 encodings (the latter only in post-V6T2 cores). The index is the
9484 value used in the insns table below. When there is more than one
9485 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
9486 holds variant (1).
9487 Also contains several pseudo-instructions used during relaxation. */
c19d1205 9488#define T16_32_TAB \
21d799b5
NC
9489 X(_adc, 4140, eb400000), \
9490 X(_adcs, 4140, eb500000), \
9491 X(_add, 1c00, eb000000), \
9492 X(_adds, 1c00, eb100000), \
9493 X(_addi, 0000, f1000000), \
9494 X(_addis, 0000, f1100000), \
9495 X(_add_pc,000f, f20f0000), \
9496 X(_add_sp,000d, f10d0000), \
9497 X(_adr, 000f, f20f0000), \
9498 X(_and, 4000, ea000000), \
9499 X(_ands, 4000, ea100000), \
9500 X(_asr, 1000, fa40f000), \
9501 X(_asrs, 1000, fa50f000), \
9502 X(_b, e000, f000b000), \
9503 X(_bcond, d000, f0008000), \
9504 X(_bic, 4380, ea200000), \
9505 X(_bics, 4380, ea300000), \
9506 X(_cmn, 42c0, eb100f00), \
9507 X(_cmp, 2800, ebb00f00), \
9508 X(_cpsie, b660, f3af8400), \
9509 X(_cpsid, b670, f3af8600), \
9510 X(_cpy, 4600, ea4f0000), \
9511 X(_dec_sp,80dd, f1ad0d00), \
9512 X(_eor, 4040, ea800000), \
9513 X(_eors, 4040, ea900000), \
9514 X(_inc_sp,00dd, f10d0d00), \
9515 X(_ldmia, c800, e8900000), \
9516 X(_ldr, 6800, f8500000), \
9517 X(_ldrb, 7800, f8100000), \
9518 X(_ldrh, 8800, f8300000), \
9519 X(_ldrsb, 5600, f9100000), \
9520 X(_ldrsh, 5e00, f9300000), \
9521 X(_ldr_pc,4800, f85f0000), \
9522 X(_ldr_pc2,4800, f85f0000), \
9523 X(_ldr_sp,9800, f85d0000), \
9524 X(_lsl, 0000, fa00f000), \
9525 X(_lsls, 0000, fa10f000), \
9526 X(_lsr, 0800, fa20f000), \
9527 X(_lsrs, 0800, fa30f000), \
9528 X(_mov, 2000, ea4f0000), \
9529 X(_movs, 2000, ea5f0000), \
9530 X(_mul, 4340, fb00f000), \
9531 X(_muls, 4340, ffffffff), /* no 32b muls */ \
9532 X(_mvn, 43c0, ea6f0000), \
9533 X(_mvns, 43c0, ea7f0000), \
9534 X(_neg, 4240, f1c00000), /* rsb #0 */ \
9535 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
9536 X(_orr, 4300, ea400000), \
9537 X(_orrs, 4300, ea500000), \
9538 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
9539 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
9540 X(_rev, ba00, fa90f080), \
9541 X(_rev16, ba40, fa90f090), \
9542 X(_revsh, bac0, fa90f0b0), \
9543 X(_ror, 41c0, fa60f000), \
9544 X(_rors, 41c0, fa70f000), \
9545 X(_sbc, 4180, eb600000), \
9546 X(_sbcs, 4180, eb700000), \
9547 X(_stmia, c000, e8800000), \
9548 X(_str, 6000, f8400000), \
9549 X(_strb, 7000, f8000000), \
9550 X(_strh, 8000, f8200000), \
9551 X(_str_sp,9000, f84d0000), \
9552 X(_sub, 1e00, eba00000), \
9553 X(_subs, 1e00, ebb00000), \
9554 X(_subi, 8000, f1a00000), \
9555 X(_subis, 8000, f1b00000), \
9556 X(_sxtb, b240, fa4ff080), \
9557 X(_sxth, b200, fa0ff080), \
9558 X(_tst, 4200, ea100f00), \
9559 X(_uxtb, b2c0, fa5ff080), \
9560 X(_uxth, b280, fa1ff080), \
9561 X(_nop, bf00, f3af8000), \
9562 X(_yield, bf10, f3af8001), \
9563 X(_wfe, bf20, f3af8002), \
9564 X(_wfi, bf30, f3af8003), \
53c4b28b 9565 X(_sev, bf40, f3af8004), \
74db7efb
NC
9566 X(_sevl, bf50, f3af8005), \
9567 X(_udf, de00, f7f0a000)
c19d1205
ZW
9568
9569/* To catch errors in encoding functions, the codes are all offset by
9570 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
9571 as 16-bit instructions. */
21d799b5 9572#define X(a,b,c) T_MNEM##a
c19d1205
ZW
9573enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
9574#undef X
9575
9576#define X(a,b,c) 0x##b
9577static const unsigned short thumb_op16[] = { T16_32_TAB };
9578#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
9579#undef X
9580
9581#define X(a,b,c) 0x##c
9582static const unsigned int thumb_op32[] = { T16_32_TAB };
c921be7d
NC
9583#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
9584#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
c19d1205
ZW
9585#undef X
9586#undef T16_32_TAB
9587
9588/* Thumb instruction encoders, in alphabetical order. */
9589
92e90b6e 9590/* ADDW or SUBW. */
c921be7d 9591
92e90b6e
PB
9592static void
9593do_t_add_sub_w (void)
9594{
9595 int Rd, Rn;
9596
9597 Rd = inst.operands[0].reg;
9598 Rn = inst.operands[1].reg;
9599
539d4391
NC
9600 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
9601 is the SP-{plus,minus}-immediate form of the instruction. */
9602 if (Rn == REG_SP)
9603 constraint (Rd == REG_PC, BAD_PC);
9604 else
9605 reject_bad_reg (Rd);
fdfde340 9606
92e90b6e
PB
9607 inst.instruction |= (Rn << 16) | (Rd << 8);
9608 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9609}
9610
c19d1205
ZW
9611/* Parse an add or subtract instruction. We get here with inst.instruction
9612 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
9613
9614static void
9615do_t_add_sub (void)
9616{
9617 int Rd, Rs, Rn;
9618
9619 Rd = inst.operands[0].reg;
9620 Rs = (inst.operands[1].present
9621 ? inst.operands[1].reg /* Rd, Rs, foo */
9622 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9623
e07e6e58
NC
9624 if (Rd == REG_PC)
9625 set_it_insn_type_last ();
9626
c19d1205
ZW
9627 if (unified_syntax)
9628 {
0110f2b8
PB
9629 bfd_boolean flags;
9630 bfd_boolean narrow;
9631 int opcode;
9632
9633 flags = (inst.instruction == T_MNEM_adds
9634 || inst.instruction == T_MNEM_subs);
9635 if (flags)
e07e6e58 9636 narrow = !in_it_block ();
0110f2b8 9637 else
e07e6e58 9638 narrow = in_it_block ();
c19d1205 9639 if (!inst.operands[2].isreg)
b99bd4ef 9640 {
16805f35
PB
9641 int add;
9642
fdfde340
JM
9643 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9644
16805f35
PB
9645 add = (inst.instruction == T_MNEM_add
9646 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
9647 opcode = 0;
9648 if (inst.size_req != 4)
9649 {
0110f2b8 9650 /* Attempt to use a narrow opcode, with relaxation if
477330fc 9651 appropriate. */
0110f2b8
PB
9652 if (Rd == REG_SP && Rs == REG_SP && !flags)
9653 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
9654 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
9655 opcode = T_MNEM_add_sp;
9656 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
9657 opcode = T_MNEM_add_pc;
9658 else if (Rd <= 7 && Rs <= 7 && narrow)
9659 {
9660 if (flags)
9661 opcode = add ? T_MNEM_addis : T_MNEM_subis;
9662 else
9663 opcode = add ? T_MNEM_addi : T_MNEM_subi;
9664 }
9665 if (opcode)
9666 {
9667 inst.instruction = THUMB_OP16(opcode);
9668 inst.instruction |= (Rd << 4) | Rs;
9669 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9670 if (inst.size_req != 2)
9671 inst.relax = opcode;
9672 }
9673 else
9674 constraint (inst.size_req == 2, BAD_HIREG);
9675 }
9676 if (inst.size_req == 4
9677 || (inst.size_req != 2 && !opcode))
9678 {
efd81785
PB
9679 if (Rd == REG_PC)
9680 {
fdfde340 9681 constraint (add, BAD_PC);
efd81785
PB
9682 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
9683 _("only SUBS PC, LR, #const allowed"));
9684 constraint (inst.reloc.exp.X_op != O_constant,
9685 _("expression too complex"));
9686 constraint (inst.reloc.exp.X_add_number < 0
9687 || inst.reloc.exp.X_add_number > 0xff,
9688 _("immediate value out of range"));
9689 inst.instruction = T2_SUBS_PC_LR
9690 | inst.reloc.exp.X_add_number;
9691 inst.reloc.type = BFD_RELOC_UNUSED;
9692 return;
9693 }
9694 else if (Rs == REG_PC)
16805f35
PB
9695 {
9696 /* Always use addw/subw. */
9697 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
9698 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9699 }
9700 else
9701 {
9702 inst.instruction = THUMB_OP32 (inst.instruction);
9703 inst.instruction = (inst.instruction & 0xe1ffffff)
9704 | 0x10000000;
9705 if (flags)
9706 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9707 else
9708 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
9709 }
dc4503c6
PB
9710 inst.instruction |= Rd << 8;
9711 inst.instruction |= Rs << 16;
0110f2b8 9712 }
b99bd4ef 9713 }
c19d1205
ZW
9714 else
9715 {
5f4cb198
NC
9716 unsigned int value = inst.reloc.exp.X_add_number;
9717 unsigned int shift = inst.operands[2].shift_kind;
9718
c19d1205
ZW
9719 Rn = inst.operands[2].reg;
9720 /* See if we can do this with a 16-bit instruction. */
9721 if (!inst.operands[2].shifted && inst.size_req != 4)
9722 {
e27ec89e
PB
9723 if (Rd > 7 || Rs > 7 || Rn > 7)
9724 narrow = FALSE;
9725
9726 if (narrow)
c19d1205 9727 {
e27ec89e
PB
9728 inst.instruction = ((inst.instruction == T_MNEM_adds
9729 || inst.instruction == T_MNEM_add)
c19d1205
ZW
9730 ? T_OPCODE_ADD_R3
9731 : T_OPCODE_SUB_R3);
9732 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
9733 return;
9734 }
b99bd4ef 9735
7e806470 9736 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
c19d1205 9737 {
7e806470
PB
9738 /* Thumb-1 cores (except v6-M) require at least one high
9739 register in a narrow non flag setting add. */
9740 if (Rd > 7 || Rn > 7
9741 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
9742 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
c19d1205 9743 {
7e806470
PB
9744 if (Rd == Rn)
9745 {
9746 Rn = Rs;
9747 Rs = Rd;
9748 }
c19d1205
ZW
9749 inst.instruction = T_OPCODE_ADD_HI;
9750 inst.instruction |= (Rd & 8) << 4;
9751 inst.instruction |= (Rd & 7);
9752 inst.instruction |= Rn << 3;
9753 return;
9754 }
c19d1205
ZW
9755 }
9756 }
c921be7d 9757
fdfde340
JM
9758 constraint (Rd == REG_PC, BAD_PC);
9759 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9760 constraint (Rs == REG_PC, BAD_PC);
9761 reject_bad_reg (Rn);
9762
c19d1205
ZW
9763 /* If we get here, it can't be done in 16 bits. */
9764 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
9765 _("shift must be constant"));
9766 inst.instruction = THUMB_OP32 (inst.instruction);
9767 inst.instruction |= Rd << 8;
9768 inst.instruction |= Rs << 16;
5f4cb198
NC
9769 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
9770 _("shift value over 3 not allowed in thumb mode"));
9771 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
9772 _("only LSL shift allowed in thumb mode"));
c19d1205
ZW
9773 encode_thumb32_shifted_operand (2);
9774 }
9775 }
9776 else
9777 {
9778 constraint (inst.instruction == T_MNEM_adds
9779 || inst.instruction == T_MNEM_subs,
9780 BAD_THUMB32);
b99bd4ef 9781
c19d1205 9782 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 9783 {
c19d1205
ZW
9784 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
9785 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
9786 BAD_HIREG);
9787
9788 inst.instruction = (inst.instruction == T_MNEM_add
9789 ? 0x0000 : 0x8000);
9790 inst.instruction |= (Rd << 4) | Rs;
9791 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
9792 return;
9793 }
9794
c19d1205
ZW
9795 Rn = inst.operands[2].reg;
9796 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 9797
c19d1205
ZW
9798 /* We now have Rd, Rs, and Rn set to registers. */
9799 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 9800 {
c19d1205
ZW
9801 /* Can't do this for SUB. */
9802 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
9803 inst.instruction = T_OPCODE_ADD_HI;
9804 inst.instruction |= (Rd & 8) << 4;
9805 inst.instruction |= (Rd & 7);
9806 if (Rs == Rd)
9807 inst.instruction |= Rn << 3;
9808 else if (Rn == Rd)
9809 inst.instruction |= Rs << 3;
9810 else
9811 constraint (1, _("dest must overlap one source register"));
9812 }
9813 else
9814 {
9815 inst.instruction = (inst.instruction == T_MNEM_add
9816 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
9817 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 9818 }
b99bd4ef 9819 }
b99bd4ef
NC
9820}
9821
c19d1205
ZW
9822static void
9823do_t_adr (void)
9824{
fdfde340
JM
9825 unsigned Rd;
9826
9827 Rd = inst.operands[0].reg;
9828 reject_bad_reg (Rd);
9829
9830 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
0110f2b8
PB
9831 {
9832 /* Defer to section relaxation. */
9833 inst.relax = inst.instruction;
9834 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 9835 inst.instruction |= Rd << 4;
0110f2b8
PB
9836 }
9837 else if (unified_syntax && inst.size_req != 2)
e9f89963 9838 {
0110f2b8 9839 /* Generate a 32-bit opcode. */
e9f89963 9840 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 9841 inst.instruction |= Rd << 8;
e9f89963
PB
9842 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
9843 inst.reloc.pc_rel = 1;
9844 }
9845 else
9846 {
0110f2b8 9847 /* Generate a 16-bit opcode. */
e9f89963
PB
9848 inst.instruction = THUMB_OP16 (inst.instruction);
9849 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9850 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
9851 inst.reloc.pc_rel = 1;
b99bd4ef 9852
fdfde340 9853 inst.instruction |= Rd << 4;
e9f89963 9854 }
c19d1205 9855}
b99bd4ef 9856
c19d1205
ZW
9857/* Arithmetic instructions for which there is just one 16-bit
9858 instruction encoding, and it allows only two low registers.
9859 For maximal compatibility with ARM syntax, we allow three register
9860 operands even when Thumb-32 instructions are not available, as long
9861 as the first two are identical. For instance, both "sbc r0,r1" and
9862 "sbc r0,r0,r1" are allowed. */
b99bd4ef 9863static void
c19d1205 9864do_t_arit3 (void)
b99bd4ef 9865{
c19d1205 9866 int Rd, Rs, Rn;
b99bd4ef 9867
c19d1205
ZW
9868 Rd = inst.operands[0].reg;
9869 Rs = (inst.operands[1].present
9870 ? inst.operands[1].reg /* Rd, Rs, foo */
9871 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9872 Rn = inst.operands[2].reg;
b99bd4ef 9873
fdfde340
JM
9874 reject_bad_reg (Rd);
9875 reject_bad_reg (Rs);
9876 if (inst.operands[2].isreg)
9877 reject_bad_reg (Rn);
9878
c19d1205 9879 if (unified_syntax)
b99bd4ef 9880 {
c19d1205
ZW
9881 if (!inst.operands[2].isreg)
9882 {
9883 /* For an immediate, we always generate a 32-bit opcode;
9884 section relaxation will shrink it later if possible. */
9885 inst.instruction = THUMB_OP32 (inst.instruction);
9886 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9887 inst.instruction |= Rd << 8;
9888 inst.instruction |= Rs << 16;
9889 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9890 }
9891 else
9892 {
e27ec89e
PB
9893 bfd_boolean narrow;
9894
c19d1205 9895 /* See if we can do this with a 16-bit instruction. */
e27ec89e 9896 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 9897 narrow = !in_it_block ();
e27ec89e 9898 else
e07e6e58 9899 narrow = in_it_block ();
e27ec89e
PB
9900
9901 if (Rd > 7 || Rn > 7 || Rs > 7)
9902 narrow = FALSE;
9903 if (inst.operands[2].shifted)
9904 narrow = FALSE;
9905 if (inst.size_req == 4)
9906 narrow = FALSE;
9907
9908 if (narrow
c19d1205
ZW
9909 && Rd == Rs)
9910 {
9911 inst.instruction = THUMB_OP16 (inst.instruction);
9912 inst.instruction |= Rd;
9913 inst.instruction |= Rn << 3;
9914 return;
9915 }
b99bd4ef 9916
c19d1205
ZW
9917 /* If we get here, it can't be done in 16 bits. */
9918 constraint (inst.operands[2].shifted
9919 && inst.operands[2].immisreg,
9920 _("shift must be constant"));
9921 inst.instruction = THUMB_OP32 (inst.instruction);
9922 inst.instruction |= Rd << 8;
9923 inst.instruction |= Rs << 16;
9924 encode_thumb32_shifted_operand (2);
9925 }
a737bd4d 9926 }
c19d1205 9927 else
b99bd4ef 9928 {
c19d1205
ZW
9929 /* On its face this is a lie - the instruction does set the
9930 flags. However, the only supported mnemonic in this mode
9931 says it doesn't. */
9932 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 9933
c19d1205
ZW
9934 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
9935 _("unshifted register required"));
9936 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
9937 constraint (Rd != Rs,
9938 _("dest and source1 must be the same register"));
a737bd4d 9939
c19d1205
ZW
9940 inst.instruction = THUMB_OP16 (inst.instruction);
9941 inst.instruction |= Rd;
9942 inst.instruction |= Rn << 3;
b99bd4ef 9943 }
a737bd4d 9944}
b99bd4ef 9945
c19d1205
ZW
9946/* Similarly, but for instructions where the arithmetic operation is
9947 commutative, so we can allow either of them to be different from
9948 the destination operand in a 16-bit instruction. For instance, all
9949 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
9950 accepted. */
9951static void
9952do_t_arit3c (void)
a737bd4d 9953{
c19d1205 9954 int Rd, Rs, Rn;
b99bd4ef 9955
c19d1205
ZW
9956 Rd = inst.operands[0].reg;
9957 Rs = (inst.operands[1].present
9958 ? inst.operands[1].reg /* Rd, Rs, foo */
9959 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9960 Rn = inst.operands[2].reg;
c921be7d 9961
fdfde340
JM
9962 reject_bad_reg (Rd);
9963 reject_bad_reg (Rs);
9964 if (inst.operands[2].isreg)
9965 reject_bad_reg (Rn);
a737bd4d 9966
c19d1205 9967 if (unified_syntax)
a737bd4d 9968 {
c19d1205 9969 if (!inst.operands[2].isreg)
b99bd4ef 9970 {
c19d1205
ZW
9971 /* For an immediate, we always generate a 32-bit opcode;
9972 section relaxation will shrink it later if possible. */
9973 inst.instruction = THUMB_OP32 (inst.instruction);
9974 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9975 inst.instruction |= Rd << 8;
9976 inst.instruction |= Rs << 16;
9977 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 9978 }
c19d1205 9979 else
a737bd4d 9980 {
e27ec89e
PB
9981 bfd_boolean narrow;
9982
c19d1205 9983 /* See if we can do this with a 16-bit instruction. */
e27ec89e 9984 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 9985 narrow = !in_it_block ();
e27ec89e 9986 else
e07e6e58 9987 narrow = in_it_block ();
e27ec89e
PB
9988
9989 if (Rd > 7 || Rn > 7 || Rs > 7)
9990 narrow = FALSE;
9991 if (inst.operands[2].shifted)
9992 narrow = FALSE;
9993 if (inst.size_req == 4)
9994 narrow = FALSE;
9995
9996 if (narrow)
a737bd4d 9997 {
c19d1205 9998 if (Rd == Rs)
a737bd4d 9999 {
c19d1205
ZW
10000 inst.instruction = THUMB_OP16 (inst.instruction);
10001 inst.instruction |= Rd;
10002 inst.instruction |= Rn << 3;
10003 return;
a737bd4d 10004 }
c19d1205 10005 if (Rd == Rn)
a737bd4d 10006 {
c19d1205
ZW
10007 inst.instruction = THUMB_OP16 (inst.instruction);
10008 inst.instruction |= Rd;
10009 inst.instruction |= Rs << 3;
10010 return;
a737bd4d
NC
10011 }
10012 }
c19d1205
ZW
10013
10014 /* If we get here, it can't be done in 16 bits. */
10015 constraint (inst.operands[2].shifted
10016 && inst.operands[2].immisreg,
10017 _("shift must be constant"));
10018 inst.instruction = THUMB_OP32 (inst.instruction);
10019 inst.instruction |= Rd << 8;
10020 inst.instruction |= Rs << 16;
10021 encode_thumb32_shifted_operand (2);
a737bd4d 10022 }
b99bd4ef 10023 }
c19d1205
ZW
10024 else
10025 {
10026 /* On its face this is a lie - the instruction does set the
10027 flags. However, the only supported mnemonic in this mode
10028 says it doesn't. */
10029 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10030
c19d1205
ZW
10031 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10032 _("unshifted register required"));
10033 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10034
10035 inst.instruction = THUMB_OP16 (inst.instruction);
10036 inst.instruction |= Rd;
10037
10038 if (Rd == Rs)
10039 inst.instruction |= Rn << 3;
10040 else if (Rd == Rn)
10041 inst.instruction |= Rs << 3;
10042 else
10043 constraint (1, _("dest must overlap one source register"));
10044 }
a737bd4d
NC
10045}
10046
c19d1205
ZW
10047static void
10048do_t_bfc (void)
a737bd4d 10049{
fdfde340 10050 unsigned Rd;
c19d1205
ZW
10051 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
10052 constraint (msb > 32, _("bit-field extends past end of register"));
10053 /* The instruction encoding stores the LSB and MSB,
10054 not the LSB and width. */
fdfde340
JM
10055 Rd = inst.operands[0].reg;
10056 reject_bad_reg (Rd);
10057 inst.instruction |= Rd << 8;
c19d1205
ZW
10058 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
10059 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
10060 inst.instruction |= msb - 1;
b99bd4ef
NC
10061}
10062
c19d1205
ZW
10063static void
10064do_t_bfi (void)
b99bd4ef 10065{
fdfde340 10066 int Rd, Rn;
c19d1205 10067 unsigned int msb;
b99bd4ef 10068
fdfde340
JM
10069 Rd = inst.operands[0].reg;
10070 reject_bad_reg (Rd);
10071
c19d1205
ZW
10072 /* #0 in second position is alternative syntax for bfc, which is
10073 the same instruction but with REG_PC in the Rm field. */
10074 if (!inst.operands[1].isreg)
fdfde340
JM
10075 Rn = REG_PC;
10076 else
10077 {
10078 Rn = inst.operands[1].reg;
10079 reject_bad_reg (Rn);
10080 }
b99bd4ef 10081
c19d1205
ZW
10082 msb = inst.operands[2].imm + inst.operands[3].imm;
10083 constraint (msb > 32, _("bit-field extends past end of register"));
10084 /* The instruction encoding stores the LSB and MSB,
10085 not the LSB and width. */
fdfde340
JM
10086 inst.instruction |= Rd << 8;
10087 inst.instruction |= Rn << 16;
c19d1205
ZW
10088 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10089 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10090 inst.instruction |= msb - 1;
b99bd4ef
NC
10091}
10092
c19d1205
ZW
10093static void
10094do_t_bfx (void)
b99bd4ef 10095{
fdfde340
JM
10096 unsigned Rd, Rn;
10097
10098 Rd = inst.operands[0].reg;
10099 Rn = inst.operands[1].reg;
10100
10101 reject_bad_reg (Rd);
10102 reject_bad_reg (Rn);
10103
c19d1205
ZW
10104 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
10105 _("bit-field extends past end of register"));
fdfde340
JM
10106 inst.instruction |= Rd << 8;
10107 inst.instruction |= Rn << 16;
c19d1205
ZW
10108 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10109 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10110 inst.instruction |= inst.operands[3].imm - 1;
10111}
b99bd4ef 10112
c19d1205
ZW
10113/* ARM V5 Thumb BLX (argument parse)
10114 BLX <target_addr> which is BLX(1)
10115 BLX <Rm> which is BLX(2)
10116 Unfortunately, there are two different opcodes for this mnemonic.
10117 So, the insns[].value is not used, and the code here zaps values
10118 into inst.instruction.
b99bd4ef 10119
c19d1205
ZW
10120 ??? How to take advantage of the additional two bits of displacement
10121 available in Thumb32 mode? Need new relocation? */
b99bd4ef 10122
c19d1205
ZW
10123static void
10124do_t_blx (void)
10125{
e07e6e58
NC
10126 set_it_insn_type_last ();
10127
c19d1205 10128 if (inst.operands[0].isreg)
fdfde340
JM
10129 {
10130 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10131 /* We have a register, so this is BLX(2). */
10132 inst.instruction |= inst.operands[0].reg << 3;
10133 }
b99bd4ef
NC
10134 else
10135 {
c19d1205 10136 /* No register. This must be BLX(1). */
2fc8bdac 10137 inst.instruction = 0xf000e800;
0855e32b 10138 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
b99bd4ef
NC
10139 }
10140}
10141
c19d1205
ZW
10142static void
10143do_t_branch (void)
b99bd4ef 10144{
0110f2b8 10145 int opcode;
dfa9f0d5 10146 int cond;
9ae92b05 10147 int reloc;
dfa9f0d5 10148
e07e6e58
NC
10149 cond = inst.cond;
10150 set_it_insn_type (IF_INSIDE_IT_LAST_INSN);
10151
10152 if (in_it_block ())
dfa9f0d5
PB
10153 {
10154 /* Conditional branches inside IT blocks are encoded as unconditional
477330fc 10155 branches. */
dfa9f0d5 10156 cond = COND_ALWAYS;
dfa9f0d5
PB
10157 }
10158 else
10159 cond = inst.cond;
10160
10161 if (cond != COND_ALWAYS)
0110f2b8
PB
10162 opcode = T_MNEM_bcond;
10163 else
10164 opcode = inst.instruction;
10165
12d6b0b7
RS
10166 if (unified_syntax
10167 && (inst.size_req == 4
10960bfb
PB
10168 || (inst.size_req != 2
10169 && (inst.operands[0].hasreloc
10170 || inst.reloc.exp.X_op == O_constant))))
c19d1205 10171 {
0110f2b8 10172 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 10173 if (cond == COND_ALWAYS)
9ae92b05 10174 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
10175 else
10176 {
9c2799c2 10177 gas_assert (cond != 0xF);
dfa9f0d5 10178 inst.instruction |= cond << 22;
9ae92b05 10179 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
c19d1205
ZW
10180 }
10181 }
b99bd4ef
NC
10182 else
10183 {
0110f2b8 10184 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 10185 if (cond == COND_ALWAYS)
9ae92b05 10186 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
c19d1205 10187 else
b99bd4ef 10188 {
dfa9f0d5 10189 inst.instruction |= cond << 8;
9ae92b05 10190 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 10191 }
0110f2b8
PB
10192 /* Allow section relaxation. */
10193 if (unified_syntax && inst.size_req != 2)
10194 inst.relax = opcode;
b99bd4ef 10195 }
9ae92b05 10196 inst.reloc.type = reloc;
c19d1205 10197 inst.reloc.pc_rel = 1;
b99bd4ef
NC
10198}
10199
8884b720 10200/* Actually do the work for Thumb state bkpt and hlt. The only difference
bacebabc 10201 between the two is the maximum immediate allowed - which is passed in
8884b720 10202 RANGE. */
b99bd4ef 10203static void
8884b720 10204do_t_bkpt_hlt1 (int range)
b99bd4ef 10205{
dfa9f0d5
PB
10206 constraint (inst.cond != COND_ALWAYS,
10207 _("instruction is always unconditional"));
c19d1205 10208 if (inst.operands[0].present)
b99bd4ef 10209 {
8884b720 10210 constraint (inst.operands[0].imm > range,
c19d1205
ZW
10211 _("immediate value out of range"));
10212 inst.instruction |= inst.operands[0].imm;
b99bd4ef 10213 }
8884b720
MGD
10214
10215 set_it_insn_type (NEUTRAL_IT_INSN);
10216}
10217
10218static void
10219do_t_hlt (void)
10220{
10221 do_t_bkpt_hlt1 (63);
10222}
10223
10224static void
10225do_t_bkpt (void)
10226{
10227 do_t_bkpt_hlt1 (255);
b99bd4ef
NC
10228}
10229
10230static void
c19d1205 10231do_t_branch23 (void)
b99bd4ef 10232{
e07e6e58 10233 set_it_insn_type_last ();
0855e32b 10234 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
fa94de6b 10235
0855e32b
NS
10236 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
10237 this file. We used to simply ignore the PLT reloc type here --
10238 the branch encoding is now needed to deal with TLSCALL relocs.
10239 So if we see a PLT reloc now, put it back to how it used to be to
10240 keep the preexisting behaviour. */
10241 if (inst.reloc.type == BFD_RELOC_ARM_PLT32)
10242 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a 10243
4343666d 10244#if defined(OBJ_COFF)
c19d1205
ZW
10245 /* If the destination of the branch is a defined symbol which does not have
10246 the THUMB_FUNC attribute, then we must be calling a function which has
10247 the (interfacearm) attribute. We look for the Thumb entry point to that
10248 function and change the branch to refer to that function instead. */
10249 if ( inst.reloc.exp.X_op == O_symbol
10250 && inst.reloc.exp.X_add_symbol != NULL
10251 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
10252 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
10253 inst.reloc.exp.X_add_symbol =
10254 find_real_start (inst.reloc.exp.X_add_symbol);
4343666d 10255#endif
90e4755a
RE
10256}
10257
10258static void
c19d1205 10259do_t_bx (void)
90e4755a 10260{
e07e6e58 10261 set_it_insn_type_last ();
c19d1205
ZW
10262 inst.instruction |= inst.operands[0].reg << 3;
10263 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
10264 should cause the alignment to be checked once it is known. This is
10265 because BX PC only works if the instruction is word aligned. */
10266}
90e4755a 10267
c19d1205
ZW
10268static void
10269do_t_bxj (void)
10270{
fdfde340 10271 int Rm;
90e4755a 10272
e07e6e58 10273 set_it_insn_type_last ();
fdfde340
JM
10274 Rm = inst.operands[0].reg;
10275 reject_bad_reg (Rm);
10276 inst.instruction |= Rm << 16;
90e4755a
RE
10277}
10278
10279static void
c19d1205 10280do_t_clz (void)
90e4755a 10281{
fdfde340
JM
10282 unsigned Rd;
10283 unsigned Rm;
10284
10285 Rd = inst.operands[0].reg;
10286 Rm = inst.operands[1].reg;
10287
10288 reject_bad_reg (Rd);
10289 reject_bad_reg (Rm);
10290
10291 inst.instruction |= Rd << 8;
10292 inst.instruction |= Rm << 16;
10293 inst.instruction |= Rm;
c19d1205 10294}
90e4755a 10295
dfa9f0d5
PB
10296static void
10297do_t_cps (void)
10298{
e07e6e58 10299 set_it_insn_type (OUTSIDE_IT_INSN);
dfa9f0d5
PB
10300 inst.instruction |= inst.operands[0].imm;
10301}
10302
c19d1205
ZW
10303static void
10304do_t_cpsi (void)
10305{
e07e6e58 10306 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205 10307 if (unified_syntax
62b3e311
PB
10308 && (inst.operands[1].present || inst.size_req == 4)
10309 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 10310 {
c19d1205
ZW
10311 unsigned int imod = (inst.instruction & 0x0030) >> 4;
10312 inst.instruction = 0xf3af8000;
10313 inst.instruction |= imod << 9;
10314 inst.instruction |= inst.operands[0].imm << 5;
10315 if (inst.operands[1].present)
10316 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 10317 }
c19d1205 10318 else
90e4755a 10319 {
62b3e311
PB
10320 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
10321 && (inst.operands[0].imm & 4),
10322 _("selected processor does not support 'A' form "
10323 "of this instruction"));
10324 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
10325 _("Thumb does not support the 2-argument "
10326 "form of this instruction"));
10327 inst.instruction |= inst.operands[0].imm;
90e4755a 10328 }
90e4755a
RE
10329}
10330
c19d1205
ZW
10331/* THUMB CPY instruction (argument parse). */
10332
90e4755a 10333static void
c19d1205 10334do_t_cpy (void)
90e4755a 10335{
c19d1205 10336 if (inst.size_req == 4)
90e4755a 10337 {
c19d1205
ZW
10338 inst.instruction = THUMB_OP32 (T_MNEM_mov);
10339 inst.instruction |= inst.operands[0].reg << 8;
10340 inst.instruction |= inst.operands[1].reg;
90e4755a 10341 }
c19d1205 10342 else
90e4755a 10343 {
c19d1205
ZW
10344 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
10345 inst.instruction |= (inst.operands[0].reg & 0x7);
10346 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 10347 }
90e4755a
RE
10348}
10349
90e4755a 10350static void
25fe350b 10351do_t_cbz (void)
90e4755a 10352{
e07e6e58 10353 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
10354 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10355 inst.instruction |= inst.operands[0].reg;
10356 inst.reloc.pc_rel = 1;
10357 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
10358}
90e4755a 10359
62b3e311
PB
10360static void
10361do_t_dbg (void)
10362{
10363 inst.instruction |= inst.operands[0].imm;
10364}
10365
10366static void
10367do_t_div (void)
10368{
fdfde340
JM
10369 unsigned Rd, Rn, Rm;
10370
10371 Rd = inst.operands[0].reg;
10372 Rn = (inst.operands[1].present
10373 ? inst.operands[1].reg : Rd);
10374 Rm = inst.operands[2].reg;
10375
10376 reject_bad_reg (Rd);
10377 reject_bad_reg (Rn);
10378 reject_bad_reg (Rm);
10379
10380 inst.instruction |= Rd << 8;
10381 inst.instruction |= Rn << 16;
10382 inst.instruction |= Rm;
62b3e311
PB
10383}
10384
c19d1205
ZW
10385static void
10386do_t_hint (void)
10387{
10388 if (unified_syntax && inst.size_req == 4)
10389 inst.instruction = THUMB_OP32 (inst.instruction);
10390 else
10391 inst.instruction = THUMB_OP16 (inst.instruction);
10392}
90e4755a 10393
c19d1205
ZW
10394static void
10395do_t_it (void)
10396{
10397 unsigned int cond = inst.operands[0].imm;
e27ec89e 10398
e07e6e58
NC
10399 set_it_insn_type (IT_INSN);
10400 now_it.mask = (inst.instruction & 0xf) | 0x10;
10401 now_it.cc = cond;
5a01bb1d 10402 now_it.warn_deprecated = FALSE;
e27ec89e
PB
10403
10404 /* If the condition is a negative condition, invert the mask. */
c19d1205 10405 if ((cond & 0x1) == 0x0)
90e4755a 10406 {
c19d1205 10407 unsigned int mask = inst.instruction & 0x000f;
90e4755a 10408
c19d1205 10409 if ((mask & 0x7) == 0)
5a01bb1d
MGD
10410 {
10411 /* No conversion needed. */
10412 now_it.block_length = 1;
10413 }
c19d1205 10414 else if ((mask & 0x3) == 0)
5a01bb1d
MGD
10415 {
10416 mask ^= 0x8;
10417 now_it.block_length = 2;
10418 }
e27ec89e 10419 else if ((mask & 0x1) == 0)
5a01bb1d
MGD
10420 {
10421 mask ^= 0xC;
10422 now_it.block_length = 3;
10423 }
c19d1205 10424 else
5a01bb1d
MGD
10425 {
10426 mask ^= 0xE;
10427 now_it.block_length = 4;
10428 }
90e4755a 10429
e27ec89e
PB
10430 inst.instruction &= 0xfff0;
10431 inst.instruction |= mask;
c19d1205 10432 }
90e4755a 10433
c19d1205
ZW
10434 inst.instruction |= cond << 4;
10435}
90e4755a 10436
3c707909
PB
10437/* Helper function used for both push/pop and ldm/stm. */
10438static void
10439encode_thumb2_ldmstm (int base, unsigned mask, bfd_boolean writeback)
10440{
10441 bfd_boolean load;
10442
10443 load = (inst.instruction & (1 << 20)) != 0;
10444
10445 if (mask & (1 << 13))
10446 inst.error = _("SP not allowed in register list");
1e5b0379
NC
10447
10448 if ((mask & (1 << base)) != 0
10449 && writeback)
10450 inst.error = _("having the base register in the register list when "
10451 "using write back is UNPREDICTABLE");
10452
3c707909
PB
10453 if (load)
10454 {
e07e6e58 10455 if (mask & (1 << 15))
477330fc
RM
10456 {
10457 if (mask & (1 << 14))
10458 inst.error = _("LR and PC should not both be in register list");
10459 else
10460 set_it_insn_type_last ();
10461 }
3c707909
PB
10462 }
10463 else
10464 {
10465 if (mask & (1 << 15))
10466 inst.error = _("PC not allowed in register list");
3c707909
PB
10467 }
10468
10469 if ((mask & (mask - 1)) == 0)
10470 {
10471 /* Single register transfers implemented as str/ldr. */
10472 if (writeback)
10473 {
10474 if (inst.instruction & (1 << 23))
10475 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
10476 else
10477 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
10478 }
10479 else
10480 {
10481 if (inst.instruction & (1 << 23))
10482 inst.instruction = 0x00800000; /* ia -> [base] */
10483 else
10484 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
10485 }
10486
10487 inst.instruction |= 0xf8400000;
10488 if (load)
10489 inst.instruction |= 0x00100000;
10490
5f4273c7 10491 mask = ffs (mask) - 1;
3c707909
PB
10492 mask <<= 12;
10493 }
10494 else if (writeback)
10495 inst.instruction |= WRITE_BACK;
10496
10497 inst.instruction |= mask;
10498 inst.instruction |= base << 16;
10499}
10500
c19d1205
ZW
10501static void
10502do_t_ldmstm (void)
10503{
10504 /* This really doesn't seem worth it. */
10505 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
10506 _("expression too complex"));
10507 constraint (inst.operands[1].writeback,
10508 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 10509
c19d1205
ZW
10510 if (unified_syntax)
10511 {
3c707909
PB
10512 bfd_boolean narrow;
10513 unsigned mask;
10514
10515 narrow = FALSE;
c19d1205
ZW
10516 /* See if we can use a 16-bit instruction. */
10517 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
10518 && inst.size_req != 4
3c707909 10519 && !(inst.operands[1].imm & ~0xff))
90e4755a 10520 {
3c707909 10521 mask = 1 << inst.operands[0].reg;
90e4755a 10522
eab4f823 10523 if (inst.operands[0].reg <= 7)
90e4755a 10524 {
3c707909 10525 if (inst.instruction == T_MNEM_stmia
eab4f823
MGD
10526 ? inst.operands[0].writeback
10527 : (inst.operands[0].writeback
10528 == !(inst.operands[1].imm & mask)))
477330fc 10529 {
eab4f823
MGD
10530 if (inst.instruction == T_MNEM_stmia
10531 && (inst.operands[1].imm & mask)
10532 && (inst.operands[1].imm & (mask - 1)))
10533 as_warn (_("value stored for r%d is UNKNOWN"),
10534 inst.operands[0].reg);
3c707909 10535
eab4f823
MGD
10536 inst.instruction = THUMB_OP16 (inst.instruction);
10537 inst.instruction |= inst.operands[0].reg << 8;
10538 inst.instruction |= inst.operands[1].imm;
10539 narrow = TRUE;
10540 }
10541 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10542 {
10543 /* This means 1 register in reg list one of 3 situations:
10544 1. Instruction is stmia, but without writeback.
10545 2. lmdia without writeback, but with Rn not in
477330fc 10546 reglist.
eab4f823
MGD
10547 3. ldmia with writeback, but with Rn in reglist.
10548 Case 3 is UNPREDICTABLE behaviour, so we handle
10549 case 1 and 2 which can be converted into a 16-bit
10550 str or ldr. The SP cases are handled below. */
10551 unsigned long opcode;
10552 /* First, record an error for Case 3. */
10553 if (inst.operands[1].imm & mask
10554 && inst.operands[0].writeback)
fa94de6b 10555 inst.error =
eab4f823
MGD
10556 _("having the base register in the register list when "
10557 "using write back is UNPREDICTABLE");
fa94de6b
RM
10558
10559 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
eab4f823
MGD
10560 : T_MNEM_ldr);
10561 inst.instruction = THUMB_OP16 (opcode);
10562 inst.instruction |= inst.operands[0].reg << 3;
10563 inst.instruction |= (ffs (inst.operands[1].imm)-1);
10564 narrow = TRUE;
10565 }
90e4755a 10566 }
eab4f823 10567 else if (inst.operands[0] .reg == REG_SP)
90e4755a 10568 {
eab4f823
MGD
10569 if (inst.operands[0].writeback)
10570 {
fa94de6b 10571 inst.instruction =
eab4f823 10572 THUMB_OP16 (inst.instruction == T_MNEM_stmia
477330fc 10573 ? T_MNEM_push : T_MNEM_pop);
eab4f823 10574 inst.instruction |= inst.operands[1].imm;
477330fc 10575 narrow = TRUE;
eab4f823
MGD
10576 }
10577 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10578 {
fa94de6b 10579 inst.instruction =
eab4f823 10580 THUMB_OP16 (inst.instruction == T_MNEM_stmia
477330fc 10581 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
eab4f823 10582 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
477330fc 10583 narrow = TRUE;
eab4f823 10584 }
90e4755a 10585 }
3c707909
PB
10586 }
10587
10588 if (!narrow)
10589 {
c19d1205
ZW
10590 if (inst.instruction < 0xffff)
10591 inst.instruction = THUMB_OP32 (inst.instruction);
3c707909 10592
5f4273c7
NC
10593 encode_thumb2_ldmstm (inst.operands[0].reg, inst.operands[1].imm,
10594 inst.operands[0].writeback);
90e4755a
RE
10595 }
10596 }
c19d1205 10597 else
90e4755a 10598 {
c19d1205
ZW
10599 constraint (inst.operands[0].reg > 7
10600 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
1198ca51
PB
10601 constraint (inst.instruction != T_MNEM_ldmia
10602 && inst.instruction != T_MNEM_stmia,
10603 _("Thumb-2 instruction only valid in unified syntax"));
c19d1205 10604 if (inst.instruction == T_MNEM_stmia)
f03698e6 10605 {
c19d1205
ZW
10606 if (!inst.operands[0].writeback)
10607 as_warn (_("this instruction will write back the base register"));
10608 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
10609 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
1e5b0379 10610 as_warn (_("value stored for r%d is UNKNOWN"),
c19d1205 10611 inst.operands[0].reg);
f03698e6 10612 }
c19d1205 10613 else
90e4755a 10614 {
c19d1205
ZW
10615 if (!inst.operands[0].writeback
10616 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
10617 as_warn (_("this instruction will write back the base register"));
10618 else if (inst.operands[0].writeback
10619 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
10620 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
10621 }
10622
c19d1205
ZW
10623 inst.instruction = THUMB_OP16 (inst.instruction);
10624 inst.instruction |= inst.operands[0].reg << 8;
10625 inst.instruction |= inst.operands[1].imm;
10626 }
10627}
e28cd48c 10628
c19d1205
ZW
10629static void
10630do_t_ldrex (void)
10631{
10632 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
10633 || inst.operands[1].postind || inst.operands[1].writeback
10634 || inst.operands[1].immisreg || inst.operands[1].shifted
10635 || inst.operands[1].negative,
01cfc07f 10636 BAD_ADDR_MODE);
e28cd48c 10637
5be8be5d
DG
10638 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
10639
c19d1205
ZW
10640 inst.instruction |= inst.operands[0].reg << 12;
10641 inst.instruction |= inst.operands[1].reg << 16;
10642 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
10643}
e28cd48c 10644
c19d1205
ZW
10645static void
10646do_t_ldrexd (void)
10647{
10648 if (!inst.operands[1].present)
1cac9012 10649 {
c19d1205
ZW
10650 constraint (inst.operands[0].reg == REG_LR,
10651 _("r14 not allowed as first register "
10652 "when second register is omitted"));
10653 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 10654 }
c19d1205
ZW
10655 constraint (inst.operands[0].reg == inst.operands[1].reg,
10656 BAD_OVERLAP);
b99bd4ef 10657
c19d1205
ZW
10658 inst.instruction |= inst.operands[0].reg << 12;
10659 inst.instruction |= inst.operands[1].reg << 8;
10660 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
10661}
10662
10663static void
c19d1205 10664do_t_ldst (void)
b99bd4ef 10665{
0110f2b8
PB
10666 unsigned long opcode;
10667 int Rn;
10668
e07e6e58
NC
10669 if (inst.operands[0].isreg
10670 && !inst.operands[0].preind
10671 && inst.operands[0].reg == REG_PC)
10672 set_it_insn_type_last ();
10673
0110f2b8 10674 opcode = inst.instruction;
c19d1205 10675 if (unified_syntax)
b99bd4ef 10676 {
53365c0d
PB
10677 if (!inst.operands[1].isreg)
10678 {
10679 if (opcode <= 0xffff)
10680 inst.instruction = THUMB_OP32 (opcode);
10681 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10682 return;
10683 }
0110f2b8
PB
10684 if (inst.operands[1].isreg
10685 && !inst.operands[1].writeback
c19d1205
ZW
10686 && !inst.operands[1].shifted && !inst.operands[1].postind
10687 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
10688 && opcode <= 0xffff
10689 && inst.size_req != 4)
c19d1205 10690 {
0110f2b8
PB
10691 /* Insn may have a 16-bit form. */
10692 Rn = inst.operands[1].reg;
10693 if (inst.operands[1].immisreg)
10694 {
10695 inst.instruction = THUMB_OP16 (opcode);
5f4273c7 10696 /* [Rn, Rik] */
0110f2b8
PB
10697 if (Rn <= 7 && inst.operands[1].imm <= 7)
10698 goto op16;
5be8be5d
DG
10699 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
10700 reject_bad_reg (inst.operands[1].imm);
0110f2b8
PB
10701 }
10702 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
10703 && opcode != T_MNEM_ldrsb)
10704 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
10705 || (Rn == REG_SP && opcode == T_MNEM_str))
10706 {
10707 /* [Rn, #const] */
10708 if (Rn > 7)
10709 {
10710 if (Rn == REG_PC)
10711 {
10712 if (inst.reloc.pc_rel)
10713 opcode = T_MNEM_ldr_pc2;
10714 else
10715 opcode = T_MNEM_ldr_pc;
10716 }
10717 else
10718 {
10719 if (opcode == T_MNEM_ldr)
10720 opcode = T_MNEM_ldr_sp;
10721 else
10722 opcode = T_MNEM_str_sp;
10723 }
10724 inst.instruction = inst.operands[0].reg << 8;
10725 }
10726 else
10727 {
10728 inst.instruction = inst.operands[0].reg;
10729 inst.instruction |= inst.operands[1].reg << 3;
10730 }
10731 inst.instruction |= THUMB_OP16 (opcode);
10732 if (inst.size_req == 2)
10733 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10734 else
10735 inst.relax = opcode;
10736 return;
10737 }
c19d1205 10738 }
0110f2b8 10739 /* Definitely a 32-bit variant. */
5be8be5d 10740
8d67f500
NC
10741 /* Warning for Erratum 752419. */
10742 if (opcode == T_MNEM_ldr
10743 && inst.operands[0].reg == REG_SP
10744 && inst.operands[1].writeback == 1
10745 && !inst.operands[1].immisreg)
10746 {
10747 if (no_cpu_selected ()
10748 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
477330fc
RM
10749 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
10750 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
8d67f500
NC
10751 as_warn (_("This instruction may be unpredictable "
10752 "if executed on M-profile cores "
10753 "with interrupts enabled."));
10754 }
10755
5be8be5d 10756 /* Do some validations regarding addressing modes. */
1be5fd2e 10757 if (inst.operands[1].immisreg)
5be8be5d
DG
10758 reject_bad_reg (inst.operands[1].imm);
10759
1be5fd2e
NC
10760 constraint (inst.operands[1].writeback == 1
10761 && inst.operands[0].reg == inst.operands[1].reg,
10762 BAD_OVERLAP);
10763
0110f2b8 10764 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
10765 inst.instruction |= inst.operands[0].reg << 12;
10766 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
1be5fd2e 10767 check_ldr_r15_aligned ();
b99bd4ef
NC
10768 return;
10769 }
10770
c19d1205
ZW
10771 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10772
10773 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 10774 {
c19d1205
ZW
10775 /* Only [Rn,Rm] is acceptable. */
10776 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
10777 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
10778 || inst.operands[1].postind || inst.operands[1].shifted
10779 || inst.operands[1].negative,
10780 _("Thumb does not support this addressing mode"));
10781 inst.instruction = THUMB_OP16 (inst.instruction);
10782 goto op16;
b99bd4ef 10783 }
5f4273c7 10784
c19d1205
ZW
10785 inst.instruction = THUMB_OP16 (inst.instruction);
10786 if (!inst.operands[1].isreg)
10787 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10788 return;
b99bd4ef 10789
c19d1205
ZW
10790 constraint (!inst.operands[1].preind
10791 || inst.operands[1].shifted
10792 || inst.operands[1].writeback,
10793 _("Thumb does not support this addressing mode"));
10794 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 10795 {
c19d1205
ZW
10796 constraint (inst.instruction & 0x0600,
10797 _("byte or halfword not valid for base register"));
10798 constraint (inst.operands[1].reg == REG_PC
10799 && !(inst.instruction & THUMB_LOAD_BIT),
10800 _("r15 based store not allowed"));
10801 constraint (inst.operands[1].immisreg,
10802 _("invalid base register for register offset"));
b99bd4ef 10803
c19d1205
ZW
10804 if (inst.operands[1].reg == REG_PC)
10805 inst.instruction = T_OPCODE_LDR_PC;
10806 else if (inst.instruction & THUMB_LOAD_BIT)
10807 inst.instruction = T_OPCODE_LDR_SP;
10808 else
10809 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 10810
c19d1205
ZW
10811 inst.instruction |= inst.operands[0].reg << 8;
10812 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10813 return;
10814 }
90e4755a 10815
c19d1205
ZW
10816 constraint (inst.operands[1].reg > 7, BAD_HIREG);
10817 if (!inst.operands[1].immisreg)
10818 {
10819 /* Immediate offset. */
10820 inst.instruction |= inst.operands[0].reg;
10821 inst.instruction |= inst.operands[1].reg << 3;
10822 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10823 return;
10824 }
90e4755a 10825
c19d1205
ZW
10826 /* Register offset. */
10827 constraint (inst.operands[1].imm > 7, BAD_HIREG);
10828 constraint (inst.operands[1].negative,
10829 _("Thumb does not support this addressing mode"));
90e4755a 10830
c19d1205
ZW
10831 op16:
10832 switch (inst.instruction)
10833 {
10834 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
10835 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
10836 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
10837 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
10838 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
10839 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
10840 case 0x5600 /* ldrsb */:
10841 case 0x5e00 /* ldrsh */: break;
10842 default: abort ();
10843 }
90e4755a 10844
c19d1205
ZW
10845 inst.instruction |= inst.operands[0].reg;
10846 inst.instruction |= inst.operands[1].reg << 3;
10847 inst.instruction |= inst.operands[1].imm << 6;
10848}
90e4755a 10849
c19d1205
ZW
10850static void
10851do_t_ldstd (void)
10852{
10853 if (!inst.operands[1].present)
b99bd4ef 10854 {
c19d1205
ZW
10855 inst.operands[1].reg = inst.operands[0].reg + 1;
10856 constraint (inst.operands[0].reg == REG_LR,
10857 _("r14 not allowed here"));
bd340a04 10858 constraint (inst.operands[0].reg == REG_R12,
477330fc 10859 _("r12 not allowed here"));
b99bd4ef 10860 }
bd340a04
MGD
10861
10862 if (inst.operands[2].writeback
10863 && (inst.operands[0].reg == inst.operands[2].reg
10864 || inst.operands[1].reg == inst.operands[2].reg))
10865 as_warn (_("base register written back, and overlaps "
477330fc 10866 "one of transfer registers"));
bd340a04 10867
c19d1205
ZW
10868 inst.instruction |= inst.operands[0].reg << 12;
10869 inst.instruction |= inst.operands[1].reg << 8;
10870 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
b99bd4ef
NC
10871}
10872
c19d1205
ZW
10873static void
10874do_t_ldstt (void)
10875{
10876 inst.instruction |= inst.operands[0].reg << 12;
10877 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
10878}
a737bd4d 10879
b99bd4ef 10880static void
c19d1205 10881do_t_mla (void)
b99bd4ef 10882{
fdfde340 10883 unsigned Rd, Rn, Rm, Ra;
c921be7d 10884
fdfde340
JM
10885 Rd = inst.operands[0].reg;
10886 Rn = inst.operands[1].reg;
10887 Rm = inst.operands[2].reg;
10888 Ra = inst.operands[3].reg;
10889
10890 reject_bad_reg (Rd);
10891 reject_bad_reg (Rn);
10892 reject_bad_reg (Rm);
10893 reject_bad_reg (Ra);
10894
10895 inst.instruction |= Rd << 8;
10896 inst.instruction |= Rn << 16;
10897 inst.instruction |= Rm;
10898 inst.instruction |= Ra << 12;
c19d1205 10899}
b99bd4ef 10900
c19d1205
ZW
10901static void
10902do_t_mlal (void)
10903{
fdfde340
JM
10904 unsigned RdLo, RdHi, Rn, Rm;
10905
10906 RdLo = inst.operands[0].reg;
10907 RdHi = inst.operands[1].reg;
10908 Rn = inst.operands[2].reg;
10909 Rm = inst.operands[3].reg;
10910
10911 reject_bad_reg (RdLo);
10912 reject_bad_reg (RdHi);
10913 reject_bad_reg (Rn);
10914 reject_bad_reg (Rm);
10915
10916 inst.instruction |= RdLo << 12;
10917 inst.instruction |= RdHi << 8;
10918 inst.instruction |= Rn << 16;
10919 inst.instruction |= Rm;
c19d1205 10920}
b99bd4ef 10921
c19d1205
ZW
10922static void
10923do_t_mov_cmp (void)
10924{
fdfde340
JM
10925 unsigned Rn, Rm;
10926
10927 Rn = inst.operands[0].reg;
10928 Rm = inst.operands[1].reg;
10929
e07e6e58
NC
10930 if (Rn == REG_PC)
10931 set_it_insn_type_last ();
10932
c19d1205 10933 if (unified_syntax)
b99bd4ef 10934 {
c19d1205
ZW
10935 int r0off = (inst.instruction == T_MNEM_mov
10936 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 10937 unsigned long opcode;
3d388997
PB
10938 bfd_boolean narrow;
10939 bfd_boolean low_regs;
10940
fdfde340 10941 low_regs = (Rn <= 7 && Rm <= 7);
0110f2b8 10942 opcode = inst.instruction;
e07e6e58 10943 if (in_it_block ())
0110f2b8 10944 narrow = opcode != T_MNEM_movs;
3d388997 10945 else
0110f2b8 10946 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
10947 if (inst.size_req == 4
10948 || inst.operands[1].shifted)
10949 narrow = FALSE;
10950
efd81785
PB
10951 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
10952 if (opcode == T_MNEM_movs && inst.operands[1].isreg
10953 && !inst.operands[1].shifted
fdfde340
JM
10954 && Rn == REG_PC
10955 && Rm == REG_LR)
efd81785
PB
10956 {
10957 inst.instruction = T2_SUBS_PC_LR;
10958 return;
10959 }
10960
fdfde340
JM
10961 if (opcode == T_MNEM_cmp)
10962 {
10963 constraint (Rn == REG_PC, BAD_PC);
94206790
MM
10964 if (narrow)
10965 {
10966 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
10967 but valid. */
10968 warn_deprecated_sp (Rm);
10969 /* R15 was documented as a valid choice for Rm in ARMv6,
10970 but as UNPREDICTABLE in ARMv7. ARM's proprietary
10971 tools reject R15, so we do too. */
10972 constraint (Rm == REG_PC, BAD_PC);
10973 }
10974 else
10975 reject_bad_reg (Rm);
fdfde340
JM
10976 }
10977 else if (opcode == T_MNEM_mov
10978 || opcode == T_MNEM_movs)
10979 {
10980 if (inst.operands[1].isreg)
10981 {
10982 if (opcode == T_MNEM_movs)
10983 {
10984 reject_bad_reg (Rn);
10985 reject_bad_reg (Rm);
10986 }
76fa04a4
MGD
10987 else if (narrow)
10988 {
10989 /* This is mov.n. */
10990 if ((Rn == REG_SP || Rn == REG_PC)
10991 && (Rm == REG_SP || Rm == REG_PC))
10992 {
10993 as_warn (_("Use of r%u as a source register is "
10994 "deprecated when r%u is the destination "
10995 "register."), Rm, Rn);
10996 }
10997 }
10998 else
10999 {
11000 /* This is mov.w. */
11001 constraint (Rn == REG_PC, BAD_PC);
11002 constraint (Rm == REG_PC, BAD_PC);
11003 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
11004 }
fdfde340
JM
11005 }
11006 else
11007 reject_bad_reg (Rn);
11008 }
11009
c19d1205
ZW
11010 if (!inst.operands[1].isreg)
11011 {
0110f2b8 11012 /* Immediate operand. */
e07e6e58 11013 if (!in_it_block () && opcode == T_MNEM_mov)
0110f2b8
PB
11014 narrow = 0;
11015 if (low_regs && narrow)
11016 {
11017 inst.instruction = THUMB_OP16 (opcode);
fdfde340 11018 inst.instruction |= Rn << 8;
0110f2b8
PB
11019 if (inst.size_req == 2)
11020 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11021 else
11022 inst.relax = opcode;
11023 }
11024 else
11025 {
11026 inst.instruction = THUMB_OP32 (inst.instruction);
11027 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11028 inst.instruction |= Rn << r0off;
0110f2b8
PB
11029 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11030 }
c19d1205 11031 }
728ca7c9
PB
11032 else if (inst.operands[1].shifted && inst.operands[1].immisreg
11033 && (inst.instruction == T_MNEM_mov
11034 || inst.instruction == T_MNEM_movs))
11035 {
11036 /* Register shifts are encoded as separate shift instructions. */
11037 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
11038
e07e6e58 11039 if (in_it_block ())
728ca7c9
PB
11040 narrow = !flags;
11041 else
11042 narrow = flags;
11043
11044 if (inst.size_req == 4)
11045 narrow = FALSE;
11046
11047 if (!low_regs || inst.operands[1].imm > 7)
11048 narrow = FALSE;
11049
fdfde340 11050 if (Rn != Rm)
728ca7c9
PB
11051 narrow = FALSE;
11052
11053 switch (inst.operands[1].shift_kind)
11054 {
11055 case SHIFT_LSL:
11056 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
11057 break;
11058 case SHIFT_ASR:
11059 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
11060 break;
11061 case SHIFT_LSR:
11062 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
11063 break;
11064 case SHIFT_ROR:
11065 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
11066 break;
11067 default:
5f4273c7 11068 abort ();
728ca7c9
PB
11069 }
11070
11071 inst.instruction = opcode;
11072 if (narrow)
11073 {
fdfde340 11074 inst.instruction |= Rn;
728ca7c9
PB
11075 inst.instruction |= inst.operands[1].imm << 3;
11076 }
11077 else
11078 {
11079 if (flags)
11080 inst.instruction |= CONDS_BIT;
11081
fdfde340
JM
11082 inst.instruction |= Rn << 8;
11083 inst.instruction |= Rm << 16;
728ca7c9
PB
11084 inst.instruction |= inst.operands[1].imm;
11085 }
11086 }
3d388997 11087 else if (!narrow)
c19d1205 11088 {
728ca7c9
PB
11089 /* Some mov with immediate shift have narrow variants.
11090 Register shifts are handled above. */
11091 if (low_regs && inst.operands[1].shifted
11092 && (inst.instruction == T_MNEM_mov
11093 || inst.instruction == T_MNEM_movs))
11094 {
e07e6e58 11095 if (in_it_block ())
728ca7c9
PB
11096 narrow = (inst.instruction == T_MNEM_mov);
11097 else
11098 narrow = (inst.instruction == T_MNEM_movs);
11099 }
11100
11101 if (narrow)
11102 {
11103 switch (inst.operands[1].shift_kind)
11104 {
11105 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11106 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
11107 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11108 default: narrow = FALSE; break;
11109 }
11110 }
11111
11112 if (narrow)
11113 {
fdfde340
JM
11114 inst.instruction |= Rn;
11115 inst.instruction |= Rm << 3;
728ca7c9
PB
11116 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11117 }
11118 else
11119 {
11120 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11121 inst.instruction |= Rn << r0off;
728ca7c9
PB
11122 encode_thumb32_shifted_operand (1);
11123 }
c19d1205
ZW
11124 }
11125 else
11126 switch (inst.instruction)
11127 {
11128 case T_MNEM_mov:
837b3435 11129 /* In v4t or v5t a move of two lowregs produces unpredictable
c6400f8a
MGD
11130 results. Don't allow this. */
11131 if (low_regs)
11132 {
11133 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
11134 "MOV Rd, Rs with two low registers is not "
11135 "permitted on this architecture");
fa94de6b 11136 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
c6400f8a
MGD
11137 arm_ext_v6);
11138 }
11139
c19d1205 11140 inst.instruction = T_OPCODE_MOV_HR;
fdfde340
JM
11141 inst.instruction |= (Rn & 0x8) << 4;
11142 inst.instruction |= (Rn & 0x7);
11143 inst.instruction |= Rm << 3;
c19d1205 11144 break;
b99bd4ef 11145
c19d1205
ZW
11146 case T_MNEM_movs:
11147 /* We know we have low registers at this point.
941a8a52
MGD
11148 Generate LSLS Rd, Rs, #0. */
11149 inst.instruction = T_OPCODE_LSL_I;
fdfde340
JM
11150 inst.instruction |= Rn;
11151 inst.instruction |= Rm << 3;
c19d1205
ZW
11152 break;
11153
11154 case T_MNEM_cmp:
3d388997 11155 if (low_regs)
c19d1205
ZW
11156 {
11157 inst.instruction = T_OPCODE_CMP_LR;
fdfde340
JM
11158 inst.instruction |= Rn;
11159 inst.instruction |= Rm << 3;
c19d1205
ZW
11160 }
11161 else
11162 {
11163 inst.instruction = T_OPCODE_CMP_HR;
fdfde340
JM
11164 inst.instruction |= (Rn & 0x8) << 4;
11165 inst.instruction |= (Rn & 0x7);
11166 inst.instruction |= Rm << 3;
c19d1205
ZW
11167 }
11168 break;
11169 }
b99bd4ef
NC
11170 return;
11171 }
11172
c19d1205 11173 inst.instruction = THUMB_OP16 (inst.instruction);
539d4391
NC
11174
11175 /* PR 10443: Do not silently ignore shifted operands. */
11176 constraint (inst.operands[1].shifted,
11177 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
11178
c19d1205 11179 if (inst.operands[1].isreg)
b99bd4ef 11180 {
fdfde340 11181 if (Rn < 8 && Rm < 8)
b99bd4ef 11182 {
c19d1205
ZW
11183 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
11184 since a MOV instruction produces unpredictable results. */
11185 if (inst.instruction == T_OPCODE_MOV_I8)
11186 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 11187 else
c19d1205 11188 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 11189
fdfde340
JM
11190 inst.instruction |= Rn;
11191 inst.instruction |= Rm << 3;
b99bd4ef
NC
11192 }
11193 else
11194 {
c19d1205
ZW
11195 if (inst.instruction == T_OPCODE_MOV_I8)
11196 inst.instruction = T_OPCODE_MOV_HR;
11197 else
11198 inst.instruction = T_OPCODE_CMP_HR;
11199 do_t_cpy ();
b99bd4ef
NC
11200 }
11201 }
c19d1205 11202 else
b99bd4ef 11203 {
fdfde340 11204 constraint (Rn > 7,
c19d1205 11205 _("only lo regs allowed with immediate"));
fdfde340 11206 inst.instruction |= Rn << 8;
c19d1205
ZW
11207 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11208 }
11209}
b99bd4ef 11210
c19d1205
ZW
11211static void
11212do_t_mov16 (void)
11213{
fdfde340 11214 unsigned Rd;
b6895b4f
PB
11215 bfd_vma imm;
11216 bfd_boolean top;
11217
11218 top = (inst.instruction & 0x00800000) != 0;
11219 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
11220 {
11221 constraint (top, _(":lower16: not allowed this instruction"));
11222 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
11223 }
11224 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
11225 {
11226 constraint (!top, _(":upper16: not allowed this instruction"));
11227 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
11228 }
11229
fdfde340
JM
11230 Rd = inst.operands[0].reg;
11231 reject_bad_reg (Rd);
11232
11233 inst.instruction |= Rd << 8;
b6895b4f
PB
11234 if (inst.reloc.type == BFD_RELOC_UNUSED)
11235 {
11236 imm = inst.reloc.exp.X_add_number;
11237 inst.instruction |= (imm & 0xf000) << 4;
11238 inst.instruction |= (imm & 0x0800) << 15;
11239 inst.instruction |= (imm & 0x0700) << 4;
11240 inst.instruction |= (imm & 0x00ff);
11241 }
c19d1205 11242}
b99bd4ef 11243
c19d1205
ZW
11244static void
11245do_t_mvn_tst (void)
11246{
fdfde340 11247 unsigned Rn, Rm;
c921be7d 11248
fdfde340
JM
11249 Rn = inst.operands[0].reg;
11250 Rm = inst.operands[1].reg;
11251
11252 if (inst.instruction == T_MNEM_cmp
11253 || inst.instruction == T_MNEM_cmn)
11254 constraint (Rn == REG_PC, BAD_PC);
11255 else
11256 reject_bad_reg (Rn);
11257 reject_bad_reg (Rm);
11258
c19d1205
ZW
11259 if (unified_syntax)
11260 {
11261 int r0off = (inst.instruction == T_MNEM_mvn
11262 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
11263 bfd_boolean narrow;
11264
11265 if (inst.size_req == 4
11266 || inst.instruction > 0xffff
11267 || inst.operands[1].shifted
fdfde340 11268 || Rn > 7 || Rm > 7)
3d388997 11269 narrow = FALSE;
fe8b4cc3
KT
11270 else if (inst.instruction == T_MNEM_cmn
11271 || inst.instruction == T_MNEM_tst)
3d388997
PB
11272 narrow = TRUE;
11273 else if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11274 narrow = !in_it_block ();
3d388997 11275 else
e07e6e58 11276 narrow = in_it_block ();
3d388997 11277
c19d1205 11278 if (!inst.operands[1].isreg)
b99bd4ef 11279 {
c19d1205
ZW
11280 /* For an immediate, we always generate a 32-bit opcode;
11281 section relaxation will shrink it later if possible. */
11282 if (inst.instruction < 0xffff)
11283 inst.instruction = THUMB_OP32 (inst.instruction);
11284 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11285 inst.instruction |= Rn << r0off;
c19d1205 11286 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 11287 }
c19d1205 11288 else
b99bd4ef 11289 {
c19d1205 11290 /* See if we can do this with a 16-bit instruction. */
3d388997 11291 if (narrow)
b99bd4ef 11292 {
c19d1205 11293 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11294 inst.instruction |= Rn;
11295 inst.instruction |= Rm << 3;
b99bd4ef 11296 }
c19d1205 11297 else
b99bd4ef 11298 {
c19d1205
ZW
11299 constraint (inst.operands[1].shifted
11300 && inst.operands[1].immisreg,
11301 _("shift must be constant"));
11302 if (inst.instruction < 0xffff)
11303 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11304 inst.instruction |= Rn << r0off;
c19d1205 11305 encode_thumb32_shifted_operand (1);
b99bd4ef 11306 }
b99bd4ef
NC
11307 }
11308 }
11309 else
11310 {
c19d1205
ZW
11311 constraint (inst.instruction > 0xffff
11312 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
11313 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
11314 _("unshifted register required"));
fdfde340 11315 constraint (Rn > 7 || Rm > 7,
c19d1205 11316 BAD_HIREG);
b99bd4ef 11317
c19d1205 11318 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11319 inst.instruction |= Rn;
11320 inst.instruction |= Rm << 3;
b99bd4ef 11321 }
b99bd4ef
NC
11322}
11323
b05fe5cf 11324static void
c19d1205 11325do_t_mrs (void)
b05fe5cf 11326{
fdfde340 11327 unsigned Rd;
037e8744
JB
11328
11329 if (do_vfp_nsyn_mrs () == SUCCESS)
11330 return;
11331
90ec0d68
MGD
11332 Rd = inst.operands[0].reg;
11333 reject_bad_reg (Rd);
11334 inst.instruction |= Rd << 8;
11335
11336 if (inst.operands[1].isreg)
62b3e311 11337 {
90ec0d68
MGD
11338 unsigned br = inst.operands[1].reg;
11339 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
11340 as_bad (_("bad register for mrs"));
11341
11342 inst.instruction |= br & (0xf << 16);
11343 inst.instruction |= (br & 0x300) >> 4;
11344 inst.instruction |= (br & SPSR_BIT) >> 2;
62b3e311
PB
11345 }
11346 else
11347 {
90ec0d68 11348 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
5f4273c7 11349
d2cd1205 11350 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
1a43faaf
NC
11351 {
11352 /* PR gas/12698: The constraint is only applied for m_profile.
11353 If the user has specified -march=all, we want to ignore it as
11354 we are building for any CPU type, including non-m variants. */
11355 bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
11356 constraint ((flags != 0) && m_profile, _("selected processor does "
11357 "not support requested special purpose register"));
11358 }
90ec0d68 11359 else
d2cd1205
JB
11360 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
11361 devices). */
11362 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
11363 _("'APSR', 'CPSR' or 'SPSR' expected"));
fdfde340 11364
90ec0d68
MGD
11365 inst.instruction |= (flags & SPSR_BIT) >> 2;
11366 inst.instruction |= inst.operands[1].imm & 0xff;
11367 inst.instruction |= 0xf0000;
11368 }
c19d1205 11369}
b05fe5cf 11370
c19d1205
ZW
11371static void
11372do_t_msr (void)
11373{
62b3e311 11374 int flags;
fdfde340 11375 unsigned Rn;
62b3e311 11376
037e8744
JB
11377 if (do_vfp_nsyn_msr () == SUCCESS)
11378 return;
11379
c19d1205
ZW
11380 constraint (!inst.operands[1].isreg,
11381 _("Thumb encoding does not support an immediate here"));
90ec0d68
MGD
11382
11383 if (inst.operands[0].isreg)
11384 flags = (int)(inst.operands[0].reg);
11385 else
11386 flags = inst.operands[0].imm;
11387
d2cd1205 11388 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
62b3e311 11389 {
d2cd1205
JB
11390 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
11391
1a43faaf 11392 /* PR gas/12698: The constraint is only applied for m_profile.
477330fc
RM
11393 If the user has specified -march=all, we want to ignore it as
11394 we are building for any CPU type, including non-m variants. */
1a43faaf
NC
11395 bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
11396 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
477330fc
RM
11397 && (bits & ~(PSR_s | PSR_f)) != 0)
11398 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11399 && bits != PSR_f)) && m_profile,
11400 _("selected processor does not support requested special "
11401 "purpose register"));
62b3e311
PB
11402 }
11403 else
d2cd1205
JB
11404 constraint ((flags & 0xff) != 0, _("selected processor does not support "
11405 "requested special purpose register"));
c921be7d 11406
fdfde340
JM
11407 Rn = inst.operands[1].reg;
11408 reject_bad_reg (Rn);
11409
62b3e311 11410 inst.instruction |= (flags & SPSR_BIT) >> 2;
90ec0d68
MGD
11411 inst.instruction |= (flags & 0xf0000) >> 8;
11412 inst.instruction |= (flags & 0x300) >> 4;
62b3e311 11413 inst.instruction |= (flags & 0xff);
fdfde340 11414 inst.instruction |= Rn << 16;
c19d1205 11415}
b05fe5cf 11416
c19d1205
ZW
11417static void
11418do_t_mul (void)
11419{
17828f45 11420 bfd_boolean narrow;
fdfde340 11421 unsigned Rd, Rn, Rm;
17828f45 11422
c19d1205
ZW
11423 if (!inst.operands[2].present)
11424 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 11425
fdfde340
JM
11426 Rd = inst.operands[0].reg;
11427 Rn = inst.operands[1].reg;
11428 Rm = inst.operands[2].reg;
11429
17828f45 11430 if (unified_syntax)
b05fe5cf 11431 {
17828f45 11432 if (inst.size_req == 4
fdfde340
JM
11433 || (Rd != Rn
11434 && Rd != Rm)
11435 || Rn > 7
11436 || Rm > 7)
17828f45
JM
11437 narrow = FALSE;
11438 else if (inst.instruction == T_MNEM_muls)
e07e6e58 11439 narrow = !in_it_block ();
17828f45 11440 else
e07e6e58 11441 narrow = in_it_block ();
b05fe5cf 11442 }
c19d1205 11443 else
b05fe5cf 11444 {
17828f45 11445 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
fdfde340 11446 constraint (Rn > 7 || Rm > 7,
c19d1205 11447 BAD_HIREG);
17828f45
JM
11448 narrow = TRUE;
11449 }
b05fe5cf 11450
17828f45
JM
11451 if (narrow)
11452 {
11453 /* 16-bit MULS/Conditional MUL. */
c19d1205 11454 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 11455 inst.instruction |= Rd;
b05fe5cf 11456
fdfde340
JM
11457 if (Rd == Rn)
11458 inst.instruction |= Rm << 3;
11459 else if (Rd == Rm)
11460 inst.instruction |= Rn << 3;
c19d1205
ZW
11461 else
11462 constraint (1, _("dest must overlap one source register"));
11463 }
17828f45
JM
11464 else
11465 {
e07e6e58
NC
11466 constraint (inst.instruction != T_MNEM_mul,
11467 _("Thumb-2 MUL must not set flags"));
17828f45
JM
11468 /* 32-bit MUL. */
11469 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11470 inst.instruction |= Rd << 8;
11471 inst.instruction |= Rn << 16;
11472 inst.instruction |= Rm << 0;
11473
11474 reject_bad_reg (Rd);
11475 reject_bad_reg (Rn);
11476 reject_bad_reg (Rm);
17828f45 11477 }
c19d1205 11478}
b05fe5cf 11479
c19d1205
ZW
11480static void
11481do_t_mull (void)
11482{
fdfde340 11483 unsigned RdLo, RdHi, Rn, Rm;
b05fe5cf 11484
fdfde340
JM
11485 RdLo = inst.operands[0].reg;
11486 RdHi = inst.operands[1].reg;
11487 Rn = inst.operands[2].reg;
11488 Rm = inst.operands[3].reg;
11489
11490 reject_bad_reg (RdLo);
11491 reject_bad_reg (RdHi);
11492 reject_bad_reg (Rn);
11493 reject_bad_reg (Rm);
11494
11495 inst.instruction |= RdLo << 12;
11496 inst.instruction |= RdHi << 8;
11497 inst.instruction |= Rn << 16;
11498 inst.instruction |= Rm;
11499
11500 if (RdLo == RdHi)
c19d1205
ZW
11501 as_tsktsk (_("rdhi and rdlo must be different"));
11502}
b05fe5cf 11503
c19d1205
ZW
11504static void
11505do_t_nop (void)
11506{
e07e6e58
NC
11507 set_it_insn_type (NEUTRAL_IT_INSN);
11508
c19d1205
ZW
11509 if (unified_syntax)
11510 {
11511 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 11512 {
c19d1205
ZW
11513 inst.instruction = THUMB_OP32 (inst.instruction);
11514 inst.instruction |= inst.operands[0].imm;
11515 }
11516 else
11517 {
bc2d1808
NC
11518 /* PR9722: Check for Thumb2 availability before
11519 generating a thumb2 nop instruction. */
afa62d5e 11520 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
bc2d1808
NC
11521 {
11522 inst.instruction = THUMB_OP16 (inst.instruction);
11523 inst.instruction |= inst.operands[0].imm << 4;
11524 }
11525 else
11526 inst.instruction = 0x46c0;
c19d1205
ZW
11527 }
11528 }
11529 else
11530 {
11531 constraint (inst.operands[0].present,
11532 _("Thumb does not support NOP with hints"));
11533 inst.instruction = 0x46c0;
11534 }
11535}
b05fe5cf 11536
c19d1205
ZW
11537static void
11538do_t_neg (void)
11539{
11540 if (unified_syntax)
11541 {
3d388997
PB
11542 bfd_boolean narrow;
11543
11544 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11545 narrow = !in_it_block ();
3d388997 11546 else
e07e6e58 11547 narrow = in_it_block ();
3d388997
PB
11548 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11549 narrow = FALSE;
11550 if (inst.size_req == 4)
11551 narrow = FALSE;
11552
11553 if (!narrow)
c19d1205
ZW
11554 {
11555 inst.instruction = THUMB_OP32 (inst.instruction);
11556 inst.instruction |= inst.operands[0].reg << 8;
11557 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
11558 }
11559 else
11560 {
c19d1205
ZW
11561 inst.instruction = THUMB_OP16 (inst.instruction);
11562 inst.instruction |= inst.operands[0].reg;
11563 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
11564 }
11565 }
11566 else
11567 {
c19d1205
ZW
11568 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
11569 BAD_HIREG);
11570 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11571
11572 inst.instruction = THUMB_OP16 (inst.instruction);
11573 inst.instruction |= inst.operands[0].reg;
11574 inst.instruction |= inst.operands[1].reg << 3;
11575 }
11576}
11577
1c444d06
JM
11578static void
11579do_t_orn (void)
11580{
11581 unsigned Rd, Rn;
11582
11583 Rd = inst.operands[0].reg;
11584 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
11585
fdfde340
JM
11586 reject_bad_reg (Rd);
11587 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
11588 reject_bad_reg (Rn);
11589
1c444d06
JM
11590 inst.instruction |= Rd << 8;
11591 inst.instruction |= Rn << 16;
11592
11593 if (!inst.operands[2].isreg)
11594 {
11595 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11596 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11597 }
11598 else
11599 {
11600 unsigned Rm;
11601
11602 Rm = inst.operands[2].reg;
fdfde340 11603 reject_bad_reg (Rm);
1c444d06
JM
11604
11605 constraint (inst.operands[2].shifted
11606 && inst.operands[2].immisreg,
11607 _("shift must be constant"));
11608 encode_thumb32_shifted_operand (2);
11609 }
11610}
11611
c19d1205
ZW
11612static void
11613do_t_pkhbt (void)
11614{
fdfde340
JM
11615 unsigned Rd, Rn, Rm;
11616
11617 Rd = inst.operands[0].reg;
11618 Rn = inst.operands[1].reg;
11619 Rm = inst.operands[2].reg;
11620
11621 reject_bad_reg (Rd);
11622 reject_bad_reg (Rn);
11623 reject_bad_reg (Rm);
11624
11625 inst.instruction |= Rd << 8;
11626 inst.instruction |= Rn << 16;
11627 inst.instruction |= Rm;
c19d1205
ZW
11628 if (inst.operands[3].present)
11629 {
11630 unsigned int val = inst.reloc.exp.X_add_number;
11631 constraint (inst.reloc.exp.X_op != O_constant,
11632 _("expression too complex"));
11633 inst.instruction |= (val & 0x1c) << 10;
11634 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 11635 }
c19d1205 11636}
b05fe5cf 11637
c19d1205
ZW
11638static void
11639do_t_pkhtb (void)
11640{
11641 if (!inst.operands[3].present)
1ef52f49
NC
11642 {
11643 unsigned Rtmp;
11644
11645 inst.instruction &= ~0x00000020;
11646
11647 /* PR 10168. Swap the Rm and Rn registers. */
11648 Rtmp = inst.operands[1].reg;
11649 inst.operands[1].reg = inst.operands[2].reg;
11650 inst.operands[2].reg = Rtmp;
11651 }
c19d1205 11652 do_t_pkhbt ();
b05fe5cf
ZW
11653}
11654
c19d1205
ZW
11655static void
11656do_t_pld (void)
11657{
fdfde340
JM
11658 if (inst.operands[0].immisreg)
11659 reject_bad_reg (inst.operands[0].imm);
11660
c19d1205
ZW
11661 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
11662}
b05fe5cf 11663
c19d1205
ZW
11664static void
11665do_t_push_pop (void)
b99bd4ef 11666{
e9f89963 11667 unsigned mask;
5f4273c7 11668
c19d1205
ZW
11669 constraint (inst.operands[0].writeback,
11670 _("push/pop do not support {reglist}^"));
11671 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
11672 _("expression too complex"));
b99bd4ef 11673
e9f89963
PB
11674 mask = inst.operands[0].imm;
11675 if ((mask & ~0xff) == 0)
3c707909 11676 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
c19d1205 11677 else if ((inst.instruction == T_MNEM_push
e9f89963 11678 && (mask & ~0xff) == 1 << REG_LR)
c19d1205 11679 || (inst.instruction == T_MNEM_pop
e9f89963 11680 && (mask & ~0xff) == 1 << REG_PC))
b99bd4ef 11681 {
c19d1205
ZW
11682 inst.instruction = THUMB_OP16 (inst.instruction);
11683 inst.instruction |= THUMB_PP_PC_LR;
3c707909 11684 inst.instruction |= mask & 0xff;
c19d1205
ZW
11685 }
11686 else if (unified_syntax)
11687 {
3c707909 11688 inst.instruction = THUMB_OP32 (inst.instruction);
5f4273c7 11689 encode_thumb2_ldmstm (13, mask, TRUE);
c19d1205
ZW
11690 }
11691 else
11692 {
11693 inst.error = _("invalid register list to push/pop instruction");
11694 return;
11695 }
c19d1205 11696}
b99bd4ef 11697
c19d1205
ZW
11698static void
11699do_t_rbit (void)
11700{
fdfde340
JM
11701 unsigned Rd, Rm;
11702
11703 Rd = inst.operands[0].reg;
11704 Rm = inst.operands[1].reg;
11705
11706 reject_bad_reg (Rd);
11707 reject_bad_reg (Rm);
11708
11709 inst.instruction |= Rd << 8;
11710 inst.instruction |= Rm << 16;
11711 inst.instruction |= Rm;
c19d1205 11712}
b99bd4ef 11713
c19d1205
ZW
11714static void
11715do_t_rev (void)
11716{
fdfde340
JM
11717 unsigned Rd, Rm;
11718
11719 Rd = inst.operands[0].reg;
11720 Rm = inst.operands[1].reg;
11721
11722 reject_bad_reg (Rd);
11723 reject_bad_reg (Rm);
11724
11725 if (Rd <= 7 && Rm <= 7
c19d1205
ZW
11726 && inst.size_req != 4)
11727 {
11728 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11729 inst.instruction |= Rd;
11730 inst.instruction |= Rm << 3;
c19d1205
ZW
11731 }
11732 else if (unified_syntax)
11733 {
11734 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11735 inst.instruction |= Rd << 8;
11736 inst.instruction |= Rm << 16;
11737 inst.instruction |= Rm;
c19d1205
ZW
11738 }
11739 else
11740 inst.error = BAD_HIREG;
11741}
b99bd4ef 11742
1c444d06
JM
11743static void
11744do_t_rrx (void)
11745{
11746 unsigned Rd, Rm;
11747
11748 Rd = inst.operands[0].reg;
11749 Rm = inst.operands[1].reg;
11750
fdfde340
JM
11751 reject_bad_reg (Rd);
11752 reject_bad_reg (Rm);
c921be7d 11753
1c444d06
JM
11754 inst.instruction |= Rd << 8;
11755 inst.instruction |= Rm;
11756}
11757
c19d1205
ZW
11758static void
11759do_t_rsb (void)
11760{
fdfde340 11761 unsigned Rd, Rs;
b99bd4ef 11762
c19d1205
ZW
11763 Rd = inst.operands[0].reg;
11764 Rs = (inst.operands[1].present
11765 ? inst.operands[1].reg /* Rd, Rs, foo */
11766 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 11767
fdfde340
JM
11768 reject_bad_reg (Rd);
11769 reject_bad_reg (Rs);
11770 if (inst.operands[2].isreg)
11771 reject_bad_reg (inst.operands[2].reg);
11772
c19d1205
ZW
11773 inst.instruction |= Rd << 8;
11774 inst.instruction |= Rs << 16;
11775 if (!inst.operands[2].isreg)
11776 {
026d3abb
PB
11777 bfd_boolean narrow;
11778
11779 if ((inst.instruction & 0x00100000) != 0)
e07e6e58 11780 narrow = !in_it_block ();
026d3abb 11781 else
e07e6e58 11782 narrow = in_it_block ();
026d3abb
PB
11783
11784 if (Rd > 7 || Rs > 7)
11785 narrow = FALSE;
11786
11787 if (inst.size_req == 4 || !unified_syntax)
11788 narrow = FALSE;
11789
11790 if (inst.reloc.exp.X_op != O_constant
11791 || inst.reloc.exp.X_add_number != 0)
11792 narrow = FALSE;
11793
11794 /* Turn rsb #0 into 16-bit neg. We should probably do this via
477330fc 11795 relaxation, but it doesn't seem worth the hassle. */
026d3abb
PB
11796 if (narrow)
11797 {
11798 inst.reloc.type = BFD_RELOC_UNUSED;
11799 inst.instruction = THUMB_OP16 (T_MNEM_negs);
11800 inst.instruction |= Rs << 3;
11801 inst.instruction |= Rd;
11802 }
11803 else
11804 {
11805 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11806 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11807 }
c19d1205
ZW
11808 }
11809 else
11810 encode_thumb32_shifted_operand (2);
11811}
b99bd4ef 11812
c19d1205
ZW
11813static void
11814do_t_setend (void)
11815{
12e37cbc
MGD
11816 if (warn_on_deprecated
11817 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11818 as_warn (_("setend use is deprecated for ARMv8"));
11819
e07e6e58 11820 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
11821 if (inst.operands[0].imm)
11822 inst.instruction |= 0x8;
11823}
b99bd4ef 11824
c19d1205
ZW
11825static void
11826do_t_shift (void)
11827{
11828 if (!inst.operands[1].present)
11829 inst.operands[1].reg = inst.operands[0].reg;
11830
11831 if (unified_syntax)
11832 {
3d388997
PB
11833 bfd_boolean narrow;
11834 int shift_kind;
11835
11836 switch (inst.instruction)
11837 {
11838 case T_MNEM_asr:
11839 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
11840 case T_MNEM_lsl:
11841 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
11842 case T_MNEM_lsr:
11843 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
11844 case T_MNEM_ror:
11845 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
11846 default: abort ();
11847 }
11848
11849 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11850 narrow = !in_it_block ();
3d388997 11851 else
e07e6e58 11852 narrow = in_it_block ();
3d388997
PB
11853 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11854 narrow = FALSE;
11855 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
11856 narrow = FALSE;
11857 if (inst.operands[2].isreg
11858 && (inst.operands[1].reg != inst.operands[0].reg
11859 || inst.operands[2].reg > 7))
11860 narrow = FALSE;
11861 if (inst.size_req == 4)
11862 narrow = FALSE;
11863
fdfde340
JM
11864 reject_bad_reg (inst.operands[0].reg);
11865 reject_bad_reg (inst.operands[1].reg);
c921be7d 11866
3d388997 11867 if (!narrow)
c19d1205
ZW
11868 {
11869 if (inst.operands[2].isreg)
b99bd4ef 11870 {
fdfde340 11871 reject_bad_reg (inst.operands[2].reg);
c19d1205
ZW
11872 inst.instruction = THUMB_OP32 (inst.instruction);
11873 inst.instruction |= inst.operands[0].reg << 8;
11874 inst.instruction |= inst.operands[1].reg << 16;
11875 inst.instruction |= inst.operands[2].reg;
94342ec3
NC
11876
11877 /* PR 12854: Error on extraneous shifts. */
11878 constraint (inst.operands[2].shifted,
11879 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11880 }
11881 else
11882 {
11883 inst.operands[1].shifted = 1;
3d388997 11884 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
11885 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
11886 ? T_MNEM_movs : T_MNEM_mov);
11887 inst.instruction |= inst.operands[0].reg << 8;
11888 encode_thumb32_shifted_operand (1);
11889 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
11890 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
11891 }
11892 }
11893 else
11894 {
c19d1205 11895 if (inst.operands[2].isreg)
b99bd4ef 11896 {
3d388997 11897 switch (shift_kind)
b99bd4ef 11898 {
3d388997
PB
11899 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
11900 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
11901 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
11902 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 11903 default: abort ();
b99bd4ef 11904 }
5f4273c7 11905
c19d1205
ZW
11906 inst.instruction |= inst.operands[0].reg;
11907 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11908
11909 /* PR 12854: Error on extraneous shifts. */
11910 constraint (inst.operands[2].shifted,
11911 _("extraneous shift as part of operand to shift insn"));
b99bd4ef
NC
11912 }
11913 else
11914 {
3d388997 11915 switch (shift_kind)
b99bd4ef 11916 {
3d388997
PB
11917 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11918 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11919 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 11920 default: abort ();
b99bd4ef 11921 }
c19d1205
ZW
11922 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11923 inst.instruction |= inst.operands[0].reg;
11924 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
11925 }
11926 }
c19d1205
ZW
11927 }
11928 else
11929 {
11930 constraint (inst.operands[0].reg > 7
11931 || inst.operands[1].reg > 7, BAD_HIREG);
11932 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 11933
c19d1205
ZW
11934 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
11935 {
11936 constraint (inst.operands[2].reg > 7, BAD_HIREG);
11937 constraint (inst.operands[0].reg != inst.operands[1].reg,
11938 _("source1 and dest must be same register"));
b99bd4ef 11939
c19d1205
ZW
11940 switch (inst.instruction)
11941 {
11942 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
11943 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
11944 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
11945 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
11946 default: abort ();
11947 }
5f4273c7 11948
c19d1205
ZW
11949 inst.instruction |= inst.operands[0].reg;
11950 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11951
11952 /* PR 12854: Error on extraneous shifts. */
11953 constraint (inst.operands[2].shifted,
11954 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11955 }
11956 else
b99bd4ef 11957 {
c19d1205
ZW
11958 switch (inst.instruction)
11959 {
11960 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
11961 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
11962 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
11963 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
11964 default: abort ();
11965 }
11966 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11967 inst.instruction |= inst.operands[0].reg;
11968 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
11969 }
11970 }
b99bd4ef
NC
11971}
11972
11973static void
c19d1205 11974do_t_simd (void)
b99bd4ef 11975{
fdfde340
JM
11976 unsigned Rd, Rn, Rm;
11977
11978 Rd = inst.operands[0].reg;
11979 Rn = inst.operands[1].reg;
11980 Rm = inst.operands[2].reg;
11981
11982 reject_bad_reg (Rd);
11983 reject_bad_reg (Rn);
11984 reject_bad_reg (Rm);
11985
11986 inst.instruction |= Rd << 8;
11987 inst.instruction |= Rn << 16;
11988 inst.instruction |= Rm;
c19d1205 11989}
b99bd4ef 11990
03ee1b7f
NC
11991static void
11992do_t_simd2 (void)
11993{
11994 unsigned Rd, Rn, Rm;
11995
11996 Rd = inst.operands[0].reg;
11997 Rm = inst.operands[1].reg;
11998 Rn = inst.operands[2].reg;
11999
12000 reject_bad_reg (Rd);
12001 reject_bad_reg (Rn);
12002 reject_bad_reg (Rm);
12003
12004 inst.instruction |= Rd << 8;
12005 inst.instruction |= Rn << 16;
12006 inst.instruction |= Rm;
12007}
12008
c19d1205 12009static void
3eb17e6b 12010do_t_smc (void)
c19d1205
ZW
12011{
12012 unsigned int value = inst.reloc.exp.X_add_number;
f4c65163
MGD
12013 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
12014 _("SMC is not permitted on this architecture"));
c19d1205
ZW
12015 constraint (inst.reloc.exp.X_op != O_constant,
12016 _("expression too complex"));
12017 inst.reloc.type = BFD_RELOC_UNUSED;
12018 inst.instruction |= (value & 0xf000) >> 12;
12019 inst.instruction |= (value & 0x0ff0);
12020 inst.instruction |= (value & 0x000f) << 16;
24382199
NC
12021 /* PR gas/15623: SMC instructions must be last in an IT block. */
12022 set_it_insn_type_last ();
c19d1205 12023}
b99bd4ef 12024
90ec0d68
MGD
12025static void
12026do_t_hvc (void)
12027{
12028 unsigned int value = inst.reloc.exp.X_add_number;
12029
12030 inst.reloc.type = BFD_RELOC_UNUSED;
12031 inst.instruction |= (value & 0x0fff);
12032 inst.instruction |= (value & 0xf000) << 4;
12033}
12034
c19d1205 12035static void
3a21c15a 12036do_t_ssat_usat (int bias)
c19d1205 12037{
fdfde340
JM
12038 unsigned Rd, Rn;
12039
12040 Rd = inst.operands[0].reg;
12041 Rn = inst.operands[2].reg;
12042
12043 reject_bad_reg (Rd);
12044 reject_bad_reg (Rn);
12045
12046 inst.instruction |= Rd << 8;
3a21c15a 12047 inst.instruction |= inst.operands[1].imm - bias;
fdfde340 12048 inst.instruction |= Rn << 16;
b99bd4ef 12049
c19d1205 12050 if (inst.operands[3].present)
b99bd4ef 12051 {
3a21c15a
NC
12052 offsetT shift_amount = inst.reloc.exp.X_add_number;
12053
12054 inst.reloc.type = BFD_RELOC_UNUSED;
12055
c19d1205
ZW
12056 constraint (inst.reloc.exp.X_op != O_constant,
12057 _("expression too complex"));
b99bd4ef 12058
3a21c15a 12059 if (shift_amount != 0)
6189168b 12060 {
3a21c15a
NC
12061 constraint (shift_amount > 31,
12062 _("shift expression is too large"));
12063
c19d1205 12064 if (inst.operands[3].shift_kind == SHIFT_ASR)
3a21c15a
NC
12065 inst.instruction |= 0x00200000; /* sh bit. */
12066
12067 inst.instruction |= (shift_amount & 0x1c) << 10;
12068 inst.instruction |= (shift_amount & 0x03) << 6;
6189168b
NC
12069 }
12070 }
b99bd4ef 12071}
c921be7d 12072
3a21c15a
NC
12073static void
12074do_t_ssat (void)
12075{
12076 do_t_ssat_usat (1);
12077}
b99bd4ef 12078
0dd132b6 12079static void
c19d1205 12080do_t_ssat16 (void)
0dd132b6 12081{
fdfde340
JM
12082 unsigned Rd, Rn;
12083
12084 Rd = inst.operands[0].reg;
12085 Rn = inst.operands[2].reg;
12086
12087 reject_bad_reg (Rd);
12088 reject_bad_reg (Rn);
12089
12090 inst.instruction |= Rd << 8;
c19d1205 12091 inst.instruction |= inst.operands[1].imm - 1;
fdfde340 12092 inst.instruction |= Rn << 16;
c19d1205 12093}
0dd132b6 12094
c19d1205
ZW
12095static void
12096do_t_strex (void)
12097{
12098 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
12099 || inst.operands[2].postind || inst.operands[2].writeback
12100 || inst.operands[2].immisreg || inst.operands[2].shifted
12101 || inst.operands[2].negative,
01cfc07f 12102 BAD_ADDR_MODE);
0dd132b6 12103
5be8be5d
DG
12104 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
12105
c19d1205
ZW
12106 inst.instruction |= inst.operands[0].reg << 8;
12107 inst.instruction |= inst.operands[1].reg << 12;
12108 inst.instruction |= inst.operands[2].reg << 16;
12109 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
12110}
12111
b99bd4ef 12112static void
c19d1205 12113do_t_strexd (void)
b99bd4ef 12114{
c19d1205
ZW
12115 if (!inst.operands[2].present)
12116 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 12117
c19d1205
ZW
12118 constraint (inst.operands[0].reg == inst.operands[1].reg
12119 || inst.operands[0].reg == inst.operands[2].reg
f8a8e9d6 12120 || inst.operands[0].reg == inst.operands[3].reg,
c19d1205 12121 BAD_OVERLAP);
b99bd4ef 12122
c19d1205
ZW
12123 inst.instruction |= inst.operands[0].reg;
12124 inst.instruction |= inst.operands[1].reg << 12;
12125 inst.instruction |= inst.operands[2].reg << 8;
12126 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
12127}
12128
12129static void
c19d1205 12130do_t_sxtah (void)
b99bd4ef 12131{
fdfde340
JM
12132 unsigned Rd, Rn, Rm;
12133
12134 Rd = inst.operands[0].reg;
12135 Rn = inst.operands[1].reg;
12136 Rm = inst.operands[2].reg;
12137
12138 reject_bad_reg (Rd);
12139 reject_bad_reg (Rn);
12140 reject_bad_reg (Rm);
12141
12142 inst.instruction |= Rd << 8;
12143 inst.instruction |= Rn << 16;
12144 inst.instruction |= Rm;
c19d1205
ZW
12145 inst.instruction |= inst.operands[3].imm << 4;
12146}
b99bd4ef 12147
c19d1205
ZW
12148static void
12149do_t_sxth (void)
12150{
fdfde340
JM
12151 unsigned Rd, Rm;
12152
12153 Rd = inst.operands[0].reg;
12154 Rm = inst.operands[1].reg;
12155
12156 reject_bad_reg (Rd);
12157 reject_bad_reg (Rm);
c921be7d
NC
12158
12159 if (inst.instruction <= 0xffff
12160 && inst.size_req != 4
fdfde340 12161 && Rd <= 7 && Rm <= 7
c19d1205 12162 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 12163 {
c19d1205 12164 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12165 inst.instruction |= Rd;
12166 inst.instruction |= Rm << 3;
b99bd4ef 12167 }
c19d1205 12168 else if (unified_syntax)
b99bd4ef 12169 {
c19d1205
ZW
12170 if (inst.instruction <= 0xffff)
12171 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12172 inst.instruction |= Rd << 8;
12173 inst.instruction |= Rm;
c19d1205 12174 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 12175 }
c19d1205 12176 else
b99bd4ef 12177 {
c19d1205
ZW
12178 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
12179 _("Thumb encoding does not support rotation"));
12180 constraint (1, BAD_HIREG);
b99bd4ef 12181 }
c19d1205 12182}
b99bd4ef 12183
c19d1205
ZW
12184static void
12185do_t_swi (void)
12186{
b2a5fbdc
MGD
12187 /* We have to do the following check manually as ARM_EXT_OS only applies
12188 to ARM_EXT_V6M. */
12189 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6m))
12190 {
ac7f631b
NC
12191 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_os)
12192 /* This only applies to the v6m howver, not later architectures. */
12193 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7))
b2a5fbdc
MGD
12194 as_bad (_("SVC is not permitted on this architecture"));
12195 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, arm_ext_os);
12196 }
12197
c19d1205
ZW
12198 inst.reloc.type = BFD_RELOC_ARM_SWI;
12199}
b99bd4ef 12200
92e90b6e
PB
12201static void
12202do_t_tb (void)
12203{
fdfde340 12204 unsigned Rn, Rm;
92e90b6e
PB
12205 int half;
12206
12207 half = (inst.instruction & 0x10) != 0;
e07e6e58 12208 set_it_insn_type_last ();
dfa9f0d5
PB
12209 constraint (inst.operands[0].immisreg,
12210 _("instruction requires register index"));
fdfde340
JM
12211
12212 Rn = inst.operands[0].reg;
12213 Rm = inst.operands[0].imm;
c921be7d 12214
fdfde340
JM
12215 constraint (Rn == REG_SP, BAD_SP);
12216 reject_bad_reg (Rm);
12217
92e90b6e
PB
12218 constraint (!half && inst.operands[0].shifted,
12219 _("instruction does not allow shifted index"));
fdfde340 12220 inst.instruction |= (Rn << 16) | Rm;
92e90b6e
PB
12221}
12222
74db7efb
NC
12223static void
12224do_t_udf (void)
12225{
12226 if (!inst.operands[0].present)
12227 inst.operands[0].imm = 0;
12228
12229 if ((unsigned int) inst.operands[0].imm > 255 || inst.size_req == 4)
12230 {
12231 constraint (inst.size_req == 2,
12232 _("immediate value out of range"));
12233 inst.instruction = THUMB_OP32 (inst.instruction);
12234 inst.instruction |= (inst.operands[0].imm & 0xf000u) << 4;
12235 inst.instruction |= (inst.operands[0].imm & 0x0fffu) << 0;
12236 }
12237 else
12238 {
12239 inst.instruction = THUMB_OP16 (inst.instruction);
12240 inst.instruction |= inst.operands[0].imm;
12241 }
12242
12243 set_it_insn_type (NEUTRAL_IT_INSN);
12244}
12245
12246
c19d1205
ZW
12247static void
12248do_t_usat (void)
12249{
3a21c15a 12250 do_t_ssat_usat (0);
b99bd4ef
NC
12251}
12252
12253static void
c19d1205 12254do_t_usat16 (void)
b99bd4ef 12255{
fdfde340
JM
12256 unsigned Rd, Rn;
12257
12258 Rd = inst.operands[0].reg;
12259 Rn = inst.operands[2].reg;
12260
12261 reject_bad_reg (Rd);
12262 reject_bad_reg (Rn);
12263
12264 inst.instruction |= Rd << 8;
c19d1205 12265 inst.instruction |= inst.operands[1].imm;
fdfde340 12266 inst.instruction |= Rn << 16;
b99bd4ef 12267}
c19d1205 12268
5287ad62 12269/* Neon instruction encoder helpers. */
5f4273c7 12270
5287ad62 12271/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 12272
5287ad62
JB
12273/* An "invalid" code for the following tables. */
12274#define N_INV -1u
12275
12276struct neon_tab_entry
b99bd4ef 12277{
5287ad62
JB
12278 unsigned integer;
12279 unsigned float_or_poly;
12280 unsigned scalar_or_imm;
12281};
5f4273c7 12282
5287ad62
JB
12283/* Map overloaded Neon opcodes to their respective encodings. */
12284#define NEON_ENC_TAB \
12285 X(vabd, 0x0000700, 0x1200d00, N_INV), \
12286 X(vmax, 0x0000600, 0x0000f00, N_INV), \
12287 X(vmin, 0x0000610, 0x0200f00, N_INV), \
12288 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
12289 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
12290 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
12291 X(vadd, 0x0000800, 0x0000d00, N_INV), \
12292 X(vsub, 0x1000800, 0x0200d00, N_INV), \
12293 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
12294 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
12295 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
12296 /* Register variants of the following two instructions are encoded as
e07e6e58 12297 vcge / vcgt with the operands reversed. */ \
92559b5b
PB
12298 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
12299 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
62f3b8c8
PB
12300 X(vfma, N_INV, 0x0000c10, N_INV), \
12301 X(vfms, N_INV, 0x0200c10, N_INV), \
5287ad62
JB
12302 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
12303 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
12304 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
12305 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
12306 X(vmlal, 0x0800800, N_INV, 0x0800240), \
12307 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
12308 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
12309 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
12310 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
12311 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
12312 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
12313 X(vshl, 0x0000400, N_INV, 0x0800510), \
12314 X(vqshl, 0x0000410, N_INV, 0x0800710), \
12315 X(vand, 0x0000110, N_INV, 0x0800030), \
12316 X(vbic, 0x0100110, N_INV, 0x0800030), \
12317 X(veor, 0x1000110, N_INV, N_INV), \
12318 X(vorn, 0x0300110, N_INV, 0x0800010), \
12319 X(vorr, 0x0200110, N_INV, 0x0800010), \
12320 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
12321 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
12322 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
12323 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
12324 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
12325 X(vst1, 0x0000000, 0x0800000, N_INV), \
12326 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
12327 X(vst2, 0x0000100, 0x0800100, N_INV), \
12328 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
12329 X(vst3, 0x0000200, 0x0800200, N_INV), \
12330 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
12331 X(vst4, 0x0000300, 0x0800300, N_INV), \
12332 X(vmovn, 0x1b20200, N_INV, N_INV), \
12333 X(vtrn, 0x1b20080, N_INV, N_INV), \
12334 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
12335 X(vqmovun, 0x1b20240, N_INV, N_INV), \
12336 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
e6655fda
PB
12337 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
12338 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
62f3b8c8
PB
12339 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
12340 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
037e8744
JB
12341 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
12342 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
12343 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
33399f07
MGD
12344 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
12345 X(vseleq, 0xe000a00, N_INV, N_INV), \
12346 X(vselvs, 0xe100a00, N_INV, N_INV), \
12347 X(vselge, 0xe200a00, N_INV, N_INV), \
73924fbc
MGD
12348 X(vselgt, 0xe300a00, N_INV, N_INV), \
12349 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
7e8e6784 12350 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
30bdf752
MGD
12351 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
12352 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
91ff7894 12353 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
48adcd8e 12354 X(aes, 0x3b00300, N_INV, N_INV), \
3c9017d2
MGD
12355 X(sha3op, 0x2000c00, N_INV, N_INV), \
12356 X(sha1h, 0x3b902c0, N_INV, N_INV), \
12357 X(sha2op, 0x3ba0380, N_INV, N_INV)
5287ad62
JB
12358
12359enum neon_opc
12360{
12361#define X(OPC,I,F,S) N_MNEM_##OPC
12362NEON_ENC_TAB
12363#undef X
12364};
b99bd4ef 12365
5287ad62
JB
12366static const struct neon_tab_entry neon_enc_tab[] =
12367{
12368#define X(OPC,I,F,S) { (I), (F), (S) }
12369NEON_ENC_TAB
12370#undef X
12371};
b99bd4ef 12372
88714cb8
DG
12373/* Do not use these macros; instead, use NEON_ENCODE defined below. */
12374#define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12375#define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12376#define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12377#define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12378#define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12379#define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12380#define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12381#define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12382#define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12383#define NEON_ENC_SINGLE_(X) \
037e8744 12384 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
88714cb8 12385#define NEON_ENC_DOUBLE_(X) \
037e8744 12386 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
33399f07
MGD
12387#define NEON_ENC_FPV8_(X) \
12388 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
5287ad62 12389
88714cb8
DG
12390#define NEON_ENCODE(type, inst) \
12391 do \
12392 { \
12393 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
12394 inst.is_neon = 1; \
12395 } \
12396 while (0)
12397
12398#define check_neon_suffixes \
12399 do \
12400 { \
12401 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
12402 { \
12403 as_bad (_("invalid neon suffix for non neon instruction")); \
12404 return; \
12405 } \
12406 } \
12407 while (0)
12408
037e8744
JB
12409/* Define shapes for instruction operands. The following mnemonic characters
12410 are used in this table:
5287ad62 12411
037e8744 12412 F - VFP S<n> register
5287ad62
JB
12413 D - Neon D<n> register
12414 Q - Neon Q<n> register
12415 I - Immediate
12416 S - Scalar
12417 R - ARM register
12418 L - D<n> register list
5f4273c7 12419
037e8744
JB
12420 This table is used to generate various data:
12421 - enumerations of the form NS_DDR to be used as arguments to
12422 neon_select_shape.
12423 - a table classifying shapes into single, double, quad, mixed.
5f4273c7 12424 - a table used to drive neon_select_shape. */
b99bd4ef 12425
037e8744
JB
12426#define NEON_SHAPE_DEF \
12427 X(3, (D, D, D), DOUBLE), \
12428 X(3, (Q, Q, Q), QUAD), \
12429 X(3, (D, D, I), DOUBLE), \
12430 X(3, (Q, Q, I), QUAD), \
12431 X(3, (D, D, S), DOUBLE), \
12432 X(3, (Q, Q, S), QUAD), \
12433 X(2, (D, D), DOUBLE), \
12434 X(2, (Q, Q), QUAD), \
12435 X(2, (D, S), DOUBLE), \
12436 X(2, (Q, S), QUAD), \
12437 X(2, (D, R), DOUBLE), \
12438 X(2, (Q, R), QUAD), \
12439 X(2, (D, I), DOUBLE), \
12440 X(2, (Q, I), QUAD), \
12441 X(3, (D, L, D), DOUBLE), \
12442 X(2, (D, Q), MIXED), \
12443 X(2, (Q, D), MIXED), \
12444 X(3, (D, Q, I), MIXED), \
12445 X(3, (Q, D, I), MIXED), \
12446 X(3, (Q, D, D), MIXED), \
12447 X(3, (D, Q, Q), MIXED), \
12448 X(3, (Q, Q, D), MIXED), \
12449 X(3, (Q, D, S), MIXED), \
12450 X(3, (D, Q, S), MIXED), \
12451 X(4, (D, D, D, I), DOUBLE), \
12452 X(4, (Q, Q, Q, I), QUAD), \
12453 X(2, (F, F), SINGLE), \
12454 X(3, (F, F, F), SINGLE), \
12455 X(2, (F, I), SINGLE), \
12456 X(2, (F, D), MIXED), \
12457 X(2, (D, F), MIXED), \
12458 X(3, (F, F, I), MIXED), \
12459 X(4, (R, R, F, F), SINGLE), \
12460 X(4, (F, F, R, R), SINGLE), \
12461 X(3, (D, R, R), DOUBLE), \
12462 X(3, (R, R, D), DOUBLE), \
12463 X(2, (S, R), SINGLE), \
12464 X(2, (R, S), SINGLE), \
12465 X(2, (F, R), SINGLE), \
12466 X(2, (R, F), SINGLE)
12467
12468#define S2(A,B) NS_##A##B
12469#define S3(A,B,C) NS_##A##B##C
12470#define S4(A,B,C,D) NS_##A##B##C##D
12471
12472#define X(N, L, C) S##N L
12473
5287ad62
JB
12474enum neon_shape
12475{
037e8744
JB
12476 NEON_SHAPE_DEF,
12477 NS_NULL
5287ad62 12478};
b99bd4ef 12479
037e8744
JB
12480#undef X
12481#undef S2
12482#undef S3
12483#undef S4
12484
12485enum neon_shape_class
12486{
12487 SC_SINGLE,
12488 SC_DOUBLE,
12489 SC_QUAD,
12490 SC_MIXED
12491};
12492
12493#define X(N, L, C) SC_##C
12494
12495static enum neon_shape_class neon_shape_class[] =
12496{
12497 NEON_SHAPE_DEF
12498};
12499
12500#undef X
12501
12502enum neon_shape_el
12503{
12504 SE_F,
12505 SE_D,
12506 SE_Q,
12507 SE_I,
12508 SE_S,
12509 SE_R,
12510 SE_L
12511};
12512
12513/* Register widths of above. */
12514static unsigned neon_shape_el_size[] =
12515{
12516 32,
12517 64,
12518 128,
12519 0,
12520 32,
12521 32,
12522 0
12523};
12524
12525struct neon_shape_info
12526{
12527 unsigned els;
12528 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
12529};
12530
12531#define S2(A,B) { SE_##A, SE_##B }
12532#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
12533#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
12534
12535#define X(N, L, C) { N, S##N L }
12536
12537static struct neon_shape_info neon_shape_tab[] =
12538{
12539 NEON_SHAPE_DEF
12540};
12541
12542#undef X
12543#undef S2
12544#undef S3
12545#undef S4
12546
5287ad62
JB
12547/* Bit masks used in type checking given instructions.
12548 'N_EQK' means the type must be the same as (or based on in some way) the key
12549 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
12550 set, various other bits can be set as well in order to modify the meaning of
12551 the type constraint. */
12552
12553enum neon_type_mask
12554{
8e79c3df
CM
12555 N_S8 = 0x0000001,
12556 N_S16 = 0x0000002,
12557 N_S32 = 0x0000004,
12558 N_S64 = 0x0000008,
12559 N_U8 = 0x0000010,
12560 N_U16 = 0x0000020,
12561 N_U32 = 0x0000040,
12562 N_U64 = 0x0000080,
12563 N_I8 = 0x0000100,
12564 N_I16 = 0x0000200,
12565 N_I32 = 0x0000400,
12566 N_I64 = 0x0000800,
12567 N_8 = 0x0001000,
12568 N_16 = 0x0002000,
12569 N_32 = 0x0004000,
12570 N_64 = 0x0008000,
12571 N_P8 = 0x0010000,
12572 N_P16 = 0x0020000,
12573 N_F16 = 0x0040000,
12574 N_F32 = 0x0080000,
12575 N_F64 = 0x0100000,
4f51b4bd 12576 N_P64 = 0x0200000,
c921be7d
NC
12577 N_KEY = 0x1000000, /* Key element (main type specifier). */
12578 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
8e79c3df 12579 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
91ff7894 12580 N_UNT = 0x8000000, /* Must be explicitly untyped. */
c921be7d
NC
12581 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
12582 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
12583 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
12584 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
12585 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
12586 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
12587 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
5287ad62 12588 N_UTYP = 0,
4f51b4bd 12589 N_MAX_NONSPECIAL = N_P64
5287ad62
JB
12590};
12591
dcbf9037
JB
12592#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
12593
5287ad62
JB
12594#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
12595#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
12596#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
12597#define N_SUF_32 (N_SU_32 | N_F32)
12598#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
12599#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F32)
12600
12601/* Pass this as the first type argument to neon_check_type to ignore types
12602 altogether. */
12603#define N_IGNORE_TYPE (N_KEY | N_EQK)
12604
037e8744
JB
12605/* Select a "shape" for the current instruction (describing register types or
12606 sizes) from a list of alternatives. Return NS_NULL if the current instruction
12607 doesn't fit. For non-polymorphic shapes, checking is usually done as a
12608 function of operand parsing, so this function doesn't need to be called.
12609 Shapes should be listed in order of decreasing length. */
5287ad62
JB
12610
12611static enum neon_shape
037e8744 12612neon_select_shape (enum neon_shape shape, ...)
5287ad62 12613{
037e8744
JB
12614 va_list ap;
12615 enum neon_shape first_shape = shape;
5287ad62
JB
12616
12617 /* Fix missing optional operands. FIXME: we don't know at this point how
12618 many arguments we should have, so this makes the assumption that we have
12619 > 1. This is true of all current Neon opcodes, I think, but may not be
12620 true in the future. */
12621 if (!inst.operands[1].present)
12622 inst.operands[1] = inst.operands[0];
12623
037e8744 12624 va_start (ap, shape);
5f4273c7 12625
21d799b5 12626 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
037e8744
JB
12627 {
12628 unsigned j;
12629 int matches = 1;
12630
12631 for (j = 0; j < neon_shape_tab[shape].els; j++)
477330fc
RM
12632 {
12633 if (!inst.operands[j].present)
12634 {
12635 matches = 0;
12636 break;
12637 }
12638
12639 switch (neon_shape_tab[shape].el[j])
12640 {
12641 case SE_F:
12642 if (!(inst.operands[j].isreg
12643 && inst.operands[j].isvec
12644 && inst.operands[j].issingle
12645 && !inst.operands[j].isquad))
12646 matches = 0;
12647 break;
12648
12649 case SE_D:
12650 if (!(inst.operands[j].isreg
12651 && inst.operands[j].isvec
12652 && !inst.operands[j].isquad
12653 && !inst.operands[j].issingle))
12654 matches = 0;
12655 break;
12656
12657 case SE_R:
12658 if (!(inst.operands[j].isreg
12659 && !inst.operands[j].isvec))
12660 matches = 0;
12661 break;
12662
12663 case SE_Q:
12664 if (!(inst.operands[j].isreg
12665 && inst.operands[j].isvec
12666 && inst.operands[j].isquad
12667 && !inst.operands[j].issingle))
12668 matches = 0;
12669 break;
12670
12671 case SE_I:
12672 if (!(!inst.operands[j].isreg
12673 && !inst.operands[j].isscalar))
12674 matches = 0;
12675 break;
12676
12677 case SE_S:
12678 if (!(!inst.operands[j].isreg
12679 && inst.operands[j].isscalar))
12680 matches = 0;
12681 break;
12682
12683 case SE_L:
12684 break;
12685 }
3fde54a2
JZ
12686 if (!matches)
12687 break;
477330fc 12688 }
ad6cec43
MGD
12689 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
12690 /* We've matched all the entries in the shape table, and we don't
12691 have any left over operands which have not been matched. */
477330fc 12692 break;
037e8744 12693 }
5f4273c7 12694
037e8744 12695 va_end (ap);
5287ad62 12696
037e8744
JB
12697 if (shape == NS_NULL && first_shape != NS_NULL)
12698 first_error (_("invalid instruction shape"));
5287ad62 12699
037e8744
JB
12700 return shape;
12701}
5287ad62 12702
037e8744
JB
12703/* True if SHAPE is predominantly a quadword operation (most of the time, this
12704 means the Q bit should be set). */
12705
12706static int
12707neon_quad (enum neon_shape shape)
12708{
12709 return neon_shape_class[shape] == SC_QUAD;
5287ad62 12710}
037e8744 12711
5287ad62
JB
12712static void
12713neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
477330fc 12714 unsigned *g_size)
5287ad62
JB
12715{
12716 /* Allow modification to be made to types which are constrained to be
12717 based on the key element, based on bits set alongside N_EQK. */
12718 if ((typebits & N_EQK) != 0)
12719 {
12720 if ((typebits & N_HLF) != 0)
12721 *g_size /= 2;
12722 else if ((typebits & N_DBL) != 0)
12723 *g_size *= 2;
12724 if ((typebits & N_SGN) != 0)
12725 *g_type = NT_signed;
12726 else if ((typebits & N_UNS) != 0)
477330fc 12727 *g_type = NT_unsigned;
5287ad62 12728 else if ((typebits & N_INT) != 0)
477330fc 12729 *g_type = NT_integer;
5287ad62 12730 else if ((typebits & N_FLT) != 0)
477330fc 12731 *g_type = NT_float;
dcbf9037 12732 else if ((typebits & N_SIZ) != 0)
477330fc 12733 *g_type = NT_untyped;
5287ad62
JB
12734 }
12735}
5f4273c7 12736
5287ad62
JB
12737/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
12738 operand type, i.e. the single type specified in a Neon instruction when it
12739 is the only one given. */
12740
12741static struct neon_type_el
12742neon_type_promote (struct neon_type_el *key, unsigned thisarg)
12743{
12744 struct neon_type_el dest = *key;
5f4273c7 12745
9c2799c2 12746 gas_assert ((thisarg & N_EQK) != 0);
5f4273c7 12747
5287ad62
JB
12748 neon_modify_type_size (thisarg, &dest.type, &dest.size);
12749
12750 return dest;
12751}
12752
12753/* Convert Neon type and size into compact bitmask representation. */
12754
12755static enum neon_type_mask
12756type_chk_of_el_type (enum neon_el_type type, unsigned size)
12757{
12758 switch (type)
12759 {
12760 case NT_untyped:
12761 switch (size)
477330fc
RM
12762 {
12763 case 8: return N_8;
12764 case 16: return N_16;
12765 case 32: return N_32;
12766 case 64: return N_64;
12767 default: ;
12768 }
5287ad62
JB
12769 break;
12770
12771 case NT_integer:
12772 switch (size)
477330fc
RM
12773 {
12774 case 8: return N_I8;
12775 case 16: return N_I16;
12776 case 32: return N_I32;
12777 case 64: return N_I64;
12778 default: ;
12779 }
5287ad62
JB
12780 break;
12781
12782 case NT_float:
037e8744 12783 switch (size)
477330fc 12784 {
8e79c3df 12785 case 16: return N_F16;
477330fc
RM
12786 case 32: return N_F32;
12787 case 64: return N_F64;
12788 default: ;
12789 }
5287ad62
JB
12790 break;
12791
12792 case NT_poly:
12793 switch (size)
477330fc
RM
12794 {
12795 case 8: return N_P8;
12796 case 16: return N_P16;
4f51b4bd 12797 case 64: return N_P64;
477330fc
RM
12798 default: ;
12799 }
5287ad62
JB
12800 break;
12801
12802 case NT_signed:
12803 switch (size)
477330fc
RM
12804 {
12805 case 8: return N_S8;
12806 case 16: return N_S16;
12807 case 32: return N_S32;
12808 case 64: return N_S64;
12809 default: ;
12810 }
5287ad62
JB
12811 break;
12812
12813 case NT_unsigned:
12814 switch (size)
477330fc
RM
12815 {
12816 case 8: return N_U8;
12817 case 16: return N_U16;
12818 case 32: return N_U32;
12819 case 64: return N_U64;
12820 default: ;
12821 }
5287ad62
JB
12822 break;
12823
12824 default: ;
12825 }
5f4273c7 12826
5287ad62
JB
12827 return N_UTYP;
12828}
12829
12830/* Convert compact Neon bitmask type representation to a type and size. Only
12831 handles the case where a single bit is set in the mask. */
12832
dcbf9037 12833static int
5287ad62 12834el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
477330fc 12835 enum neon_type_mask mask)
5287ad62 12836{
dcbf9037
JB
12837 if ((mask & N_EQK) != 0)
12838 return FAIL;
12839
5287ad62
JB
12840 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
12841 *size = 8;
c70a8987 12842 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16)) != 0)
5287ad62 12843 *size = 16;
dcbf9037 12844 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 12845 *size = 32;
4f51b4bd 12846 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
5287ad62 12847 *size = 64;
dcbf9037
JB
12848 else
12849 return FAIL;
12850
5287ad62
JB
12851 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
12852 *type = NT_signed;
dcbf9037 12853 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 12854 *type = NT_unsigned;
dcbf9037 12855 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 12856 *type = NT_integer;
dcbf9037 12857 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 12858 *type = NT_untyped;
4f51b4bd 12859 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
5287ad62 12860 *type = NT_poly;
c70a8987 12861 else if ((mask & (N_F16 | N_F32 | N_F64)) != 0)
5287ad62 12862 *type = NT_float;
dcbf9037
JB
12863 else
12864 return FAIL;
5f4273c7 12865
dcbf9037 12866 return SUCCESS;
5287ad62
JB
12867}
12868
12869/* Modify a bitmask of allowed types. This is only needed for type
12870 relaxation. */
12871
12872static unsigned
12873modify_types_allowed (unsigned allowed, unsigned mods)
12874{
12875 unsigned size;
12876 enum neon_el_type type;
12877 unsigned destmask;
12878 int i;
5f4273c7 12879
5287ad62 12880 destmask = 0;
5f4273c7 12881
5287ad62
JB
12882 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
12883 {
21d799b5 12884 if (el_type_of_type_chk (&type, &size,
477330fc
RM
12885 (enum neon_type_mask) (allowed & i)) == SUCCESS)
12886 {
12887 neon_modify_type_size (mods, &type, &size);
12888 destmask |= type_chk_of_el_type (type, size);
12889 }
5287ad62 12890 }
5f4273c7 12891
5287ad62
JB
12892 return destmask;
12893}
12894
12895/* Check type and return type classification.
12896 The manual states (paraphrase): If one datatype is given, it indicates the
12897 type given in:
12898 - the second operand, if there is one
12899 - the operand, if there is no second operand
12900 - the result, if there are no operands.
12901 This isn't quite good enough though, so we use a concept of a "key" datatype
12902 which is set on a per-instruction basis, which is the one which matters when
12903 only one data type is written.
12904 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 12905 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
12906
12907static struct neon_type_el
12908neon_check_type (unsigned els, enum neon_shape ns, ...)
12909{
12910 va_list ap;
12911 unsigned i, pass, key_el = 0;
12912 unsigned types[NEON_MAX_TYPE_ELS];
12913 enum neon_el_type k_type = NT_invtype;
12914 unsigned k_size = -1u;
12915 struct neon_type_el badtype = {NT_invtype, -1};
12916 unsigned key_allowed = 0;
12917
12918 /* Optional registers in Neon instructions are always (not) in operand 1.
12919 Fill in the missing operand here, if it was omitted. */
12920 if (els > 1 && !inst.operands[1].present)
12921 inst.operands[1] = inst.operands[0];
12922
12923 /* Suck up all the varargs. */
12924 va_start (ap, ns);
12925 for (i = 0; i < els; i++)
12926 {
12927 unsigned thisarg = va_arg (ap, unsigned);
12928 if (thisarg == N_IGNORE_TYPE)
477330fc
RM
12929 {
12930 va_end (ap);
12931 return badtype;
12932 }
5287ad62
JB
12933 types[i] = thisarg;
12934 if ((thisarg & N_KEY) != 0)
477330fc 12935 key_el = i;
5287ad62
JB
12936 }
12937 va_end (ap);
12938
dcbf9037
JB
12939 if (inst.vectype.elems > 0)
12940 for (i = 0; i < els; i++)
12941 if (inst.operands[i].vectype.type != NT_invtype)
477330fc
RM
12942 {
12943 first_error (_("types specified in both the mnemonic and operands"));
12944 return badtype;
12945 }
dcbf9037 12946
5287ad62
JB
12947 /* Duplicate inst.vectype elements here as necessary.
12948 FIXME: No idea if this is exactly the same as the ARM assembler,
12949 particularly when an insn takes one register and one non-register
12950 operand. */
12951 if (inst.vectype.elems == 1 && els > 1)
12952 {
12953 unsigned j;
12954 inst.vectype.elems = els;
12955 inst.vectype.el[key_el] = inst.vectype.el[0];
12956 for (j = 0; j < els; j++)
477330fc
RM
12957 if (j != key_el)
12958 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12959 types[j]);
dcbf9037
JB
12960 }
12961 else if (inst.vectype.elems == 0 && els > 0)
12962 {
12963 unsigned j;
12964 /* No types were given after the mnemonic, so look for types specified
477330fc
RM
12965 after each operand. We allow some flexibility here; as long as the
12966 "key" operand has a type, we can infer the others. */
dcbf9037 12967 for (j = 0; j < els; j++)
477330fc
RM
12968 if (inst.operands[j].vectype.type != NT_invtype)
12969 inst.vectype.el[j] = inst.operands[j].vectype;
dcbf9037
JB
12970
12971 if (inst.operands[key_el].vectype.type != NT_invtype)
477330fc
RM
12972 {
12973 for (j = 0; j < els; j++)
12974 if (inst.operands[j].vectype.type == NT_invtype)
12975 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12976 types[j]);
12977 }
dcbf9037 12978 else
477330fc
RM
12979 {
12980 first_error (_("operand types can't be inferred"));
12981 return badtype;
12982 }
5287ad62
JB
12983 }
12984 else if (inst.vectype.elems != els)
12985 {
dcbf9037 12986 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
12987 return badtype;
12988 }
12989
12990 for (pass = 0; pass < 2; pass++)
12991 {
12992 for (i = 0; i < els; i++)
477330fc
RM
12993 {
12994 unsigned thisarg = types[i];
12995 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
12996 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
12997 enum neon_el_type g_type = inst.vectype.el[i].type;
12998 unsigned g_size = inst.vectype.el[i].size;
12999
13000 /* Decay more-specific signed & unsigned types to sign-insensitive
5287ad62 13001 integer types if sign-specific variants are unavailable. */
477330fc 13002 if ((g_type == NT_signed || g_type == NT_unsigned)
5287ad62
JB
13003 && (types_allowed & N_SU_ALL) == 0)
13004 g_type = NT_integer;
13005
477330fc 13006 /* If only untyped args are allowed, decay any more specific types to
5287ad62
JB
13007 them. Some instructions only care about signs for some element
13008 sizes, so handle that properly. */
477330fc 13009 if (((types_allowed & N_UNT) == 0)
91ff7894
MGD
13010 && ((g_size == 8 && (types_allowed & N_8) != 0)
13011 || (g_size == 16 && (types_allowed & N_16) != 0)
13012 || (g_size == 32 && (types_allowed & N_32) != 0)
13013 || (g_size == 64 && (types_allowed & N_64) != 0)))
5287ad62
JB
13014 g_type = NT_untyped;
13015
477330fc
RM
13016 if (pass == 0)
13017 {
13018 if ((thisarg & N_KEY) != 0)
13019 {
13020 k_type = g_type;
13021 k_size = g_size;
13022 key_allowed = thisarg & ~N_KEY;
13023 }
13024 }
13025 else
13026 {
13027 if ((thisarg & N_VFP) != 0)
13028 {
13029 enum neon_shape_el regshape;
13030 unsigned regwidth, match;
99b253c5
NC
13031
13032 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
13033 if (ns == NS_NULL)
13034 {
13035 first_error (_("invalid instruction shape"));
13036 return badtype;
13037 }
477330fc
RM
13038 regshape = neon_shape_tab[ns].el[i];
13039 regwidth = neon_shape_el_size[regshape];
13040
13041 /* In VFP mode, operands must match register widths. If we
13042 have a key operand, use its width, else use the width of
13043 the current operand. */
13044 if (k_size != -1u)
13045 match = k_size;
13046 else
13047 match = g_size;
13048
13049 if (regwidth != match)
13050 {
13051 first_error (_("operand size must match register width"));
13052 return badtype;
13053 }
13054 }
13055
13056 if ((thisarg & N_EQK) == 0)
13057 {
13058 unsigned given_type = type_chk_of_el_type (g_type, g_size);
13059
13060 if ((given_type & types_allowed) == 0)
13061 {
13062 first_error (_("bad type in Neon instruction"));
13063 return badtype;
13064 }
13065 }
13066 else
13067 {
13068 enum neon_el_type mod_k_type = k_type;
13069 unsigned mod_k_size = k_size;
13070 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
13071 if (g_type != mod_k_type || g_size != mod_k_size)
13072 {
13073 first_error (_("inconsistent types in Neon instruction"));
13074 return badtype;
13075 }
13076 }
13077 }
13078 }
5287ad62
JB
13079 }
13080
13081 return inst.vectype.el[key_el];
13082}
13083
037e8744 13084/* Neon-style VFP instruction forwarding. */
5287ad62 13085
037e8744
JB
13086/* Thumb VFP instructions have 0xE in the condition field. */
13087
13088static void
13089do_vfp_cond_or_thumb (void)
5287ad62 13090{
88714cb8
DG
13091 inst.is_neon = 1;
13092
5287ad62 13093 if (thumb_mode)
037e8744 13094 inst.instruction |= 0xe0000000;
5287ad62 13095 else
037e8744 13096 inst.instruction |= inst.cond << 28;
5287ad62
JB
13097}
13098
037e8744
JB
13099/* Look up and encode a simple mnemonic, for use as a helper function for the
13100 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
13101 etc. It is assumed that operand parsing has already been done, and that the
13102 operands are in the form expected by the given opcode (this isn't necessarily
13103 the same as the form in which they were parsed, hence some massaging must
13104 take place before this function is called).
13105 Checks current arch version against that in the looked-up opcode. */
5287ad62 13106
037e8744
JB
13107static void
13108do_vfp_nsyn_opcode (const char *opname)
5287ad62 13109{
037e8744 13110 const struct asm_opcode *opcode;
5f4273c7 13111
21d799b5 13112 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
5287ad62 13113
037e8744
JB
13114 if (!opcode)
13115 abort ();
5287ad62 13116
037e8744 13117 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
477330fc
RM
13118 thumb_mode ? *opcode->tvariant : *opcode->avariant),
13119 _(BAD_FPU));
5287ad62 13120
88714cb8
DG
13121 inst.is_neon = 1;
13122
037e8744
JB
13123 if (thumb_mode)
13124 {
13125 inst.instruction = opcode->tvalue;
13126 opcode->tencode ();
13127 }
13128 else
13129 {
13130 inst.instruction = (inst.cond << 28) | opcode->avalue;
13131 opcode->aencode ();
13132 }
13133}
5287ad62
JB
13134
13135static void
037e8744 13136do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 13137{
037e8744
JB
13138 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
13139
13140 if (rs == NS_FFF)
13141 {
13142 if (is_add)
477330fc 13143 do_vfp_nsyn_opcode ("fadds");
037e8744 13144 else
477330fc 13145 do_vfp_nsyn_opcode ("fsubs");
037e8744
JB
13146 }
13147 else
13148 {
13149 if (is_add)
477330fc 13150 do_vfp_nsyn_opcode ("faddd");
037e8744 13151 else
477330fc 13152 do_vfp_nsyn_opcode ("fsubd");
037e8744
JB
13153 }
13154}
13155
13156/* Check operand types to see if this is a VFP instruction, and if so call
13157 PFN (). */
13158
13159static int
13160try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
13161{
13162 enum neon_shape rs;
13163 struct neon_type_el et;
13164
13165 switch (args)
13166 {
13167 case 2:
13168 rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13169 et = neon_check_type (2, rs,
477330fc 13170 N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
037e8744 13171 break;
5f4273c7 13172
037e8744
JB
13173 case 3:
13174 rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13175 et = neon_check_type (3, rs,
477330fc 13176 N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
037e8744
JB
13177 break;
13178
13179 default:
13180 abort ();
13181 }
13182
13183 if (et.type != NT_invtype)
13184 {
13185 pfn (rs);
13186 return SUCCESS;
13187 }
037e8744 13188
99b253c5 13189 inst.error = NULL;
037e8744
JB
13190 return FAIL;
13191}
13192
13193static void
13194do_vfp_nsyn_mla_mls (enum neon_shape rs)
13195{
13196 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
5f4273c7 13197
037e8744
JB
13198 if (rs == NS_FFF)
13199 {
13200 if (is_mla)
477330fc 13201 do_vfp_nsyn_opcode ("fmacs");
037e8744 13202 else
477330fc 13203 do_vfp_nsyn_opcode ("fnmacs");
037e8744
JB
13204 }
13205 else
13206 {
13207 if (is_mla)
477330fc 13208 do_vfp_nsyn_opcode ("fmacd");
037e8744 13209 else
477330fc 13210 do_vfp_nsyn_opcode ("fnmacd");
037e8744
JB
13211 }
13212}
13213
62f3b8c8
PB
13214static void
13215do_vfp_nsyn_fma_fms (enum neon_shape rs)
13216{
13217 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
13218
13219 if (rs == NS_FFF)
13220 {
13221 if (is_fma)
477330fc 13222 do_vfp_nsyn_opcode ("ffmas");
62f3b8c8 13223 else
477330fc 13224 do_vfp_nsyn_opcode ("ffnmas");
62f3b8c8
PB
13225 }
13226 else
13227 {
13228 if (is_fma)
477330fc 13229 do_vfp_nsyn_opcode ("ffmad");
62f3b8c8 13230 else
477330fc 13231 do_vfp_nsyn_opcode ("ffnmad");
62f3b8c8
PB
13232 }
13233}
13234
037e8744
JB
13235static void
13236do_vfp_nsyn_mul (enum neon_shape rs)
13237{
13238 if (rs == NS_FFF)
13239 do_vfp_nsyn_opcode ("fmuls");
13240 else
13241 do_vfp_nsyn_opcode ("fmuld");
13242}
13243
13244static void
13245do_vfp_nsyn_abs_neg (enum neon_shape rs)
13246{
13247 int is_neg = (inst.instruction & 0x80) != 0;
13248 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
13249
13250 if (rs == NS_FF)
13251 {
13252 if (is_neg)
477330fc 13253 do_vfp_nsyn_opcode ("fnegs");
037e8744 13254 else
477330fc 13255 do_vfp_nsyn_opcode ("fabss");
037e8744
JB
13256 }
13257 else
13258 {
13259 if (is_neg)
477330fc 13260 do_vfp_nsyn_opcode ("fnegd");
037e8744 13261 else
477330fc 13262 do_vfp_nsyn_opcode ("fabsd");
037e8744
JB
13263 }
13264}
13265
13266/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
13267 insns belong to Neon, and are handled elsewhere. */
13268
13269static void
13270do_vfp_nsyn_ldm_stm (int is_dbmode)
13271{
13272 int is_ldm = (inst.instruction & (1 << 20)) != 0;
13273 if (is_ldm)
13274 {
13275 if (is_dbmode)
477330fc 13276 do_vfp_nsyn_opcode ("fldmdbs");
037e8744 13277 else
477330fc 13278 do_vfp_nsyn_opcode ("fldmias");
037e8744
JB
13279 }
13280 else
13281 {
13282 if (is_dbmode)
477330fc 13283 do_vfp_nsyn_opcode ("fstmdbs");
037e8744 13284 else
477330fc 13285 do_vfp_nsyn_opcode ("fstmias");
037e8744
JB
13286 }
13287}
13288
037e8744
JB
13289static void
13290do_vfp_nsyn_sqrt (void)
13291{
13292 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13293 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13294
037e8744
JB
13295 if (rs == NS_FF)
13296 do_vfp_nsyn_opcode ("fsqrts");
13297 else
13298 do_vfp_nsyn_opcode ("fsqrtd");
13299}
13300
13301static void
13302do_vfp_nsyn_div (void)
13303{
13304 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13305 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13306 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13307
037e8744
JB
13308 if (rs == NS_FFF)
13309 do_vfp_nsyn_opcode ("fdivs");
13310 else
13311 do_vfp_nsyn_opcode ("fdivd");
13312}
13313
13314static void
13315do_vfp_nsyn_nmul (void)
13316{
13317 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13318 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13319 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13320
037e8744
JB
13321 if (rs == NS_FFF)
13322 {
88714cb8 13323 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13324 do_vfp_sp_dyadic ();
13325 }
13326 else
13327 {
88714cb8 13328 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13329 do_vfp_dp_rd_rn_rm ();
13330 }
13331 do_vfp_cond_or_thumb ();
13332}
13333
13334static void
13335do_vfp_nsyn_cmp (void)
13336{
13337 if (inst.operands[1].isreg)
13338 {
13339 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13340 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13341
037e8744 13342 if (rs == NS_FF)
477330fc
RM
13343 {
13344 NEON_ENCODE (SINGLE, inst);
13345 do_vfp_sp_monadic ();
13346 }
037e8744 13347 else
477330fc
RM
13348 {
13349 NEON_ENCODE (DOUBLE, inst);
13350 do_vfp_dp_rd_rm ();
13351 }
037e8744
JB
13352 }
13353 else
13354 {
13355 enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
13356 neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
13357
13358 switch (inst.instruction & 0x0fffffff)
477330fc
RM
13359 {
13360 case N_MNEM_vcmp:
13361 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
13362 break;
13363 case N_MNEM_vcmpe:
13364 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
13365 break;
13366 default:
13367 abort ();
13368 }
5f4273c7 13369
037e8744 13370 if (rs == NS_FI)
477330fc
RM
13371 {
13372 NEON_ENCODE (SINGLE, inst);
13373 do_vfp_sp_compare_z ();
13374 }
037e8744 13375 else
477330fc
RM
13376 {
13377 NEON_ENCODE (DOUBLE, inst);
13378 do_vfp_dp_rd ();
13379 }
037e8744
JB
13380 }
13381 do_vfp_cond_or_thumb ();
13382}
13383
13384static void
13385nsyn_insert_sp (void)
13386{
13387 inst.operands[1] = inst.operands[0];
13388 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
fdfde340 13389 inst.operands[0].reg = REG_SP;
037e8744
JB
13390 inst.operands[0].isreg = 1;
13391 inst.operands[0].writeback = 1;
13392 inst.operands[0].present = 1;
13393}
13394
13395static void
13396do_vfp_nsyn_push (void)
13397{
13398 nsyn_insert_sp ();
13399 if (inst.operands[1].issingle)
13400 do_vfp_nsyn_opcode ("fstmdbs");
13401 else
13402 do_vfp_nsyn_opcode ("fstmdbd");
13403}
13404
13405static void
13406do_vfp_nsyn_pop (void)
13407{
13408 nsyn_insert_sp ();
13409 if (inst.operands[1].issingle)
22b5b651 13410 do_vfp_nsyn_opcode ("fldmias");
037e8744 13411 else
22b5b651 13412 do_vfp_nsyn_opcode ("fldmiad");
037e8744
JB
13413}
13414
13415/* Fix up Neon data-processing instructions, ORing in the correct bits for
13416 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
13417
88714cb8
DG
13418static void
13419neon_dp_fixup (struct arm_it* insn)
037e8744 13420{
88714cb8
DG
13421 unsigned int i = insn->instruction;
13422 insn->is_neon = 1;
13423
037e8744
JB
13424 if (thumb_mode)
13425 {
13426 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
13427 if (i & (1 << 24))
477330fc 13428 i |= 1 << 28;
5f4273c7 13429
037e8744 13430 i &= ~(1 << 24);
5f4273c7 13431
037e8744
JB
13432 i |= 0xef000000;
13433 }
13434 else
13435 i |= 0xf2000000;
5f4273c7 13436
88714cb8 13437 insn->instruction = i;
037e8744
JB
13438}
13439
13440/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
13441 (0, 1, 2, 3). */
13442
13443static unsigned
13444neon_logbits (unsigned x)
13445{
13446 return ffs (x) - 4;
13447}
13448
13449#define LOW4(R) ((R) & 0xf)
13450#define HI1(R) (((R) >> 4) & 1)
13451
13452/* Encode insns with bit pattern:
13453
13454 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
13455 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
5f4273c7 13456
037e8744
JB
13457 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
13458 different meaning for some instruction. */
13459
13460static void
13461neon_three_same (int isquad, int ubit, int size)
13462{
13463 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13464 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13465 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
13466 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
13467 inst.instruction |= LOW4 (inst.operands[2].reg);
13468 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
13469 inst.instruction |= (isquad != 0) << 6;
13470 inst.instruction |= (ubit != 0) << 24;
13471 if (size != -1)
13472 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 13473
88714cb8 13474 neon_dp_fixup (&inst);
037e8744
JB
13475}
13476
13477/* Encode instructions of the form:
13478
13479 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
13480 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
13481
13482 Don't write size if SIZE == -1. */
13483
13484static void
13485neon_two_same (int qbit, int ubit, int size)
13486{
13487 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13488 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13489 inst.instruction |= LOW4 (inst.operands[1].reg);
13490 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13491 inst.instruction |= (qbit != 0) << 6;
13492 inst.instruction |= (ubit != 0) << 24;
13493
13494 if (size != -1)
13495 inst.instruction |= neon_logbits (size) << 18;
13496
88714cb8 13497 neon_dp_fixup (&inst);
5287ad62
JB
13498}
13499
13500/* Neon instruction encoders, in approximate order of appearance. */
13501
13502static void
13503do_neon_dyadic_i_su (void)
13504{
037e8744 13505 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13506 struct neon_type_el et = neon_check_type (3, rs,
13507 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 13508 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13509}
13510
13511static void
13512do_neon_dyadic_i64_su (void)
13513{
037e8744 13514 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13515 struct neon_type_el et = neon_check_type (3, rs,
13516 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 13517 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13518}
13519
13520static void
13521neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
477330fc 13522 unsigned immbits)
5287ad62
JB
13523{
13524 unsigned size = et.size >> 3;
13525 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13526 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13527 inst.instruction |= LOW4 (inst.operands[1].reg);
13528 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13529 inst.instruction |= (isquad != 0) << 6;
13530 inst.instruction |= immbits << 16;
13531 inst.instruction |= (size >> 3) << 7;
13532 inst.instruction |= (size & 0x7) << 19;
13533 if (write_ubit)
13534 inst.instruction |= (uval != 0) << 24;
13535
88714cb8 13536 neon_dp_fixup (&inst);
5287ad62
JB
13537}
13538
13539static void
13540do_neon_shl_imm (void)
13541{
13542 if (!inst.operands[2].isreg)
13543 {
037e8744 13544 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13545 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
88714cb8 13546 NEON_ENCODE (IMMED, inst);
037e8744 13547 neon_imm_shift (FALSE, 0, neon_quad (rs), et, inst.operands[2].imm);
5287ad62
JB
13548 }
13549 else
13550 {
037e8744 13551 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 13552 struct neon_type_el et = neon_check_type (3, rs,
477330fc 13553 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13554 unsigned int tmp;
13555
13556 /* VSHL/VQSHL 3-register variants have syntax such as:
477330fc
RM
13557 vshl.xx Dd, Dm, Dn
13558 whereas other 3-register operations encoded by neon_three_same have
13559 syntax like:
13560 vadd.xx Dd, Dn, Dm
13561 (i.e. with Dn & Dm reversed). Swap operands[1].reg and operands[2].reg
13562 here. */
627907b7
JB
13563 tmp = inst.operands[2].reg;
13564 inst.operands[2].reg = inst.operands[1].reg;
13565 inst.operands[1].reg = tmp;
88714cb8 13566 NEON_ENCODE (INTEGER, inst);
037e8744 13567 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13568 }
13569}
13570
13571static void
13572do_neon_qshl_imm (void)
13573{
13574 if (!inst.operands[2].isreg)
13575 {
037e8744 13576 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13577 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
627907b7 13578
88714cb8 13579 NEON_ENCODE (IMMED, inst);
037e8744 13580 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
477330fc 13581 inst.operands[2].imm);
5287ad62
JB
13582 }
13583 else
13584 {
037e8744 13585 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 13586 struct neon_type_el et = neon_check_type (3, rs,
477330fc 13587 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13588 unsigned int tmp;
13589
13590 /* See note in do_neon_shl_imm. */
13591 tmp = inst.operands[2].reg;
13592 inst.operands[2].reg = inst.operands[1].reg;
13593 inst.operands[1].reg = tmp;
88714cb8 13594 NEON_ENCODE (INTEGER, inst);
037e8744 13595 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13596 }
13597}
13598
627907b7
JB
13599static void
13600do_neon_rshl (void)
13601{
13602 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
13603 struct neon_type_el et = neon_check_type (3, rs,
13604 N_EQK, N_EQK, N_SU_ALL | N_KEY);
13605 unsigned int tmp;
13606
13607 tmp = inst.operands[2].reg;
13608 inst.operands[2].reg = inst.operands[1].reg;
13609 inst.operands[1].reg = tmp;
13610 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
13611}
13612
5287ad62
JB
13613static int
13614neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
13615{
036dc3f7
PB
13616 /* Handle .I8 pseudo-instructions. */
13617 if (size == 8)
5287ad62 13618 {
5287ad62 13619 /* Unfortunately, this will make everything apart from zero out-of-range.
477330fc
RM
13620 FIXME is this the intended semantics? There doesn't seem much point in
13621 accepting .I8 if so. */
5287ad62
JB
13622 immediate |= immediate << 8;
13623 size = 16;
036dc3f7
PB
13624 }
13625
13626 if (size >= 32)
13627 {
13628 if (immediate == (immediate & 0x000000ff))
13629 {
13630 *immbits = immediate;
13631 return 0x1;
13632 }
13633 else if (immediate == (immediate & 0x0000ff00))
13634 {
13635 *immbits = immediate >> 8;
13636 return 0x3;
13637 }
13638 else if (immediate == (immediate & 0x00ff0000))
13639 {
13640 *immbits = immediate >> 16;
13641 return 0x5;
13642 }
13643 else if (immediate == (immediate & 0xff000000))
13644 {
13645 *immbits = immediate >> 24;
13646 return 0x7;
13647 }
13648 if ((immediate & 0xffff) != (immediate >> 16))
13649 goto bad_immediate;
13650 immediate &= 0xffff;
5287ad62
JB
13651 }
13652
13653 if (immediate == (immediate & 0x000000ff))
13654 {
13655 *immbits = immediate;
036dc3f7 13656 return 0x9;
5287ad62
JB
13657 }
13658 else if (immediate == (immediate & 0x0000ff00))
13659 {
13660 *immbits = immediate >> 8;
036dc3f7 13661 return 0xb;
5287ad62
JB
13662 }
13663
13664 bad_immediate:
dcbf9037 13665 first_error (_("immediate value out of range"));
5287ad62
JB
13666 return FAIL;
13667}
13668
13669/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
13670 A, B, C, D. */
13671
13672static int
13673neon_bits_same_in_bytes (unsigned imm)
13674{
13675 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
477330fc
RM
13676 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
13677 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
13678 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
5287ad62
JB
13679}
13680
13681/* For immediate of above form, return 0bABCD. */
13682
13683static unsigned
13684neon_squash_bits (unsigned imm)
13685{
13686 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
477330fc 13687 | ((imm & 0x01000000) >> 21);
5287ad62
JB
13688}
13689
136da414 13690/* Compress quarter-float representation to 0b...000 abcdefgh. */
5287ad62
JB
13691
13692static unsigned
13693neon_qfloat_bits (unsigned imm)
13694{
136da414 13695 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
5287ad62
JB
13696}
13697
13698/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
13699 the instruction. *OP is passed as the initial value of the op field, and
13700 may be set to a different value depending on the constant (i.e.
13701 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
5f4273c7 13702 MVN). If the immediate looks like a repeated pattern then also
036dc3f7 13703 try smaller element sizes. */
5287ad62
JB
13704
13705static int
c96612cc
JB
13706neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
13707 unsigned *immbits, int *op, int size,
13708 enum neon_el_type type)
5287ad62 13709{
c96612cc
JB
13710 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
13711 float. */
13712 if (type == NT_float && !float_p)
13713 return FAIL;
13714
136da414
JB
13715 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
13716 {
13717 if (size != 32 || *op == 1)
477330fc 13718 return FAIL;
136da414
JB
13719 *immbits = neon_qfloat_bits (immlo);
13720 return 0xf;
13721 }
036dc3f7
PB
13722
13723 if (size == 64)
5287ad62 13724 {
036dc3f7
PB
13725 if (neon_bits_same_in_bytes (immhi)
13726 && neon_bits_same_in_bytes (immlo))
13727 {
13728 if (*op == 1)
13729 return FAIL;
13730 *immbits = (neon_squash_bits (immhi) << 4)
13731 | neon_squash_bits (immlo);
13732 *op = 1;
13733 return 0xe;
13734 }
13735
13736 if (immhi != immlo)
13737 return FAIL;
5287ad62 13738 }
036dc3f7
PB
13739
13740 if (size >= 32)
5287ad62 13741 {
036dc3f7
PB
13742 if (immlo == (immlo & 0x000000ff))
13743 {
13744 *immbits = immlo;
13745 return 0x0;
13746 }
13747 else if (immlo == (immlo & 0x0000ff00))
13748 {
13749 *immbits = immlo >> 8;
13750 return 0x2;
13751 }
13752 else if (immlo == (immlo & 0x00ff0000))
13753 {
13754 *immbits = immlo >> 16;
13755 return 0x4;
13756 }
13757 else if (immlo == (immlo & 0xff000000))
13758 {
13759 *immbits = immlo >> 24;
13760 return 0x6;
13761 }
13762 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
13763 {
13764 *immbits = (immlo >> 8) & 0xff;
13765 return 0xc;
13766 }
13767 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
13768 {
13769 *immbits = (immlo >> 16) & 0xff;
13770 return 0xd;
13771 }
13772
13773 if ((immlo & 0xffff) != (immlo >> 16))
13774 return FAIL;
13775 immlo &= 0xffff;
5287ad62 13776 }
036dc3f7
PB
13777
13778 if (size >= 16)
5287ad62 13779 {
036dc3f7
PB
13780 if (immlo == (immlo & 0x000000ff))
13781 {
13782 *immbits = immlo;
13783 return 0x8;
13784 }
13785 else if (immlo == (immlo & 0x0000ff00))
13786 {
13787 *immbits = immlo >> 8;
13788 return 0xa;
13789 }
13790
13791 if ((immlo & 0xff) != (immlo >> 8))
13792 return FAIL;
13793 immlo &= 0xff;
5287ad62 13794 }
036dc3f7
PB
13795
13796 if (immlo == (immlo & 0x000000ff))
5287ad62 13797 {
036dc3f7
PB
13798 /* Don't allow MVN with 8-bit immediate. */
13799 if (*op == 1)
13800 return FAIL;
13801 *immbits = immlo;
13802 return 0xe;
5287ad62 13803 }
5287ad62
JB
13804
13805 return FAIL;
13806}
13807
13808/* Write immediate bits [7:0] to the following locations:
13809
13810 |28/24|23 19|18 16|15 4|3 0|
13811 | 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|
13812
13813 This function is used by VMOV/VMVN/VORR/VBIC. */
13814
13815static void
13816neon_write_immbits (unsigned immbits)
13817{
13818 inst.instruction |= immbits & 0xf;
13819 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
13820 inst.instruction |= ((immbits >> 7) & 0x1) << 24;
13821}
13822
13823/* Invert low-order SIZE bits of XHI:XLO. */
13824
13825static void
13826neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
13827{
13828 unsigned immlo = xlo ? *xlo : 0;
13829 unsigned immhi = xhi ? *xhi : 0;
13830
13831 switch (size)
13832 {
13833 case 8:
13834 immlo = (~immlo) & 0xff;
13835 break;
13836
13837 case 16:
13838 immlo = (~immlo) & 0xffff;
13839 break;
13840
13841 case 64:
13842 immhi = (~immhi) & 0xffffffff;
13843 /* fall through. */
13844
13845 case 32:
13846 immlo = (~immlo) & 0xffffffff;
13847 break;
13848
13849 default:
13850 abort ();
13851 }
13852
13853 if (xlo)
13854 *xlo = immlo;
13855
13856 if (xhi)
13857 *xhi = immhi;
13858}
13859
13860static void
13861do_neon_logic (void)
13862{
13863 if (inst.operands[2].present && inst.operands[2].isreg)
13864 {
037e8744 13865 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13866 neon_check_type (3, rs, N_IGNORE_TYPE);
13867 /* U bit and size field were set as part of the bitmask. */
88714cb8 13868 NEON_ENCODE (INTEGER, inst);
037e8744 13869 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13870 }
13871 else
13872 {
4316f0d2
DG
13873 const int three_ops_form = (inst.operands[2].present
13874 && !inst.operands[2].isreg);
13875 const int immoperand = (three_ops_form ? 2 : 1);
13876 enum neon_shape rs = (three_ops_form
13877 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
13878 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
037e8744 13879 struct neon_type_el et = neon_check_type (2, rs,
477330fc 13880 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
21d799b5 13881 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
5287ad62
JB
13882 unsigned immbits;
13883 int cmode;
5f4273c7 13884
5287ad62 13885 if (et.type == NT_invtype)
477330fc 13886 return;
5f4273c7 13887
4316f0d2
DG
13888 if (three_ops_form)
13889 constraint (inst.operands[0].reg != inst.operands[1].reg,
13890 _("first and second operands shall be the same register"));
13891
88714cb8 13892 NEON_ENCODE (IMMED, inst);
5287ad62 13893
4316f0d2 13894 immbits = inst.operands[immoperand].imm;
036dc3f7
PB
13895 if (et.size == 64)
13896 {
13897 /* .i64 is a pseudo-op, so the immediate must be a repeating
13898 pattern. */
4316f0d2
DG
13899 if (immbits != (inst.operands[immoperand].regisimm ?
13900 inst.operands[immoperand].reg : 0))
036dc3f7
PB
13901 {
13902 /* Set immbits to an invalid constant. */
13903 immbits = 0xdeadbeef;
13904 }
13905 }
13906
5287ad62 13907 switch (opcode)
477330fc
RM
13908 {
13909 case N_MNEM_vbic:
13910 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13911 break;
13912
13913 case N_MNEM_vorr:
13914 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13915 break;
13916
13917 case N_MNEM_vand:
13918 /* Pseudo-instruction for VBIC. */
13919 neon_invert_size (&immbits, 0, et.size);
13920 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13921 break;
13922
13923 case N_MNEM_vorn:
13924 /* Pseudo-instruction for VORR. */
13925 neon_invert_size (&immbits, 0, et.size);
13926 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13927 break;
13928
13929 default:
13930 abort ();
13931 }
5287ad62
JB
13932
13933 if (cmode == FAIL)
477330fc 13934 return;
5287ad62 13935
037e8744 13936 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
13937 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13938 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13939 inst.instruction |= cmode << 8;
13940 neon_write_immbits (immbits);
5f4273c7 13941
88714cb8 13942 neon_dp_fixup (&inst);
5287ad62
JB
13943 }
13944}
13945
13946static void
13947do_neon_bitfield (void)
13948{
037e8744 13949 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 13950 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 13951 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13952}
13953
13954static void
dcbf9037 13955neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
477330fc 13956 unsigned destbits)
5287ad62 13957{
037e8744 13958 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 13959 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
477330fc 13960 types | N_KEY);
5287ad62
JB
13961 if (et.type == NT_float)
13962 {
88714cb8 13963 NEON_ENCODE (FLOAT, inst);
037e8744 13964 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13965 }
13966 else
13967 {
88714cb8 13968 NEON_ENCODE (INTEGER, inst);
037e8744 13969 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
13970 }
13971}
13972
13973static void
13974do_neon_dyadic_if_su (void)
13975{
dcbf9037 13976 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13977}
13978
13979static void
13980do_neon_dyadic_if_su_d (void)
13981{
13982 /* This version only allow D registers, but that constraint is enforced during
13983 operand parsing so we don't need to do anything extra here. */
dcbf9037 13984 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13985}
13986
5287ad62
JB
13987static void
13988do_neon_dyadic_if_i_d (void)
13989{
428e3f1f
PB
13990 /* The "untyped" case can't happen. Do this to stop the "U" bit being
13991 affected if we specify unsigned args. */
13992 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
13993}
13994
037e8744
JB
13995enum vfp_or_neon_is_neon_bits
13996{
13997 NEON_CHECK_CC = 1,
73924fbc
MGD
13998 NEON_CHECK_ARCH = 2,
13999 NEON_CHECK_ARCH8 = 4
037e8744
JB
14000};
14001
14002/* Call this function if an instruction which may have belonged to the VFP or
14003 Neon instruction sets, but turned out to be a Neon instruction (due to the
14004 operand types involved, etc.). We have to check and/or fix-up a couple of
14005 things:
14006
14007 - Make sure the user hasn't attempted to make a Neon instruction
14008 conditional.
14009 - Alter the value in the condition code field if necessary.
14010 - Make sure that the arch supports Neon instructions.
14011
14012 Which of these operations take place depends on bits from enum
14013 vfp_or_neon_is_neon_bits.
14014
14015 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
14016 current instruction's condition is COND_ALWAYS, the condition field is
14017 changed to inst.uncond_value. This is necessary because instructions shared
14018 between VFP and Neon may be conditional for the VFP variants only, and the
14019 unconditional Neon version must have, e.g., 0xF in the condition field. */
14020
14021static int
14022vfp_or_neon_is_neon (unsigned check)
14023{
14024 /* Conditions are always legal in Thumb mode (IT blocks). */
14025 if (!thumb_mode && (check & NEON_CHECK_CC))
14026 {
14027 if (inst.cond != COND_ALWAYS)
477330fc
RM
14028 {
14029 first_error (_(BAD_COND));
14030 return FAIL;
14031 }
037e8744 14032 if (inst.uncond_value != -1)
477330fc 14033 inst.instruction |= inst.uncond_value << 28;
037e8744 14034 }
5f4273c7 14035
037e8744 14036 if ((check & NEON_CHECK_ARCH)
73924fbc
MGD
14037 && !mark_feature_used (&fpu_neon_ext_v1))
14038 {
14039 first_error (_(BAD_FPU));
14040 return FAIL;
14041 }
14042
14043 if ((check & NEON_CHECK_ARCH8)
14044 && !mark_feature_used (&fpu_neon_ext_armv8))
037e8744
JB
14045 {
14046 first_error (_(BAD_FPU));
14047 return FAIL;
14048 }
5f4273c7 14049
037e8744
JB
14050 return SUCCESS;
14051}
14052
5287ad62
JB
14053static void
14054do_neon_addsub_if_i (void)
14055{
037e8744
JB
14056 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
14057 return;
14058
14059 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14060 return;
14061
5287ad62
JB
14062 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14063 affected if we specify unsigned args. */
dcbf9037 14064 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
14065}
14066
14067/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
14068 result to be:
14069 V<op> A,B (A is operand 0, B is operand 2)
14070 to mean:
14071 V<op> A,B,A
14072 not:
14073 V<op> A,B,B
14074 so handle that case specially. */
14075
14076static void
14077neon_exchange_operands (void)
14078{
14079 void *scratch = alloca (sizeof (inst.operands[0]));
14080 if (inst.operands[1].present)
14081 {
14082 /* Swap operands[1] and operands[2]. */
14083 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
14084 inst.operands[1] = inst.operands[2];
14085 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
14086 }
14087 else
14088 {
14089 inst.operands[1] = inst.operands[2];
14090 inst.operands[2] = inst.operands[0];
14091 }
14092}
14093
14094static void
14095neon_compare (unsigned regtypes, unsigned immtypes, int invert)
14096{
14097 if (inst.operands[2].isreg)
14098 {
14099 if (invert)
477330fc 14100 neon_exchange_operands ();
dcbf9037 14101 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
14102 }
14103 else
14104 {
037e8744 14105 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037 14106 struct neon_type_el et = neon_check_type (2, rs,
477330fc 14107 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62 14108
88714cb8 14109 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14110 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14111 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14112 inst.instruction |= LOW4 (inst.operands[1].reg);
14113 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14114 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14115 inst.instruction |= (et.type == NT_float) << 10;
14116 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14117
88714cb8 14118 neon_dp_fixup (&inst);
5287ad62
JB
14119 }
14120}
14121
14122static void
14123do_neon_cmp (void)
14124{
14125 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
14126}
14127
14128static void
14129do_neon_cmp_inv (void)
14130{
14131 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
14132}
14133
14134static void
14135do_neon_ceq (void)
14136{
14137 neon_compare (N_IF_32, N_IF_32, FALSE);
14138}
14139
14140/* For multiply instructions, we have the possibility of 16-bit or 32-bit
14141 scalars, which are encoded in 5 bits, M : Rm.
14142 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
14143 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
14144 index in M. */
14145
14146static unsigned
14147neon_scalar_for_mul (unsigned scalar, unsigned elsize)
14148{
dcbf9037
JB
14149 unsigned regno = NEON_SCALAR_REG (scalar);
14150 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
14151
14152 switch (elsize)
14153 {
14154 case 16:
14155 if (regno > 7 || elno > 3)
477330fc 14156 goto bad_scalar;
5287ad62 14157 return regno | (elno << 3);
5f4273c7 14158
5287ad62
JB
14159 case 32:
14160 if (regno > 15 || elno > 1)
477330fc 14161 goto bad_scalar;
5287ad62
JB
14162 return regno | (elno << 4);
14163
14164 default:
14165 bad_scalar:
dcbf9037 14166 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
14167 }
14168
14169 return 0;
14170}
14171
14172/* Encode multiply / multiply-accumulate scalar instructions. */
14173
14174static void
14175neon_mul_mac (struct neon_type_el et, int ubit)
14176{
dcbf9037
JB
14177 unsigned scalar;
14178
14179 /* Give a more helpful error message if we have an invalid type. */
14180 if (et.type == NT_invtype)
14181 return;
5f4273c7 14182
dcbf9037 14183 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
14184 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14185 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14186 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14187 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14188 inst.instruction |= LOW4 (scalar);
14189 inst.instruction |= HI1 (scalar) << 5;
14190 inst.instruction |= (et.type == NT_float) << 8;
14191 inst.instruction |= neon_logbits (et.size) << 20;
14192 inst.instruction |= (ubit != 0) << 24;
14193
88714cb8 14194 neon_dp_fixup (&inst);
5287ad62
JB
14195}
14196
14197static void
14198do_neon_mac_maybe_scalar (void)
14199{
037e8744
JB
14200 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
14201 return;
14202
14203 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14204 return;
14205
5287ad62
JB
14206 if (inst.operands[2].isscalar)
14207 {
037e8744 14208 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62 14209 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14210 N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
88714cb8 14211 NEON_ENCODE (SCALAR, inst);
037e8744 14212 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14213 }
14214 else
428e3f1f
PB
14215 {
14216 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14217 affected if we specify unsigned args. */
14218 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14219 }
5287ad62
JB
14220}
14221
62f3b8c8
PB
14222static void
14223do_neon_fmac (void)
14224{
14225 if (try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
14226 return;
14227
14228 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14229 return;
14230
14231 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14232}
14233
5287ad62
JB
14234static void
14235do_neon_tst (void)
14236{
037e8744 14237 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14238 struct neon_type_el et = neon_check_type (3, rs,
14239 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 14240 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14241}
14242
14243/* VMUL with 3 registers allows the P8 type. The scalar version supports the
14244 same types as the MAC equivalents. The polynomial type for this instruction
14245 is encoded the same as the integer type. */
14246
14247static void
14248do_neon_mul (void)
14249{
037e8744
JB
14250 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
14251 return;
14252
14253 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14254 return;
14255
5287ad62
JB
14256 if (inst.operands[2].isscalar)
14257 do_neon_mac_maybe_scalar ();
14258 else
dcbf9037 14259 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
5287ad62
JB
14260}
14261
14262static void
14263do_neon_qdmulh (void)
14264{
14265 if (inst.operands[2].isscalar)
14266 {
037e8744 14267 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62 14268 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14269 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14270 NEON_ENCODE (SCALAR, inst);
037e8744 14271 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14272 }
14273 else
14274 {
037e8744 14275 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14276 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14277 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14278 NEON_ENCODE (INTEGER, inst);
5287ad62 14279 /* The U bit (rounding) comes from bit mask. */
037e8744 14280 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14281 }
14282}
14283
14284static void
14285do_neon_fcmp_absolute (void)
14286{
037e8744 14287 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14288 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
14289 /* Size field comes from bit mask. */
037e8744 14290 neon_three_same (neon_quad (rs), 1, -1);
5287ad62
JB
14291}
14292
14293static void
14294do_neon_fcmp_absolute_inv (void)
14295{
14296 neon_exchange_operands ();
14297 do_neon_fcmp_absolute ();
14298}
14299
14300static void
14301do_neon_step (void)
14302{
037e8744 14303 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14304 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
037e8744 14305 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14306}
14307
14308static void
14309do_neon_abs_neg (void)
14310{
037e8744
JB
14311 enum neon_shape rs;
14312 struct neon_type_el et;
5f4273c7 14313
037e8744
JB
14314 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
14315 return;
14316
14317 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14318 return;
14319
14320 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
14321 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
5f4273c7 14322
5287ad62
JB
14323 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14324 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14325 inst.instruction |= LOW4 (inst.operands[1].reg);
14326 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14327 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14328 inst.instruction |= (et.type == NT_float) << 10;
14329 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14330
88714cb8 14331 neon_dp_fixup (&inst);
5287ad62
JB
14332}
14333
14334static void
14335do_neon_sli (void)
14336{
037e8744 14337 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14338 struct neon_type_el et = neon_check_type (2, rs,
14339 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14340 int imm = inst.operands[2].imm;
14341 constraint (imm < 0 || (unsigned)imm >= et.size,
477330fc 14342 _("immediate out of range for insert"));
037e8744 14343 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14344}
14345
14346static void
14347do_neon_sri (void)
14348{
037e8744 14349 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14350 struct neon_type_el et = neon_check_type (2, rs,
14351 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14352 int imm = inst.operands[2].imm;
14353 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 14354 _("immediate out of range for insert"));
037e8744 14355 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
14356}
14357
14358static void
14359do_neon_qshlu_imm (void)
14360{
037e8744 14361 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14362 struct neon_type_el et = neon_check_type (2, rs,
14363 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
14364 int imm = inst.operands[2].imm;
14365 constraint (imm < 0 || (unsigned)imm >= et.size,
477330fc 14366 _("immediate out of range for shift"));
5287ad62
JB
14367 /* Only encodes the 'U present' variant of the instruction.
14368 In this case, signed types have OP (bit 8) set to 0.
14369 Unsigned types have OP set to 1. */
14370 inst.instruction |= (et.type == NT_unsigned) << 8;
14371 /* The rest of the bits are the same as other immediate shifts. */
037e8744 14372 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14373}
14374
14375static void
14376do_neon_qmovn (void)
14377{
14378 struct neon_type_el et = neon_check_type (2, NS_DQ,
14379 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14380 /* Saturating move where operands can be signed or unsigned, and the
14381 destination has the same signedness. */
88714cb8 14382 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14383 if (et.type == NT_unsigned)
14384 inst.instruction |= 0xc0;
14385 else
14386 inst.instruction |= 0x80;
14387 neon_two_same (0, 1, et.size / 2);
14388}
14389
14390static void
14391do_neon_qmovun (void)
14392{
14393 struct neon_type_el et = neon_check_type (2, NS_DQ,
14394 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14395 /* Saturating move with unsigned results. Operands must be signed. */
88714cb8 14396 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14397 neon_two_same (0, 1, et.size / 2);
14398}
14399
14400static void
14401do_neon_rshift_sat_narrow (void)
14402{
14403 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14404 or unsigned. If operands are unsigned, results must also be unsigned. */
14405 struct neon_type_el et = neon_check_type (2, NS_DQI,
14406 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14407 int imm = inst.operands[2].imm;
14408 /* This gets the bounds check, size encoding and immediate bits calculation
14409 right. */
14410 et.size /= 2;
5f4273c7 14411
5287ad62
JB
14412 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
14413 VQMOVN.I<size> <Dd>, <Qm>. */
14414 if (imm == 0)
14415 {
14416 inst.operands[2].present = 0;
14417 inst.instruction = N_MNEM_vqmovn;
14418 do_neon_qmovn ();
14419 return;
14420 }
5f4273c7 14421
5287ad62 14422 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 14423 _("immediate out of range"));
5287ad62
JB
14424 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
14425}
14426
14427static void
14428do_neon_rshift_sat_narrow_u (void)
14429{
14430 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14431 or unsigned. If operands are unsigned, results must also be unsigned. */
14432 struct neon_type_el et = neon_check_type (2, NS_DQI,
14433 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14434 int imm = inst.operands[2].imm;
14435 /* This gets the bounds check, size encoding and immediate bits calculation
14436 right. */
14437 et.size /= 2;
14438
14439 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
14440 VQMOVUN.I<size> <Dd>, <Qm>. */
14441 if (imm == 0)
14442 {
14443 inst.operands[2].present = 0;
14444 inst.instruction = N_MNEM_vqmovun;
14445 do_neon_qmovun ();
14446 return;
14447 }
14448
14449 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 14450 _("immediate out of range"));
5287ad62
JB
14451 /* FIXME: The manual is kind of unclear about what value U should have in
14452 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
14453 must be 1. */
14454 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
14455}
14456
14457static void
14458do_neon_movn (void)
14459{
14460 struct neon_type_el et = neon_check_type (2, NS_DQ,
14461 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
88714cb8 14462 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14463 neon_two_same (0, 1, et.size / 2);
14464}
14465
14466static void
14467do_neon_rshift_narrow (void)
14468{
14469 struct neon_type_el et = neon_check_type (2, NS_DQI,
14470 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
14471 int imm = inst.operands[2].imm;
14472 /* This gets the bounds check, size encoding and immediate bits calculation
14473 right. */
14474 et.size /= 2;
5f4273c7 14475
5287ad62
JB
14476 /* If immediate is zero then we are a pseudo-instruction for
14477 VMOVN.I<size> <Dd>, <Qm> */
14478 if (imm == 0)
14479 {
14480 inst.operands[2].present = 0;
14481 inst.instruction = N_MNEM_vmovn;
14482 do_neon_movn ();
14483 return;
14484 }
5f4273c7 14485
5287ad62 14486 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 14487 _("immediate out of range for narrowing operation"));
5287ad62
JB
14488 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
14489}
14490
14491static void
14492do_neon_shll (void)
14493{
14494 /* FIXME: Type checking when lengthening. */
14495 struct neon_type_el et = neon_check_type (2, NS_QDI,
14496 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
14497 unsigned imm = inst.operands[2].imm;
14498
14499 if (imm == et.size)
14500 {
14501 /* Maximum shift variant. */
88714cb8 14502 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14503 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14504 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14505 inst.instruction |= LOW4 (inst.operands[1].reg);
14506 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14507 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14508
88714cb8 14509 neon_dp_fixup (&inst);
5287ad62
JB
14510 }
14511 else
14512 {
14513 /* A more-specific type check for non-max versions. */
14514 et = neon_check_type (2, NS_QDI,
477330fc 14515 N_EQK | N_DBL, N_SU_32 | N_KEY);
88714cb8 14516 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14517 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
14518 }
14519}
14520
037e8744 14521/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
14522 the current instruction is. */
14523
6b9a8b67
MGD
14524#define CVT_FLAVOUR_VAR \
14525 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
14526 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
14527 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
14528 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
14529 /* Half-precision conversions. */ \
14530 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
14531 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
14532 /* VFP instructions. */ \
14533 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
14534 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
14535 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
14536 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
14537 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
14538 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
14539 /* VFP instructions with bitshift. */ \
14540 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
14541 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
14542 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
14543 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
14544 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
14545 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
14546 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
14547 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
14548
14549#define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
14550 neon_cvt_flavour_##C,
14551
14552/* The different types of conversions we can do. */
14553enum neon_cvt_flavour
14554{
14555 CVT_FLAVOUR_VAR
14556 neon_cvt_flavour_invalid,
14557 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
14558};
14559
14560#undef CVT_VAR
14561
14562static enum neon_cvt_flavour
14563get_neon_cvt_flavour (enum neon_shape rs)
5287ad62 14564{
6b9a8b67
MGD
14565#define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
14566 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
14567 if (et.type != NT_invtype) \
14568 { \
14569 inst.error = NULL; \
14570 return (neon_cvt_flavour_##C); \
5287ad62 14571 }
6b9a8b67 14572
5287ad62 14573 struct neon_type_el et;
037e8744 14574 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
477330fc 14575 || rs == NS_FF) ? N_VFP : 0;
037e8744
JB
14576 /* The instruction versions which take an immediate take one register
14577 argument, which is extended to the width of the full register. Thus the
14578 "source" and "destination" registers must have the same width. Hack that
14579 here by making the size equal to the key (wider, in this case) operand. */
14580 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5f4273c7 14581
6b9a8b67
MGD
14582 CVT_FLAVOUR_VAR;
14583
14584 return neon_cvt_flavour_invalid;
5287ad62
JB
14585#undef CVT_VAR
14586}
14587
7e8e6784
MGD
14588enum neon_cvt_mode
14589{
14590 neon_cvt_mode_a,
14591 neon_cvt_mode_n,
14592 neon_cvt_mode_p,
14593 neon_cvt_mode_m,
14594 neon_cvt_mode_z,
30bdf752
MGD
14595 neon_cvt_mode_x,
14596 neon_cvt_mode_r
7e8e6784
MGD
14597};
14598
037e8744
JB
14599/* Neon-syntax VFP conversions. */
14600
5287ad62 14601static void
6b9a8b67 14602do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
5287ad62 14603{
037e8744 14604 const char *opname = 0;
5f4273c7 14605
037e8744 14606 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
5287ad62 14607 {
037e8744
JB
14608 /* Conversions with immediate bitshift. */
14609 const char *enc[] =
477330fc 14610 {
6b9a8b67
MGD
14611#define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
14612 CVT_FLAVOUR_VAR
14613 NULL
14614#undef CVT_VAR
477330fc 14615 };
037e8744 14616
6b9a8b67 14617 if (flavour < (int) ARRAY_SIZE (enc))
477330fc
RM
14618 {
14619 opname = enc[flavour];
14620 constraint (inst.operands[0].reg != inst.operands[1].reg,
14621 _("operands 0 and 1 must be the same register"));
14622 inst.operands[1] = inst.operands[2];
14623 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
14624 }
5287ad62
JB
14625 }
14626 else
14627 {
037e8744
JB
14628 /* Conversions without bitshift. */
14629 const char *enc[] =
477330fc 14630 {
6b9a8b67
MGD
14631#define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
14632 CVT_FLAVOUR_VAR
14633 NULL
14634#undef CVT_VAR
477330fc 14635 };
037e8744 14636
6b9a8b67 14637 if (flavour < (int) ARRAY_SIZE (enc))
477330fc 14638 opname = enc[flavour];
037e8744
JB
14639 }
14640
14641 if (opname)
14642 do_vfp_nsyn_opcode (opname);
14643}
14644
14645static void
14646do_vfp_nsyn_cvtz (void)
14647{
14648 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
6b9a8b67 14649 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744
JB
14650 const char *enc[] =
14651 {
6b9a8b67
MGD
14652#define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
14653 CVT_FLAVOUR_VAR
14654 NULL
14655#undef CVT_VAR
037e8744
JB
14656 };
14657
6b9a8b67 14658 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
037e8744
JB
14659 do_vfp_nsyn_opcode (enc[flavour]);
14660}
f31fef98 14661
037e8744 14662static void
bacebabc 14663do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
7e8e6784
MGD
14664 enum neon_cvt_mode mode)
14665{
14666 int sz, op;
14667 int rm;
14668
14669 set_it_insn_type (OUTSIDE_IT_INSN);
14670
14671 switch (flavour)
14672 {
14673 case neon_cvt_flavour_s32_f64:
14674 sz = 1;
14675 op = 0;
14676 break;
14677 case neon_cvt_flavour_s32_f32:
14678 sz = 0;
14679 op = 1;
14680 break;
14681 case neon_cvt_flavour_u32_f64:
14682 sz = 1;
14683 op = 0;
14684 break;
14685 case neon_cvt_flavour_u32_f32:
14686 sz = 0;
14687 op = 0;
14688 break;
14689 default:
14690 first_error (_("invalid instruction shape"));
14691 return;
14692 }
14693
14694 switch (mode)
14695 {
14696 case neon_cvt_mode_a: rm = 0; break;
14697 case neon_cvt_mode_n: rm = 1; break;
14698 case neon_cvt_mode_p: rm = 2; break;
14699 case neon_cvt_mode_m: rm = 3; break;
14700 default: first_error (_("invalid rounding mode")); return;
14701 }
14702
14703 NEON_ENCODE (FPV8, inst);
14704 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
14705 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
14706 inst.instruction |= sz << 8;
14707 inst.instruction |= op << 7;
14708 inst.instruction |= rm << 16;
14709 inst.instruction |= 0xf0000000;
14710 inst.is_neon = TRUE;
14711}
14712
14713static void
14714do_neon_cvt_1 (enum neon_cvt_mode mode)
037e8744
JB
14715{
14716 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
8e79c3df 14717 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ, NS_NULL);
6b9a8b67 14718 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744 14719
e3e535bc 14720 /* PR11109: Handle round-to-zero for VCVT conversions. */
7e8e6784 14721 if (mode == neon_cvt_mode_z
e3e535bc 14722 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
bacebabc
RM
14723 && (flavour == neon_cvt_flavour_s32_f32
14724 || flavour == neon_cvt_flavour_u32_f32
14725 || flavour == neon_cvt_flavour_s32_f64
6b9a8b67 14726 || flavour == neon_cvt_flavour_u32_f64)
e3e535bc
NC
14727 && (rs == NS_FD || rs == NS_FF))
14728 {
14729 do_vfp_nsyn_cvtz ();
14730 return;
14731 }
14732
037e8744 14733 /* VFP rather than Neon conversions. */
6b9a8b67 14734 if (flavour >= neon_cvt_flavour_first_fp)
037e8744 14735 {
7e8e6784
MGD
14736 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
14737 do_vfp_nsyn_cvt (rs, flavour);
14738 else
14739 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
14740
037e8744
JB
14741 return;
14742 }
14743
14744 switch (rs)
14745 {
14746 case NS_DDI:
14747 case NS_QQI:
14748 {
477330fc
RM
14749 unsigned immbits;
14750 unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
35997600 14751
477330fc
RM
14752 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14753 return;
037e8744 14754
477330fc
RM
14755 /* Fixed-point conversion with #0 immediate is encoded as an
14756 integer conversion. */
14757 if (inst.operands[2].present && inst.operands[2].imm == 0)
14758 goto int_encode;
35997600 14759 immbits = 32 - inst.operands[2].imm;
477330fc
RM
14760 NEON_ENCODE (IMMED, inst);
14761 if (flavour != neon_cvt_flavour_invalid)
14762 inst.instruction |= enctab[flavour];
14763 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14764 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14765 inst.instruction |= LOW4 (inst.operands[1].reg);
14766 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14767 inst.instruction |= neon_quad (rs) << 6;
14768 inst.instruction |= 1 << 21;
14769 inst.instruction |= immbits << 16;
14770
14771 neon_dp_fixup (&inst);
037e8744
JB
14772 }
14773 break;
14774
14775 case NS_DD:
14776 case NS_QQ:
7e8e6784
MGD
14777 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
14778 {
14779 NEON_ENCODE (FLOAT, inst);
14780 set_it_insn_type (OUTSIDE_IT_INSN);
14781
14782 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
14783 return;
14784
14785 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14786 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14787 inst.instruction |= LOW4 (inst.operands[1].reg);
14788 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14789 inst.instruction |= neon_quad (rs) << 6;
14790 inst.instruction |= (flavour == neon_cvt_flavour_u32_f32) << 7;
14791 inst.instruction |= mode << 8;
14792 if (thumb_mode)
14793 inst.instruction |= 0xfc000000;
14794 else
14795 inst.instruction |= 0xf0000000;
14796 }
14797 else
14798 {
037e8744 14799 int_encode:
7e8e6784
MGD
14800 {
14801 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
037e8744 14802
7e8e6784 14803 NEON_ENCODE (INTEGER, inst);
037e8744 14804
7e8e6784
MGD
14805 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14806 return;
037e8744 14807
7e8e6784
MGD
14808 if (flavour != neon_cvt_flavour_invalid)
14809 inst.instruction |= enctab[flavour];
037e8744 14810
7e8e6784
MGD
14811 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14812 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14813 inst.instruction |= LOW4 (inst.operands[1].reg);
14814 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14815 inst.instruction |= neon_quad (rs) << 6;
14816 inst.instruction |= 2 << 18;
037e8744 14817
7e8e6784
MGD
14818 neon_dp_fixup (&inst);
14819 }
14820 }
14821 break;
037e8744 14822
8e79c3df
CM
14823 /* Half-precision conversions for Advanced SIMD -- neon. */
14824 case NS_QD:
14825 case NS_DQ:
14826
14827 if ((rs == NS_DQ)
14828 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
14829 {
14830 as_bad (_("operand size must match register width"));
14831 break;
14832 }
14833
14834 if ((rs == NS_QD)
14835 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
14836 {
14837 as_bad (_("operand size must match register width"));
14838 break;
14839 }
14840
14841 if (rs == NS_DQ)
477330fc 14842 inst.instruction = 0x3b60600;
8e79c3df
CM
14843 else
14844 inst.instruction = 0x3b60700;
14845
14846 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14847 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14848 inst.instruction |= LOW4 (inst.operands[1].reg);
14849 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
88714cb8 14850 neon_dp_fixup (&inst);
8e79c3df
CM
14851 break;
14852
037e8744
JB
14853 default:
14854 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
7e8e6784
MGD
14855 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
14856 do_vfp_nsyn_cvt (rs, flavour);
14857 else
14858 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
5287ad62 14859 }
5287ad62
JB
14860}
14861
e3e535bc
NC
14862static void
14863do_neon_cvtr (void)
14864{
7e8e6784 14865 do_neon_cvt_1 (neon_cvt_mode_x);
e3e535bc
NC
14866}
14867
14868static void
14869do_neon_cvt (void)
14870{
7e8e6784
MGD
14871 do_neon_cvt_1 (neon_cvt_mode_z);
14872}
14873
14874static void
14875do_neon_cvta (void)
14876{
14877 do_neon_cvt_1 (neon_cvt_mode_a);
14878}
14879
14880static void
14881do_neon_cvtn (void)
14882{
14883 do_neon_cvt_1 (neon_cvt_mode_n);
14884}
14885
14886static void
14887do_neon_cvtp (void)
14888{
14889 do_neon_cvt_1 (neon_cvt_mode_p);
14890}
14891
14892static void
14893do_neon_cvtm (void)
14894{
14895 do_neon_cvt_1 (neon_cvt_mode_m);
e3e535bc
NC
14896}
14897
8e79c3df 14898static void
c70a8987 14899do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
8e79c3df 14900{
c70a8987
MGD
14901 if (is_double)
14902 mark_feature_used (&fpu_vfp_ext_armv8);
8e79c3df 14903
c70a8987
MGD
14904 encode_arm_vfp_reg (inst.operands[0].reg,
14905 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
14906 encode_arm_vfp_reg (inst.operands[1].reg,
14907 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
14908 inst.instruction |= to ? 0x10000 : 0;
14909 inst.instruction |= t ? 0x80 : 0;
14910 inst.instruction |= is_double ? 0x100 : 0;
14911 do_vfp_cond_or_thumb ();
14912}
8e79c3df 14913
c70a8987
MGD
14914static void
14915do_neon_cvttb_1 (bfd_boolean t)
14916{
14917 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_DF, NS_NULL);
8e79c3df 14918
c70a8987
MGD
14919 if (rs == NS_NULL)
14920 return;
14921 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
14922 {
14923 inst.error = NULL;
14924 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
14925 }
14926 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
14927 {
14928 inst.error = NULL;
14929 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
14930 }
14931 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
14932 {
14933 inst.error = NULL;
14934 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
14935 }
14936 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
14937 {
14938 inst.error = NULL;
14939 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
14940 }
14941 else
14942 return;
14943}
14944
14945static void
14946do_neon_cvtb (void)
14947{
14948 do_neon_cvttb_1 (FALSE);
8e79c3df
CM
14949}
14950
14951
14952static void
14953do_neon_cvtt (void)
14954{
c70a8987 14955 do_neon_cvttb_1 (TRUE);
8e79c3df
CM
14956}
14957
5287ad62
JB
14958static void
14959neon_move_immediate (void)
14960{
037e8744
JB
14961 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
14962 struct neon_type_el et = neon_check_type (2, rs,
14963 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62 14964 unsigned immlo, immhi = 0, immbits;
c96612cc 14965 int op, cmode, float_p;
5287ad62 14966
037e8744 14967 constraint (et.type == NT_invtype,
477330fc 14968 _("operand size must be specified for immediate VMOV"));
037e8744 14969
5287ad62
JB
14970 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
14971 op = (inst.instruction & (1 << 5)) != 0;
14972
14973 immlo = inst.operands[1].imm;
14974 if (inst.operands[1].regisimm)
14975 immhi = inst.operands[1].reg;
14976
14977 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
477330fc 14978 _("immediate has bits set outside the operand size"));
5287ad62 14979
c96612cc
JB
14980 float_p = inst.operands[1].immisfloat;
14981
14982 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
477330fc 14983 et.size, et.type)) == FAIL)
5287ad62
JB
14984 {
14985 /* Invert relevant bits only. */
14986 neon_invert_size (&immlo, &immhi, et.size);
14987 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
477330fc
RM
14988 with one or the other; those cases are caught by
14989 neon_cmode_for_move_imm. */
5287ad62 14990 op = !op;
c96612cc
JB
14991 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
14992 &op, et.size, et.type)) == FAIL)
477330fc
RM
14993 {
14994 first_error (_("immediate out of range"));
14995 return;
14996 }
5287ad62
JB
14997 }
14998
14999 inst.instruction &= ~(1 << 5);
15000 inst.instruction |= op << 5;
15001
15002 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15003 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 15004 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15005 inst.instruction |= cmode << 8;
15006
15007 neon_write_immbits (immbits);
15008}
15009
15010static void
15011do_neon_mvn (void)
15012{
15013 if (inst.operands[1].isreg)
15014 {
037e8744 15015 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5f4273c7 15016
88714cb8 15017 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15018 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15019 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15020 inst.instruction |= LOW4 (inst.operands[1].reg);
15021 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 15022 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15023 }
15024 else
15025 {
88714cb8 15026 NEON_ENCODE (IMMED, inst);
5287ad62
JB
15027 neon_move_immediate ();
15028 }
15029
88714cb8 15030 neon_dp_fixup (&inst);
5287ad62
JB
15031}
15032
15033/* Encode instructions of form:
15034
15035 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
5f4273c7 15036 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
5287ad62
JB
15037
15038static void
15039neon_mixed_length (struct neon_type_el et, unsigned size)
15040{
15041 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15042 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15043 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15044 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15045 inst.instruction |= LOW4 (inst.operands[2].reg);
15046 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15047 inst.instruction |= (et.type == NT_unsigned) << 24;
15048 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 15049
88714cb8 15050 neon_dp_fixup (&inst);
5287ad62
JB
15051}
15052
15053static void
15054do_neon_dyadic_long (void)
15055{
15056 /* FIXME: Type checking for lengthening op. */
15057 struct neon_type_el et = neon_check_type (3, NS_QDD,
15058 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
15059 neon_mixed_length (et, et.size);
15060}
15061
15062static void
15063do_neon_abal (void)
15064{
15065 struct neon_type_el et = neon_check_type (3, NS_QDD,
15066 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
15067 neon_mixed_length (et, et.size);
15068}
15069
15070static void
15071neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
15072{
15073 if (inst.operands[2].isscalar)
15074 {
dcbf9037 15075 struct neon_type_el et = neon_check_type (3, NS_QDS,
477330fc 15076 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
88714cb8 15077 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15078 neon_mul_mac (et, et.type == NT_unsigned);
15079 }
15080 else
15081 {
15082 struct neon_type_el et = neon_check_type (3, NS_QDD,
477330fc 15083 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
88714cb8 15084 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15085 neon_mixed_length (et, et.size);
15086 }
15087}
15088
15089static void
15090do_neon_mac_maybe_scalar_long (void)
15091{
15092 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
15093}
15094
15095static void
15096do_neon_dyadic_wide (void)
15097{
15098 struct neon_type_el et = neon_check_type (3, NS_QQD,
15099 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
15100 neon_mixed_length (et, et.size);
15101}
15102
15103static void
15104do_neon_dyadic_narrow (void)
15105{
15106 struct neon_type_el et = neon_check_type (3, NS_QDD,
15107 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
15108 /* Operand sign is unimportant, and the U bit is part of the opcode,
15109 so force the operand type to integer. */
15110 et.type = NT_integer;
5287ad62
JB
15111 neon_mixed_length (et, et.size / 2);
15112}
15113
15114static void
15115do_neon_mul_sat_scalar_long (void)
15116{
15117 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
15118}
15119
15120static void
15121do_neon_vmull (void)
15122{
15123 if (inst.operands[2].isscalar)
15124 do_neon_mac_maybe_scalar_long ();
15125 else
15126 {
15127 struct neon_type_el et = neon_check_type (3, NS_QDD,
477330fc 15128 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
4f51b4bd 15129
5287ad62 15130 if (et.type == NT_poly)
477330fc 15131 NEON_ENCODE (POLY, inst);
5287ad62 15132 else
477330fc 15133 NEON_ENCODE (INTEGER, inst);
4f51b4bd
MGD
15134
15135 /* For polynomial encoding the U bit must be zero, and the size must
15136 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
15137 obviously, as 0b10). */
15138 if (et.size == 64)
15139 {
15140 /* Check we're on the correct architecture. */
15141 if (!mark_feature_used (&fpu_crypto_ext_armv8))
15142 inst.error =
15143 _("Instruction form not available on this architecture.");
15144
15145 et.size = 32;
15146 }
15147
5287ad62
JB
15148 neon_mixed_length (et, et.size);
15149 }
15150}
15151
15152static void
15153do_neon_ext (void)
15154{
037e8744 15155 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
15156 struct neon_type_el et = neon_check_type (3, rs,
15157 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15158 unsigned imm = (inst.operands[3].imm * et.size) / 8;
35997600
NC
15159
15160 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
15161 _("shift out of range"));
5287ad62
JB
15162 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15163 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15164 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15165 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15166 inst.instruction |= LOW4 (inst.operands[2].reg);
15167 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 15168 inst.instruction |= neon_quad (rs) << 6;
5287ad62 15169 inst.instruction |= imm << 8;
5f4273c7 15170
88714cb8 15171 neon_dp_fixup (&inst);
5287ad62
JB
15172}
15173
15174static void
15175do_neon_rev (void)
15176{
037e8744 15177 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15178 struct neon_type_el et = neon_check_type (2, rs,
15179 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15180 unsigned op = (inst.instruction >> 7) & 3;
15181 /* N (width of reversed regions) is encoded as part of the bitmask. We
15182 extract it here to check the elements to be reversed are smaller.
15183 Otherwise we'd get a reserved instruction. */
15184 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
9c2799c2 15185 gas_assert (elsize != 0);
5287ad62 15186 constraint (et.size >= elsize,
477330fc 15187 _("elements must be smaller than reversal region"));
037e8744 15188 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15189}
15190
15191static void
15192do_neon_dup (void)
15193{
15194 if (inst.operands[1].isscalar)
15195 {
037e8744 15196 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037 15197 struct neon_type_el et = neon_check_type (2, rs,
477330fc 15198 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 15199 unsigned sizebits = et.size >> 3;
dcbf9037 15200 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 15201 int logsize = neon_logbits (et.size);
dcbf9037 15202 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
15203
15204 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
477330fc 15205 return;
037e8744 15206
88714cb8 15207 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15208 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15209 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15210 inst.instruction |= LOW4 (dm);
15211 inst.instruction |= HI1 (dm) << 5;
037e8744 15212 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15213 inst.instruction |= x << 17;
15214 inst.instruction |= sizebits << 16;
5f4273c7 15215
88714cb8 15216 neon_dp_fixup (&inst);
5287ad62
JB
15217 }
15218 else
15219 {
037e8744
JB
15220 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
15221 struct neon_type_el et = neon_check_type (2, rs,
477330fc 15222 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62 15223 /* Duplicate ARM register to lanes of vector. */
88714cb8 15224 NEON_ENCODE (ARMREG, inst);
5287ad62 15225 switch (et.size)
477330fc
RM
15226 {
15227 case 8: inst.instruction |= 0x400000; break;
15228 case 16: inst.instruction |= 0x000020; break;
15229 case 32: inst.instruction |= 0x000000; break;
15230 default: break;
15231 }
5287ad62
JB
15232 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15233 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
15234 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 15235 inst.instruction |= neon_quad (rs) << 21;
5287ad62 15236 /* The encoding for this instruction is identical for the ARM and Thumb
477330fc 15237 variants, except for the condition field. */
037e8744 15238 do_vfp_cond_or_thumb ();
5287ad62
JB
15239 }
15240}
15241
15242/* VMOV has particularly many variations. It can be one of:
15243 0. VMOV<c><q> <Qd>, <Qm>
15244 1. VMOV<c><q> <Dd>, <Dm>
15245 (Register operations, which are VORR with Rm = Rn.)
15246 2. VMOV<c><q>.<dt> <Qd>, #<imm>
15247 3. VMOV<c><q>.<dt> <Dd>, #<imm>
15248 (Immediate loads.)
15249 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
15250 (ARM register to scalar.)
15251 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
15252 (Two ARM registers to vector.)
15253 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
15254 (Scalar to ARM register.)
15255 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
15256 (Vector to two ARM registers.)
037e8744
JB
15257 8. VMOV.F32 <Sd>, <Sm>
15258 9. VMOV.F64 <Dd>, <Dm>
15259 (VFP register moves.)
15260 10. VMOV.F32 <Sd>, #imm
15261 11. VMOV.F64 <Dd>, #imm
15262 (VFP float immediate load.)
15263 12. VMOV <Rd>, <Sm>
15264 (VFP single to ARM reg.)
15265 13. VMOV <Sd>, <Rm>
15266 (ARM reg to VFP single.)
15267 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
15268 (Two ARM regs to two VFP singles.)
15269 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
15270 (Two VFP singles to two ARM regs.)
5f4273c7 15271
037e8744
JB
15272 These cases can be disambiguated using neon_select_shape, except cases 1/9
15273 and 3/11 which depend on the operand type too.
5f4273c7 15274
5287ad62 15275 All the encoded bits are hardcoded by this function.
5f4273c7 15276
b7fc2769
JB
15277 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
15278 Cases 5, 7 may be used with VFPv2 and above.
5f4273c7 15279
5287ad62 15280 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
5f4273c7 15281 can specify a type where it doesn't make sense to, and is ignored). */
5287ad62
JB
15282
15283static void
15284do_neon_mov (void)
15285{
037e8744
JB
15286 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
15287 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
15288 NS_NULL);
15289 struct neon_type_el et;
15290 const char *ldconst = 0;
5287ad62 15291
037e8744 15292 switch (rs)
5287ad62 15293 {
037e8744
JB
15294 case NS_DD: /* case 1/9. */
15295 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15296 /* It is not an error here if no type is given. */
15297 inst.error = NULL;
15298 if (et.type == NT_float && et.size == 64)
477330fc
RM
15299 {
15300 do_vfp_nsyn_opcode ("fcpyd");
15301 break;
15302 }
037e8744 15303 /* fall through. */
5287ad62 15304
037e8744
JB
15305 case NS_QQ: /* case 0/1. */
15306 {
477330fc
RM
15307 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15308 return;
15309 /* The architecture manual I have doesn't explicitly state which
15310 value the U bit should have for register->register moves, but
15311 the equivalent VORR instruction has U = 0, so do that. */
15312 inst.instruction = 0x0200110;
15313 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15314 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15315 inst.instruction |= LOW4 (inst.operands[1].reg);
15316 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15317 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15318 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15319 inst.instruction |= neon_quad (rs) << 6;
15320
15321 neon_dp_fixup (&inst);
037e8744
JB
15322 }
15323 break;
5f4273c7 15324
037e8744
JB
15325 case NS_DI: /* case 3/11. */
15326 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15327 inst.error = NULL;
15328 if (et.type == NT_float && et.size == 64)
477330fc
RM
15329 {
15330 /* case 11 (fconstd). */
15331 ldconst = "fconstd";
15332 goto encode_fconstd;
15333 }
037e8744
JB
15334 /* fall through. */
15335
15336 case NS_QI: /* case 2/3. */
15337 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
477330fc 15338 return;
037e8744
JB
15339 inst.instruction = 0x0800010;
15340 neon_move_immediate ();
88714cb8 15341 neon_dp_fixup (&inst);
5287ad62 15342 break;
5f4273c7 15343
037e8744
JB
15344 case NS_SR: /* case 4. */
15345 {
477330fc
RM
15346 unsigned bcdebits = 0;
15347 int logsize;
15348 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
15349 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
037e8744 15350
05ac0ffb
JB
15351 /* .<size> is optional here, defaulting to .32. */
15352 if (inst.vectype.elems == 0
15353 && inst.operands[0].vectype.type == NT_invtype
15354 && inst.operands[1].vectype.type == NT_invtype)
15355 {
15356 inst.vectype.el[0].type = NT_untyped;
15357 inst.vectype.el[0].size = 32;
15358 inst.vectype.elems = 1;
15359 }
15360
477330fc
RM
15361 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
15362 logsize = neon_logbits (et.size);
15363
15364 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15365 _(BAD_FPU));
15366 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15367 && et.size != 32, _(BAD_FPU));
15368 constraint (et.type == NT_invtype, _("bad type for scalar"));
15369 constraint (x >= 64 / et.size, _("scalar index out of range"));
15370
15371 switch (et.size)
15372 {
15373 case 8: bcdebits = 0x8; break;
15374 case 16: bcdebits = 0x1; break;
15375 case 32: bcdebits = 0x0; break;
15376 default: ;
15377 }
15378
15379 bcdebits |= x << logsize;
15380
15381 inst.instruction = 0xe000b10;
15382 do_vfp_cond_or_thumb ();
15383 inst.instruction |= LOW4 (dn) << 16;
15384 inst.instruction |= HI1 (dn) << 7;
15385 inst.instruction |= inst.operands[1].reg << 12;
15386 inst.instruction |= (bcdebits & 3) << 5;
15387 inst.instruction |= (bcdebits >> 2) << 21;
037e8744
JB
15388 }
15389 break;
5f4273c7 15390
037e8744 15391 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 15392 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
477330fc 15393 _(BAD_FPU));
b7fc2769 15394
037e8744
JB
15395 inst.instruction = 0xc400b10;
15396 do_vfp_cond_or_thumb ();
15397 inst.instruction |= LOW4 (inst.operands[0].reg);
15398 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
15399 inst.instruction |= inst.operands[1].reg << 12;
15400 inst.instruction |= inst.operands[2].reg << 16;
15401 break;
5f4273c7 15402
037e8744
JB
15403 case NS_RS: /* case 6. */
15404 {
477330fc
RM
15405 unsigned logsize;
15406 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
15407 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
15408 unsigned abcdebits = 0;
037e8744 15409
05ac0ffb
JB
15410 /* .<dt> is optional here, defaulting to .32. */
15411 if (inst.vectype.elems == 0
15412 && inst.operands[0].vectype.type == NT_invtype
15413 && inst.operands[1].vectype.type == NT_invtype)
15414 {
15415 inst.vectype.el[0].type = NT_untyped;
15416 inst.vectype.el[0].size = 32;
15417 inst.vectype.elems = 1;
15418 }
15419
91d6fa6a
NC
15420 et = neon_check_type (2, NS_NULL,
15421 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
477330fc
RM
15422 logsize = neon_logbits (et.size);
15423
15424 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15425 _(BAD_FPU));
15426 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15427 && et.size != 32, _(BAD_FPU));
15428 constraint (et.type == NT_invtype, _("bad type for scalar"));
15429 constraint (x >= 64 / et.size, _("scalar index out of range"));
15430
15431 switch (et.size)
15432 {
15433 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
15434 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
15435 case 32: abcdebits = 0x00; break;
15436 default: ;
15437 }
15438
15439 abcdebits |= x << logsize;
15440 inst.instruction = 0xe100b10;
15441 do_vfp_cond_or_thumb ();
15442 inst.instruction |= LOW4 (dn) << 16;
15443 inst.instruction |= HI1 (dn) << 7;
15444 inst.instruction |= inst.operands[0].reg << 12;
15445 inst.instruction |= (abcdebits & 3) << 5;
15446 inst.instruction |= (abcdebits >> 2) << 21;
037e8744
JB
15447 }
15448 break;
5f4273c7 15449
037e8744
JB
15450 case NS_RRD: /* case 7 (fmrrd). */
15451 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
477330fc 15452 _(BAD_FPU));
037e8744
JB
15453
15454 inst.instruction = 0xc500b10;
15455 do_vfp_cond_or_thumb ();
15456 inst.instruction |= inst.operands[0].reg << 12;
15457 inst.instruction |= inst.operands[1].reg << 16;
15458 inst.instruction |= LOW4 (inst.operands[2].reg);
15459 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15460 break;
5f4273c7 15461
037e8744
JB
15462 case NS_FF: /* case 8 (fcpys). */
15463 do_vfp_nsyn_opcode ("fcpys");
15464 break;
5f4273c7 15465
037e8744
JB
15466 case NS_FI: /* case 10 (fconsts). */
15467 ldconst = "fconsts";
15468 encode_fconstd:
15469 if (is_quarter_float (inst.operands[1].imm))
477330fc
RM
15470 {
15471 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
15472 do_vfp_nsyn_opcode (ldconst);
15473 }
5287ad62 15474 else
477330fc 15475 first_error (_("immediate out of range"));
037e8744 15476 break;
5f4273c7 15477
037e8744
JB
15478 case NS_RF: /* case 12 (fmrs). */
15479 do_vfp_nsyn_opcode ("fmrs");
15480 break;
5f4273c7 15481
037e8744
JB
15482 case NS_FR: /* case 13 (fmsr). */
15483 do_vfp_nsyn_opcode ("fmsr");
15484 break;
5f4273c7 15485
037e8744
JB
15486 /* The encoders for the fmrrs and fmsrr instructions expect three operands
15487 (one of which is a list), but we have parsed four. Do some fiddling to
15488 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
15489 expect. */
15490 case NS_RRFF: /* case 14 (fmrrs). */
15491 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
477330fc 15492 _("VFP registers must be adjacent"));
037e8744
JB
15493 inst.operands[2].imm = 2;
15494 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15495 do_vfp_nsyn_opcode ("fmrrs");
15496 break;
5f4273c7 15497
037e8744
JB
15498 case NS_FFRR: /* case 15 (fmsrr). */
15499 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
477330fc 15500 _("VFP registers must be adjacent"));
037e8744
JB
15501 inst.operands[1] = inst.operands[2];
15502 inst.operands[2] = inst.operands[3];
15503 inst.operands[0].imm = 2;
15504 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15505 do_vfp_nsyn_opcode ("fmsrr");
5287ad62 15506 break;
5f4273c7 15507
4c261dff
NC
15508 case NS_NULL:
15509 /* neon_select_shape has determined that the instruction
15510 shape is wrong and has already set the error message. */
15511 break;
15512
5287ad62
JB
15513 default:
15514 abort ();
15515 }
15516}
15517
15518static void
15519do_neon_rshift_round_imm (void)
15520{
037e8744 15521 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15522 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
15523 int imm = inst.operands[2].imm;
15524
15525 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
15526 if (imm == 0)
15527 {
15528 inst.operands[2].present = 0;
15529 do_neon_mov ();
15530 return;
15531 }
15532
15533 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15534 _("immediate out of range for shift"));
037e8744 15535 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
477330fc 15536 et.size - imm);
5287ad62
JB
15537}
15538
15539static void
15540do_neon_movl (void)
15541{
15542 struct neon_type_el et = neon_check_type (2, NS_QD,
15543 N_EQK | N_DBL, N_SU_32 | N_KEY);
15544 unsigned sizebits = et.size >> 3;
15545 inst.instruction |= sizebits << 19;
15546 neon_two_same (0, et.type == NT_unsigned, -1);
15547}
15548
15549static void
15550do_neon_trn (void)
15551{
037e8744 15552 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15553 struct neon_type_el et = neon_check_type (2, rs,
15554 N_EQK, N_8 | N_16 | N_32 | N_KEY);
88714cb8 15555 NEON_ENCODE (INTEGER, inst);
037e8744 15556 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15557}
15558
15559static void
15560do_neon_zip_uzp (void)
15561{
037e8744 15562 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15563 struct neon_type_el et = neon_check_type (2, rs,
15564 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15565 if (rs == NS_DD && et.size == 32)
15566 {
15567 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
15568 inst.instruction = N_MNEM_vtrn;
15569 do_neon_trn ();
15570 return;
15571 }
037e8744 15572 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15573}
15574
15575static void
15576do_neon_sat_abs_neg (void)
15577{
037e8744 15578 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15579 struct neon_type_el et = neon_check_type (2, rs,
15580 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15581 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15582}
15583
15584static void
15585do_neon_pair_long (void)
15586{
037e8744 15587 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15588 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
15589 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
15590 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 15591 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15592}
15593
15594static void
15595do_neon_recip_est (void)
15596{
037e8744 15597 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15598 struct neon_type_el et = neon_check_type (2, rs,
15599 N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
15600 inst.instruction |= (et.type == NT_float) << 8;
037e8744 15601 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15602}
15603
15604static void
15605do_neon_cls (void)
15606{
037e8744 15607 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15608 struct neon_type_el et = neon_check_type (2, rs,
15609 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15610 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15611}
15612
15613static void
15614do_neon_clz (void)
15615{
037e8744 15616 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15617 struct neon_type_el et = neon_check_type (2, rs,
15618 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 15619 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15620}
15621
15622static void
15623do_neon_cnt (void)
15624{
037e8744 15625 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15626 struct neon_type_el et = neon_check_type (2, rs,
15627 N_EQK | N_INT, N_8 | N_KEY);
037e8744 15628 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15629}
15630
15631static void
15632do_neon_swp (void)
15633{
037e8744
JB
15634 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
15635 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
15636}
15637
15638static void
15639do_neon_tbl_tbx (void)
15640{
15641 unsigned listlenbits;
dcbf9037 15642 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5f4273c7 15643
5287ad62
JB
15644 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
15645 {
dcbf9037 15646 first_error (_("bad list length for table lookup"));
5287ad62
JB
15647 return;
15648 }
5f4273c7 15649
5287ad62
JB
15650 listlenbits = inst.operands[1].imm - 1;
15651 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15652 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15653 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15654 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15655 inst.instruction |= LOW4 (inst.operands[2].reg);
15656 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15657 inst.instruction |= listlenbits << 8;
5f4273c7 15658
88714cb8 15659 neon_dp_fixup (&inst);
5287ad62
JB
15660}
15661
15662static void
15663do_neon_ldm_stm (void)
15664{
15665 /* P, U and L bits are part of bitmask. */
15666 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
15667 unsigned offsetbits = inst.operands[1].imm * 2;
15668
037e8744
JB
15669 if (inst.operands[1].issingle)
15670 {
15671 do_vfp_nsyn_ldm_stm (is_dbmode);
15672 return;
15673 }
15674
5287ad62 15675 constraint (is_dbmode && !inst.operands[0].writeback,
477330fc 15676 _("writeback (!) must be used for VLDMDB and VSTMDB"));
5287ad62
JB
15677
15678 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
477330fc
RM
15679 _("register list must contain at least 1 and at most 16 "
15680 "registers"));
5287ad62
JB
15681
15682 inst.instruction |= inst.operands[0].reg << 16;
15683 inst.instruction |= inst.operands[0].writeback << 21;
15684 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15685 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
15686
15687 inst.instruction |= offsetbits;
5f4273c7 15688
037e8744 15689 do_vfp_cond_or_thumb ();
5287ad62
JB
15690}
15691
15692static void
15693do_neon_ldr_str (void)
15694{
5287ad62 15695 int is_ldr = (inst.instruction & (1 << 20)) != 0;
5f4273c7 15696
6844b2c2
MGD
15697 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
15698 And is UNPREDICTABLE in thumb mode. */
fa94de6b 15699 if (!is_ldr
6844b2c2 15700 && inst.operands[1].reg == REG_PC
ba86b375 15701 && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode))
6844b2c2 15702 {
94dcf8bf 15703 if (thumb_mode)
6844b2c2 15704 inst.error = _("Use of PC here is UNPREDICTABLE");
94dcf8bf
JB
15705 else if (warn_on_deprecated)
15706 as_warn (_("Use of PC here is deprecated"));
6844b2c2
MGD
15707 }
15708
037e8744
JB
15709 if (inst.operands[0].issingle)
15710 {
cd2f129f 15711 if (is_ldr)
477330fc 15712 do_vfp_nsyn_opcode ("flds");
cd2f129f 15713 else
477330fc 15714 do_vfp_nsyn_opcode ("fsts");
5287ad62
JB
15715 }
15716 else
5287ad62 15717 {
cd2f129f 15718 if (is_ldr)
477330fc 15719 do_vfp_nsyn_opcode ("fldd");
5287ad62 15720 else
477330fc 15721 do_vfp_nsyn_opcode ("fstd");
5287ad62 15722 }
5287ad62
JB
15723}
15724
15725/* "interleave" version also handles non-interleaving register VLD1/VST1
15726 instructions. */
15727
15728static void
15729do_neon_ld_st_interleave (void)
15730{
037e8744 15731 struct neon_type_el et = neon_check_type (1, NS_NULL,
477330fc 15732 N_8 | N_16 | N_32 | N_64);
5287ad62
JB
15733 unsigned alignbits = 0;
15734 unsigned idx;
15735 /* The bits in this table go:
15736 0: register stride of one (0) or two (1)
15737 1,2: register list length, minus one (1, 2, 3, 4).
15738 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
15739 We use -1 for invalid entries. */
15740 const int typetable[] =
15741 {
15742 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
15743 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
15744 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
15745 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
15746 };
15747 int typebits;
15748
dcbf9037
JB
15749 if (et.type == NT_invtype)
15750 return;
15751
5287ad62
JB
15752 if (inst.operands[1].immisalign)
15753 switch (inst.operands[1].imm >> 8)
15754 {
15755 case 64: alignbits = 1; break;
15756 case 128:
477330fc 15757 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
e23c0ad8 15758 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
477330fc
RM
15759 goto bad_alignment;
15760 alignbits = 2;
15761 break;
5287ad62 15762 case 256:
477330fc
RM
15763 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
15764 goto bad_alignment;
15765 alignbits = 3;
15766 break;
5287ad62
JB
15767 default:
15768 bad_alignment:
477330fc
RM
15769 first_error (_("bad alignment"));
15770 return;
5287ad62
JB
15771 }
15772
15773 inst.instruction |= alignbits << 4;
15774 inst.instruction |= neon_logbits (et.size) << 6;
15775
15776 /* Bits [4:6] of the immediate in a list specifier encode register stride
15777 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
15778 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
15779 up the right value for "type" in a table based on this value and the given
15780 list style, then stick it back. */
15781 idx = ((inst.operands[0].imm >> 4) & 7)
477330fc 15782 | (((inst.instruction >> 8) & 3) << 3);
5287ad62
JB
15783
15784 typebits = typetable[idx];
5f4273c7 15785
5287ad62 15786 constraint (typebits == -1, _("bad list type for instruction"));
1d50d57c
WN
15787 constraint (((inst.instruction >> 8) & 3) && et.size == 64,
15788 _("bad element type for instruction"));
5287ad62
JB
15789
15790 inst.instruction &= ~0xf00;
15791 inst.instruction |= typebits << 8;
15792}
15793
15794/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
15795 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
15796 otherwise. The variable arguments are a list of pairs of legal (size, align)
15797 values, terminated with -1. */
15798
15799static int
15800neon_alignment_bit (int size, int align, int *do_align, ...)
15801{
15802 va_list ap;
15803 int result = FAIL, thissize, thisalign;
5f4273c7 15804
5287ad62
JB
15805 if (!inst.operands[1].immisalign)
15806 {
15807 *do_align = 0;
15808 return SUCCESS;
15809 }
5f4273c7 15810
5287ad62
JB
15811 va_start (ap, do_align);
15812
15813 do
15814 {
15815 thissize = va_arg (ap, int);
15816 if (thissize == -1)
477330fc 15817 break;
5287ad62
JB
15818 thisalign = va_arg (ap, int);
15819
15820 if (size == thissize && align == thisalign)
477330fc 15821 result = SUCCESS;
5287ad62
JB
15822 }
15823 while (result != SUCCESS);
15824
15825 va_end (ap);
15826
15827 if (result == SUCCESS)
15828 *do_align = 1;
15829 else
dcbf9037 15830 first_error (_("unsupported alignment for instruction"));
5f4273c7 15831
5287ad62
JB
15832 return result;
15833}
15834
15835static void
15836do_neon_ld_st_lane (void)
15837{
037e8744 15838 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15839 int align_good, do_align = 0;
15840 int logsize = neon_logbits (et.size);
15841 int align = inst.operands[1].imm >> 8;
15842 int n = (inst.instruction >> 8) & 3;
15843 int max_el = 64 / et.size;
5f4273c7 15844
dcbf9037
JB
15845 if (et.type == NT_invtype)
15846 return;
5f4273c7 15847
5287ad62 15848 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
477330fc 15849 _("bad list length"));
5287ad62 15850 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
477330fc 15851 _("scalar index out of range"));
5287ad62 15852 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
477330fc
RM
15853 && et.size == 8,
15854 _("stride of 2 unavailable when element size is 8"));
5f4273c7 15855
5287ad62
JB
15856 switch (n)
15857 {
15858 case 0: /* VLD1 / VST1. */
15859 align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
477330fc 15860 32, 32, -1);
5287ad62 15861 if (align_good == FAIL)
477330fc 15862 return;
5287ad62 15863 if (do_align)
477330fc
RM
15864 {
15865 unsigned alignbits = 0;
15866 switch (et.size)
15867 {
15868 case 16: alignbits = 0x1; break;
15869 case 32: alignbits = 0x3; break;
15870 default: ;
15871 }
15872 inst.instruction |= alignbits << 4;
15873 }
5287ad62
JB
15874 break;
15875
15876 case 1: /* VLD2 / VST2. */
15877 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
477330fc 15878 32, 64, -1);
5287ad62 15879 if (align_good == FAIL)
477330fc 15880 return;
5287ad62 15881 if (do_align)
477330fc 15882 inst.instruction |= 1 << 4;
5287ad62
JB
15883 break;
15884
15885 case 2: /* VLD3 / VST3. */
15886 constraint (inst.operands[1].immisalign,
477330fc 15887 _("can't use alignment with this instruction"));
5287ad62
JB
15888 break;
15889
15890 case 3: /* VLD4 / VST4. */
15891 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
477330fc 15892 16, 64, 32, 64, 32, 128, -1);
5287ad62 15893 if (align_good == FAIL)
477330fc 15894 return;
5287ad62 15895 if (do_align)
477330fc
RM
15896 {
15897 unsigned alignbits = 0;
15898 switch (et.size)
15899 {
15900 case 8: alignbits = 0x1; break;
15901 case 16: alignbits = 0x1; break;
15902 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
15903 default: ;
15904 }
15905 inst.instruction |= alignbits << 4;
15906 }
5287ad62
JB
15907 break;
15908
15909 default: ;
15910 }
15911
15912 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
15913 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15914 inst.instruction |= 1 << (4 + logsize);
5f4273c7 15915
5287ad62
JB
15916 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
15917 inst.instruction |= logsize << 10;
15918}
15919
15920/* Encode single n-element structure to all lanes VLD<n> instructions. */
15921
15922static void
15923do_neon_ld_dup (void)
15924{
037e8744 15925 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15926 int align_good, do_align = 0;
15927
dcbf9037
JB
15928 if (et.type == NT_invtype)
15929 return;
15930
5287ad62
JB
15931 switch ((inst.instruction >> 8) & 3)
15932 {
15933 case 0: /* VLD1. */
9c2799c2 15934 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
5287ad62 15935 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
477330fc 15936 &do_align, 16, 16, 32, 32, -1);
5287ad62 15937 if (align_good == FAIL)
477330fc 15938 return;
5287ad62 15939 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
477330fc
RM
15940 {
15941 case 1: break;
15942 case 2: inst.instruction |= 1 << 5; break;
15943 default: first_error (_("bad list length")); return;
15944 }
5287ad62
JB
15945 inst.instruction |= neon_logbits (et.size) << 6;
15946 break;
15947
15948 case 1: /* VLD2. */
15949 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
477330fc 15950 &do_align, 8, 16, 16, 32, 32, 64, -1);
5287ad62 15951 if (align_good == FAIL)
477330fc 15952 return;
5287ad62 15953 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
477330fc 15954 _("bad list length"));
5287ad62 15955 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
477330fc 15956 inst.instruction |= 1 << 5;
5287ad62
JB
15957 inst.instruction |= neon_logbits (et.size) << 6;
15958 break;
15959
15960 case 2: /* VLD3. */
15961 constraint (inst.operands[1].immisalign,
477330fc 15962 _("can't use alignment with this instruction"));
5287ad62 15963 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
477330fc 15964 _("bad list length"));
5287ad62 15965 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
477330fc 15966 inst.instruction |= 1 << 5;
5287ad62
JB
15967 inst.instruction |= neon_logbits (et.size) << 6;
15968 break;
15969
15970 case 3: /* VLD4. */
15971 {
477330fc
RM
15972 int align = inst.operands[1].imm >> 8;
15973 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15974 16, 64, 32, 64, 32, 128, -1);
15975 if (align_good == FAIL)
15976 return;
15977 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
15978 _("bad list length"));
15979 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15980 inst.instruction |= 1 << 5;
15981 if (et.size == 32 && align == 128)
15982 inst.instruction |= 0x3 << 6;
15983 else
15984 inst.instruction |= neon_logbits (et.size) << 6;
5287ad62
JB
15985 }
15986 break;
15987
15988 default: ;
15989 }
15990
15991 inst.instruction |= do_align << 4;
15992}
15993
15994/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
15995 apart from bits [11:4]. */
15996
15997static void
15998do_neon_ldx_stx (void)
15999{
b1a769ed
DG
16000 if (inst.operands[1].isreg)
16001 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
16002
5287ad62
JB
16003 switch (NEON_LANE (inst.operands[0].imm))
16004 {
16005 case NEON_INTERLEAVE_LANES:
88714cb8 16006 NEON_ENCODE (INTERLV, inst);
5287ad62
JB
16007 do_neon_ld_st_interleave ();
16008 break;
5f4273c7 16009
5287ad62 16010 case NEON_ALL_LANES:
88714cb8 16011 NEON_ENCODE (DUP, inst);
2d51fb74
JB
16012 if (inst.instruction == N_INV)
16013 {
16014 first_error ("only loads support such operands");
16015 break;
16016 }
5287ad62
JB
16017 do_neon_ld_dup ();
16018 break;
5f4273c7 16019
5287ad62 16020 default:
88714cb8 16021 NEON_ENCODE (LANE, inst);
5287ad62
JB
16022 do_neon_ld_st_lane ();
16023 }
16024
16025 /* L bit comes from bit mask. */
16026 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16027 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16028 inst.instruction |= inst.operands[1].reg << 16;
5f4273c7 16029
5287ad62
JB
16030 if (inst.operands[1].postind)
16031 {
16032 int postreg = inst.operands[1].imm & 0xf;
16033 constraint (!inst.operands[1].immisreg,
477330fc 16034 _("post-index must be a register"));
5287ad62 16035 constraint (postreg == 0xd || postreg == 0xf,
477330fc 16036 _("bad register for post-index"));
5287ad62
JB
16037 inst.instruction |= postreg;
16038 }
4f2374c7 16039 else
5287ad62 16040 {
4f2374c7
WN
16041 constraint (inst.operands[1].immisreg, BAD_ADDR_MODE);
16042 constraint (inst.reloc.exp.X_op != O_constant
16043 || inst.reloc.exp.X_add_number != 0,
16044 BAD_ADDR_MODE);
16045
16046 if (inst.operands[1].writeback)
16047 {
16048 inst.instruction |= 0xd;
16049 }
16050 else
16051 inst.instruction |= 0xf;
5287ad62 16052 }
5f4273c7 16053
5287ad62
JB
16054 if (thumb_mode)
16055 inst.instruction |= 0xf9000000;
16056 else
16057 inst.instruction |= 0xf4000000;
16058}
33399f07
MGD
16059
16060/* FP v8. */
16061static void
16062do_vfp_nsyn_fpv8 (enum neon_shape rs)
16063{
16064 NEON_ENCODE (FPV8, inst);
16065
16066 if (rs == NS_FFF)
16067 do_vfp_sp_dyadic ();
16068 else
16069 do_vfp_dp_rd_rn_rm ();
16070
16071 if (rs == NS_DDD)
16072 inst.instruction |= 0x100;
16073
16074 inst.instruction |= 0xf0000000;
16075}
16076
16077static void
16078do_vsel (void)
16079{
16080 set_it_insn_type (OUTSIDE_IT_INSN);
16081
16082 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
16083 first_error (_("invalid instruction shape"));
16084}
16085
73924fbc
MGD
16086static void
16087do_vmaxnm (void)
16088{
16089 set_it_insn_type (OUTSIDE_IT_INSN);
16090
16091 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
16092 return;
16093
16094 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16095 return;
16096
16097 neon_dyadic_misc (NT_untyped, N_F32, 0);
16098}
16099
30bdf752
MGD
16100static void
16101do_vrint_1 (enum neon_cvt_mode mode)
16102{
16103 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_QQ, NS_NULL);
16104 struct neon_type_el et;
16105
16106 if (rs == NS_NULL)
16107 return;
16108
16109 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
16110 if (et.type != NT_invtype)
16111 {
16112 /* VFP encodings. */
16113 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
16114 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
16115 set_it_insn_type (OUTSIDE_IT_INSN);
16116
16117 NEON_ENCODE (FPV8, inst);
16118 if (rs == NS_FF)
16119 do_vfp_sp_monadic ();
16120 else
16121 do_vfp_dp_rd_rm ();
16122
16123 switch (mode)
16124 {
16125 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
16126 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
16127 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
16128 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
16129 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
16130 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
16131 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
16132 default: abort ();
16133 }
16134
16135 inst.instruction |= (rs == NS_DD) << 8;
16136 do_vfp_cond_or_thumb ();
16137 }
16138 else
16139 {
16140 /* Neon encodings (or something broken...). */
16141 inst.error = NULL;
16142 et = neon_check_type (2, rs, N_EQK, N_F32 | N_KEY);
16143
16144 if (et.type == NT_invtype)
16145 return;
16146
16147 set_it_insn_type (OUTSIDE_IT_INSN);
16148 NEON_ENCODE (FLOAT, inst);
16149
16150 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16151 return;
16152
16153 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16154 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16155 inst.instruction |= LOW4 (inst.operands[1].reg);
16156 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16157 inst.instruction |= neon_quad (rs) << 6;
16158 switch (mode)
16159 {
16160 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
16161 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
16162 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
16163 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
16164 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
16165 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
16166 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
16167 default: abort ();
16168 }
16169
16170 if (thumb_mode)
16171 inst.instruction |= 0xfc000000;
16172 else
16173 inst.instruction |= 0xf0000000;
16174 }
16175}
16176
16177static void
16178do_vrintx (void)
16179{
16180 do_vrint_1 (neon_cvt_mode_x);
16181}
16182
16183static void
16184do_vrintz (void)
16185{
16186 do_vrint_1 (neon_cvt_mode_z);
16187}
16188
16189static void
16190do_vrintr (void)
16191{
16192 do_vrint_1 (neon_cvt_mode_r);
16193}
16194
16195static void
16196do_vrinta (void)
16197{
16198 do_vrint_1 (neon_cvt_mode_a);
16199}
16200
16201static void
16202do_vrintn (void)
16203{
16204 do_vrint_1 (neon_cvt_mode_n);
16205}
16206
16207static void
16208do_vrintp (void)
16209{
16210 do_vrint_1 (neon_cvt_mode_p);
16211}
16212
16213static void
16214do_vrintm (void)
16215{
16216 do_vrint_1 (neon_cvt_mode_m);
16217}
16218
91ff7894
MGD
16219/* Crypto v1 instructions. */
16220static void
16221do_crypto_2op_1 (unsigned elttype, int op)
16222{
16223 set_it_insn_type (OUTSIDE_IT_INSN);
16224
16225 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
16226 == NT_invtype)
16227 return;
16228
16229 inst.error = NULL;
16230
16231 NEON_ENCODE (INTEGER, inst);
16232 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16233 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16234 inst.instruction |= LOW4 (inst.operands[1].reg);
16235 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16236 if (op != -1)
16237 inst.instruction |= op << 6;
16238
16239 if (thumb_mode)
16240 inst.instruction |= 0xfc000000;
16241 else
16242 inst.instruction |= 0xf0000000;
16243}
16244
48adcd8e
MGD
16245static void
16246do_crypto_3op_1 (int u, int op)
16247{
16248 set_it_insn_type (OUTSIDE_IT_INSN);
16249
16250 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
16251 N_32 | N_UNT | N_KEY).type == NT_invtype)
16252 return;
16253
16254 inst.error = NULL;
16255
16256 NEON_ENCODE (INTEGER, inst);
16257 neon_three_same (1, u, 8 << op);
16258}
16259
91ff7894
MGD
16260static void
16261do_aese (void)
16262{
16263 do_crypto_2op_1 (N_8, 0);
16264}
16265
16266static void
16267do_aesd (void)
16268{
16269 do_crypto_2op_1 (N_8, 1);
16270}
16271
16272static void
16273do_aesmc (void)
16274{
16275 do_crypto_2op_1 (N_8, 2);
16276}
16277
16278static void
16279do_aesimc (void)
16280{
16281 do_crypto_2op_1 (N_8, 3);
16282}
16283
48adcd8e
MGD
16284static void
16285do_sha1c (void)
16286{
16287 do_crypto_3op_1 (0, 0);
16288}
16289
16290static void
16291do_sha1p (void)
16292{
16293 do_crypto_3op_1 (0, 1);
16294}
16295
16296static void
16297do_sha1m (void)
16298{
16299 do_crypto_3op_1 (0, 2);
16300}
16301
16302static void
16303do_sha1su0 (void)
16304{
16305 do_crypto_3op_1 (0, 3);
16306}
91ff7894 16307
48adcd8e
MGD
16308static void
16309do_sha256h (void)
16310{
16311 do_crypto_3op_1 (1, 0);
16312}
16313
16314static void
16315do_sha256h2 (void)
16316{
16317 do_crypto_3op_1 (1, 1);
16318}
16319
16320static void
16321do_sha256su1 (void)
16322{
16323 do_crypto_3op_1 (1, 2);
16324}
3c9017d2
MGD
16325
16326static void
16327do_sha1h (void)
16328{
16329 do_crypto_2op_1 (N_32, -1);
16330}
16331
16332static void
16333do_sha1su1 (void)
16334{
16335 do_crypto_2op_1 (N_32, 0);
16336}
16337
16338static void
16339do_sha256su0 (void)
16340{
16341 do_crypto_2op_1 (N_32, 1);
16342}
dd5181d5
KT
16343
16344static void
16345do_crc32_1 (unsigned int poly, unsigned int sz)
16346{
16347 unsigned int Rd = inst.operands[0].reg;
16348 unsigned int Rn = inst.operands[1].reg;
16349 unsigned int Rm = inst.operands[2].reg;
16350
16351 set_it_insn_type (OUTSIDE_IT_INSN);
16352 inst.instruction |= LOW4 (Rd) << (thumb_mode ? 8 : 12);
16353 inst.instruction |= LOW4 (Rn) << 16;
16354 inst.instruction |= LOW4 (Rm);
16355 inst.instruction |= sz << (thumb_mode ? 4 : 21);
16356 inst.instruction |= poly << (thumb_mode ? 20 : 9);
16357
16358 if (Rd == REG_PC || Rn == REG_PC || Rm == REG_PC)
16359 as_warn (UNPRED_REG ("r15"));
16360 if (thumb_mode && (Rd == REG_SP || Rn == REG_SP || Rm == REG_SP))
16361 as_warn (UNPRED_REG ("r13"));
16362}
16363
16364static void
16365do_crc32b (void)
16366{
16367 do_crc32_1 (0, 0);
16368}
16369
16370static void
16371do_crc32h (void)
16372{
16373 do_crc32_1 (0, 1);
16374}
16375
16376static void
16377do_crc32w (void)
16378{
16379 do_crc32_1 (0, 2);
16380}
16381
16382static void
16383do_crc32cb (void)
16384{
16385 do_crc32_1 (1, 0);
16386}
16387
16388static void
16389do_crc32ch (void)
16390{
16391 do_crc32_1 (1, 1);
16392}
16393
16394static void
16395do_crc32cw (void)
16396{
16397 do_crc32_1 (1, 2);
16398}
16399
5287ad62
JB
16400\f
16401/* Overall per-instruction processing. */
16402
16403/* We need to be able to fix up arbitrary expressions in some statements.
16404 This is so that we can handle symbols that are an arbitrary distance from
16405 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
16406 which returns part of an address in a form which will be valid for
16407 a data instruction. We do this by pushing the expression into a symbol
16408 in the expr_section, and creating a fix for that. */
16409
16410static void
16411fix_new_arm (fragS * frag,
16412 int where,
16413 short int size,
16414 expressionS * exp,
16415 int pc_rel,
16416 int reloc)
16417{
16418 fixS * new_fix;
16419
16420 switch (exp->X_op)
16421 {
16422 case O_constant:
6e7ce2cd
PB
16423 if (pc_rel)
16424 {
16425 /* Create an absolute valued symbol, so we have something to
477330fc
RM
16426 refer to in the object file. Unfortunately for us, gas's
16427 generic expression parsing will already have folded out
16428 any use of .set foo/.type foo %function that may have
16429 been used to set type information of the target location,
16430 that's being specified symbolically. We have to presume
16431 the user knows what they are doing. */
6e7ce2cd
PB
16432 char name[16 + 8];
16433 symbolS *symbol;
16434
16435 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
16436
16437 symbol = symbol_find_or_make (name);
16438 S_SET_SEGMENT (symbol, absolute_section);
16439 symbol_set_frag (symbol, &zero_address_frag);
16440 S_SET_VALUE (symbol, exp->X_add_number);
16441 exp->X_op = O_symbol;
16442 exp->X_add_symbol = symbol;
16443 exp->X_add_number = 0;
16444 }
16445 /* FALLTHROUGH */
5287ad62
JB
16446 case O_symbol:
16447 case O_add:
16448 case O_subtract:
21d799b5 16449 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
477330fc 16450 (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16451 break;
16452
16453 default:
21d799b5 16454 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
477330fc 16455 pc_rel, (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16456 break;
16457 }
16458
16459 /* Mark whether the fix is to a THUMB instruction, or an ARM
16460 instruction. */
16461 new_fix->tc_fix_data = thumb_mode;
16462}
16463
16464/* Create a frg for an instruction requiring relaxation. */
16465static void
16466output_relax_insn (void)
16467{
16468 char * to;
16469 symbolS *sym;
0110f2b8
PB
16470 int offset;
16471
6e1cb1a6
PB
16472 /* The size of the instruction is unknown, so tie the debug info to the
16473 start of the instruction. */
16474 dwarf2_emit_insn (0);
6e1cb1a6 16475
0110f2b8
PB
16476 switch (inst.reloc.exp.X_op)
16477 {
16478 case O_symbol:
16479 sym = inst.reloc.exp.X_add_symbol;
16480 offset = inst.reloc.exp.X_add_number;
16481 break;
16482 case O_constant:
16483 sym = NULL;
16484 offset = inst.reloc.exp.X_add_number;
16485 break;
16486 default:
16487 sym = make_expr_symbol (&inst.reloc.exp);
16488 offset = 0;
16489 break;
16490 }
16491 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
16492 inst.relax, sym, offset, NULL/*offset, opcode*/);
16493 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
16494}
16495
16496/* Write a 32-bit thumb instruction to buf. */
16497static void
16498put_thumb32_insn (char * buf, unsigned long insn)
16499{
16500 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
16501 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
16502}
16503
b99bd4ef 16504static void
c19d1205 16505output_inst (const char * str)
b99bd4ef 16506{
c19d1205 16507 char * to = NULL;
b99bd4ef 16508
c19d1205 16509 if (inst.error)
b99bd4ef 16510 {
c19d1205 16511 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
16512 return;
16513 }
5f4273c7
NC
16514 if (inst.relax)
16515 {
16516 output_relax_insn ();
0110f2b8 16517 return;
5f4273c7 16518 }
c19d1205
ZW
16519 if (inst.size == 0)
16520 return;
b99bd4ef 16521
c19d1205 16522 to = frag_more (inst.size);
8dc2430f
NC
16523 /* PR 9814: Record the thumb mode into the current frag so that we know
16524 what type of NOP padding to use, if necessary. We override any previous
16525 setting so that if the mode has changed then the NOPS that we use will
16526 match the encoding of the last instruction in the frag. */
cd000bff 16527 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
c19d1205
ZW
16528
16529 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 16530 {
9c2799c2 16531 gas_assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 16532 put_thumb32_insn (to, inst.instruction);
b99bd4ef 16533 }
c19d1205 16534 else if (inst.size > INSN_SIZE)
b99bd4ef 16535 {
9c2799c2 16536 gas_assert (inst.size == (2 * INSN_SIZE));
c19d1205
ZW
16537 md_number_to_chars (to, inst.instruction, INSN_SIZE);
16538 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 16539 }
c19d1205
ZW
16540 else
16541 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 16542
c19d1205
ZW
16543 if (inst.reloc.type != BFD_RELOC_UNUSED)
16544 fix_new_arm (frag_now, to - frag_now->fr_literal,
16545 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
16546 inst.reloc.type);
b99bd4ef 16547
c19d1205 16548 dwarf2_emit_insn (inst.size);
c19d1205 16549}
b99bd4ef 16550
e07e6e58
NC
16551static char *
16552output_it_inst (int cond, int mask, char * to)
16553{
16554 unsigned long instruction = 0xbf00;
16555
16556 mask &= 0xf;
16557 instruction |= mask;
16558 instruction |= cond << 4;
16559
16560 if (to == NULL)
16561 {
16562 to = frag_more (2);
16563#ifdef OBJ_ELF
16564 dwarf2_emit_insn (2);
16565#endif
16566 }
16567
16568 md_number_to_chars (to, instruction, 2);
16569
16570 return to;
16571}
16572
c19d1205
ZW
16573/* Tag values used in struct asm_opcode's tag field. */
16574enum opcode_tag
16575{
16576 OT_unconditional, /* Instruction cannot be conditionalized.
16577 The ARM condition field is still 0xE. */
16578 OT_unconditionalF, /* Instruction cannot be conditionalized
16579 and carries 0xF in its ARM condition field. */
16580 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744 16581 OT_csuffixF, /* Some forms of the instruction take a conditional
477330fc
RM
16582 suffix, others place 0xF where the condition field
16583 would be. */
c19d1205
ZW
16584 OT_cinfix3, /* Instruction takes a conditional infix,
16585 beginning at character index 3. (In
16586 unified mode, it becomes a suffix.) */
088fa78e
KH
16587 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
16588 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
16589 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
16590 character index 3, even in unified mode. Used for
16591 legacy instructions where suffix and infix forms
16592 may be ambiguous. */
c19d1205 16593 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 16594 suffix or an infix at character index 3. */
c19d1205
ZW
16595 OT_odd_infix_unc, /* This is the unconditional variant of an
16596 instruction that takes a conditional infix
16597 at an unusual position. In unified mode,
16598 this variant will accept a suffix. */
16599 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
16600 are the conditional variants of instructions that
16601 take conditional infixes in unusual positions.
16602 The infix appears at character index
16603 (tag - OT_odd_infix_0). These are not accepted
16604 in unified mode. */
16605};
b99bd4ef 16606
c19d1205
ZW
16607/* Subroutine of md_assemble, responsible for looking up the primary
16608 opcode from the mnemonic the user wrote. STR points to the
16609 beginning of the mnemonic.
16610
16611 This is not simply a hash table lookup, because of conditional
16612 variants. Most instructions have conditional variants, which are
16613 expressed with a _conditional affix_ to the mnemonic. If we were
16614 to encode each conditional variant as a literal string in the opcode
16615 table, it would have approximately 20,000 entries.
16616
16617 Most mnemonics take this affix as a suffix, and in unified syntax,
16618 'most' is upgraded to 'all'. However, in the divided syntax, some
16619 instructions take the affix as an infix, notably the s-variants of
16620 the arithmetic instructions. Of those instructions, all but six
16621 have the infix appear after the third character of the mnemonic.
16622
16623 Accordingly, the algorithm for looking up primary opcodes given
16624 an identifier is:
16625
16626 1. Look up the identifier in the opcode table.
16627 If we find a match, go to step U.
16628
16629 2. Look up the last two characters of the identifier in the
16630 conditions table. If we find a match, look up the first N-2
16631 characters of the identifier in the opcode table. If we
16632 find a match, go to step CE.
16633
16634 3. Look up the fourth and fifth characters of the identifier in
16635 the conditions table. If we find a match, extract those
16636 characters from the identifier, and look up the remaining
16637 characters in the opcode table. If we find a match, go
16638 to step CM.
16639
16640 4. Fail.
16641
16642 U. Examine the tag field of the opcode structure, in case this is
16643 one of the six instructions with its conditional infix in an
16644 unusual place. If it is, the tag tells us where to find the
16645 infix; look it up in the conditions table and set inst.cond
16646 accordingly. Otherwise, this is an unconditional instruction.
16647 Again set inst.cond accordingly. Return the opcode structure.
16648
16649 CE. Examine the tag field to make sure this is an instruction that
16650 should receive a conditional suffix. If it is not, fail.
16651 Otherwise, set inst.cond from the suffix we already looked up,
16652 and return the opcode structure.
16653
16654 CM. Examine the tag field to make sure this is an instruction that
16655 should receive a conditional infix after the third character.
16656 If it is not, fail. Otherwise, undo the edits to the current
16657 line of input and proceed as for case CE. */
16658
16659static const struct asm_opcode *
16660opcode_lookup (char **str)
16661{
16662 char *end, *base;
16663 char *affix;
16664 const struct asm_opcode *opcode;
16665 const struct asm_cond *cond;
e3cb604e 16666 char save[2];
c19d1205
ZW
16667
16668 /* Scan up to the end of the mnemonic, which must end in white space,
721a8186 16669 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
c19d1205 16670 for (base = end = *str; *end != '\0'; end++)
721a8186 16671 if (*end == ' ' || *end == '.')
c19d1205 16672 break;
b99bd4ef 16673
c19d1205 16674 if (end == base)
c921be7d 16675 return NULL;
b99bd4ef 16676
5287ad62 16677 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 16678 if (end[0] == '.')
b99bd4ef 16679 {
5287ad62 16680 int offset = 2;
5f4273c7 16681
267d2029 16682 /* The .w and .n suffixes are only valid if the unified syntax is in
477330fc 16683 use. */
267d2029 16684 if (unified_syntax && end[1] == 'w')
c19d1205 16685 inst.size_req = 4;
267d2029 16686 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
16687 inst.size_req = 2;
16688 else
477330fc 16689 offset = 0;
5287ad62
JB
16690
16691 inst.vectype.elems = 0;
16692
16693 *str = end + offset;
b99bd4ef 16694
5f4273c7 16695 if (end[offset] == '.')
5287ad62 16696 {
267d2029 16697 /* See if we have a Neon type suffix (possible in either unified or
477330fc
RM
16698 non-unified ARM syntax mode). */
16699 if (parse_neon_type (&inst.vectype, str) == FAIL)
c921be7d 16700 return NULL;
477330fc 16701 }
5287ad62 16702 else if (end[offset] != '\0' && end[offset] != ' ')
477330fc 16703 return NULL;
b99bd4ef 16704 }
c19d1205
ZW
16705 else
16706 *str = end;
b99bd4ef 16707
c19d1205 16708 /* Look for unaffixed or special-case affixed mnemonic. */
21d799b5 16709 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 16710 end - base);
c19d1205 16711 if (opcode)
b99bd4ef 16712 {
c19d1205
ZW
16713 /* step U */
16714 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 16715 {
c19d1205
ZW
16716 inst.cond = COND_ALWAYS;
16717 return opcode;
b99bd4ef 16718 }
b99bd4ef 16719
278df34e 16720 if (warn_on_deprecated && unified_syntax)
c19d1205
ZW
16721 as_warn (_("conditional infixes are deprecated in unified syntax"));
16722 affix = base + (opcode->tag - OT_odd_infix_0);
21d799b5 16723 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
9c2799c2 16724 gas_assert (cond);
b99bd4ef 16725
c19d1205
ZW
16726 inst.cond = cond->value;
16727 return opcode;
16728 }
b99bd4ef 16729
c19d1205
ZW
16730 /* Cannot have a conditional suffix on a mnemonic of less than two
16731 characters. */
16732 if (end - base < 3)
c921be7d 16733 return NULL;
b99bd4ef 16734
c19d1205
ZW
16735 /* Look for suffixed mnemonic. */
16736 affix = end - 2;
21d799b5
NC
16737 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
16738 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 16739 affix - base);
c19d1205
ZW
16740 if (opcode && cond)
16741 {
16742 /* step CE */
16743 switch (opcode->tag)
16744 {
e3cb604e
PB
16745 case OT_cinfix3_legacy:
16746 /* Ignore conditional suffixes matched on infix only mnemonics. */
16747 break;
16748
c19d1205 16749 case OT_cinfix3:
088fa78e 16750 case OT_cinfix3_deprecated:
c19d1205
ZW
16751 case OT_odd_infix_unc:
16752 if (!unified_syntax)
e3cb604e 16753 return 0;
c19d1205
ZW
16754 /* else fall through */
16755
16756 case OT_csuffix:
477330fc 16757 case OT_csuffixF:
c19d1205
ZW
16758 case OT_csuf_or_in3:
16759 inst.cond = cond->value;
16760 return opcode;
16761
16762 case OT_unconditional:
16763 case OT_unconditionalF:
dfa9f0d5 16764 if (thumb_mode)
c921be7d 16765 inst.cond = cond->value;
dfa9f0d5
PB
16766 else
16767 {
c921be7d 16768 /* Delayed diagnostic. */
dfa9f0d5
PB
16769 inst.error = BAD_COND;
16770 inst.cond = COND_ALWAYS;
16771 }
c19d1205 16772 return opcode;
b99bd4ef 16773
c19d1205 16774 default:
c921be7d 16775 return NULL;
c19d1205
ZW
16776 }
16777 }
b99bd4ef 16778
c19d1205
ZW
16779 /* Cannot have a usual-position infix on a mnemonic of less than
16780 six characters (five would be a suffix). */
16781 if (end - base < 6)
c921be7d 16782 return NULL;
b99bd4ef 16783
c19d1205
ZW
16784 /* Look for infixed mnemonic in the usual position. */
16785 affix = base + 3;
21d799b5 16786 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e 16787 if (!cond)
c921be7d 16788 return NULL;
e3cb604e
PB
16789
16790 memcpy (save, affix, 2);
16791 memmove (affix, affix + 2, (end - affix) - 2);
21d799b5 16792 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 16793 (end - base) - 2);
e3cb604e
PB
16794 memmove (affix + 2, affix, (end - affix) - 2);
16795 memcpy (affix, save, 2);
16796
088fa78e
KH
16797 if (opcode
16798 && (opcode->tag == OT_cinfix3
16799 || opcode->tag == OT_cinfix3_deprecated
16800 || opcode->tag == OT_csuf_or_in3
16801 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 16802 {
c921be7d 16803 /* Step CM. */
278df34e 16804 if (warn_on_deprecated && unified_syntax
088fa78e
KH
16805 && (opcode->tag == OT_cinfix3
16806 || opcode->tag == OT_cinfix3_deprecated))
c19d1205
ZW
16807 as_warn (_("conditional infixes are deprecated in unified syntax"));
16808
16809 inst.cond = cond->value;
16810 return opcode;
b99bd4ef
NC
16811 }
16812
c921be7d 16813 return NULL;
b99bd4ef
NC
16814}
16815
e07e6e58
NC
16816/* This function generates an initial IT instruction, leaving its block
16817 virtually open for the new instructions. Eventually,
16818 the mask will be updated by now_it_add_mask () each time
16819 a new instruction needs to be included in the IT block.
16820 Finally, the block is closed with close_automatic_it_block ().
16821 The block closure can be requested either from md_assemble (),
16822 a tencode (), or due to a label hook. */
16823
16824static void
16825new_automatic_it_block (int cond)
16826{
16827 now_it.state = AUTOMATIC_IT_BLOCK;
16828 now_it.mask = 0x18;
16829 now_it.cc = cond;
16830 now_it.block_length = 1;
cd000bff 16831 mapping_state (MAP_THUMB);
e07e6e58 16832 now_it.insn = output_it_inst (cond, now_it.mask, NULL);
5a01bb1d
MGD
16833 now_it.warn_deprecated = FALSE;
16834 now_it.insn_cond = TRUE;
e07e6e58
NC
16835}
16836
16837/* Close an automatic IT block.
16838 See comments in new_automatic_it_block (). */
16839
16840static void
16841close_automatic_it_block (void)
16842{
16843 now_it.mask = 0x10;
16844 now_it.block_length = 0;
16845}
16846
16847/* Update the mask of the current automatically-generated IT
16848 instruction. See comments in new_automatic_it_block (). */
16849
16850static void
16851now_it_add_mask (int cond)
16852{
16853#define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
16854#define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
477330fc 16855 | ((bitvalue) << (nbit)))
e07e6e58 16856 const int resulting_bit = (cond & 1);
c921be7d 16857
e07e6e58
NC
16858 now_it.mask &= 0xf;
16859 now_it.mask = SET_BIT_VALUE (now_it.mask,
477330fc
RM
16860 resulting_bit,
16861 (5 - now_it.block_length));
e07e6e58 16862 now_it.mask = SET_BIT_VALUE (now_it.mask,
477330fc
RM
16863 1,
16864 ((5 - now_it.block_length) - 1) );
e07e6e58
NC
16865 output_it_inst (now_it.cc, now_it.mask, now_it.insn);
16866
16867#undef CLEAR_BIT
16868#undef SET_BIT_VALUE
e07e6e58
NC
16869}
16870
16871/* The IT blocks handling machinery is accessed through the these functions:
16872 it_fsm_pre_encode () from md_assemble ()
16873 set_it_insn_type () optional, from the tencode functions
16874 set_it_insn_type_last () ditto
16875 in_it_block () ditto
16876 it_fsm_post_encode () from md_assemble ()
16877 force_automatic_it_block_close () from label habdling functions
16878
16879 Rationale:
16880 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
477330fc
RM
16881 initializing the IT insn type with a generic initial value depending
16882 on the inst.condition.
e07e6e58 16883 2) During the tencode function, two things may happen:
477330fc
RM
16884 a) The tencode function overrides the IT insn type by
16885 calling either set_it_insn_type (type) or set_it_insn_type_last ().
16886 b) The tencode function queries the IT block state by
16887 calling in_it_block () (i.e. to determine narrow/not narrow mode).
16888
16889 Both set_it_insn_type and in_it_block run the internal FSM state
16890 handling function (handle_it_state), because: a) setting the IT insn
16891 type may incur in an invalid state (exiting the function),
16892 and b) querying the state requires the FSM to be updated.
16893 Specifically we want to avoid creating an IT block for conditional
16894 branches, so it_fsm_pre_encode is actually a guess and we can't
16895 determine whether an IT block is required until the tencode () routine
16896 has decided what type of instruction this actually it.
16897 Because of this, if set_it_insn_type and in_it_block have to be used,
16898 set_it_insn_type has to be called first.
16899
16900 set_it_insn_type_last () is a wrapper of set_it_insn_type (type), that
16901 determines the insn IT type depending on the inst.cond code.
16902 When a tencode () routine encodes an instruction that can be
16903 either outside an IT block, or, in the case of being inside, has to be
16904 the last one, set_it_insn_type_last () will determine the proper
16905 IT instruction type based on the inst.cond code. Otherwise,
16906 set_it_insn_type can be called for overriding that logic or
16907 for covering other cases.
16908
16909 Calling handle_it_state () may not transition the IT block state to
16910 OUTSIDE_IT_BLOCK immediatelly, since the (current) state could be
16911 still queried. Instead, if the FSM determines that the state should
16912 be transitioned to OUTSIDE_IT_BLOCK, a flag is marked to be closed
16913 after the tencode () function: that's what it_fsm_post_encode () does.
16914
16915 Since in_it_block () calls the state handling function to get an
16916 updated state, an error may occur (due to invalid insns combination).
16917 In that case, inst.error is set.
16918 Therefore, inst.error has to be checked after the execution of
16919 the tencode () routine.
e07e6e58
NC
16920
16921 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
477330fc
RM
16922 any pending state change (if any) that didn't take place in
16923 handle_it_state () as explained above. */
e07e6e58
NC
16924
16925static void
16926it_fsm_pre_encode (void)
16927{
16928 if (inst.cond != COND_ALWAYS)
16929 inst.it_insn_type = INSIDE_IT_INSN;
16930 else
16931 inst.it_insn_type = OUTSIDE_IT_INSN;
16932
16933 now_it.state_handled = 0;
16934}
16935
16936/* IT state FSM handling function. */
16937
16938static int
16939handle_it_state (void)
16940{
16941 now_it.state_handled = 1;
5a01bb1d 16942 now_it.insn_cond = FALSE;
e07e6e58
NC
16943
16944 switch (now_it.state)
16945 {
16946 case OUTSIDE_IT_BLOCK:
16947 switch (inst.it_insn_type)
16948 {
16949 case OUTSIDE_IT_INSN:
16950 break;
16951
16952 case INSIDE_IT_INSN:
16953 case INSIDE_IT_LAST_INSN:
16954 if (thumb_mode == 0)
16955 {
c921be7d 16956 if (unified_syntax
e07e6e58
NC
16957 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
16958 as_tsktsk (_("Warning: conditional outside an IT block"\
16959 " for Thumb."));
16960 }
16961 else
16962 {
16963 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
16964 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2))
16965 {
16966 /* Automatically generate the IT instruction. */
16967 new_automatic_it_block (inst.cond);
16968 if (inst.it_insn_type == INSIDE_IT_LAST_INSN)
16969 close_automatic_it_block ();
16970 }
16971 else
16972 {
16973 inst.error = BAD_OUT_IT;
16974 return FAIL;
16975 }
16976 }
16977 break;
16978
16979 case IF_INSIDE_IT_LAST_INSN:
16980 case NEUTRAL_IT_INSN:
16981 break;
16982
16983 case IT_INSN:
16984 now_it.state = MANUAL_IT_BLOCK;
16985 now_it.block_length = 0;
16986 break;
16987 }
16988 break;
16989
16990 case AUTOMATIC_IT_BLOCK:
16991 /* Three things may happen now:
16992 a) We should increment current it block size;
16993 b) We should close current it block (closing insn or 4 insns);
16994 c) We should close current it block and start a new one (due
16995 to incompatible conditions or
16996 4 insns-length block reached). */
16997
16998 switch (inst.it_insn_type)
16999 {
17000 case OUTSIDE_IT_INSN:
17001 /* The closure of the block shall happen immediatelly,
17002 so any in_it_block () call reports the block as closed. */
17003 force_automatic_it_block_close ();
17004 break;
17005
17006 case INSIDE_IT_INSN:
17007 case INSIDE_IT_LAST_INSN:
17008 case IF_INSIDE_IT_LAST_INSN:
17009 now_it.block_length++;
17010
17011 if (now_it.block_length > 4
17012 || !now_it_compatible (inst.cond))
17013 {
17014 force_automatic_it_block_close ();
17015 if (inst.it_insn_type != IF_INSIDE_IT_LAST_INSN)
17016 new_automatic_it_block (inst.cond);
17017 }
17018 else
17019 {
5a01bb1d 17020 now_it.insn_cond = TRUE;
e07e6e58
NC
17021 now_it_add_mask (inst.cond);
17022 }
17023
17024 if (now_it.state == AUTOMATIC_IT_BLOCK
17025 && (inst.it_insn_type == INSIDE_IT_LAST_INSN
17026 || inst.it_insn_type == IF_INSIDE_IT_LAST_INSN))
17027 close_automatic_it_block ();
17028 break;
17029
17030 case NEUTRAL_IT_INSN:
17031 now_it.block_length++;
5a01bb1d 17032 now_it.insn_cond = TRUE;
e07e6e58
NC
17033
17034 if (now_it.block_length > 4)
17035 force_automatic_it_block_close ();
17036 else
17037 now_it_add_mask (now_it.cc & 1);
17038 break;
17039
17040 case IT_INSN:
17041 close_automatic_it_block ();
17042 now_it.state = MANUAL_IT_BLOCK;
17043 break;
17044 }
17045 break;
17046
17047 case MANUAL_IT_BLOCK:
17048 {
17049 /* Check conditional suffixes. */
17050 const int cond = now_it.cc ^ ((now_it.mask >> 4) & 1) ^ 1;
17051 int is_last;
17052 now_it.mask <<= 1;
17053 now_it.mask &= 0x1f;
17054 is_last = (now_it.mask == 0x10);
5a01bb1d 17055 now_it.insn_cond = TRUE;
e07e6e58
NC
17056
17057 switch (inst.it_insn_type)
17058 {
17059 case OUTSIDE_IT_INSN:
17060 inst.error = BAD_NOT_IT;
17061 return FAIL;
17062
17063 case INSIDE_IT_INSN:
17064 if (cond != inst.cond)
17065 {
17066 inst.error = BAD_IT_COND;
17067 return FAIL;
17068 }
17069 break;
17070
17071 case INSIDE_IT_LAST_INSN:
17072 case IF_INSIDE_IT_LAST_INSN:
17073 if (cond != inst.cond)
17074 {
17075 inst.error = BAD_IT_COND;
17076 return FAIL;
17077 }
17078 if (!is_last)
17079 {
17080 inst.error = BAD_BRANCH;
17081 return FAIL;
17082 }
17083 break;
17084
17085 case NEUTRAL_IT_INSN:
17086 /* The BKPT instruction is unconditional even in an IT block. */
17087 break;
17088
17089 case IT_INSN:
17090 inst.error = BAD_IT_IT;
17091 return FAIL;
17092 }
17093 }
17094 break;
17095 }
17096
17097 return SUCCESS;
17098}
17099
5a01bb1d
MGD
17100struct depr_insn_mask
17101{
17102 unsigned long pattern;
17103 unsigned long mask;
17104 const char* description;
17105};
17106
17107/* List of 16-bit instruction patterns deprecated in an IT block in
17108 ARMv8. */
17109static const struct depr_insn_mask depr_it_insns[] = {
17110 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
17111 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
17112 { 0xa000, 0xb800, N_("ADR") },
17113 { 0x4800, 0xf800, N_("Literal loads") },
17114 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
17115 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
17116 { 0, 0, NULL }
17117};
17118
e07e6e58
NC
17119static void
17120it_fsm_post_encode (void)
17121{
17122 int is_last;
17123
17124 if (!now_it.state_handled)
17125 handle_it_state ();
17126
5a01bb1d
MGD
17127 if (now_it.insn_cond
17128 && !now_it.warn_deprecated
17129 && warn_on_deprecated
17130 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
17131 {
17132 if (inst.instruction >= 0x10000)
17133 {
0a8897c7 17134 as_warn (_("IT blocks containing 32-bit Thumb instructions are "
5a01bb1d
MGD
17135 "deprecated in ARMv8"));
17136 now_it.warn_deprecated = TRUE;
17137 }
17138 else
17139 {
17140 const struct depr_insn_mask *p = depr_it_insns;
17141
17142 while (p->mask != 0)
17143 {
17144 if ((inst.instruction & p->mask) == p->pattern)
17145 {
0a8897c7 17146 as_warn (_("IT blocks containing 16-bit Thumb instructions "
5a01bb1d
MGD
17147 "of the following class are deprecated in ARMv8: "
17148 "%s"), p->description);
17149 now_it.warn_deprecated = TRUE;
17150 break;
17151 }
17152
17153 ++p;
17154 }
17155 }
17156
17157 if (now_it.block_length > 1)
17158 {
0a8897c7
KT
17159 as_warn (_("IT blocks containing more than one conditional "
17160 "instruction are deprecated in ARMv8"));
5a01bb1d
MGD
17161 now_it.warn_deprecated = TRUE;
17162 }
17163 }
17164
e07e6e58
NC
17165 is_last = (now_it.mask == 0x10);
17166 if (is_last)
17167 {
17168 now_it.state = OUTSIDE_IT_BLOCK;
17169 now_it.mask = 0;
17170 }
17171}
17172
17173static void
17174force_automatic_it_block_close (void)
17175{
17176 if (now_it.state == AUTOMATIC_IT_BLOCK)
17177 {
17178 close_automatic_it_block ();
17179 now_it.state = OUTSIDE_IT_BLOCK;
17180 now_it.mask = 0;
17181 }
17182}
17183
17184static int
17185in_it_block (void)
17186{
17187 if (!now_it.state_handled)
17188 handle_it_state ();
17189
17190 return now_it.state != OUTSIDE_IT_BLOCK;
17191}
17192
c19d1205
ZW
17193void
17194md_assemble (char *str)
b99bd4ef 17195{
c19d1205
ZW
17196 char *p = str;
17197 const struct asm_opcode * opcode;
b99bd4ef 17198
c19d1205
ZW
17199 /* Align the previous label if needed. */
17200 if (last_label_seen != NULL)
b99bd4ef 17201 {
c19d1205
ZW
17202 symbol_set_frag (last_label_seen, frag_now);
17203 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
17204 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
17205 }
17206
c19d1205
ZW
17207 memset (&inst, '\0', sizeof (inst));
17208 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 17209
c19d1205
ZW
17210 opcode = opcode_lookup (&p);
17211 if (!opcode)
b99bd4ef 17212 {
c19d1205 17213 /* It wasn't an instruction, but it might be a register alias of
dcbf9037 17214 the form alias .req reg, or a Neon .dn/.qn directive. */
c921be7d 17215 if (! create_register_alias (str, p)
477330fc 17216 && ! create_neon_reg_alias (str, p))
c19d1205 17217 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 17218
b99bd4ef
NC
17219 return;
17220 }
17221
278df34e 17222 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
088fa78e
KH
17223 as_warn (_("s suffix on comparison instruction is deprecated"));
17224
037e8744
JB
17225 /* The value which unconditional instructions should have in place of the
17226 condition field. */
17227 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
17228
c19d1205 17229 if (thumb_mode)
b99bd4ef 17230 {
e74cfd16 17231 arm_feature_set variant;
8f06b2d8
PB
17232
17233 variant = cpu_variant;
17234 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
17235 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
17236 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 17237 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
17238 if (!opcode->tvariant
17239 || (thumb_mode == 1
17240 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 17241 {
bf3eeda7 17242 as_bad (_("selected processor does not support Thumb mode `%s'"), str);
b99bd4ef
NC
17243 return;
17244 }
c19d1205
ZW
17245 if (inst.cond != COND_ALWAYS && !unified_syntax
17246 && opcode->tencode != do_t_branch)
b99bd4ef 17247 {
c19d1205 17248 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
17249 return;
17250 }
17251
752d5da4 17252 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2))
076d447c 17253 {
7e806470 17254 if (opcode->tencode != do_t_blx && opcode->tencode != do_t_branch23
752d5da4
NC
17255 && !(ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_msr)
17256 || ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_barrier)))
17257 {
17258 /* Two things are addressed here.
17259 1) Implicit require narrow instructions on Thumb-1.
17260 This avoids relaxation accidentally introducing Thumb-2
17261 instructions.
17262 2) Reject wide instructions in non Thumb-2 cores. */
17263 if (inst.size_req == 0)
17264 inst.size_req = 2;
17265 else if (inst.size_req == 4)
17266 {
bf3eeda7 17267 as_bad (_("selected processor does not support Thumb-2 mode `%s'"), str);
752d5da4
NC
17268 return;
17269 }
17270 }
076d447c
PB
17271 }
17272
c19d1205
ZW
17273 inst.instruction = opcode->tvalue;
17274
5be8be5d 17275 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
477330fc
RM
17276 {
17277 /* Prepare the it_insn_type for those encodings that don't set
17278 it. */
17279 it_fsm_pre_encode ();
c19d1205 17280
477330fc 17281 opcode->tencode ();
e07e6e58 17282
477330fc
RM
17283 it_fsm_post_encode ();
17284 }
e27ec89e 17285
0110f2b8 17286 if (!(inst.error || inst.relax))
b99bd4ef 17287 {
9c2799c2 17288 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
c19d1205
ZW
17289 inst.size = (inst.instruction > 0xffff ? 4 : 2);
17290 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 17291 {
c19d1205 17292 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
17293 return;
17294 }
17295 }
076d447c
PB
17296
17297 /* Something has gone badly wrong if we try to relax a fixed size
477330fc 17298 instruction. */
9c2799c2 17299 gas_assert (inst.size_req == 0 || !inst.relax);
076d447c 17300
e74cfd16
PB
17301 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17302 *opcode->tvariant);
ee065d83 17303 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
708587a4 17304 set those bits when Thumb-2 32-bit instructions are seen. ie.
7e806470 17305 anything other than bl/blx and v6-M instructions.
ee065d83 17306 This is overly pessimistic for relaxable instructions. */
7e806470
PB
17307 if (((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
17308 || inst.relax)
e07e6e58
NC
17309 && !(ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
17310 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier)))
e74cfd16
PB
17311 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17312 arm_ext_v6t2);
cd000bff 17313
88714cb8
DG
17314 check_neon_suffixes;
17315
cd000bff 17316 if (!inst.error)
c877a2f2
NC
17317 {
17318 mapping_state (MAP_THUMB);
17319 }
c19d1205 17320 }
3e9e4fcf 17321 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205 17322 {
845b51d6
PB
17323 bfd_boolean is_bx;
17324
17325 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
17326 is_bx = (opcode->aencode == do_bx);
17327
c19d1205 17328 /* Check that this instruction is supported for this CPU. */
845b51d6
PB
17329 if (!(is_bx && fix_v4bx)
17330 && !(opcode->avariant &&
17331 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
b99bd4ef 17332 {
bf3eeda7 17333 as_bad (_("selected processor does not support ARM mode `%s'"), str);
c19d1205 17334 return;
b99bd4ef 17335 }
c19d1205 17336 if (inst.size_req)
b99bd4ef 17337 {
c19d1205
ZW
17338 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
17339 return;
b99bd4ef
NC
17340 }
17341
c19d1205
ZW
17342 inst.instruction = opcode->avalue;
17343 if (opcode->tag == OT_unconditionalF)
17344 inst.instruction |= 0xF << 28;
17345 else
17346 inst.instruction |= inst.cond << 28;
17347 inst.size = INSN_SIZE;
5be8be5d 17348 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
477330fc
RM
17349 {
17350 it_fsm_pre_encode ();
17351 opcode->aencode ();
17352 it_fsm_post_encode ();
17353 }
ee065d83 17354 /* Arm mode bx is marked as both v4T and v5 because it's still required
477330fc 17355 on a hypothetical non-thumb v5 core. */
845b51d6 17356 if (is_bx)
e74cfd16 17357 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 17358 else
e74cfd16
PB
17359 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
17360 *opcode->avariant);
88714cb8
DG
17361
17362 check_neon_suffixes;
17363
cd000bff 17364 if (!inst.error)
c877a2f2
NC
17365 {
17366 mapping_state (MAP_ARM);
17367 }
b99bd4ef 17368 }
3e9e4fcf
JB
17369 else
17370 {
17371 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
17372 "-- `%s'"), str);
17373 return;
17374 }
c19d1205
ZW
17375 output_inst (str);
17376}
b99bd4ef 17377
e07e6e58
NC
17378static void
17379check_it_blocks_finished (void)
17380{
17381#ifdef OBJ_ELF
17382 asection *sect;
17383
17384 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
17385 if (seg_info (sect)->tc_segment_info_data.current_it.state
17386 == MANUAL_IT_BLOCK)
17387 {
17388 as_warn (_("section '%s' finished with an open IT block."),
17389 sect->name);
17390 }
17391#else
17392 if (now_it.state == MANUAL_IT_BLOCK)
17393 as_warn (_("file finished with an open IT block."));
17394#endif
17395}
17396
c19d1205
ZW
17397/* Various frobbings of labels and their addresses. */
17398
17399void
17400arm_start_line_hook (void)
17401{
17402 last_label_seen = NULL;
b99bd4ef
NC
17403}
17404
c19d1205
ZW
17405void
17406arm_frob_label (symbolS * sym)
b99bd4ef 17407{
c19d1205 17408 last_label_seen = sym;
b99bd4ef 17409
c19d1205 17410 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 17411
c19d1205
ZW
17412#if defined OBJ_COFF || defined OBJ_ELF
17413 ARM_SET_INTERWORK (sym, support_interwork);
17414#endif
b99bd4ef 17415
e07e6e58
NC
17416 force_automatic_it_block_close ();
17417
5f4273c7 17418 /* Note - do not allow local symbols (.Lxxx) to be labelled
c19d1205
ZW
17419 as Thumb functions. This is because these labels, whilst
17420 they exist inside Thumb code, are not the entry points for
17421 possible ARM->Thumb calls. Also, these labels can be used
17422 as part of a computed goto or switch statement. eg gcc
17423 can generate code that looks like this:
b99bd4ef 17424
c19d1205
ZW
17425 ldr r2, [pc, .Laaa]
17426 lsl r3, r3, #2
17427 ldr r2, [r3, r2]
17428 mov pc, r2
b99bd4ef 17429
c19d1205
ZW
17430 .Lbbb: .word .Lxxx
17431 .Lccc: .word .Lyyy
17432 ..etc...
17433 .Laaa: .word Lbbb
b99bd4ef 17434
c19d1205
ZW
17435 The first instruction loads the address of the jump table.
17436 The second instruction converts a table index into a byte offset.
17437 The third instruction gets the jump address out of the table.
17438 The fourth instruction performs the jump.
b99bd4ef 17439
c19d1205
ZW
17440 If the address stored at .Laaa is that of a symbol which has the
17441 Thumb_Func bit set, then the linker will arrange for this address
17442 to have the bottom bit set, which in turn would mean that the
17443 address computation performed by the third instruction would end
17444 up with the bottom bit set. Since the ARM is capable of unaligned
17445 word loads, the instruction would then load the incorrect address
17446 out of the jump table, and chaos would ensue. */
17447 if (label_is_thumb_function_name
17448 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
17449 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 17450 {
c19d1205
ZW
17451 /* When the address of a Thumb function is taken the bottom
17452 bit of that address should be set. This will allow
17453 interworking between Arm and Thumb functions to work
17454 correctly. */
b99bd4ef 17455
c19d1205 17456 THUMB_SET_FUNC (sym, 1);
b99bd4ef 17457
c19d1205 17458 label_is_thumb_function_name = FALSE;
b99bd4ef 17459 }
07a53e5c 17460
07a53e5c 17461 dwarf2_emit_label (sym);
b99bd4ef
NC
17462}
17463
c921be7d 17464bfd_boolean
c19d1205 17465arm_data_in_code (void)
b99bd4ef 17466{
c19d1205 17467 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 17468 {
c19d1205
ZW
17469 *input_line_pointer = '/';
17470 input_line_pointer += 5;
17471 *input_line_pointer = 0;
c921be7d 17472 return TRUE;
b99bd4ef
NC
17473 }
17474
c921be7d 17475 return FALSE;
b99bd4ef
NC
17476}
17477
c19d1205
ZW
17478char *
17479arm_canonicalize_symbol_name (char * name)
b99bd4ef 17480{
c19d1205 17481 int len;
b99bd4ef 17482
c19d1205
ZW
17483 if (thumb_mode && (len = strlen (name)) > 5
17484 && streq (name + len - 5, "/data"))
17485 *(name + len - 5) = 0;
b99bd4ef 17486
c19d1205 17487 return name;
b99bd4ef 17488}
c19d1205
ZW
17489\f
17490/* Table of all register names defined by default. The user can
17491 define additional names with .req. Note that all register names
17492 should appear in both upper and lowercase variants. Some registers
17493 also have mixed-case names. */
b99bd4ef 17494
dcbf9037 17495#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 17496#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 17497#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
17498#define REGSET(p,t) \
17499 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
17500 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
17501 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
17502 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
17503#define REGSETH(p,t) \
17504 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
17505 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
17506 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
17507 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
17508#define REGSET2(p,t) \
17509 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
17510 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
17511 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
17512 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
90ec0d68
MGD
17513#define SPLRBANK(base,bank,t) \
17514 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
17515 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
17516 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
17517 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
17518 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
17519 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
7ed4c4c5 17520
c19d1205 17521static const struct reg_entry reg_names[] =
7ed4c4c5 17522{
c19d1205
ZW
17523 /* ARM integer registers. */
17524 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 17525
c19d1205
ZW
17526 /* ATPCS synonyms. */
17527 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
17528 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
17529 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 17530
c19d1205
ZW
17531 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
17532 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
17533 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 17534
c19d1205
ZW
17535 /* Well-known aliases. */
17536 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
17537 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
17538
17539 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
17540 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
17541
17542 /* Coprocessor numbers. */
17543 REGSET(p, CP), REGSET(P, CP),
17544
17545 /* Coprocessor register numbers. The "cr" variants are for backward
17546 compatibility. */
17547 REGSET(c, CN), REGSET(C, CN),
17548 REGSET(cr, CN), REGSET(CR, CN),
17549
90ec0d68
MGD
17550 /* ARM banked registers. */
17551 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
17552 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
17553 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
17554 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
17555 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
17556 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
17557 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
17558
17559 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
17560 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
17561 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
17562 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
17563 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
1472d06f 17564 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(sp_fiq,512|(13<<16),RNB),
90ec0d68
MGD
17565 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
17566 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
17567
17568 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
17569 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
17570 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
17571 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
17572 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
17573 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
17574 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
fa94de6b 17575 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
90ec0d68
MGD
17576 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
17577
c19d1205
ZW
17578 /* FPA registers. */
17579 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
17580 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
17581
17582 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
17583 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
17584
17585 /* VFP SP registers. */
5287ad62
JB
17586 REGSET(s,VFS), REGSET(S,VFS),
17587 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
17588
17589 /* VFP DP Registers. */
5287ad62
JB
17590 REGSET(d,VFD), REGSET(D,VFD),
17591 /* Extra Neon DP registers. */
17592 REGSETH(d,VFD), REGSETH(D,VFD),
17593
17594 /* Neon QP registers. */
17595 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
17596
17597 /* VFP control registers. */
17598 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
17599 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
cd2cf30b
PB
17600 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
17601 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
17602 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
17603 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
c19d1205
ZW
17604
17605 /* Maverick DSP coprocessor registers. */
17606 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
17607 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
17608
17609 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
17610 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
17611 REGDEF(dspsc,0,DSPSC),
17612
17613 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
17614 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
17615 REGDEF(DSPSC,0,DSPSC),
17616
17617 /* iWMMXt data registers - p0, c0-15. */
17618 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
17619
17620 /* iWMMXt control registers - p1, c0-3. */
17621 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
17622 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
17623 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
17624 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
17625
17626 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
17627 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
17628 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
17629 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
17630 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
17631
17632 /* XScale accumulator registers. */
17633 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
17634};
17635#undef REGDEF
17636#undef REGNUM
17637#undef REGSET
7ed4c4c5 17638
c19d1205
ZW
17639/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
17640 within psr_required_here. */
17641static const struct asm_psr psrs[] =
17642{
17643 /* Backward compatibility notation. Note that "all" is no longer
17644 truly all possible PSR bits. */
17645 {"all", PSR_c | PSR_f},
17646 {"flg", PSR_f},
17647 {"ctl", PSR_c},
17648
17649 /* Individual flags. */
17650 {"f", PSR_f},
17651 {"c", PSR_c},
17652 {"x", PSR_x},
17653 {"s", PSR_s},
59b42a0d 17654
c19d1205
ZW
17655 /* Combinations of flags. */
17656 {"fs", PSR_f | PSR_s},
17657 {"fx", PSR_f | PSR_x},
17658 {"fc", PSR_f | PSR_c},
17659 {"sf", PSR_s | PSR_f},
17660 {"sx", PSR_s | PSR_x},
17661 {"sc", PSR_s | PSR_c},
17662 {"xf", PSR_x | PSR_f},
17663 {"xs", PSR_x | PSR_s},
17664 {"xc", PSR_x | PSR_c},
17665 {"cf", PSR_c | PSR_f},
17666 {"cs", PSR_c | PSR_s},
17667 {"cx", PSR_c | PSR_x},
17668 {"fsx", PSR_f | PSR_s | PSR_x},
17669 {"fsc", PSR_f | PSR_s | PSR_c},
17670 {"fxs", PSR_f | PSR_x | PSR_s},
17671 {"fxc", PSR_f | PSR_x | PSR_c},
17672 {"fcs", PSR_f | PSR_c | PSR_s},
17673 {"fcx", PSR_f | PSR_c | PSR_x},
17674 {"sfx", PSR_s | PSR_f | PSR_x},
17675 {"sfc", PSR_s | PSR_f | PSR_c},
17676 {"sxf", PSR_s | PSR_x | PSR_f},
17677 {"sxc", PSR_s | PSR_x | PSR_c},
17678 {"scf", PSR_s | PSR_c | PSR_f},
17679 {"scx", PSR_s | PSR_c | PSR_x},
17680 {"xfs", PSR_x | PSR_f | PSR_s},
17681 {"xfc", PSR_x | PSR_f | PSR_c},
17682 {"xsf", PSR_x | PSR_s | PSR_f},
17683 {"xsc", PSR_x | PSR_s | PSR_c},
17684 {"xcf", PSR_x | PSR_c | PSR_f},
17685 {"xcs", PSR_x | PSR_c | PSR_s},
17686 {"cfs", PSR_c | PSR_f | PSR_s},
17687 {"cfx", PSR_c | PSR_f | PSR_x},
17688 {"csf", PSR_c | PSR_s | PSR_f},
17689 {"csx", PSR_c | PSR_s | PSR_x},
17690 {"cxf", PSR_c | PSR_x | PSR_f},
17691 {"cxs", PSR_c | PSR_x | PSR_s},
17692 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
17693 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
17694 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
17695 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
17696 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
17697 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
17698 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
17699 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
17700 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
17701 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
17702 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
17703 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
17704 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
17705 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
17706 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
17707 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
17708 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
17709 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
17710 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
17711 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
17712 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
17713 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
17714 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
17715 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
17716};
17717
62b3e311
PB
17718/* Table of V7M psr names. */
17719static const struct asm_psr v7m_psrs[] =
17720{
2b744c99
PB
17721 {"apsr", 0 }, {"APSR", 0 },
17722 {"iapsr", 1 }, {"IAPSR", 1 },
17723 {"eapsr", 2 }, {"EAPSR", 2 },
17724 {"psr", 3 }, {"PSR", 3 },
17725 {"xpsr", 3 }, {"XPSR", 3 }, {"xPSR", 3 },
17726 {"ipsr", 5 }, {"IPSR", 5 },
17727 {"epsr", 6 }, {"EPSR", 6 },
17728 {"iepsr", 7 }, {"IEPSR", 7 },
17729 {"msp", 8 }, {"MSP", 8 },
17730 {"psp", 9 }, {"PSP", 9 },
17731 {"primask", 16}, {"PRIMASK", 16},
17732 {"basepri", 17}, {"BASEPRI", 17},
00bbc0bd
NC
17733 {"basepri_max", 18}, {"BASEPRI_MAX", 18},
17734 {"basepri_max", 18}, {"BASEPRI_MASK", 18}, /* Typo, preserved for backwards compatibility. */
2b744c99
PB
17735 {"faultmask", 19}, {"FAULTMASK", 19},
17736 {"control", 20}, {"CONTROL", 20}
62b3e311
PB
17737};
17738
c19d1205
ZW
17739/* Table of all shift-in-operand names. */
17740static const struct asm_shift_name shift_names [] =
b99bd4ef 17741{
c19d1205
ZW
17742 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
17743 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
17744 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
17745 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
17746 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
17747 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
17748};
b99bd4ef 17749
c19d1205
ZW
17750/* Table of all explicit relocation names. */
17751#ifdef OBJ_ELF
17752static struct reloc_entry reloc_names[] =
17753{
17754 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
17755 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
17756 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
17757 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
17758 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
17759 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
17760 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
17761 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
17762 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
17763 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
b43420e6 17764 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
0855e32b
NS
17765 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
17766 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
477330fc 17767 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
0855e32b 17768 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
477330fc 17769 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
0855e32b 17770 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
477330fc 17771 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ}
c19d1205
ZW
17772};
17773#endif
b99bd4ef 17774
c19d1205
ZW
17775/* Table of all conditional affixes. 0xF is not defined as a condition code. */
17776static const struct asm_cond conds[] =
17777{
17778 {"eq", 0x0},
17779 {"ne", 0x1},
17780 {"cs", 0x2}, {"hs", 0x2},
17781 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
17782 {"mi", 0x4},
17783 {"pl", 0x5},
17784 {"vs", 0x6},
17785 {"vc", 0x7},
17786 {"hi", 0x8},
17787 {"ls", 0x9},
17788 {"ge", 0xa},
17789 {"lt", 0xb},
17790 {"gt", 0xc},
17791 {"le", 0xd},
17792 {"al", 0xe}
17793};
bfae80f2 17794
e797f7e0
MGD
17795#define UL_BARRIER(L,U,CODE,FEAT) \
17796 { L, CODE, ARM_FEATURE (FEAT, 0) }, \
17797 { U, CODE, ARM_FEATURE (FEAT, 0) }
17798
62b3e311
PB
17799static struct asm_barrier_opt barrier_opt_names[] =
17800{
e797f7e0
MGD
17801 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
17802 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
17803 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
17804 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
17805 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
17806 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
17807 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
17808 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
17809 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
17810 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
17811 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
17812 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
17813 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
17814 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
17815 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
17816 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
62b3e311
PB
17817};
17818
e797f7e0
MGD
17819#undef UL_BARRIER
17820
c19d1205
ZW
17821/* Table of ARM-format instructions. */
17822
17823/* Macros for gluing together operand strings. N.B. In all cases
17824 other than OPS0, the trailing OP_stop comes from default
17825 zero-initialization of the unspecified elements of the array. */
17826#define OPS0() { OP_stop, }
17827#define OPS1(a) { OP_##a, }
17828#define OPS2(a,b) { OP_##a,OP_##b, }
17829#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
17830#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
17831#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
17832#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
17833
5be8be5d
DG
17834/* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
17835 This is useful when mixing operands for ARM and THUMB, i.e. using the
17836 MIX_ARM_THUMB_OPERANDS macro.
17837 In order to use these macros, prefix the number of operands with _
17838 e.g. _3. */
17839#define OPS_1(a) { a, }
17840#define OPS_2(a,b) { a,b, }
17841#define OPS_3(a,b,c) { a,b,c, }
17842#define OPS_4(a,b,c,d) { a,b,c,d, }
17843#define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
17844#define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
17845
c19d1205
ZW
17846/* These macros abstract out the exact format of the mnemonic table and
17847 save some repeated characters. */
17848
17849/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
17850#define TxCE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17851 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 17852 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17853
17854/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
17855 a T_MNEM_xyz enumerator. */
17856#define TCE(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17857 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17858#define tCE(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17859 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
17860
17861/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
17862 infix after the third character. */
17863#define TxC3(mnem, op, top, nops, ops, ae, te) \
21d799b5 17864 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 17865 THUMB_VARIANT, do_##ae, do_##te }
088fa78e 17866#define TxC3w(mnem, op, top, nops, ops, ae, te) \
21d799b5 17867 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
088fa78e 17868 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 17869#define TC3(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17870 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e 17871#define TC3w(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17872 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17873#define tC3(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17874 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
088fa78e 17875#define tC3w(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17876 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205 17877
c19d1205 17878/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
17879 field is still 0xE. Many of the Thumb variants can be executed
17880 conditionally, so this is checked separately. */
c19d1205 17881#define TUE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17882 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17883 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 17884
dd5181d5
KT
17885/* Same as TUE but the encoding function for ARM and Thumb modes is the same.
17886 Used by mnemonics that have very minimal differences in the encoding for
17887 ARM and Thumb variants and can be handled in a common function. */
17888#define TUEc(mnem, op, top, nops, ops, en) \
17889 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
17890 THUMB_VARIANT, do_##en, do_##en }
17891
c19d1205
ZW
17892/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
17893 condition code field. */
17894#define TUF(mnem, op, top, nops, ops, ae, te) \
21d799b5 17895 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17896 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17897
17898/* ARM-only variants of all the above. */
6a86118a 17899#define CE(mnem, op, nops, ops, ae) \
21d799b5 17900 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
6a86118a
NC
17901
17902#define C3(mnem, op, nops, ops, ae) \
17903 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17904
e3cb604e
PB
17905/* Legacy mnemonics that always have conditional infix after the third
17906 character. */
17907#define CL(mnem, op, nops, ops, ae) \
21d799b5 17908 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17909 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17910
8f06b2d8
PB
17911/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
17912#define cCE(mnem, op, nops, ops, ae) \
21d799b5 17913 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17914
e3cb604e
PB
17915/* Legacy coprocessor instructions where conditional infix and conditional
17916 suffix are ambiguous. For consistency this includes all FPA instructions,
17917 not just the potentially ambiguous ones. */
17918#define cCL(mnem, op, nops, ops, ae) \
21d799b5 17919 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17920 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
17921
17922/* Coprocessor, takes either a suffix or a position-3 infix
17923 (for an FPA corner case). */
17924#define C3E(mnem, op, nops, ops, ae) \
21d799b5 17925 { mnem, OPS##nops ops, OT_csuf_or_in3, \
e3cb604e 17926 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17927
6a86118a 17928#define xCM_(m1, m2, m3, op, nops, ops, ae) \
21d799b5
NC
17929 { m1 #m2 m3, OPS##nops ops, \
17930 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
6a86118a
NC
17931 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17932
17933#define CM(m1, m2, op, nops, ops, ae) \
e07e6e58
NC
17934 xCM_ (m1, , m2, op, nops, ops, ae), \
17935 xCM_ (m1, eq, m2, op, nops, ops, ae), \
17936 xCM_ (m1, ne, m2, op, nops, ops, ae), \
17937 xCM_ (m1, cs, m2, op, nops, ops, ae), \
17938 xCM_ (m1, hs, m2, op, nops, ops, ae), \
17939 xCM_ (m1, cc, m2, op, nops, ops, ae), \
17940 xCM_ (m1, ul, m2, op, nops, ops, ae), \
17941 xCM_ (m1, lo, m2, op, nops, ops, ae), \
17942 xCM_ (m1, mi, m2, op, nops, ops, ae), \
17943 xCM_ (m1, pl, m2, op, nops, ops, ae), \
17944 xCM_ (m1, vs, m2, op, nops, ops, ae), \
17945 xCM_ (m1, vc, m2, op, nops, ops, ae), \
17946 xCM_ (m1, hi, m2, op, nops, ops, ae), \
17947 xCM_ (m1, ls, m2, op, nops, ops, ae), \
17948 xCM_ (m1, ge, m2, op, nops, ops, ae), \
17949 xCM_ (m1, lt, m2, op, nops, ops, ae), \
17950 xCM_ (m1, gt, m2, op, nops, ops, ae), \
17951 xCM_ (m1, le, m2, op, nops, ops, ae), \
17952 xCM_ (m1, al, m2, op, nops, ops, ae)
6a86118a
NC
17953
17954#define UE(mnem, op, nops, ops, ae) \
17955 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17956
17957#define UF(mnem, op, nops, ops, ae) \
17958 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17959
5287ad62
JB
17960/* Neon data-processing. ARM versions are unconditional with cond=0xf.
17961 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
17962 use the same encoding function for each. */
17963#define NUF(mnem, op, nops, ops, enc) \
17964 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
17965 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17966
17967/* Neon data processing, version which indirects through neon_enc_tab for
17968 the various overloaded versions of opcodes. */
17969#define nUF(mnem, op, nops, ops, enc) \
21d799b5 17970 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17971 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17972
17973/* Neon insn with conditional suffix for the ARM version, non-overloaded
17974 version. */
037e8744
JB
17975#define NCE_tag(mnem, op, nops, ops, enc, tag) \
17976 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
17977 THUMB_VARIANT, do_##enc, do_##enc }
17978
037e8744 17979#define NCE(mnem, op, nops, ops, enc) \
e07e6e58 17980 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17981
17982#define NCEF(mnem, op, nops, ops, enc) \
e07e6e58 17983 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17984
5287ad62 17985/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744 17986#define nCE_tag(mnem, op, nops, ops, enc, tag) \
21d799b5 17987 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17988 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17989
037e8744 17990#define nCE(mnem, op, nops, ops, enc) \
e07e6e58 17991 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17992
17993#define nCEF(mnem, op, nops, ops, enc) \
e07e6e58 17994 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17995
c19d1205
ZW
17996#define do_0 0
17997
c19d1205 17998static const struct asm_opcode insns[] =
bfae80f2 17999{
74db7efb
NC
18000#define ARM_VARIANT & arm_ext_v1 /* Core ARM Instructions. */
18001#define THUMB_VARIANT & arm_ext_v4t
21d799b5
NC
18002 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
18003 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
18004 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
18005 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
18006 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
18007 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
18008 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
18009 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
18010 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
18011 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
18012 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
18013 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
18014 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
18015 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
18016 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
18017 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
c19d1205
ZW
18018
18019 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
18020 for setting PSR flag bits. They are obsolete in V6 and do not
18021 have Thumb equivalents. */
21d799b5
NC
18022 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
18023 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
18024 CL("tstp", 110f000, 2, (RR, SH), cmp),
18025 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
18026 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
18027 CL("cmpp", 150f000, 2, (RR, SH), cmp),
18028 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
18029 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
18030 CL("cmnp", 170f000, 2, (RR, SH), cmp),
18031
18032 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
18033 tC3("movs", 1b00000, _movs, 2, (RR, SH), mov, t_mov_cmp),
18034 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
18035 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
18036
18037 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
5be8be5d
DG
18038 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
18039 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
18040 OP_RRnpc),
18041 OP_ADDRGLDR),ldst, t_ldst),
18042 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
21d799b5
NC
18043
18044 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18045 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18046 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18047 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18048 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18049 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18050
18051 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
18052 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
18053 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
18054 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 18055
c19d1205 18056 /* Pseudo ops. */
21d799b5 18057 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac 18058 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
21d799b5 18059 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
74db7efb 18060 tCE("udf", 7f000f0, _udf, 1, (oIffffb), bkpt, t_udf),
c19d1205
ZW
18061
18062 /* Thumb-compatibility pseudo ops. */
21d799b5
NC
18063 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
18064 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
18065 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
18066 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
18067 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
18068 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
18069 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
18070 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
18071 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
18072 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
18073 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
18074 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
c19d1205 18075
16a4cf17 18076 /* These may simplify to neg. */
21d799b5
NC
18077 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
18078 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
16a4cf17 18079
c921be7d
NC
18080#undef THUMB_VARIANT
18081#define THUMB_VARIANT & arm_ext_v6
18082
21d799b5 18083 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
18084
18085 /* V1 instructions with no Thumb analogue prior to V6T2. */
c921be7d
NC
18086#undef THUMB_VARIANT
18087#define THUMB_VARIANT & arm_ext_v6t2
18088
21d799b5
NC
18089 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
18090 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
18091 CL("teqp", 130f000, 2, (RR, SH), cmp),
c19d1205 18092
5be8be5d
DG
18093 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
18094 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
18095 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
18096 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
c19d1205 18097
21d799b5
NC
18098 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18099 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 18100
21d799b5
NC
18101 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18102 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
18103
18104 /* V1 instructions with no Thumb analogue at all. */
21d799b5 18105 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
c19d1205
ZW
18106 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
18107
18108 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
18109 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
18110 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
18111 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
18112 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
18113 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
18114 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
18115 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
18116
c921be7d
NC
18117#undef ARM_VARIANT
18118#define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
18119#undef THUMB_VARIANT
18120#define THUMB_VARIANT & arm_ext_v4t
18121
21d799b5
NC
18122 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
18123 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
c19d1205 18124
c921be7d
NC
18125#undef THUMB_VARIANT
18126#define THUMB_VARIANT & arm_ext_v6t2
18127
21d799b5 18128 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
c19d1205
ZW
18129 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
18130
18131 /* Generic coprocessor instructions. */
21d799b5
NC
18132 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18133 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18134 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18135 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18136 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18137 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
db472d6f 18138 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18139
c921be7d
NC
18140#undef ARM_VARIANT
18141#define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
18142
21d799b5 18143 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
c19d1205
ZW
18144 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
18145
c921be7d
NC
18146#undef ARM_VARIANT
18147#define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
18148#undef THUMB_VARIANT
18149#define THUMB_VARIANT & arm_ext_msr
18150
d2cd1205
JB
18151 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
18152 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
c19d1205 18153
c921be7d
NC
18154#undef ARM_VARIANT
18155#define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
18156#undef THUMB_VARIANT
18157#define THUMB_VARIANT & arm_ext_v6t2
18158
21d799b5
NC
18159 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18160 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18161 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18162 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18163 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18164 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18165 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18166 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
c19d1205 18167
c921be7d
NC
18168#undef ARM_VARIANT
18169#define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
18170#undef THUMB_VARIANT
18171#define THUMB_VARIANT & arm_ext_v4t
18172
5be8be5d
DG
18173 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18174 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18175 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18176 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
56c0a61f
RE
18177 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18178 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
c19d1205 18179
c921be7d
NC
18180#undef ARM_VARIANT
18181#define ARM_VARIANT & arm_ext_v4t_5
18182
c19d1205
ZW
18183 /* ARM Architecture 4T. */
18184 /* Note: bx (and blx) are required on V5, even if the processor does
18185 not support Thumb. */
21d799b5 18186 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
c19d1205 18187
c921be7d
NC
18188#undef ARM_VARIANT
18189#define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
18190#undef THUMB_VARIANT
18191#define THUMB_VARIANT & arm_ext_v5t
18192
c19d1205
ZW
18193 /* Note: blx has 2 variants; the .value coded here is for
18194 BLX(2). Only this variant has conditional execution. */
21d799b5
NC
18195 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
18196 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
c19d1205 18197
c921be7d
NC
18198#undef THUMB_VARIANT
18199#define THUMB_VARIANT & arm_ext_v6t2
18200
21d799b5
NC
18201 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
18202 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18203 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18204 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18205 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18206 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18207 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
18208 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18209
c921be7d 18210#undef ARM_VARIANT
74db7efb
NC
18211#define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
18212#undef THUMB_VARIANT
18213#define THUMB_VARIANT & arm_ext_v5exp
c921be7d 18214
21d799b5
NC
18215 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18216 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18217 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18218 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18219
21d799b5
NC
18220 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18221 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18222
21d799b5
NC
18223 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18224 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18225 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18226 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
c19d1205 18227
21d799b5
NC
18228 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18229 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18230 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18231 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18232
21d799b5
NC
18233 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18234 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18235
03ee1b7f
NC
18236 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18237 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18238 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18239 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
c19d1205 18240
c921be7d 18241#undef ARM_VARIANT
74db7efb
NC
18242#define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
18243#undef THUMB_VARIANT
18244#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 18245
21d799b5 18246 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
5be8be5d
DG
18247 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
18248 ldrd, t_ldstd),
18249 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
18250 ADDRGLDRS), ldrd, t_ldstd),
c19d1205 18251
21d799b5
NC
18252 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18253 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
c19d1205 18254
c921be7d
NC
18255#undef ARM_VARIANT
18256#define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
18257
21d799b5 18258 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
c19d1205 18259
c921be7d
NC
18260#undef ARM_VARIANT
18261#define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
18262#undef THUMB_VARIANT
18263#define THUMB_VARIANT & arm_ext_v6
18264
21d799b5
NC
18265 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
18266 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
18267 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18268 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18269 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18270 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18271 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18272 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18273 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18274 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
c19d1205 18275
c921be7d
NC
18276#undef THUMB_VARIANT
18277#define THUMB_VARIANT & arm_ext_v6t2
18278
5be8be5d
DG
18279 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
18280 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
18281 strex, t_strex),
21d799b5
NC
18282 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18283 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311 18284
21d799b5
NC
18285 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
18286 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
62b3e311 18287
9e3c6df6 18288/* ARM V6 not included in V7M. */
c921be7d
NC
18289#undef THUMB_VARIANT
18290#define THUMB_VARIANT & arm_ext_v6_notm
9e3c6df6 18291 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6 18292 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
9e3c6df6
PB
18293 UF(rfeib, 9900a00, 1, (RRw), rfe),
18294 UF(rfeda, 8100a00, 1, (RRw), rfe),
18295 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18296 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6
RE
18297 UF(rfefa, 8100a00, 1, (RRw), rfe),
18298 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18299 UF(rfeed, 9900a00, 1, (RRw), rfe),
9e3c6df6 18300 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
d709e4e6
RE
18301 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
18302 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
9e3c6df6 18303 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
d709e4e6 18304 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
9e3c6df6 18305 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
d709e4e6 18306 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
9e3c6df6 18307 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
d709e4e6 18308 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
c921be7d 18309
9e3c6df6
PB
18310/* ARM V6 not included in V7M (eg. integer SIMD). */
18311#undef THUMB_VARIANT
18312#define THUMB_VARIANT & arm_ext_v6_dsp
21d799b5
NC
18313 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
18314 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
18315 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
18316 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18317 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18318 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18319 /* Old name for QASX. */
74db7efb 18320 TCE("qaddsubx",6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5 18321 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18322 /* Old name for QSAX. */
74db7efb 18323 TCE("qsubaddx",6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18324 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18325 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18326 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18327 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18328 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18329 /* Old name for SASX. */
74db7efb 18330 TCE("saddsubx",6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18331 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18332 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 18333 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18334 /* Old name for SHASX. */
21d799b5 18335 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 18336 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18337 /* Old name for SHSAX. */
21d799b5
NC
18338 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18339 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18340 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18341 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18342 /* Old name for SSAX. */
74db7efb 18343 TCE("ssubaddx",6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18344 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18345 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18346 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18347 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18348 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18349 /* Old name for UASX. */
74db7efb 18350 TCE("uaddsubx",6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18351 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18352 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 18353 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18354 /* Old name for UHASX. */
21d799b5
NC
18355 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18356 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18357 /* Old name for UHSAX. */
21d799b5
NC
18358 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18359 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18360 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18361 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18362 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 18363 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18364 /* Old name for UQASX. */
21d799b5
NC
18365 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18366 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18367 /* Old name for UQSAX. */
21d799b5
NC
18368 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18369 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18370 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18371 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18372 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18373 /* Old name for USAX. */
74db7efb 18374 TCE("usubaddx",6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5 18375 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18376 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18377 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18378 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18379 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18380 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18381 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18382 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18383 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18384 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18385 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18386 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18387 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18388 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18389 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18390 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18391 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18392 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18393 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18394 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18395 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18396 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18397 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18398 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18399 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18400 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18401 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18402 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
21d799b5
NC
18403 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
18404 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
18405 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18406 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18407 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
c19d1205 18408
c921be7d
NC
18409#undef ARM_VARIANT
18410#define ARM_VARIANT & arm_ext_v6k
18411#undef THUMB_VARIANT
18412#define THUMB_VARIANT & arm_ext_v6k
18413
21d799b5
NC
18414 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
18415 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
18416 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
18417 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
c19d1205 18418
c921be7d
NC
18419#undef THUMB_VARIANT
18420#define THUMB_VARIANT & arm_ext_v6_notm
5be8be5d
DG
18421 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
18422 ldrexd, t_ldrexd),
18423 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
18424 RRnpcb), strexd, t_strexd),
ebdca51a 18425
c921be7d
NC
18426#undef THUMB_VARIANT
18427#define THUMB_VARIANT & arm_ext_v6t2
5be8be5d
DG
18428 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
18429 rd_rn, rd_rn),
18430 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
18431 rd_rn, rd_rn),
18432 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18433 strex, t_strexbh),
5be8be5d 18434 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18435 strex, t_strexbh),
21d799b5 18436 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
c19d1205 18437
c921be7d 18438#undef ARM_VARIANT
f4c65163 18439#define ARM_VARIANT & arm_ext_sec
74db7efb 18440#undef THUMB_VARIANT
f4c65163 18441#define THUMB_VARIANT & arm_ext_sec
c921be7d 18442
21d799b5 18443 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205 18444
90ec0d68
MGD
18445#undef ARM_VARIANT
18446#define ARM_VARIANT & arm_ext_virt
18447#undef THUMB_VARIANT
18448#define THUMB_VARIANT & arm_ext_virt
18449
18450 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
18451 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
18452
c921be7d 18453#undef ARM_VARIANT
74db7efb 18454#define ARM_VARIANT & arm_ext_v6t2
f4c65163
MGD
18455#undef THUMB_VARIANT
18456#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 18457
21d799b5
NC
18458 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
18459 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
18460 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
18461 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
c19d1205 18462
21d799b5
NC
18463 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
18464 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
18465 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
18466 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205 18467
5be8be5d
DG
18468 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18469 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18470 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18471 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
c19d1205 18472
bf3eeda7 18473 /* Thumb-only instructions. */
74db7efb 18474#undef ARM_VARIANT
bf3eeda7
NS
18475#define ARM_VARIANT NULL
18476 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
18477 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
c921be7d
NC
18478
18479 /* ARM does not really have an IT instruction, so always allow it.
18480 The opcode is copied from Thumb in order to allow warnings in
18481 -mimplicit-it=[never | arm] modes. */
18482#undef ARM_VARIANT
18483#define ARM_VARIANT & arm_ext_v1
18484
21d799b5
NC
18485 TUE("it", bf08, bf08, 1, (COND), it, t_it),
18486 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
18487 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
18488 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
18489 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
18490 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
18491 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
18492 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
18493 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
18494 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
18495 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
18496 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
18497 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
18498 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
18499 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
1c444d06 18500 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
21d799b5
NC
18501 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
18502 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
c19d1205 18503
92e90b6e 18504 /* Thumb2 only instructions. */
c921be7d
NC
18505#undef ARM_VARIANT
18506#define ARM_VARIANT NULL
92e90b6e 18507
21d799b5
NC
18508 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18509 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18510 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
18511 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
18512 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
18513 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
92e90b6e 18514
eea54501
MGD
18515 /* Hardware division instructions. */
18516#undef ARM_VARIANT
18517#define ARM_VARIANT & arm_ext_adiv
c921be7d
NC
18518#undef THUMB_VARIANT
18519#define THUMB_VARIANT & arm_ext_div
18520
eea54501
MGD
18521 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
18522 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
62b3e311 18523
7e806470 18524 /* ARM V6M/V7 instructions. */
c921be7d
NC
18525#undef ARM_VARIANT
18526#define ARM_VARIANT & arm_ext_barrier
18527#undef THUMB_VARIANT
18528#define THUMB_VARIANT & arm_ext_barrier
18529
ccb84d65
JB
18530 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, barrier),
18531 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, barrier),
18532 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, barrier),
7e806470 18533
62b3e311 18534 /* ARM V7 instructions. */
c921be7d
NC
18535#undef ARM_VARIANT
18536#define ARM_VARIANT & arm_ext_v7
18537#undef THUMB_VARIANT
18538#define THUMB_VARIANT & arm_ext_v7
18539
21d799b5
NC
18540 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
18541 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
62b3e311 18542
74db7efb 18543#undef ARM_VARIANT
60e5ef9f 18544#define ARM_VARIANT & arm_ext_mp
74db7efb 18545#undef THUMB_VARIANT
60e5ef9f
MGD
18546#define THUMB_VARIANT & arm_ext_mp
18547
18548 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
18549
53c4b28b
MGD
18550 /* AArchv8 instructions. */
18551#undef ARM_VARIANT
18552#define ARM_VARIANT & arm_ext_v8
18553#undef THUMB_VARIANT
18554#define THUMB_VARIANT & arm_ext_v8
18555
18556 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
8884b720 18557 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
4b8c8c02
RE
18558 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18559 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18560 ldrexd, t_ldrexd),
4b8c8c02
RE
18561 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
18562 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18563 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
18564 stlex, t_stlex),
18565 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18566 strexd, t_strexd),
4b8c8c02
RE
18567 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
18568 stlex, t_stlex),
18569 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
18570 stlex, t_stlex),
18571 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18572 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18573 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18574 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
18575 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
18576 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
53c4b28b 18577
8884b720 18578 /* ARMv8 T32 only. */
74db7efb 18579#undef ARM_VARIANT
b79f7053
MGD
18580#define ARM_VARIANT NULL
18581 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
18582 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
18583 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
18584
33399f07
MGD
18585 /* FP for ARMv8. */
18586#undef ARM_VARIANT
74db7efb 18587#define ARM_VARIANT & fpu_vfp_ext_armv8
33399f07
MGD
18588#undef THUMB_VARIANT
18589#define THUMB_VARIANT & fpu_vfp_ext_armv8
18590
18591 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
18592 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
18593 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
18594 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
73924fbc
MGD
18595 nUF(vmaxnm, _vmaxnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
18596 nUF(vminnm, _vminnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
7e8e6784
MGD
18597 nUF(vcvta, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvta),
18598 nUF(vcvtn, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtn),
18599 nUF(vcvtp, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtp),
18600 nUF(vcvtm, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtm),
30bdf752
MGD
18601 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
18602 nCE(vrintz, _vrintr, 2, (RNSDQ, oRNSDQ), vrintz),
18603 nCE(vrintx, _vrintr, 2, (RNSDQ, oRNSDQ), vrintx),
18604 nUF(vrinta, _vrinta, 2, (RNSDQ, oRNSDQ), vrinta),
18605 nUF(vrintn, _vrinta, 2, (RNSDQ, oRNSDQ), vrintn),
18606 nUF(vrintp, _vrinta, 2, (RNSDQ, oRNSDQ), vrintp),
18607 nUF(vrintm, _vrinta, 2, (RNSDQ, oRNSDQ), vrintm),
33399f07 18608
91ff7894
MGD
18609 /* Crypto v1 extensions. */
18610#undef ARM_VARIANT
18611#define ARM_VARIANT & fpu_crypto_ext_armv8
18612#undef THUMB_VARIANT
18613#define THUMB_VARIANT & fpu_crypto_ext_armv8
18614
18615 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
18616 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
18617 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
18618 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
48adcd8e
MGD
18619 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
18620 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
18621 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
18622 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
18623 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
18624 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
18625 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
3c9017d2
MGD
18626 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
18627 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
18628 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
91ff7894 18629
dd5181d5 18630#undef ARM_VARIANT
74db7efb 18631#define ARM_VARIANT & crc_ext_armv8
dd5181d5
KT
18632#undef THUMB_VARIANT
18633#define THUMB_VARIANT & crc_ext_armv8
18634 TUEc("crc32b", 1000040, fac0f080, 3, (RR, oRR, RR), crc32b),
18635 TUEc("crc32h", 1200040, fac0f090, 3, (RR, oRR, RR), crc32h),
18636 TUEc("crc32w", 1400040, fac0f0a0, 3, (RR, oRR, RR), crc32w),
18637 TUEc("crc32cb",1000240, fad0f080, 3, (RR, oRR, RR), crc32cb),
18638 TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
18639 TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
18640
c921be7d
NC
18641#undef ARM_VARIANT
18642#define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
53c4b28b
MGD
18643#undef THUMB_VARIANT
18644#define THUMB_VARIANT NULL
c921be7d 18645
21d799b5
NC
18646 cCE("wfs", e200110, 1, (RR), rd),
18647 cCE("rfs", e300110, 1, (RR), rd),
18648 cCE("wfc", e400110, 1, (RR), rd),
18649 cCE("rfc", e500110, 1, (RR), rd),
18650
18651 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
18652 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
18653 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
18654 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
18655
18656 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
18657 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
18658 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
18659 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
18660
18661 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
18662 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
18663 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
18664 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
18665 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
18666 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
18667 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
18668 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
18669 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
18670 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
18671 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
18672 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
18673
18674 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
18675 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
18676 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
18677 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
18678 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
18679 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
18680 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
18681 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
18682 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
18683 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
18684 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
18685 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
18686
18687 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
18688 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
18689 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
18690 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
18691 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
18692 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
18693 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
18694 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
18695 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
18696 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
18697 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
18698 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
18699
18700 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
18701 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
18702 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
18703 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
18704 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
18705 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
18706 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
18707 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
18708 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
18709 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
18710 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
18711 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
18712
18713 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
18714 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
18715 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
18716 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
18717 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
18718 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
18719 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
18720 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
18721 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
18722 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
18723 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
18724 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
18725
18726 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
18727 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
18728 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
18729 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
18730 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
18731 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
18732 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
18733 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
18734 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
18735 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
18736 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
18737 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
18738
18739 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
18740 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
18741 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
18742 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
18743 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
18744 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
18745 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
18746 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
18747 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
18748 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
18749 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
18750 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
18751
18752 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
18753 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
18754 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
18755 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
18756 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
18757 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
18758 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
18759 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
18760 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
18761 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
18762 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
18763 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
18764
18765 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
18766 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
18767 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
18768 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
18769 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
18770 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
18771 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
18772 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
18773 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
18774 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
18775 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
18776 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
18777
18778 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
18779 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
18780 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
18781 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
18782 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
18783 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
18784 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
18785 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
18786 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
18787 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
18788 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
18789 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
18790
18791 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
18792 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
18793 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
18794 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
18795 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
18796 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
18797 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
18798 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
18799 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
18800 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
18801 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
18802 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
18803
18804 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
18805 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
18806 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
18807 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
18808 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
18809 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
18810 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
18811 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
18812 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
18813 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
18814 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
18815 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
18816
18817 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
18818 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
18819 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
18820 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
18821 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
18822 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
18823 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
18824 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
18825 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
18826 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
18827 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
18828 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
18829
18830 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
18831 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
18832 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
18833 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
18834 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
18835 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
18836 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
18837 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
18838 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
18839 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
18840 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
18841 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
18842
18843 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
18844 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
18845 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
18846 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
18847 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
18848 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
18849 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
18850 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
18851 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
18852 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
18853 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
18854 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
18855
18856 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
18857 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
18858 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
18859 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
18860 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
18861 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
18862 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
18863 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
18864 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
18865 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
18866 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
18867 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
18868
18869 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
18870 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
18871 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
18872 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
18873 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
18874 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18875 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18876 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18877 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
18878 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
18879 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
18880 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
18881
18882 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
18883 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
18884 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
18885 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
18886 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
18887 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18888 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18889 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18890 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
18891 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
18892 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
18893 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
18894
18895 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
18896 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
18897 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
18898 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
18899 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
18900 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18901 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18902 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18903 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
18904 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
18905 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
18906 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
18907
18908 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
18909 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
18910 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
18911 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
18912 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
18913 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18914 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18915 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18916 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
18917 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
18918 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
18919 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
18920
18921 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
18922 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
18923 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
18924 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
18925 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
18926 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18927 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18928 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18929 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
18930 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
18931 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
18932 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
18933
18934 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
18935 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
18936 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
18937 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
18938 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
18939 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18940 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18941 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18942 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
18943 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
18944 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
18945 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
18946
18947 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
18948 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
18949 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
18950 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
18951 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
18952 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18953 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18954 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18955 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
18956 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
18957 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
18958 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
18959
18960 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
18961 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
18962 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
18963 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
18964 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
18965 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18966 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18967 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18968 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
18969 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
18970 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
18971 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
18972
18973 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
18974 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
18975 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
18976 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
18977 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
18978 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18979 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18980 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18981 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
18982 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
18983 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
18984 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
18985
18986 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
18987 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
18988 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
18989 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
18990 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
18991 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18992 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18993 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18994 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
18995 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
18996 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
18997 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
18998
18999 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19000 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19001 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19002 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19003 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19004 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19005 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19006 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19007 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19008 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19009 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19010 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19011
19012 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19013 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19014 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19015 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19016 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19017 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19018 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19019 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19020 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19021 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19022 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19023 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19024
19025 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19026 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19027 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19028 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19029 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19030 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19031 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19032 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19033 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19034 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19035 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19036 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19037
19038 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
19039 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
19040 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
19041 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
19042
19043 cCL("flts", e000110, 2, (RF, RR), rn_rd),
19044 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
19045 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
19046 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
19047 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
19048 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
19049 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
19050 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
19051 cCL("flte", e080110, 2, (RF, RR), rn_rd),
19052 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
19053 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
19054 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
b99bd4ef 19055
c19d1205
ZW
19056 /* The implementation of the FIX instruction is broken on some
19057 assemblers, in that it accepts a precision specifier as well as a
19058 rounding specifier, despite the fact that this is meaningless.
19059 To be more compatible, we accept it as well, though of course it
19060 does not set any bits. */
21d799b5
NC
19061 cCE("fix", e100110, 2, (RR, RF), rd_rm),
19062 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
19063 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
19064 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
19065 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
19066 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
19067 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
19068 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
19069 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
19070 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
19071 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
19072 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
19073 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
bfae80f2 19074
c19d1205 19075 /* Instructions that were new with the real FPA, call them V2. */
c921be7d
NC
19076#undef ARM_VARIANT
19077#define ARM_VARIANT & fpu_fpa_ext_v2
19078
21d799b5
NC
19079 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19080 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19081 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19082 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19083 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19084 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205 19085
c921be7d
NC
19086#undef ARM_VARIANT
19087#define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
19088
c19d1205 19089 /* Moves and type conversions. */
21d799b5
NC
19090 cCE("fcpys", eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
19091 cCE("fmrs", e100a10, 2, (RR, RVS), vfp_reg_from_sp),
19092 cCE("fmsr", e000a10, 2, (RVS, RR), vfp_sp_from_reg),
19093 cCE("fmstat", ef1fa10, 0, (), noargs),
7465e07a
NC
19094 cCE("vmrs", ef00a10, 2, (APSR_RR, RVC), vmrs),
19095 cCE("vmsr", ee00a10, 2, (RVC, RR), vmsr),
21d799b5
NC
19096 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
19097 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
19098 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
19099 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
19100 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
19101 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
19102 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
19103 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
19104
19105 /* Memory operations. */
21d799b5
NC
19106 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
19107 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
55881a11
MGD
19108 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19109 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19110 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19111 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19112 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19113 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19114 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19115 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19116 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19117 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19118 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19119 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19120 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19121 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19122 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19123 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 19124
c19d1205 19125 /* Monadic operations. */
21d799b5
NC
19126 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
19127 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
19128 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
19129
19130 /* Dyadic operations. */
21d799b5
NC
19131 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19132 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19133 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19134 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19135 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19136 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19137 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19138 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19139 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 19140
c19d1205 19141 /* Comparisons. */
21d799b5
NC
19142 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
19143 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
19144 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
19145 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 19146
62f3b8c8
PB
19147 /* Double precision load/store are still present on single precision
19148 implementations. */
19149 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
19150 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
55881a11
MGD
19151 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19152 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19153 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19154 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19155 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19156 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19157 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19158 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
62f3b8c8 19159
c921be7d
NC
19160#undef ARM_VARIANT
19161#define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
19162
c19d1205 19163 /* Moves and type conversions. */
21d799b5
NC
19164 cCE("fcpyd", eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19165 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19166 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19167 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
19168 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
19169 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
19170 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
19171 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19172 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
19173 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19174 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19175 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19176 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205 19177
c19d1205 19178 /* Monadic operations. */
21d799b5
NC
19179 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19180 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19181 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
19182
19183 /* Dyadic operations. */
21d799b5
NC
19184 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19185 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19186 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19187 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19188 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19189 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19190 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19191 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19192 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 19193
c19d1205 19194 /* Comparisons. */
21d799b5
NC
19195 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19196 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
19197 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19198 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205 19199
c921be7d
NC
19200#undef ARM_VARIANT
19201#define ARM_VARIANT & fpu_vfp_ext_v2
19202
21d799b5
NC
19203 cCE("fmsrr", c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
19204 cCE("fmrrs", c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
19205 cCE("fmdrr", c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
19206 cCE("fmrrd", c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
5287ad62 19207
037e8744
JB
19208/* Instructions which may belong to either the Neon or VFP instruction sets.
19209 Individual encoder functions perform additional architecture checks. */
c921be7d
NC
19210#undef ARM_VARIANT
19211#define ARM_VARIANT & fpu_vfp_ext_v1xd
19212#undef THUMB_VARIANT
19213#define THUMB_VARIANT & fpu_vfp_ext_v1xd
19214
037e8744
JB
19215 /* These mnemonics are unique to VFP. */
19216 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
19217 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
21d799b5
NC
19218 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19219 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19220 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19221 nCE(vcmp, _vcmp, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
19222 nCE(vcmpe, _vcmpe, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
037e8744
JB
19223 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
19224 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
19225 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
19226
19227 /* Mnemonics shared by Neon and VFP. */
21d799b5
NC
19228 nCEF(vmul, _vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
19229 nCEF(vmla, _vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
19230 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
037e8744 19231
21d799b5
NC
19232 nCEF(vadd, _vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
19233 nCEF(vsub, _vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
037e8744
JB
19234
19235 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19236 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19237
55881a11
MGD
19238 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19239 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19240 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19241 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19242 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19243 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
4962c51a
MS
19244 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
19245 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744 19246
5f1af56b 19247 nCEF(vcvt, _vcvt, 3, (RNSDQ, RNSDQ, oI32z), neon_cvt),
e3e535bc 19248 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
c70a8987
MGD
19249 NCEF(vcvtb, eb20a40, 2, (RVSD, RVSD), neon_cvtb),
19250 NCEF(vcvtt, eb20a40, 2, (RVSD, RVSD), neon_cvtt),
f31fef98 19251
037e8744
JB
19252
19253 /* NOTE: All VMOV encoding is special-cased! */
19254 NCE(vmov, 0, 1, (VMOV), neon_mov),
19255 NCE(vmovq, 0, 1, (VMOV), neon_mov),
19256
c921be7d
NC
19257#undef THUMB_VARIANT
19258#define THUMB_VARIANT & fpu_neon_ext_v1
19259#undef ARM_VARIANT
19260#define ARM_VARIANT & fpu_neon_ext_v1
19261
5287ad62
JB
19262 /* Data processing with three registers of the same length. */
19263 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
19264 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
19265 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
19266 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19267 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19268 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19269 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19270 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19271 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19272 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
19273 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19274 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
19275 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19276 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
627907b7
JB
19277 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19278 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
19279 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19280 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
5287ad62
JB
19281 /* If not immediate, fall back to neon_dyadic_i64_su.
19282 shl_imm should accept I8 I16 I32 I64,
19283 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
21d799b5
NC
19284 nUF(vshl, _vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
19285 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
19286 nUF(vqshl, _vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
19287 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
5287ad62 19288 /* Logic ops, types optional & ignored. */
4316f0d2
DG
19289 nUF(vand, _vand, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19290 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19291 nUF(vbic, _vbic, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19292 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19293 nUF(vorr, _vorr, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19294 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19295 nUF(vorn, _vorn, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19296 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19297 nUF(veor, _veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
19298 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
5287ad62
JB
19299 /* Bitfield ops, untyped. */
19300 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19301 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19302 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19303 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19304 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19305 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19306 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32. */
21d799b5
NC
19307 nUF(vabd, _vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19308 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19309 nUF(vmax, _vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19310 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19311 nUF(vmin, _vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19312 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
5287ad62
JB
19313 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
19314 back to neon_dyadic_if_su. */
21d799b5
NC
19315 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19316 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19317 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19318 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19319 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19320 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
19321 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19322 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 19323 /* Comparison. Type I8 I16 I32 F32. */
21d799b5
NC
19324 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
19325 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
5287ad62 19326 /* As above, D registers only. */
21d799b5
NC
19327 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
19328 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
5287ad62 19329 /* Int and float variants, signedness unimportant. */
21d799b5
NC
19330 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19331 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19332 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
5287ad62 19333 /* Add/sub take types I8 I16 I32 I64 F32. */
21d799b5
NC
19334 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
19335 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
19336 /* vtst takes sizes 8, 16, 32. */
19337 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
19338 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
19339 /* VMUL takes I8 I16 I32 F32 P8. */
21d799b5 19340 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62 19341 /* VQD{R}MULH takes S16 S32. */
21d799b5
NC
19342 nUF(vqdmulh, _vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19343 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
19344 nUF(vqrdmulh, _vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19345 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
5287ad62
JB
19346 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19347 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
19348 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19349 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
92559b5b
PB
19350 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19351 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
19352 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19353 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
5287ad62
JB
19354 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19355 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19356 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19357 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19358
19359 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 19360 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
19361 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
19362
19363 /* Data processing with two registers and a shift amount. */
19364 /* Right shifts, and variants with rounding.
19365 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
19366 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19367 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19368 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19369 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19370 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19371 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19372 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19373 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19374 /* Shift and insert. Sizes accepted 8 16 32 64. */
19375 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
19376 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
19377 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
19378 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
19379 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
19380 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
19381 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
19382 /* Right shift immediate, saturating & narrowing, with rounding variants.
19383 Types accepted S16 S32 S64 U16 U32 U64. */
19384 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19385 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19386 /* As above, unsigned. Types accepted S16 S32 S64. */
19387 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19388 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19389 /* Right shift narrowing. Types accepted I16 I32 I64. */
19390 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19391 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19392 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
21d799b5 19393 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
5287ad62 19394 /* CVT with optional immediate for fixed-point variant. */
21d799b5 19395 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 19396
4316f0d2
DG
19397 nUF(vmvn, _vmvn, 2, (RNDQ, RNDQ_Ibig), neon_mvn),
19398 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
5287ad62
JB
19399
19400 /* Data processing, three registers of different lengths. */
19401 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
19402 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
19403 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
19404 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
19405 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
19406 /* If not scalar, fall back to neon_dyadic_long.
19407 Vector types as above, scalar types S16 S32 U16 U32. */
21d799b5
NC
19408 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
19409 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
5287ad62
JB
19410 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
19411 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19412 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19413 /* Dyadic, narrowing insns. Types I16 I32 I64. */
19414 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19415 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19416 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19417 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19418 /* Saturating doubling multiplies. Types S16 S32. */
21d799b5
NC
19419 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19420 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19421 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
5287ad62
JB
19422 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
19423 S16 S32 U16 U32. */
21d799b5 19424 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
5287ad62
JB
19425
19426 /* Extract. Size 8. */
3b8d421e
PB
19427 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
19428 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
5287ad62
JB
19429
19430 /* Two registers, miscellaneous. */
19431 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
19432 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
19433 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
19434 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
19435 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
19436 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
19437 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
19438 /* Vector replicate. Sizes 8 16 32. */
21d799b5
NC
19439 nCE(vdup, _vdup, 2, (RNDQ, RR_RNSC), neon_dup),
19440 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
5287ad62
JB
19441 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
19442 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
19443 /* VMOVN. Types I16 I32 I64. */
21d799b5 19444 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
5287ad62 19445 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
21d799b5 19446 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
5287ad62 19447 /* VQMOVUN. Types S16 S32 S64. */
21d799b5 19448 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
5287ad62
JB
19449 /* VZIP / VUZP. Sizes 8 16 32. */
19450 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
19451 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
19452 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
19453 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
19454 /* VQABS / VQNEG. Types S8 S16 S32. */
19455 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19456 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
19457 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19458 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
19459 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
19460 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
19461 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
19462 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
19463 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
19464 /* Reciprocal estimates. Types U32 F32. */
19465 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
19466 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
19467 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
19468 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
19469 /* VCLS. Types S8 S16 S32. */
19470 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
19471 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
19472 /* VCLZ. Types I8 I16 I32. */
19473 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
19474 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
19475 /* VCNT. Size 8. */
19476 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
19477 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
19478 /* Two address, untyped. */
19479 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
19480 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
19481 /* VTRN. Sizes 8 16 32. */
21d799b5
NC
19482 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
19483 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
5287ad62
JB
19484
19485 /* Table lookup. Size 8. */
19486 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19487 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19488
c921be7d
NC
19489#undef THUMB_VARIANT
19490#define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
19491#undef ARM_VARIANT
19492#define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
19493
5287ad62 19494 /* Neon element/structure load/store. */
21d799b5
NC
19495 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19496 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19497 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19498 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19499 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19500 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19501 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
19502 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
5287ad62 19503
c921be7d 19504#undef THUMB_VARIANT
74db7efb
NC
19505#define THUMB_VARIANT & fpu_vfp_ext_v3xd
19506#undef ARM_VARIANT
19507#define ARM_VARIANT & fpu_vfp_ext_v3xd
62f3b8c8
PB
19508 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
19509 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19510 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19511 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19512 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19513 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19514 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19515 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19516 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19517
74db7efb 19518#undef THUMB_VARIANT
c921be7d
NC
19519#define THUMB_VARIANT & fpu_vfp_ext_v3
19520#undef ARM_VARIANT
19521#define ARM_VARIANT & fpu_vfp_ext_v3
19522
21d799b5 19523 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
21d799b5 19524 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19525 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19526 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19527 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19528 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19529 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19530 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19531 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 19532
74db7efb
NC
19533#undef ARM_VARIANT
19534#define ARM_VARIANT & fpu_vfp_ext_fma
19535#undef THUMB_VARIANT
19536#define THUMB_VARIANT & fpu_vfp_ext_fma
62f3b8c8
PB
19537 /* Mnemonics shared by Neon and VFP. These are included in the
19538 VFP FMA variant; NEON and VFP FMA always includes the NEON
19539 FMA instructions. */
19540 nCEF(vfma, _vfma, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19541 nCEF(vfms, _vfms, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19542 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
19543 the v form should always be used. */
19544 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19545 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19546 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19547 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19548 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19549 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19550
5287ad62 19551#undef THUMB_VARIANT
c921be7d
NC
19552#undef ARM_VARIANT
19553#define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
19554
21d799b5
NC
19555 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19556 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19557 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19558 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19559 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19560 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19561 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
19562 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205 19563
c921be7d
NC
19564#undef ARM_VARIANT
19565#define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
19566
21d799b5
NC
19567 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
19568 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
19569 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
19570 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
19571 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
19572 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
19573 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
19574 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
19575 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
74db7efb
NC
19576 cCE("textrmub",e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19577 cCE("textrmuh",e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19578 cCE("textrmuw",e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19579 cCE("textrmsb",e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19580 cCE("textrmsh",e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19581 cCE("textrmsw",e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
21d799b5
NC
19582 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19583 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19584 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19585 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
19586 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
19587 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19588 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19589 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19590 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19591 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19592 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
74db7efb
NC
19593 cCE("tmovmskb",e100030, 2, (RR, RIWR), rd_rn),
19594 cCE("tmovmskh",e500030, 2, (RR, RIWR), rd_rn),
19595 cCE("tmovmskw",e900030, 2, (RR, RIWR), rd_rn),
21d799b5
NC
19596 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
19597 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
19598 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
19599 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
19600 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
19601 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
19602 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
19603 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
19604 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19605 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19606 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19607 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19608 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19609 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19610 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19611 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19612 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19613 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
74db7efb
NC
19614 cCE("walignr0",e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19615 cCE("walignr1",e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19616 cCE("walignr2",ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19617 cCE("walignr3",eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
19618 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19619 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19620 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19621 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19622 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19623 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19624 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19625 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19626 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
74db7efb
NC
19627 cCE("wcmpgtub",e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19628 cCE("wcmpgtuh",e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19629 cCE("wcmpgtuw",e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19630 cCE("wcmpgtsb",e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19631 cCE("wcmpgtsh",e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19632 cCE("wcmpgtsw",eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
19633 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19634 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19635 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
19636 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
19637 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19638 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19639 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19640 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19641 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19642 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19643 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19644 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19645 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19646 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19647 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19648 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19649 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19650 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19651 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19652 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19653 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19654 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19655 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
19656 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19657 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19658 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19659 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19660 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
74db7efb
NC
19661 cCE("wpackhss",e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19662 cCE("wpackhus",e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19663 cCE("wpackwss",eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19664 cCE("wpackwus",e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19665 cCE("wpackdss",ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19666 cCE("wpackdus",ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
19667 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19668 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19669 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19670 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19671 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19672 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19673 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19674 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19675 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19676 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19677 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
19678 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19679 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19680 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19681 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19682 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19683 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19684 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19685 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19686 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19687 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19688 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19689 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19690 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19691 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19692 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19693 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19694 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19695 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19696 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19697 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19698 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
19699 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
19700 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19701 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19702 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19703 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19704 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19705 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19706 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19707 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19708 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19709 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
19710 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
19711 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
19712 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
19713 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
19714 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
19715 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19716 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19717 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19718 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
19719 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
19720 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
19721 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
19722 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
19723 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
19724 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19725 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19726 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19727 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19728 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205 19729
c921be7d
NC
19730#undef ARM_VARIANT
19731#define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
19732
21d799b5
NC
19733 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
19734 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
19735 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
19736 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
19737 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
19738 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
19739 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19740 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19741 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19742 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19743 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19744 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19745 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19746 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19747 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19748 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19749 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19750 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19751 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19752 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19753 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
19754 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19755 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19756 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19757 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19758 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19759 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19760 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19761 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19762 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19763 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19764 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19765 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19766 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19767 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19768 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19769 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19770 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19771 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19772 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19773 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19774 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19775 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19776 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19777 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19778 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19779 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19780 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19781 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19782 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19783 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19784 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19785 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19786 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19787 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19788 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19789 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
2d447fca 19790
c921be7d
NC
19791#undef ARM_VARIANT
19792#define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
19793
21d799b5
NC
19794 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
19795 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
19796 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
19797 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
19798 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
19799 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
19800 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
19801 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
19802 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
19803 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
19804 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
19805 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
19806 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
19807 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
74db7efb
NC
19808 cCE("cfmv64lr",e000510, 2, (RMDX, RR), rn_rd),
19809 cCE("cfmvr64l",e100510, 2, (RR, RMDX), rd_rn),
19810 cCE("cfmv64hr",e000530, 2, (RMDX, RR), rn_rd),
19811 cCE("cfmvr64h",e100530, 2, (RR, RMDX), rd_rn),
19812 cCE("cfmval32",e200440, 2, (RMAX, RMFX), rd_rn),
19813 cCE("cfmv32al",e100440, 2, (RMFX, RMAX), rd_rn),
19814 cCE("cfmvam32",e200460, 2, (RMAX, RMFX), rd_rn),
19815 cCE("cfmv32am",e100460, 2, (RMFX, RMAX), rd_rn),
19816 cCE("cfmvah32",e200480, 2, (RMAX, RMFX), rd_rn),
19817 cCE("cfmv32ah",e100480, 2, (RMFX, RMAX), rd_rn),
21d799b5
NC
19818 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
19819 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
19820 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
19821 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
74db7efb
NC
19822 cCE("cfmvsc32",e2004e0, 2, (RMDS, RMDX), mav_dspsc),
19823 cCE("cfmv32sc",e1004e0, 2, (RMDX, RMDS), rd),
21d799b5
NC
19824 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
19825 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
19826 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
19827 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
74db7efb
NC
19828 cCE("cfcvt32s",e000480, 2, (RMF, RMFX), rd_rn),
19829 cCE("cfcvt32d",e0004a0, 2, (RMD, RMFX), rd_rn),
19830 cCE("cfcvt64s",e0004c0, 2, (RMF, RMDX), rd_rn),
19831 cCE("cfcvt64d",e0004e0, 2, (RMD, RMDX), rd_rn),
19832 cCE("cfcvts32",e100580, 2, (RMFX, RMF), rd_rn),
19833 cCE("cfcvtd32",e1005a0, 2, (RMFX, RMD), rd_rn),
21d799b5
NC
19834 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
19835 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
74db7efb
NC
19836 cCE("cfrshl32",e000550, 3, (RMFX, RMFX, RR), mav_triple),
19837 cCE("cfrshl64",e000570, 3, (RMDX, RMDX, RR), mav_triple),
21d799b5
NC
19838 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
19839 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
19840 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
19841 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
19842 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
19843 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
19844 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
19845 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
19846 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
19847 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
19848 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
19849 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
19850 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
19851 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
19852 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
19853 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
19854 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
19855 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
19856 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
19857 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
19858 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19859 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19860 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19861 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19862 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19863 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19864 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19865 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
74db7efb
NC
19866 cCE("cfmadd32",e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
19867 cCE("cfmsub32",e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
21d799b5
NC
19868 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
19869 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
c19d1205
ZW
19870};
19871#undef ARM_VARIANT
19872#undef THUMB_VARIANT
19873#undef TCE
c19d1205
ZW
19874#undef TUE
19875#undef TUF
19876#undef TCC
8f06b2d8 19877#undef cCE
e3cb604e
PB
19878#undef cCL
19879#undef C3E
c19d1205
ZW
19880#undef CE
19881#undef CM
19882#undef UE
19883#undef UF
19884#undef UT
5287ad62
JB
19885#undef NUF
19886#undef nUF
19887#undef NCE
19888#undef nCE
c19d1205
ZW
19889#undef OPS0
19890#undef OPS1
19891#undef OPS2
19892#undef OPS3
19893#undef OPS4
19894#undef OPS5
19895#undef OPS6
19896#undef do_0
19897\f
19898/* MD interface: bits in the object file. */
bfae80f2 19899
c19d1205
ZW
19900/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
19901 for use in the a.out file, and stores them in the array pointed to by buf.
19902 This knows about the endian-ness of the target machine and does
19903 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
19904 2 (short) and 4 (long) Floating numbers are put out as a series of
19905 LITTLENUMS (shorts, here at least). */
b99bd4ef 19906
c19d1205
ZW
19907void
19908md_number_to_chars (char * buf, valueT val, int n)
19909{
19910 if (target_big_endian)
19911 number_to_chars_bigendian (buf, val, n);
19912 else
19913 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
19914}
19915
c19d1205
ZW
19916static valueT
19917md_chars_to_number (char * buf, int n)
bfae80f2 19918{
c19d1205
ZW
19919 valueT result = 0;
19920 unsigned char * where = (unsigned char *) buf;
bfae80f2 19921
c19d1205 19922 if (target_big_endian)
b99bd4ef 19923 {
c19d1205
ZW
19924 while (n--)
19925 {
19926 result <<= 8;
19927 result |= (*where++ & 255);
19928 }
b99bd4ef 19929 }
c19d1205 19930 else
b99bd4ef 19931 {
c19d1205
ZW
19932 while (n--)
19933 {
19934 result <<= 8;
19935 result |= (where[n] & 255);
19936 }
bfae80f2 19937 }
b99bd4ef 19938
c19d1205 19939 return result;
bfae80f2 19940}
b99bd4ef 19941
c19d1205 19942/* MD interface: Sections. */
b99bd4ef 19943
fa94de6b
RM
19944/* Calculate the maximum variable size (i.e., excluding fr_fix)
19945 that an rs_machine_dependent frag may reach. */
19946
19947unsigned int
19948arm_frag_max_var (fragS *fragp)
19949{
19950 /* We only use rs_machine_dependent for variable-size Thumb instructions,
19951 which are either THUMB_SIZE (2) or INSN_SIZE (4).
19952
19953 Note that we generate relaxable instructions even for cases that don't
19954 really need it, like an immediate that's a trivial constant. So we're
19955 overestimating the instruction size for some of those cases. Rather
19956 than putting more intelligence here, it would probably be better to
19957 avoid generating a relaxation frag in the first place when it can be
19958 determined up front that a short instruction will suffice. */
19959
19960 gas_assert (fragp->fr_type == rs_machine_dependent);
19961 return INSN_SIZE;
19962}
19963
0110f2b8
PB
19964/* Estimate the size of a frag before relaxing. Assume everything fits in
19965 2 bytes. */
19966
c19d1205 19967int
0110f2b8 19968md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
19969 segT segtype ATTRIBUTE_UNUSED)
19970{
0110f2b8
PB
19971 fragp->fr_var = 2;
19972 return 2;
19973}
19974
19975/* Convert a machine dependent frag. */
19976
19977void
19978md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
19979{
19980 unsigned long insn;
19981 unsigned long old_op;
19982 char *buf;
19983 expressionS exp;
19984 fixS *fixp;
19985 int reloc_type;
19986 int pc_rel;
19987 int opcode;
19988
19989 buf = fragp->fr_literal + fragp->fr_fix;
19990
19991 old_op = bfd_get_16(abfd, buf);
5f4273c7
NC
19992 if (fragp->fr_symbol)
19993 {
0110f2b8
PB
19994 exp.X_op = O_symbol;
19995 exp.X_add_symbol = fragp->fr_symbol;
5f4273c7
NC
19996 }
19997 else
19998 {
0110f2b8 19999 exp.X_op = O_constant;
5f4273c7 20000 }
0110f2b8
PB
20001 exp.X_add_number = fragp->fr_offset;
20002 opcode = fragp->fr_subtype;
20003 switch (opcode)
20004 {
20005 case T_MNEM_ldr_pc:
20006 case T_MNEM_ldr_pc2:
20007 case T_MNEM_ldr_sp:
20008 case T_MNEM_str_sp:
20009 case T_MNEM_ldr:
20010 case T_MNEM_ldrb:
20011 case T_MNEM_ldrh:
20012 case T_MNEM_str:
20013 case T_MNEM_strb:
20014 case T_MNEM_strh:
20015 if (fragp->fr_var == 4)
20016 {
5f4273c7 20017 insn = THUMB_OP32 (opcode);
0110f2b8
PB
20018 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
20019 {
20020 insn |= (old_op & 0x700) << 4;
20021 }
20022 else
20023 {
20024 insn |= (old_op & 7) << 12;
20025 insn |= (old_op & 0x38) << 13;
20026 }
20027 insn |= 0x00000c00;
20028 put_thumb32_insn (buf, insn);
20029 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
20030 }
20031 else
20032 {
20033 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
20034 }
20035 pc_rel = (opcode == T_MNEM_ldr_pc2);
20036 break;
20037 case T_MNEM_adr:
20038 if (fragp->fr_var == 4)
20039 {
20040 insn = THUMB_OP32 (opcode);
20041 insn |= (old_op & 0xf0) << 4;
20042 put_thumb32_insn (buf, insn);
20043 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
20044 }
20045 else
20046 {
20047 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20048 exp.X_add_number -= 4;
20049 }
20050 pc_rel = 1;
20051 break;
20052 case T_MNEM_mov:
20053 case T_MNEM_movs:
20054 case T_MNEM_cmp:
20055 case T_MNEM_cmn:
20056 if (fragp->fr_var == 4)
20057 {
20058 int r0off = (opcode == T_MNEM_mov
20059 || opcode == T_MNEM_movs) ? 0 : 8;
20060 insn = THUMB_OP32 (opcode);
20061 insn = (insn & 0xe1ffffff) | 0x10000000;
20062 insn |= (old_op & 0x700) << r0off;
20063 put_thumb32_insn (buf, insn);
20064 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
20065 }
20066 else
20067 {
20068 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
20069 }
20070 pc_rel = 0;
20071 break;
20072 case T_MNEM_b:
20073 if (fragp->fr_var == 4)
20074 {
20075 insn = THUMB_OP32(opcode);
20076 put_thumb32_insn (buf, insn);
20077 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
20078 }
20079 else
20080 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
20081 pc_rel = 1;
20082 break;
20083 case T_MNEM_bcond:
20084 if (fragp->fr_var == 4)
20085 {
20086 insn = THUMB_OP32(opcode);
20087 insn |= (old_op & 0xf00) << 14;
20088 put_thumb32_insn (buf, insn);
20089 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
20090 }
20091 else
20092 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
20093 pc_rel = 1;
20094 break;
20095 case T_MNEM_add_sp:
20096 case T_MNEM_add_pc:
20097 case T_MNEM_inc_sp:
20098 case T_MNEM_dec_sp:
20099 if (fragp->fr_var == 4)
20100 {
20101 /* ??? Choose between add and addw. */
20102 insn = THUMB_OP32 (opcode);
20103 insn |= (old_op & 0xf0) << 4;
20104 put_thumb32_insn (buf, insn);
16805f35
PB
20105 if (opcode == T_MNEM_add_pc)
20106 reloc_type = BFD_RELOC_ARM_T32_IMM12;
20107 else
20108 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
20109 }
20110 else
20111 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20112 pc_rel = 0;
20113 break;
20114
20115 case T_MNEM_addi:
20116 case T_MNEM_addis:
20117 case T_MNEM_subi:
20118 case T_MNEM_subis:
20119 if (fragp->fr_var == 4)
20120 {
20121 insn = THUMB_OP32 (opcode);
20122 insn |= (old_op & 0xf0) << 4;
20123 insn |= (old_op & 0xf) << 16;
20124 put_thumb32_insn (buf, insn);
16805f35
PB
20125 if (insn & (1 << 20))
20126 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
20127 else
20128 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
20129 }
20130 else
20131 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20132 pc_rel = 0;
20133 break;
20134 default:
5f4273c7 20135 abort ();
0110f2b8
PB
20136 }
20137 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
21d799b5 20138 (enum bfd_reloc_code_real) reloc_type);
0110f2b8
PB
20139 fixp->fx_file = fragp->fr_file;
20140 fixp->fx_line = fragp->fr_line;
20141 fragp->fr_fix += fragp->fr_var;
20142}
20143
20144/* Return the size of a relaxable immediate operand instruction.
20145 SHIFT and SIZE specify the form of the allowable immediate. */
20146static int
20147relax_immediate (fragS *fragp, int size, int shift)
20148{
20149 offsetT offset;
20150 offsetT mask;
20151 offsetT low;
20152
20153 /* ??? Should be able to do better than this. */
20154 if (fragp->fr_symbol)
20155 return 4;
20156
20157 low = (1 << shift) - 1;
20158 mask = (1 << (shift + size)) - (1 << shift);
20159 offset = fragp->fr_offset;
20160 /* Force misaligned offsets to 32-bit variant. */
20161 if (offset & low)
5e77afaa 20162 return 4;
0110f2b8
PB
20163 if (offset & ~mask)
20164 return 4;
20165 return 2;
20166}
20167
5e77afaa
PB
20168/* Get the address of a symbol during relaxation. */
20169static addressT
5f4273c7 20170relaxed_symbol_addr (fragS *fragp, long stretch)
5e77afaa
PB
20171{
20172 fragS *sym_frag;
20173 addressT addr;
20174 symbolS *sym;
20175
20176 sym = fragp->fr_symbol;
20177 sym_frag = symbol_get_frag (sym);
20178 know (S_GET_SEGMENT (sym) != absolute_section
20179 || sym_frag == &zero_address_frag);
20180 addr = S_GET_VALUE (sym) + fragp->fr_offset;
20181
20182 /* If frag has yet to be reached on this pass, assume it will
20183 move by STRETCH just as we did. If this is not so, it will
20184 be because some frag between grows, and that will force
20185 another pass. */
20186
20187 if (stretch != 0
20188 && sym_frag->relax_marker != fragp->relax_marker)
4396b686
PB
20189 {
20190 fragS *f;
20191
20192 /* Adjust stretch for any alignment frag. Note that if have
20193 been expanding the earlier code, the symbol may be
20194 defined in what appears to be an earlier frag. FIXME:
20195 This doesn't handle the fr_subtype field, which specifies
20196 a maximum number of bytes to skip when doing an
20197 alignment. */
20198 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
20199 {
20200 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
20201 {
20202 if (stretch < 0)
20203 stretch = - ((- stretch)
20204 & ~ ((1 << (int) f->fr_offset) - 1));
20205 else
20206 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
20207 if (stretch == 0)
20208 break;
20209 }
20210 }
20211 if (f != NULL)
20212 addr += stretch;
20213 }
5e77afaa
PB
20214
20215 return addr;
20216}
20217
0110f2b8
PB
20218/* Return the size of a relaxable adr pseudo-instruction or PC-relative
20219 load. */
20220static int
5e77afaa 20221relax_adr (fragS *fragp, asection *sec, long stretch)
0110f2b8
PB
20222{
20223 addressT addr;
20224 offsetT val;
20225
20226 /* Assume worst case for symbols not known to be in the same section. */
974da60d
NC
20227 if (fragp->fr_symbol == NULL
20228 || !S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20229 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20230 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20231 return 4;
20232
5f4273c7 20233 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20234 addr = fragp->fr_address + fragp->fr_fix;
20235 addr = (addr + 4) & ~3;
5e77afaa 20236 /* Force misaligned targets to 32-bit variant. */
0110f2b8 20237 if (val & 3)
5e77afaa 20238 return 4;
0110f2b8
PB
20239 val -= addr;
20240 if (val < 0 || val > 1020)
20241 return 4;
20242 return 2;
20243}
20244
20245/* Return the size of a relaxable add/sub immediate instruction. */
20246static int
20247relax_addsub (fragS *fragp, asection *sec)
20248{
20249 char *buf;
20250 int op;
20251
20252 buf = fragp->fr_literal + fragp->fr_fix;
20253 op = bfd_get_16(sec->owner, buf);
20254 if ((op & 0xf) == ((op >> 4) & 0xf))
20255 return relax_immediate (fragp, 8, 0);
20256 else
20257 return relax_immediate (fragp, 3, 0);
20258}
20259
e83a675f
RE
20260/* Return TRUE iff the definition of symbol S could be pre-empted
20261 (overridden) at link or load time. */
20262static bfd_boolean
20263symbol_preemptible (symbolS *s)
20264{
20265 /* Weak symbols can always be pre-empted. */
20266 if (S_IS_WEAK (s))
20267 return TRUE;
20268
20269 /* Non-global symbols cannot be pre-empted. */
20270 if (! S_IS_EXTERNAL (s))
20271 return FALSE;
20272
20273#ifdef OBJ_ELF
20274 /* In ELF, a global symbol can be marked protected, or private. In that
20275 case it can't be pre-empted (other definitions in the same link unit
20276 would violate the ODR). */
20277 if (ELF_ST_VISIBILITY (S_GET_OTHER (s)) > STV_DEFAULT)
20278 return FALSE;
20279#endif
20280
20281 /* Other global symbols might be pre-empted. */
20282 return TRUE;
20283}
0110f2b8
PB
20284
20285/* Return the size of a relaxable branch instruction. BITS is the
20286 size of the offset field in the narrow instruction. */
20287
20288static int
5e77afaa 20289relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
0110f2b8
PB
20290{
20291 addressT addr;
20292 offsetT val;
20293 offsetT limit;
20294
20295 /* Assume worst case for symbols not known to be in the same section. */
5f4273c7 20296 if (!S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20297 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20298 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20299 return 4;
20300
267bf995 20301#ifdef OBJ_ELF
e83a675f 20302 /* A branch to a function in ARM state will require interworking. */
267bf995
RR
20303 if (S_IS_DEFINED (fragp->fr_symbol)
20304 && ARM_IS_FUNC (fragp->fr_symbol))
20305 return 4;
e83a675f 20306#endif
0d9b4b55 20307
e83a675f 20308 if (symbol_preemptible (fragp->fr_symbol))
0d9b4b55 20309 return 4;
267bf995 20310
5f4273c7 20311 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20312 addr = fragp->fr_address + fragp->fr_fix + 4;
20313 val -= addr;
20314
20315 /* Offset is a signed value *2 */
20316 limit = 1 << bits;
20317 if (val >= limit || val < -limit)
20318 return 4;
20319 return 2;
20320}
20321
20322
20323/* Relax a machine dependent frag. This returns the amount by which
20324 the current size of the frag should change. */
20325
20326int
5e77afaa 20327arm_relax_frag (asection *sec, fragS *fragp, long stretch)
0110f2b8
PB
20328{
20329 int oldsize;
20330 int newsize;
20331
20332 oldsize = fragp->fr_var;
20333 switch (fragp->fr_subtype)
20334 {
20335 case T_MNEM_ldr_pc2:
5f4273c7 20336 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20337 break;
20338 case T_MNEM_ldr_pc:
20339 case T_MNEM_ldr_sp:
20340 case T_MNEM_str_sp:
5f4273c7 20341 newsize = relax_immediate (fragp, 8, 2);
0110f2b8
PB
20342 break;
20343 case T_MNEM_ldr:
20344 case T_MNEM_str:
5f4273c7 20345 newsize = relax_immediate (fragp, 5, 2);
0110f2b8
PB
20346 break;
20347 case T_MNEM_ldrh:
20348 case T_MNEM_strh:
5f4273c7 20349 newsize = relax_immediate (fragp, 5, 1);
0110f2b8
PB
20350 break;
20351 case T_MNEM_ldrb:
20352 case T_MNEM_strb:
5f4273c7 20353 newsize = relax_immediate (fragp, 5, 0);
0110f2b8
PB
20354 break;
20355 case T_MNEM_adr:
5f4273c7 20356 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20357 break;
20358 case T_MNEM_mov:
20359 case T_MNEM_movs:
20360 case T_MNEM_cmp:
20361 case T_MNEM_cmn:
5f4273c7 20362 newsize = relax_immediate (fragp, 8, 0);
0110f2b8
PB
20363 break;
20364 case T_MNEM_b:
5f4273c7 20365 newsize = relax_branch (fragp, sec, 11, stretch);
0110f2b8
PB
20366 break;
20367 case T_MNEM_bcond:
5f4273c7 20368 newsize = relax_branch (fragp, sec, 8, stretch);
0110f2b8
PB
20369 break;
20370 case T_MNEM_add_sp:
20371 case T_MNEM_add_pc:
20372 newsize = relax_immediate (fragp, 8, 2);
20373 break;
20374 case T_MNEM_inc_sp:
20375 case T_MNEM_dec_sp:
20376 newsize = relax_immediate (fragp, 7, 2);
20377 break;
20378 case T_MNEM_addi:
20379 case T_MNEM_addis:
20380 case T_MNEM_subi:
20381 case T_MNEM_subis:
20382 newsize = relax_addsub (fragp, sec);
20383 break;
20384 default:
5f4273c7 20385 abort ();
0110f2b8 20386 }
5e77afaa
PB
20387
20388 fragp->fr_var = newsize;
20389 /* Freeze wide instructions that are at or before the same location as
20390 in the previous pass. This avoids infinite loops.
5f4273c7
NC
20391 Don't freeze them unconditionally because targets may be artificially
20392 misaligned by the expansion of preceding frags. */
5e77afaa 20393 if (stretch <= 0 && newsize > 2)
0110f2b8 20394 {
0110f2b8 20395 md_convert_frag (sec->owner, sec, fragp);
5f4273c7 20396 frag_wane (fragp);
0110f2b8 20397 }
5e77afaa 20398
0110f2b8 20399 return newsize - oldsize;
c19d1205 20400}
b99bd4ef 20401
c19d1205 20402/* Round up a section size to the appropriate boundary. */
b99bd4ef 20403
c19d1205
ZW
20404valueT
20405md_section_align (segT segment ATTRIBUTE_UNUSED,
20406 valueT size)
20407{
f0927246
NC
20408#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
20409 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
20410 {
20411 /* For a.out, force the section size to be aligned. If we don't do
20412 this, BFD will align it for us, but it will not write out the
20413 final bytes of the section. This may be a bug in BFD, but it is
20414 easier to fix it here since that is how the other a.out targets
20415 work. */
20416 int align;
20417
20418 align = bfd_get_section_alignment (stdoutput, segment);
20419 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
20420 }
c19d1205 20421#endif
f0927246
NC
20422
20423 return size;
bfae80f2 20424}
b99bd4ef 20425
c19d1205
ZW
20426/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
20427 of an rs_align_code fragment. */
20428
20429void
20430arm_handle_align (fragS * fragP)
bfae80f2 20431{
e7495e45
NS
20432 static char const arm_noop[2][2][4] =
20433 {
20434 { /* ARMv1 */
20435 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
20436 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
20437 },
20438 { /* ARMv6k */
20439 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
20440 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
20441 },
20442 };
20443 static char const thumb_noop[2][2][2] =
20444 {
20445 { /* Thumb-1 */
20446 {0xc0, 0x46}, /* LE */
20447 {0x46, 0xc0}, /* BE */
20448 },
20449 { /* Thumb-2 */
20450 {0x00, 0xbf}, /* LE */
20451 {0xbf, 0x00} /* BE */
20452 }
20453 };
20454 static char const wide_thumb_noop[2][4] =
20455 { /* Wide Thumb-2 */
20456 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
20457 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
20458 };
c921be7d 20459
e7495e45 20460 unsigned bytes, fix, noop_size;
c19d1205
ZW
20461 char * p;
20462 const char * noop;
e7495e45 20463 const char *narrow_noop = NULL;
cd000bff
DJ
20464#ifdef OBJ_ELF
20465 enum mstate state;
20466#endif
bfae80f2 20467
c19d1205 20468 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
20469 return;
20470
c19d1205
ZW
20471 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
20472 p = fragP->fr_literal + fragP->fr_fix;
20473 fix = 0;
bfae80f2 20474
c19d1205
ZW
20475 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
20476 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 20477
cd000bff 20478 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
8dc2430f 20479
cd000bff 20480 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
a737bd4d 20481 {
e7495e45
NS
20482 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
20483 {
20484 narrow_noop = thumb_noop[1][target_big_endian];
20485 noop = wide_thumb_noop[target_big_endian];
20486 }
c19d1205 20487 else
e7495e45
NS
20488 noop = thumb_noop[0][target_big_endian];
20489 noop_size = 2;
cd000bff
DJ
20490#ifdef OBJ_ELF
20491 state = MAP_THUMB;
20492#endif
7ed4c4c5
NC
20493 }
20494 else
20495 {
e7495e45
NS
20496 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k) != 0]
20497 [target_big_endian];
20498 noop_size = 4;
cd000bff
DJ
20499#ifdef OBJ_ELF
20500 state = MAP_ARM;
20501#endif
7ed4c4c5 20502 }
c921be7d 20503
e7495e45 20504 fragP->fr_var = noop_size;
c921be7d 20505
c19d1205 20506 if (bytes & (noop_size - 1))
7ed4c4c5 20507 {
c19d1205 20508 fix = bytes & (noop_size - 1);
cd000bff
DJ
20509#ifdef OBJ_ELF
20510 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
20511#endif
c19d1205
ZW
20512 memset (p, 0, fix);
20513 p += fix;
20514 bytes -= fix;
a737bd4d 20515 }
a737bd4d 20516
e7495e45
NS
20517 if (narrow_noop)
20518 {
20519 if (bytes & noop_size)
20520 {
20521 /* Insert a narrow noop. */
20522 memcpy (p, narrow_noop, noop_size);
20523 p += noop_size;
20524 bytes -= noop_size;
20525 fix += noop_size;
20526 }
20527
20528 /* Use wide noops for the remainder */
20529 noop_size = 4;
20530 }
20531
c19d1205 20532 while (bytes >= noop_size)
a737bd4d 20533 {
c19d1205
ZW
20534 memcpy (p, noop, noop_size);
20535 p += noop_size;
20536 bytes -= noop_size;
20537 fix += noop_size;
a737bd4d
NC
20538 }
20539
c19d1205 20540 fragP->fr_fix += fix;
a737bd4d
NC
20541}
20542
c19d1205
ZW
20543/* Called from md_do_align. Used to create an alignment
20544 frag in a code section. */
20545
20546void
20547arm_frag_align_code (int n, int max)
bfae80f2 20548{
c19d1205 20549 char * p;
7ed4c4c5 20550
c19d1205 20551 /* We assume that there will never be a requirement
6ec8e702 20552 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
c19d1205 20553 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
6ec8e702
NC
20554 {
20555 char err_msg[128];
20556
fa94de6b 20557 sprintf (err_msg,
477330fc
RM
20558 _("alignments greater than %d bytes not supported in .text sections."),
20559 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
20203fb9 20560 as_fatal ("%s", err_msg);
6ec8e702 20561 }
bfae80f2 20562
c19d1205
ZW
20563 p = frag_var (rs_align_code,
20564 MAX_MEM_FOR_RS_ALIGN_CODE,
20565 1,
20566 (relax_substateT) max,
20567 (symbolS *) NULL,
20568 (offsetT) n,
20569 (char *) NULL);
20570 *p = 0;
20571}
bfae80f2 20572
8dc2430f
NC
20573/* Perform target specific initialisation of a frag.
20574 Note - despite the name this initialisation is not done when the frag
20575 is created, but only when its type is assigned. A frag can be created
20576 and used a long time before its type is set, so beware of assuming that
20577 this initialisationis performed first. */
bfae80f2 20578
cd000bff
DJ
20579#ifndef OBJ_ELF
20580void
20581arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
20582{
20583 /* Record whether this frag is in an ARM or a THUMB area. */
2e98972e 20584 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
cd000bff
DJ
20585}
20586
20587#else /* OBJ_ELF is defined. */
c19d1205 20588void
cd000bff 20589arm_init_frag (fragS * fragP, int max_chars)
c19d1205 20590{
8dc2430f
NC
20591 /* If the current ARM vs THUMB mode has not already
20592 been recorded into this frag then do so now. */
cd000bff
DJ
20593 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
20594 {
20595 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
20596
20597 /* Record a mapping symbol for alignment frags. We will delete this
20598 later if the alignment ends up empty. */
20599 switch (fragP->fr_type)
20600 {
20601 case rs_align:
20602 case rs_align_test:
20603 case rs_fill:
20604 mapping_state_2 (MAP_DATA, max_chars);
20605 break;
20606 case rs_align_code:
20607 mapping_state_2 (thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
20608 break;
20609 default:
20610 break;
20611 }
20612 }
bfae80f2
RE
20613}
20614
c19d1205
ZW
20615/* When we change sections we need to issue a new mapping symbol. */
20616
20617void
20618arm_elf_change_section (void)
bfae80f2 20619{
c19d1205
ZW
20620 /* Link an unlinked unwind index table section to the .text section. */
20621 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
20622 && elf_linked_to_section (now_seg) == NULL)
20623 elf_linked_to_section (now_seg) = text_section;
bfae80f2
RE
20624}
20625
c19d1205
ZW
20626int
20627arm_elf_section_type (const char * str, size_t len)
e45d0630 20628{
c19d1205
ZW
20629 if (len == 5 && strncmp (str, "exidx", 5) == 0)
20630 return SHT_ARM_EXIDX;
e45d0630 20631
c19d1205
ZW
20632 return -1;
20633}
20634\f
20635/* Code to deal with unwinding tables. */
e45d0630 20636
c19d1205 20637static void add_unwind_adjustsp (offsetT);
e45d0630 20638
5f4273c7 20639/* Generate any deferred unwind frame offset. */
e45d0630 20640
bfae80f2 20641static void
c19d1205 20642flush_pending_unwind (void)
bfae80f2 20643{
c19d1205 20644 offsetT offset;
bfae80f2 20645
c19d1205
ZW
20646 offset = unwind.pending_offset;
20647 unwind.pending_offset = 0;
20648 if (offset != 0)
20649 add_unwind_adjustsp (offset);
bfae80f2
RE
20650}
20651
c19d1205
ZW
20652/* Add an opcode to this list for this function. Two-byte opcodes should
20653 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
20654 order. */
20655
bfae80f2 20656static void
c19d1205 20657add_unwind_opcode (valueT op, int length)
bfae80f2 20658{
c19d1205
ZW
20659 /* Add any deferred stack adjustment. */
20660 if (unwind.pending_offset)
20661 flush_pending_unwind ();
bfae80f2 20662
c19d1205 20663 unwind.sp_restored = 0;
bfae80f2 20664
c19d1205 20665 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 20666 {
c19d1205
ZW
20667 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
20668 if (unwind.opcodes)
21d799b5 20669 unwind.opcodes = (unsigned char *) xrealloc (unwind.opcodes,
477330fc 20670 unwind.opcode_alloc);
c19d1205 20671 else
21d799b5 20672 unwind.opcodes = (unsigned char *) xmalloc (unwind.opcode_alloc);
bfae80f2 20673 }
c19d1205 20674 while (length > 0)
bfae80f2 20675 {
c19d1205
ZW
20676 length--;
20677 unwind.opcodes[unwind.opcode_count] = op & 0xff;
20678 op >>= 8;
20679 unwind.opcode_count++;
bfae80f2 20680 }
bfae80f2
RE
20681}
20682
c19d1205
ZW
20683/* Add unwind opcodes to adjust the stack pointer. */
20684
bfae80f2 20685static void
c19d1205 20686add_unwind_adjustsp (offsetT offset)
bfae80f2 20687{
c19d1205 20688 valueT op;
bfae80f2 20689
c19d1205 20690 if (offset > 0x200)
bfae80f2 20691 {
c19d1205
ZW
20692 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
20693 char bytes[5];
20694 int n;
20695 valueT o;
bfae80f2 20696
c19d1205
ZW
20697 /* Long form: 0xb2, uleb128. */
20698 /* This might not fit in a word so add the individual bytes,
20699 remembering the list is built in reverse order. */
20700 o = (valueT) ((offset - 0x204) >> 2);
20701 if (o == 0)
20702 add_unwind_opcode (0, 1);
bfae80f2 20703
c19d1205
ZW
20704 /* Calculate the uleb128 encoding of the offset. */
20705 n = 0;
20706 while (o)
20707 {
20708 bytes[n] = o & 0x7f;
20709 o >>= 7;
20710 if (o)
20711 bytes[n] |= 0x80;
20712 n++;
20713 }
20714 /* Add the insn. */
20715 for (; n; n--)
20716 add_unwind_opcode (bytes[n - 1], 1);
20717 add_unwind_opcode (0xb2, 1);
20718 }
20719 else if (offset > 0x100)
bfae80f2 20720 {
c19d1205
ZW
20721 /* Two short opcodes. */
20722 add_unwind_opcode (0x3f, 1);
20723 op = (offset - 0x104) >> 2;
20724 add_unwind_opcode (op, 1);
bfae80f2 20725 }
c19d1205
ZW
20726 else if (offset > 0)
20727 {
20728 /* Short opcode. */
20729 op = (offset - 4) >> 2;
20730 add_unwind_opcode (op, 1);
20731 }
20732 else if (offset < 0)
bfae80f2 20733 {
c19d1205
ZW
20734 offset = -offset;
20735 while (offset > 0x100)
bfae80f2 20736 {
c19d1205
ZW
20737 add_unwind_opcode (0x7f, 1);
20738 offset -= 0x100;
bfae80f2 20739 }
c19d1205
ZW
20740 op = ((offset - 4) >> 2) | 0x40;
20741 add_unwind_opcode (op, 1);
bfae80f2 20742 }
bfae80f2
RE
20743}
20744
c19d1205
ZW
20745/* Finish the list of unwind opcodes for this function. */
20746static void
20747finish_unwind_opcodes (void)
bfae80f2 20748{
c19d1205 20749 valueT op;
bfae80f2 20750
c19d1205 20751 if (unwind.fp_used)
bfae80f2 20752 {
708587a4 20753 /* Adjust sp as necessary. */
c19d1205
ZW
20754 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
20755 flush_pending_unwind ();
bfae80f2 20756
c19d1205
ZW
20757 /* After restoring sp from the frame pointer. */
20758 op = 0x90 | unwind.fp_reg;
20759 add_unwind_opcode (op, 1);
20760 }
20761 else
20762 flush_pending_unwind ();
bfae80f2
RE
20763}
20764
bfae80f2 20765
c19d1205
ZW
20766/* Start an exception table entry. If idx is nonzero this is an index table
20767 entry. */
bfae80f2
RE
20768
20769static void
c19d1205 20770start_unwind_section (const segT text_seg, int idx)
bfae80f2 20771{
c19d1205
ZW
20772 const char * text_name;
20773 const char * prefix;
20774 const char * prefix_once;
20775 const char * group_name;
20776 size_t prefix_len;
20777 size_t text_len;
20778 char * sec_name;
20779 size_t sec_name_len;
20780 int type;
20781 int flags;
20782 int linkonce;
bfae80f2 20783
c19d1205 20784 if (idx)
bfae80f2 20785 {
c19d1205
ZW
20786 prefix = ELF_STRING_ARM_unwind;
20787 prefix_once = ELF_STRING_ARM_unwind_once;
20788 type = SHT_ARM_EXIDX;
bfae80f2 20789 }
c19d1205 20790 else
bfae80f2 20791 {
c19d1205
ZW
20792 prefix = ELF_STRING_ARM_unwind_info;
20793 prefix_once = ELF_STRING_ARM_unwind_info_once;
20794 type = SHT_PROGBITS;
bfae80f2
RE
20795 }
20796
c19d1205
ZW
20797 text_name = segment_name (text_seg);
20798 if (streq (text_name, ".text"))
20799 text_name = "";
20800
20801 if (strncmp (text_name, ".gnu.linkonce.t.",
20802 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 20803 {
c19d1205
ZW
20804 prefix = prefix_once;
20805 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
20806 }
20807
c19d1205
ZW
20808 prefix_len = strlen (prefix);
20809 text_len = strlen (text_name);
20810 sec_name_len = prefix_len + text_len;
21d799b5 20811 sec_name = (char *) xmalloc (sec_name_len + 1);
c19d1205
ZW
20812 memcpy (sec_name, prefix, prefix_len);
20813 memcpy (sec_name + prefix_len, text_name, text_len);
20814 sec_name[prefix_len + text_len] = '\0';
bfae80f2 20815
c19d1205
ZW
20816 flags = SHF_ALLOC;
20817 linkonce = 0;
20818 group_name = 0;
bfae80f2 20819
c19d1205
ZW
20820 /* Handle COMDAT group. */
20821 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 20822 {
c19d1205
ZW
20823 group_name = elf_group_name (text_seg);
20824 if (group_name == NULL)
20825 {
bd3ba5d1 20826 as_bad (_("Group section `%s' has no group signature"),
c19d1205
ZW
20827 segment_name (text_seg));
20828 ignore_rest_of_line ();
20829 return;
20830 }
20831 flags |= SHF_GROUP;
20832 linkonce = 1;
bfae80f2
RE
20833 }
20834
c19d1205 20835 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
bfae80f2 20836
5f4273c7 20837 /* Set the section link for index tables. */
c19d1205
ZW
20838 if (idx)
20839 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
20840}
20841
bfae80f2 20842
c19d1205
ZW
20843/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
20844 personality routine data. Returns zero, or the index table value for
20845 and inline entry. */
20846
20847static valueT
20848create_unwind_entry (int have_data)
bfae80f2 20849{
c19d1205
ZW
20850 int size;
20851 addressT where;
20852 char *ptr;
20853 /* The current word of data. */
20854 valueT data;
20855 /* The number of bytes left in this word. */
20856 int n;
bfae80f2 20857
c19d1205 20858 finish_unwind_opcodes ();
bfae80f2 20859
c19d1205
ZW
20860 /* Remember the current text section. */
20861 unwind.saved_seg = now_seg;
20862 unwind.saved_subseg = now_subseg;
bfae80f2 20863
c19d1205 20864 start_unwind_section (now_seg, 0);
bfae80f2 20865
c19d1205 20866 if (unwind.personality_routine == NULL)
bfae80f2 20867 {
c19d1205
ZW
20868 if (unwind.personality_index == -2)
20869 {
20870 if (have_data)
5f4273c7 20871 as_bad (_("handlerdata in cantunwind frame"));
c19d1205
ZW
20872 return 1; /* EXIDX_CANTUNWIND. */
20873 }
bfae80f2 20874
c19d1205
ZW
20875 /* Use a default personality routine if none is specified. */
20876 if (unwind.personality_index == -1)
20877 {
20878 if (unwind.opcode_count > 3)
20879 unwind.personality_index = 1;
20880 else
20881 unwind.personality_index = 0;
20882 }
bfae80f2 20883
c19d1205
ZW
20884 /* Space for the personality routine entry. */
20885 if (unwind.personality_index == 0)
20886 {
20887 if (unwind.opcode_count > 3)
20888 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 20889
c19d1205
ZW
20890 if (!have_data)
20891 {
20892 /* All the data is inline in the index table. */
20893 data = 0x80;
20894 n = 3;
20895 while (unwind.opcode_count > 0)
20896 {
20897 unwind.opcode_count--;
20898 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20899 n--;
20900 }
bfae80f2 20901
c19d1205
ZW
20902 /* Pad with "finish" opcodes. */
20903 while (n--)
20904 data = (data << 8) | 0xb0;
bfae80f2 20905
c19d1205
ZW
20906 return data;
20907 }
20908 size = 0;
20909 }
20910 else
20911 /* We get two opcodes "free" in the first word. */
20912 size = unwind.opcode_count - 2;
20913 }
20914 else
5011093d
NC
20915 {
20916 gas_assert (unwind.personality_index == -1);
20917
20918 /* An extra byte is required for the opcode count. */
20919 size = unwind.opcode_count + 1;
20920 }
bfae80f2 20921
c19d1205
ZW
20922 size = (size + 3) >> 2;
20923 if (size > 0xff)
20924 as_bad (_("too many unwind opcodes"));
bfae80f2 20925
c19d1205
ZW
20926 frag_align (2, 0, 0);
20927 record_alignment (now_seg, 2);
20928 unwind.table_entry = expr_build_dot ();
20929
20930 /* Allocate the table entry. */
20931 ptr = frag_more ((size << 2) + 4);
74929e7b
NC
20932 /* PR 13449: Zero the table entries in case some of them are not used. */
20933 memset (ptr, 0, (size << 2) + 4);
c19d1205 20934 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 20935
c19d1205 20936 switch (unwind.personality_index)
bfae80f2 20937 {
c19d1205
ZW
20938 case -1:
20939 /* ??? Should this be a PLT generating relocation? */
20940 /* Custom personality routine. */
20941 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
20942 BFD_RELOC_ARM_PREL31);
bfae80f2 20943
c19d1205
ZW
20944 where += 4;
20945 ptr += 4;
bfae80f2 20946
c19d1205 20947 /* Set the first byte to the number of additional words. */
5011093d 20948 data = size > 0 ? size - 1 : 0;
c19d1205
ZW
20949 n = 3;
20950 break;
bfae80f2 20951
c19d1205
ZW
20952 /* ABI defined personality routines. */
20953 case 0:
20954 /* Three opcodes bytes are packed into the first word. */
20955 data = 0x80;
20956 n = 3;
20957 break;
bfae80f2 20958
c19d1205
ZW
20959 case 1:
20960 case 2:
20961 /* The size and first two opcode bytes go in the first word. */
20962 data = ((0x80 + unwind.personality_index) << 8) | size;
20963 n = 2;
20964 break;
bfae80f2 20965
c19d1205
ZW
20966 default:
20967 /* Should never happen. */
20968 abort ();
20969 }
bfae80f2 20970
c19d1205
ZW
20971 /* Pack the opcodes into words (MSB first), reversing the list at the same
20972 time. */
20973 while (unwind.opcode_count > 0)
20974 {
20975 if (n == 0)
20976 {
20977 md_number_to_chars (ptr, data, 4);
20978 ptr += 4;
20979 n = 4;
20980 data = 0;
20981 }
20982 unwind.opcode_count--;
20983 n--;
20984 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20985 }
20986
20987 /* Finish off the last word. */
20988 if (n < 4)
20989 {
20990 /* Pad with "finish" opcodes. */
20991 while (n--)
20992 data = (data << 8) | 0xb0;
20993
20994 md_number_to_chars (ptr, data, 4);
20995 }
20996
20997 if (!have_data)
20998 {
20999 /* Add an empty descriptor if there is no user-specified data. */
21000 ptr = frag_more (4);
21001 md_number_to_chars (ptr, 0, 4);
21002 }
21003
21004 return 0;
bfae80f2
RE
21005}
21006
f0927246
NC
21007
21008/* Initialize the DWARF-2 unwind information for this procedure. */
21009
21010void
21011tc_arm_frame_initial_instructions (void)
21012{
21013 cfi_add_CFA_def_cfa (REG_SP, 0);
21014}
21015#endif /* OBJ_ELF */
21016
c19d1205
ZW
21017/* Convert REGNAME to a DWARF-2 register number. */
21018
21019int
1df69f4f 21020tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 21021{
1df69f4f 21022 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
c19d1205
ZW
21023
21024 if (reg == FAIL)
21025 return -1;
21026
21027 return reg;
bfae80f2
RE
21028}
21029
f0927246 21030#ifdef TE_PE
c19d1205 21031void
f0927246 21032tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 21033{
91d6fa6a 21034 expressionS exp;
bfae80f2 21035
91d6fa6a
NC
21036 exp.X_op = O_secrel;
21037 exp.X_add_symbol = symbol;
21038 exp.X_add_number = 0;
21039 emit_expr (&exp, size);
f0927246
NC
21040}
21041#endif
bfae80f2 21042
c19d1205 21043/* MD interface: Symbol and relocation handling. */
bfae80f2 21044
2fc8bdac
ZW
21045/* Return the address within the segment that a PC-relative fixup is
21046 relative to. For ARM, PC-relative fixups applied to instructions
21047 are generally relative to the location of the fixup plus 8 bytes.
21048 Thumb branches are offset by 4, and Thumb loads relative to PC
21049 require special handling. */
bfae80f2 21050
c19d1205 21051long
2fc8bdac 21052md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 21053{
2fc8bdac
ZW
21054 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
21055
21056 /* If this is pc-relative and we are going to emit a relocation
21057 then we just want to put out any pipeline compensation that the linker
53baae48
NC
21058 will need. Otherwise we want to use the calculated base.
21059 For WinCE we skip the bias for externals as well, since this
21060 is how the MS ARM-CE assembler behaves and we want to be compatible. */
5f4273c7 21061 if (fixP->fx_pcrel
2fc8bdac 21062 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
21063 || (arm_force_relocation (fixP)
21064#ifdef TE_WINCE
21065 && !S_IS_EXTERNAL (fixP->fx_addsy)
21066#endif
21067 )))
2fc8bdac 21068 base = 0;
bfae80f2 21069
267bf995 21070
c19d1205 21071 switch (fixP->fx_r_type)
bfae80f2 21072 {
2fc8bdac
ZW
21073 /* PC relative addressing on the Thumb is slightly odd as the
21074 bottom two bits of the PC are forced to zero for the
21075 calculation. This happens *after* application of the
21076 pipeline offset. However, Thumb adrl already adjusts for
21077 this, so we need not do it again. */
c19d1205 21078 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 21079 return base & ~3;
c19d1205
ZW
21080
21081 case BFD_RELOC_ARM_THUMB_OFFSET:
21082 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 21083 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 21084 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 21085 return (base + 4) & ~3;
c19d1205 21086
2fc8bdac
ZW
21087 /* Thumb branches are simply offset by +4. */
21088 case BFD_RELOC_THUMB_PCREL_BRANCH7:
21089 case BFD_RELOC_THUMB_PCREL_BRANCH9:
21090 case BFD_RELOC_THUMB_PCREL_BRANCH12:
21091 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac 21092 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac 21093 return base + 4;
bfae80f2 21094
267bf995 21095 case BFD_RELOC_THUMB_PCREL_BRANCH23:
486499d0
CL
21096 if (fixP->fx_addsy
21097 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21098 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995 21099 && ARM_IS_FUNC (fixP->fx_addsy)
477330fc
RM
21100 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21101 base = fixP->fx_where + fixP->fx_frag->fr_address;
267bf995
RR
21102 return base + 4;
21103
00adf2d4
JB
21104 /* BLX is like branches above, but forces the low two bits of PC to
21105 zero. */
486499d0
CL
21106 case BFD_RELOC_THUMB_PCREL_BLX:
21107 if (fixP->fx_addsy
21108 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21109 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
21110 && THUMB_IS_FUNC (fixP->fx_addsy)
21111 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21112 base = fixP->fx_where + fixP->fx_frag->fr_address;
00adf2d4
JB
21113 return (base + 4) & ~3;
21114
2fc8bdac
ZW
21115 /* ARM mode branches are offset by +8. However, the Windows CE
21116 loader expects the relocation not to take this into account. */
267bf995 21117 case BFD_RELOC_ARM_PCREL_BLX:
486499d0
CL
21118 if (fixP->fx_addsy
21119 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21120 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
21121 && ARM_IS_FUNC (fixP->fx_addsy)
21122 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21123 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21124 return base + 8;
267bf995 21125
486499d0
CL
21126 case BFD_RELOC_ARM_PCREL_CALL:
21127 if (fixP->fx_addsy
21128 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21129 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
21130 && THUMB_IS_FUNC (fixP->fx_addsy)
21131 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21132 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21133 return base + 8;
267bf995 21134
2fc8bdac 21135 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c 21136 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 21137 case BFD_RELOC_ARM_PLT32:
c19d1205 21138#ifdef TE_WINCE
5f4273c7 21139 /* When handling fixups immediately, because we have already
477330fc 21140 discovered the value of a symbol, or the address of the frag involved
53baae48 21141 we must account for the offset by +8, as the OS loader will never see the reloc.
477330fc
RM
21142 see fixup_segment() in write.c
21143 The S_IS_EXTERNAL test handles the case of global symbols.
21144 Those need the calculated base, not just the pipe compensation the linker will need. */
53baae48
NC
21145 if (fixP->fx_pcrel
21146 && fixP->fx_addsy != NULL
21147 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21148 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
21149 return base + 8;
2fc8bdac 21150 return base;
c19d1205 21151#else
2fc8bdac 21152 return base + 8;
c19d1205 21153#endif
2fc8bdac 21154
267bf995 21155
2fc8bdac
ZW
21156 /* ARM mode loads relative to PC are also offset by +8. Unlike
21157 branches, the Windows CE loader *does* expect the relocation
21158 to take this into account. */
21159 case BFD_RELOC_ARM_OFFSET_IMM:
21160 case BFD_RELOC_ARM_OFFSET_IMM8:
21161 case BFD_RELOC_ARM_HWLITERAL:
21162 case BFD_RELOC_ARM_LITERAL:
21163 case BFD_RELOC_ARM_CP_OFF_IMM:
21164 return base + 8;
21165
21166
21167 /* Other PC-relative relocations are un-offset. */
21168 default:
21169 return base;
21170 }
bfae80f2
RE
21171}
21172
c19d1205
ZW
21173/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
21174 Otherwise we have no need to default values of symbols. */
21175
21176symbolS *
21177md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
bfae80f2 21178{
c19d1205
ZW
21179#ifdef OBJ_ELF
21180 if (name[0] == '_' && name[1] == 'G'
21181 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
21182 {
21183 if (!GOT_symbol)
21184 {
21185 if (symbol_find (name))
bd3ba5d1 21186 as_bad (_("GOT already in the symbol table"));
bfae80f2 21187
c19d1205
ZW
21188 GOT_symbol = symbol_new (name, undefined_section,
21189 (valueT) 0, & zero_address_frag);
21190 }
bfae80f2 21191
c19d1205 21192 return GOT_symbol;
bfae80f2 21193 }
c19d1205 21194#endif
bfae80f2 21195
c921be7d 21196 return NULL;
bfae80f2
RE
21197}
21198
55cf6793 21199/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
21200 computed as two separate immediate values, added together. We
21201 already know that this value cannot be computed by just one ARM
21202 instruction. */
21203
21204static unsigned int
21205validate_immediate_twopart (unsigned int val,
21206 unsigned int * highpart)
bfae80f2 21207{
c19d1205
ZW
21208 unsigned int a;
21209 unsigned int i;
bfae80f2 21210
c19d1205
ZW
21211 for (i = 0; i < 32; i += 2)
21212 if (((a = rotate_left (val, i)) & 0xff) != 0)
21213 {
21214 if (a & 0xff00)
21215 {
21216 if (a & ~ 0xffff)
21217 continue;
21218 * highpart = (a >> 8) | ((i + 24) << 7);
21219 }
21220 else if (a & 0xff0000)
21221 {
21222 if (a & 0xff000000)
21223 continue;
21224 * highpart = (a >> 16) | ((i + 16) << 7);
21225 }
21226 else
21227 {
9c2799c2 21228 gas_assert (a & 0xff000000);
c19d1205
ZW
21229 * highpart = (a >> 24) | ((i + 8) << 7);
21230 }
bfae80f2 21231
c19d1205
ZW
21232 return (a & 0xff) | (i << 7);
21233 }
bfae80f2 21234
c19d1205 21235 return FAIL;
bfae80f2
RE
21236}
21237
c19d1205
ZW
21238static int
21239validate_offset_imm (unsigned int val, int hwse)
21240{
21241 if ((hwse && val > 255) || val > 4095)
21242 return FAIL;
21243 return val;
21244}
bfae80f2 21245
55cf6793 21246/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
21247 negative immediate constant by altering the instruction. A bit of
21248 a hack really.
21249 MOV <-> MVN
21250 AND <-> BIC
21251 ADC <-> SBC
21252 by inverting the second operand, and
21253 ADD <-> SUB
21254 CMP <-> CMN
21255 by negating the second operand. */
bfae80f2 21256
c19d1205
ZW
21257static int
21258negate_data_op (unsigned long * instruction,
21259 unsigned long value)
bfae80f2 21260{
c19d1205
ZW
21261 int op, new_inst;
21262 unsigned long negated, inverted;
bfae80f2 21263
c19d1205
ZW
21264 negated = encode_arm_immediate (-value);
21265 inverted = encode_arm_immediate (~value);
bfae80f2 21266
c19d1205
ZW
21267 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
21268 switch (op)
bfae80f2 21269 {
c19d1205
ZW
21270 /* First negates. */
21271 case OPCODE_SUB: /* ADD <-> SUB */
21272 new_inst = OPCODE_ADD;
21273 value = negated;
21274 break;
bfae80f2 21275
c19d1205
ZW
21276 case OPCODE_ADD:
21277 new_inst = OPCODE_SUB;
21278 value = negated;
21279 break;
bfae80f2 21280
c19d1205
ZW
21281 case OPCODE_CMP: /* CMP <-> CMN */
21282 new_inst = OPCODE_CMN;
21283 value = negated;
21284 break;
bfae80f2 21285
c19d1205
ZW
21286 case OPCODE_CMN:
21287 new_inst = OPCODE_CMP;
21288 value = negated;
21289 break;
bfae80f2 21290
c19d1205
ZW
21291 /* Now Inverted ops. */
21292 case OPCODE_MOV: /* MOV <-> MVN */
21293 new_inst = OPCODE_MVN;
21294 value = inverted;
21295 break;
bfae80f2 21296
c19d1205
ZW
21297 case OPCODE_MVN:
21298 new_inst = OPCODE_MOV;
21299 value = inverted;
21300 break;
bfae80f2 21301
c19d1205
ZW
21302 case OPCODE_AND: /* AND <-> BIC */
21303 new_inst = OPCODE_BIC;
21304 value = inverted;
21305 break;
bfae80f2 21306
c19d1205
ZW
21307 case OPCODE_BIC:
21308 new_inst = OPCODE_AND;
21309 value = inverted;
21310 break;
bfae80f2 21311
c19d1205
ZW
21312 case OPCODE_ADC: /* ADC <-> SBC */
21313 new_inst = OPCODE_SBC;
21314 value = inverted;
21315 break;
bfae80f2 21316
c19d1205
ZW
21317 case OPCODE_SBC:
21318 new_inst = OPCODE_ADC;
21319 value = inverted;
21320 break;
bfae80f2 21321
c19d1205
ZW
21322 /* We cannot do anything. */
21323 default:
21324 return FAIL;
b99bd4ef
NC
21325 }
21326
c19d1205
ZW
21327 if (value == (unsigned) FAIL)
21328 return FAIL;
21329
21330 *instruction &= OPCODE_MASK;
21331 *instruction |= new_inst << DATA_OP_SHIFT;
21332 return value;
b99bd4ef
NC
21333}
21334
ef8d22e6
PB
21335/* Like negate_data_op, but for Thumb-2. */
21336
21337static unsigned int
16dd5e42 21338thumb32_negate_data_op (offsetT *instruction, unsigned int value)
ef8d22e6
PB
21339{
21340 int op, new_inst;
21341 int rd;
16dd5e42 21342 unsigned int negated, inverted;
ef8d22e6
PB
21343
21344 negated = encode_thumb32_immediate (-value);
21345 inverted = encode_thumb32_immediate (~value);
21346
21347 rd = (*instruction >> 8) & 0xf;
21348 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
21349 switch (op)
21350 {
21351 /* ADD <-> SUB. Includes CMP <-> CMN. */
21352 case T2_OPCODE_SUB:
21353 new_inst = T2_OPCODE_ADD;
21354 value = negated;
21355 break;
21356
21357 case T2_OPCODE_ADD:
21358 new_inst = T2_OPCODE_SUB;
21359 value = negated;
21360 break;
21361
21362 /* ORR <-> ORN. Includes MOV <-> MVN. */
21363 case T2_OPCODE_ORR:
21364 new_inst = T2_OPCODE_ORN;
21365 value = inverted;
21366 break;
21367
21368 case T2_OPCODE_ORN:
21369 new_inst = T2_OPCODE_ORR;
21370 value = inverted;
21371 break;
21372
21373 /* AND <-> BIC. TST has no inverted equivalent. */
21374 case T2_OPCODE_AND:
21375 new_inst = T2_OPCODE_BIC;
21376 if (rd == 15)
21377 value = FAIL;
21378 else
21379 value = inverted;
21380 break;
21381
21382 case T2_OPCODE_BIC:
21383 new_inst = T2_OPCODE_AND;
21384 value = inverted;
21385 break;
21386
21387 /* ADC <-> SBC */
21388 case T2_OPCODE_ADC:
21389 new_inst = T2_OPCODE_SBC;
21390 value = inverted;
21391 break;
21392
21393 case T2_OPCODE_SBC:
21394 new_inst = T2_OPCODE_ADC;
21395 value = inverted;
21396 break;
21397
21398 /* We cannot do anything. */
21399 default:
21400 return FAIL;
21401 }
21402
16dd5e42 21403 if (value == (unsigned int)FAIL)
ef8d22e6
PB
21404 return FAIL;
21405
21406 *instruction &= T2_OPCODE_MASK;
21407 *instruction |= new_inst << T2_DATA_OP_SHIFT;
21408 return value;
21409}
21410
8f06b2d8
PB
21411/* Read a 32-bit thumb instruction from buf. */
21412static unsigned long
21413get_thumb32_insn (char * buf)
21414{
21415 unsigned long insn;
21416 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
21417 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21418
21419 return insn;
21420}
21421
a8bc6c78
PB
21422
21423/* We usually want to set the low bit on the address of thumb function
21424 symbols. In particular .word foo - . should have the low bit set.
21425 Generic code tries to fold the difference of two symbols to
21426 a constant. Prevent this and force a relocation when the first symbols
21427 is a thumb function. */
c921be7d
NC
21428
21429bfd_boolean
a8bc6c78
PB
21430arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
21431{
21432 if (op == O_subtract
21433 && l->X_op == O_symbol
21434 && r->X_op == O_symbol
21435 && THUMB_IS_FUNC (l->X_add_symbol))
21436 {
21437 l->X_op = O_subtract;
21438 l->X_op_symbol = r->X_add_symbol;
21439 l->X_add_number -= r->X_add_number;
c921be7d 21440 return TRUE;
a8bc6c78 21441 }
c921be7d 21442
a8bc6c78 21443 /* Process as normal. */
c921be7d 21444 return FALSE;
a8bc6c78
PB
21445}
21446
4a42ebbc
RR
21447/* Encode Thumb2 unconditional branches and calls. The encoding
21448 for the 2 are identical for the immediate values. */
21449
21450static void
21451encode_thumb2_b_bl_offset (char * buf, offsetT value)
21452{
21453#define T2I1I2MASK ((1 << 13) | (1 << 11))
21454 offsetT newval;
21455 offsetT newval2;
21456 addressT S, I1, I2, lo, hi;
21457
21458 S = (value >> 24) & 0x01;
21459 I1 = (value >> 23) & 0x01;
21460 I2 = (value >> 22) & 0x01;
21461 hi = (value >> 12) & 0x3ff;
fa94de6b 21462 lo = (value >> 1) & 0x7ff;
4a42ebbc
RR
21463 newval = md_chars_to_number (buf, THUMB_SIZE);
21464 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21465 newval |= (S << 10) | hi;
21466 newval2 &= ~T2I1I2MASK;
21467 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
21468 md_number_to_chars (buf, newval, THUMB_SIZE);
21469 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
21470}
21471
c19d1205 21472void
55cf6793 21473md_apply_fix (fixS * fixP,
c19d1205
ZW
21474 valueT * valP,
21475 segT seg)
21476{
21477 offsetT value = * valP;
21478 offsetT newval;
21479 unsigned int newimm;
21480 unsigned long temp;
21481 int sign;
21482 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 21483
9c2799c2 21484 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 21485
c19d1205 21486 /* Note whether this will delete the relocation. */
4962c51a 21487
c19d1205
ZW
21488 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
21489 fixP->fx_done = 1;
b99bd4ef 21490
adbaf948 21491 /* On a 64-bit host, silently truncate 'value' to 32 bits for
5f4273c7 21492 consistency with the behaviour on 32-bit hosts. Remember value
adbaf948
ZW
21493 for emit_reloc. */
21494 value &= 0xffffffff;
21495 value ^= 0x80000000;
5f4273c7 21496 value -= 0x80000000;
adbaf948
ZW
21497
21498 *valP = value;
c19d1205 21499 fixP->fx_addnumber = value;
b99bd4ef 21500
adbaf948
ZW
21501 /* Same treatment for fixP->fx_offset. */
21502 fixP->fx_offset &= 0xffffffff;
21503 fixP->fx_offset ^= 0x80000000;
21504 fixP->fx_offset -= 0x80000000;
21505
c19d1205 21506 switch (fixP->fx_r_type)
b99bd4ef 21507 {
c19d1205
ZW
21508 case BFD_RELOC_NONE:
21509 /* This will need to go in the object file. */
21510 fixP->fx_done = 0;
21511 break;
b99bd4ef 21512
c19d1205
ZW
21513 case BFD_RELOC_ARM_IMMEDIATE:
21514 /* We claim that this fixup has been processed here,
21515 even if in fact we generate an error because we do
21516 not have a reloc for it, so tc_gen_reloc will reject it. */
21517 fixP->fx_done = 1;
b99bd4ef 21518
77db8e2e 21519 if (fixP->fx_addsy)
b99bd4ef 21520 {
77db8e2e 21521 const char *msg = 0;
b99bd4ef 21522
77db8e2e
NC
21523 if (! S_IS_DEFINED (fixP->fx_addsy))
21524 msg = _("undefined symbol %s used as an immediate value");
21525 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21526 msg = _("symbol %s is in a different section");
21527 else if (S_IS_WEAK (fixP->fx_addsy))
21528 msg = _("symbol %s is weak and may be overridden later");
21529
21530 if (msg)
21531 {
21532 as_bad_where (fixP->fx_file, fixP->fx_line,
21533 msg, S_GET_NAME (fixP->fx_addsy));
21534 break;
21535 }
42e5fcbf
AS
21536 }
21537
c19d1205
ZW
21538 temp = md_chars_to_number (buf, INSN_SIZE);
21539
5e73442d
SL
21540 /* If the offset is negative, we should use encoding A2 for ADR. */
21541 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
21542 newimm = negate_data_op (&temp, value);
21543 else
21544 {
21545 newimm = encode_arm_immediate (value);
21546
21547 /* If the instruction will fail, see if we can fix things up by
21548 changing the opcode. */
21549 if (newimm == (unsigned int) FAIL)
21550 newimm = negate_data_op (&temp, value);
21551 }
21552
21553 if (newimm == (unsigned int) FAIL)
b99bd4ef 21554 {
c19d1205
ZW
21555 as_bad_where (fixP->fx_file, fixP->fx_line,
21556 _("invalid constant (%lx) after fixup"),
21557 (unsigned long) value);
21558 break;
b99bd4ef 21559 }
b99bd4ef 21560
c19d1205
ZW
21561 newimm |= (temp & 0xfffff000);
21562 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
21563 break;
b99bd4ef 21564
c19d1205
ZW
21565 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
21566 {
21567 unsigned int highpart = 0;
21568 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 21569
77db8e2e 21570 if (fixP->fx_addsy)
42e5fcbf 21571 {
77db8e2e 21572 const char *msg = 0;
42e5fcbf 21573
77db8e2e
NC
21574 if (! S_IS_DEFINED (fixP->fx_addsy))
21575 msg = _("undefined symbol %s used as an immediate value");
21576 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21577 msg = _("symbol %s is in a different section");
21578 else if (S_IS_WEAK (fixP->fx_addsy))
21579 msg = _("symbol %s is weak and may be overridden later");
42e5fcbf 21580
77db8e2e
NC
21581 if (msg)
21582 {
21583 as_bad_where (fixP->fx_file, fixP->fx_line,
21584 msg, S_GET_NAME (fixP->fx_addsy));
21585 break;
21586 }
21587 }
fa94de6b 21588
c19d1205
ZW
21589 newimm = encode_arm_immediate (value);
21590 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 21591
c19d1205
ZW
21592 /* If the instruction will fail, see if we can fix things up by
21593 changing the opcode. */
21594 if (newimm == (unsigned int) FAIL
21595 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
21596 {
21597 /* No ? OK - try using two ADD instructions to generate
21598 the value. */
21599 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 21600
c19d1205
ZW
21601 /* Yes - then make sure that the second instruction is
21602 also an add. */
21603 if (newimm != (unsigned int) FAIL)
21604 newinsn = temp;
21605 /* Still No ? Try using a negated value. */
21606 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
21607 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
21608 /* Otherwise - give up. */
21609 else
21610 {
21611 as_bad_where (fixP->fx_file, fixP->fx_line,
21612 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
21613 (long) value);
21614 break;
21615 }
b99bd4ef 21616
c19d1205
ZW
21617 /* Replace the first operand in the 2nd instruction (which
21618 is the PC) with the destination register. We have
21619 already added in the PC in the first instruction and we
21620 do not want to do it again. */
21621 newinsn &= ~ 0xf0000;
21622 newinsn |= ((newinsn & 0x0f000) << 4);
21623 }
b99bd4ef 21624
c19d1205
ZW
21625 newimm |= (temp & 0xfffff000);
21626 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 21627
c19d1205
ZW
21628 highpart |= (newinsn & 0xfffff000);
21629 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
21630 }
21631 break;
b99bd4ef 21632
c19d1205 21633 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
21634 if (!fixP->fx_done && seg->use_rela_p)
21635 value = 0;
21636
c19d1205 21637 case BFD_RELOC_ARM_LITERAL:
26d97720 21638 sign = value > 0;
b99bd4ef 21639
c19d1205
ZW
21640 if (value < 0)
21641 value = - value;
b99bd4ef 21642
c19d1205 21643 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 21644 {
c19d1205
ZW
21645 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
21646 as_bad_where (fixP->fx_file, fixP->fx_line,
21647 _("invalid literal constant: pool needs to be closer"));
21648 else
21649 as_bad_where (fixP->fx_file, fixP->fx_line,
21650 _("bad immediate value for offset (%ld)"),
21651 (long) value);
21652 break;
f03698e6
RE
21653 }
21654
c19d1205 21655 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
21656 if (value == 0)
21657 newval &= 0xfffff000;
21658 else
21659 {
21660 newval &= 0xff7ff000;
21661 newval |= value | (sign ? INDEX_UP : 0);
21662 }
c19d1205
ZW
21663 md_number_to_chars (buf, newval, INSN_SIZE);
21664 break;
b99bd4ef 21665
c19d1205
ZW
21666 case BFD_RELOC_ARM_OFFSET_IMM8:
21667 case BFD_RELOC_ARM_HWLITERAL:
26d97720 21668 sign = value > 0;
b99bd4ef 21669
c19d1205
ZW
21670 if (value < 0)
21671 value = - value;
b99bd4ef 21672
c19d1205 21673 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 21674 {
c19d1205
ZW
21675 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
21676 as_bad_where (fixP->fx_file, fixP->fx_line,
21677 _("invalid literal constant: pool needs to be closer"));
21678 else
427d0db6
RM
21679 as_bad_where (fixP->fx_file, fixP->fx_line,
21680 _("bad immediate value for 8-bit offset (%ld)"),
21681 (long) value);
c19d1205 21682 break;
b99bd4ef
NC
21683 }
21684
c19d1205 21685 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
21686 if (value == 0)
21687 newval &= 0xfffff0f0;
21688 else
21689 {
21690 newval &= 0xff7ff0f0;
21691 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
21692 }
c19d1205
ZW
21693 md_number_to_chars (buf, newval, INSN_SIZE);
21694 break;
b99bd4ef 21695
c19d1205
ZW
21696 case BFD_RELOC_ARM_T32_OFFSET_U8:
21697 if (value < 0 || value > 1020 || value % 4 != 0)
21698 as_bad_where (fixP->fx_file, fixP->fx_line,
21699 _("bad immediate value for offset (%ld)"), (long) value);
21700 value /= 4;
b99bd4ef 21701
c19d1205 21702 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
21703 newval |= value;
21704 md_number_to_chars (buf+2, newval, THUMB_SIZE);
21705 break;
b99bd4ef 21706
c19d1205
ZW
21707 case BFD_RELOC_ARM_T32_OFFSET_IMM:
21708 /* This is a complicated relocation used for all varieties of Thumb32
21709 load/store instruction with immediate offset:
21710
21711 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
477330fc 21712 *4, optional writeback(W)
c19d1205
ZW
21713 (doubleword load/store)
21714
21715 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
21716 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
21717 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
21718 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
21719 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
21720
21721 Uppercase letters indicate bits that are already encoded at
21722 this point. Lowercase letters are our problem. For the
21723 second block of instructions, the secondary opcode nybble
21724 (bits 8..11) is present, and bit 23 is zero, even if this is
21725 a PC-relative operation. */
21726 newval = md_chars_to_number (buf, THUMB_SIZE);
21727 newval <<= 16;
21728 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 21729
c19d1205 21730 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 21731 {
c19d1205
ZW
21732 /* Doubleword load/store: 8-bit offset, scaled by 4. */
21733 if (value >= 0)
21734 newval |= (1 << 23);
21735 else
21736 value = -value;
21737 if (value % 4 != 0)
21738 {
21739 as_bad_where (fixP->fx_file, fixP->fx_line,
21740 _("offset not a multiple of 4"));
21741 break;
21742 }
21743 value /= 4;
216d22bc 21744 if (value > 0xff)
c19d1205
ZW
21745 {
21746 as_bad_where (fixP->fx_file, fixP->fx_line,
21747 _("offset out of range"));
21748 break;
21749 }
21750 newval &= ~0xff;
b99bd4ef 21751 }
c19d1205 21752 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 21753 {
c19d1205
ZW
21754 /* PC-relative, 12-bit offset. */
21755 if (value >= 0)
21756 newval |= (1 << 23);
21757 else
21758 value = -value;
216d22bc 21759 if (value > 0xfff)
c19d1205
ZW
21760 {
21761 as_bad_where (fixP->fx_file, fixP->fx_line,
21762 _("offset out of range"));
21763 break;
21764 }
21765 newval &= ~0xfff;
b99bd4ef 21766 }
c19d1205 21767 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 21768 {
c19d1205
ZW
21769 /* Writeback: 8-bit, +/- offset. */
21770 if (value >= 0)
21771 newval |= (1 << 9);
21772 else
21773 value = -value;
216d22bc 21774 if (value > 0xff)
c19d1205
ZW
21775 {
21776 as_bad_where (fixP->fx_file, fixP->fx_line,
21777 _("offset out of range"));
21778 break;
21779 }
21780 newval &= ~0xff;
b99bd4ef 21781 }
c19d1205 21782 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 21783 {
c19d1205 21784 /* T-instruction: positive 8-bit offset. */
216d22bc 21785 if (value < 0 || value > 0xff)
b99bd4ef 21786 {
c19d1205
ZW
21787 as_bad_where (fixP->fx_file, fixP->fx_line,
21788 _("offset out of range"));
21789 break;
b99bd4ef 21790 }
c19d1205
ZW
21791 newval &= ~0xff;
21792 newval |= value;
b99bd4ef
NC
21793 }
21794 else
b99bd4ef 21795 {
c19d1205
ZW
21796 /* Positive 12-bit or negative 8-bit offset. */
21797 int limit;
21798 if (value >= 0)
b99bd4ef 21799 {
c19d1205
ZW
21800 newval |= (1 << 23);
21801 limit = 0xfff;
21802 }
21803 else
21804 {
21805 value = -value;
21806 limit = 0xff;
21807 }
21808 if (value > limit)
21809 {
21810 as_bad_where (fixP->fx_file, fixP->fx_line,
21811 _("offset out of range"));
21812 break;
b99bd4ef 21813 }
c19d1205 21814 newval &= ~limit;
b99bd4ef 21815 }
b99bd4ef 21816
c19d1205
ZW
21817 newval |= value;
21818 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
21819 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
21820 break;
404ff6b5 21821
c19d1205
ZW
21822 case BFD_RELOC_ARM_SHIFT_IMM:
21823 newval = md_chars_to_number (buf, INSN_SIZE);
21824 if (((unsigned long) value) > 32
21825 || (value == 32
21826 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
21827 {
21828 as_bad_where (fixP->fx_file, fixP->fx_line,
21829 _("shift expression is too large"));
21830 break;
21831 }
404ff6b5 21832
c19d1205
ZW
21833 if (value == 0)
21834 /* Shifts of zero must be done as lsl. */
21835 newval &= ~0x60;
21836 else if (value == 32)
21837 value = 0;
21838 newval &= 0xfffff07f;
21839 newval |= (value & 0x1f) << 7;
21840 md_number_to_chars (buf, newval, INSN_SIZE);
21841 break;
404ff6b5 21842
c19d1205 21843 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 21844 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 21845 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 21846 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
21847 /* We claim that this fixup has been processed here,
21848 even if in fact we generate an error because we do
21849 not have a reloc for it, so tc_gen_reloc will reject it. */
21850 fixP->fx_done = 1;
404ff6b5 21851
c19d1205
ZW
21852 if (fixP->fx_addsy
21853 && ! S_IS_DEFINED (fixP->fx_addsy))
21854 {
21855 as_bad_where (fixP->fx_file, fixP->fx_line,
21856 _("undefined symbol %s used as an immediate value"),
21857 S_GET_NAME (fixP->fx_addsy));
21858 break;
21859 }
404ff6b5 21860
c19d1205
ZW
21861 newval = md_chars_to_number (buf, THUMB_SIZE);
21862 newval <<= 16;
21863 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 21864
16805f35
PB
21865 newimm = FAIL;
21866 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
21867 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
21868 {
21869 newimm = encode_thumb32_immediate (value);
21870 if (newimm == (unsigned int) FAIL)
21871 newimm = thumb32_negate_data_op (&newval, value);
21872 }
16805f35
PB
21873 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
21874 && newimm == (unsigned int) FAIL)
92e90b6e 21875 {
16805f35
PB
21876 /* Turn add/sum into addw/subw. */
21877 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
21878 newval = (newval & 0xfeffffff) | 0x02000000;
40f246e3
NC
21879 /* No flat 12-bit imm encoding for addsw/subsw. */
21880 if ((newval & 0x00100000) == 0)
e9f89963 21881 {
40f246e3
NC
21882 /* 12 bit immediate for addw/subw. */
21883 if (value < 0)
21884 {
21885 value = -value;
21886 newval ^= 0x00a00000;
21887 }
21888 if (value > 0xfff)
21889 newimm = (unsigned int) FAIL;
21890 else
21891 newimm = value;
e9f89963 21892 }
92e90b6e 21893 }
cc8a6dd0 21894
c19d1205 21895 if (newimm == (unsigned int)FAIL)
3631a3c8 21896 {
c19d1205
ZW
21897 as_bad_where (fixP->fx_file, fixP->fx_line,
21898 _("invalid constant (%lx) after fixup"),
21899 (unsigned long) value);
21900 break;
3631a3c8
NC
21901 }
21902
c19d1205
ZW
21903 newval |= (newimm & 0x800) << 15;
21904 newval |= (newimm & 0x700) << 4;
21905 newval |= (newimm & 0x0ff);
cc8a6dd0 21906
c19d1205
ZW
21907 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
21908 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
21909 break;
a737bd4d 21910
3eb17e6b 21911 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
21912 if (((unsigned long) value) > 0xffff)
21913 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 21914 _("invalid smc expression"));
2fc8bdac 21915 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21916 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21917 md_number_to_chars (buf, newval, INSN_SIZE);
21918 break;
a737bd4d 21919
90ec0d68
MGD
21920 case BFD_RELOC_ARM_HVC:
21921 if (((unsigned long) value) > 0xffff)
21922 as_bad_where (fixP->fx_file, fixP->fx_line,
21923 _("invalid hvc expression"));
21924 newval = md_chars_to_number (buf, INSN_SIZE);
21925 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21926 md_number_to_chars (buf, newval, INSN_SIZE);
21927 break;
21928
c19d1205 21929 case BFD_RELOC_ARM_SWI:
adbaf948 21930 if (fixP->tc_fix_data != 0)
c19d1205
ZW
21931 {
21932 if (((unsigned long) value) > 0xff)
21933 as_bad_where (fixP->fx_file, fixP->fx_line,
21934 _("invalid swi expression"));
2fc8bdac 21935 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
21936 newval |= value;
21937 md_number_to_chars (buf, newval, THUMB_SIZE);
21938 }
21939 else
21940 {
21941 if (((unsigned long) value) > 0x00ffffff)
21942 as_bad_where (fixP->fx_file, fixP->fx_line,
21943 _("invalid swi expression"));
2fc8bdac 21944 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21945 newval |= value;
21946 md_number_to_chars (buf, newval, INSN_SIZE);
21947 }
21948 break;
a737bd4d 21949
c19d1205
ZW
21950 case BFD_RELOC_ARM_MULTI:
21951 if (((unsigned long) value) > 0xffff)
21952 as_bad_where (fixP->fx_file, fixP->fx_line,
21953 _("invalid expression in load/store multiple"));
21954 newval = value | md_chars_to_number (buf, INSN_SIZE);
21955 md_number_to_chars (buf, newval, INSN_SIZE);
21956 break;
a737bd4d 21957
c19d1205 21958#ifdef OBJ_ELF
39b41c9c 21959 case BFD_RELOC_ARM_PCREL_CALL:
267bf995
RR
21960
21961 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21962 && fixP->fx_addsy
34e77a92 21963 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21964 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21965 && THUMB_IS_FUNC (fixP->fx_addsy))
21966 /* Flip the bl to blx. This is a simple flip
21967 bit here because we generate PCREL_CALL for
21968 unconditional bls. */
21969 {
21970 newval = md_chars_to_number (buf, INSN_SIZE);
21971 newval = newval | 0x10000000;
21972 md_number_to_chars (buf, newval, INSN_SIZE);
21973 temp = 1;
21974 fixP->fx_done = 1;
21975 }
39b41c9c
PB
21976 else
21977 temp = 3;
21978 goto arm_branch_common;
21979
21980 case BFD_RELOC_ARM_PCREL_JUMP:
267bf995
RR
21981 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21982 && fixP->fx_addsy
34e77a92 21983 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21984 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21985 && THUMB_IS_FUNC (fixP->fx_addsy))
21986 {
21987 /* This would map to a bl<cond>, b<cond>,
21988 b<always> to a Thumb function. We
21989 need to force a relocation for this particular
21990 case. */
21991 newval = md_chars_to_number (buf, INSN_SIZE);
21992 fixP->fx_done = 0;
21993 }
21994
2fc8bdac 21995 case BFD_RELOC_ARM_PLT32:
c19d1205 21996#endif
39b41c9c
PB
21997 case BFD_RELOC_ARM_PCREL_BRANCH:
21998 temp = 3;
21999 goto arm_branch_common;
a737bd4d 22000
39b41c9c 22001 case BFD_RELOC_ARM_PCREL_BLX:
267bf995 22002
39b41c9c 22003 temp = 1;
267bf995
RR
22004 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
22005 && fixP->fx_addsy
34e77a92 22006 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22007 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22008 && ARM_IS_FUNC (fixP->fx_addsy))
22009 {
22010 /* Flip the blx to a bl and warn. */
22011 const char *name = S_GET_NAME (fixP->fx_addsy);
22012 newval = 0xeb000000;
22013 as_warn_where (fixP->fx_file, fixP->fx_line,
22014 _("blx to '%s' an ARM ISA state function changed to bl"),
22015 name);
22016 md_number_to_chars (buf, newval, INSN_SIZE);
22017 temp = 3;
22018 fixP->fx_done = 1;
22019 }
22020
22021#ifdef OBJ_ELF
22022 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
477330fc 22023 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
267bf995
RR
22024#endif
22025
39b41c9c 22026 arm_branch_common:
c19d1205 22027 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
22028 instruction, in a 24 bit, signed field. Bits 26 through 32 either
22029 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
22030 also be be clear. */
22031 if (value & temp)
c19d1205 22032 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
22033 _("misaligned branch destination"));
22034 if ((value & (offsetT)0xfe000000) != (offsetT)0
22035 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
08f10d51 22036 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22037
2fc8bdac 22038 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 22039 {
2fc8bdac
ZW
22040 newval = md_chars_to_number (buf, INSN_SIZE);
22041 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
22042 /* Set the H bit on BLX instructions. */
22043 if (temp == 1)
22044 {
22045 if (value & 2)
22046 newval |= 0x01000000;
22047 else
22048 newval &= ~0x01000000;
22049 }
2fc8bdac 22050 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 22051 }
c19d1205 22052 break;
a737bd4d 22053
25fe350b
MS
22054 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
22055 /* CBZ can only branch forward. */
a737bd4d 22056
738755b0 22057 /* Attempts to use CBZ to branch to the next instruction
477330fc
RM
22058 (which, strictly speaking, are prohibited) will be turned into
22059 no-ops.
738755b0
MS
22060
22061 FIXME: It may be better to remove the instruction completely and
22062 perform relaxation. */
22063 if (value == -2)
2fc8bdac
ZW
22064 {
22065 newval = md_chars_to_number (buf, THUMB_SIZE);
738755b0 22066 newval = 0xbf00; /* NOP encoding T1 */
2fc8bdac
ZW
22067 md_number_to_chars (buf, newval, THUMB_SIZE);
22068 }
738755b0
MS
22069 else
22070 {
22071 if (value & ~0x7e)
08f10d51 22072 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
738755b0 22073
477330fc 22074 if (fixP->fx_done || !seg->use_rela_p)
738755b0
MS
22075 {
22076 newval = md_chars_to_number (buf, THUMB_SIZE);
22077 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
22078 md_number_to_chars (buf, newval, THUMB_SIZE);
22079 }
22080 }
c19d1205 22081 break;
a737bd4d 22082
c19d1205 22083 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac 22084 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
08f10d51 22085 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22086
2fc8bdac
ZW
22087 if (fixP->fx_done || !seg->use_rela_p)
22088 {
22089 newval = md_chars_to_number (buf, THUMB_SIZE);
22090 newval |= (value & 0x1ff) >> 1;
22091 md_number_to_chars (buf, newval, THUMB_SIZE);
22092 }
c19d1205 22093 break;
a737bd4d 22094
c19d1205 22095 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac 22096 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
08f10d51 22097 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22098
2fc8bdac
ZW
22099 if (fixP->fx_done || !seg->use_rela_p)
22100 {
22101 newval = md_chars_to_number (buf, THUMB_SIZE);
22102 newval |= (value & 0xfff) >> 1;
22103 md_number_to_chars (buf, newval, THUMB_SIZE);
22104 }
c19d1205 22105 break;
a737bd4d 22106
c19d1205 22107 case BFD_RELOC_THUMB_PCREL_BRANCH20:
267bf995
RR
22108 if (fixP->fx_addsy
22109 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22110 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22111 && ARM_IS_FUNC (fixP->fx_addsy)
22112 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22113 {
22114 /* Force a relocation for a branch 20 bits wide. */
22115 fixP->fx_done = 0;
22116 }
08f10d51 22117 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
2fc8bdac
ZW
22118 as_bad_where (fixP->fx_file, fixP->fx_line,
22119 _("conditional branch out of range"));
404ff6b5 22120
2fc8bdac
ZW
22121 if (fixP->fx_done || !seg->use_rela_p)
22122 {
22123 offsetT newval2;
22124 addressT S, J1, J2, lo, hi;
404ff6b5 22125
2fc8bdac
ZW
22126 S = (value & 0x00100000) >> 20;
22127 J2 = (value & 0x00080000) >> 19;
22128 J1 = (value & 0x00040000) >> 18;
22129 hi = (value & 0x0003f000) >> 12;
22130 lo = (value & 0x00000ffe) >> 1;
6c43fab6 22131
2fc8bdac
ZW
22132 newval = md_chars_to_number (buf, THUMB_SIZE);
22133 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22134 newval |= (S << 10) | hi;
22135 newval2 |= (J1 << 13) | (J2 << 11) | lo;
22136 md_number_to_chars (buf, newval, THUMB_SIZE);
22137 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
22138 }
c19d1205 22139 break;
6c43fab6 22140
c19d1205 22141 case BFD_RELOC_THUMB_PCREL_BLX:
267bf995
RR
22142 /* If there is a blx from a thumb state function to
22143 another thumb function flip this to a bl and warn
22144 about it. */
22145
22146 if (fixP->fx_addsy
34e77a92 22147 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22148 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22149 && THUMB_IS_FUNC (fixP->fx_addsy))
22150 {
22151 const char *name = S_GET_NAME (fixP->fx_addsy);
22152 as_warn_where (fixP->fx_file, fixP->fx_line,
22153 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
22154 name);
22155 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22156 newval = newval | 0x1000;
22157 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22158 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22159 fixP->fx_done = 1;
22160 }
22161
22162
22163 goto thumb_bl_common;
22164
c19d1205 22165 case BFD_RELOC_THUMB_PCREL_BRANCH23:
267bf995
RR
22166 /* A bl from Thumb state ISA to an internal ARM state function
22167 is converted to a blx. */
22168 if (fixP->fx_addsy
22169 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22170 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22171 && ARM_IS_FUNC (fixP->fx_addsy)
22172 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22173 {
22174 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22175 newval = newval & ~0x1000;
22176 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22177 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
22178 fixP->fx_done = 1;
22179 }
22180
22181 thumb_bl_common:
22182
2fc8bdac
ZW
22183 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22184 /* For a BLX instruction, make sure that the relocation is rounded up
22185 to a word boundary. This follows the semantics of the instruction
22186 which specifies that bit 1 of the target address will come from bit
22187 1 of the base address. */
d406f3e4
JB
22188 value = (value + 3) & ~ 3;
22189
22190#ifdef OBJ_ELF
22191 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
22192 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22193 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22194#endif
404ff6b5 22195
2b2f5df9
NC
22196 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
22197 {
22198 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2)))
22199 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
22200 else if ((value & ~0x1ffffff)
22201 && ((value & ~0x1ffffff) != ~0x1ffffff))
22202 as_bad_where (fixP->fx_file, fixP->fx_line,
22203 _("Thumb2 branch out of range"));
22204 }
4a42ebbc
RR
22205
22206 if (fixP->fx_done || !seg->use_rela_p)
22207 encode_thumb2_b_bl_offset (buf, value);
22208
c19d1205 22209 break;
404ff6b5 22210
c19d1205 22211 case BFD_RELOC_THUMB_PCREL_BRANCH25:
08f10d51
NC
22212 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
22213 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
6c43fab6 22214
2fc8bdac 22215 if (fixP->fx_done || !seg->use_rela_p)
4a42ebbc 22216 encode_thumb2_b_bl_offset (buf, value);
6c43fab6 22217
2fc8bdac 22218 break;
a737bd4d 22219
2fc8bdac
ZW
22220 case BFD_RELOC_8:
22221 if (fixP->fx_done || !seg->use_rela_p)
22222 md_number_to_chars (buf, value, 1);
c19d1205 22223 break;
a737bd4d 22224
c19d1205 22225 case BFD_RELOC_16:
2fc8bdac 22226 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 22227 md_number_to_chars (buf, value, 2);
c19d1205 22228 break;
a737bd4d 22229
c19d1205 22230#ifdef OBJ_ELF
0855e32b
NS
22231 case BFD_RELOC_ARM_TLS_CALL:
22232 case BFD_RELOC_ARM_THM_TLS_CALL:
22233 case BFD_RELOC_ARM_TLS_DESCSEQ:
22234 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
22235 S_SET_THREAD_LOCAL (fixP->fx_addsy);
22236 break;
22237
22238 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22239 case BFD_RELOC_ARM_TLS_GD32:
22240 case BFD_RELOC_ARM_TLS_LE32:
22241 case BFD_RELOC_ARM_TLS_IE32:
22242 case BFD_RELOC_ARM_TLS_LDM32:
22243 case BFD_RELOC_ARM_TLS_LDO32:
22244 S_SET_THREAD_LOCAL (fixP->fx_addsy);
22245 /* fall through */
6c43fab6 22246
c19d1205
ZW
22247 case BFD_RELOC_ARM_GOT32:
22248 case BFD_RELOC_ARM_GOTOFF:
2fc8bdac
ZW
22249 if (fixP->fx_done || !seg->use_rela_p)
22250 md_number_to_chars (buf, 0, 4);
c19d1205 22251 break;
b43420e6
NC
22252
22253 case BFD_RELOC_ARM_GOT_PREL:
22254 if (fixP->fx_done || !seg->use_rela_p)
477330fc 22255 md_number_to_chars (buf, value, 4);
b43420e6
NC
22256 break;
22257
9a6f4e97
NS
22258 case BFD_RELOC_ARM_TARGET2:
22259 /* TARGET2 is not partial-inplace, so we need to write the
477330fc
RM
22260 addend here for REL targets, because it won't be written out
22261 during reloc processing later. */
9a6f4e97
NS
22262 if (fixP->fx_done || !seg->use_rela_p)
22263 md_number_to_chars (buf, fixP->fx_offset, 4);
22264 break;
c19d1205 22265#endif
6c43fab6 22266
c19d1205
ZW
22267 case BFD_RELOC_RVA:
22268 case BFD_RELOC_32:
22269 case BFD_RELOC_ARM_TARGET1:
22270 case BFD_RELOC_ARM_ROSEGREL32:
22271 case BFD_RELOC_ARM_SBREL32:
22272 case BFD_RELOC_32_PCREL:
f0927246
NC
22273#ifdef TE_PE
22274 case BFD_RELOC_32_SECREL:
22275#endif
2fc8bdac 22276 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
22277#ifdef TE_WINCE
22278 /* For WinCE we only do this for pcrel fixups. */
22279 if (fixP->fx_done || fixP->fx_pcrel)
22280#endif
22281 md_number_to_chars (buf, value, 4);
c19d1205 22282 break;
6c43fab6 22283
c19d1205
ZW
22284#ifdef OBJ_ELF
22285 case BFD_RELOC_ARM_PREL31:
2fc8bdac 22286 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
22287 {
22288 newval = md_chars_to_number (buf, 4) & 0x80000000;
22289 if ((value ^ (value >> 1)) & 0x40000000)
22290 {
22291 as_bad_where (fixP->fx_file, fixP->fx_line,
22292 _("rel31 relocation overflow"));
22293 }
22294 newval |= value & 0x7fffffff;
22295 md_number_to_chars (buf, newval, 4);
22296 }
22297 break;
c19d1205 22298#endif
a737bd4d 22299
c19d1205 22300 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 22301 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
c19d1205
ZW
22302 if (value < -1023 || value > 1023 || (value & 3))
22303 as_bad_where (fixP->fx_file, fixP->fx_line,
22304 _("co-processor offset out of range"));
22305 cp_off_common:
26d97720 22306 sign = value > 0;
c19d1205
ZW
22307 if (value < 0)
22308 value = -value;
8f06b2d8
PB
22309 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22310 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22311 newval = md_chars_to_number (buf, INSN_SIZE);
22312 else
22313 newval = get_thumb32_insn (buf);
26d97720
NS
22314 if (value == 0)
22315 newval &= 0xffffff00;
22316 else
22317 {
22318 newval &= 0xff7fff00;
22319 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
22320 }
8f06b2d8
PB
22321 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22322 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22323 md_number_to_chars (buf, newval, INSN_SIZE);
22324 else
22325 put_thumb32_insn (buf, newval);
c19d1205 22326 break;
a737bd4d 22327
c19d1205 22328 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 22329 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
22330 if (value < -255 || value > 255)
22331 as_bad_where (fixP->fx_file, fixP->fx_line,
22332 _("co-processor offset out of range"));
df7849c5 22333 value *= 4;
c19d1205 22334 goto cp_off_common;
6c43fab6 22335
c19d1205
ZW
22336 case BFD_RELOC_ARM_THUMB_OFFSET:
22337 newval = md_chars_to_number (buf, THUMB_SIZE);
22338 /* Exactly what ranges, and where the offset is inserted depends
22339 on the type of instruction, we can establish this from the
22340 top 4 bits. */
22341 switch (newval >> 12)
22342 {
22343 case 4: /* PC load. */
22344 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
22345 forced to zero for these loads; md_pcrel_from has already
22346 compensated for this. */
22347 if (value & 3)
22348 as_bad_where (fixP->fx_file, fixP->fx_line,
22349 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
22350 (((unsigned long) fixP->fx_frag->fr_address
22351 + (unsigned long) fixP->fx_where) & ~3)
22352 + (unsigned long) value);
a737bd4d 22353
c19d1205
ZW
22354 if (value & ~0x3fc)
22355 as_bad_where (fixP->fx_file, fixP->fx_line,
22356 _("invalid offset, value too big (0x%08lX)"),
22357 (long) value);
a737bd4d 22358
c19d1205
ZW
22359 newval |= value >> 2;
22360 break;
a737bd4d 22361
c19d1205
ZW
22362 case 9: /* SP load/store. */
22363 if (value & ~0x3fc)
22364 as_bad_where (fixP->fx_file, fixP->fx_line,
22365 _("invalid offset, value too big (0x%08lX)"),
22366 (long) value);
22367 newval |= value >> 2;
22368 break;
6c43fab6 22369
c19d1205
ZW
22370 case 6: /* Word load/store. */
22371 if (value & ~0x7c)
22372 as_bad_where (fixP->fx_file, fixP->fx_line,
22373 _("invalid offset, value too big (0x%08lX)"),
22374 (long) value);
22375 newval |= value << 4; /* 6 - 2. */
22376 break;
a737bd4d 22377
c19d1205
ZW
22378 case 7: /* Byte load/store. */
22379 if (value & ~0x1f)
22380 as_bad_where (fixP->fx_file, fixP->fx_line,
22381 _("invalid offset, value too big (0x%08lX)"),
22382 (long) value);
22383 newval |= value << 6;
22384 break;
a737bd4d 22385
c19d1205
ZW
22386 case 8: /* Halfword load/store. */
22387 if (value & ~0x3e)
22388 as_bad_where (fixP->fx_file, fixP->fx_line,
22389 _("invalid offset, value too big (0x%08lX)"),
22390 (long) value);
22391 newval |= value << 5; /* 6 - 1. */
22392 break;
a737bd4d 22393
c19d1205
ZW
22394 default:
22395 as_bad_where (fixP->fx_file, fixP->fx_line,
22396 "Unable to process relocation for thumb opcode: %lx",
22397 (unsigned long) newval);
22398 break;
22399 }
22400 md_number_to_chars (buf, newval, THUMB_SIZE);
22401 break;
a737bd4d 22402
c19d1205
ZW
22403 case BFD_RELOC_ARM_THUMB_ADD:
22404 /* This is a complicated relocation, since we use it for all of
22405 the following immediate relocations:
a737bd4d 22406
c19d1205
ZW
22407 3bit ADD/SUB
22408 8bit ADD/SUB
22409 9bit ADD/SUB SP word-aligned
22410 10bit ADD PC/SP word-aligned
a737bd4d 22411
c19d1205
ZW
22412 The type of instruction being processed is encoded in the
22413 instruction field:
a737bd4d 22414
c19d1205
ZW
22415 0x8000 SUB
22416 0x00F0 Rd
22417 0x000F Rs
22418 */
22419 newval = md_chars_to_number (buf, THUMB_SIZE);
22420 {
22421 int rd = (newval >> 4) & 0xf;
22422 int rs = newval & 0xf;
22423 int subtract = !!(newval & 0x8000);
a737bd4d 22424
c19d1205
ZW
22425 /* Check for HI regs, only very restricted cases allowed:
22426 Adjusting SP, and using PC or SP to get an address. */
22427 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
22428 || (rs > 7 && rs != REG_SP && rs != REG_PC))
22429 as_bad_where (fixP->fx_file, fixP->fx_line,
22430 _("invalid Hi register with immediate"));
a737bd4d 22431
c19d1205
ZW
22432 /* If value is negative, choose the opposite instruction. */
22433 if (value < 0)
22434 {
22435 value = -value;
22436 subtract = !subtract;
22437 if (value < 0)
22438 as_bad_where (fixP->fx_file, fixP->fx_line,
22439 _("immediate value out of range"));
22440 }
a737bd4d 22441
c19d1205
ZW
22442 if (rd == REG_SP)
22443 {
22444 if (value & ~0x1fc)
22445 as_bad_where (fixP->fx_file, fixP->fx_line,
22446 _("invalid immediate for stack address calculation"));
22447 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
22448 newval |= value >> 2;
22449 }
22450 else if (rs == REG_PC || rs == REG_SP)
22451 {
22452 if (subtract || value & ~0x3fc)
22453 as_bad_where (fixP->fx_file, fixP->fx_line,
22454 _("invalid immediate for address calculation (value = 0x%08lX)"),
22455 (unsigned long) value);
22456 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
22457 newval |= rd << 8;
22458 newval |= value >> 2;
22459 }
22460 else if (rs == rd)
22461 {
22462 if (value & ~0xff)
22463 as_bad_where (fixP->fx_file, fixP->fx_line,
22464 _("immediate value out of range"));
22465 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
22466 newval |= (rd << 8) | value;
22467 }
22468 else
22469 {
22470 if (value & ~0x7)
22471 as_bad_where (fixP->fx_file, fixP->fx_line,
22472 _("immediate value out of range"));
22473 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
22474 newval |= rd | (rs << 3) | (value << 6);
22475 }
22476 }
22477 md_number_to_chars (buf, newval, THUMB_SIZE);
22478 break;
a737bd4d 22479
c19d1205
ZW
22480 case BFD_RELOC_ARM_THUMB_IMM:
22481 newval = md_chars_to_number (buf, THUMB_SIZE);
22482 if (value < 0 || value > 255)
22483 as_bad_where (fixP->fx_file, fixP->fx_line,
4e6e072b 22484 _("invalid immediate: %ld is out of range"),
c19d1205
ZW
22485 (long) value);
22486 newval |= value;
22487 md_number_to_chars (buf, newval, THUMB_SIZE);
22488 break;
a737bd4d 22489
c19d1205
ZW
22490 case BFD_RELOC_ARM_THUMB_SHIFT:
22491 /* 5bit shift value (0..32). LSL cannot take 32. */
22492 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
22493 temp = newval & 0xf800;
22494 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
22495 as_bad_where (fixP->fx_file, fixP->fx_line,
22496 _("invalid shift value: %ld"), (long) value);
22497 /* Shifts of zero must be encoded as LSL. */
22498 if (value == 0)
22499 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
22500 /* Shifts of 32 are encoded as zero. */
22501 else if (value == 32)
22502 value = 0;
22503 newval |= value << 6;
22504 md_number_to_chars (buf, newval, THUMB_SIZE);
22505 break;
a737bd4d 22506
c19d1205
ZW
22507 case BFD_RELOC_VTABLE_INHERIT:
22508 case BFD_RELOC_VTABLE_ENTRY:
22509 fixP->fx_done = 0;
22510 return;
6c43fab6 22511
b6895b4f
PB
22512 case BFD_RELOC_ARM_MOVW:
22513 case BFD_RELOC_ARM_MOVT:
22514 case BFD_RELOC_ARM_THUMB_MOVW:
22515 case BFD_RELOC_ARM_THUMB_MOVT:
22516 if (fixP->fx_done || !seg->use_rela_p)
22517 {
22518 /* REL format relocations are limited to a 16-bit addend. */
22519 if (!fixP->fx_done)
22520 {
39623e12 22521 if (value < -0x8000 || value > 0x7fff)
b6895b4f 22522 as_bad_where (fixP->fx_file, fixP->fx_line,
ff5075ca 22523 _("offset out of range"));
b6895b4f
PB
22524 }
22525 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
22526 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22527 {
22528 value >>= 16;
22529 }
22530
22531 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
22532 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22533 {
22534 newval = get_thumb32_insn (buf);
22535 newval &= 0xfbf08f00;
22536 newval |= (value & 0xf000) << 4;
22537 newval |= (value & 0x0800) << 15;
22538 newval |= (value & 0x0700) << 4;
22539 newval |= (value & 0x00ff);
22540 put_thumb32_insn (buf, newval);
22541 }
22542 else
22543 {
22544 newval = md_chars_to_number (buf, 4);
22545 newval &= 0xfff0f000;
22546 newval |= value & 0x0fff;
22547 newval |= (value & 0xf000) << 4;
22548 md_number_to_chars (buf, newval, 4);
22549 }
22550 }
22551 return;
22552
4962c51a
MS
22553 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22554 case BFD_RELOC_ARM_ALU_PC_G0:
22555 case BFD_RELOC_ARM_ALU_PC_G1_NC:
22556 case BFD_RELOC_ARM_ALU_PC_G1:
22557 case BFD_RELOC_ARM_ALU_PC_G2:
22558 case BFD_RELOC_ARM_ALU_SB_G0_NC:
22559 case BFD_RELOC_ARM_ALU_SB_G0:
22560 case BFD_RELOC_ARM_ALU_SB_G1_NC:
22561 case BFD_RELOC_ARM_ALU_SB_G1:
22562 case BFD_RELOC_ARM_ALU_SB_G2:
9c2799c2 22563 gas_assert (!fixP->fx_done);
4962c51a
MS
22564 if (!seg->use_rela_p)
22565 {
477330fc
RM
22566 bfd_vma insn;
22567 bfd_vma encoded_addend;
22568 bfd_vma addend_abs = abs (value);
22569
22570 /* Check that the absolute value of the addend can be
22571 expressed as an 8-bit constant plus a rotation. */
22572 encoded_addend = encode_arm_immediate (addend_abs);
22573 if (encoded_addend == (unsigned int) FAIL)
4962c51a 22574 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
22575 _("the offset 0x%08lX is not representable"),
22576 (unsigned long) addend_abs);
22577
22578 /* Extract the instruction. */
22579 insn = md_chars_to_number (buf, INSN_SIZE);
22580
22581 /* If the addend is positive, use an ADD instruction.
22582 Otherwise use a SUB. Take care not to destroy the S bit. */
22583 insn &= 0xff1fffff;
22584 if (value < 0)
22585 insn |= 1 << 22;
22586 else
22587 insn |= 1 << 23;
22588
22589 /* Place the encoded addend into the first 12 bits of the
22590 instruction. */
22591 insn &= 0xfffff000;
22592 insn |= encoded_addend;
22593
22594 /* Update the instruction. */
22595 md_number_to_chars (buf, insn, INSN_SIZE);
4962c51a
MS
22596 }
22597 break;
22598
22599 case BFD_RELOC_ARM_LDR_PC_G0:
22600 case BFD_RELOC_ARM_LDR_PC_G1:
22601 case BFD_RELOC_ARM_LDR_PC_G2:
22602 case BFD_RELOC_ARM_LDR_SB_G0:
22603 case BFD_RELOC_ARM_LDR_SB_G1:
22604 case BFD_RELOC_ARM_LDR_SB_G2:
9c2799c2 22605 gas_assert (!fixP->fx_done);
4962c51a 22606 if (!seg->use_rela_p)
477330fc
RM
22607 {
22608 bfd_vma insn;
22609 bfd_vma addend_abs = abs (value);
4962c51a 22610
477330fc
RM
22611 /* Check that the absolute value of the addend can be
22612 encoded in 12 bits. */
22613 if (addend_abs >= 0x1000)
4962c51a 22614 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
22615 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
22616 (unsigned long) addend_abs);
22617
22618 /* Extract the instruction. */
22619 insn = md_chars_to_number (buf, INSN_SIZE);
22620
22621 /* If the addend is negative, clear bit 23 of the instruction.
22622 Otherwise set it. */
22623 if (value < 0)
22624 insn &= ~(1 << 23);
22625 else
22626 insn |= 1 << 23;
22627
22628 /* Place the absolute value of the addend into the first 12 bits
22629 of the instruction. */
22630 insn &= 0xfffff000;
22631 insn |= addend_abs;
22632
22633 /* Update the instruction. */
22634 md_number_to_chars (buf, insn, INSN_SIZE);
22635 }
4962c51a
MS
22636 break;
22637
22638 case BFD_RELOC_ARM_LDRS_PC_G0:
22639 case BFD_RELOC_ARM_LDRS_PC_G1:
22640 case BFD_RELOC_ARM_LDRS_PC_G2:
22641 case BFD_RELOC_ARM_LDRS_SB_G0:
22642 case BFD_RELOC_ARM_LDRS_SB_G1:
22643 case BFD_RELOC_ARM_LDRS_SB_G2:
9c2799c2 22644 gas_assert (!fixP->fx_done);
4962c51a 22645 if (!seg->use_rela_p)
477330fc
RM
22646 {
22647 bfd_vma insn;
22648 bfd_vma addend_abs = abs (value);
4962c51a 22649
477330fc
RM
22650 /* Check that the absolute value of the addend can be
22651 encoded in 8 bits. */
22652 if (addend_abs >= 0x100)
4962c51a 22653 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
22654 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
22655 (unsigned long) addend_abs);
22656
22657 /* Extract the instruction. */
22658 insn = md_chars_to_number (buf, INSN_SIZE);
22659
22660 /* If the addend is negative, clear bit 23 of the instruction.
22661 Otherwise set it. */
22662 if (value < 0)
22663 insn &= ~(1 << 23);
22664 else
22665 insn |= 1 << 23;
22666
22667 /* Place the first four bits of the absolute value of the addend
22668 into the first 4 bits of the instruction, and the remaining
22669 four into bits 8 .. 11. */
22670 insn &= 0xfffff0f0;
22671 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
22672
22673 /* Update the instruction. */
22674 md_number_to_chars (buf, insn, INSN_SIZE);
22675 }
4962c51a
MS
22676 break;
22677
22678 case BFD_RELOC_ARM_LDC_PC_G0:
22679 case BFD_RELOC_ARM_LDC_PC_G1:
22680 case BFD_RELOC_ARM_LDC_PC_G2:
22681 case BFD_RELOC_ARM_LDC_SB_G0:
22682 case BFD_RELOC_ARM_LDC_SB_G1:
22683 case BFD_RELOC_ARM_LDC_SB_G2:
9c2799c2 22684 gas_assert (!fixP->fx_done);
4962c51a 22685 if (!seg->use_rela_p)
477330fc
RM
22686 {
22687 bfd_vma insn;
22688 bfd_vma addend_abs = abs (value);
4962c51a 22689
477330fc
RM
22690 /* Check that the absolute value of the addend is a multiple of
22691 four and, when divided by four, fits in 8 bits. */
22692 if (addend_abs & 0x3)
4962c51a 22693 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
22694 _("bad offset 0x%08lX (must be word-aligned)"),
22695 (unsigned long) addend_abs);
4962c51a 22696
477330fc 22697 if ((addend_abs >> 2) > 0xff)
4962c51a 22698 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
22699 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
22700 (unsigned long) addend_abs);
22701
22702 /* Extract the instruction. */
22703 insn = md_chars_to_number (buf, INSN_SIZE);
22704
22705 /* If the addend is negative, clear bit 23 of the instruction.
22706 Otherwise set it. */
22707 if (value < 0)
22708 insn &= ~(1 << 23);
22709 else
22710 insn |= 1 << 23;
22711
22712 /* Place the addend (divided by four) into the first eight
22713 bits of the instruction. */
22714 insn &= 0xfffffff0;
22715 insn |= addend_abs >> 2;
22716
22717 /* Update the instruction. */
22718 md_number_to_chars (buf, insn, INSN_SIZE);
22719 }
4962c51a
MS
22720 break;
22721
845b51d6
PB
22722 case BFD_RELOC_ARM_V4BX:
22723 /* This will need to go in the object file. */
22724 fixP->fx_done = 0;
22725 break;
22726
c19d1205
ZW
22727 case BFD_RELOC_UNUSED:
22728 default:
22729 as_bad_where (fixP->fx_file, fixP->fx_line,
22730 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
22731 }
6c43fab6
RE
22732}
22733
c19d1205
ZW
22734/* Translate internal representation of relocation info to BFD target
22735 format. */
a737bd4d 22736
c19d1205 22737arelent *
00a97672 22738tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 22739{
c19d1205
ZW
22740 arelent * reloc;
22741 bfd_reloc_code_real_type code;
a737bd4d 22742
21d799b5 22743 reloc = (arelent *) xmalloc (sizeof (arelent));
a737bd4d 22744
21d799b5 22745 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
c19d1205
ZW
22746 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
22747 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 22748
2fc8bdac 22749 if (fixp->fx_pcrel)
00a97672
RS
22750 {
22751 if (section->use_rela_p)
22752 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
22753 else
22754 fixp->fx_offset = reloc->address;
22755 }
c19d1205 22756 reloc->addend = fixp->fx_offset;
a737bd4d 22757
c19d1205 22758 switch (fixp->fx_r_type)
a737bd4d 22759 {
c19d1205
ZW
22760 case BFD_RELOC_8:
22761 if (fixp->fx_pcrel)
22762 {
22763 code = BFD_RELOC_8_PCREL;
22764 break;
22765 }
a737bd4d 22766
c19d1205
ZW
22767 case BFD_RELOC_16:
22768 if (fixp->fx_pcrel)
22769 {
22770 code = BFD_RELOC_16_PCREL;
22771 break;
22772 }
6c43fab6 22773
c19d1205
ZW
22774 case BFD_RELOC_32:
22775 if (fixp->fx_pcrel)
22776 {
22777 code = BFD_RELOC_32_PCREL;
22778 break;
22779 }
a737bd4d 22780
b6895b4f
PB
22781 case BFD_RELOC_ARM_MOVW:
22782 if (fixp->fx_pcrel)
22783 {
22784 code = BFD_RELOC_ARM_MOVW_PCREL;
22785 break;
22786 }
22787
22788 case BFD_RELOC_ARM_MOVT:
22789 if (fixp->fx_pcrel)
22790 {
22791 code = BFD_RELOC_ARM_MOVT_PCREL;
22792 break;
22793 }
22794
22795 case BFD_RELOC_ARM_THUMB_MOVW:
22796 if (fixp->fx_pcrel)
22797 {
22798 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
22799 break;
22800 }
22801
22802 case BFD_RELOC_ARM_THUMB_MOVT:
22803 if (fixp->fx_pcrel)
22804 {
22805 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
22806 break;
22807 }
22808
c19d1205
ZW
22809 case BFD_RELOC_NONE:
22810 case BFD_RELOC_ARM_PCREL_BRANCH:
22811 case BFD_RELOC_ARM_PCREL_BLX:
22812 case BFD_RELOC_RVA:
22813 case BFD_RELOC_THUMB_PCREL_BRANCH7:
22814 case BFD_RELOC_THUMB_PCREL_BRANCH9:
22815 case BFD_RELOC_THUMB_PCREL_BRANCH12:
22816 case BFD_RELOC_THUMB_PCREL_BRANCH20:
22817 case BFD_RELOC_THUMB_PCREL_BRANCH23:
22818 case BFD_RELOC_THUMB_PCREL_BRANCH25:
c19d1205
ZW
22819 case BFD_RELOC_VTABLE_ENTRY:
22820 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
22821#ifdef TE_PE
22822 case BFD_RELOC_32_SECREL:
22823#endif
c19d1205
ZW
22824 code = fixp->fx_r_type;
22825 break;
a737bd4d 22826
00adf2d4
JB
22827 case BFD_RELOC_THUMB_PCREL_BLX:
22828#ifdef OBJ_ELF
22829 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
22830 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
22831 else
22832#endif
22833 code = BFD_RELOC_THUMB_PCREL_BLX;
22834 break;
22835
c19d1205
ZW
22836 case BFD_RELOC_ARM_LITERAL:
22837 case BFD_RELOC_ARM_HWLITERAL:
22838 /* If this is called then the a literal has
22839 been referenced across a section boundary. */
22840 as_bad_where (fixp->fx_file, fixp->fx_line,
22841 _("literal referenced across section boundary"));
22842 return NULL;
a737bd4d 22843
c19d1205 22844#ifdef OBJ_ELF
0855e32b
NS
22845 case BFD_RELOC_ARM_TLS_CALL:
22846 case BFD_RELOC_ARM_THM_TLS_CALL:
22847 case BFD_RELOC_ARM_TLS_DESCSEQ:
22848 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
c19d1205
ZW
22849 case BFD_RELOC_ARM_GOT32:
22850 case BFD_RELOC_ARM_GOTOFF:
b43420e6 22851 case BFD_RELOC_ARM_GOT_PREL:
c19d1205
ZW
22852 case BFD_RELOC_ARM_PLT32:
22853 case BFD_RELOC_ARM_TARGET1:
22854 case BFD_RELOC_ARM_ROSEGREL32:
22855 case BFD_RELOC_ARM_SBREL32:
22856 case BFD_RELOC_ARM_PREL31:
22857 case BFD_RELOC_ARM_TARGET2:
22858 case BFD_RELOC_ARM_TLS_LE32:
22859 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
22860 case BFD_RELOC_ARM_PCREL_CALL:
22861 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
22862 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22863 case BFD_RELOC_ARM_ALU_PC_G0:
22864 case BFD_RELOC_ARM_ALU_PC_G1_NC:
22865 case BFD_RELOC_ARM_ALU_PC_G1:
22866 case BFD_RELOC_ARM_ALU_PC_G2:
22867 case BFD_RELOC_ARM_LDR_PC_G0:
22868 case BFD_RELOC_ARM_LDR_PC_G1:
22869 case BFD_RELOC_ARM_LDR_PC_G2:
22870 case BFD_RELOC_ARM_LDRS_PC_G0:
22871 case BFD_RELOC_ARM_LDRS_PC_G1:
22872 case BFD_RELOC_ARM_LDRS_PC_G2:
22873 case BFD_RELOC_ARM_LDC_PC_G0:
22874 case BFD_RELOC_ARM_LDC_PC_G1:
22875 case BFD_RELOC_ARM_LDC_PC_G2:
22876 case BFD_RELOC_ARM_ALU_SB_G0_NC:
22877 case BFD_RELOC_ARM_ALU_SB_G0:
22878 case BFD_RELOC_ARM_ALU_SB_G1_NC:
22879 case BFD_RELOC_ARM_ALU_SB_G1:
22880 case BFD_RELOC_ARM_ALU_SB_G2:
22881 case BFD_RELOC_ARM_LDR_SB_G0:
22882 case BFD_RELOC_ARM_LDR_SB_G1:
22883 case BFD_RELOC_ARM_LDR_SB_G2:
22884 case BFD_RELOC_ARM_LDRS_SB_G0:
22885 case BFD_RELOC_ARM_LDRS_SB_G1:
22886 case BFD_RELOC_ARM_LDRS_SB_G2:
22887 case BFD_RELOC_ARM_LDC_SB_G0:
22888 case BFD_RELOC_ARM_LDC_SB_G1:
22889 case BFD_RELOC_ARM_LDC_SB_G2:
845b51d6 22890 case BFD_RELOC_ARM_V4BX:
c19d1205
ZW
22891 code = fixp->fx_r_type;
22892 break;
a737bd4d 22893
0855e32b 22894 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22895 case BFD_RELOC_ARM_TLS_GD32:
22896 case BFD_RELOC_ARM_TLS_IE32:
22897 case BFD_RELOC_ARM_TLS_LDM32:
22898 /* BFD will include the symbol's address in the addend.
22899 But we don't want that, so subtract it out again here. */
22900 if (!S_IS_COMMON (fixp->fx_addsy))
22901 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
22902 code = fixp->fx_r_type;
22903 break;
22904#endif
a737bd4d 22905
c19d1205
ZW
22906 case BFD_RELOC_ARM_IMMEDIATE:
22907 as_bad_where (fixp->fx_file, fixp->fx_line,
22908 _("internal relocation (type: IMMEDIATE) not fixed up"));
22909 return NULL;
a737bd4d 22910
c19d1205
ZW
22911 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
22912 as_bad_where (fixp->fx_file, fixp->fx_line,
22913 _("ADRL used for a symbol not defined in the same file"));
22914 return NULL;
a737bd4d 22915
c19d1205 22916 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
22917 if (section->use_rela_p)
22918 {
22919 code = fixp->fx_r_type;
22920 break;
22921 }
22922
c19d1205
ZW
22923 if (fixp->fx_addsy != NULL
22924 && !S_IS_DEFINED (fixp->fx_addsy)
22925 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 22926 {
c19d1205
ZW
22927 as_bad_where (fixp->fx_file, fixp->fx_line,
22928 _("undefined local label `%s'"),
22929 S_GET_NAME (fixp->fx_addsy));
22930 return NULL;
a737bd4d
NC
22931 }
22932
c19d1205
ZW
22933 as_bad_where (fixp->fx_file, fixp->fx_line,
22934 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
22935 return NULL;
a737bd4d 22936
c19d1205
ZW
22937 default:
22938 {
22939 char * type;
6c43fab6 22940
c19d1205
ZW
22941 switch (fixp->fx_r_type)
22942 {
22943 case BFD_RELOC_NONE: type = "NONE"; break;
22944 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
22945 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 22946 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
22947 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
22948 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
22949 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
db187cb9 22950 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
8f06b2d8 22951 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
22952 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
22953 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
22954 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
22955 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
22956 default: type = _("<unknown>"); break;
22957 }
22958 as_bad_where (fixp->fx_file, fixp->fx_line,
22959 _("cannot represent %s relocation in this object file format"),
22960 type);
22961 return NULL;
22962 }
a737bd4d 22963 }
6c43fab6 22964
c19d1205
ZW
22965#ifdef OBJ_ELF
22966 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
22967 && GOT_symbol
22968 && fixp->fx_addsy == GOT_symbol)
22969 {
22970 code = BFD_RELOC_ARM_GOTPC;
22971 reloc->addend = fixp->fx_offset = reloc->address;
22972 }
22973#endif
6c43fab6 22974
c19d1205 22975 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 22976
c19d1205
ZW
22977 if (reloc->howto == NULL)
22978 {
22979 as_bad_where (fixp->fx_file, fixp->fx_line,
22980 _("cannot represent %s relocation in this object file format"),
22981 bfd_get_reloc_code_name (code));
22982 return NULL;
22983 }
6c43fab6 22984
c19d1205
ZW
22985 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
22986 vtable entry to be used in the relocation's section offset. */
22987 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
22988 reloc->address = fixp->fx_offset;
6c43fab6 22989
c19d1205 22990 return reloc;
6c43fab6
RE
22991}
22992
c19d1205 22993/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 22994
c19d1205
ZW
22995void
22996cons_fix_new_arm (fragS * frag,
22997 int where,
22998 int size,
22999 expressionS * exp)
6c43fab6 23000{
c19d1205
ZW
23001 bfd_reloc_code_real_type type;
23002 int pcrel = 0;
6c43fab6 23003
c19d1205
ZW
23004 /* Pick a reloc.
23005 FIXME: @@ Should look at CPU word size. */
23006 switch (size)
23007 {
23008 case 1:
23009 type = BFD_RELOC_8;
23010 break;
23011 case 2:
23012 type = BFD_RELOC_16;
23013 break;
23014 case 4:
23015 default:
23016 type = BFD_RELOC_32;
23017 break;
23018 case 8:
23019 type = BFD_RELOC_64;
23020 break;
23021 }
6c43fab6 23022
f0927246
NC
23023#ifdef TE_PE
23024 if (exp->X_op == O_secrel)
23025 {
23026 exp->X_op = O_symbol;
23027 type = BFD_RELOC_32_SECREL;
23028 }
23029#endif
23030
c19d1205
ZW
23031 fix_new_exp (frag, where, (int) size, exp, pcrel, type);
23032}
6c43fab6 23033
4343666d 23034#if defined (OBJ_COFF)
c19d1205
ZW
23035void
23036arm_validate_fix (fixS * fixP)
6c43fab6 23037{
c19d1205
ZW
23038 /* If the destination of the branch is a defined symbol which does not have
23039 the THUMB_FUNC attribute, then we must be calling a function which has
23040 the (interfacearm) attribute. We look for the Thumb entry point to that
23041 function and change the branch to refer to that function instead. */
23042 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
23043 && fixP->fx_addsy != NULL
23044 && S_IS_DEFINED (fixP->fx_addsy)
23045 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 23046 {
c19d1205 23047 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 23048 }
c19d1205
ZW
23049}
23050#endif
6c43fab6 23051
267bf995 23052
c19d1205
ZW
23053int
23054arm_force_relocation (struct fix * fixp)
23055{
23056#if defined (OBJ_COFF) && defined (TE_PE)
23057 if (fixp->fx_r_type == BFD_RELOC_RVA)
23058 return 1;
23059#endif
6c43fab6 23060
267bf995
RR
23061 /* In case we have a call or a branch to a function in ARM ISA mode from
23062 a thumb function or vice-versa force the relocation. These relocations
23063 are cleared off for some cores that might have blx and simple transformations
23064 are possible. */
23065
23066#ifdef OBJ_ELF
23067 switch (fixp->fx_r_type)
23068 {
23069 case BFD_RELOC_ARM_PCREL_JUMP:
23070 case BFD_RELOC_ARM_PCREL_CALL:
23071 case BFD_RELOC_THUMB_PCREL_BLX:
23072 if (THUMB_IS_FUNC (fixp->fx_addsy))
23073 return 1;
23074 break;
23075
23076 case BFD_RELOC_ARM_PCREL_BLX:
23077 case BFD_RELOC_THUMB_PCREL_BRANCH25:
23078 case BFD_RELOC_THUMB_PCREL_BRANCH20:
23079 case BFD_RELOC_THUMB_PCREL_BRANCH23:
23080 if (ARM_IS_FUNC (fixp->fx_addsy))
23081 return 1;
23082 break;
23083
23084 default:
23085 break;
23086 }
23087#endif
23088
b5884301
PB
23089 /* Resolve these relocations even if the symbol is extern or weak.
23090 Technically this is probably wrong due to symbol preemption.
23091 In practice these relocations do not have enough range to be useful
23092 at dynamic link time, and some code (e.g. in the Linux kernel)
23093 expects these references to be resolved. */
c19d1205
ZW
23094 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
23095 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
b5884301 23096 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
0110f2b8 23097 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
b5884301
PB
23098 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
23099 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
23100 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
16805f35 23101 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
23102 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
23103 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
b5884301
PB
23104 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
23105 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
23106 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
23107 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
c19d1205 23108 return 0;
a737bd4d 23109
4962c51a
MS
23110 /* Always leave these relocations for the linker. */
23111 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23112 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23113 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
23114 return 1;
23115
f0291e4c
PB
23116 /* Always generate relocations against function symbols. */
23117 if (fixp->fx_r_type == BFD_RELOC_32
23118 && fixp->fx_addsy
23119 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
23120 return 1;
23121
c19d1205 23122 return generic_force_reloc (fixp);
404ff6b5
AH
23123}
23124
0ffdc86c 23125#if defined (OBJ_ELF) || defined (OBJ_COFF)
e28387c3
PB
23126/* Relocations against function names must be left unadjusted,
23127 so that the linker can use this information to generate interworking
23128 stubs. The MIPS version of this function
c19d1205
ZW
23129 also prevents relocations that are mips-16 specific, but I do not
23130 know why it does this.
404ff6b5 23131
c19d1205
ZW
23132 FIXME:
23133 There is one other problem that ought to be addressed here, but
23134 which currently is not: Taking the address of a label (rather
23135 than a function) and then later jumping to that address. Such
23136 addresses also ought to have their bottom bit set (assuming that
23137 they reside in Thumb code), but at the moment they will not. */
404ff6b5 23138
c19d1205
ZW
23139bfd_boolean
23140arm_fix_adjustable (fixS * fixP)
404ff6b5 23141{
c19d1205
ZW
23142 if (fixP->fx_addsy == NULL)
23143 return 1;
404ff6b5 23144
e28387c3
PB
23145 /* Preserve relocations against symbols with function type. */
23146 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
c921be7d 23147 return FALSE;
e28387c3 23148
c19d1205
ZW
23149 if (THUMB_IS_FUNC (fixP->fx_addsy)
23150 && fixP->fx_subsy == NULL)
c921be7d 23151 return FALSE;
a737bd4d 23152
c19d1205
ZW
23153 /* We need the symbol name for the VTABLE entries. */
23154 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
23155 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
c921be7d 23156 return FALSE;
404ff6b5 23157
c19d1205
ZW
23158 /* Don't allow symbols to be discarded on GOT related relocs. */
23159 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
23160 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
23161 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
23162 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
23163 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
23164 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
23165 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
23166 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
0855e32b
NS
23167 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
23168 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
23169 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
23170 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
23171 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
c19d1205 23172 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
c921be7d 23173 return FALSE;
a737bd4d 23174
4962c51a
MS
23175 /* Similarly for group relocations. */
23176 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23177 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23178 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
c921be7d 23179 return FALSE;
4962c51a 23180
79947c54
CD
23181 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
23182 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
23183 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
23184 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
23185 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
23186 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
23187 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
23188 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
23189 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
c921be7d 23190 return FALSE;
79947c54 23191
c921be7d 23192 return TRUE;
a737bd4d 23193}
0ffdc86c
NC
23194#endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
23195
23196#ifdef OBJ_ELF
404ff6b5 23197
c19d1205
ZW
23198const char *
23199elf32_arm_target_format (void)
404ff6b5 23200{
c19d1205
ZW
23201#ifdef TE_SYMBIAN
23202 return (target_big_endian
23203 ? "elf32-bigarm-symbian"
23204 : "elf32-littlearm-symbian");
23205#elif defined (TE_VXWORKS)
23206 return (target_big_endian
23207 ? "elf32-bigarm-vxworks"
23208 : "elf32-littlearm-vxworks");
b38cadfb
NC
23209#elif defined (TE_NACL)
23210 return (target_big_endian
23211 ? "elf32-bigarm-nacl"
23212 : "elf32-littlearm-nacl");
c19d1205
ZW
23213#else
23214 if (target_big_endian)
23215 return "elf32-bigarm";
23216 else
23217 return "elf32-littlearm";
23218#endif
404ff6b5
AH
23219}
23220
c19d1205
ZW
23221void
23222armelf_frob_symbol (symbolS * symp,
23223 int * puntp)
404ff6b5 23224{
c19d1205
ZW
23225 elf_frob_symbol (symp, puntp);
23226}
23227#endif
404ff6b5 23228
c19d1205 23229/* MD interface: Finalization. */
a737bd4d 23230
c19d1205
ZW
23231void
23232arm_cleanup (void)
23233{
23234 literal_pool * pool;
a737bd4d 23235
e07e6e58
NC
23236 /* Ensure that all the IT blocks are properly closed. */
23237 check_it_blocks_finished ();
23238
c19d1205
ZW
23239 for (pool = list_of_pools; pool; pool = pool->next)
23240 {
5f4273c7 23241 /* Put it at the end of the relevant section. */
c19d1205
ZW
23242 subseg_set (pool->section, pool->sub_section);
23243#ifdef OBJ_ELF
23244 arm_elf_change_section ();
23245#endif
23246 s_ltorg (0);
23247 }
404ff6b5
AH
23248}
23249
cd000bff
DJ
23250#ifdef OBJ_ELF
23251/* Remove any excess mapping symbols generated for alignment frags in
23252 SEC. We may have created a mapping symbol before a zero byte
23253 alignment; remove it if there's a mapping symbol after the
23254 alignment. */
23255static void
23256check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
23257 void *dummy ATTRIBUTE_UNUSED)
23258{
23259 segment_info_type *seginfo = seg_info (sec);
23260 fragS *fragp;
23261
23262 if (seginfo == NULL || seginfo->frchainP == NULL)
23263 return;
23264
23265 for (fragp = seginfo->frchainP->frch_root;
23266 fragp != NULL;
23267 fragp = fragp->fr_next)
23268 {
23269 symbolS *sym = fragp->tc_frag_data.last_map;
23270 fragS *next = fragp->fr_next;
23271
23272 /* Variable-sized frags have been converted to fixed size by
23273 this point. But if this was variable-sized to start with,
23274 there will be a fixed-size frag after it. So don't handle
23275 next == NULL. */
23276 if (sym == NULL || next == NULL)
23277 continue;
23278
23279 if (S_GET_VALUE (sym) < next->fr_address)
23280 /* Not at the end of this frag. */
23281 continue;
23282 know (S_GET_VALUE (sym) == next->fr_address);
23283
23284 do
23285 {
23286 if (next->tc_frag_data.first_map != NULL)
23287 {
23288 /* Next frag starts with a mapping symbol. Discard this
23289 one. */
23290 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23291 break;
23292 }
23293
23294 if (next->fr_next == NULL)
23295 {
23296 /* This mapping symbol is at the end of the section. Discard
23297 it. */
23298 know (next->fr_fix == 0 && next->fr_var == 0);
23299 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23300 break;
23301 }
23302
23303 /* As long as we have empty frags without any mapping symbols,
23304 keep looking. */
23305 /* If the next frag is non-empty and does not start with a
23306 mapping symbol, then this mapping symbol is required. */
23307 if (next->fr_address != next->fr_next->fr_address)
23308 break;
23309
23310 next = next->fr_next;
23311 }
23312 while (next != NULL);
23313 }
23314}
23315#endif
23316
c19d1205
ZW
23317/* Adjust the symbol table. This marks Thumb symbols as distinct from
23318 ARM ones. */
404ff6b5 23319
c19d1205
ZW
23320void
23321arm_adjust_symtab (void)
404ff6b5 23322{
c19d1205
ZW
23323#ifdef OBJ_COFF
23324 symbolS * sym;
404ff6b5 23325
c19d1205
ZW
23326 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
23327 {
23328 if (ARM_IS_THUMB (sym))
23329 {
23330 if (THUMB_IS_FUNC (sym))
23331 {
23332 /* Mark the symbol as a Thumb function. */
23333 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
23334 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
23335 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 23336
c19d1205
ZW
23337 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
23338 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
23339 else
23340 as_bad (_("%s: unexpected function type: %d"),
23341 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
23342 }
23343 else switch (S_GET_STORAGE_CLASS (sym))
23344 {
23345 case C_EXT:
23346 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
23347 break;
23348 case C_STAT:
23349 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
23350 break;
23351 case C_LABEL:
23352 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
23353 break;
23354 default:
23355 /* Do nothing. */
23356 break;
23357 }
23358 }
a737bd4d 23359
c19d1205
ZW
23360 if (ARM_IS_INTERWORK (sym))
23361 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 23362 }
c19d1205
ZW
23363#endif
23364#ifdef OBJ_ELF
23365 symbolS * sym;
23366 char bind;
404ff6b5 23367
c19d1205 23368 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 23369 {
c19d1205
ZW
23370 if (ARM_IS_THUMB (sym))
23371 {
23372 elf_symbol_type * elf_sym;
404ff6b5 23373
c19d1205
ZW
23374 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
23375 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 23376
b0796911
PB
23377 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
23378 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
23379 {
23380 /* If it's a .thumb_func, declare it as so,
23381 otherwise tag label as .code 16. */
23382 if (THUMB_IS_FUNC (sym))
35fc36a8
RS
23383 elf_sym->internal_elf_sym.st_target_internal
23384 = ST_BRANCH_TO_THUMB;
3ba67470 23385 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
c19d1205
ZW
23386 elf_sym->internal_elf_sym.st_info =
23387 ELF_ST_INFO (bind, STT_ARM_16BIT);
23388 }
23389 }
23390 }
cd000bff
DJ
23391
23392 /* Remove any overlapping mapping symbols generated by alignment frags. */
23393 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
709001e9
MM
23394 /* Now do generic ELF adjustments. */
23395 elf_adjust_symtab ();
c19d1205 23396#endif
404ff6b5
AH
23397}
23398
c19d1205 23399/* MD interface: Initialization. */
404ff6b5 23400
a737bd4d 23401static void
c19d1205 23402set_constant_flonums (void)
a737bd4d 23403{
c19d1205 23404 int i;
404ff6b5 23405
c19d1205
ZW
23406 for (i = 0; i < NUM_FLOAT_VALS; i++)
23407 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
23408 abort ();
a737bd4d 23409}
404ff6b5 23410
3e9e4fcf
JB
23411/* Auto-select Thumb mode if it's the only available instruction set for the
23412 given architecture. */
23413
23414static void
23415autoselect_thumb_from_cpu_variant (void)
23416{
23417 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
23418 opcode_select (16);
23419}
23420
c19d1205
ZW
23421void
23422md_begin (void)
a737bd4d 23423{
c19d1205
ZW
23424 unsigned mach;
23425 unsigned int i;
404ff6b5 23426
c19d1205
ZW
23427 if ( (arm_ops_hsh = hash_new ()) == NULL
23428 || (arm_cond_hsh = hash_new ()) == NULL
23429 || (arm_shift_hsh = hash_new ()) == NULL
23430 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 23431 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 23432 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
23433 || (arm_reloc_hsh = hash_new ()) == NULL
23434 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
23435 as_fatal (_("virtual memory exhausted"));
23436
23437 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
d3ce72d0 23438 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
c19d1205 23439 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
d3ce72d0 23440 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
c19d1205 23441 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
5a49b8ac 23442 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
c19d1205 23443 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 23444 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
62b3e311 23445 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 23446 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
477330fc 23447 (void *) (v7m_psrs + i));
c19d1205 23448 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
5a49b8ac 23449 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
62b3e311
PB
23450 for (i = 0;
23451 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
23452 i++)
d3ce72d0 23453 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
5a49b8ac 23454 (void *) (barrier_opt_names + i));
c19d1205 23455#ifdef OBJ_ELF
3da1d841
NC
23456 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
23457 {
23458 struct reloc_entry * entry = reloc_names + i;
23459
23460 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
23461 /* This makes encode_branch() use the EABI versions of this relocation. */
23462 entry->reloc = BFD_RELOC_UNUSED;
23463
23464 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
23465 }
c19d1205
ZW
23466#endif
23467
23468 set_constant_flonums ();
404ff6b5 23469
c19d1205
ZW
23470 /* Set the cpu variant based on the command-line options. We prefer
23471 -mcpu= over -march= if both are set (as for GCC); and we prefer
23472 -mfpu= over any other way of setting the floating point unit.
23473 Use of legacy options with new options are faulted. */
e74cfd16 23474 if (legacy_cpu)
404ff6b5 23475 {
e74cfd16 23476 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
23477 as_bad (_("use of old and new-style options to set CPU type"));
23478
23479 mcpu_cpu_opt = legacy_cpu;
404ff6b5 23480 }
e74cfd16 23481 else if (!mcpu_cpu_opt)
c19d1205 23482 mcpu_cpu_opt = march_cpu_opt;
404ff6b5 23483
e74cfd16 23484 if (legacy_fpu)
c19d1205 23485 {
e74cfd16 23486 if (mfpu_opt)
c19d1205 23487 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
23488
23489 mfpu_opt = legacy_fpu;
23490 }
e74cfd16 23491 else if (!mfpu_opt)
03b1477f 23492 {
45eb4c1b
NS
23493#if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
23494 || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
23495 /* Some environments specify a default FPU. If they don't, infer it
23496 from the processor. */
e74cfd16 23497 if (mcpu_fpu_opt)
03b1477f
RE
23498 mfpu_opt = mcpu_fpu_opt;
23499 else
23500 mfpu_opt = march_fpu_opt;
39c2da32 23501#else
e74cfd16 23502 mfpu_opt = &fpu_default;
39c2da32 23503#endif
03b1477f
RE
23504 }
23505
e74cfd16 23506 if (!mfpu_opt)
03b1477f 23507 {
493cb6ef 23508 if (mcpu_cpu_opt != NULL)
e74cfd16 23509 mfpu_opt = &fpu_default;
493cb6ef 23510 else if (mcpu_fpu_opt != NULL && ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
e74cfd16 23511 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 23512 else
e74cfd16 23513 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
23514 }
23515
ee065d83 23516#ifdef CPU_DEFAULT
e74cfd16 23517 if (!mcpu_cpu_opt)
ee065d83 23518 {
e74cfd16
PB
23519 mcpu_cpu_opt = &cpu_default;
23520 selected_cpu = cpu_default;
ee065d83 23521 }
e74cfd16
PB
23522#else
23523 if (mcpu_cpu_opt)
23524 selected_cpu = *mcpu_cpu_opt;
ee065d83 23525 else
e74cfd16 23526 mcpu_cpu_opt = &arm_arch_any;
ee065d83 23527#endif
03b1477f 23528
e74cfd16 23529 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
03b1477f 23530
3e9e4fcf
JB
23531 autoselect_thumb_from_cpu_variant ();
23532
e74cfd16 23533 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 23534
f17c130b 23535#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 23536 {
7cc69913
NC
23537 unsigned int flags = 0;
23538
23539#if defined OBJ_ELF
23540 flags = meabi_flags;
d507cf36
PB
23541
23542 switch (meabi_flags)
33a392fb 23543 {
d507cf36 23544 case EF_ARM_EABI_UNKNOWN:
7cc69913 23545#endif
d507cf36
PB
23546 /* Set the flags in the private structure. */
23547 if (uses_apcs_26) flags |= F_APCS26;
23548 if (support_interwork) flags |= F_INTERWORK;
23549 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 23550 if (pic_code) flags |= F_PIC;
e74cfd16 23551 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
23552 flags |= F_SOFT_FLOAT;
23553
d507cf36
PB
23554 switch (mfloat_abi_opt)
23555 {
23556 case ARM_FLOAT_ABI_SOFT:
23557 case ARM_FLOAT_ABI_SOFTFP:
23558 flags |= F_SOFT_FLOAT;
23559 break;
33a392fb 23560
d507cf36
PB
23561 case ARM_FLOAT_ABI_HARD:
23562 if (flags & F_SOFT_FLOAT)
23563 as_bad (_("hard-float conflicts with specified fpu"));
23564 break;
23565 }
03b1477f 23566
e74cfd16
PB
23567 /* Using pure-endian doubles (even if soft-float). */
23568 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 23569 flags |= F_VFP_FLOAT;
f17c130b 23570
fde78edd 23571#if defined OBJ_ELF
e74cfd16 23572 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 23573 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
23574 break;
23575
8cb51566 23576 case EF_ARM_EABI_VER4:
3a4a14e9 23577 case EF_ARM_EABI_VER5:
c19d1205 23578 /* No additional flags to set. */
d507cf36
PB
23579 break;
23580
23581 default:
23582 abort ();
23583 }
7cc69913 23584#endif
b99bd4ef
NC
23585 bfd_set_private_flags (stdoutput, flags);
23586
23587 /* We have run out flags in the COFF header to encode the
23588 status of ATPCS support, so instead we create a dummy,
c19d1205 23589 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
23590 if (atpcs)
23591 {
23592 asection * sec;
23593
23594 sec = bfd_make_section (stdoutput, ".arm.atpcs");
23595
23596 if (sec != NULL)
23597 {
23598 bfd_set_section_flags
23599 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
23600 bfd_set_section_size (stdoutput, sec, 0);
23601 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
23602 }
23603 }
7cc69913 23604 }
f17c130b 23605#endif
b99bd4ef
NC
23606
23607 /* Record the CPU type as well. */
2d447fca
JM
23608 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
23609 mach = bfd_mach_arm_iWMMXt2;
23610 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 23611 mach = bfd_mach_arm_iWMMXt;
e74cfd16 23612 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 23613 mach = bfd_mach_arm_XScale;
e74cfd16 23614 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 23615 mach = bfd_mach_arm_ep9312;
e74cfd16 23616 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 23617 mach = bfd_mach_arm_5TE;
e74cfd16 23618 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 23619 {
e74cfd16 23620 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
23621 mach = bfd_mach_arm_5T;
23622 else
23623 mach = bfd_mach_arm_5;
23624 }
e74cfd16 23625 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 23626 {
e74cfd16 23627 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
23628 mach = bfd_mach_arm_4T;
23629 else
23630 mach = bfd_mach_arm_4;
23631 }
e74cfd16 23632 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 23633 mach = bfd_mach_arm_3M;
e74cfd16
PB
23634 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
23635 mach = bfd_mach_arm_3;
23636 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
23637 mach = bfd_mach_arm_2a;
23638 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
23639 mach = bfd_mach_arm_2;
23640 else
23641 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
23642
23643 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
23644}
23645
c19d1205 23646/* Command line processing. */
b99bd4ef 23647
c19d1205
ZW
23648/* md_parse_option
23649 Invocation line includes a switch not recognized by the base assembler.
23650 See if it's a processor-specific option.
b99bd4ef 23651
c19d1205
ZW
23652 This routine is somewhat complicated by the need for backwards
23653 compatibility (since older releases of gcc can't be changed).
23654 The new options try to make the interface as compatible as
23655 possible with GCC.
b99bd4ef 23656
c19d1205 23657 New options (supported) are:
b99bd4ef 23658
c19d1205
ZW
23659 -mcpu=<cpu name> Assemble for selected processor
23660 -march=<architecture name> Assemble for selected architecture
23661 -mfpu=<fpu architecture> Assemble for selected FPU.
23662 -EB/-mbig-endian Big-endian
23663 -EL/-mlittle-endian Little-endian
23664 -k Generate PIC code
23665 -mthumb Start in Thumb mode
23666 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 23667
278df34e 23668 -m[no-]warn-deprecated Warn about deprecated features
267bf995 23669
c19d1205 23670 For now we will also provide support for:
b99bd4ef 23671
c19d1205
ZW
23672 -mapcs-32 32-bit Program counter
23673 -mapcs-26 26-bit Program counter
23674 -macps-float Floats passed in FP registers
23675 -mapcs-reentrant Reentrant code
23676 -matpcs
23677 (sometime these will probably be replaced with -mapcs=<list of options>
23678 and -matpcs=<list of options>)
b99bd4ef 23679
c19d1205
ZW
23680 The remaining options are only supported for back-wards compatibility.
23681 Cpu variants, the arm part is optional:
23682 -m[arm]1 Currently not supported.
23683 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
23684 -m[arm]3 Arm 3 processor
23685 -m[arm]6[xx], Arm 6 processors
23686 -m[arm]7[xx][t][[d]m] Arm 7 processors
23687 -m[arm]8[10] Arm 8 processors
23688 -m[arm]9[20][tdmi] Arm 9 processors
23689 -mstrongarm[110[0]] StrongARM processors
23690 -mxscale XScale processors
23691 -m[arm]v[2345[t[e]]] Arm architectures
23692 -mall All (except the ARM1)
23693 FP variants:
23694 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
23695 -mfpe-old (No float load/store multiples)
23696 -mvfpxd VFP Single precision
23697 -mvfp All VFP
23698 -mno-fpu Disable all floating point instructions
b99bd4ef 23699
c19d1205
ZW
23700 The following CPU names are recognized:
23701 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
23702 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
23703 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
23704 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
23705 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
23706 arm10t arm10e, arm1020t, arm1020e, arm10200e,
23707 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 23708
c19d1205 23709 */
b99bd4ef 23710
c19d1205 23711const char * md_shortopts = "m:k";
b99bd4ef 23712
c19d1205
ZW
23713#ifdef ARM_BI_ENDIAN
23714#define OPTION_EB (OPTION_MD_BASE + 0)
23715#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 23716#else
c19d1205
ZW
23717#if TARGET_BYTES_BIG_ENDIAN
23718#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 23719#else
c19d1205
ZW
23720#define OPTION_EL (OPTION_MD_BASE + 1)
23721#endif
b99bd4ef 23722#endif
845b51d6 23723#define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
b99bd4ef 23724
c19d1205 23725struct option md_longopts[] =
b99bd4ef 23726{
c19d1205
ZW
23727#ifdef OPTION_EB
23728 {"EB", no_argument, NULL, OPTION_EB},
23729#endif
23730#ifdef OPTION_EL
23731 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 23732#endif
845b51d6 23733 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
c19d1205
ZW
23734 {NULL, no_argument, NULL, 0}
23735};
b99bd4ef 23736
c19d1205 23737size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 23738
c19d1205 23739struct arm_option_table
b99bd4ef 23740{
c19d1205
ZW
23741 char *option; /* Option name to match. */
23742 char *help; /* Help information. */
23743 int *var; /* Variable to change. */
23744 int value; /* What to change it to. */
23745 char *deprecated; /* If non-null, print this message. */
23746};
b99bd4ef 23747
c19d1205
ZW
23748struct arm_option_table arm_opts[] =
23749{
23750 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
23751 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
23752 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
23753 &support_interwork, 1, NULL},
23754 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
23755 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
23756 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
23757 1, NULL},
23758 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
23759 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
23760 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
23761 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
23762 NULL},
b99bd4ef 23763
c19d1205
ZW
23764 /* These are recognized by the assembler, but have no affect on code. */
23765 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
23766 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
278df34e
NS
23767
23768 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
23769 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
23770 &warn_on_deprecated, 0, NULL},
e74cfd16
PB
23771 {NULL, NULL, NULL, 0, NULL}
23772};
23773
23774struct arm_legacy_option_table
23775{
23776 char *option; /* Option name to match. */
23777 const arm_feature_set **var; /* Variable to change. */
23778 const arm_feature_set value; /* What to change it to. */
23779 char *deprecated; /* If non-null, print this message. */
23780};
b99bd4ef 23781
e74cfd16
PB
23782const struct arm_legacy_option_table arm_legacy_opts[] =
23783{
c19d1205
ZW
23784 /* DON'T add any new processors to this list -- we want the whole list
23785 to go away... Add them to the processors table instead. */
e74cfd16
PB
23786 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
23787 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
23788 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
23789 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
23790 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
23791 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
23792 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
23793 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
23794 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
23795 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
23796 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
23797 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
23798 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
23799 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
23800 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
23801 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
23802 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
23803 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
23804 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
23805 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
23806 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
23807 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
23808 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
23809 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
23810 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
23811 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
23812 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
23813 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
23814 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
23815 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
23816 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
23817 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
23818 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
23819 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
23820 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
23821 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
23822 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
23823 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
23824 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
23825 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
23826 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
23827 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
23828 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
23829 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
23830 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
23831 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
23832 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23833 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23834 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23835 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23836 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
23837 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
23838 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
23839 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
23840 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
23841 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
23842 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
23843 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
23844 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
23845 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
23846 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
23847 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
23848 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
23849 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
23850 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
23851 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
23852 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
23853 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
23854 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
23855 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23856 N_("use -mcpu=strongarm110")},
e74cfd16 23857 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23858 N_("use -mcpu=strongarm1100")},
e74cfd16 23859 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23860 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
23861 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
23862 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
23863 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 23864
c19d1205 23865 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
23866 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
23867 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
23868 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
23869 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
23870 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
23871 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
23872 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
23873 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
23874 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
23875 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
23876 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
23877 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
23878 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
23879 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
23880 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
23881 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
23882 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
23883 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 23884
c19d1205 23885 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
23886 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
23887 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
23888 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
23889 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 23890 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 23891
e74cfd16 23892 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 23893};
7ed4c4c5 23894
c19d1205 23895struct arm_cpu_option_table
7ed4c4c5 23896{
c19d1205 23897 char *name;
f3bad469 23898 size_t name_len;
e74cfd16 23899 const arm_feature_set value;
c19d1205
ZW
23900 /* For some CPUs we assume an FPU unless the user explicitly sets
23901 -mfpu=... */
e74cfd16 23902 const arm_feature_set default_fpu;
ee065d83
PB
23903 /* The canonical name of the CPU, or NULL to use NAME converted to upper
23904 case. */
23905 const char *canonical_name;
c19d1205 23906};
7ed4c4c5 23907
c19d1205
ZW
23908/* This list should, at a minimum, contain all the cpu names
23909 recognized by GCC. */
f3bad469 23910#define ARM_CPU_OPT(N, V, DF, CN) { N, sizeof (N) - 1, V, DF, CN }
e74cfd16 23911static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 23912{
f3bad469
MGD
23913 ARM_CPU_OPT ("all", ARM_ANY, FPU_ARCH_FPA, NULL),
23914 ARM_CPU_OPT ("arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL),
23915 ARM_CPU_OPT ("arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL),
23916 ARM_CPU_OPT ("arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
23917 ARM_CPU_OPT ("arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
23918 ARM_CPU_OPT ("arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23919 ARM_CPU_OPT ("arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23920 ARM_CPU_OPT ("arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23921 ARM_CPU_OPT ("arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23922 ARM_CPU_OPT ("arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23923 ARM_CPU_OPT ("arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23924 ARM_CPU_OPT ("arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23925 ARM_CPU_OPT ("arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23926 ARM_CPU_OPT ("arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23927 ARM_CPU_OPT ("arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23928 ARM_CPU_OPT ("arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23929 ARM_CPU_OPT ("arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23930 ARM_CPU_OPT ("arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23931 ARM_CPU_OPT ("arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23932 ARM_CPU_OPT ("arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23933 ARM_CPU_OPT ("arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23934 ARM_CPU_OPT ("arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23935 ARM_CPU_OPT ("arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23936 ARM_CPU_OPT ("arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23937 ARM_CPU_OPT ("arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23938 ARM_CPU_OPT ("arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23939 ARM_CPU_OPT ("arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23940 ARM_CPU_OPT ("arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23941 ARM_CPU_OPT ("arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23942 ARM_CPU_OPT ("arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23943 ARM_CPU_OPT ("arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23944 ARM_CPU_OPT ("arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23945 ARM_CPU_OPT ("arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23946 ARM_CPU_OPT ("strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23947 ARM_CPU_OPT ("strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23948 ARM_CPU_OPT ("strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23949 ARM_CPU_OPT ("strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23950 ARM_CPU_OPT ("strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23951 ARM_CPU_OPT ("arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23952 ARM_CPU_OPT ("arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"),
23953 ARM_CPU_OPT ("arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23954 ARM_CPU_OPT ("arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23955 ARM_CPU_OPT ("arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23956 ARM_CPU_OPT ("arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23957 ARM_CPU_OPT ("fa526", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23958 ARM_CPU_OPT ("fa626", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
c19d1205
ZW
23959 /* For V5 or later processors we default to using VFP; but the user
23960 should really set the FPU type explicitly. */
f3bad469
MGD
23961 ARM_CPU_OPT ("arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23962 ARM_CPU_OPT ("arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23963 ARM_CPU_OPT ("arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23964 ARM_CPU_OPT ("arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23965 ARM_CPU_OPT ("arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23966 ARM_CPU_OPT ("arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23967 ARM_CPU_OPT ("arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"),
23968 ARM_CPU_OPT ("arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23969 ARM_CPU_OPT ("arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23970 ARM_CPU_OPT ("arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"),
23971 ARM_CPU_OPT ("arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23972 ARM_CPU_OPT ("arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23973 ARM_CPU_OPT ("arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23974 ARM_CPU_OPT ("arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23975 ARM_CPU_OPT ("arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23976 ARM_CPU_OPT ("arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"),
23977 ARM_CPU_OPT ("arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23978 ARM_CPU_OPT ("arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23979 ARM_CPU_OPT ("arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23980 ARM_CPU_OPT ("arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2,
23981 "ARM1026EJ-S"),
23982 ARM_CPU_OPT ("arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23983 ARM_CPU_OPT ("fa606te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23984 ARM_CPU_OPT ("fa616te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23985 ARM_CPU_OPT ("fa626te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23986 ARM_CPU_OPT ("fmp626", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23987 ARM_CPU_OPT ("fa726te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23988 ARM_CPU_OPT ("arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"),
23989 ARM_CPU_OPT ("arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL),
23990 ARM_CPU_OPT ("arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2,
23991 "ARM1136JF-S"),
23992 ARM_CPU_OPT ("arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL),
23993 ARM_CPU_OPT ("mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, "MPCore"),
23994 ARM_CPU_OPT ("mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, "MPCore"),
23995 ARM_CPU_OPT ("arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL),
23996 ARM_CPU_OPT ("arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL),
23997 ARM_CPU_OPT ("arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL),
23998 ARM_CPU_OPT ("arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL),
23999 ARM_CPU_OPT ("cortex-a5", ARM_ARCH_V7A_MP_SEC,
24000 FPU_NONE, "Cortex-A5"),
24001 ARM_CPU_OPT ("cortex-a7", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
24002 FPU_ARCH_NEON_VFP_V4,
24003 "Cortex-A7"),
24004 ARM_CPU_OPT ("cortex-a8", ARM_ARCH_V7A_SEC,
24005 ARM_FEATURE (0, FPU_VFP_V3
477330fc 24006 | FPU_NEON_EXT_V1),
f3bad469
MGD
24007 "Cortex-A8"),
24008 ARM_CPU_OPT ("cortex-a9", ARM_ARCH_V7A_MP_SEC,
24009 ARM_FEATURE (0, FPU_VFP_V3
477330fc 24010 | FPU_NEON_EXT_V1),
f3bad469 24011 "Cortex-A9"),
63a4bc21
KT
24012 ARM_CPU_OPT ("cortex-a12", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
24013 FPU_ARCH_NEON_VFP_V4,
24014 "Cortex-A12"),
f3bad469
MGD
24015 ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
24016 FPU_ARCH_NEON_VFP_V4,
24017 "Cortex-A15"),
92eb40d9 24018 ARM_CPU_OPT ("cortex-a53", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
477330fc 24019 "Cortex-A53"),
92eb40d9 24020 ARM_CPU_OPT ("cortex-a57", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
477330fc 24021 "Cortex-A57"),
f3bad469
MGD
24022 ARM_CPU_OPT ("cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"),
24023 ARM_CPU_OPT ("cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16,
24024 "Cortex-R4F"),
24025 ARM_CPU_OPT ("cortex-r5", ARM_ARCH_V7R_IDIV,
24026 FPU_NONE, "Cortex-R5"),
70a8bc5b 24027 ARM_CPU_OPT ("cortex-r7", ARM_ARCH_V7R_IDIV,
24028 FPU_ARCH_VFP_V3D16,
24029 "Cortex-R7"),
f3bad469
MGD
24030 ARM_CPU_OPT ("cortex-m4", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M4"),
24031 ARM_CPU_OPT ("cortex-m3", ARM_ARCH_V7M, FPU_NONE, "Cortex-M3"),
24032 ARM_CPU_OPT ("cortex-m1", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M1"),
24033 ARM_CPU_OPT ("cortex-m0", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0"),
ce32bd10 24034 ARM_CPU_OPT ("cortex-m0plus", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0+"),
c19d1205 24035 /* ??? XSCALE is really an architecture. */
f3bad469 24036 ARM_CPU_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 24037 /* ??? iwmmxt is not a processor. */
f3bad469
MGD
24038 ARM_CPU_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL),
24039 ARM_CPU_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP_V2, NULL),
24040 ARM_CPU_OPT ("i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 24041 /* Maverick */
f3bad469 24042 ARM_CPU_OPT ("ep9312", ARM_FEATURE (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
da4339ed
NC
24043 FPU_ARCH_MAVERICK, "ARM920T"),
24044 /* Marvell processors. */
4a81b02a 24045 ARM_CPU_OPT ("marvell-pj4", ARM_FEATURE (ARM_AEXT_V7A | ARM_EXT_MP | ARM_EXT_SEC, 0),
477330fc 24046 FPU_ARCH_VFP_V3D16, NULL),
da4339ed 24047
f3bad469 24048 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
c19d1205 24049};
f3bad469 24050#undef ARM_CPU_OPT
7ed4c4c5 24051
c19d1205 24052struct arm_arch_option_table
7ed4c4c5 24053{
c19d1205 24054 char *name;
f3bad469 24055 size_t name_len;
e74cfd16
PB
24056 const arm_feature_set value;
24057 const arm_feature_set default_fpu;
c19d1205 24058};
7ed4c4c5 24059
c19d1205
ZW
24060/* This list should, at a minimum, contain all the architecture names
24061 recognized by GCC. */
f3bad469 24062#define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF }
e74cfd16 24063static const struct arm_arch_option_table arm_archs[] =
c19d1205 24064{
f3bad469
MGD
24065 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
24066 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
24067 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
24068 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
24069 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
24070 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
24071 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
24072 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
24073 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
24074 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
24075 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
24076 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
24077 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
24078 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
24079 ARM_ARCH_OPT ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP),
24080 ARM_ARCH_OPT ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP),
24081 ARM_ARCH_OPT ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP),
24082 ARM_ARCH_OPT ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP),
24083 ARM_ARCH_OPT ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP),
24084 ARM_ARCH_OPT ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP),
24085 ARM_ARCH_OPT ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP),
24086 ARM_ARCH_OPT ("armv6zk", ARM_ARCH_V6ZK, FPU_ARCH_VFP),
24087 ARM_ARCH_OPT ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP),
24088 ARM_ARCH_OPT ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP),
24089 ARM_ARCH_OPT ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP),
24090 ARM_ARCH_OPT ("armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP),
24091 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
24092 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
24093 ARM_ARCH_OPT ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP),
c450d570
PB
24094 /* The official spelling of the ARMv7 profile variants is the dashed form.
24095 Accept the non-dashed form for compatibility with old toolchains. */
f3bad469
MGD
24096 ARM_ARCH_OPT ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP),
24097 ARM_ARCH_OPT ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP),
24098 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
24099 ARM_ARCH_OPT ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP),
24100 ARM_ARCH_OPT ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP),
24101 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
24102 ARM_ARCH_OPT ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP),
bca38921 24103 ARM_ARCH_OPT ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP),
f3bad469
MGD
24104 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
24105 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
24106 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP),
24107 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
c19d1205 24108};
f3bad469 24109#undef ARM_ARCH_OPT
7ed4c4c5 24110
69133863
MGD
24111/* ISA extensions in the co-processor and main instruction set space. */
24112struct arm_option_extension_value_table
c19d1205
ZW
24113{
24114 char *name;
f3bad469 24115 size_t name_len;
e74cfd16 24116 const arm_feature_set value;
69133863 24117 const arm_feature_set allowed_archs;
c19d1205 24118};
7ed4c4c5 24119
69133863
MGD
24120/* The following table must be in alphabetical order with a NULL last entry.
24121 */
f3bad469 24122#define ARM_EXT_OPT(N, V, AA) { N, sizeof (N) - 1, V, AA }
69133863 24123static const struct arm_option_extension_value_table arm_extensions[] =
c19d1205 24124{
dd5181d5 24125 ARM_EXT_OPT ("crc", ARCH_CRC_ARMV8, ARM_FEATURE (ARM_EXT_V8, 0)),
bca38921
MGD
24126 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
24127 ARM_FEATURE (ARM_EXT_V8, 0)),
24128 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8,
24129 ARM_FEATURE (ARM_EXT_V8, 0)),
f3bad469
MGD
24130 ARM_EXT_OPT ("idiv", ARM_FEATURE (ARM_EXT_ADIV | ARM_EXT_DIV, 0),
24131 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
24132 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE (0, ARM_CEXT_IWMMXT), ARM_ANY),
24133 ARM_EXT_OPT ("iwmmxt2",
24134 ARM_FEATURE (0, ARM_CEXT_IWMMXT2), ARM_ANY),
24135 ARM_EXT_OPT ("maverick",
477330fc 24136 ARM_FEATURE (0, ARM_CEXT_MAVERICK), ARM_ANY),
f3bad469
MGD
24137 ARM_EXT_OPT ("mp", ARM_FEATURE (ARM_EXT_MP, 0),
24138 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
bca38921
MGD
24139 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
24140 ARM_FEATURE (ARM_EXT_V8, 0)),
f3bad469
MGD
24141 ARM_EXT_OPT ("os", ARM_FEATURE (ARM_EXT_OS, 0),
24142 ARM_FEATURE (ARM_EXT_V6M, 0)),
24143 ARM_EXT_OPT ("sec", ARM_FEATURE (ARM_EXT_SEC, 0),
24144 ARM_FEATURE (ARM_EXT_V6K | ARM_EXT_V7A, 0)),
24145 ARM_EXT_OPT ("virt", ARM_FEATURE (ARM_EXT_VIRT | ARM_EXT_ADIV
24146 | ARM_EXT_DIV, 0),
24147 ARM_FEATURE (ARM_EXT_V7A, 0)),
24148 ARM_EXT_OPT ("xscale",ARM_FEATURE (0, ARM_CEXT_XSCALE), ARM_ANY),
24149 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
69133863 24150};
f3bad469 24151#undef ARM_EXT_OPT
69133863
MGD
24152
24153/* ISA floating-point and Advanced SIMD extensions. */
24154struct arm_option_fpu_value_table
24155{
24156 char *name;
24157 const arm_feature_set value;
c19d1205 24158};
7ed4c4c5 24159
c19d1205
ZW
24160/* This list should, at a minimum, contain all the fpu names
24161 recognized by GCC. */
69133863 24162static const struct arm_option_fpu_value_table arm_fpus[] =
c19d1205
ZW
24163{
24164 {"softfpa", FPU_NONE},
24165 {"fpe", FPU_ARCH_FPE},
24166 {"fpe2", FPU_ARCH_FPE},
24167 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
24168 {"fpa", FPU_ARCH_FPA},
24169 {"fpa10", FPU_ARCH_FPA},
24170 {"fpa11", FPU_ARCH_FPA},
24171 {"arm7500fe", FPU_ARCH_FPA},
24172 {"softvfp", FPU_ARCH_VFP},
24173 {"softvfp+vfp", FPU_ARCH_VFP_V2},
24174 {"vfp", FPU_ARCH_VFP_V2},
24175 {"vfp9", FPU_ARCH_VFP_V2},
b1cc4aeb 24176 {"vfp3", FPU_ARCH_VFP_V3}, /* For backwards compatbility. */
c19d1205
ZW
24177 {"vfp10", FPU_ARCH_VFP_V2},
24178 {"vfp10-r0", FPU_ARCH_VFP_V1},
24179 {"vfpxd", FPU_ARCH_VFP_V1xD},
b1cc4aeb
PB
24180 {"vfpv2", FPU_ARCH_VFP_V2},
24181 {"vfpv3", FPU_ARCH_VFP_V3},
62f3b8c8 24182 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
b1cc4aeb 24183 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
62f3b8c8
PB
24184 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
24185 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
24186 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
c19d1205
ZW
24187 {"arm1020t", FPU_ARCH_VFP_V1},
24188 {"arm1020e", FPU_ARCH_VFP_V2},
24189 {"arm1136jfs", FPU_ARCH_VFP_V2},
24190 {"arm1136jf-s", FPU_ARCH_VFP_V2},
24191 {"maverick", FPU_ARCH_MAVERICK},
5287ad62 24192 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
8e79c3df 24193 {"neon-fp16", FPU_ARCH_NEON_FP16},
62f3b8c8
PB
24194 {"vfpv4", FPU_ARCH_VFP_V4},
24195 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
ada65aa3 24196 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
62f3b8c8 24197 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
bca38921
MGD
24198 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
24199 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
24200 {"crypto-neon-fp-armv8",
24201 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
e74cfd16
PB
24202 {NULL, ARM_ARCH_NONE}
24203};
24204
24205struct arm_option_value_table
24206{
24207 char *name;
24208 long value;
c19d1205 24209};
7ed4c4c5 24210
e74cfd16 24211static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
24212{
24213 {"hard", ARM_FLOAT_ABI_HARD},
24214 {"softfp", ARM_FLOAT_ABI_SOFTFP},
24215 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 24216 {NULL, 0}
c19d1205 24217};
7ed4c4c5 24218
c19d1205 24219#ifdef OBJ_ELF
3a4a14e9 24220/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 24221static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
24222{
24223 {"gnu", EF_ARM_EABI_UNKNOWN},
24224 {"4", EF_ARM_EABI_VER4},
3a4a14e9 24225 {"5", EF_ARM_EABI_VER5},
e74cfd16 24226 {NULL, 0}
c19d1205
ZW
24227};
24228#endif
7ed4c4c5 24229
c19d1205
ZW
24230struct arm_long_option_table
24231{
24232 char * option; /* Substring to match. */
24233 char * help; /* Help information. */
24234 int (* func) (char * subopt); /* Function to decode sub-option. */
24235 char * deprecated; /* If non-null, print this message. */
24236};
7ed4c4c5 24237
c921be7d 24238static bfd_boolean
f3bad469 24239arm_parse_extension (char *str, const arm_feature_set **opt_p)
7ed4c4c5 24240{
21d799b5
NC
24241 arm_feature_set *ext_set = (arm_feature_set *)
24242 xmalloc (sizeof (arm_feature_set));
e74cfd16 24243
69133863 24244 /* We insist on extensions being specified in alphabetical order, and with
fa94de6b
RM
24245 extensions being added before being removed. We achieve this by having
24246 the global ARM_EXTENSIONS table in alphabetical order, and using the
69133863 24247 ADDING_VALUE variable to indicate whether we are adding an extension (1)
fa94de6b 24248 or removing it (0) and only allowing it to change in the order
69133863
MGD
24249 -1 -> 1 -> 0. */
24250 const struct arm_option_extension_value_table * opt = NULL;
24251 int adding_value = -1;
24252
e74cfd16
PB
24253 /* Copy the feature set, so that we can modify it. */
24254 *ext_set = **opt_p;
24255 *opt_p = ext_set;
24256
c19d1205 24257 while (str != NULL && *str != 0)
7ed4c4c5 24258 {
f3bad469
MGD
24259 char *ext;
24260 size_t len;
7ed4c4c5 24261
c19d1205
ZW
24262 if (*str != '+')
24263 {
24264 as_bad (_("invalid architectural extension"));
c921be7d 24265 return FALSE;
c19d1205 24266 }
7ed4c4c5 24267
c19d1205
ZW
24268 str++;
24269 ext = strchr (str, '+');
7ed4c4c5 24270
c19d1205 24271 if (ext != NULL)
f3bad469 24272 len = ext - str;
c19d1205 24273 else
f3bad469 24274 len = strlen (str);
7ed4c4c5 24275
f3bad469 24276 if (len >= 2 && strncmp (str, "no", 2) == 0)
69133863
MGD
24277 {
24278 if (adding_value != 0)
24279 {
24280 adding_value = 0;
24281 opt = arm_extensions;
24282 }
24283
f3bad469 24284 len -= 2;
69133863
MGD
24285 str += 2;
24286 }
f3bad469 24287 else if (len > 0)
69133863
MGD
24288 {
24289 if (adding_value == -1)
24290 {
24291 adding_value = 1;
24292 opt = arm_extensions;
24293 }
24294 else if (adding_value != 1)
24295 {
24296 as_bad (_("must specify extensions to add before specifying "
24297 "those to remove"));
24298 return FALSE;
24299 }
24300 }
24301
f3bad469 24302 if (len == 0)
c19d1205
ZW
24303 {
24304 as_bad (_("missing architectural extension"));
c921be7d 24305 return FALSE;
c19d1205 24306 }
7ed4c4c5 24307
69133863
MGD
24308 gas_assert (adding_value != -1);
24309 gas_assert (opt != NULL);
24310
24311 /* Scan over the options table trying to find an exact match. */
24312 for (; opt->name != NULL; opt++)
f3bad469 24313 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24314 {
69133863
MGD
24315 /* Check we can apply the extension to this architecture. */
24316 if (!ARM_CPU_HAS_FEATURE (*ext_set, opt->allowed_archs))
24317 {
24318 as_bad (_("extension does not apply to the base architecture"));
24319 return FALSE;
24320 }
24321
24322 /* Add or remove the extension. */
24323 if (adding_value)
24324 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value);
24325 else
24326 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->value);
24327
c19d1205
ZW
24328 break;
24329 }
7ed4c4c5 24330
c19d1205
ZW
24331 if (opt->name == NULL)
24332 {
69133863
MGD
24333 /* Did we fail to find an extension because it wasn't specified in
24334 alphabetical order, or because it does not exist? */
24335
24336 for (opt = arm_extensions; opt->name != NULL; opt++)
f3bad469 24337 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
69133863
MGD
24338 break;
24339
24340 if (opt->name == NULL)
24341 as_bad (_("unknown architectural extension `%s'"), str);
24342 else
24343 as_bad (_("architectural extensions must be specified in "
24344 "alphabetical order"));
24345
c921be7d 24346 return FALSE;
c19d1205 24347 }
69133863
MGD
24348 else
24349 {
24350 /* We should skip the extension we've just matched the next time
24351 round. */
24352 opt++;
24353 }
7ed4c4c5 24354
c19d1205
ZW
24355 str = ext;
24356 };
7ed4c4c5 24357
c921be7d 24358 return TRUE;
c19d1205 24359}
7ed4c4c5 24360
c921be7d 24361static bfd_boolean
f3bad469 24362arm_parse_cpu (char *str)
7ed4c4c5 24363{
f3bad469
MGD
24364 const struct arm_cpu_option_table *opt;
24365 char *ext = strchr (str, '+');
24366 size_t len;
7ed4c4c5 24367
c19d1205 24368 if (ext != NULL)
f3bad469 24369 len = ext - str;
7ed4c4c5 24370 else
f3bad469 24371 len = strlen (str);
7ed4c4c5 24372
f3bad469 24373 if (len == 0)
7ed4c4c5 24374 {
c19d1205 24375 as_bad (_("missing cpu name `%s'"), str);
c921be7d 24376 return FALSE;
7ed4c4c5
NC
24377 }
24378
c19d1205 24379 for (opt = arm_cpus; opt->name != NULL; opt++)
f3bad469 24380 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24381 {
e74cfd16
PB
24382 mcpu_cpu_opt = &opt->value;
24383 mcpu_fpu_opt = &opt->default_fpu;
ee065d83 24384 if (opt->canonical_name)
5f4273c7 24385 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24386 else
24387 {
f3bad469 24388 size_t i;
c921be7d 24389
f3bad469 24390 for (i = 0; i < len; i++)
ee065d83
PB
24391 selected_cpu_name[i] = TOUPPER (opt->name[i]);
24392 selected_cpu_name[i] = 0;
24393 }
7ed4c4c5 24394
c19d1205
ZW
24395 if (ext != NULL)
24396 return arm_parse_extension (ext, &mcpu_cpu_opt);
7ed4c4c5 24397
c921be7d 24398 return TRUE;
c19d1205 24399 }
7ed4c4c5 24400
c19d1205 24401 as_bad (_("unknown cpu `%s'"), str);
c921be7d 24402 return FALSE;
7ed4c4c5
NC
24403}
24404
c921be7d 24405static bfd_boolean
f3bad469 24406arm_parse_arch (char *str)
7ed4c4c5 24407{
e74cfd16 24408 const struct arm_arch_option_table *opt;
c19d1205 24409 char *ext = strchr (str, '+');
f3bad469 24410 size_t len;
7ed4c4c5 24411
c19d1205 24412 if (ext != NULL)
f3bad469 24413 len = ext - str;
7ed4c4c5 24414 else
f3bad469 24415 len = strlen (str);
7ed4c4c5 24416
f3bad469 24417 if (len == 0)
7ed4c4c5 24418 {
c19d1205 24419 as_bad (_("missing architecture name `%s'"), str);
c921be7d 24420 return FALSE;
7ed4c4c5
NC
24421 }
24422
c19d1205 24423 for (opt = arm_archs; opt->name != NULL; opt++)
f3bad469 24424 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24425 {
e74cfd16
PB
24426 march_cpu_opt = &opt->value;
24427 march_fpu_opt = &opt->default_fpu;
5f4273c7 24428 strcpy (selected_cpu_name, opt->name);
7ed4c4c5 24429
c19d1205
ZW
24430 if (ext != NULL)
24431 return arm_parse_extension (ext, &march_cpu_opt);
7ed4c4c5 24432
c921be7d 24433 return TRUE;
c19d1205
ZW
24434 }
24435
24436 as_bad (_("unknown architecture `%s'\n"), str);
c921be7d 24437 return FALSE;
7ed4c4c5 24438}
eb043451 24439
c921be7d 24440static bfd_boolean
c19d1205
ZW
24441arm_parse_fpu (char * str)
24442{
69133863 24443 const struct arm_option_fpu_value_table * opt;
b99bd4ef 24444
c19d1205
ZW
24445 for (opt = arm_fpus; opt->name != NULL; opt++)
24446 if (streq (opt->name, str))
24447 {
e74cfd16 24448 mfpu_opt = &opt->value;
c921be7d 24449 return TRUE;
c19d1205 24450 }
b99bd4ef 24451
c19d1205 24452 as_bad (_("unknown floating point format `%s'\n"), str);
c921be7d 24453 return FALSE;
c19d1205
ZW
24454}
24455
c921be7d 24456static bfd_boolean
c19d1205 24457arm_parse_float_abi (char * str)
b99bd4ef 24458{
e74cfd16 24459 const struct arm_option_value_table * opt;
b99bd4ef 24460
c19d1205
ZW
24461 for (opt = arm_float_abis; opt->name != NULL; opt++)
24462 if (streq (opt->name, str))
24463 {
24464 mfloat_abi_opt = opt->value;
c921be7d 24465 return TRUE;
c19d1205 24466 }
cc8a6dd0 24467
c19d1205 24468 as_bad (_("unknown floating point abi `%s'\n"), str);
c921be7d 24469 return FALSE;
c19d1205 24470}
b99bd4ef 24471
c19d1205 24472#ifdef OBJ_ELF
c921be7d 24473static bfd_boolean
c19d1205
ZW
24474arm_parse_eabi (char * str)
24475{
e74cfd16 24476 const struct arm_option_value_table *opt;
cc8a6dd0 24477
c19d1205
ZW
24478 for (opt = arm_eabis; opt->name != NULL; opt++)
24479 if (streq (opt->name, str))
24480 {
24481 meabi_flags = opt->value;
c921be7d 24482 return TRUE;
c19d1205
ZW
24483 }
24484 as_bad (_("unknown EABI `%s'\n"), str);
c921be7d 24485 return FALSE;
c19d1205
ZW
24486}
24487#endif
cc8a6dd0 24488
c921be7d 24489static bfd_boolean
e07e6e58
NC
24490arm_parse_it_mode (char * str)
24491{
c921be7d 24492 bfd_boolean ret = TRUE;
e07e6e58
NC
24493
24494 if (streq ("arm", str))
24495 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
24496 else if (streq ("thumb", str))
24497 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
24498 else if (streq ("always", str))
24499 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
24500 else if (streq ("never", str))
24501 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
24502 else
24503 {
24504 as_bad (_("unknown implicit IT mode `%s', should be "\
477330fc 24505 "arm, thumb, always, or never."), str);
c921be7d 24506 ret = FALSE;
e07e6e58
NC
24507 }
24508
24509 return ret;
24510}
24511
c19d1205
ZW
24512struct arm_long_option_table arm_long_opts[] =
24513{
24514 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
24515 arm_parse_cpu, NULL},
24516 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
24517 arm_parse_arch, NULL},
24518 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
24519 arm_parse_fpu, NULL},
24520 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
24521 arm_parse_float_abi, NULL},
24522#ifdef OBJ_ELF
7fac0536 24523 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
c19d1205
ZW
24524 arm_parse_eabi, NULL},
24525#endif
e07e6e58
NC
24526 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
24527 arm_parse_it_mode, NULL},
c19d1205
ZW
24528 {NULL, NULL, 0, NULL}
24529};
cc8a6dd0 24530
c19d1205
ZW
24531int
24532md_parse_option (int c, char * arg)
24533{
24534 struct arm_option_table *opt;
e74cfd16 24535 const struct arm_legacy_option_table *fopt;
c19d1205 24536 struct arm_long_option_table *lopt;
b99bd4ef 24537
c19d1205 24538 switch (c)
b99bd4ef 24539 {
c19d1205
ZW
24540#ifdef OPTION_EB
24541 case OPTION_EB:
24542 target_big_endian = 1;
24543 break;
24544#endif
cc8a6dd0 24545
c19d1205
ZW
24546#ifdef OPTION_EL
24547 case OPTION_EL:
24548 target_big_endian = 0;
24549 break;
24550#endif
b99bd4ef 24551
845b51d6
PB
24552 case OPTION_FIX_V4BX:
24553 fix_v4bx = TRUE;
24554 break;
24555
c19d1205
ZW
24556 case 'a':
24557 /* Listing option. Just ignore these, we don't support additional
24558 ones. */
24559 return 0;
b99bd4ef 24560
c19d1205
ZW
24561 default:
24562 for (opt = arm_opts; opt->option != NULL; opt++)
24563 {
24564 if (c == opt->option[0]
24565 && ((arg == NULL && opt->option[1] == 0)
24566 || streq (arg, opt->option + 1)))
24567 {
c19d1205 24568 /* If the option is deprecated, tell the user. */
278df34e 24569 if (warn_on_deprecated && opt->deprecated != NULL)
c19d1205
ZW
24570 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
24571 arg ? arg : "", _(opt->deprecated));
b99bd4ef 24572
c19d1205
ZW
24573 if (opt->var != NULL)
24574 *opt->var = opt->value;
cc8a6dd0 24575
c19d1205
ZW
24576 return 1;
24577 }
24578 }
b99bd4ef 24579
e74cfd16
PB
24580 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
24581 {
24582 if (c == fopt->option[0]
24583 && ((arg == NULL && fopt->option[1] == 0)
24584 || streq (arg, fopt->option + 1)))
24585 {
e74cfd16 24586 /* If the option is deprecated, tell the user. */
278df34e 24587 if (warn_on_deprecated && fopt->deprecated != NULL)
e74cfd16
PB
24588 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
24589 arg ? arg : "", _(fopt->deprecated));
e74cfd16
PB
24590
24591 if (fopt->var != NULL)
24592 *fopt->var = &fopt->value;
24593
24594 return 1;
24595 }
24596 }
24597
c19d1205
ZW
24598 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
24599 {
24600 /* These options are expected to have an argument. */
24601 if (c == lopt->option[0]
24602 && arg != NULL
24603 && strncmp (arg, lopt->option + 1,
24604 strlen (lopt->option + 1)) == 0)
24605 {
c19d1205 24606 /* If the option is deprecated, tell the user. */
278df34e 24607 if (warn_on_deprecated && lopt->deprecated != NULL)
c19d1205
ZW
24608 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
24609 _(lopt->deprecated));
b99bd4ef 24610
c19d1205
ZW
24611 /* Call the sup-option parser. */
24612 return lopt->func (arg + strlen (lopt->option) - 1);
24613 }
24614 }
a737bd4d 24615
c19d1205
ZW
24616 return 0;
24617 }
a394c00f 24618
c19d1205
ZW
24619 return 1;
24620}
a394c00f 24621
c19d1205
ZW
24622void
24623md_show_usage (FILE * fp)
a394c00f 24624{
c19d1205
ZW
24625 struct arm_option_table *opt;
24626 struct arm_long_option_table *lopt;
a394c00f 24627
c19d1205 24628 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 24629
c19d1205
ZW
24630 for (opt = arm_opts; opt->option != NULL; opt++)
24631 if (opt->help != NULL)
24632 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 24633
c19d1205
ZW
24634 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
24635 if (lopt->help != NULL)
24636 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 24637
c19d1205
ZW
24638#ifdef OPTION_EB
24639 fprintf (fp, _("\
24640 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
24641#endif
24642
c19d1205
ZW
24643#ifdef OPTION_EL
24644 fprintf (fp, _("\
24645 -EL assemble code for a little-endian cpu\n"));
a737bd4d 24646#endif
845b51d6
PB
24647
24648 fprintf (fp, _("\
24649 --fix-v4bx Allow BX in ARMv4 code\n"));
c19d1205 24650}
ee065d83
PB
24651
24652
24653#ifdef OBJ_ELF
62b3e311
PB
24654typedef struct
24655{
24656 int val;
24657 arm_feature_set flags;
24658} cpu_arch_ver_table;
24659
24660/* Mapping from CPU features to EABI CPU arch values. Table must be sorted
24661 least features first. */
24662static const cpu_arch_ver_table cpu_arch_ver[] =
24663{
24664 {1, ARM_ARCH_V4},
24665 {2, ARM_ARCH_V4T},
24666 {3, ARM_ARCH_V5},
ee3c0378 24667 {3, ARM_ARCH_V5T},
62b3e311
PB
24668 {4, ARM_ARCH_V5TE},
24669 {5, ARM_ARCH_V5TEJ},
24670 {6, ARM_ARCH_V6},
7e806470 24671 {9, ARM_ARCH_V6K},
f4c65163 24672 {7, ARM_ARCH_V6Z},
91e22acd 24673 {11, ARM_ARCH_V6M},
b2a5fbdc 24674 {12, ARM_ARCH_V6SM},
7e806470 24675 {8, ARM_ARCH_V6T2},
bca38921 24676 {10, ARM_ARCH_V7A_IDIV_MP_SEC_VIRT},
62b3e311
PB
24677 {10, ARM_ARCH_V7R},
24678 {10, ARM_ARCH_V7M},
bca38921 24679 {14, ARM_ARCH_V8A},
62b3e311
PB
24680 {0, ARM_ARCH_NONE}
24681};
24682
ee3c0378
AS
24683/* Set an attribute if it has not already been set by the user. */
24684static void
24685aeabi_set_attribute_int (int tag, int value)
24686{
24687 if (tag < 1
24688 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
24689 || !attributes_set_explicitly[tag])
24690 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
24691}
24692
24693static void
24694aeabi_set_attribute_string (int tag, const char *value)
24695{
24696 if (tag < 1
24697 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
24698 || !attributes_set_explicitly[tag])
24699 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
24700}
24701
ee065d83
PB
24702/* Set the public EABI object attributes. */
24703static void
24704aeabi_set_public_attributes (void)
24705{
24706 int arch;
69239280 24707 char profile;
90ec0d68 24708 int virt_sec = 0;
bca38921 24709 int fp16_optional = 0;
e74cfd16 24710 arm_feature_set flags;
62b3e311
PB
24711 arm_feature_set tmp;
24712 const cpu_arch_ver_table *p;
ee065d83
PB
24713
24714 /* Choose the architecture based on the capabilities of the requested cpu
24715 (if any) and/or the instructions actually used. */
e74cfd16
PB
24716 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
24717 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
24718 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
ddd7f988
RE
24719
24720 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
24721 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
24722
24723 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
24724 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
24725
24726 /* Allow the user to override the reported architecture. */
7a1d4c38
PB
24727 if (object_arch)
24728 {
24729 ARM_CLEAR_FEATURE (flags, flags, arm_arch_any);
24730 ARM_MERGE_FEATURE_SETS (flags, flags, *object_arch);
24731 }
24732
251665fc
MGD
24733 /* We need to make sure that the attributes do not identify us as v6S-M
24734 when the only v6S-M feature in use is the Operating System Extensions. */
24735 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_os))
24736 if (!ARM_CPU_HAS_FEATURE (flags, arm_arch_v6m_only))
477330fc 24737 ARM_CLEAR_FEATURE (flags, flags, arm_ext_os);
251665fc 24738
62b3e311
PB
24739 tmp = flags;
24740 arch = 0;
24741 for (p = cpu_arch_ver; p->val; p++)
24742 {
24743 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
24744 {
24745 arch = p->val;
24746 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
24747 }
24748 }
ee065d83 24749
9e3c6df6
PB
24750 /* The table lookup above finds the last architecture to contribute
24751 a new feature. Unfortunately, Tag13 is a subset of the union of
24752 v6T2 and v7-M, so it is never seen as contributing a new feature.
24753 We can not search for the last entry which is entirely used,
24754 because if no CPU is specified we build up only those flags
24755 actually used. Perhaps we should separate out the specified
24756 and implicit cases. Avoid taking this path for -march=all by
24757 checking for contradictory v7-A / v7-M features. */
24758 if (arch == 10
24759 && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
24760 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m)
24761 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v6_dsp))
24762 arch = 13;
24763
ee065d83
PB
24764 /* Tag_CPU_name. */
24765 if (selected_cpu_name[0])
24766 {
91d6fa6a 24767 char *q;
ee065d83 24768
91d6fa6a
NC
24769 q = selected_cpu_name;
24770 if (strncmp (q, "armv", 4) == 0)
ee065d83
PB
24771 {
24772 int i;
5f4273c7 24773
91d6fa6a
NC
24774 q += 4;
24775 for (i = 0; q[i]; i++)
24776 q[i] = TOUPPER (q[i]);
ee065d83 24777 }
91d6fa6a 24778 aeabi_set_attribute_string (Tag_CPU_name, q);
ee065d83 24779 }
62f3b8c8 24780
ee065d83 24781 /* Tag_CPU_arch. */
ee3c0378 24782 aeabi_set_attribute_int (Tag_CPU_arch, arch);
62f3b8c8 24783
62b3e311
PB
24784 /* Tag_CPU_arch_profile. */
24785 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
69239280 24786 profile = 'A';
62b3e311 24787 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
69239280 24788 profile = 'R';
7e806470 24789 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_m))
69239280
MGD
24790 profile = 'M';
24791 else
24792 profile = '\0';
24793
24794 if (profile != '\0')
24795 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
62f3b8c8 24796
ee065d83 24797 /* Tag_ARM_ISA_use. */
ee3c0378
AS
24798 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
24799 || arch == 0)
24800 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
62f3b8c8 24801
ee065d83 24802 /* Tag_THUMB_ISA_use. */
ee3c0378
AS
24803 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
24804 || arch == 0)
24805 aeabi_set_attribute_int (Tag_THUMB_ISA_use,
24806 ARM_CPU_HAS_FEATURE (flags, arm_arch_t2) ? 2 : 1);
62f3b8c8 24807
ee065d83 24808 /* Tag_VFP_arch. */
bca38921
MGD
24809 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8))
24810 aeabi_set_attribute_int (Tag_VFP_arch, 7);
24811 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
62f3b8c8
PB
24812 aeabi_set_attribute_int (Tag_VFP_arch,
24813 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
24814 ? 5 : 6);
24815 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
bca38921
MGD
24816 {
24817 fp16_optional = 1;
24818 aeabi_set_attribute_int (Tag_VFP_arch, 3);
24819 }
ada65aa3 24820 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
bca38921
MGD
24821 {
24822 aeabi_set_attribute_int (Tag_VFP_arch, 4);
24823 fp16_optional = 1;
24824 }
ee3c0378
AS
24825 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
24826 aeabi_set_attribute_int (Tag_VFP_arch, 2);
24827 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
477330fc 24828 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
ee3c0378 24829 aeabi_set_attribute_int (Tag_VFP_arch, 1);
62f3b8c8 24830
4547cb56
NC
24831 /* Tag_ABI_HardFP_use. */
24832 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
24833 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
24834 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
24835
ee065d83 24836 /* Tag_WMMX_arch. */
ee3c0378
AS
24837 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
24838 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
24839 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
24840 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
62f3b8c8 24841
ee3c0378 24842 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
bca38921
MGD
24843 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
24844 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
24845 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
24846 {
24847 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
24848 {
24849 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
24850 }
24851 else
24852 {
24853 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
24854 fp16_optional = 1;
24855 }
24856 }
fa94de6b 24857
ee3c0378 24858 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
bca38921 24859 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
ee3c0378 24860 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
4547cb56 24861
69239280
MGD
24862 /* Tag_DIV_use.
24863
24864 We set Tag_DIV_use to two when integer divide instructions have been used
24865 in ARM state, or when Thumb integer divide instructions have been used,
24866 but we have no architecture profile set, nor have we any ARM instructions.
24867
bca38921
MGD
24868 For ARMv8 we set the tag to 0 as integer divide is implied by the base
24869 architecture.
24870
69239280 24871 For new architectures we will have to check these tests. */
bca38921
MGD
24872 gas_assert (arch <= TAG_CPU_ARCH_V8);
24873 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8))
24874 aeabi_set_attribute_int (Tag_DIV_use, 0);
24875 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
24876 || (profile == '\0'
24877 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
24878 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
eea54501 24879 aeabi_set_attribute_int (Tag_DIV_use, 2);
60e5ef9f
MGD
24880
24881 /* Tag_MP_extension_use. */
24882 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
24883 aeabi_set_attribute_int (Tag_MPextension_use, 1);
f4c65163
MGD
24884
24885 /* Tag Virtualization_use. */
24886 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
90ec0d68
MGD
24887 virt_sec |= 1;
24888 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
24889 virt_sec |= 2;
24890 if (virt_sec != 0)
24891 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
ee065d83
PB
24892}
24893
104d59d1 24894/* Add the default contents for the .ARM.attributes section. */
ee065d83
PB
24895void
24896arm_md_end (void)
24897{
ee065d83
PB
24898 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
24899 return;
24900
24901 aeabi_set_public_attributes ();
ee065d83 24902}
8463be01 24903#endif /* OBJ_ELF */
ee065d83
PB
24904
24905
24906/* Parse a .cpu directive. */
24907
24908static void
24909s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
24910{
e74cfd16 24911 const struct arm_cpu_option_table *opt;
ee065d83
PB
24912 char *name;
24913 char saved_char;
24914
24915 name = input_line_pointer;
5f4273c7 24916 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24917 input_line_pointer++;
24918 saved_char = *input_line_pointer;
24919 *input_line_pointer = 0;
24920
24921 /* Skip the first "all" entry. */
24922 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
24923 if (streq (opt->name, name))
24924 {
e74cfd16
PB
24925 mcpu_cpu_opt = &opt->value;
24926 selected_cpu = opt->value;
ee065d83 24927 if (opt->canonical_name)
5f4273c7 24928 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24929 else
24930 {
24931 int i;
24932 for (i = 0; opt->name[i]; i++)
24933 selected_cpu_name[i] = TOUPPER (opt->name[i]);
f3bad469 24934
ee065d83
PB
24935 selected_cpu_name[i] = 0;
24936 }
e74cfd16 24937 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24938 *input_line_pointer = saved_char;
24939 demand_empty_rest_of_line ();
24940 return;
24941 }
24942 as_bad (_("unknown cpu `%s'"), name);
24943 *input_line_pointer = saved_char;
24944 ignore_rest_of_line ();
24945}
24946
24947
24948/* Parse a .arch directive. */
24949
24950static void
24951s_arm_arch (int ignored ATTRIBUTE_UNUSED)
24952{
e74cfd16 24953 const struct arm_arch_option_table *opt;
ee065d83
PB
24954 char saved_char;
24955 char *name;
24956
24957 name = input_line_pointer;
5f4273c7 24958 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24959 input_line_pointer++;
24960 saved_char = *input_line_pointer;
24961 *input_line_pointer = 0;
24962
24963 /* Skip the first "all" entry. */
24964 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24965 if (streq (opt->name, name))
24966 {
e74cfd16
PB
24967 mcpu_cpu_opt = &opt->value;
24968 selected_cpu = opt->value;
5f4273c7 24969 strcpy (selected_cpu_name, opt->name);
e74cfd16 24970 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24971 *input_line_pointer = saved_char;
24972 demand_empty_rest_of_line ();
24973 return;
24974 }
24975
24976 as_bad (_("unknown architecture `%s'\n"), name);
24977 *input_line_pointer = saved_char;
24978 ignore_rest_of_line ();
24979}
24980
24981
7a1d4c38
PB
24982/* Parse a .object_arch directive. */
24983
24984static void
24985s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
24986{
24987 const struct arm_arch_option_table *opt;
24988 char saved_char;
24989 char *name;
24990
24991 name = input_line_pointer;
5f4273c7 24992 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
7a1d4c38
PB
24993 input_line_pointer++;
24994 saved_char = *input_line_pointer;
24995 *input_line_pointer = 0;
24996
24997 /* Skip the first "all" entry. */
24998 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24999 if (streq (opt->name, name))
25000 {
25001 object_arch = &opt->value;
25002 *input_line_pointer = saved_char;
25003 demand_empty_rest_of_line ();
25004 return;
25005 }
25006
25007 as_bad (_("unknown architecture `%s'\n"), name);
25008 *input_line_pointer = saved_char;
25009 ignore_rest_of_line ();
25010}
25011
69133863
MGD
25012/* Parse a .arch_extension directive. */
25013
25014static void
25015s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
25016{
25017 const struct arm_option_extension_value_table *opt;
25018 char saved_char;
25019 char *name;
25020 int adding_value = 1;
25021
25022 name = input_line_pointer;
25023 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
25024 input_line_pointer++;
25025 saved_char = *input_line_pointer;
25026 *input_line_pointer = 0;
25027
25028 if (strlen (name) >= 2
25029 && strncmp (name, "no", 2) == 0)
25030 {
25031 adding_value = 0;
25032 name += 2;
25033 }
25034
25035 for (opt = arm_extensions; opt->name != NULL; opt++)
25036 if (streq (opt->name, name))
25037 {
25038 if (!ARM_CPU_HAS_FEATURE (*mcpu_cpu_opt, opt->allowed_archs))
25039 {
25040 as_bad (_("architectural extension `%s' is not allowed for the "
25041 "current base architecture"), name);
25042 break;
25043 }
25044
25045 if (adding_value)
25046 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu, opt->value);
25047 else
25048 ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->value);
25049
25050 mcpu_cpu_opt = &selected_cpu;
25051 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
25052 *input_line_pointer = saved_char;
25053 demand_empty_rest_of_line ();
25054 return;
25055 }
25056
25057 if (opt->name == NULL)
e673710a 25058 as_bad (_("unknown architecture extension `%s'\n"), name);
69133863
MGD
25059
25060 *input_line_pointer = saved_char;
25061 ignore_rest_of_line ();
25062}
25063
ee065d83
PB
25064/* Parse a .fpu directive. */
25065
25066static void
25067s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
25068{
69133863 25069 const struct arm_option_fpu_value_table *opt;
ee065d83
PB
25070 char saved_char;
25071 char *name;
25072
25073 name = input_line_pointer;
5f4273c7 25074 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
25075 input_line_pointer++;
25076 saved_char = *input_line_pointer;
25077 *input_line_pointer = 0;
5f4273c7 25078
ee065d83
PB
25079 for (opt = arm_fpus; opt->name != NULL; opt++)
25080 if (streq (opt->name, name))
25081 {
e74cfd16
PB
25082 mfpu_opt = &opt->value;
25083 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
25084 *input_line_pointer = saved_char;
25085 demand_empty_rest_of_line ();
25086 return;
25087 }
25088
25089 as_bad (_("unknown floating point format `%s'\n"), name);
25090 *input_line_pointer = saved_char;
25091 ignore_rest_of_line ();
25092}
ee065d83 25093
794ba86a 25094/* Copy symbol information. */
f31fef98 25095
794ba86a
DJ
25096void
25097arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
25098{
25099 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
25100}
e04befd0 25101
f31fef98 25102#ifdef OBJ_ELF
e04befd0
AS
25103/* Given a symbolic attribute NAME, return the proper integer value.
25104 Returns -1 if the attribute is not known. */
f31fef98 25105
e04befd0
AS
25106int
25107arm_convert_symbolic_attribute (const char *name)
25108{
f31fef98
NC
25109 static const struct
25110 {
25111 const char * name;
25112 const int tag;
25113 }
25114 attribute_table[] =
25115 {
25116 /* When you modify this table you should
25117 also modify the list in doc/c-arm.texi. */
e04befd0 25118#define T(tag) {#tag, tag}
f31fef98
NC
25119 T (Tag_CPU_raw_name),
25120 T (Tag_CPU_name),
25121 T (Tag_CPU_arch),
25122 T (Tag_CPU_arch_profile),
25123 T (Tag_ARM_ISA_use),
25124 T (Tag_THUMB_ISA_use),
75375b3e 25125 T (Tag_FP_arch),
f31fef98
NC
25126 T (Tag_VFP_arch),
25127 T (Tag_WMMX_arch),
25128 T (Tag_Advanced_SIMD_arch),
25129 T (Tag_PCS_config),
25130 T (Tag_ABI_PCS_R9_use),
25131 T (Tag_ABI_PCS_RW_data),
25132 T (Tag_ABI_PCS_RO_data),
25133 T (Tag_ABI_PCS_GOT_use),
25134 T (Tag_ABI_PCS_wchar_t),
25135 T (Tag_ABI_FP_rounding),
25136 T (Tag_ABI_FP_denormal),
25137 T (Tag_ABI_FP_exceptions),
25138 T (Tag_ABI_FP_user_exceptions),
25139 T (Tag_ABI_FP_number_model),
75375b3e 25140 T (Tag_ABI_align_needed),
f31fef98 25141 T (Tag_ABI_align8_needed),
75375b3e 25142 T (Tag_ABI_align_preserved),
f31fef98
NC
25143 T (Tag_ABI_align8_preserved),
25144 T (Tag_ABI_enum_size),
25145 T (Tag_ABI_HardFP_use),
25146 T (Tag_ABI_VFP_args),
25147 T (Tag_ABI_WMMX_args),
25148 T (Tag_ABI_optimization_goals),
25149 T (Tag_ABI_FP_optimization_goals),
25150 T (Tag_compatibility),
25151 T (Tag_CPU_unaligned_access),
75375b3e 25152 T (Tag_FP_HP_extension),
f31fef98
NC
25153 T (Tag_VFP_HP_extension),
25154 T (Tag_ABI_FP_16bit_format),
cd21e546
MGD
25155 T (Tag_MPextension_use),
25156 T (Tag_DIV_use),
f31fef98
NC
25157 T (Tag_nodefaults),
25158 T (Tag_also_compatible_with),
25159 T (Tag_conformance),
25160 T (Tag_T2EE_use),
25161 T (Tag_Virtualization_use),
cd21e546 25162 /* We deliberately do not include Tag_MPextension_use_legacy. */
e04befd0 25163#undef T
f31fef98 25164 };
e04befd0
AS
25165 unsigned int i;
25166
25167 if (name == NULL)
25168 return -1;
25169
f31fef98 25170 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
c921be7d 25171 if (streq (name, attribute_table[i].name))
e04befd0
AS
25172 return attribute_table[i].tag;
25173
25174 return -1;
25175}
267bf995
RR
25176
25177
25178/* Apply sym value for relocations only in the case that
25179 they are for local symbols and you have the respective
25180 architectural feature for blx and simple switches. */
25181int
25182arm_apply_sym_value (struct fix * fixP)
25183{
25184 if (fixP->fx_addsy
25185 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
34e77a92 25186 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
267bf995
RR
25187 {
25188 switch (fixP->fx_r_type)
25189 {
25190 case BFD_RELOC_ARM_PCREL_BLX:
25191 case BFD_RELOC_THUMB_PCREL_BRANCH23:
25192 if (ARM_IS_FUNC (fixP->fx_addsy))
25193 return 1;
25194 break;
25195
25196 case BFD_RELOC_ARM_PCREL_CALL:
25197 case BFD_RELOC_THUMB_PCREL_BLX:
25198 if (THUMB_IS_FUNC (fixP->fx_addsy))
25199 return 1;
25200 break;
25201
25202 default:
25203 break;
25204 }
25205
25206 }
25207 return 0;
25208}
f31fef98 25209#endif /* OBJ_ELF */
This page took 2.979119 seconds and 4 git commands to generate.