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
326 before a [, which can appear as the first operand for pld. */
327const char arm_symbol_chars[] = "#[]";
328
5287ad62
JB
329enum neon_el_type
330{
dcbf9037 331 NT_invtype,
5287ad62
JB
332 NT_untyped,
333 NT_integer,
334 NT_float,
335 NT_poly,
336 NT_signed,
dcbf9037 337 NT_unsigned
5287ad62
JB
338};
339
340struct neon_type_el
341{
342 enum neon_el_type type;
343 unsigned size;
344};
345
346#define NEON_MAX_TYPE_ELS 4
347
348struct neon_type
349{
350 struct neon_type_el el[NEON_MAX_TYPE_ELS];
351 unsigned elems;
352};
353
e07e6e58
NC
354enum it_instruction_type
355{
356 OUTSIDE_IT_INSN,
357 INSIDE_IT_INSN,
358 INSIDE_IT_LAST_INSN,
359 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
360 if inside, should be the last one. */
361 NEUTRAL_IT_INSN, /* This could be either inside or outside,
362 i.e. BKPT and NOP. */
363 IT_INSN /* The IT insn has been parsed. */
364};
365
ad6cec43
MGD
366/* The maximum number of operands we need. */
367#define ARM_IT_MAX_OPERANDS 6
368
b99bd4ef
NC
369struct arm_it
370{
c19d1205 371 const char * error;
b99bd4ef 372 unsigned long instruction;
c19d1205
ZW
373 int size;
374 int size_req;
375 int cond;
037e8744
JB
376 /* "uncond_value" is set to the value in place of the conditional field in
377 unconditional versions of the instruction, or -1 if nothing is
378 appropriate. */
379 int uncond_value;
5287ad62 380 struct neon_type vectype;
88714cb8
DG
381 /* This does not indicate an actual NEON instruction, only that
382 the mnemonic accepts neon-style type suffixes. */
383 int is_neon;
0110f2b8
PB
384 /* Set to the opcode if the instruction needs relaxation.
385 Zero if the instruction is not relaxed. */
386 unsigned long relax;
b99bd4ef
NC
387 struct
388 {
389 bfd_reloc_code_real_type type;
c19d1205
ZW
390 expressionS exp;
391 int pc_rel;
b99bd4ef 392 } reloc;
b99bd4ef 393
e07e6e58
NC
394 enum it_instruction_type it_insn_type;
395
c19d1205
ZW
396 struct
397 {
398 unsigned reg;
ca3f61f7 399 signed int imm;
dcbf9037 400 struct neon_type_el vectype;
ca3f61f7
NC
401 unsigned present : 1; /* Operand present. */
402 unsigned isreg : 1; /* Operand was a register. */
403 unsigned immisreg : 1; /* .imm field is a second register. */
5287ad62
JB
404 unsigned isscalar : 1; /* Operand is a (Neon) scalar. */
405 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
c96612cc 406 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
5287ad62
JB
407 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
408 instructions. This allows us to disambiguate ARM <-> vector insns. */
409 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
037e8744 410 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
5287ad62 411 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
037e8744 412 unsigned issingle : 1; /* Operand is VFP single-precision register. */
ca3f61f7
NC
413 unsigned hasreloc : 1; /* Operand has relocation suffix. */
414 unsigned writeback : 1; /* Operand has trailing ! */
415 unsigned preind : 1; /* Preindexed address. */
416 unsigned postind : 1; /* Postindexed address. */
417 unsigned negative : 1; /* Index register was negated. */
418 unsigned shifted : 1; /* Shift applied to operation. */
419 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
ad6cec43 420 } operands[ARM_IT_MAX_OPERANDS];
b99bd4ef
NC
421};
422
c19d1205 423static struct arm_it inst;
b99bd4ef
NC
424
425#define NUM_FLOAT_VALS 8
426
05d2d07e 427const char * fp_const[] =
b99bd4ef
NC
428{
429 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
430};
431
c19d1205 432/* Number of littlenums required to hold an extended precision number. */
b99bd4ef
NC
433#define MAX_LITTLENUMS 6
434
435LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
436
437#define FAIL (-1)
438#define SUCCESS (0)
439
440#define SUFF_S 1
441#define SUFF_D 2
442#define SUFF_E 3
443#define SUFF_P 4
444
c19d1205
ZW
445#define CP_T_X 0x00008000
446#define CP_T_Y 0x00400000
b99bd4ef 447
c19d1205
ZW
448#define CONDS_BIT 0x00100000
449#define LOAD_BIT 0x00100000
b99bd4ef
NC
450
451#define DOUBLE_LOAD_FLAG 0x00000001
452
453struct asm_cond
454{
d3ce72d0 455 const char * template_name;
c921be7d 456 unsigned long value;
b99bd4ef
NC
457};
458
c19d1205 459#define COND_ALWAYS 0xE
b99bd4ef 460
b99bd4ef
NC
461struct asm_psr
462{
d3ce72d0 463 const char * template_name;
c921be7d 464 unsigned long field;
b99bd4ef
NC
465};
466
62b3e311
PB
467struct asm_barrier_opt
468{
e797f7e0
MGD
469 const char * template_name;
470 unsigned long value;
471 const arm_feature_set arch;
62b3e311
PB
472};
473
2d2255b5 474/* The bit that distinguishes CPSR and SPSR. */
b99bd4ef
NC
475#define SPSR_BIT (1 << 22)
476
c19d1205
ZW
477/* The individual PSR flag bits. */
478#define PSR_c (1 << 16)
479#define PSR_x (1 << 17)
480#define PSR_s (1 << 18)
481#define PSR_f (1 << 19)
b99bd4ef 482
c19d1205 483struct reloc_entry
bfae80f2 484{
c921be7d
NC
485 char * name;
486 bfd_reloc_code_real_type reloc;
bfae80f2
RE
487};
488
5287ad62 489enum vfp_reg_pos
bfae80f2 490{
5287ad62
JB
491 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
492 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
bfae80f2
RE
493};
494
495enum vfp_ldstm_type
496{
497 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
498};
499
dcbf9037
JB
500/* Bits for DEFINED field in neon_typed_alias. */
501#define NTA_HASTYPE 1
502#define NTA_HASINDEX 2
503
504struct neon_typed_alias
505{
c921be7d
NC
506 unsigned char defined;
507 unsigned char index;
508 struct neon_type_el eltype;
dcbf9037
JB
509};
510
c19d1205
ZW
511/* ARM register categories. This includes coprocessor numbers and various
512 architecture extensions' registers. */
513enum arm_reg_type
bfae80f2 514{
c19d1205
ZW
515 REG_TYPE_RN,
516 REG_TYPE_CP,
517 REG_TYPE_CN,
518 REG_TYPE_FN,
519 REG_TYPE_VFS,
520 REG_TYPE_VFD,
5287ad62 521 REG_TYPE_NQ,
037e8744 522 REG_TYPE_VFSD,
5287ad62 523 REG_TYPE_NDQ,
037e8744 524 REG_TYPE_NSDQ,
c19d1205
ZW
525 REG_TYPE_VFC,
526 REG_TYPE_MVF,
527 REG_TYPE_MVD,
528 REG_TYPE_MVFX,
529 REG_TYPE_MVDX,
530 REG_TYPE_MVAX,
531 REG_TYPE_DSPSC,
532 REG_TYPE_MMXWR,
533 REG_TYPE_MMXWC,
534 REG_TYPE_MMXWCG,
535 REG_TYPE_XSCALE,
90ec0d68 536 REG_TYPE_RNB
bfae80f2
RE
537};
538
dcbf9037
JB
539/* Structure for a hash table entry for a register.
540 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
541 information which states whether a vector type or index is specified (for a
542 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
6c43fab6
RE
543struct reg_entry
544{
c921be7d 545 const char * name;
90ec0d68 546 unsigned int number;
c921be7d
NC
547 unsigned char type;
548 unsigned char builtin;
549 struct neon_typed_alias * neon;
6c43fab6
RE
550};
551
c19d1205 552/* Diagnostics used when we don't get a register of the expected type. */
c921be7d 553const char * const reg_expected_msgs[] =
c19d1205
ZW
554{
555 N_("ARM register expected"),
556 N_("bad or missing co-processor number"),
557 N_("co-processor register expected"),
558 N_("FPA register expected"),
559 N_("VFP single precision register expected"),
5287ad62
JB
560 N_("VFP/Neon double precision register expected"),
561 N_("Neon quad precision register expected"),
037e8744 562 N_("VFP single or double precision register expected"),
5287ad62 563 N_("Neon double or quad precision register expected"),
037e8744 564 N_("VFP single, double or Neon quad precision register expected"),
c19d1205
ZW
565 N_("VFP system register expected"),
566 N_("Maverick MVF register expected"),
567 N_("Maverick MVD register expected"),
568 N_("Maverick MVFX register expected"),
569 N_("Maverick MVDX register expected"),
570 N_("Maverick MVAX register expected"),
571 N_("Maverick DSPSC register expected"),
572 N_("iWMMXt data register expected"),
573 N_("iWMMXt control register expected"),
574 N_("iWMMXt scalar register expected"),
575 N_("XScale accumulator register expected"),
6c43fab6
RE
576};
577
c19d1205 578/* Some well known registers that we refer to directly elsewhere. */
bd340a04 579#define REG_R12 12
c19d1205
ZW
580#define REG_SP 13
581#define REG_LR 14
582#define REG_PC 15
404ff6b5 583
b99bd4ef
NC
584/* ARM instructions take 4bytes in the object file, Thumb instructions
585 take 2: */
c19d1205 586#define INSN_SIZE 4
b99bd4ef
NC
587
588struct asm_opcode
589{
590 /* Basic string to match. */
d3ce72d0 591 const char * template_name;
c19d1205
ZW
592
593 /* Parameters to instruction. */
5be8be5d 594 unsigned int operands[8];
c19d1205
ZW
595
596 /* Conditional tag - see opcode_lookup. */
597 unsigned int tag : 4;
b99bd4ef
NC
598
599 /* Basic instruction code. */
c19d1205 600 unsigned int avalue : 28;
b99bd4ef 601
c19d1205
ZW
602 /* Thumb-format instruction code. */
603 unsigned int tvalue;
b99bd4ef 604
90e4755a 605 /* Which architecture variant provides this instruction. */
c921be7d
NC
606 const arm_feature_set * avariant;
607 const arm_feature_set * tvariant;
c19d1205
ZW
608
609 /* Function to call to encode instruction in ARM format. */
610 void (* aencode) (void);
b99bd4ef 611
c19d1205
ZW
612 /* Function to call to encode instruction in Thumb format. */
613 void (* tencode) (void);
b99bd4ef
NC
614};
615
a737bd4d
NC
616/* Defines for various bits that we will want to toggle. */
617#define INST_IMMEDIATE 0x02000000
618#define OFFSET_REG 0x02000000
c19d1205 619#define HWOFFSET_IMM 0x00400000
a737bd4d
NC
620#define SHIFT_BY_REG 0x00000010
621#define PRE_INDEX 0x01000000
622#define INDEX_UP 0x00800000
623#define WRITE_BACK 0x00200000
624#define LDM_TYPE_2_OR_3 0x00400000
a028a6f5 625#define CPSI_MMOD 0x00020000
90e4755a 626
a737bd4d
NC
627#define LITERAL_MASK 0xf000f000
628#define OPCODE_MASK 0xfe1fffff
629#define V4_STR_BIT 0x00000020
90e4755a 630
efd81785
PB
631#define T2_SUBS_PC_LR 0xf3de8f00
632
a737bd4d 633#define DATA_OP_SHIFT 21
90e4755a 634
ef8d22e6
PB
635#define T2_OPCODE_MASK 0xfe1fffff
636#define T2_DATA_OP_SHIFT 21
637
6530b175
NC
638#define A_COND_MASK 0xf0000000
639#define A_PUSH_POP_OP_MASK 0x0fff0000
640
641/* Opcodes for pushing/poping registers to/from the stack. */
642#define A1_OPCODE_PUSH 0x092d0000
643#define A2_OPCODE_PUSH 0x052d0004
644#define A2_OPCODE_POP 0x049d0004
645
a737bd4d
NC
646/* Codes to distinguish the arithmetic instructions. */
647#define OPCODE_AND 0
648#define OPCODE_EOR 1
649#define OPCODE_SUB 2
650#define OPCODE_RSB 3
651#define OPCODE_ADD 4
652#define OPCODE_ADC 5
653#define OPCODE_SBC 6
654#define OPCODE_RSC 7
655#define OPCODE_TST 8
656#define OPCODE_TEQ 9
657#define OPCODE_CMP 10
658#define OPCODE_CMN 11
659#define OPCODE_ORR 12
660#define OPCODE_MOV 13
661#define OPCODE_BIC 14
662#define OPCODE_MVN 15
90e4755a 663
ef8d22e6
PB
664#define T2_OPCODE_AND 0
665#define T2_OPCODE_BIC 1
666#define T2_OPCODE_ORR 2
667#define T2_OPCODE_ORN 3
668#define T2_OPCODE_EOR 4
669#define T2_OPCODE_ADD 8
670#define T2_OPCODE_ADC 10
671#define T2_OPCODE_SBC 11
672#define T2_OPCODE_SUB 13
673#define T2_OPCODE_RSB 14
674
a737bd4d
NC
675#define T_OPCODE_MUL 0x4340
676#define T_OPCODE_TST 0x4200
677#define T_OPCODE_CMN 0x42c0
678#define T_OPCODE_NEG 0x4240
679#define T_OPCODE_MVN 0x43c0
90e4755a 680
a737bd4d
NC
681#define T_OPCODE_ADD_R3 0x1800
682#define T_OPCODE_SUB_R3 0x1a00
683#define T_OPCODE_ADD_HI 0x4400
684#define T_OPCODE_ADD_ST 0xb000
685#define T_OPCODE_SUB_ST 0xb080
686#define T_OPCODE_ADD_SP 0xa800
687#define T_OPCODE_ADD_PC 0xa000
688#define T_OPCODE_ADD_I8 0x3000
689#define T_OPCODE_SUB_I8 0x3800
690#define T_OPCODE_ADD_I3 0x1c00
691#define T_OPCODE_SUB_I3 0x1e00
b99bd4ef 692
a737bd4d
NC
693#define T_OPCODE_ASR_R 0x4100
694#define T_OPCODE_LSL_R 0x4080
c19d1205
ZW
695#define T_OPCODE_LSR_R 0x40c0
696#define T_OPCODE_ROR_R 0x41c0
a737bd4d
NC
697#define T_OPCODE_ASR_I 0x1000
698#define T_OPCODE_LSL_I 0x0000
699#define T_OPCODE_LSR_I 0x0800
b99bd4ef 700
a737bd4d
NC
701#define T_OPCODE_MOV_I8 0x2000
702#define T_OPCODE_CMP_I8 0x2800
703#define T_OPCODE_CMP_LR 0x4280
704#define T_OPCODE_MOV_HR 0x4600
705#define T_OPCODE_CMP_HR 0x4500
b99bd4ef 706
a737bd4d
NC
707#define T_OPCODE_LDR_PC 0x4800
708#define T_OPCODE_LDR_SP 0x9800
709#define T_OPCODE_STR_SP 0x9000
710#define T_OPCODE_LDR_IW 0x6800
711#define T_OPCODE_STR_IW 0x6000
712#define T_OPCODE_LDR_IH 0x8800
713#define T_OPCODE_STR_IH 0x8000
714#define T_OPCODE_LDR_IB 0x7800
715#define T_OPCODE_STR_IB 0x7000
716#define T_OPCODE_LDR_RW 0x5800
717#define T_OPCODE_STR_RW 0x5000
718#define T_OPCODE_LDR_RH 0x5a00
719#define T_OPCODE_STR_RH 0x5200
720#define T_OPCODE_LDR_RB 0x5c00
721#define T_OPCODE_STR_RB 0x5400
c9b604bd 722
a737bd4d
NC
723#define T_OPCODE_PUSH 0xb400
724#define T_OPCODE_POP 0xbc00
b99bd4ef 725
2fc8bdac 726#define T_OPCODE_BRANCH 0xe000
b99bd4ef 727
a737bd4d 728#define THUMB_SIZE 2 /* Size of thumb instruction. */
a737bd4d 729#define THUMB_PP_PC_LR 0x0100
c19d1205 730#define THUMB_LOAD_BIT 0x0800
53365c0d 731#define THUMB2_LOAD_BIT 0x00100000
c19d1205
ZW
732
733#define BAD_ARGS _("bad arguments to instruction")
fdfde340 734#define BAD_SP _("r13 not allowed here")
c19d1205
ZW
735#define BAD_PC _("r15 not allowed here")
736#define BAD_COND _("instruction cannot be conditional")
737#define BAD_OVERLAP _("registers may not be the same")
738#define BAD_HIREG _("lo register required")
739#define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
01cfc07f 740#define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
dfa9f0d5
PB
741#define BAD_BRANCH _("branch must be last instruction in IT block")
742#define BAD_NOT_IT _("instruction not allowed in IT block")
037e8744 743#define BAD_FPU _("selected FPU does not support instruction")
e07e6e58
NC
744#define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
745#define BAD_IT_COND _("incorrect condition in IT block")
746#define BAD_IT_IT _("IT falling in the range of a previous IT block")
921e5f0a 747#define MISSING_FNSTART _("missing .fnstart before unwinding directive")
5be8be5d
DG
748#define BAD_PC_ADDRESSING \
749 _("cannot use register index with PC-relative addressing")
750#define BAD_PC_WRITEBACK \
751 _("cannot use writeback with PC-relative addressing")
08f10d51 752#define BAD_RANGE _("branch out of range")
dd5181d5 753#define UNPRED_REG(R) _("using " R " results in unpredictable behaviour")
c19d1205 754
c921be7d
NC
755static struct hash_control * arm_ops_hsh;
756static struct hash_control * arm_cond_hsh;
757static struct hash_control * arm_shift_hsh;
758static struct hash_control * arm_psr_hsh;
759static struct hash_control * arm_v7m_psr_hsh;
760static struct hash_control * arm_reg_hsh;
761static struct hash_control * arm_reloc_hsh;
762static struct hash_control * arm_barrier_opt_hsh;
b99bd4ef 763
b99bd4ef
NC
764/* Stuff needed to resolve the label ambiguity
765 As:
766 ...
767 label: <insn>
768 may differ from:
769 ...
770 label:
5f4273c7 771 <insn> */
b99bd4ef
NC
772
773symbolS * last_label_seen;
b34976b6 774static int label_is_thumb_function_name = FALSE;
e07e6e58 775
3d0c9500
NC
776/* Literal pool structure. Held on a per-section
777 and per-sub-section basis. */
a737bd4d 778
c19d1205 779#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 780typedef struct literal_pool
b99bd4ef 781{
c921be7d
NC
782 expressionS literals [MAX_LITERAL_POOL_SIZE];
783 unsigned int next_free_entry;
784 unsigned int id;
785 symbolS * symbol;
786 segT section;
787 subsegT sub_section;
a8040cf2
NC
788#ifdef OBJ_ELF
789 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
790#endif
c921be7d 791 struct literal_pool * next;
3d0c9500 792} literal_pool;
b99bd4ef 793
3d0c9500
NC
794/* Pointer to a linked list of literal pools. */
795literal_pool * list_of_pools = NULL;
e27ec89e 796
e07e6e58
NC
797#ifdef OBJ_ELF
798# define now_it seg_info (now_seg)->tc_segment_info_data.current_it
799#else
800static struct current_it now_it;
801#endif
802
803static inline int
804now_it_compatible (int cond)
805{
806 return (cond & ~1) == (now_it.cc & ~1);
807}
808
809static inline int
810conditional_insn (void)
811{
812 return inst.cond != COND_ALWAYS;
813}
814
815static int in_it_block (void);
816
817static int handle_it_state (void);
818
819static void force_automatic_it_block_close (void);
820
c921be7d
NC
821static void it_fsm_post_encode (void);
822
e07e6e58
NC
823#define set_it_insn_type(type) \
824 do \
825 { \
826 inst.it_insn_type = type; \
827 if (handle_it_state () == FAIL) \
828 return; \
829 } \
830 while (0)
831
c921be7d
NC
832#define set_it_insn_type_nonvoid(type, failret) \
833 do \
834 { \
835 inst.it_insn_type = type; \
836 if (handle_it_state () == FAIL) \
837 return failret; \
838 } \
839 while(0)
840
e07e6e58
NC
841#define set_it_insn_type_last() \
842 do \
843 { \
844 if (inst.cond == COND_ALWAYS) \
845 set_it_insn_type (IF_INSIDE_IT_LAST_INSN); \
846 else \
847 set_it_insn_type (INSIDE_IT_LAST_INSN); \
848 } \
849 while (0)
850
c19d1205 851/* Pure syntax. */
b99bd4ef 852
c19d1205
ZW
853/* This array holds the chars that always start a comment. If the
854 pre-processor is disabled, these aren't very useful. */
855const char comment_chars[] = "@";
3d0c9500 856
c19d1205
ZW
857/* This array holds the chars that only start a comment at the beginning of
858 a line. If the line seems to have the form '# 123 filename'
859 .line and .file directives will appear in the pre-processed output. */
860/* Note that input_file.c hand checks for '#' at the beginning of the
861 first line of the input file. This is because the compiler outputs
862 #NO_APP at the beginning of its output. */
863/* Also note that comments like this one will always work. */
864const char line_comment_chars[] = "#";
3d0c9500 865
c19d1205 866const char line_separator_chars[] = ";";
b99bd4ef 867
c19d1205
ZW
868/* Chars that can be used to separate mant
869 from exp in floating point numbers. */
870const char EXP_CHARS[] = "eE";
3d0c9500 871
c19d1205
ZW
872/* Chars that mean this number is a floating point constant. */
873/* As in 0f12.456 */
874/* or 0d1.2345e12 */
b99bd4ef 875
c19d1205 876const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 877
c19d1205
ZW
878/* Prefix characters that indicate the start of an immediate
879 value. */
880#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 881
c19d1205
ZW
882/* Separator character handling. */
883
884#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
885
886static inline int
887skip_past_char (char ** str, char c)
888{
8ab8155f
NC
889 /* PR gas/14987: Allow for whitespace before the expected character. */
890 skip_whitespace (*str);
427d0db6 891
c19d1205
ZW
892 if (**str == c)
893 {
894 (*str)++;
895 return SUCCESS;
3d0c9500 896 }
c19d1205
ZW
897 else
898 return FAIL;
899}
c921be7d 900
c19d1205 901#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 902
c19d1205
ZW
903/* Arithmetic expressions (possibly involving symbols). */
904
905/* Return TRUE if anything in the expression is a bignum. */
906
907static int
908walk_no_bignums (symbolS * sp)
909{
910 if (symbol_get_value_expression (sp)->X_op == O_big)
911 return 1;
912
913 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 914 {
c19d1205
ZW
915 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
916 || (symbol_get_value_expression (sp)->X_op_symbol
917 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
918 }
919
c19d1205 920 return 0;
3d0c9500
NC
921}
922
c19d1205
ZW
923static int in_my_get_expression = 0;
924
925/* Third argument to my_get_expression. */
926#define GE_NO_PREFIX 0
927#define GE_IMM_PREFIX 1
928#define GE_OPT_PREFIX 2
5287ad62
JB
929/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
930 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
931#define GE_OPT_PREFIX_BIG 3
a737bd4d 932
b99bd4ef 933static int
c19d1205 934my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 935{
c19d1205
ZW
936 char * save_in;
937 segT seg;
b99bd4ef 938
c19d1205
ZW
939 /* In unified syntax, all prefixes are optional. */
940 if (unified_syntax)
5287ad62
JB
941 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
942 : GE_OPT_PREFIX;
b99bd4ef 943
c19d1205 944 switch (prefix_mode)
b99bd4ef 945 {
c19d1205
ZW
946 case GE_NO_PREFIX: break;
947 case GE_IMM_PREFIX:
948 if (!is_immediate_prefix (**str))
949 {
950 inst.error = _("immediate expression requires a # prefix");
951 return FAIL;
952 }
953 (*str)++;
954 break;
955 case GE_OPT_PREFIX:
5287ad62 956 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
957 if (is_immediate_prefix (**str))
958 (*str)++;
959 break;
960 default: abort ();
961 }
b99bd4ef 962
c19d1205 963 memset (ep, 0, sizeof (expressionS));
b99bd4ef 964
c19d1205
ZW
965 save_in = input_line_pointer;
966 input_line_pointer = *str;
967 in_my_get_expression = 1;
968 seg = expression (ep);
969 in_my_get_expression = 0;
970
f86adc07 971 if (ep->X_op == O_illegal || ep->X_op == O_absent)
b99bd4ef 972 {
f86adc07 973 /* We found a bad or missing expression in md_operand(). */
c19d1205
ZW
974 *str = input_line_pointer;
975 input_line_pointer = save_in;
976 if (inst.error == NULL)
f86adc07
NS
977 inst.error = (ep->X_op == O_absent
978 ? _("missing expression") :_("bad expression"));
c19d1205
ZW
979 return 1;
980 }
b99bd4ef 981
c19d1205
ZW
982#ifdef OBJ_AOUT
983 if (seg != absolute_section
984 && seg != text_section
985 && seg != data_section
986 && seg != bss_section
987 && seg != undefined_section)
988 {
989 inst.error = _("bad segment");
990 *str = input_line_pointer;
991 input_line_pointer = save_in;
992 return 1;
b99bd4ef 993 }
87975d2a
AM
994#else
995 (void) seg;
c19d1205 996#endif
b99bd4ef 997
c19d1205
ZW
998 /* Get rid of any bignums now, so that we don't generate an error for which
999 we can't establish a line number later on. Big numbers are never valid
1000 in instructions, which is where this routine is always called. */
5287ad62
JB
1001 if (prefix_mode != GE_OPT_PREFIX_BIG
1002 && (ep->X_op == O_big
1003 || (ep->X_add_symbol
1004 && (walk_no_bignums (ep->X_add_symbol)
1005 || (ep->X_op_symbol
1006 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
1007 {
1008 inst.error = _("invalid constant");
1009 *str = input_line_pointer;
1010 input_line_pointer = save_in;
1011 return 1;
1012 }
b99bd4ef 1013
c19d1205
ZW
1014 *str = input_line_pointer;
1015 input_line_pointer = save_in;
1016 return 0;
b99bd4ef
NC
1017}
1018
c19d1205
ZW
1019/* Turn a string in input_line_pointer into a floating point constant
1020 of type TYPE, and store the appropriate bytes in *LITP. The number
1021 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1022 returned, or NULL on OK.
b99bd4ef 1023
c19d1205
ZW
1024 Note that fp constants aren't represent in the normal way on the ARM.
1025 In big endian mode, things are as expected. However, in little endian
1026 mode fp constants are big-endian word-wise, and little-endian byte-wise
1027 within the words. For example, (double) 1.1 in big endian mode is
1028 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1029 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 1030
c19d1205 1031 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 1032
c19d1205
ZW
1033char *
1034md_atof (int type, char * litP, int * sizeP)
1035{
1036 int prec;
1037 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1038 char *t;
1039 int i;
b99bd4ef 1040
c19d1205
ZW
1041 switch (type)
1042 {
1043 case 'f':
1044 case 'F':
1045 case 's':
1046 case 'S':
1047 prec = 2;
1048 break;
b99bd4ef 1049
c19d1205
ZW
1050 case 'd':
1051 case 'D':
1052 case 'r':
1053 case 'R':
1054 prec = 4;
1055 break;
b99bd4ef 1056
c19d1205
ZW
1057 case 'x':
1058 case 'X':
499ac353 1059 prec = 5;
c19d1205 1060 break;
b99bd4ef 1061
c19d1205
ZW
1062 case 'p':
1063 case 'P':
499ac353 1064 prec = 5;
c19d1205 1065 break;
a737bd4d 1066
c19d1205
ZW
1067 default:
1068 *sizeP = 0;
499ac353 1069 return _("Unrecognized or unsupported floating point constant");
c19d1205 1070 }
b99bd4ef 1071
c19d1205
ZW
1072 t = atof_ieee (input_line_pointer, type, words);
1073 if (t)
1074 input_line_pointer = t;
499ac353 1075 *sizeP = prec * sizeof (LITTLENUM_TYPE);
b99bd4ef 1076
c19d1205
ZW
1077 if (target_big_endian)
1078 {
1079 for (i = 0; i < prec; i++)
1080 {
499ac353
NC
1081 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1082 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1083 }
1084 }
1085 else
1086 {
e74cfd16 1087 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
1088 for (i = prec - 1; i >= 0; i--)
1089 {
499ac353
NC
1090 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1091 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1092 }
1093 else
1094 /* For a 4 byte float the order of elements in `words' is 1 0.
1095 For an 8 byte float the order is 1 0 3 2. */
1096 for (i = 0; i < prec; i += 2)
1097 {
499ac353
NC
1098 md_number_to_chars (litP, (valueT) words[i + 1],
1099 sizeof (LITTLENUM_TYPE));
1100 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1101 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1102 litP += 2 * sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1103 }
1104 }
b99bd4ef 1105
499ac353 1106 return NULL;
c19d1205 1107}
b99bd4ef 1108
c19d1205
ZW
1109/* We handle all bad expressions here, so that we can report the faulty
1110 instruction in the error message. */
1111void
91d6fa6a 1112md_operand (expressionS * exp)
c19d1205
ZW
1113{
1114 if (in_my_get_expression)
91d6fa6a 1115 exp->X_op = O_illegal;
b99bd4ef
NC
1116}
1117
c19d1205 1118/* Immediate values. */
b99bd4ef 1119
c19d1205
ZW
1120/* Generic immediate-value read function for use in directives.
1121 Accepts anything that 'expression' can fold to a constant.
1122 *val receives the number. */
1123#ifdef OBJ_ELF
1124static int
1125immediate_for_directive (int *val)
b99bd4ef 1126{
c19d1205
ZW
1127 expressionS exp;
1128 exp.X_op = O_illegal;
b99bd4ef 1129
c19d1205
ZW
1130 if (is_immediate_prefix (*input_line_pointer))
1131 {
1132 input_line_pointer++;
1133 expression (&exp);
1134 }
b99bd4ef 1135
c19d1205
ZW
1136 if (exp.X_op != O_constant)
1137 {
1138 as_bad (_("expected #constant"));
1139 ignore_rest_of_line ();
1140 return FAIL;
1141 }
1142 *val = exp.X_add_number;
1143 return SUCCESS;
b99bd4ef 1144}
c19d1205 1145#endif
b99bd4ef 1146
c19d1205 1147/* Register parsing. */
b99bd4ef 1148
c19d1205
ZW
1149/* Generic register parser. CCP points to what should be the
1150 beginning of a register name. If it is indeed a valid register
1151 name, advance CCP over it and return the reg_entry structure;
1152 otherwise return NULL. Does not issue diagnostics. */
1153
1154static struct reg_entry *
1155arm_reg_parse_multi (char **ccp)
b99bd4ef 1156{
c19d1205
ZW
1157 char *start = *ccp;
1158 char *p;
1159 struct reg_entry *reg;
b99bd4ef 1160
c19d1205
ZW
1161#ifdef REGISTER_PREFIX
1162 if (*start != REGISTER_PREFIX)
01cfc07f 1163 return NULL;
c19d1205
ZW
1164 start++;
1165#endif
1166#ifdef OPTIONAL_REGISTER_PREFIX
1167 if (*start == OPTIONAL_REGISTER_PREFIX)
1168 start++;
1169#endif
b99bd4ef 1170
c19d1205
ZW
1171 p = start;
1172 if (!ISALPHA (*p) || !is_name_beginner (*p))
1173 return NULL;
b99bd4ef 1174
c19d1205
ZW
1175 do
1176 p++;
1177 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1178
1179 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1180
1181 if (!reg)
1182 return NULL;
1183
1184 *ccp = p;
1185 return reg;
b99bd4ef
NC
1186}
1187
1188static int
dcbf9037
JB
1189arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
1190 enum arm_reg_type type)
b99bd4ef 1191{
c19d1205
ZW
1192 /* Alternative syntaxes are accepted for a few register classes. */
1193 switch (type)
1194 {
1195 case REG_TYPE_MVF:
1196 case REG_TYPE_MVD:
1197 case REG_TYPE_MVFX:
1198 case REG_TYPE_MVDX:
1199 /* Generic coprocessor register names are allowed for these. */
79134647 1200 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1201 return reg->number;
1202 break;
69b97547 1203
c19d1205
ZW
1204 case REG_TYPE_CP:
1205 /* For backward compatibility, a bare number is valid here. */
1206 {
1207 unsigned long processor = strtoul (start, ccp, 10);
1208 if (*ccp != start && processor <= 15)
1209 return processor;
1210 }
6057a28f 1211
c19d1205
ZW
1212 case REG_TYPE_MMXWC:
1213 /* WC includes WCG. ??? I'm not sure this is true for all
1214 instructions that take WC registers. */
79134647 1215 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1216 return reg->number;
6057a28f 1217 break;
c19d1205 1218
6057a28f 1219 default:
c19d1205 1220 break;
6057a28f
NC
1221 }
1222
dcbf9037
JB
1223 return FAIL;
1224}
1225
1226/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1227 return value is the register number or FAIL. */
1228
1229static int
1230arm_reg_parse (char **ccp, enum arm_reg_type type)
1231{
1232 char *start = *ccp;
1233 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1234 int ret;
1235
1236 /* Do not allow a scalar (reg+index) to parse as a register. */
1237 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1238 return FAIL;
1239
1240 if (reg && reg->type == type)
1241 return reg->number;
1242
1243 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1244 return ret;
1245
c19d1205
ZW
1246 *ccp = start;
1247 return FAIL;
1248}
69b97547 1249
dcbf9037
JB
1250/* Parse a Neon type specifier. *STR should point at the leading '.'
1251 character. Does no verification at this stage that the type fits the opcode
1252 properly. E.g.,
1253
1254 .i32.i32.s16
1255 .s32.f32
1256 .u16
1257
1258 Can all be legally parsed by this function.
1259
1260 Fills in neon_type struct pointer with parsed information, and updates STR
1261 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1262 type, FAIL if not. */
1263
1264static int
1265parse_neon_type (struct neon_type *type, char **str)
1266{
1267 char *ptr = *str;
1268
1269 if (type)
1270 type->elems = 0;
1271
1272 while (type->elems < NEON_MAX_TYPE_ELS)
1273 {
1274 enum neon_el_type thistype = NT_untyped;
1275 unsigned thissize = -1u;
1276
1277 if (*ptr != '.')
1278 break;
1279
1280 ptr++;
1281
1282 /* Just a size without an explicit type. */
1283 if (ISDIGIT (*ptr))
1284 goto parsesize;
1285
1286 switch (TOLOWER (*ptr))
1287 {
1288 case 'i': thistype = NT_integer; break;
1289 case 'f': thistype = NT_float; break;
1290 case 'p': thistype = NT_poly; break;
1291 case 's': thistype = NT_signed; break;
1292 case 'u': thistype = NT_unsigned; break;
037e8744
JB
1293 case 'd':
1294 thistype = NT_float;
1295 thissize = 64;
1296 ptr++;
1297 goto done;
dcbf9037
JB
1298 default:
1299 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1300 return FAIL;
1301 }
1302
1303 ptr++;
1304
1305 /* .f is an abbreviation for .f32. */
1306 if (thistype == NT_float && !ISDIGIT (*ptr))
1307 thissize = 32;
1308 else
1309 {
1310 parsesize:
1311 thissize = strtoul (ptr, &ptr, 10);
1312
1313 if (thissize != 8 && thissize != 16 && thissize != 32
1314 && thissize != 64)
1315 {
1316 as_bad (_("bad size %d in type specifier"), thissize);
1317 return FAIL;
1318 }
1319 }
1320
037e8744 1321 done:
dcbf9037
JB
1322 if (type)
1323 {
1324 type->el[type->elems].type = thistype;
1325 type->el[type->elems].size = thissize;
1326 type->elems++;
1327 }
1328 }
1329
1330 /* Empty/missing type is not a successful parse. */
1331 if (type->elems == 0)
1332 return FAIL;
1333
1334 *str = ptr;
1335
1336 return SUCCESS;
1337}
1338
1339/* Errors may be set multiple times during parsing or bit encoding
1340 (particularly in the Neon bits), but usually the earliest error which is set
1341 will be the most meaningful. Avoid overwriting it with later (cascading)
1342 errors by calling this function. */
1343
1344static void
1345first_error (const char *err)
1346{
1347 if (!inst.error)
1348 inst.error = err;
1349}
1350
1351/* Parse a single type, e.g. ".s32", leading period included. */
1352static int
1353parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1354{
1355 char *str = *ccp;
1356 struct neon_type optype;
1357
1358 if (*str == '.')
1359 {
1360 if (parse_neon_type (&optype, &str) == SUCCESS)
1361 {
1362 if (optype.elems == 1)
1363 *vectype = optype.el[0];
1364 else
1365 {
1366 first_error (_("only one type should be specified for operand"));
1367 return FAIL;
1368 }
1369 }
1370 else
1371 {
1372 first_error (_("vector type expected"));
1373 return FAIL;
1374 }
1375 }
1376 else
1377 return FAIL;
5f4273c7 1378
dcbf9037 1379 *ccp = str;
5f4273c7 1380
dcbf9037
JB
1381 return SUCCESS;
1382}
1383
1384/* Special meanings for indices (which have a range of 0-7), which will fit into
1385 a 4-bit integer. */
1386
1387#define NEON_ALL_LANES 15
1388#define NEON_INTERLEAVE_LANES 14
1389
1390/* Parse either a register or a scalar, with an optional type. Return the
1391 register number, and optionally fill in the actual type of the register
1392 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1393 type/index information in *TYPEINFO. */
1394
1395static int
1396parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
1397 enum arm_reg_type *rtype,
1398 struct neon_typed_alias *typeinfo)
1399{
1400 char *str = *ccp;
1401 struct reg_entry *reg = arm_reg_parse_multi (&str);
1402 struct neon_typed_alias atype;
1403 struct neon_type_el parsetype;
1404
1405 atype.defined = 0;
1406 atype.index = -1;
1407 atype.eltype.type = NT_invtype;
1408 atype.eltype.size = -1;
1409
1410 /* Try alternate syntax for some types of register. Note these are mutually
1411 exclusive with the Neon syntax extensions. */
1412 if (reg == NULL)
1413 {
1414 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1415 if (altreg != FAIL)
1416 *ccp = str;
1417 if (typeinfo)
1418 *typeinfo = atype;
1419 return altreg;
1420 }
1421
037e8744
JB
1422 /* Undo polymorphism when a set of register types may be accepted. */
1423 if ((type == REG_TYPE_NDQ
1424 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1425 || (type == REG_TYPE_VFSD
1426 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1427 || (type == REG_TYPE_NSDQ
1428 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
f512f76f
NC
1429 || reg->type == REG_TYPE_NQ))
1430 || (type == REG_TYPE_MMXWC
1431 && (reg->type == REG_TYPE_MMXWCG)))
21d799b5 1432 type = (enum arm_reg_type) reg->type;
dcbf9037
JB
1433
1434 if (type != reg->type)
1435 return FAIL;
1436
1437 if (reg->neon)
1438 atype = *reg->neon;
5f4273c7 1439
dcbf9037
JB
1440 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1441 {
1442 if ((atype.defined & NTA_HASTYPE) != 0)
1443 {
1444 first_error (_("can't redefine type for operand"));
1445 return FAIL;
1446 }
1447 atype.defined |= NTA_HASTYPE;
1448 atype.eltype = parsetype;
1449 }
5f4273c7 1450
dcbf9037
JB
1451 if (skip_past_char (&str, '[') == SUCCESS)
1452 {
1453 if (type != REG_TYPE_VFD)
1454 {
1455 first_error (_("only D registers may be indexed"));
1456 return FAIL;
1457 }
5f4273c7 1458
dcbf9037
JB
1459 if ((atype.defined & NTA_HASINDEX) != 0)
1460 {
1461 first_error (_("can't change index for operand"));
1462 return FAIL;
1463 }
1464
1465 atype.defined |= NTA_HASINDEX;
1466
1467 if (skip_past_char (&str, ']') == SUCCESS)
1468 atype.index = NEON_ALL_LANES;
1469 else
1470 {
1471 expressionS exp;
1472
1473 my_get_expression (&exp, &str, GE_NO_PREFIX);
1474
1475 if (exp.X_op != O_constant)
1476 {
1477 first_error (_("constant expression required"));
1478 return FAIL;
1479 }
1480
1481 if (skip_past_char (&str, ']') == FAIL)
1482 return FAIL;
1483
1484 atype.index = exp.X_add_number;
1485 }
1486 }
5f4273c7 1487
dcbf9037
JB
1488 if (typeinfo)
1489 *typeinfo = atype;
5f4273c7 1490
dcbf9037
JB
1491 if (rtype)
1492 *rtype = type;
5f4273c7 1493
dcbf9037 1494 *ccp = str;
5f4273c7 1495
dcbf9037
JB
1496 return reg->number;
1497}
1498
1499/* Like arm_reg_parse, but allow allow the following extra features:
1500 - If RTYPE is non-zero, return the (possibly restricted) type of the
1501 register (e.g. Neon double or quad reg when either has been requested).
1502 - If this is a Neon vector type with additional type information, fill
1503 in the struct pointed to by VECTYPE (if non-NULL).
5f4273c7 1504 This function will fault on encountering a scalar. */
dcbf9037
JB
1505
1506static int
1507arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
1508 enum arm_reg_type *rtype, struct neon_type_el *vectype)
1509{
1510 struct neon_typed_alias atype;
1511 char *str = *ccp;
1512 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1513
1514 if (reg == FAIL)
1515 return FAIL;
1516
0855e32b
NS
1517 /* Do not allow regname(... to parse as a register. */
1518 if (*str == '(')
1519 return FAIL;
1520
dcbf9037
JB
1521 /* Do not allow a scalar (reg+index) to parse as a register. */
1522 if ((atype.defined & NTA_HASINDEX) != 0)
1523 {
1524 first_error (_("register operand expected, but got scalar"));
1525 return FAIL;
1526 }
1527
1528 if (vectype)
1529 *vectype = atype.eltype;
1530
1531 *ccp = str;
1532
1533 return reg;
1534}
1535
1536#define NEON_SCALAR_REG(X) ((X) >> 4)
1537#define NEON_SCALAR_INDEX(X) ((X) & 15)
1538
5287ad62
JB
1539/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1540 have enough information to be able to do a good job bounds-checking. So, we
1541 just do easy checks here, and do further checks later. */
1542
1543static int
dcbf9037 1544parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1545{
dcbf9037 1546 int reg;
5287ad62 1547 char *str = *ccp;
dcbf9037 1548 struct neon_typed_alias atype;
5f4273c7 1549
dcbf9037 1550 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5f4273c7 1551
dcbf9037 1552 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62 1553 return FAIL;
5f4273c7 1554
dcbf9037 1555 if (atype.index == NEON_ALL_LANES)
5287ad62 1556 {
dcbf9037 1557 first_error (_("scalar must have an index"));
5287ad62
JB
1558 return FAIL;
1559 }
dcbf9037 1560 else if (atype.index >= 64 / elsize)
5287ad62 1561 {
dcbf9037 1562 first_error (_("scalar index out of range"));
5287ad62
JB
1563 return FAIL;
1564 }
5f4273c7 1565
dcbf9037
JB
1566 if (type)
1567 *type = atype.eltype;
5f4273c7 1568
5287ad62 1569 *ccp = str;
5f4273c7 1570
dcbf9037 1571 return reg * 16 + atype.index;
5287ad62
JB
1572}
1573
c19d1205 1574/* Parse an ARM register list. Returns the bitmask, or FAIL. */
e07e6e58 1575
c19d1205
ZW
1576static long
1577parse_reg_list (char ** strp)
1578{
1579 char * str = * strp;
1580 long range = 0;
1581 int another_range;
a737bd4d 1582
c19d1205
ZW
1583 /* We come back here if we get ranges concatenated by '+' or '|'. */
1584 do
6057a28f 1585 {
c19d1205 1586 another_range = 0;
a737bd4d 1587
c19d1205
ZW
1588 if (*str == '{')
1589 {
1590 int in_range = 0;
1591 int cur_reg = -1;
a737bd4d 1592
c19d1205
ZW
1593 str++;
1594 do
1595 {
1596 int reg;
6057a28f 1597
dcbf9037 1598 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1599 {
dcbf9037 1600 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1601 return FAIL;
1602 }
a737bd4d 1603
c19d1205
ZW
1604 if (in_range)
1605 {
1606 int i;
a737bd4d 1607
c19d1205
ZW
1608 if (reg <= cur_reg)
1609 {
dcbf9037 1610 first_error (_("bad range in register list"));
c19d1205
ZW
1611 return FAIL;
1612 }
40a18ebd 1613
c19d1205
ZW
1614 for (i = cur_reg + 1; i < reg; i++)
1615 {
1616 if (range & (1 << i))
1617 as_tsktsk
1618 (_("Warning: duplicated register (r%d) in register list"),
1619 i);
1620 else
1621 range |= 1 << i;
1622 }
1623 in_range = 0;
1624 }
a737bd4d 1625
c19d1205
ZW
1626 if (range & (1 << reg))
1627 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1628 reg);
1629 else if (reg <= cur_reg)
1630 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1631
c19d1205
ZW
1632 range |= 1 << reg;
1633 cur_reg = reg;
1634 }
1635 while (skip_past_comma (&str) != FAIL
1636 || (in_range = 1, *str++ == '-'));
1637 str--;
a737bd4d 1638
c19d1205
ZW
1639 if (*str++ != '}')
1640 {
dcbf9037 1641 first_error (_("missing `}'"));
c19d1205
ZW
1642 return FAIL;
1643 }
1644 }
1645 else
1646 {
91d6fa6a 1647 expressionS exp;
40a18ebd 1648
91d6fa6a 1649 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
c19d1205 1650 return FAIL;
40a18ebd 1651
91d6fa6a 1652 if (exp.X_op == O_constant)
c19d1205 1653 {
91d6fa6a
NC
1654 if (exp.X_add_number
1655 != (exp.X_add_number & 0x0000ffff))
c19d1205
ZW
1656 {
1657 inst.error = _("invalid register mask");
1658 return FAIL;
1659 }
a737bd4d 1660
91d6fa6a 1661 if ((range & exp.X_add_number) != 0)
c19d1205 1662 {
91d6fa6a 1663 int regno = range & exp.X_add_number;
a737bd4d 1664
c19d1205
ZW
1665 regno &= -regno;
1666 regno = (1 << regno) - 1;
1667 as_tsktsk
1668 (_("Warning: duplicated register (r%d) in register list"),
1669 regno);
1670 }
a737bd4d 1671
91d6fa6a 1672 range |= exp.X_add_number;
c19d1205
ZW
1673 }
1674 else
1675 {
1676 if (inst.reloc.type != 0)
1677 {
1678 inst.error = _("expression too complex");
1679 return FAIL;
1680 }
a737bd4d 1681
91d6fa6a 1682 memcpy (&inst.reloc.exp, &exp, sizeof (expressionS));
c19d1205
ZW
1683 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1684 inst.reloc.pc_rel = 0;
1685 }
1686 }
a737bd4d 1687
c19d1205
ZW
1688 if (*str == '|' || *str == '+')
1689 {
1690 str++;
1691 another_range = 1;
1692 }
a737bd4d 1693 }
c19d1205 1694 while (another_range);
a737bd4d 1695
c19d1205
ZW
1696 *strp = str;
1697 return range;
a737bd4d
NC
1698}
1699
5287ad62
JB
1700/* Types of registers in a list. */
1701
1702enum reg_list_els
1703{
1704 REGLIST_VFP_S,
1705 REGLIST_VFP_D,
1706 REGLIST_NEON_D
1707};
1708
c19d1205
ZW
1709/* Parse a VFP register list. If the string is invalid return FAIL.
1710 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1711 register. Parses registers of type ETYPE.
1712 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1713 - Q registers can be used to specify pairs of D registers
1714 - { } can be omitted from around a singleton register list
1715 FIXME: This is not implemented, as it would require backtracking in
1716 some cases, e.g.:
1717 vtbl.8 d3,d4,d5
1718 This could be done (the meaning isn't really ambiguous), but doesn't
1719 fit in well with the current parsing framework.
dcbf9037
JB
1720 - 32 D registers may be used (also true for VFPv3).
1721 FIXME: Types are ignored in these register lists, which is probably a
1722 bug. */
6057a28f 1723
c19d1205 1724static int
037e8744 1725parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1726{
037e8744 1727 char *str = *ccp;
c19d1205
ZW
1728 int base_reg;
1729 int new_base;
21d799b5 1730 enum arm_reg_type regtype = (enum arm_reg_type) 0;
5287ad62 1731 int max_regs = 0;
c19d1205
ZW
1732 int count = 0;
1733 int warned = 0;
1734 unsigned long mask = 0;
a737bd4d 1735 int i;
6057a28f 1736
037e8744 1737 if (*str != '{')
5287ad62
JB
1738 {
1739 inst.error = _("expecting {");
1740 return FAIL;
1741 }
6057a28f 1742
037e8744 1743 str++;
6057a28f 1744
5287ad62 1745 switch (etype)
c19d1205 1746 {
5287ad62 1747 case REGLIST_VFP_S:
c19d1205
ZW
1748 regtype = REG_TYPE_VFS;
1749 max_regs = 32;
5287ad62 1750 break;
5f4273c7 1751
5287ad62
JB
1752 case REGLIST_VFP_D:
1753 regtype = REG_TYPE_VFD;
b7fc2769 1754 break;
5f4273c7 1755
b7fc2769
JB
1756 case REGLIST_NEON_D:
1757 regtype = REG_TYPE_NDQ;
1758 break;
1759 }
1760
1761 if (etype != REGLIST_VFP_S)
1762 {
b1cc4aeb
PB
1763 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
1764 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
5287ad62
JB
1765 {
1766 max_regs = 32;
1767 if (thumb_mode)
1768 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
b1cc4aeb 1769 fpu_vfp_ext_d32);
5287ad62
JB
1770 else
1771 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
b1cc4aeb 1772 fpu_vfp_ext_d32);
5287ad62
JB
1773 }
1774 else
1775 max_regs = 16;
c19d1205 1776 }
6057a28f 1777
c19d1205 1778 base_reg = max_regs;
a737bd4d 1779
c19d1205
ZW
1780 do
1781 {
5287ad62 1782 int setmask = 1, addregs = 1;
dcbf9037 1783
037e8744 1784 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1785
c19d1205 1786 if (new_base == FAIL)
a737bd4d 1787 {
dcbf9037 1788 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1789 return FAIL;
1790 }
5f4273c7 1791
b7fc2769
JB
1792 if (new_base >= max_regs)
1793 {
1794 first_error (_("register out of range in list"));
1795 return FAIL;
1796 }
5f4273c7 1797
5287ad62
JB
1798 /* Note: a value of 2 * n is returned for the register Q<n>. */
1799 if (regtype == REG_TYPE_NQ)
1800 {
1801 setmask = 3;
1802 addregs = 2;
1803 }
1804
c19d1205
ZW
1805 if (new_base < base_reg)
1806 base_reg = new_base;
a737bd4d 1807
5287ad62 1808 if (mask & (setmask << new_base))
c19d1205 1809 {
dcbf9037 1810 first_error (_("invalid register list"));
c19d1205 1811 return FAIL;
a737bd4d 1812 }
a737bd4d 1813
c19d1205
ZW
1814 if ((mask >> new_base) != 0 && ! warned)
1815 {
1816 as_tsktsk (_("register list not in ascending order"));
1817 warned = 1;
1818 }
0bbf2aa4 1819
5287ad62
JB
1820 mask |= setmask << new_base;
1821 count += addregs;
0bbf2aa4 1822
037e8744 1823 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1824 {
1825 int high_range;
0bbf2aa4 1826
037e8744 1827 str++;
0bbf2aa4 1828
037e8744 1829 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
dcbf9037 1830 == FAIL)
c19d1205
ZW
1831 {
1832 inst.error = gettext (reg_expected_msgs[regtype]);
1833 return FAIL;
1834 }
0bbf2aa4 1835
b7fc2769
JB
1836 if (high_range >= max_regs)
1837 {
1838 first_error (_("register out of range in list"));
1839 return FAIL;
1840 }
1841
5287ad62
JB
1842 if (regtype == REG_TYPE_NQ)
1843 high_range = high_range + 1;
1844
c19d1205
ZW
1845 if (high_range <= new_base)
1846 {
1847 inst.error = _("register range not in ascending order");
1848 return FAIL;
1849 }
0bbf2aa4 1850
5287ad62 1851 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1852 {
5287ad62 1853 if (mask & (setmask << new_base))
0bbf2aa4 1854 {
c19d1205
ZW
1855 inst.error = _("invalid register list");
1856 return FAIL;
0bbf2aa4 1857 }
c19d1205 1858
5287ad62
JB
1859 mask |= setmask << new_base;
1860 count += addregs;
0bbf2aa4 1861 }
0bbf2aa4 1862 }
0bbf2aa4 1863 }
037e8744 1864 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1865
037e8744 1866 str++;
0bbf2aa4 1867
c19d1205
ZW
1868 /* Sanity check -- should have raised a parse error above. */
1869 if (count == 0 || count > max_regs)
1870 abort ();
1871
1872 *pbase = base_reg;
1873
1874 /* Final test -- the registers must be consecutive. */
1875 mask >>= base_reg;
1876 for (i = 0; i < count; i++)
1877 {
1878 if ((mask & (1u << i)) == 0)
1879 {
1880 inst.error = _("non-contiguous register range");
1881 return FAIL;
1882 }
1883 }
1884
037e8744
JB
1885 *ccp = str;
1886
c19d1205 1887 return count;
b99bd4ef
NC
1888}
1889
dcbf9037
JB
1890/* True if two alias types are the same. */
1891
c921be7d 1892static bfd_boolean
dcbf9037
JB
1893neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1894{
1895 if (!a && !b)
c921be7d 1896 return TRUE;
5f4273c7 1897
dcbf9037 1898 if (!a || !b)
c921be7d 1899 return FALSE;
dcbf9037
JB
1900
1901 if (a->defined != b->defined)
c921be7d 1902 return FALSE;
5f4273c7 1903
dcbf9037
JB
1904 if ((a->defined & NTA_HASTYPE) != 0
1905 && (a->eltype.type != b->eltype.type
1906 || a->eltype.size != b->eltype.size))
c921be7d 1907 return FALSE;
dcbf9037
JB
1908
1909 if ((a->defined & NTA_HASINDEX) != 0
1910 && (a->index != b->index))
c921be7d 1911 return FALSE;
5f4273c7 1912
c921be7d 1913 return TRUE;
dcbf9037
JB
1914}
1915
5287ad62
JB
1916/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1917 The base register is put in *PBASE.
dcbf9037 1918 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1919 the return value.
1920 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1921 Bits [6:5] encode the list length (minus one).
1922 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1923
5287ad62 1924#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1925#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1926#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1927
1928static int
dcbf9037
JB
1929parse_neon_el_struct_list (char **str, unsigned *pbase,
1930 struct neon_type_el *eltype)
5287ad62
JB
1931{
1932 char *ptr = *str;
1933 int base_reg = -1;
1934 int reg_incr = -1;
1935 int count = 0;
1936 int lane = -1;
1937 int leading_brace = 0;
1938 enum arm_reg_type rtype = REG_TYPE_NDQ;
20203fb9
NC
1939 const char *const incr_error = _("register stride must be 1 or 2");
1940 const char *const type_error = _("mismatched element/structure types in list");
dcbf9037 1941 struct neon_typed_alias firsttype;
5f4273c7 1942
5287ad62
JB
1943 if (skip_past_char (&ptr, '{') == SUCCESS)
1944 leading_brace = 1;
5f4273c7 1945
5287ad62
JB
1946 do
1947 {
dcbf9037
JB
1948 struct neon_typed_alias atype;
1949 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
1950
5287ad62
JB
1951 if (getreg == FAIL)
1952 {
dcbf9037 1953 first_error (_(reg_expected_msgs[rtype]));
5287ad62
JB
1954 return FAIL;
1955 }
5f4273c7 1956
5287ad62
JB
1957 if (base_reg == -1)
1958 {
1959 base_reg = getreg;
1960 if (rtype == REG_TYPE_NQ)
1961 {
1962 reg_incr = 1;
5287ad62 1963 }
dcbf9037 1964 firsttype = atype;
5287ad62
JB
1965 }
1966 else if (reg_incr == -1)
1967 {
1968 reg_incr = getreg - base_reg;
1969 if (reg_incr < 1 || reg_incr > 2)
1970 {
dcbf9037 1971 first_error (_(incr_error));
5287ad62
JB
1972 return FAIL;
1973 }
1974 }
1975 else if (getreg != base_reg + reg_incr * count)
1976 {
dcbf9037
JB
1977 first_error (_(incr_error));
1978 return FAIL;
1979 }
1980
c921be7d 1981 if (! neon_alias_types_same (&atype, &firsttype))
dcbf9037
JB
1982 {
1983 first_error (_(type_error));
5287ad62
JB
1984 return FAIL;
1985 }
5f4273c7 1986
5287ad62
JB
1987 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
1988 modes. */
1989 if (ptr[0] == '-')
1990 {
dcbf9037 1991 struct neon_typed_alias htype;
5287ad62
JB
1992 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
1993 if (lane == -1)
1994 lane = NEON_INTERLEAVE_LANES;
1995 else if (lane != NEON_INTERLEAVE_LANES)
1996 {
dcbf9037 1997 first_error (_(type_error));
5287ad62
JB
1998 return FAIL;
1999 }
2000 if (reg_incr == -1)
2001 reg_incr = 1;
2002 else if (reg_incr != 1)
2003 {
dcbf9037 2004 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
5287ad62
JB
2005 return FAIL;
2006 }
2007 ptr++;
dcbf9037 2008 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
5287ad62
JB
2009 if (hireg == FAIL)
2010 {
dcbf9037
JB
2011 first_error (_(reg_expected_msgs[rtype]));
2012 return FAIL;
2013 }
c921be7d 2014 if (! neon_alias_types_same (&htype, &firsttype))
dcbf9037
JB
2015 {
2016 first_error (_(type_error));
5287ad62
JB
2017 return FAIL;
2018 }
2019 count += hireg + dregs - getreg;
2020 continue;
2021 }
5f4273c7 2022
5287ad62
JB
2023 /* If we're using Q registers, we can't use [] or [n] syntax. */
2024 if (rtype == REG_TYPE_NQ)
2025 {
2026 count += 2;
2027 continue;
2028 }
5f4273c7 2029
dcbf9037 2030 if ((atype.defined & NTA_HASINDEX) != 0)
5287ad62 2031 {
dcbf9037
JB
2032 if (lane == -1)
2033 lane = atype.index;
2034 else if (lane != atype.index)
5287ad62 2035 {
dcbf9037
JB
2036 first_error (_(type_error));
2037 return FAIL;
5287ad62
JB
2038 }
2039 }
2040 else if (lane == -1)
2041 lane = NEON_INTERLEAVE_LANES;
2042 else if (lane != NEON_INTERLEAVE_LANES)
2043 {
dcbf9037 2044 first_error (_(type_error));
5287ad62
JB
2045 return FAIL;
2046 }
2047 count++;
2048 }
2049 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
5f4273c7 2050
5287ad62
JB
2051 /* No lane set by [x]. We must be interleaving structures. */
2052 if (lane == -1)
2053 lane = NEON_INTERLEAVE_LANES;
5f4273c7 2054
5287ad62
JB
2055 /* Sanity check. */
2056 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
2057 || (count > 1 && reg_incr == -1))
2058 {
dcbf9037 2059 first_error (_("error parsing element/structure list"));
5287ad62
JB
2060 return FAIL;
2061 }
2062
2063 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2064 {
dcbf9037 2065 first_error (_("expected }"));
5287ad62
JB
2066 return FAIL;
2067 }
5f4273c7 2068
5287ad62
JB
2069 if (reg_incr == -1)
2070 reg_incr = 1;
2071
dcbf9037
JB
2072 if (eltype)
2073 *eltype = firsttype.eltype;
2074
5287ad62
JB
2075 *pbase = base_reg;
2076 *str = ptr;
5f4273c7 2077
5287ad62
JB
2078 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2079}
2080
c19d1205
ZW
2081/* Parse an explicit relocation suffix on an expression. This is
2082 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2083 arm_reloc_hsh contains no entries, so this function can only
2084 succeed if there is no () after the word. Returns -1 on error,
2085 BFD_RELOC_UNUSED if there wasn't any suffix. */
3da1d841 2086
c19d1205
ZW
2087static int
2088parse_reloc (char **str)
b99bd4ef 2089{
c19d1205
ZW
2090 struct reloc_entry *r;
2091 char *p, *q;
b99bd4ef 2092
c19d1205
ZW
2093 if (**str != '(')
2094 return BFD_RELOC_UNUSED;
b99bd4ef 2095
c19d1205
ZW
2096 p = *str + 1;
2097 q = p;
2098
2099 while (*q && *q != ')' && *q != ',')
2100 q++;
2101 if (*q != ')')
2102 return -1;
2103
21d799b5
NC
2104 if ((r = (struct reloc_entry *)
2105 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
c19d1205
ZW
2106 return -1;
2107
2108 *str = q + 1;
2109 return r->reloc;
b99bd4ef
NC
2110}
2111
c19d1205
ZW
2112/* Directives: register aliases. */
2113
dcbf9037 2114static struct reg_entry *
90ec0d68 2115insert_reg_alias (char *str, unsigned number, int type)
b99bd4ef 2116{
d3ce72d0 2117 struct reg_entry *new_reg;
c19d1205 2118 const char *name;
b99bd4ef 2119
d3ce72d0 2120 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
c19d1205 2121 {
d3ce72d0 2122 if (new_reg->builtin)
c19d1205 2123 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 2124
c19d1205
ZW
2125 /* Only warn about a redefinition if it's not defined as the
2126 same register. */
d3ce72d0 2127 else if (new_reg->number != number || new_reg->type != type)
c19d1205 2128 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 2129
d929913e 2130 return NULL;
c19d1205 2131 }
b99bd4ef 2132
c19d1205 2133 name = xstrdup (str);
d3ce72d0 2134 new_reg = (struct reg_entry *) xmalloc (sizeof (struct reg_entry));
b99bd4ef 2135
d3ce72d0
NC
2136 new_reg->name = name;
2137 new_reg->number = number;
2138 new_reg->type = type;
2139 new_reg->builtin = FALSE;
2140 new_reg->neon = NULL;
b99bd4ef 2141
d3ce72d0 2142 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
c19d1205 2143 abort ();
5f4273c7 2144
d3ce72d0 2145 return new_reg;
dcbf9037
JB
2146}
2147
2148static void
2149insert_neon_reg_alias (char *str, int number, int type,
2150 struct neon_typed_alias *atype)
2151{
2152 struct reg_entry *reg = insert_reg_alias (str, number, type);
5f4273c7 2153
dcbf9037
JB
2154 if (!reg)
2155 {
2156 first_error (_("attempt to redefine typed alias"));
2157 return;
2158 }
5f4273c7 2159
dcbf9037
JB
2160 if (atype)
2161 {
21d799b5
NC
2162 reg->neon = (struct neon_typed_alias *)
2163 xmalloc (sizeof (struct neon_typed_alias));
dcbf9037
JB
2164 *reg->neon = *atype;
2165 }
c19d1205 2166}
b99bd4ef 2167
c19d1205 2168/* Look for the .req directive. This is of the form:
b99bd4ef 2169
c19d1205 2170 new_register_name .req existing_register_name
b99bd4ef 2171
c19d1205 2172 If we find one, or if it looks sufficiently like one that we want to
d929913e 2173 handle any error here, return TRUE. Otherwise return FALSE. */
b99bd4ef 2174
d929913e 2175static bfd_boolean
c19d1205
ZW
2176create_register_alias (char * newname, char *p)
2177{
2178 struct reg_entry *old;
2179 char *oldname, *nbuf;
2180 size_t nlen;
b99bd4ef 2181
c19d1205
ZW
2182 /* The input scrubber ensures that whitespace after the mnemonic is
2183 collapsed to single spaces. */
2184 oldname = p;
2185 if (strncmp (oldname, " .req ", 6) != 0)
d929913e 2186 return FALSE;
b99bd4ef 2187
c19d1205
ZW
2188 oldname += 6;
2189 if (*oldname == '\0')
d929913e 2190 return FALSE;
b99bd4ef 2191
21d799b5 2192 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
c19d1205 2193 if (!old)
b99bd4ef 2194 {
c19d1205 2195 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
d929913e 2196 return TRUE;
b99bd4ef
NC
2197 }
2198
c19d1205
ZW
2199 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2200 the desired alias name, and p points to its end. If not, then
2201 the desired alias name is in the global original_case_string. */
2202#ifdef TC_CASE_SENSITIVE
2203 nlen = p - newname;
2204#else
2205 newname = original_case_string;
2206 nlen = strlen (newname);
2207#endif
b99bd4ef 2208
21d799b5 2209 nbuf = (char *) alloca (nlen + 1);
c19d1205
ZW
2210 memcpy (nbuf, newname, nlen);
2211 nbuf[nlen] = '\0';
b99bd4ef 2212
c19d1205
ZW
2213 /* Create aliases under the new name as stated; an all-lowercase
2214 version of the new name; and an all-uppercase version of the new
2215 name. */
d929913e
NC
2216 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2217 {
2218 for (p = nbuf; *p; p++)
2219 *p = TOUPPER (*p);
c19d1205 2220
d929913e
NC
2221 if (strncmp (nbuf, newname, nlen))
2222 {
2223 /* If this attempt to create an additional alias fails, do not bother
2224 trying to create the all-lower case alias. We will fail and issue
2225 a second, duplicate error message. This situation arises when the
2226 programmer does something like:
2227 foo .req r0
2228 Foo .req r1
2229 The second .req creates the "Foo" alias but then fails to create
5f4273c7 2230 the artificial FOO alias because it has already been created by the
d929913e
NC
2231 first .req. */
2232 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
2233 return TRUE;
2234 }
c19d1205 2235
d929913e
NC
2236 for (p = nbuf; *p; p++)
2237 *p = TOLOWER (*p);
c19d1205 2238
d929913e
NC
2239 if (strncmp (nbuf, newname, nlen))
2240 insert_reg_alias (nbuf, old->number, old->type);
2241 }
c19d1205 2242
d929913e 2243 return TRUE;
b99bd4ef
NC
2244}
2245
dcbf9037
JB
2246/* Create a Neon typed/indexed register alias using directives, e.g.:
2247 X .dn d5.s32[1]
2248 Y .qn 6.s16
2249 Z .dn d7
2250 T .dn Z[0]
2251 These typed registers can be used instead of the types specified after the
2252 Neon mnemonic, so long as all operands given have types. Types can also be
2253 specified directly, e.g.:
5f4273c7 2254 vadd d0.s32, d1.s32, d2.s32 */
dcbf9037 2255
c921be7d 2256static bfd_boolean
dcbf9037
JB
2257create_neon_reg_alias (char *newname, char *p)
2258{
2259 enum arm_reg_type basetype;
2260 struct reg_entry *basereg;
2261 struct reg_entry mybasereg;
2262 struct neon_type ntype;
2263 struct neon_typed_alias typeinfo;
12d6b0b7 2264 char *namebuf, *nameend ATTRIBUTE_UNUSED;
dcbf9037 2265 int namelen;
5f4273c7 2266
dcbf9037
JB
2267 typeinfo.defined = 0;
2268 typeinfo.eltype.type = NT_invtype;
2269 typeinfo.eltype.size = -1;
2270 typeinfo.index = -1;
5f4273c7 2271
dcbf9037 2272 nameend = p;
5f4273c7 2273
dcbf9037
JB
2274 if (strncmp (p, " .dn ", 5) == 0)
2275 basetype = REG_TYPE_VFD;
2276 else if (strncmp (p, " .qn ", 5) == 0)
2277 basetype = REG_TYPE_NQ;
2278 else
c921be7d 2279 return FALSE;
5f4273c7 2280
dcbf9037 2281 p += 5;
5f4273c7 2282
dcbf9037 2283 if (*p == '\0')
c921be7d 2284 return FALSE;
5f4273c7 2285
dcbf9037
JB
2286 basereg = arm_reg_parse_multi (&p);
2287
2288 if (basereg && basereg->type != basetype)
2289 {
2290 as_bad (_("bad type for register"));
c921be7d 2291 return FALSE;
dcbf9037
JB
2292 }
2293
2294 if (basereg == NULL)
2295 {
2296 expressionS exp;
2297 /* Try parsing as an integer. */
2298 my_get_expression (&exp, &p, GE_NO_PREFIX);
2299 if (exp.X_op != O_constant)
2300 {
2301 as_bad (_("expression must be constant"));
c921be7d 2302 return FALSE;
dcbf9037
JB
2303 }
2304 basereg = &mybasereg;
2305 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
2306 : exp.X_add_number;
2307 basereg->neon = 0;
2308 }
2309
2310 if (basereg->neon)
2311 typeinfo = *basereg->neon;
2312
2313 if (parse_neon_type (&ntype, &p) == SUCCESS)
2314 {
2315 /* We got a type. */
2316 if (typeinfo.defined & NTA_HASTYPE)
2317 {
2318 as_bad (_("can't redefine the type of a register alias"));
c921be7d 2319 return FALSE;
dcbf9037 2320 }
5f4273c7 2321
dcbf9037
JB
2322 typeinfo.defined |= NTA_HASTYPE;
2323 if (ntype.elems != 1)
2324 {
2325 as_bad (_("you must specify a single type only"));
c921be7d 2326 return FALSE;
dcbf9037
JB
2327 }
2328 typeinfo.eltype = ntype.el[0];
2329 }
5f4273c7 2330
dcbf9037
JB
2331 if (skip_past_char (&p, '[') == SUCCESS)
2332 {
2333 expressionS exp;
2334 /* We got a scalar index. */
5f4273c7 2335
dcbf9037
JB
2336 if (typeinfo.defined & NTA_HASINDEX)
2337 {
2338 as_bad (_("can't redefine the index of a scalar alias"));
c921be7d 2339 return FALSE;
dcbf9037 2340 }
5f4273c7 2341
dcbf9037 2342 my_get_expression (&exp, &p, GE_NO_PREFIX);
5f4273c7 2343
dcbf9037
JB
2344 if (exp.X_op != O_constant)
2345 {
2346 as_bad (_("scalar index must be constant"));
c921be7d 2347 return FALSE;
dcbf9037 2348 }
5f4273c7 2349
dcbf9037
JB
2350 typeinfo.defined |= NTA_HASINDEX;
2351 typeinfo.index = exp.X_add_number;
5f4273c7 2352
dcbf9037
JB
2353 if (skip_past_char (&p, ']') == FAIL)
2354 {
2355 as_bad (_("expecting ]"));
c921be7d 2356 return FALSE;
dcbf9037
JB
2357 }
2358 }
2359
15735687
NS
2360 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2361 the desired alias name, and p points to its end. If not, then
2362 the desired alias name is in the global original_case_string. */
2363#ifdef TC_CASE_SENSITIVE
dcbf9037 2364 namelen = nameend - newname;
15735687
NS
2365#else
2366 newname = original_case_string;
2367 namelen = strlen (newname);
2368#endif
2369
21d799b5 2370 namebuf = (char *) alloca (namelen + 1);
dcbf9037
JB
2371 strncpy (namebuf, newname, namelen);
2372 namebuf[namelen] = '\0';
5f4273c7 2373
dcbf9037
JB
2374 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2375 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2376
dcbf9037
JB
2377 /* Insert name in all uppercase. */
2378 for (p = namebuf; *p; p++)
2379 *p = TOUPPER (*p);
5f4273c7 2380
dcbf9037
JB
2381 if (strncmp (namebuf, newname, namelen))
2382 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2383 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2384
dcbf9037
JB
2385 /* Insert name in all lowercase. */
2386 for (p = namebuf; *p; p++)
2387 *p = TOLOWER (*p);
5f4273c7 2388
dcbf9037
JB
2389 if (strncmp (namebuf, newname, namelen))
2390 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2391 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2392
c921be7d 2393 return TRUE;
dcbf9037
JB
2394}
2395
c19d1205
ZW
2396/* Should never be called, as .req goes between the alias and the
2397 register name, not at the beginning of the line. */
c921be7d 2398
b99bd4ef 2399static void
c19d1205 2400s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2401{
c19d1205
ZW
2402 as_bad (_("invalid syntax for .req directive"));
2403}
b99bd4ef 2404
dcbf9037
JB
2405static void
2406s_dn (int a ATTRIBUTE_UNUSED)
2407{
2408 as_bad (_("invalid syntax for .dn directive"));
2409}
2410
2411static void
2412s_qn (int a ATTRIBUTE_UNUSED)
2413{
2414 as_bad (_("invalid syntax for .qn directive"));
2415}
2416
c19d1205
ZW
2417/* The .unreq directive deletes an alias which was previously defined
2418 by .req. For example:
b99bd4ef 2419
c19d1205
ZW
2420 my_alias .req r11
2421 .unreq my_alias */
b99bd4ef
NC
2422
2423static void
c19d1205 2424s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2425{
c19d1205
ZW
2426 char * name;
2427 char saved_char;
b99bd4ef 2428
c19d1205
ZW
2429 name = input_line_pointer;
2430
2431 while (*input_line_pointer != 0
2432 && *input_line_pointer != ' '
2433 && *input_line_pointer != '\n')
2434 ++input_line_pointer;
2435
2436 saved_char = *input_line_pointer;
2437 *input_line_pointer = 0;
2438
2439 if (!*name)
2440 as_bad (_("invalid syntax for .unreq directive"));
2441 else
2442 {
21d799b5
NC
2443 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
2444 name);
c19d1205
ZW
2445
2446 if (!reg)
2447 as_bad (_("unknown register alias '%s'"), name);
2448 else if (reg->builtin)
a1727c1a 2449 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
c19d1205
ZW
2450 name);
2451 else
2452 {
d929913e
NC
2453 char * p;
2454 char * nbuf;
2455
db0bc284 2456 hash_delete (arm_reg_hsh, name, FALSE);
c19d1205 2457 free ((char *) reg->name);
dcbf9037
JB
2458 if (reg->neon)
2459 free (reg->neon);
c19d1205 2460 free (reg);
d929913e
NC
2461
2462 /* Also locate the all upper case and all lower case versions.
2463 Do not complain if we cannot find one or the other as it
2464 was probably deleted above. */
5f4273c7 2465
d929913e
NC
2466 nbuf = strdup (name);
2467 for (p = nbuf; *p; p++)
2468 *p = TOUPPER (*p);
21d799b5 2469 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2470 if (reg)
2471 {
db0bc284 2472 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2473 free ((char *) reg->name);
2474 if (reg->neon)
2475 free (reg->neon);
2476 free (reg);
2477 }
2478
2479 for (p = nbuf; *p; p++)
2480 *p = TOLOWER (*p);
21d799b5 2481 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2482 if (reg)
2483 {
db0bc284 2484 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2485 free ((char *) reg->name);
2486 if (reg->neon)
2487 free (reg->neon);
2488 free (reg);
2489 }
2490
2491 free (nbuf);
c19d1205
ZW
2492 }
2493 }
b99bd4ef 2494
c19d1205 2495 *input_line_pointer = saved_char;
b99bd4ef
NC
2496 demand_empty_rest_of_line ();
2497}
2498
c19d1205
ZW
2499/* Directives: Instruction set selection. */
2500
2501#ifdef OBJ_ELF
2502/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2503 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2504 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2505 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2506
cd000bff
DJ
2507/* Create a new mapping symbol for the transition to STATE. */
2508
2509static void
2510make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
b99bd4ef 2511{
a737bd4d 2512 symbolS * symbolP;
c19d1205
ZW
2513 const char * symname;
2514 int type;
b99bd4ef 2515
c19d1205 2516 switch (state)
b99bd4ef 2517 {
c19d1205
ZW
2518 case MAP_DATA:
2519 symname = "$d";
2520 type = BSF_NO_FLAGS;
2521 break;
2522 case MAP_ARM:
2523 symname = "$a";
2524 type = BSF_NO_FLAGS;
2525 break;
2526 case MAP_THUMB:
2527 symname = "$t";
2528 type = BSF_NO_FLAGS;
2529 break;
c19d1205
ZW
2530 default:
2531 abort ();
2532 }
2533
cd000bff 2534 symbolP = symbol_new (symname, now_seg, value, frag);
c19d1205
ZW
2535 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2536
2537 switch (state)
2538 {
2539 case MAP_ARM:
2540 THUMB_SET_FUNC (symbolP, 0);
2541 ARM_SET_THUMB (symbolP, 0);
2542 ARM_SET_INTERWORK (symbolP, support_interwork);
2543 break;
2544
2545 case MAP_THUMB:
2546 THUMB_SET_FUNC (symbolP, 1);
2547 ARM_SET_THUMB (symbolP, 1);
2548 ARM_SET_INTERWORK (symbolP, support_interwork);
2549 break;
2550
2551 case MAP_DATA:
2552 default:
cd000bff
DJ
2553 break;
2554 }
2555
2556 /* Save the mapping symbols for future reference. Also check that
2557 we do not place two mapping symbols at the same offset within a
2558 frag. We'll handle overlap between frags in
2de7820f
JZ
2559 check_mapping_symbols.
2560
2561 If .fill or other data filling directive generates zero sized data,
2562 the mapping symbol for the following code will have the same value
2563 as the one generated for the data filling directive. In this case,
2564 we replace the old symbol with the new one at the same address. */
cd000bff
DJ
2565 if (value == 0)
2566 {
2de7820f
JZ
2567 if (frag->tc_frag_data.first_map != NULL)
2568 {
2569 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2570 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2571 }
cd000bff
DJ
2572 frag->tc_frag_data.first_map = symbolP;
2573 }
2574 if (frag->tc_frag_data.last_map != NULL)
0f020cef
JZ
2575 {
2576 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
0f020cef
JZ
2577 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2578 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2579 }
cd000bff
DJ
2580 frag->tc_frag_data.last_map = symbolP;
2581}
2582
2583/* We must sometimes convert a region marked as code to data during
2584 code alignment, if an odd number of bytes have to be padded. The
2585 code mapping symbol is pushed to an aligned address. */
2586
2587static void
2588insert_data_mapping_symbol (enum mstate state,
2589 valueT value, fragS *frag, offsetT bytes)
2590{
2591 /* If there was already a mapping symbol, remove it. */
2592 if (frag->tc_frag_data.last_map != NULL
2593 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2594 {
2595 symbolS *symp = frag->tc_frag_data.last_map;
2596
2597 if (value == 0)
2598 {
2599 know (frag->tc_frag_data.first_map == symp);
2600 frag->tc_frag_data.first_map = NULL;
2601 }
2602 frag->tc_frag_data.last_map = NULL;
2603 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
c19d1205 2604 }
cd000bff
DJ
2605
2606 make_mapping_symbol (MAP_DATA, value, frag);
2607 make_mapping_symbol (state, value + bytes, frag);
2608}
2609
2610static void mapping_state_2 (enum mstate state, int max_chars);
2611
2612/* Set the mapping state to STATE. Only call this when about to
2613 emit some STATE bytes to the file. */
2614
2615void
2616mapping_state (enum mstate state)
2617{
940b5ce0
DJ
2618 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2619
cd000bff
DJ
2620#define TRANSITION(from, to) (mapstate == (from) && state == (to))
2621
2622 if (mapstate == state)
2623 /* The mapping symbol has already been emitted.
2624 There is nothing else to do. */
2625 return;
49c62a33
NC
2626
2627 if (state == MAP_ARM || state == MAP_THUMB)
2628 /* PR gas/12931
2629 All ARM instructions require 4-byte alignment.
2630 (Almost) all Thumb instructions require 2-byte alignment.
2631
2632 When emitting instructions into any section, mark the section
2633 appropriately.
2634
2635 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2636 but themselves require 2-byte alignment; this applies to some
2637 PC- relative forms. However, these cases will invovle implicit
2638 literal pool generation or an explicit .align >=2, both of
2639 which will cause the section to me marked with sufficient
2640 alignment. Thus, we don't handle those cases here. */
2641 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2642
2643 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
cd000bff
DJ
2644 /* This case will be evaluated later in the next else. */
2645 return;
2646 else if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
2647 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
2648 {
2649 /* Only add the symbol if the offset is > 0:
2650 if we're at the first frag, check it's size > 0;
2651 if we're not at the first frag, then for sure
2652 the offset is > 0. */
2653 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
2654 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
2655
2656 if (add_symbol)
2657 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
2658 }
2659
2660 mapping_state_2 (state, 0);
2661#undef TRANSITION
2662}
2663
2664/* Same as mapping_state, but MAX_CHARS bytes have already been
2665 allocated. Put the mapping symbol that far back. */
2666
2667static void
2668mapping_state_2 (enum mstate state, int max_chars)
2669{
940b5ce0
DJ
2670 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2671
2672 if (!SEG_NORMAL (now_seg))
2673 return;
2674
cd000bff
DJ
2675 if (mapstate == state)
2676 /* The mapping symbol has already been emitted.
2677 There is nothing else to do. */
2678 return;
2679
cd000bff
DJ
2680 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2681 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
c19d1205
ZW
2682}
2683#else
d3106081
NS
2684#define mapping_state(x) ((void)0)
2685#define mapping_state_2(x, y) ((void)0)
c19d1205
ZW
2686#endif
2687
2688/* Find the real, Thumb encoded start of a Thumb function. */
2689
4343666d 2690#ifdef OBJ_COFF
c19d1205
ZW
2691static symbolS *
2692find_real_start (symbolS * symbolP)
2693{
2694 char * real_start;
2695 const char * name = S_GET_NAME (symbolP);
2696 symbolS * new_target;
2697
2698 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2699#define STUB_NAME ".real_start_of"
2700
2701 if (name == NULL)
2702 abort ();
2703
37f6032b
ZW
2704 /* The compiler may generate BL instructions to local labels because
2705 it needs to perform a branch to a far away location. These labels
2706 do not have a corresponding ".real_start_of" label. We check
2707 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2708 the ".real_start_of" convention for nonlocal branches. */
2709 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2710 return symbolP;
2711
37f6032b 2712 real_start = ACONCAT ((STUB_NAME, name, NULL));
c19d1205
ZW
2713 new_target = symbol_find (real_start);
2714
2715 if (new_target == NULL)
2716 {
bd3ba5d1 2717 as_warn (_("Failed to find real start of function: %s\n"), name);
c19d1205
ZW
2718 new_target = symbolP;
2719 }
2720
c19d1205
ZW
2721 return new_target;
2722}
4343666d 2723#endif
c19d1205
ZW
2724
2725static void
2726opcode_select (int width)
2727{
2728 switch (width)
2729 {
2730 case 16:
2731 if (! thumb_mode)
2732 {
e74cfd16 2733 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2734 as_bad (_("selected processor does not support THUMB opcodes"));
2735
2736 thumb_mode = 1;
2737 /* No need to force the alignment, since we will have been
2738 coming from ARM mode, which is word-aligned. */
2739 record_alignment (now_seg, 1);
2740 }
c19d1205
ZW
2741 break;
2742
2743 case 32:
2744 if (thumb_mode)
2745 {
e74cfd16 2746 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2747 as_bad (_("selected processor does not support ARM opcodes"));
2748
2749 thumb_mode = 0;
2750
2751 if (!need_pass_2)
2752 frag_align (2, 0, 0);
2753
2754 record_alignment (now_seg, 1);
2755 }
c19d1205
ZW
2756 break;
2757
2758 default:
2759 as_bad (_("invalid instruction size selected (%d)"), width);
2760 }
2761}
2762
2763static void
2764s_arm (int ignore ATTRIBUTE_UNUSED)
2765{
2766 opcode_select (32);
2767 demand_empty_rest_of_line ();
2768}
2769
2770static void
2771s_thumb (int ignore ATTRIBUTE_UNUSED)
2772{
2773 opcode_select (16);
2774 demand_empty_rest_of_line ();
2775}
2776
2777static void
2778s_code (int unused ATTRIBUTE_UNUSED)
2779{
2780 int temp;
2781
2782 temp = get_absolute_expression ();
2783 switch (temp)
2784 {
2785 case 16:
2786 case 32:
2787 opcode_select (temp);
2788 break;
2789
2790 default:
2791 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2792 }
2793}
2794
2795static void
2796s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2797{
2798 /* If we are not already in thumb mode go into it, EVEN if
2799 the target processor does not support thumb instructions.
2800 This is used by gcc/config/arm/lib1funcs.asm for example
2801 to compile interworking support functions even if the
2802 target processor should not support interworking. */
2803 if (! thumb_mode)
2804 {
2805 thumb_mode = 2;
2806 record_alignment (now_seg, 1);
2807 }
2808
2809 demand_empty_rest_of_line ();
2810}
2811
2812static void
2813s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2814{
2815 s_thumb (0);
2816
2817 /* The following label is the name/address of the start of a Thumb function.
2818 We need to know this for the interworking support. */
2819 label_is_thumb_function_name = TRUE;
2820}
2821
2822/* Perform a .set directive, but also mark the alias as
2823 being a thumb function. */
2824
2825static void
2826s_thumb_set (int equiv)
2827{
2828 /* XXX the following is a duplicate of the code for s_set() in read.c
2829 We cannot just call that code as we need to get at the symbol that
2830 is created. */
2831 char * name;
2832 char delim;
2833 char * end_name;
2834 symbolS * symbolP;
2835
2836 /* Especial apologies for the random logic:
2837 This just grew, and could be parsed much more simply!
2838 Dean - in haste. */
2839 name = input_line_pointer;
2840 delim = get_symbol_end ();
2841 end_name = input_line_pointer;
2842 *end_name = delim;
2843
2844 if (*input_line_pointer != ',')
2845 {
2846 *end_name = 0;
2847 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2848 *end_name = delim;
2849 ignore_rest_of_line ();
2850 return;
2851 }
2852
2853 input_line_pointer++;
2854 *end_name = 0;
2855
2856 if (name[0] == '.' && name[1] == '\0')
2857 {
2858 /* XXX - this should not happen to .thumb_set. */
2859 abort ();
2860 }
2861
2862 if ((symbolP = symbol_find (name)) == NULL
2863 && (symbolP = md_undefined_symbol (name)) == NULL)
2864 {
2865#ifndef NO_LISTING
2866 /* When doing symbol listings, play games with dummy fragments living
2867 outside the normal fragment chain to record the file and line info
c19d1205 2868 for this symbol. */
b99bd4ef
NC
2869 if (listing & LISTING_SYMBOLS)
2870 {
2871 extern struct list_info_struct * listing_tail;
21d799b5 2872 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
b99bd4ef
NC
2873
2874 memset (dummy_frag, 0, sizeof (fragS));
2875 dummy_frag->fr_type = rs_fill;
2876 dummy_frag->line = listing_tail;
2877 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2878 dummy_frag->fr_symbol = symbolP;
2879 }
2880 else
2881#endif
2882 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2883
2884#ifdef OBJ_COFF
2885 /* "set" symbols are local unless otherwise specified. */
2886 SF_SET_LOCAL (symbolP);
2887#endif /* OBJ_COFF */
2888 } /* Make a new symbol. */
2889
2890 symbol_table_insert (symbolP);
2891
2892 * end_name = delim;
2893
2894 if (equiv
2895 && S_IS_DEFINED (symbolP)
2896 && S_GET_SEGMENT (symbolP) != reg_section)
2897 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2898
2899 pseudo_set (symbolP);
2900
2901 demand_empty_rest_of_line ();
2902
c19d1205 2903 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2904
2905 THUMB_SET_FUNC (symbolP, 1);
2906 ARM_SET_THUMB (symbolP, 1);
2907#if defined OBJ_ELF || defined OBJ_COFF
2908 ARM_SET_INTERWORK (symbolP, support_interwork);
2909#endif
2910}
2911
c19d1205 2912/* Directives: Mode selection. */
b99bd4ef 2913
c19d1205
ZW
2914/* .syntax [unified|divided] - choose the new unified syntax
2915 (same for Arm and Thumb encoding, modulo slight differences in what
2916 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2917static void
c19d1205 2918s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2919{
c19d1205
ZW
2920 char *name, delim;
2921
2922 name = input_line_pointer;
2923 delim = get_symbol_end ();
2924
2925 if (!strcasecmp (name, "unified"))
2926 unified_syntax = TRUE;
2927 else if (!strcasecmp (name, "divided"))
2928 unified_syntax = FALSE;
2929 else
2930 {
2931 as_bad (_("unrecognized syntax mode \"%s\""), name);
2932 return;
2933 }
2934 *input_line_pointer = delim;
b99bd4ef
NC
2935 demand_empty_rest_of_line ();
2936}
2937
c19d1205
ZW
2938/* Directives: sectioning and alignment. */
2939
2940/* Same as s_align_ptwo but align 0 => align 2. */
2941
b99bd4ef 2942static void
c19d1205 2943s_align (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2944{
a737bd4d 2945 int temp;
dce323d1 2946 bfd_boolean fill_p;
c19d1205
ZW
2947 long temp_fill;
2948 long max_alignment = 15;
b99bd4ef
NC
2949
2950 temp = get_absolute_expression ();
c19d1205
ZW
2951 if (temp > max_alignment)
2952 as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
2953 else if (temp < 0)
b99bd4ef 2954 {
c19d1205
ZW
2955 as_bad (_("alignment negative. 0 assumed."));
2956 temp = 0;
2957 }
b99bd4ef 2958
c19d1205
ZW
2959 if (*input_line_pointer == ',')
2960 {
2961 input_line_pointer++;
2962 temp_fill = get_absolute_expression ();
dce323d1 2963 fill_p = TRUE;
b99bd4ef 2964 }
c19d1205 2965 else
dce323d1
PB
2966 {
2967 fill_p = FALSE;
2968 temp_fill = 0;
2969 }
b99bd4ef 2970
c19d1205
ZW
2971 if (!temp)
2972 temp = 2;
b99bd4ef 2973
c19d1205
ZW
2974 /* Only make a frag if we HAVE to. */
2975 if (temp && !need_pass_2)
dce323d1
PB
2976 {
2977 if (!fill_p && subseg_text_p (now_seg))
2978 frag_align_code (temp, 0);
2979 else
2980 frag_align (temp, (int) temp_fill, 0);
2981 }
c19d1205
ZW
2982 demand_empty_rest_of_line ();
2983
2984 record_alignment (now_seg, temp);
b99bd4ef
NC
2985}
2986
c19d1205
ZW
2987static void
2988s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 2989{
c19d1205
ZW
2990 /* We don't support putting frags in the BSS segment, we fake it by
2991 marking in_bss, then looking at s_skip for clues. */
2992 subseg_set (bss_section, 0);
2993 demand_empty_rest_of_line ();
cd000bff
DJ
2994
2995#ifdef md_elf_section_change_hook
2996 md_elf_section_change_hook ();
2997#endif
c19d1205 2998}
b99bd4ef 2999
c19d1205
ZW
3000static void
3001s_even (int ignore ATTRIBUTE_UNUSED)
3002{
3003 /* Never make frag if expect extra pass. */
3004 if (!need_pass_2)
3005 frag_align (1, 0, 0);
b99bd4ef 3006
c19d1205 3007 record_alignment (now_seg, 1);
b99bd4ef 3008
c19d1205 3009 demand_empty_rest_of_line ();
b99bd4ef
NC
3010}
3011
c19d1205 3012/* Directives: Literal pools. */
a737bd4d 3013
c19d1205
ZW
3014static literal_pool *
3015find_literal_pool (void)
a737bd4d 3016{
c19d1205 3017 literal_pool * pool;
a737bd4d 3018
c19d1205 3019 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 3020 {
c19d1205
ZW
3021 if (pool->section == now_seg
3022 && pool->sub_section == now_subseg)
3023 break;
a737bd4d
NC
3024 }
3025
c19d1205 3026 return pool;
a737bd4d
NC
3027}
3028
c19d1205
ZW
3029static literal_pool *
3030find_or_make_literal_pool (void)
a737bd4d 3031{
c19d1205
ZW
3032 /* Next literal pool ID number. */
3033 static unsigned int latest_pool_num = 1;
3034 literal_pool * pool;
a737bd4d 3035
c19d1205 3036 pool = find_literal_pool ();
a737bd4d 3037
c19d1205 3038 if (pool == NULL)
a737bd4d 3039 {
c19d1205 3040 /* Create a new pool. */
21d799b5 3041 pool = (literal_pool *) xmalloc (sizeof (* pool));
c19d1205
ZW
3042 if (! pool)
3043 return NULL;
a737bd4d 3044
c19d1205
ZW
3045 pool->next_free_entry = 0;
3046 pool->section = now_seg;
3047 pool->sub_section = now_subseg;
3048 pool->next = list_of_pools;
3049 pool->symbol = NULL;
3050
3051 /* Add it to the list. */
3052 list_of_pools = pool;
a737bd4d 3053 }
a737bd4d 3054
c19d1205
ZW
3055 /* New pools, and emptied pools, will have a NULL symbol. */
3056 if (pool->symbol == NULL)
a737bd4d 3057 {
c19d1205
ZW
3058 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3059 (valueT) 0, &zero_address_frag);
3060 pool->id = latest_pool_num ++;
a737bd4d
NC
3061 }
3062
c19d1205
ZW
3063 /* Done. */
3064 return pool;
a737bd4d
NC
3065}
3066
c19d1205 3067/* Add the literal in the global 'inst'
5f4273c7 3068 structure to the relevant literal pool. */
b99bd4ef
NC
3069
3070static int
c19d1205 3071add_to_lit_pool (void)
b99bd4ef 3072{
c19d1205
ZW
3073 literal_pool * pool;
3074 unsigned int entry;
b99bd4ef 3075
c19d1205
ZW
3076 pool = find_or_make_literal_pool ();
3077
3078 /* Check if this literal value is already in the pool. */
3079 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 3080 {
c19d1205
ZW
3081 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3082 && (inst.reloc.exp.X_op == O_constant)
3083 && (pool->literals[entry].X_add_number
3084 == inst.reloc.exp.X_add_number)
3085 && (pool->literals[entry].X_unsigned
3086 == inst.reloc.exp.X_unsigned))
3087 break;
3088
3089 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3090 && (inst.reloc.exp.X_op == O_symbol)
3091 && (pool->literals[entry].X_add_number
3092 == inst.reloc.exp.X_add_number)
3093 && (pool->literals[entry].X_add_symbol
3094 == inst.reloc.exp.X_add_symbol)
3095 && (pool->literals[entry].X_op_symbol
3096 == inst.reloc.exp.X_op_symbol))
3097 break;
b99bd4ef
NC
3098 }
3099
c19d1205
ZW
3100 /* Do we need to create a new entry? */
3101 if (entry == pool->next_free_entry)
3102 {
3103 if (entry >= MAX_LITERAL_POOL_SIZE)
3104 {
3105 inst.error = _("literal pool overflow");
3106 return FAIL;
3107 }
3108
3109 pool->literals[entry] = inst.reloc.exp;
a8040cf2
NC
3110#ifdef OBJ_ELF
3111 /* PR ld/12974: Record the location of the first source line to reference
3112 this entry in the literal pool. If it turns out during linking that the
3113 symbol does not exist we will be able to give an accurate line number for
3114 the (first use of the) missing reference. */
3115 if (debug_type == DEBUG_DWARF2)
3116 dwarf2_where (pool->locs + entry);
3117#endif
c19d1205
ZW
3118 pool->next_free_entry += 1;
3119 }
b99bd4ef 3120
c19d1205
ZW
3121 inst.reloc.exp.X_op = O_symbol;
3122 inst.reloc.exp.X_add_number = ((int) entry) * 4;
3123 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 3124
c19d1205 3125 return SUCCESS;
b99bd4ef
NC
3126}
3127
c19d1205
ZW
3128/* Can't use symbol_new here, so have to create a symbol and then at
3129 a later date assign it a value. Thats what these functions do. */
e16bb312 3130
c19d1205
ZW
3131static void
3132symbol_locate (symbolS * symbolP,
3133 const char * name, /* It is copied, the caller can modify. */
3134 segT segment, /* Segment identifier (SEG_<something>). */
3135 valueT valu, /* Symbol value. */
3136 fragS * frag) /* Associated fragment. */
3137{
3138 unsigned int name_length;
3139 char * preserved_copy_of_name;
e16bb312 3140
c19d1205
ZW
3141 name_length = strlen (name) + 1; /* +1 for \0. */
3142 obstack_grow (&notes, name, name_length);
21d799b5 3143 preserved_copy_of_name = (char *) obstack_finish (&notes);
e16bb312 3144
c19d1205
ZW
3145#ifdef tc_canonicalize_symbol_name
3146 preserved_copy_of_name =
3147 tc_canonicalize_symbol_name (preserved_copy_of_name);
3148#endif
b99bd4ef 3149
c19d1205 3150 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 3151
c19d1205
ZW
3152 S_SET_SEGMENT (symbolP, segment);
3153 S_SET_VALUE (symbolP, valu);
3154 symbol_clear_list_pointers (symbolP);
b99bd4ef 3155
c19d1205 3156 symbol_set_frag (symbolP, frag);
b99bd4ef 3157
c19d1205
ZW
3158 /* Link to end of symbol chain. */
3159 {
3160 extern int symbol_table_frozen;
b99bd4ef 3161
c19d1205
ZW
3162 if (symbol_table_frozen)
3163 abort ();
3164 }
b99bd4ef 3165
c19d1205 3166 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 3167
c19d1205 3168 obj_symbol_new_hook (symbolP);
b99bd4ef 3169
c19d1205
ZW
3170#ifdef tc_symbol_new_hook
3171 tc_symbol_new_hook (symbolP);
3172#endif
3173
3174#ifdef DEBUG_SYMS
3175 verify_symbol_chain (symbol_rootP, symbol_lastP);
3176#endif /* DEBUG_SYMS */
b99bd4ef
NC
3177}
3178
b99bd4ef 3179
c19d1205
ZW
3180static void
3181s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3182{
c19d1205
ZW
3183 unsigned int entry;
3184 literal_pool * pool;
3185 char sym_name[20];
b99bd4ef 3186
c19d1205
ZW
3187 pool = find_literal_pool ();
3188 if (pool == NULL
3189 || pool->symbol == NULL
3190 || pool->next_free_entry == 0)
3191 return;
b99bd4ef 3192
c19d1205 3193 mapping_state (MAP_DATA);
b99bd4ef 3194
c19d1205
ZW
3195 /* Align pool as you have word accesses.
3196 Only make a frag if we have to. */
3197 if (!need_pass_2)
3198 frag_align (2, 0, 0);
b99bd4ef 3199
c19d1205 3200 record_alignment (now_seg, 2);
b99bd4ef 3201
c19d1205 3202 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 3203
c19d1205
ZW
3204 symbol_locate (pool->symbol, sym_name, now_seg,
3205 (valueT) frag_now_fix (), frag_now);
3206 symbol_table_insert (pool->symbol);
b99bd4ef 3207
c19d1205 3208 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 3209
c19d1205
ZW
3210#if defined OBJ_COFF || defined OBJ_ELF
3211 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3212#endif
6c43fab6 3213
c19d1205 3214 for (entry = 0; entry < pool->next_free_entry; entry ++)
a8040cf2
NC
3215 {
3216#ifdef OBJ_ELF
3217 if (debug_type == DEBUG_DWARF2)
3218 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3219#endif
3220 /* First output the expression in the instruction to the pool. */
3221 emit_expr (&(pool->literals[entry]), 4); /* .word */
3222 }
b99bd4ef 3223
c19d1205
ZW
3224 /* Mark the pool as empty. */
3225 pool->next_free_entry = 0;
3226 pool->symbol = NULL;
b99bd4ef
NC
3227}
3228
c19d1205
ZW
3229#ifdef OBJ_ELF
3230/* Forward declarations for functions below, in the MD interface
3231 section. */
3232static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3233static valueT create_unwind_entry (int);
3234static void start_unwind_section (const segT, int);
3235static void add_unwind_opcode (valueT, int);
3236static void flush_pending_unwind (void);
b99bd4ef 3237
c19d1205 3238/* Directives: Data. */
b99bd4ef 3239
c19d1205
ZW
3240static void
3241s_arm_elf_cons (int nbytes)
3242{
3243 expressionS exp;
b99bd4ef 3244
c19d1205
ZW
3245#ifdef md_flush_pending_output
3246 md_flush_pending_output ();
3247#endif
b99bd4ef 3248
c19d1205 3249 if (is_it_end_of_statement ())
b99bd4ef 3250 {
c19d1205
ZW
3251 demand_empty_rest_of_line ();
3252 return;
b99bd4ef
NC
3253 }
3254
c19d1205
ZW
3255#ifdef md_cons_align
3256 md_cons_align (nbytes);
3257#endif
b99bd4ef 3258
c19d1205
ZW
3259 mapping_state (MAP_DATA);
3260 do
b99bd4ef 3261 {
c19d1205
ZW
3262 int reloc;
3263 char *base = input_line_pointer;
b99bd4ef 3264
c19d1205 3265 expression (& exp);
b99bd4ef 3266
c19d1205
ZW
3267 if (exp.X_op != O_symbol)
3268 emit_expr (&exp, (unsigned int) nbytes);
3269 else
3270 {
3271 char *before_reloc = input_line_pointer;
3272 reloc = parse_reloc (&input_line_pointer);
3273 if (reloc == -1)
3274 {
3275 as_bad (_("unrecognized relocation suffix"));
3276 ignore_rest_of_line ();
3277 return;
3278 }
3279 else if (reloc == BFD_RELOC_UNUSED)
3280 emit_expr (&exp, (unsigned int) nbytes);
3281 else
3282 {
21d799b5
NC
3283 reloc_howto_type *howto = (reloc_howto_type *)
3284 bfd_reloc_type_lookup (stdoutput,
3285 (bfd_reloc_code_real_type) reloc);
c19d1205 3286 int size = bfd_get_reloc_size (howto);
b99bd4ef 3287
2fc8bdac
ZW
3288 if (reloc == BFD_RELOC_ARM_PLT32)
3289 {
3290 as_bad (_("(plt) is only valid on branch targets"));
3291 reloc = BFD_RELOC_UNUSED;
3292 size = 0;
3293 }
3294
c19d1205 3295 if (size > nbytes)
2fc8bdac 3296 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
3297 howto->name, nbytes);
3298 else
3299 {
3300 /* We've parsed an expression stopping at O_symbol.
3301 But there may be more expression left now that we
3302 have parsed the relocation marker. Parse it again.
3303 XXX Surely there is a cleaner way to do this. */
3304 char *p = input_line_pointer;
3305 int offset;
21d799b5 3306 char *save_buf = (char *) alloca (input_line_pointer - base);
c19d1205
ZW
3307 memcpy (save_buf, base, input_line_pointer - base);
3308 memmove (base + (input_line_pointer - before_reloc),
3309 base, before_reloc - base);
3310
3311 input_line_pointer = base + (input_line_pointer-before_reloc);
3312 expression (&exp);
3313 memcpy (base, save_buf, p - base);
3314
3315 offset = nbytes - size;
3316 p = frag_more ((int) nbytes);
3317 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
21d799b5 3318 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
c19d1205
ZW
3319 }
3320 }
3321 }
b99bd4ef 3322 }
c19d1205 3323 while (*input_line_pointer++ == ',');
b99bd4ef 3324
c19d1205
ZW
3325 /* Put terminator back into stream. */
3326 input_line_pointer --;
3327 demand_empty_rest_of_line ();
b99bd4ef
NC
3328}
3329
c921be7d
NC
3330/* Emit an expression containing a 32-bit thumb instruction.
3331 Implementation based on put_thumb32_insn. */
3332
3333static void
3334emit_thumb32_expr (expressionS * exp)
3335{
3336 expressionS exp_high = *exp;
3337
3338 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3339 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3340 exp->X_add_number &= 0xffff;
3341 emit_expr (exp, (unsigned int) THUMB_SIZE);
3342}
3343
3344/* Guess the instruction size based on the opcode. */
3345
3346static int
3347thumb_insn_size (int opcode)
3348{
3349 if ((unsigned int) opcode < 0xe800u)
3350 return 2;
3351 else if ((unsigned int) opcode >= 0xe8000000u)
3352 return 4;
3353 else
3354 return 0;
3355}
3356
3357static bfd_boolean
3358emit_insn (expressionS *exp, int nbytes)
3359{
3360 int size = 0;
3361
3362 if (exp->X_op == O_constant)
3363 {
3364 size = nbytes;
3365
3366 if (size == 0)
3367 size = thumb_insn_size (exp->X_add_number);
3368
3369 if (size != 0)
3370 {
3371 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3372 {
3373 as_bad (_(".inst.n operand too big. "\
3374 "Use .inst.w instead"));
3375 size = 0;
3376 }
3377 else
3378 {
3379 if (now_it.state == AUTOMATIC_IT_BLOCK)
3380 set_it_insn_type_nonvoid (OUTSIDE_IT_INSN, 0);
3381 else
3382 set_it_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3383
3384 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3385 emit_thumb32_expr (exp);
3386 else
3387 emit_expr (exp, (unsigned int) size);
3388
3389 it_fsm_post_encode ();
3390 }
3391 }
3392 else
3393 as_bad (_("cannot determine Thumb instruction size. " \
3394 "Use .inst.n/.inst.w instead"));
3395 }
3396 else
3397 as_bad (_("constant expression required"));
3398
3399 return (size != 0);
3400}
3401
3402/* Like s_arm_elf_cons but do not use md_cons_align and
3403 set the mapping state to MAP_ARM/MAP_THUMB. */
3404
3405static void
3406s_arm_elf_inst (int nbytes)
3407{
3408 if (is_it_end_of_statement ())
3409 {
3410 demand_empty_rest_of_line ();
3411 return;
3412 }
3413
3414 /* Calling mapping_state () here will not change ARM/THUMB,
3415 but will ensure not to be in DATA state. */
3416
3417 if (thumb_mode)
3418 mapping_state (MAP_THUMB);
3419 else
3420 {
3421 if (nbytes != 0)
3422 {
3423 as_bad (_("width suffixes are invalid in ARM mode"));
3424 ignore_rest_of_line ();
3425 return;
3426 }
3427
3428 nbytes = 4;
3429
3430 mapping_state (MAP_ARM);
3431 }
3432
3433 do
3434 {
3435 expressionS exp;
3436
3437 expression (& exp);
3438
3439 if (! emit_insn (& exp, nbytes))
3440 {
3441 ignore_rest_of_line ();
3442 return;
3443 }
3444 }
3445 while (*input_line_pointer++ == ',');
3446
3447 /* Put terminator back into stream. */
3448 input_line_pointer --;
3449 demand_empty_rest_of_line ();
3450}
b99bd4ef 3451
c19d1205 3452/* Parse a .rel31 directive. */
b99bd4ef 3453
c19d1205
ZW
3454static void
3455s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3456{
3457 expressionS exp;
3458 char *p;
3459 valueT highbit;
b99bd4ef 3460
c19d1205
ZW
3461 highbit = 0;
3462 if (*input_line_pointer == '1')
3463 highbit = 0x80000000;
3464 else if (*input_line_pointer != '0')
3465 as_bad (_("expected 0 or 1"));
b99bd4ef 3466
c19d1205
ZW
3467 input_line_pointer++;
3468 if (*input_line_pointer != ',')
3469 as_bad (_("missing comma"));
3470 input_line_pointer++;
b99bd4ef 3471
c19d1205
ZW
3472#ifdef md_flush_pending_output
3473 md_flush_pending_output ();
3474#endif
b99bd4ef 3475
c19d1205
ZW
3476#ifdef md_cons_align
3477 md_cons_align (4);
3478#endif
b99bd4ef 3479
c19d1205 3480 mapping_state (MAP_DATA);
b99bd4ef 3481
c19d1205 3482 expression (&exp);
b99bd4ef 3483
c19d1205
ZW
3484 p = frag_more (4);
3485 md_number_to_chars (p, highbit, 4);
3486 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
3487 BFD_RELOC_ARM_PREL31);
b99bd4ef 3488
c19d1205 3489 demand_empty_rest_of_line ();
b99bd4ef
NC
3490}
3491
c19d1205 3492/* Directives: AEABI stack-unwind tables. */
b99bd4ef 3493
c19d1205 3494/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3495
c19d1205
ZW
3496static void
3497s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3498{
3499 demand_empty_rest_of_line ();
921e5f0a
PB
3500 if (unwind.proc_start)
3501 {
c921be7d 3502 as_bad (_("duplicate .fnstart directive"));
921e5f0a
PB
3503 return;
3504 }
3505
c19d1205
ZW
3506 /* Mark the start of the function. */
3507 unwind.proc_start = expr_build_dot ();
b99bd4ef 3508
c19d1205
ZW
3509 /* Reset the rest of the unwind info. */
3510 unwind.opcode_count = 0;
3511 unwind.table_entry = NULL;
3512 unwind.personality_routine = NULL;
3513 unwind.personality_index = -1;
3514 unwind.frame_size = 0;
3515 unwind.fp_offset = 0;
fdfde340 3516 unwind.fp_reg = REG_SP;
c19d1205
ZW
3517 unwind.fp_used = 0;
3518 unwind.sp_restored = 0;
3519}
b99bd4ef 3520
b99bd4ef 3521
c19d1205
ZW
3522/* Parse a handlerdata directive. Creates the exception handling table entry
3523 for the function. */
b99bd4ef 3524
c19d1205
ZW
3525static void
3526s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3527{
3528 demand_empty_rest_of_line ();
921e5f0a 3529 if (!unwind.proc_start)
c921be7d 3530 as_bad (MISSING_FNSTART);
921e5f0a 3531
c19d1205 3532 if (unwind.table_entry)
6decc662 3533 as_bad (_("duplicate .handlerdata directive"));
f02232aa 3534
c19d1205
ZW
3535 create_unwind_entry (1);
3536}
a737bd4d 3537
c19d1205 3538/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3539
c19d1205
ZW
3540static void
3541s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3542{
3543 long where;
3544 char *ptr;
3545 valueT val;
940b5ce0 3546 unsigned int marked_pr_dependency;
f02232aa 3547
c19d1205 3548 demand_empty_rest_of_line ();
f02232aa 3549
921e5f0a
PB
3550 if (!unwind.proc_start)
3551 {
c921be7d 3552 as_bad (_(".fnend directive without .fnstart"));
921e5f0a
PB
3553 return;
3554 }
3555
c19d1205
ZW
3556 /* Add eh table entry. */
3557 if (unwind.table_entry == NULL)
3558 val = create_unwind_entry (0);
3559 else
3560 val = 0;
f02232aa 3561
c19d1205
ZW
3562 /* Add index table entry. This is two words. */
3563 start_unwind_section (unwind.saved_seg, 1);
3564 frag_align (2, 0, 0);
3565 record_alignment (now_seg, 2);
b99bd4ef 3566
c19d1205 3567 ptr = frag_more (8);
5011093d 3568 memset (ptr, 0, 8);
c19d1205 3569 where = frag_now_fix () - 8;
f02232aa 3570
c19d1205
ZW
3571 /* Self relative offset of the function start. */
3572 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3573 BFD_RELOC_ARM_PREL31);
f02232aa 3574
c19d1205
ZW
3575 /* Indicate dependency on EHABI-defined personality routines to the
3576 linker, if it hasn't been done already. */
940b5ce0
DJ
3577 marked_pr_dependency
3578 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
c19d1205
ZW
3579 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3580 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3581 {
5f4273c7
NC
3582 static const char *const name[] =
3583 {
3584 "__aeabi_unwind_cpp_pr0",
3585 "__aeabi_unwind_cpp_pr1",
3586 "__aeabi_unwind_cpp_pr2"
3587 };
c19d1205
ZW
3588 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3589 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
c19d1205 3590 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
940b5ce0 3591 |= 1 << unwind.personality_index;
c19d1205 3592 }
f02232aa 3593
c19d1205
ZW
3594 if (val)
3595 /* Inline exception table entry. */
3596 md_number_to_chars (ptr + 4, val, 4);
3597 else
3598 /* Self relative offset of the table entry. */
3599 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3600 BFD_RELOC_ARM_PREL31);
f02232aa 3601
c19d1205
ZW
3602 /* Restore the original section. */
3603 subseg_set (unwind.saved_seg, unwind.saved_subseg);
921e5f0a
PB
3604
3605 unwind.proc_start = NULL;
c19d1205 3606}
f02232aa 3607
f02232aa 3608
c19d1205 3609/* Parse an unwind_cantunwind directive. */
b99bd4ef 3610
c19d1205
ZW
3611static void
3612s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3613{
3614 demand_empty_rest_of_line ();
921e5f0a 3615 if (!unwind.proc_start)
c921be7d 3616 as_bad (MISSING_FNSTART);
921e5f0a 3617
c19d1205
ZW
3618 if (unwind.personality_routine || unwind.personality_index != -1)
3619 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3620
c19d1205
ZW
3621 unwind.personality_index = -2;
3622}
b99bd4ef 3623
b99bd4ef 3624
c19d1205 3625/* Parse a personalityindex directive. */
b99bd4ef 3626
c19d1205
ZW
3627static void
3628s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3629{
3630 expressionS exp;
b99bd4ef 3631
921e5f0a 3632 if (!unwind.proc_start)
c921be7d 3633 as_bad (MISSING_FNSTART);
921e5f0a 3634
c19d1205
ZW
3635 if (unwind.personality_routine || unwind.personality_index != -1)
3636 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3637
c19d1205 3638 expression (&exp);
b99bd4ef 3639
c19d1205
ZW
3640 if (exp.X_op != O_constant
3641 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3642 {
c19d1205
ZW
3643 as_bad (_("bad personality routine number"));
3644 ignore_rest_of_line ();
3645 return;
b99bd4ef
NC
3646 }
3647
c19d1205 3648 unwind.personality_index = exp.X_add_number;
b99bd4ef 3649
c19d1205
ZW
3650 demand_empty_rest_of_line ();
3651}
e16bb312 3652
e16bb312 3653
c19d1205 3654/* Parse a personality directive. */
e16bb312 3655
c19d1205
ZW
3656static void
3657s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3658{
3659 char *name, *p, c;
a737bd4d 3660
921e5f0a 3661 if (!unwind.proc_start)
c921be7d 3662 as_bad (MISSING_FNSTART);
921e5f0a 3663
c19d1205
ZW
3664 if (unwind.personality_routine || unwind.personality_index != -1)
3665 as_bad (_("duplicate .personality directive"));
a737bd4d 3666
c19d1205
ZW
3667 name = input_line_pointer;
3668 c = get_symbol_end ();
3669 p = input_line_pointer;
3670 unwind.personality_routine = symbol_find_or_make (name);
3671 *p = c;
3672 demand_empty_rest_of_line ();
3673}
e16bb312 3674
e16bb312 3675
c19d1205 3676/* Parse a directive saving core registers. */
e16bb312 3677
c19d1205
ZW
3678static void
3679s_arm_unwind_save_core (void)
e16bb312 3680{
c19d1205
ZW
3681 valueT op;
3682 long range;
3683 int n;
e16bb312 3684
c19d1205
ZW
3685 range = parse_reg_list (&input_line_pointer);
3686 if (range == FAIL)
e16bb312 3687 {
c19d1205
ZW
3688 as_bad (_("expected register list"));
3689 ignore_rest_of_line ();
3690 return;
3691 }
e16bb312 3692
c19d1205 3693 demand_empty_rest_of_line ();
e16bb312 3694
c19d1205
ZW
3695 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3696 into .unwind_save {..., sp...}. We aren't bothered about the value of
3697 ip because it is clobbered by calls. */
3698 if (unwind.sp_restored && unwind.fp_reg == 12
3699 && (range & 0x3000) == 0x1000)
3700 {
3701 unwind.opcode_count--;
3702 unwind.sp_restored = 0;
3703 range = (range | 0x2000) & ~0x1000;
3704 unwind.pending_offset = 0;
3705 }
e16bb312 3706
01ae4198
DJ
3707 /* Pop r4-r15. */
3708 if (range & 0xfff0)
c19d1205 3709 {
01ae4198
DJ
3710 /* See if we can use the short opcodes. These pop a block of up to 8
3711 registers starting with r4, plus maybe r14. */
3712 for (n = 0; n < 8; n++)
3713 {
3714 /* Break at the first non-saved register. */
3715 if ((range & (1 << (n + 4))) == 0)
3716 break;
3717 }
3718 /* See if there are any other bits set. */
3719 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3720 {
3721 /* Use the long form. */
3722 op = 0x8000 | ((range >> 4) & 0xfff);
3723 add_unwind_opcode (op, 2);
3724 }
0dd132b6 3725 else
01ae4198
DJ
3726 {
3727 /* Use the short form. */
3728 if (range & 0x4000)
3729 op = 0xa8; /* Pop r14. */
3730 else
3731 op = 0xa0; /* Do not pop r14. */
3732 op |= (n - 1);
3733 add_unwind_opcode (op, 1);
3734 }
c19d1205 3735 }
0dd132b6 3736
c19d1205
ZW
3737 /* Pop r0-r3. */
3738 if (range & 0xf)
3739 {
3740 op = 0xb100 | (range & 0xf);
3741 add_unwind_opcode (op, 2);
0dd132b6
NC
3742 }
3743
c19d1205
ZW
3744 /* Record the number of bytes pushed. */
3745 for (n = 0; n < 16; n++)
3746 {
3747 if (range & (1 << n))
3748 unwind.frame_size += 4;
3749 }
0dd132b6
NC
3750}
3751
c19d1205
ZW
3752
3753/* Parse a directive saving FPA registers. */
b99bd4ef
NC
3754
3755static void
c19d1205 3756s_arm_unwind_save_fpa (int reg)
b99bd4ef 3757{
c19d1205
ZW
3758 expressionS exp;
3759 int num_regs;
3760 valueT op;
b99bd4ef 3761
c19d1205
ZW
3762 /* Get Number of registers to transfer. */
3763 if (skip_past_comma (&input_line_pointer) != FAIL)
3764 expression (&exp);
3765 else
3766 exp.X_op = O_illegal;
b99bd4ef 3767
c19d1205 3768 if (exp.X_op != O_constant)
b99bd4ef 3769 {
c19d1205
ZW
3770 as_bad (_("expected , <constant>"));
3771 ignore_rest_of_line ();
b99bd4ef
NC
3772 return;
3773 }
3774
c19d1205
ZW
3775 num_regs = exp.X_add_number;
3776
3777 if (num_regs < 1 || num_regs > 4)
b99bd4ef 3778 {
c19d1205
ZW
3779 as_bad (_("number of registers must be in the range [1:4]"));
3780 ignore_rest_of_line ();
b99bd4ef
NC
3781 return;
3782 }
3783
c19d1205 3784 demand_empty_rest_of_line ();
b99bd4ef 3785
c19d1205
ZW
3786 if (reg == 4)
3787 {
3788 /* Short form. */
3789 op = 0xb4 | (num_regs - 1);
3790 add_unwind_opcode (op, 1);
3791 }
b99bd4ef
NC
3792 else
3793 {
c19d1205
ZW
3794 /* Long form. */
3795 op = 0xc800 | (reg << 4) | (num_regs - 1);
3796 add_unwind_opcode (op, 2);
b99bd4ef 3797 }
c19d1205 3798 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
3799}
3800
c19d1205 3801
fa073d69
MS
3802/* Parse a directive saving VFP registers for ARMv6 and above. */
3803
3804static void
3805s_arm_unwind_save_vfp_armv6 (void)
3806{
3807 int count;
3808 unsigned int start;
3809 valueT op;
3810 int num_vfpv3_regs = 0;
3811 int num_regs_below_16;
3812
3813 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
3814 if (count == FAIL)
3815 {
3816 as_bad (_("expected register list"));
3817 ignore_rest_of_line ();
3818 return;
3819 }
3820
3821 demand_empty_rest_of_line ();
3822
3823 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
3824 than FSTMX/FLDMX-style ones). */
3825
3826 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
3827 if (start >= 16)
3828 num_vfpv3_regs = count;
3829 else if (start + count > 16)
3830 num_vfpv3_regs = start + count - 16;
3831
3832 if (num_vfpv3_regs > 0)
3833 {
3834 int start_offset = start > 16 ? start - 16 : 0;
3835 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
3836 add_unwind_opcode (op, 2);
3837 }
3838
3839 /* Generate opcode for registers numbered in the range 0 .. 15. */
3840 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
9c2799c2 3841 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
fa073d69
MS
3842 if (num_regs_below_16 > 0)
3843 {
3844 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
3845 add_unwind_opcode (op, 2);
3846 }
3847
3848 unwind.frame_size += count * 8;
3849}
3850
3851
3852/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
3853
3854static void
c19d1205 3855s_arm_unwind_save_vfp (void)
b99bd4ef 3856{
c19d1205 3857 int count;
ca3f61f7 3858 unsigned int reg;
c19d1205 3859 valueT op;
b99bd4ef 3860
5287ad62 3861 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 3862 if (count == FAIL)
b99bd4ef 3863 {
c19d1205
ZW
3864 as_bad (_("expected register list"));
3865 ignore_rest_of_line ();
b99bd4ef
NC
3866 return;
3867 }
3868
c19d1205 3869 demand_empty_rest_of_line ();
b99bd4ef 3870
c19d1205 3871 if (reg == 8)
b99bd4ef 3872 {
c19d1205
ZW
3873 /* Short form. */
3874 op = 0xb8 | (count - 1);
3875 add_unwind_opcode (op, 1);
b99bd4ef 3876 }
c19d1205 3877 else
b99bd4ef 3878 {
c19d1205
ZW
3879 /* Long form. */
3880 op = 0xb300 | (reg << 4) | (count - 1);
3881 add_unwind_opcode (op, 2);
b99bd4ef 3882 }
c19d1205
ZW
3883 unwind.frame_size += count * 8 + 4;
3884}
b99bd4ef 3885
b99bd4ef 3886
c19d1205
ZW
3887/* Parse a directive saving iWMMXt data registers. */
3888
3889static void
3890s_arm_unwind_save_mmxwr (void)
3891{
3892 int reg;
3893 int hi_reg;
3894 int i;
3895 unsigned mask = 0;
3896 valueT op;
b99bd4ef 3897
c19d1205
ZW
3898 if (*input_line_pointer == '{')
3899 input_line_pointer++;
b99bd4ef 3900
c19d1205 3901 do
b99bd4ef 3902 {
dcbf9037 3903 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 3904
c19d1205 3905 if (reg == FAIL)
b99bd4ef 3906 {
9b7132d3 3907 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205 3908 goto error;
b99bd4ef
NC
3909 }
3910
c19d1205
ZW
3911 if (mask >> reg)
3912 as_tsktsk (_("register list not in ascending order"));
3913 mask |= 1 << reg;
b99bd4ef 3914
c19d1205
ZW
3915 if (*input_line_pointer == '-')
3916 {
3917 input_line_pointer++;
dcbf9037 3918 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
3919 if (hi_reg == FAIL)
3920 {
9b7132d3 3921 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205
ZW
3922 goto error;
3923 }
3924 else if (reg >= hi_reg)
3925 {
3926 as_bad (_("bad register range"));
3927 goto error;
3928 }
3929 for (; reg < hi_reg; reg++)
3930 mask |= 1 << reg;
3931 }
3932 }
3933 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 3934
c19d1205
ZW
3935 if (*input_line_pointer == '}')
3936 input_line_pointer++;
b99bd4ef 3937
c19d1205 3938 demand_empty_rest_of_line ();
b99bd4ef 3939
708587a4 3940 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
3941 the list. */
3942 flush_pending_unwind ();
b99bd4ef 3943
c19d1205 3944 for (i = 0; i < 16; i++)
b99bd4ef 3945 {
c19d1205
ZW
3946 if (mask & (1 << i))
3947 unwind.frame_size += 8;
b99bd4ef
NC
3948 }
3949
c19d1205
ZW
3950 /* Attempt to combine with a previous opcode. We do this because gcc
3951 likes to output separate unwind directives for a single block of
3952 registers. */
3953 if (unwind.opcode_count > 0)
b99bd4ef 3954 {
c19d1205
ZW
3955 i = unwind.opcodes[unwind.opcode_count - 1];
3956 if ((i & 0xf8) == 0xc0)
3957 {
3958 i &= 7;
3959 /* Only merge if the blocks are contiguous. */
3960 if (i < 6)
3961 {
3962 if ((mask & 0xfe00) == (1 << 9))
3963 {
3964 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
3965 unwind.opcode_count--;
3966 }
3967 }
3968 else if (i == 6 && unwind.opcode_count >= 2)
3969 {
3970 i = unwind.opcodes[unwind.opcode_count - 2];
3971 reg = i >> 4;
3972 i &= 0xf;
b99bd4ef 3973
c19d1205
ZW
3974 op = 0xffff << (reg - 1);
3975 if (reg > 0
87a1fd79 3976 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
3977 {
3978 op = (1 << (reg + i + 1)) - 1;
3979 op &= ~((1 << reg) - 1);
3980 mask |= op;
3981 unwind.opcode_count -= 2;
3982 }
3983 }
3984 }
b99bd4ef
NC
3985 }
3986
c19d1205
ZW
3987 hi_reg = 15;
3988 /* We want to generate opcodes in the order the registers have been
3989 saved, ie. descending order. */
3990 for (reg = 15; reg >= -1; reg--)
b99bd4ef 3991 {
c19d1205
ZW
3992 /* Save registers in blocks. */
3993 if (reg < 0
3994 || !(mask & (1 << reg)))
3995 {
3996 /* We found an unsaved reg. Generate opcodes to save the
5f4273c7 3997 preceding block. */
c19d1205
ZW
3998 if (reg != hi_reg)
3999 {
4000 if (reg == 9)
4001 {
4002 /* Short form. */
4003 op = 0xc0 | (hi_reg - 10);
4004 add_unwind_opcode (op, 1);
4005 }
4006 else
4007 {
4008 /* Long form. */
4009 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4010 add_unwind_opcode (op, 2);
4011 }
4012 }
4013 hi_reg = reg - 1;
4014 }
b99bd4ef
NC
4015 }
4016
c19d1205
ZW
4017 return;
4018error:
4019 ignore_rest_of_line ();
b99bd4ef
NC
4020}
4021
4022static void
c19d1205 4023s_arm_unwind_save_mmxwcg (void)
b99bd4ef 4024{
c19d1205
ZW
4025 int reg;
4026 int hi_reg;
4027 unsigned mask = 0;
4028 valueT op;
b99bd4ef 4029
c19d1205
ZW
4030 if (*input_line_pointer == '{')
4031 input_line_pointer++;
b99bd4ef 4032
c19d1205 4033 do
b99bd4ef 4034 {
dcbf9037 4035 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 4036
c19d1205
ZW
4037 if (reg == FAIL)
4038 {
9b7132d3 4039 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4040 goto error;
4041 }
b99bd4ef 4042
c19d1205
ZW
4043 reg -= 8;
4044 if (mask >> reg)
4045 as_tsktsk (_("register list not in ascending order"));
4046 mask |= 1 << reg;
b99bd4ef 4047
c19d1205
ZW
4048 if (*input_line_pointer == '-')
4049 {
4050 input_line_pointer++;
dcbf9037 4051 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
4052 if (hi_reg == FAIL)
4053 {
9b7132d3 4054 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4055 goto error;
4056 }
4057 else if (reg >= hi_reg)
4058 {
4059 as_bad (_("bad register range"));
4060 goto error;
4061 }
4062 for (; reg < hi_reg; reg++)
4063 mask |= 1 << reg;
4064 }
b99bd4ef 4065 }
c19d1205 4066 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4067
c19d1205
ZW
4068 if (*input_line_pointer == '}')
4069 input_line_pointer++;
b99bd4ef 4070
c19d1205
ZW
4071 demand_empty_rest_of_line ();
4072
708587a4 4073 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4074 the list. */
4075 flush_pending_unwind ();
b99bd4ef 4076
c19d1205 4077 for (reg = 0; reg < 16; reg++)
b99bd4ef 4078 {
c19d1205
ZW
4079 if (mask & (1 << reg))
4080 unwind.frame_size += 4;
b99bd4ef 4081 }
c19d1205
ZW
4082 op = 0xc700 | mask;
4083 add_unwind_opcode (op, 2);
4084 return;
4085error:
4086 ignore_rest_of_line ();
b99bd4ef
NC
4087}
4088
c19d1205 4089
fa073d69
MS
4090/* Parse an unwind_save directive.
4091 If the argument is non-zero, this is a .vsave directive. */
c19d1205 4092
b99bd4ef 4093static void
fa073d69 4094s_arm_unwind_save (int arch_v6)
b99bd4ef 4095{
c19d1205
ZW
4096 char *peek;
4097 struct reg_entry *reg;
4098 bfd_boolean had_brace = FALSE;
b99bd4ef 4099
921e5f0a 4100 if (!unwind.proc_start)
c921be7d 4101 as_bad (MISSING_FNSTART);
921e5f0a 4102
c19d1205
ZW
4103 /* Figure out what sort of save we have. */
4104 peek = input_line_pointer;
b99bd4ef 4105
c19d1205 4106 if (*peek == '{')
b99bd4ef 4107 {
c19d1205
ZW
4108 had_brace = TRUE;
4109 peek++;
b99bd4ef
NC
4110 }
4111
c19d1205 4112 reg = arm_reg_parse_multi (&peek);
b99bd4ef 4113
c19d1205 4114 if (!reg)
b99bd4ef 4115 {
c19d1205
ZW
4116 as_bad (_("register expected"));
4117 ignore_rest_of_line ();
b99bd4ef
NC
4118 return;
4119 }
4120
c19d1205 4121 switch (reg->type)
b99bd4ef 4122 {
c19d1205
ZW
4123 case REG_TYPE_FN:
4124 if (had_brace)
4125 {
4126 as_bad (_("FPA .unwind_save does not take a register list"));
4127 ignore_rest_of_line ();
4128 return;
4129 }
93ac2687 4130 input_line_pointer = peek;
c19d1205 4131 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 4132 return;
c19d1205
ZW
4133
4134 case REG_TYPE_RN: s_arm_unwind_save_core (); return;
fa073d69
MS
4135 case REG_TYPE_VFD:
4136 if (arch_v6)
4137 s_arm_unwind_save_vfp_armv6 ();
4138 else
4139 s_arm_unwind_save_vfp ();
4140 return;
c19d1205
ZW
4141 case REG_TYPE_MMXWR: s_arm_unwind_save_mmxwr (); return;
4142 case REG_TYPE_MMXWCG: s_arm_unwind_save_mmxwcg (); return;
4143
4144 default:
4145 as_bad (_(".unwind_save does not support this kind of register"));
4146 ignore_rest_of_line ();
b99bd4ef 4147 }
c19d1205 4148}
b99bd4ef 4149
b99bd4ef 4150
c19d1205
ZW
4151/* Parse an unwind_movsp directive. */
4152
4153static void
4154s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4155{
4156 int reg;
4157 valueT op;
4fa3602b 4158 int offset;
c19d1205 4159
921e5f0a 4160 if (!unwind.proc_start)
c921be7d 4161 as_bad (MISSING_FNSTART);
921e5f0a 4162
dcbf9037 4163 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 4164 if (reg == FAIL)
b99bd4ef 4165 {
9b7132d3 4166 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
c19d1205 4167 ignore_rest_of_line ();
b99bd4ef
NC
4168 return;
4169 }
4fa3602b
PB
4170
4171 /* Optional constant. */
4172 if (skip_past_comma (&input_line_pointer) != FAIL)
4173 {
4174 if (immediate_for_directive (&offset) == FAIL)
4175 return;
4176 }
4177 else
4178 offset = 0;
4179
c19d1205 4180 demand_empty_rest_of_line ();
b99bd4ef 4181
c19d1205 4182 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 4183 {
c19d1205 4184 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
4185 return;
4186 }
4187
c19d1205
ZW
4188 if (unwind.fp_reg != REG_SP)
4189 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 4190
c19d1205
ZW
4191 /* Generate opcode to restore the value. */
4192 op = 0x90 | reg;
4193 add_unwind_opcode (op, 1);
4194
4195 /* Record the information for later. */
4196 unwind.fp_reg = reg;
4fa3602b 4197 unwind.fp_offset = unwind.frame_size - offset;
c19d1205 4198 unwind.sp_restored = 1;
b05fe5cf
ZW
4199}
4200
c19d1205
ZW
4201/* Parse an unwind_pad directive. */
4202
b05fe5cf 4203static void
c19d1205 4204s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 4205{
c19d1205 4206 int offset;
b05fe5cf 4207
921e5f0a 4208 if (!unwind.proc_start)
c921be7d 4209 as_bad (MISSING_FNSTART);
921e5f0a 4210
c19d1205
ZW
4211 if (immediate_for_directive (&offset) == FAIL)
4212 return;
b99bd4ef 4213
c19d1205
ZW
4214 if (offset & 3)
4215 {
4216 as_bad (_("stack increment must be multiple of 4"));
4217 ignore_rest_of_line ();
4218 return;
4219 }
b99bd4ef 4220
c19d1205
ZW
4221 /* Don't generate any opcodes, just record the details for later. */
4222 unwind.frame_size += offset;
4223 unwind.pending_offset += offset;
4224
4225 demand_empty_rest_of_line ();
4226}
4227
4228/* Parse an unwind_setfp directive. */
4229
4230static void
4231s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 4232{
c19d1205
ZW
4233 int sp_reg;
4234 int fp_reg;
4235 int offset;
4236
921e5f0a 4237 if (!unwind.proc_start)
c921be7d 4238 as_bad (MISSING_FNSTART);
921e5f0a 4239
dcbf9037 4240 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
4241 if (skip_past_comma (&input_line_pointer) == FAIL)
4242 sp_reg = FAIL;
4243 else
dcbf9037 4244 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 4245
c19d1205
ZW
4246 if (fp_reg == FAIL || sp_reg == FAIL)
4247 {
4248 as_bad (_("expected <reg>, <reg>"));
4249 ignore_rest_of_line ();
4250 return;
4251 }
b99bd4ef 4252
c19d1205
ZW
4253 /* Optional constant. */
4254 if (skip_past_comma (&input_line_pointer) != FAIL)
4255 {
4256 if (immediate_for_directive (&offset) == FAIL)
4257 return;
4258 }
4259 else
4260 offset = 0;
a737bd4d 4261
c19d1205 4262 demand_empty_rest_of_line ();
a737bd4d 4263
fdfde340 4264 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
a737bd4d 4265 {
c19d1205
ZW
4266 as_bad (_("register must be either sp or set by a previous"
4267 "unwind_movsp directive"));
4268 return;
a737bd4d
NC
4269 }
4270
c19d1205
ZW
4271 /* Don't generate any opcodes, just record the information for later. */
4272 unwind.fp_reg = fp_reg;
4273 unwind.fp_used = 1;
fdfde340 4274 if (sp_reg == REG_SP)
c19d1205
ZW
4275 unwind.fp_offset = unwind.frame_size - offset;
4276 else
4277 unwind.fp_offset -= offset;
a737bd4d
NC
4278}
4279
c19d1205
ZW
4280/* Parse an unwind_raw directive. */
4281
4282static void
4283s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 4284{
c19d1205 4285 expressionS exp;
708587a4 4286 /* This is an arbitrary limit. */
c19d1205
ZW
4287 unsigned char op[16];
4288 int count;
a737bd4d 4289
921e5f0a 4290 if (!unwind.proc_start)
c921be7d 4291 as_bad (MISSING_FNSTART);
921e5f0a 4292
c19d1205
ZW
4293 expression (&exp);
4294 if (exp.X_op == O_constant
4295 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 4296 {
c19d1205
ZW
4297 unwind.frame_size += exp.X_add_number;
4298 expression (&exp);
4299 }
4300 else
4301 exp.X_op = O_illegal;
a737bd4d 4302
c19d1205
ZW
4303 if (exp.X_op != O_constant)
4304 {
4305 as_bad (_("expected <offset>, <opcode>"));
4306 ignore_rest_of_line ();
4307 return;
4308 }
a737bd4d 4309
c19d1205 4310 count = 0;
a737bd4d 4311
c19d1205
ZW
4312 /* Parse the opcode. */
4313 for (;;)
4314 {
4315 if (count >= 16)
4316 {
4317 as_bad (_("unwind opcode too long"));
4318 ignore_rest_of_line ();
a737bd4d 4319 }
c19d1205 4320 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 4321 {
c19d1205
ZW
4322 as_bad (_("invalid unwind opcode"));
4323 ignore_rest_of_line ();
4324 return;
a737bd4d 4325 }
c19d1205 4326 op[count++] = exp.X_add_number;
a737bd4d 4327
c19d1205
ZW
4328 /* Parse the next byte. */
4329 if (skip_past_comma (&input_line_pointer) == FAIL)
4330 break;
a737bd4d 4331
c19d1205
ZW
4332 expression (&exp);
4333 }
b99bd4ef 4334
c19d1205
ZW
4335 /* Add the opcode bytes in reverse order. */
4336 while (count--)
4337 add_unwind_opcode (op[count], 1);
b99bd4ef 4338
c19d1205 4339 demand_empty_rest_of_line ();
b99bd4ef 4340}
ee065d83
PB
4341
4342
4343/* Parse a .eabi_attribute directive. */
4344
4345static void
4346s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4347{
0420f52b 4348 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
ee3c0378
AS
4349
4350 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4351 attributes_set_explicitly[tag] = 1;
ee065d83
PB
4352}
4353
0855e32b
NS
4354/* Emit a tls fix for the symbol. */
4355
4356static void
4357s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4358{
4359 char *p;
4360 expressionS exp;
4361#ifdef md_flush_pending_output
4362 md_flush_pending_output ();
4363#endif
4364
4365#ifdef md_cons_align
4366 md_cons_align (4);
4367#endif
4368
4369 /* Since we're just labelling the code, there's no need to define a
4370 mapping symbol. */
4371 expression (&exp);
4372 p = obstack_next_free (&frchain_now->frch_obstack);
4373 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4374 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4375 : BFD_RELOC_ARM_TLS_DESCSEQ);
4376}
cdf9ccec 4377#endif /* OBJ_ELF */
0855e32b 4378
ee065d83 4379static void s_arm_arch (int);
7a1d4c38 4380static void s_arm_object_arch (int);
ee065d83
PB
4381static void s_arm_cpu (int);
4382static void s_arm_fpu (int);
69133863 4383static void s_arm_arch_extension (int);
b99bd4ef 4384
f0927246
NC
4385#ifdef TE_PE
4386
4387static void
5f4273c7 4388pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
f0927246
NC
4389{
4390 expressionS exp;
4391
4392 do
4393 {
4394 expression (&exp);
4395 if (exp.X_op == O_symbol)
4396 exp.X_op = O_secrel;
4397
4398 emit_expr (&exp, 4);
4399 }
4400 while (*input_line_pointer++ == ',');
4401
4402 input_line_pointer--;
4403 demand_empty_rest_of_line ();
4404}
4405#endif /* TE_PE */
4406
c19d1205
ZW
4407/* This table describes all the machine specific pseudo-ops the assembler
4408 has to support. The fields are:
4409 pseudo-op name without dot
4410 function to call to execute this pseudo-op
4411 Integer arg to pass to the function. */
b99bd4ef 4412
c19d1205 4413const pseudo_typeS md_pseudo_table[] =
b99bd4ef 4414{
c19d1205
ZW
4415 /* Never called because '.req' does not start a line. */
4416 { "req", s_req, 0 },
dcbf9037
JB
4417 /* Following two are likewise never called. */
4418 { "dn", s_dn, 0 },
4419 { "qn", s_qn, 0 },
c19d1205
ZW
4420 { "unreq", s_unreq, 0 },
4421 { "bss", s_bss, 0 },
4422 { "align", s_align, 0 },
4423 { "arm", s_arm, 0 },
4424 { "thumb", s_thumb, 0 },
4425 { "code", s_code, 0 },
4426 { "force_thumb", s_force_thumb, 0 },
4427 { "thumb_func", s_thumb_func, 0 },
4428 { "thumb_set", s_thumb_set, 0 },
4429 { "even", s_even, 0 },
4430 { "ltorg", s_ltorg, 0 },
4431 { "pool", s_ltorg, 0 },
4432 { "syntax", s_syntax, 0 },
8463be01
PB
4433 { "cpu", s_arm_cpu, 0 },
4434 { "arch", s_arm_arch, 0 },
7a1d4c38 4435 { "object_arch", s_arm_object_arch, 0 },
8463be01 4436 { "fpu", s_arm_fpu, 0 },
69133863 4437 { "arch_extension", s_arm_arch_extension, 0 },
c19d1205 4438#ifdef OBJ_ELF
c921be7d
NC
4439 { "word", s_arm_elf_cons, 4 },
4440 { "long", s_arm_elf_cons, 4 },
4441 { "inst.n", s_arm_elf_inst, 2 },
4442 { "inst.w", s_arm_elf_inst, 4 },
4443 { "inst", s_arm_elf_inst, 0 },
4444 { "rel31", s_arm_rel31, 0 },
c19d1205
ZW
4445 { "fnstart", s_arm_unwind_fnstart, 0 },
4446 { "fnend", s_arm_unwind_fnend, 0 },
4447 { "cantunwind", s_arm_unwind_cantunwind, 0 },
4448 { "personality", s_arm_unwind_personality, 0 },
4449 { "personalityindex", s_arm_unwind_personalityindex, 0 },
4450 { "handlerdata", s_arm_unwind_handlerdata, 0 },
4451 { "save", s_arm_unwind_save, 0 },
fa073d69 4452 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
4453 { "movsp", s_arm_unwind_movsp, 0 },
4454 { "pad", s_arm_unwind_pad, 0 },
4455 { "setfp", s_arm_unwind_setfp, 0 },
4456 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 4457 { "eabi_attribute", s_arm_eabi_attribute, 0 },
0855e32b 4458 { "tlsdescseq", s_arm_tls_descseq, 0 },
c19d1205
ZW
4459#else
4460 { "word", cons, 4},
f0927246
NC
4461
4462 /* These are used for dwarf. */
4463 {"2byte", cons, 2},
4464 {"4byte", cons, 4},
4465 {"8byte", cons, 8},
4466 /* These are used for dwarf2. */
4467 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
4468 { "loc", dwarf2_directive_loc, 0 },
4469 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
4470#endif
4471 { "extend", float_cons, 'x' },
4472 { "ldouble", float_cons, 'x' },
4473 { "packed", float_cons, 'p' },
f0927246
NC
4474#ifdef TE_PE
4475 {"secrel32", pe_directive_secrel, 0},
4476#endif
c19d1205
ZW
4477 { 0, 0, 0 }
4478};
4479\f
4480/* Parser functions used exclusively in instruction operands. */
b99bd4ef 4481
c19d1205
ZW
4482/* Generic immediate-value read function for use in insn parsing.
4483 STR points to the beginning of the immediate (the leading #);
4484 VAL receives the value; if the value is outside [MIN, MAX]
4485 issue an error. PREFIX_OPT is true if the immediate prefix is
4486 optional. */
b99bd4ef 4487
c19d1205
ZW
4488static int
4489parse_immediate (char **str, int *val, int min, int max,
4490 bfd_boolean prefix_opt)
4491{
4492 expressionS exp;
4493 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
4494 if (exp.X_op != O_constant)
b99bd4ef 4495 {
c19d1205
ZW
4496 inst.error = _("constant expression required");
4497 return FAIL;
4498 }
b99bd4ef 4499
c19d1205
ZW
4500 if (exp.X_add_number < min || exp.X_add_number > max)
4501 {
4502 inst.error = _("immediate value out of range");
4503 return FAIL;
4504 }
b99bd4ef 4505
c19d1205
ZW
4506 *val = exp.X_add_number;
4507 return SUCCESS;
4508}
b99bd4ef 4509
5287ad62 4510/* Less-generic immediate-value read function with the possibility of loading a
036dc3f7 4511 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5287ad62
JB
4512 instructions. Puts the result directly in inst.operands[i]. */
4513
4514static int
4515parse_big_immediate (char **str, int i)
4516{
4517 expressionS exp;
4518 char *ptr = *str;
4519
4520 my_get_expression (&exp, &ptr, GE_OPT_PREFIX_BIG);
4521
4522 if (exp.X_op == O_constant)
036dc3f7
PB
4523 {
4524 inst.operands[i].imm = exp.X_add_number & 0xffffffff;
4525 /* If we're on a 64-bit host, then a 64-bit number can be returned using
4526 O_constant. We have to be careful not to break compilation for
4527 32-bit X_add_number, though. */
58ad575f 4528 if ((exp.X_add_number & ~(offsetT)(0xffffffffU)) != 0)
036dc3f7
PB
4529 {
4530 /* X >> 32 is illegal if sizeof (exp.X_add_number) == 4. */
4531 inst.operands[i].reg = ((exp.X_add_number >> 16) >> 16) & 0xffffffff;
4532 inst.operands[i].regisimm = 1;
4533 }
4534 }
5287ad62 4535 else if (exp.X_op == O_big
95b75c01 4536 && LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 32)
5287ad62
JB
4537 {
4538 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
95b75c01 4539
5287ad62
JB
4540 /* Bignums have their least significant bits in
4541 generic_bignum[0]. Make sure we put 32 bits in imm and
4542 32 bits in reg, in a (hopefully) portable way. */
9c2799c2 4543 gas_assert (parts != 0);
95b75c01
NC
4544
4545 /* Make sure that the number is not too big.
4546 PR 11972: Bignums can now be sign-extended to the
4547 size of a .octa so check that the out of range bits
4548 are all zero or all one. */
4549 if (LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 64)
4550 {
4551 LITTLENUM_TYPE m = -1;
4552
4553 if (generic_bignum[parts * 2] != 0
4554 && generic_bignum[parts * 2] != m)
4555 return FAIL;
4556
4557 for (j = parts * 2 + 1; j < (unsigned) exp.X_add_number; j++)
4558 if (generic_bignum[j] != generic_bignum[j-1])
4559 return FAIL;
4560 }
4561
5287ad62
JB
4562 inst.operands[i].imm = 0;
4563 for (j = 0; j < parts; j++, idx++)
4564 inst.operands[i].imm |= generic_bignum[idx]
4565 << (LITTLENUM_NUMBER_OF_BITS * j);
4566 inst.operands[i].reg = 0;
4567 for (j = 0; j < parts; j++, idx++)
4568 inst.operands[i].reg |= generic_bignum[idx]
4569 << (LITTLENUM_NUMBER_OF_BITS * j);
4570 inst.operands[i].regisimm = 1;
4571 }
4572 else
4573 return FAIL;
5f4273c7 4574
5287ad62
JB
4575 *str = ptr;
4576
4577 return SUCCESS;
4578}
4579
c19d1205
ZW
4580/* Returns the pseudo-register number of an FPA immediate constant,
4581 or FAIL if there isn't a valid constant here. */
b99bd4ef 4582
c19d1205
ZW
4583static int
4584parse_fpa_immediate (char ** str)
4585{
4586 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4587 char * save_in;
4588 expressionS exp;
4589 int i;
4590 int j;
b99bd4ef 4591
c19d1205
ZW
4592 /* First try and match exact strings, this is to guarantee
4593 that some formats will work even for cross assembly. */
b99bd4ef 4594
c19d1205
ZW
4595 for (i = 0; fp_const[i]; i++)
4596 {
4597 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4598 {
c19d1205 4599 char *start = *str;
b99bd4ef 4600
c19d1205
ZW
4601 *str += strlen (fp_const[i]);
4602 if (is_end_of_line[(unsigned char) **str])
4603 return i + 8;
4604 *str = start;
4605 }
4606 }
b99bd4ef 4607
c19d1205
ZW
4608 /* Just because we didn't get a match doesn't mean that the constant
4609 isn't valid, just that it is in a format that we don't
4610 automatically recognize. Try parsing it with the standard
4611 expression routines. */
b99bd4ef 4612
c19d1205 4613 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4614
c19d1205
ZW
4615 /* Look for a raw floating point number. */
4616 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4617 && is_end_of_line[(unsigned char) *save_in])
4618 {
4619 for (i = 0; i < NUM_FLOAT_VALS; i++)
4620 {
4621 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4622 {
c19d1205
ZW
4623 if (words[j] != fp_values[i][j])
4624 break;
b99bd4ef
NC
4625 }
4626
c19d1205 4627 if (j == MAX_LITTLENUMS)
b99bd4ef 4628 {
c19d1205
ZW
4629 *str = save_in;
4630 return i + 8;
b99bd4ef
NC
4631 }
4632 }
4633 }
b99bd4ef 4634
c19d1205
ZW
4635 /* Try and parse a more complex expression, this will probably fail
4636 unless the code uses a floating point prefix (eg "0f"). */
4637 save_in = input_line_pointer;
4638 input_line_pointer = *str;
4639 if (expression (&exp) == absolute_section
4640 && exp.X_op == O_big
4641 && exp.X_add_number < 0)
4642 {
4643 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4644 Ditto for 15. */
4645 if (gen_to_words (words, 5, (long) 15) == 0)
4646 {
4647 for (i = 0; i < NUM_FLOAT_VALS; i++)
4648 {
4649 for (j = 0; j < MAX_LITTLENUMS; j++)
4650 {
4651 if (words[j] != fp_values[i][j])
4652 break;
4653 }
b99bd4ef 4654
c19d1205
ZW
4655 if (j == MAX_LITTLENUMS)
4656 {
4657 *str = input_line_pointer;
4658 input_line_pointer = save_in;
4659 return i + 8;
4660 }
4661 }
4662 }
b99bd4ef
NC
4663 }
4664
c19d1205
ZW
4665 *str = input_line_pointer;
4666 input_line_pointer = save_in;
4667 inst.error = _("invalid FPA immediate expression");
4668 return FAIL;
b99bd4ef
NC
4669}
4670
136da414
JB
4671/* Returns 1 if a number has "quarter-precision" float format
4672 0baBbbbbbc defgh000 00000000 00000000. */
4673
4674static int
4675is_quarter_float (unsigned imm)
4676{
4677 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4678 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4679}
4680
4681/* Parse an 8-bit "quarter-precision" floating point number of the form:
4682 0baBbbbbbc defgh000 00000000 00000000.
c96612cc
JB
4683 The zero and minus-zero cases need special handling, since they can't be
4684 encoded in the "quarter-precision" float format, but can nonetheless be
4685 loaded as integer constants. */
136da414
JB
4686
4687static unsigned
4688parse_qfloat_immediate (char **ccp, int *immed)
4689{
4690 char *str = *ccp;
c96612cc 4691 char *fpnum;
136da414 4692 LITTLENUM_TYPE words[MAX_LITTLENUMS];
c96612cc 4693 int found_fpchar = 0;
5f4273c7 4694
136da414 4695 skip_past_char (&str, '#');
5f4273c7 4696
c96612cc
JB
4697 /* We must not accidentally parse an integer as a floating-point number. Make
4698 sure that the value we parse is not an integer by checking for special
4699 characters '.' or 'e'.
4700 FIXME: This is a horrible hack, but doing better is tricky because type
4701 information isn't in a very usable state at parse time. */
4702 fpnum = str;
4703 skip_whitespace (fpnum);
4704
4705 if (strncmp (fpnum, "0x", 2) == 0)
4706 return FAIL;
4707 else
4708 {
4709 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
4710 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
4711 {
4712 found_fpchar = 1;
4713 break;
4714 }
4715
4716 if (!found_fpchar)
4717 return FAIL;
4718 }
5f4273c7 4719
136da414
JB
4720 if ((str = atof_ieee (str, 's', words)) != NULL)
4721 {
4722 unsigned fpword = 0;
4723 int i;
5f4273c7 4724
136da414
JB
4725 /* Our FP word must be 32 bits (single-precision FP). */
4726 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
4727 {
4728 fpword <<= LITTLENUM_NUMBER_OF_BITS;
4729 fpword |= words[i];
4730 }
5f4273c7 4731
c96612cc 4732 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
136da414
JB
4733 *immed = fpword;
4734 else
4735 return FAIL;
4736
4737 *ccp = str;
5f4273c7 4738
136da414
JB
4739 return SUCCESS;
4740 }
5f4273c7 4741
136da414
JB
4742 return FAIL;
4743}
4744
c19d1205
ZW
4745/* Shift operands. */
4746enum shift_kind
b99bd4ef 4747{
c19d1205
ZW
4748 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
4749};
b99bd4ef 4750
c19d1205
ZW
4751struct asm_shift_name
4752{
4753 const char *name;
4754 enum shift_kind kind;
4755};
b99bd4ef 4756
c19d1205
ZW
4757/* Third argument to parse_shift. */
4758enum parse_shift_mode
4759{
4760 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
4761 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
4762 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
4763 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
4764 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
4765};
b99bd4ef 4766
c19d1205
ZW
4767/* Parse a <shift> specifier on an ARM data processing instruction.
4768 This has three forms:
b99bd4ef 4769
c19d1205
ZW
4770 (LSL|LSR|ASL|ASR|ROR) Rs
4771 (LSL|LSR|ASL|ASR|ROR) #imm
4772 RRX
b99bd4ef 4773
c19d1205
ZW
4774 Note that ASL is assimilated to LSL in the instruction encoding, and
4775 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 4776
c19d1205
ZW
4777static int
4778parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 4779{
c19d1205
ZW
4780 const struct asm_shift_name *shift_name;
4781 enum shift_kind shift;
4782 char *s = *str;
4783 char *p = s;
4784 int reg;
b99bd4ef 4785
c19d1205
ZW
4786 for (p = *str; ISALPHA (*p); p++)
4787 ;
b99bd4ef 4788
c19d1205 4789 if (p == *str)
b99bd4ef 4790 {
c19d1205
ZW
4791 inst.error = _("shift expression expected");
4792 return FAIL;
b99bd4ef
NC
4793 }
4794
21d799b5
NC
4795 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
4796 p - *str);
c19d1205
ZW
4797
4798 if (shift_name == NULL)
b99bd4ef 4799 {
c19d1205
ZW
4800 inst.error = _("shift expression expected");
4801 return FAIL;
b99bd4ef
NC
4802 }
4803
c19d1205 4804 shift = shift_name->kind;
b99bd4ef 4805
c19d1205
ZW
4806 switch (mode)
4807 {
4808 case NO_SHIFT_RESTRICT:
4809 case SHIFT_IMMEDIATE: break;
b99bd4ef 4810
c19d1205
ZW
4811 case SHIFT_LSL_OR_ASR_IMMEDIATE:
4812 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
4813 {
4814 inst.error = _("'LSL' or 'ASR' required");
4815 return FAIL;
4816 }
4817 break;
b99bd4ef 4818
c19d1205
ZW
4819 case SHIFT_LSL_IMMEDIATE:
4820 if (shift != SHIFT_LSL)
4821 {
4822 inst.error = _("'LSL' required");
4823 return FAIL;
4824 }
4825 break;
b99bd4ef 4826
c19d1205
ZW
4827 case SHIFT_ASR_IMMEDIATE:
4828 if (shift != SHIFT_ASR)
4829 {
4830 inst.error = _("'ASR' required");
4831 return FAIL;
4832 }
4833 break;
b99bd4ef 4834
c19d1205
ZW
4835 default: abort ();
4836 }
b99bd4ef 4837
c19d1205
ZW
4838 if (shift != SHIFT_RRX)
4839 {
4840 /* Whitespace can appear here if the next thing is a bare digit. */
4841 skip_whitespace (p);
b99bd4ef 4842
c19d1205 4843 if (mode == NO_SHIFT_RESTRICT
dcbf9037 4844 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4845 {
4846 inst.operands[i].imm = reg;
4847 inst.operands[i].immisreg = 1;
4848 }
4849 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4850 return FAIL;
4851 }
4852 inst.operands[i].shift_kind = shift;
4853 inst.operands[i].shifted = 1;
4854 *str = p;
4855 return SUCCESS;
b99bd4ef
NC
4856}
4857
c19d1205 4858/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 4859
c19d1205
ZW
4860 #<immediate>
4861 #<immediate>, <rotate>
4862 <Rm>
4863 <Rm>, <shift>
b99bd4ef 4864
c19d1205
ZW
4865 where <shift> is defined by parse_shift above, and <rotate> is a
4866 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 4867 is deferred to md_apply_fix. */
b99bd4ef 4868
c19d1205
ZW
4869static int
4870parse_shifter_operand (char **str, int i)
4871{
4872 int value;
91d6fa6a 4873 expressionS exp;
b99bd4ef 4874
dcbf9037 4875 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4876 {
4877 inst.operands[i].reg = value;
4878 inst.operands[i].isreg = 1;
b99bd4ef 4879
c19d1205
ZW
4880 /* parse_shift will override this if appropriate */
4881 inst.reloc.exp.X_op = O_constant;
4882 inst.reloc.exp.X_add_number = 0;
b99bd4ef 4883
c19d1205
ZW
4884 if (skip_past_comma (str) == FAIL)
4885 return SUCCESS;
b99bd4ef 4886
c19d1205
ZW
4887 /* Shift operation on register. */
4888 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
4889 }
4890
c19d1205
ZW
4891 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
4892 return FAIL;
b99bd4ef 4893
c19d1205 4894 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 4895 {
c19d1205 4896 /* #x, y -- ie explicit rotation by Y. */
91d6fa6a 4897 if (my_get_expression (&exp, str, GE_NO_PREFIX))
c19d1205 4898 return FAIL;
b99bd4ef 4899
91d6fa6a 4900 if (exp.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
c19d1205
ZW
4901 {
4902 inst.error = _("constant expression expected");
4903 return FAIL;
4904 }
b99bd4ef 4905
91d6fa6a 4906 value = exp.X_add_number;
c19d1205
ZW
4907 if (value < 0 || value > 30 || value % 2 != 0)
4908 {
4909 inst.error = _("invalid rotation");
4910 return FAIL;
4911 }
4912 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
4913 {
4914 inst.error = _("invalid constant");
4915 return FAIL;
4916 }
09d92015 4917
a415b1cd
JB
4918 /* Encode as specified. */
4919 inst.operands[i].imm = inst.reloc.exp.X_add_number | value << 7;
4920 return SUCCESS;
09d92015
MM
4921 }
4922
c19d1205
ZW
4923 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
4924 inst.reloc.pc_rel = 0;
4925 return SUCCESS;
09d92015
MM
4926}
4927
4962c51a
MS
4928/* Group relocation information. Each entry in the table contains the
4929 textual name of the relocation as may appear in assembler source
4930 and must end with a colon.
4931 Along with this textual name are the relocation codes to be used if
4932 the corresponding instruction is an ALU instruction (ADD or SUB only),
4933 an LDR, an LDRS, or an LDC. */
4934
4935struct group_reloc_table_entry
4936{
4937 const char *name;
4938 int alu_code;
4939 int ldr_code;
4940 int ldrs_code;
4941 int ldc_code;
4942};
4943
4944typedef enum
4945{
4946 /* Varieties of non-ALU group relocation. */
4947
4948 GROUP_LDR,
4949 GROUP_LDRS,
4950 GROUP_LDC
4951} group_reloc_type;
4952
4953static struct group_reloc_table_entry group_reloc_table[] =
4954 { /* Program counter relative: */
4955 { "pc_g0_nc",
4956 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
4957 0, /* LDR */
4958 0, /* LDRS */
4959 0 }, /* LDC */
4960 { "pc_g0",
4961 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
4962 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
4963 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
4964 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
4965 { "pc_g1_nc",
4966 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
4967 0, /* LDR */
4968 0, /* LDRS */
4969 0 }, /* LDC */
4970 { "pc_g1",
4971 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
4972 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
4973 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
4974 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
4975 { "pc_g2",
4976 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
4977 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
4978 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
4979 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
4980 /* Section base relative */
4981 { "sb_g0_nc",
4982 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
4983 0, /* LDR */
4984 0, /* LDRS */
4985 0 }, /* LDC */
4986 { "sb_g0",
4987 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
4988 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
4989 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
4990 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
4991 { "sb_g1_nc",
4992 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
4993 0, /* LDR */
4994 0, /* LDRS */
4995 0 }, /* LDC */
4996 { "sb_g1",
4997 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
4998 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
4999 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
5000 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
5001 { "sb_g2",
5002 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
5003 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5004 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
5005 BFD_RELOC_ARM_LDC_SB_G2 } }; /* LDC */
5006
5007/* Given the address of a pointer pointing to the textual name of a group
5008 relocation as may appear in assembler source, attempt to find its details
5009 in group_reloc_table. The pointer will be updated to the character after
5010 the trailing colon. On failure, FAIL will be returned; SUCCESS
5011 otherwise. On success, *entry will be updated to point at the relevant
5012 group_reloc_table entry. */
5013
5014static int
5015find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5016{
5017 unsigned int i;
5018 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5019 {
5020 int length = strlen (group_reloc_table[i].name);
5021
5f4273c7
NC
5022 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5023 && (*str)[length] == ':')
4962c51a
MS
5024 {
5025 *out = &group_reloc_table[i];
5026 *str += (length + 1);
5027 return SUCCESS;
5028 }
5029 }
5030
5031 return FAIL;
5032}
5033
5034/* Parse a <shifter_operand> for an ARM data processing instruction
5035 (as for parse_shifter_operand) where group relocations are allowed:
5036
5037 #<immediate>
5038 #<immediate>, <rotate>
5039 #:<group_reloc>:<expression>
5040 <Rm>
5041 <Rm>, <shift>
5042
5043 where <group_reloc> is one of the strings defined in group_reloc_table.
5044 The hashes are optional.
5045
5046 Everything else is as for parse_shifter_operand. */
5047
5048static parse_operand_result
5049parse_shifter_operand_group_reloc (char **str, int i)
5050{
5051 /* Determine if we have the sequence of characters #: or just :
5052 coming next. If we do, then we check for a group relocation.
5053 If we don't, punt the whole lot to parse_shifter_operand. */
5054
5055 if (((*str)[0] == '#' && (*str)[1] == ':')
5056 || (*str)[0] == ':')
5057 {
5058 struct group_reloc_table_entry *entry;
5059
5060 if ((*str)[0] == '#')
5061 (*str) += 2;
5062 else
5063 (*str)++;
5064
5065 /* Try to parse a group relocation. Anything else is an error. */
5066 if (find_group_reloc_table_entry (str, &entry) == FAIL)
5067 {
5068 inst.error = _("unknown group relocation");
5069 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5070 }
5071
5072 /* We now have the group relocation table entry corresponding to
5073 the name in the assembler source. Next, we parse the expression. */
5074 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
5075 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5076
5077 /* Record the relocation type (always the ALU variant here). */
21d799b5 5078 inst.reloc.type = (bfd_reloc_code_real_type) entry->alu_code;
9c2799c2 5079 gas_assert (inst.reloc.type != 0);
4962c51a
MS
5080
5081 return PARSE_OPERAND_SUCCESS;
5082 }
5083 else
5084 return parse_shifter_operand (str, i) == SUCCESS
5085 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
5086
5087 /* Never reached. */
5088}
5089
8e560766
MGD
5090/* Parse a Neon alignment expression. Information is written to
5091 inst.operands[i]. We assume the initial ':' has been skipped.
fa94de6b 5092
8e560766
MGD
5093 align .imm = align << 8, .immisalign=1, .preind=0 */
5094static parse_operand_result
5095parse_neon_alignment (char **str, int i)
5096{
5097 char *p = *str;
5098 expressionS exp;
5099
5100 my_get_expression (&exp, &p, GE_NO_PREFIX);
5101
5102 if (exp.X_op != O_constant)
5103 {
5104 inst.error = _("alignment must be constant");
5105 return PARSE_OPERAND_FAIL;
5106 }
5107
5108 inst.operands[i].imm = exp.X_add_number << 8;
5109 inst.operands[i].immisalign = 1;
5110 /* Alignments are not pre-indexes. */
5111 inst.operands[i].preind = 0;
5112
5113 *str = p;
5114 return PARSE_OPERAND_SUCCESS;
5115}
5116
c19d1205
ZW
5117/* Parse all forms of an ARM address expression. Information is written
5118 to inst.operands[i] and/or inst.reloc.
09d92015 5119
c19d1205 5120 Preindexed addressing (.preind=1):
09d92015 5121
c19d1205
ZW
5122 [Rn, #offset] .reg=Rn .reloc.exp=offset
5123 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5124 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5125 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5126
c19d1205 5127 These three may have a trailing ! which causes .writeback to be set also.
09d92015 5128
c19d1205 5129 Postindexed addressing (.postind=1, .writeback=1):
09d92015 5130
c19d1205
ZW
5131 [Rn], #offset .reg=Rn .reloc.exp=offset
5132 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5133 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5134 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5135
c19d1205 5136 Unindexed addressing (.preind=0, .postind=0):
09d92015 5137
c19d1205 5138 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 5139
c19d1205 5140 Other:
09d92015 5141
c19d1205
ZW
5142 [Rn]{!} shorthand for [Rn,#0]{!}
5143 =immediate .isreg=0 .reloc.exp=immediate
5144 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 5145
c19d1205
ZW
5146 It is the caller's responsibility to check for addressing modes not
5147 supported by the instruction, and to set inst.reloc.type. */
5148
4962c51a
MS
5149static parse_operand_result
5150parse_address_main (char **str, int i, int group_relocations,
5151 group_reloc_type group_type)
09d92015 5152{
c19d1205
ZW
5153 char *p = *str;
5154 int reg;
09d92015 5155
c19d1205 5156 if (skip_past_char (&p, '[') == FAIL)
09d92015 5157 {
c19d1205
ZW
5158 if (skip_past_char (&p, '=') == FAIL)
5159 {
974da60d 5160 /* Bare address - translate to PC-relative offset. */
c19d1205
ZW
5161 inst.reloc.pc_rel = 1;
5162 inst.operands[i].reg = REG_PC;
5163 inst.operands[i].isreg = 1;
5164 inst.operands[i].preind = 1;
5165 }
974da60d 5166 /* Otherwise a load-constant pseudo op, no special treatment needed here. */
09d92015 5167
c19d1205 5168 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4962c51a 5169 return PARSE_OPERAND_FAIL;
09d92015 5170
c19d1205 5171 *str = p;
4962c51a 5172 return PARSE_OPERAND_SUCCESS;
09d92015
MM
5173 }
5174
8ab8155f
NC
5175 /* PR gas/14887: Allow for whitespace after the opening bracket. */
5176 skip_whitespace (p);
5177
dcbf9037 5178 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 5179 {
c19d1205 5180 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 5181 return PARSE_OPERAND_FAIL;
09d92015 5182 }
c19d1205
ZW
5183 inst.operands[i].reg = reg;
5184 inst.operands[i].isreg = 1;
09d92015 5185
c19d1205 5186 if (skip_past_comma (&p) == SUCCESS)
09d92015 5187 {
c19d1205 5188 inst.operands[i].preind = 1;
09d92015 5189
c19d1205
ZW
5190 if (*p == '+') p++;
5191 else if (*p == '-') p++, inst.operands[i].negative = 1;
5192
dcbf9037 5193 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 5194 {
c19d1205
ZW
5195 inst.operands[i].imm = reg;
5196 inst.operands[i].immisreg = 1;
5197
5198 if (skip_past_comma (&p) == SUCCESS)
5199 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5200 return PARSE_OPERAND_FAIL;
c19d1205 5201 }
5287ad62 5202 else if (skip_past_char (&p, ':') == SUCCESS)
8e560766
MGD
5203 {
5204 /* FIXME: '@' should be used here, but it's filtered out by generic
5205 code before we get to see it here. This may be subject to
5206 change. */
5207 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5208
8e560766
MGD
5209 if (result != PARSE_OPERAND_SUCCESS)
5210 return result;
5211 }
c19d1205
ZW
5212 else
5213 {
5214 if (inst.operands[i].negative)
5215 {
5216 inst.operands[i].negative = 0;
5217 p--;
5218 }
4962c51a 5219
5f4273c7
NC
5220 if (group_relocations
5221 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4962c51a
MS
5222 {
5223 struct group_reloc_table_entry *entry;
5224
5225 /* Skip over the #: or : sequence. */
5226 if (*p == '#')
5227 p += 2;
5228 else
5229 p++;
5230
5231 /* Try to parse a group relocation. Anything else is an
5232 error. */
5233 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5234 {
5235 inst.error = _("unknown group relocation");
5236 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5237 }
5238
5239 /* We now have the group relocation table entry corresponding to
5240 the name in the assembler source. Next, we parse the
5241 expression. */
5242 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5243 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5244
5245 /* Record the relocation type. */
5246 switch (group_type)
5247 {
5248 case GROUP_LDR:
21d799b5 5249 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldr_code;
4962c51a
MS
5250 break;
5251
5252 case GROUP_LDRS:
21d799b5 5253 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldrs_code;
4962c51a
MS
5254 break;
5255
5256 case GROUP_LDC:
21d799b5 5257 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldc_code;
4962c51a
MS
5258 break;
5259
5260 default:
9c2799c2 5261 gas_assert (0);
4962c51a
MS
5262 }
5263
5264 if (inst.reloc.type == 0)
5265 {
5266 inst.error = _("this group relocation is not allowed on this instruction");
5267 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5268 }
5269 }
5270 else
26d97720
NS
5271 {
5272 char *q = p;
5273 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5274 return PARSE_OPERAND_FAIL;
5275 /* If the offset is 0, find out if it's a +0 or -0. */
5276 if (inst.reloc.exp.X_op == O_constant
5277 && inst.reloc.exp.X_add_number == 0)
5278 {
5279 skip_whitespace (q);
5280 if (*q == '#')
5281 {
5282 q++;
5283 skip_whitespace (q);
5284 }
5285 if (*q == '-')
5286 inst.operands[i].negative = 1;
5287 }
5288 }
09d92015
MM
5289 }
5290 }
8e560766
MGD
5291 else if (skip_past_char (&p, ':') == SUCCESS)
5292 {
5293 /* FIXME: '@' should be used here, but it's filtered out by generic code
5294 before we get to see it here. This may be subject to change. */
5295 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5296
8e560766
MGD
5297 if (result != PARSE_OPERAND_SUCCESS)
5298 return result;
5299 }
09d92015 5300
c19d1205 5301 if (skip_past_char (&p, ']') == FAIL)
09d92015 5302 {
c19d1205 5303 inst.error = _("']' expected");
4962c51a 5304 return PARSE_OPERAND_FAIL;
09d92015
MM
5305 }
5306
c19d1205
ZW
5307 if (skip_past_char (&p, '!') == SUCCESS)
5308 inst.operands[i].writeback = 1;
09d92015 5309
c19d1205 5310 else if (skip_past_comma (&p) == SUCCESS)
09d92015 5311 {
c19d1205
ZW
5312 if (skip_past_char (&p, '{') == SUCCESS)
5313 {
5314 /* [Rn], {expr} - unindexed, with option */
5315 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 5316 0, 255, TRUE) == FAIL)
4962c51a 5317 return PARSE_OPERAND_FAIL;
09d92015 5318
c19d1205
ZW
5319 if (skip_past_char (&p, '}') == FAIL)
5320 {
5321 inst.error = _("'}' expected at end of 'option' field");
4962c51a 5322 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5323 }
5324 if (inst.operands[i].preind)
5325 {
5326 inst.error = _("cannot combine index with option");
4962c51a 5327 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5328 }
5329 *str = p;
4962c51a 5330 return PARSE_OPERAND_SUCCESS;
09d92015 5331 }
c19d1205
ZW
5332 else
5333 {
5334 inst.operands[i].postind = 1;
5335 inst.operands[i].writeback = 1;
09d92015 5336
c19d1205
ZW
5337 if (inst.operands[i].preind)
5338 {
5339 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 5340 return PARSE_OPERAND_FAIL;
c19d1205 5341 }
09d92015 5342
c19d1205
ZW
5343 if (*p == '+') p++;
5344 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 5345
dcbf9037 5346 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 5347 {
5287ad62
JB
5348 /* We might be using the immediate for alignment already. If we
5349 are, OR the register number into the low-order bits. */
5350 if (inst.operands[i].immisalign)
5351 inst.operands[i].imm |= reg;
5352 else
5353 inst.operands[i].imm = reg;
c19d1205 5354 inst.operands[i].immisreg = 1;
a737bd4d 5355
c19d1205
ZW
5356 if (skip_past_comma (&p) == SUCCESS)
5357 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5358 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5359 }
5360 else
5361 {
26d97720 5362 char *q = p;
c19d1205
ZW
5363 if (inst.operands[i].negative)
5364 {
5365 inst.operands[i].negative = 0;
5366 p--;
5367 }
5368 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 5369 return PARSE_OPERAND_FAIL;
26d97720
NS
5370 /* If the offset is 0, find out if it's a +0 or -0. */
5371 if (inst.reloc.exp.X_op == O_constant
5372 && inst.reloc.exp.X_add_number == 0)
5373 {
5374 skip_whitespace (q);
5375 if (*q == '#')
5376 {
5377 q++;
5378 skip_whitespace (q);
5379 }
5380 if (*q == '-')
5381 inst.operands[i].negative = 1;
5382 }
c19d1205
ZW
5383 }
5384 }
a737bd4d
NC
5385 }
5386
c19d1205
ZW
5387 /* If at this point neither .preind nor .postind is set, we have a
5388 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
5389 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
5390 {
5391 inst.operands[i].preind = 1;
5392 inst.reloc.exp.X_op = O_constant;
5393 inst.reloc.exp.X_add_number = 0;
5394 }
5395 *str = p;
4962c51a
MS
5396 return PARSE_OPERAND_SUCCESS;
5397}
5398
5399static int
5400parse_address (char **str, int i)
5401{
21d799b5 5402 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
4962c51a
MS
5403 ? SUCCESS : FAIL;
5404}
5405
5406static parse_operand_result
5407parse_address_group_reloc (char **str, int i, group_reloc_type type)
5408{
5409 return parse_address_main (str, i, 1, type);
a737bd4d
NC
5410}
5411
b6895b4f
PB
5412/* Parse an operand for a MOVW or MOVT instruction. */
5413static int
5414parse_half (char **str)
5415{
5416 char * p;
5f4273c7 5417
b6895b4f
PB
5418 p = *str;
5419 skip_past_char (&p, '#');
5f4273c7 5420 if (strncasecmp (p, ":lower16:", 9) == 0)
b6895b4f
PB
5421 inst.reloc.type = BFD_RELOC_ARM_MOVW;
5422 else if (strncasecmp (p, ":upper16:", 9) == 0)
5423 inst.reloc.type = BFD_RELOC_ARM_MOVT;
5424
5425 if (inst.reloc.type != BFD_RELOC_UNUSED)
5426 {
5427 p += 9;
5f4273c7 5428 skip_whitespace (p);
b6895b4f
PB
5429 }
5430
5431 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5432 return FAIL;
5433
5434 if (inst.reloc.type == BFD_RELOC_UNUSED)
5435 {
5436 if (inst.reloc.exp.X_op != O_constant)
5437 {
5438 inst.error = _("constant expression expected");
5439 return FAIL;
5440 }
5441 if (inst.reloc.exp.X_add_number < 0
5442 || inst.reloc.exp.X_add_number > 0xffff)
5443 {
5444 inst.error = _("immediate value out of range");
5445 return FAIL;
5446 }
5447 }
5448 *str = p;
5449 return SUCCESS;
5450}
5451
c19d1205 5452/* Miscellaneous. */
a737bd4d 5453
c19d1205
ZW
5454/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
5455 or a bitmask suitable to be or-ed into the ARM msr instruction. */
5456static int
d2cd1205 5457parse_psr (char **str, bfd_boolean lhs)
09d92015 5458{
c19d1205
ZW
5459 char *p;
5460 unsigned long psr_field;
62b3e311
PB
5461 const struct asm_psr *psr;
5462 char *start;
d2cd1205 5463 bfd_boolean is_apsr = FALSE;
ac7f631b 5464 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
09d92015 5465
a4482bb6
NC
5466 /* PR gas/12698: If the user has specified -march=all then m_profile will
5467 be TRUE, but we want to ignore it in this case as we are building for any
5468 CPU type, including non-m variants. */
5469 if (selected_cpu.core == arm_arch_any.core)
5470 m_profile = FALSE;
5471
c19d1205
ZW
5472 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
5473 feature for ease of use and backwards compatibility. */
5474 p = *str;
62b3e311 5475 if (strncasecmp (p, "SPSR", 4) == 0)
d2cd1205
JB
5476 {
5477 if (m_profile)
5478 goto unsupported_psr;
fa94de6b 5479
d2cd1205
JB
5480 psr_field = SPSR_BIT;
5481 }
5482 else if (strncasecmp (p, "CPSR", 4) == 0)
5483 {
5484 if (m_profile)
5485 goto unsupported_psr;
5486
5487 psr_field = 0;
5488 }
5489 else if (strncasecmp (p, "APSR", 4) == 0)
5490 {
5491 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
5492 and ARMv7-R architecture CPUs. */
5493 is_apsr = TRUE;
5494 psr_field = 0;
5495 }
5496 else if (m_profile)
62b3e311
PB
5497 {
5498 start = p;
5499 do
5500 p++;
5501 while (ISALNUM (*p) || *p == '_');
5502
d2cd1205
JB
5503 if (strncasecmp (start, "iapsr", 5) == 0
5504 || strncasecmp (start, "eapsr", 5) == 0
5505 || strncasecmp (start, "xpsr", 4) == 0
5506 || strncasecmp (start, "psr", 3) == 0)
5507 p = start + strcspn (start, "rR") + 1;
5508
21d799b5
NC
5509 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
5510 p - start);
d2cd1205 5511
62b3e311
PB
5512 if (!psr)
5513 return FAIL;
09d92015 5514
d2cd1205
JB
5515 /* If APSR is being written, a bitfield may be specified. Note that
5516 APSR itself is handled above. */
5517 if (psr->field <= 3)
5518 {
5519 psr_field = psr->field;
5520 is_apsr = TRUE;
5521 goto check_suffix;
5522 }
5523
62b3e311 5524 *str = p;
d2cd1205
JB
5525 /* M-profile MSR instructions have the mask field set to "10", except
5526 *PSR variants which modify APSR, which may use a different mask (and
5527 have been handled already). Do that by setting the PSR_f field
5528 here. */
5529 return psr->field | (lhs ? PSR_f : 0);
62b3e311 5530 }
d2cd1205
JB
5531 else
5532 goto unsupported_psr;
09d92015 5533
62b3e311 5534 p += 4;
d2cd1205 5535check_suffix:
c19d1205
ZW
5536 if (*p == '_')
5537 {
5538 /* A suffix follows. */
c19d1205
ZW
5539 p++;
5540 start = p;
a737bd4d 5541
c19d1205
ZW
5542 do
5543 p++;
5544 while (ISALNUM (*p) || *p == '_');
a737bd4d 5545
d2cd1205
JB
5546 if (is_apsr)
5547 {
5548 /* APSR uses a notation for bits, rather than fields. */
5549 unsigned int nzcvq_bits = 0;
5550 unsigned int g_bit = 0;
5551 char *bit;
fa94de6b 5552
d2cd1205
JB
5553 for (bit = start; bit != p; bit++)
5554 {
5555 switch (TOLOWER (*bit))
5556 {
5557 case 'n':
5558 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
5559 break;
5560
5561 case 'z':
5562 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
5563 break;
5564
5565 case 'c':
5566 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
5567 break;
5568
5569 case 'v':
5570 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
5571 break;
fa94de6b 5572
d2cd1205
JB
5573 case 'q':
5574 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
5575 break;
fa94de6b 5576
d2cd1205
JB
5577 case 'g':
5578 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
5579 break;
fa94de6b 5580
d2cd1205
JB
5581 default:
5582 inst.error = _("unexpected bit specified after APSR");
5583 return FAIL;
5584 }
5585 }
fa94de6b 5586
d2cd1205
JB
5587 if (nzcvq_bits == 0x1f)
5588 psr_field |= PSR_f;
fa94de6b 5589
d2cd1205
JB
5590 if (g_bit == 0x1)
5591 {
5592 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
5593 {
5594 inst.error = _("selected processor does not "
5595 "support DSP extension");
5596 return FAIL;
5597 }
5598
5599 psr_field |= PSR_s;
5600 }
fa94de6b 5601
d2cd1205
JB
5602 if ((nzcvq_bits & 0x20) != 0
5603 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
5604 || (g_bit & 0x2) != 0)
5605 {
5606 inst.error = _("bad bitmask specified after APSR");
5607 return FAIL;
5608 }
5609 }
5610 else
5611 {
5612 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
5613 p - start);
5614 if (!psr)
5615 goto error;
a737bd4d 5616
d2cd1205
JB
5617 psr_field |= psr->field;
5618 }
a737bd4d 5619 }
c19d1205 5620 else
a737bd4d 5621 {
c19d1205
ZW
5622 if (ISALNUM (*p))
5623 goto error; /* Garbage after "[CS]PSR". */
5624
d2cd1205
JB
5625 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
5626 is deprecated, but allow it anyway. */
5627 if (is_apsr && lhs)
5628 {
5629 psr_field |= PSR_f;
5630 as_tsktsk (_("writing to APSR without specifying a bitmask is "
5631 "deprecated"));
5632 }
5633 else if (!m_profile)
5634 /* These bits are never right for M-profile devices: don't set them
5635 (only code paths which read/write APSR reach here). */
5636 psr_field |= (PSR_c | PSR_f);
a737bd4d 5637 }
c19d1205
ZW
5638 *str = p;
5639 return psr_field;
a737bd4d 5640
d2cd1205
JB
5641 unsupported_psr:
5642 inst.error = _("selected processor does not support requested special "
5643 "purpose register");
5644 return FAIL;
5645
c19d1205
ZW
5646 error:
5647 inst.error = _("flag for {c}psr instruction expected");
5648 return FAIL;
a737bd4d
NC
5649}
5650
c19d1205
ZW
5651/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
5652 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 5653
c19d1205
ZW
5654static int
5655parse_cps_flags (char **str)
a737bd4d 5656{
c19d1205
ZW
5657 int val = 0;
5658 int saw_a_flag = 0;
5659 char *s = *str;
a737bd4d 5660
c19d1205
ZW
5661 for (;;)
5662 switch (*s++)
5663 {
5664 case '\0': case ',':
5665 goto done;
a737bd4d 5666
c19d1205
ZW
5667 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
5668 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
5669 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 5670
c19d1205
ZW
5671 default:
5672 inst.error = _("unrecognized CPS flag");
5673 return FAIL;
5674 }
a737bd4d 5675
c19d1205
ZW
5676 done:
5677 if (saw_a_flag == 0)
a737bd4d 5678 {
c19d1205
ZW
5679 inst.error = _("missing CPS flags");
5680 return FAIL;
a737bd4d 5681 }
a737bd4d 5682
c19d1205
ZW
5683 *str = s - 1;
5684 return val;
a737bd4d
NC
5685}
5686
c19d1205
ZW
5687/* Parse an endian specifier ("BE" or "LE", case insensitive);
5688 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
5689
5690static int
c19d1205 5691parse_endian_specifier (char **str)
a737bd4d 5692{
c19d1205
ZW
5693 int little_endian;
5694 char *s = *str;
a737bd4d 5695
c19d1205
ZW
5696 if (strncasecmp (s, "BE", 2))
5697 little_endian = 0;
5698 else if (strncasecmp (s, "LE", 2))
5699 little_endian = 1;
5700 else
a737bd4d 5701 {
c19d1205 5702 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5703 return FAIL;
5704 }
5705
c19d1205 5706 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 5707 {
c19d1205 5708 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5709 return FAIL;
5710 }
5711
c19d1205
ZW
5712 *str = s + 2;
5713 return little_endian;
5714}
a737bd4d 5715
c19d1205
ZW
5716/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
5717 value suitable for poking into the rotate field of an sxt or sxta
5718 instruction, or FAIL on error. */
5719
5720static int
5721parse_ror (char **str)
5722{
5723 int rot;
5724 char *s = *str;
5725
5726 if (strncasecmp (s, "ROR", 3) == 0)
5727 s += 3;
5728 else
a737bd4d 5729 {
c19d1205 5730 inst.error = _("missing rotation field after comma");
a737bd4d
NC
5731 return FAIL;
5732 }
c19d1205
ZW
5733
5734 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
5735 return FAIL;
5736
5737 switch (rot)
a737bd4d 5738 {
c19d1205
ZW
5739 case 0: *str = s; return 0x0;
5740 case 8: *str = s; return 0x1;
5741 case 16: *str = s; return 0x2;
5742 case 24: *str = s; return 0x3;
5743
5744 default:
5745 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
5746 return FAIL;
5747 }
c19d1205 5748}
a737bd4d 5749
c19d1205
ZW
5750/* Parse a conditional code (from conds[] below). The value returned is in the
5751 range 0 .. 14, or FAIL. */
5752static int
5753parse_cond (char **str)
5754{
c462b453 5755 char *q;
c19d1205 5756 const struct asm_cond *c;
c462b453
PB
5757 int n;
5758 /* Condition codes are always 2 characters, so matching up to
5759 3 characters is sufficient. */
5760 char cond[3];
a737bd4d 5761
c462b453
PB
5762 q = *str;
5763 n = 0;
5764 while (ISALPHA (*q) && n < 3)
5765 {
e07e6e58 5766 cond[n] = TOLOWER (*q);
c462b453
PB
5767 q++;
5768 n++;
5769 }
a737bd4d 5770
21d799b5 5771 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
c19d1205 5772 if (!c)
a737bd4d 5773 {
c19d1205 5774 inst.error = _("condition required");
a737bd4d
NC
5775 return FAIL;
5776 }
5777
c19d1205
ZW
5778 *str = q;
5779 return c->value;
5780}
5781
e797f7e0
MGD
5782/* If the given feature available in the selected CPU, mark it as used.
5783 Returns TRUE iff feature is available. */
5784static bfd_boolean
5785mark_feature_used (const arm_feature_set *feature)
5786{
5787 /* Ensure the option is valid on the current architecture. */
5788 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
5789 return FALSE;
5790
5791 /* Add the appropriate architecture feature for the barrier option used.
5792 */
5793 if (thumb_mode)
5794 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
5795 else
5796 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
5797
5798 return TRUE;
5799}
5800
62b3e311
PB
5801/* Parse an option for a barrier instruction. Returns the encoding for the
5802 option, or FAIL. */
5803static int
5804parse_barrier (char **str)
5805{
5806 char *p, *q;
5807 const struct asm_barrier_opt *o;
5808
5809 p = q = *str;
5810 while (ISALPHA (*q))
5811 q++;
5812
21d799b5
NC
5813 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
5814 q - p);
62b3e311
PB
5815 if (!o)
5816 return FAIL;
5817
e797f7e0
MGD
5818 if (!mark_feature_used (&o->arch))
5819 return FAIL;
5820
62b3e311
PB
5821 *str = q;
5822 return o->value;
5823}
5824
92e90b6e
PB
5825/* Parse the operands of a table branch instruction. Similar to a memory
5826 operand. */
5827static int
5828parse_tb (char **str)
5829{
5830 char * p = *str;
5831 int reg;
5832
5833 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
5834 {
5835 inst.error = _("'[' expected");
5836 return FAIL;
5837 }
92e90b6e 5838
dcbf9037 5839 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5840 {
5841 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5842 return FAIL;
5843 }
5844 inst.operands[0].reg = reg;
5845
5846 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
5847 {
5848 inst.error = _("',' expected");
5849 return FAIL;
5850 }
5f4273c7 5851
dcbf9037 5852 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5853 {
5854 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5855 return FAIL;
5856 }
5857 inst.operands[0].imm = reg;
5858
5859 if (skip_past_comma (&p) == SUCCESS)
5860 {
5861 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
5862 return FAIL;
5863 if (inst.reloc.exp.X_add_number != 1)
5864 {
5865 inst.error = _("invalid shift");
5866 return FAIL;
5867 }
5868 inst.operands[0].shifted = 1;
5869 }
5870
5871 if (skip_past_char (&p, ']') == FAIL)
5872 {
5873 inst.error = _("']' expected");
5874 return FAIL;
5875 }
5876 *str = p;
5877 return SUCCESS;
5878}
5879
5287ad62
JB
5880/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
5881 information on the types the operands can take and how they are encoded.
037e8744
JB
5882 Up to four operands may be read; this function handles setting the
5883 ".present" field for each read operand itself.
5287ad62
JB
5884 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
5885 else returns FAIL. */
5886
5887static int
5888parse_neon_mov (char **str, int *which_operand)
5889{
5890 int i = *which_operand, val;
5891 enum arm_reg_type rtype;
5892 char *ptr = *str;
dcbf9037 5893 struct neon_type_el optype;
5f4273c7 5894
dcbf9037 5895 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
5896 {
5897 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
5898 inst.operands[i].reg = val;
5899 inst.operands[i].isscalar = 1;
dcbf9037 5900 inst.operands[i].vectype = optype;
5287ad62
JB
5901 inst.operands[i++].present = 1;
5902
5903 if (skip_past_comma (&ptr) == FAIL)
5904 goto wanted_comma;
5f4273c7 5905
dcbf9037 5906 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5287ad62 5907 goto wanted_arm;
5f4273c7 5908
5287ad62
JB
5909 inst.operands[i].reg = val;
5910 inst.operands[i].isreg = 1;
5911 inst.operands[i].present = 1;
5912 }
037e8744 5913 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
dcbf9037 5914 != FAIL)
5287ad62
JB
5915 {
5916 /* Cases 0, 1, 2, 3, 5 (D only). */
5917 if (skip_past_comma (&ptr) == FAIL)
5918 goto wanted_comma;
5f4273c7 5919
5287ad62
JB
5920 inst.operands[i].reg = val;
5921 inst.operands[i].isreg = 1;
5922 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5923 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5924 inst.operands[i].isvec = 1;
dcbf9037 5925 inst.operands[i].vectype = optype;
5287ad62
JB
5926 inst.operands[i++].present = 1;
5927
dcbf9037 5928 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62 5929 {
037e8744
JB
5930 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
5931 Case 13: VMOV <Sd>, <Rm> */
5287ad62
JB
5932 inst.operands[i].reg = val;
5933 inst.operands[i].isreg = 1;
037e8744 5934 inst.operands[i].present = 1;
5287ad62
JB
5935
5936 if (rtype == REG_TYPE_NQ)
5937 {
dcbf9037 5938 first_error (_("can't use Neon quad register here"));
5287ad62
JB
5939 return FAIL;
5940 }
037e8744
JB
5941 else if (rtype != REG_TYPE_VFS)
5942 {
5943 i++;
5944 if (skip_past_comma (&ptr) == FAIL)
5945 goto wanted_comma;
5946 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5947 goto wanted_arm;
5948 inst.operands[i].reg = val;
5949 inst.operands[i].isreg = 1;
5950 inst.operands[i].present = 1;
5951 }
5287ad62 5952 }
037e8744
JB
5953 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
5954 &optype)) != FAIL)
5287ad62
JB
5955 {
5956 /* Case 0: VMOV<c><q> <Qd>, <Qm>
037e8744
JB
5957 Case 1: VMOV<c><q> <Dd>, <Dm>
5958 Case 8: VMOV.F32 <Sd>, <Sm>
5959 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
5287ad62
JB
5960
5961 inst.operands[i].reg = val;
5962 inst.operands[i].isreg = 1;
5963 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5964 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5965 inst.operands[i].isvec = 1;
dcbf9037 5966 inst.operands[i].vectype = optype;
5287ad62 5967 inst.operands[i].present = 1;
5f4273c7 5968
037e8744
JB
5969 if (skip_past_comma (&ptr) == SUCCESS)
5970 {
5971 /* Case 15. */
5972 i++;
5973
5974 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5975 goto wanted_arm;
5976
5977 inst.operands[i].reg = val;
5978 inst.operands[i].isreg = 1;
5979 inst.operands[i++].present = 1;
5f4273c7 5980
037e8744
JB
5981 if (skip_past_comma (&ptr) == FAIL)
5982 goto wanted_comma;
5f4273c7 5983
037e8744
JB
5984 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5985 goto wanted_arm;
5f4273c7 5986
037e8744
JB
5987 inst.operands[i].reg = val;
5988 inst.operands[i].isreg = 1;
1b11b49f 5989 inst.operands[i].present = 1;
037e8744 5990 }
5287ad62 5991 }
4641781c
PB
5992 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
5993 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
5994 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
5995 Case 10: VMOV.F32 <Sd>, #<imm>
5996 Case 11: VMOV.F64 <Dd>, #<imm> */
5997 inst.operands[i].immisfloat = 1;
5998 else if (parse_big_immediate (&ptr, i) == SUCCESS)
5999 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
6000 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
6001 ;
5287ad62
JB
6002 else
6003 {
dcbf9037 6004 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
5287ad62
JB
6005 return FAIL;
6006 }
6007 }
dcbf9037 6008 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6009 {
6010 /* Cases 6, 7. */
6011 inst.operands[i].reg = val;
6012 inst.operands[i].isreg = 1;
6013 inst.operands[i++].present = 1;
5f4273c7 6014
5287ad62
JB
6015 if (skip_past_comma (&ptr) == FAIL)
6016 goto wanted_comma;
5f4273c7 6017
dcbf9037 6018 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
6019 {
6020 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6021 inst.operands[i].reg = val;
6022 inst.operands[i].isscalar = 1;
6023 inst.operands[i].present = 1;
dcbf9037 6024 inst.operands[i].vectype = optype;
5287ad62 6025 }
dcbf9037 6026 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6027 {
6028 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6029 inst.operands[i].reg = val;
6030 inst.operands[i].isreg = 1;
6031 inst.operands[i++].present = 1;
5f4273c7 6032
5287ad62
JB
6033 if (skip_past_comma (&ptr) == FAIL)
6034 goto wanted_comma;
5f4273c7 6035
037e8744 6036 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
dcbf9037 6037 == FAIL)
5287ad62 6038 {
037e8744 6039 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
5287ad62
JB
6040 return FAIL;
6041 }
6042
6043 inst.operands[i].reg = val;
6044 inst.operands[i].isreg = 1;
037e8744
JB
6045 inst.operands[i].isvec = 1;
6046 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
dcbf9037 6047 inst.operands[i].vectype = optype;
5287ad62 6048 inst.operands[i].present = 1;
5f4273c7 6049
037e8744
JB
6050 if (rtype == REG_TYPE_VFS)
6051 {
6052 /* Case 14. */
6053 i++;
6054 if (skip_past_comma (&ptr) == FAIL)
6055 goto wanted_comma;
6056 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6057 &optype)) == FAIL)
6058 {
6059 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6060 return FAIL;
6061 }
6062 inst.operands[i].reg = val;
6063 inst.operands[i].isreg = 1;
6064 inst.operands[i].isvec = 1;
6065 inst.operands[i].issingle = 1;
6066 inst.operands[i].vectype = optype;
6067 inst.operands[i].present = 1;
6068 }
6069 }
6070 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
6071 != FAIL)
6072 {
6073 /* Case 13. */
6074 inst.operands[i].reg = val;
6075 inst.operands[i].isreg = 1;
6076 inst.operands[i].isvec = 1;
6077 inst.operands[i].issingle = 1;
6078 inst.operands[i].vectype = optype;
1b11b49f 6079 inst.operands[i].present = 1;
5287ad62
JB
6080 }
6081 }
6082 else
6083 {
dcbf9037 6084 first_error (_("parse error"));
5287ad62
JB
6085 return FAIL;
6086 }
6087
6088 /* Successfully parsed the operands. Update args. */
6089 *which_operand = i;
6090 *str = ptr;
6091 return SUCCESS;
6092
5f4273c7 6093 wanted_comma:
dcbf9037 6094 first_error (_("expected comma"));
5287ad62 6095 return FAIL;
5f4273c7
NC
6096
6097 wanted_arm:
dcbf9037 6098 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 6099 return FAIL;
5287ad62
JB
6100}
6101
5be8be5d
DG
6102/* Use this macro when the operand constraints are different
6103 for ARM and THUMB (e.g. ldrd). */
6104#define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6105 ((arm_operand) | ((thumb_operand) << 16))
6106
c19d1205
ZW
6107/* Matcher codes for parse_operands. */
6108enum operand_parse_code
6109{
6110 OP_stop, /* end of line */
6111
6112 OP_RR, /* ARM register */
6113 OP_RRnpc, /* ARM register, not r15 */
5be8be5d 6114 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
c19d1205 6115 OP_RRnpcb, /* ARM register, not r15, in square brackets */
fa94de6b 6116 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
55881a11 6117 optional trailing ! */
c19d1205
ZW
6118 OP_RRw, /* ARM register, not r15, optional trailing ! */
6119 OP_RCP, /* Coprocessor number */
6120 OP_RCN, /* Coprocessor register */
6121 OP_RF, /* FPA register */
6122 OP_RVS, /* VFP single precision register */
5287ad62
JB
6123 OP_RVD, /* VFP double precision register (0..15) */
6124 OP_RND, /* Neon double precision register (0..31) */
6125 OP_RNQ, /* Neon quad precision register */
037e8744 6126 OP_RVSD, /* VFP single or double precision register */
5287ad62 6127 OP_RNDQ, /* Neon double or quad precision register */
037e8744 6128 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 6129 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
6130 OP_RVC, /* VFP control register */
6131 OP_RMF, /* Maverick F register */
6132 OP_RMD, /* Maverick D register */
6133 OP_RMFX, /* Maverick FX register */
6134 OP_RMDX, /* Maverick DX register */
6135 OP_RMAX, /* Maverick AX register */
6136 OP_RMDS, /* Maverick DSPSC register */
6137 OP_RIWR, /* iWMMXt wR register */
6138 OP_RIWC, /* iWMMXt wC register */
6139 OP_RIWG, /* iWMMXt wCG register */
6140 OP_RXA, /* XScale accumulator register */
6141
6142 OP_REGLST, /* ARM register list */
6143 OP_VRSLST, /* VFP single-precision register list */
6144 OP_VRDLST, /* VFP double-precision register list */
037e8744 6145 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
6146 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
6147 OP_NSTRLST, /* Neon element/structure list */
6148
5287ad62 6149 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 6150 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
5287ad62 6151 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 6152 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
6153 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
6154 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
6155 OP_VMOV, /* Neon VMOV operands. */
4316f0d2 6156 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
5287ad62 6157 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
2d447fca 6158 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
5287ad62
JB
6159
6160 OP_I0, /* immediate zero */
c19d1205
ZW
6161 OP_I7, /* immediate value 0 .. 7 */
6162 OP_I15, /* 0 .. 15 */
6163 OP_I16, /* 1 .. 16 */
5287ad62 6164 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
6165 OP_I31, /* 0 .. 31 */
6166 OP_I31w, /* 0 .. 31, optional trailing ! */
6167 OP_I32, /* 1 .. 32 */
5287ad62
JB
6168 OP_I32z, /* 0 .. 32 */
6169 OP_I63, /* 0 .. 63 */
c19d1205 6170 OP_I63s, /* -64 .. 63 */
5287ad62
JB
6171 OP_I64, /* 1 .. 64 */
6172 OP_I64z, /* 0 .. 64 */
c19d1205 6173 OP_I255, /* 0 .. 255 */
c19d1205
ZW
6174
6175 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
6176 OP_I7b, /* 0 .. 7 */
6177 OP_I15b, /* 0 .. 15 */
6178 OP_I31b, /* 0 .. 31 */
6179
6180 OP_SH, /* shifter operand */
4962c51a 6181 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 6182 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
6183 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
6184 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
6185 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
6186 OP_EXP, /* arbitrary expression */
6187 OP_EXPi, /* same, with optional immediate prefix */
6188 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 6189 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c19d1205
ZW
6190
6191 OP_CPSF, /* CPS flags */
6192 OP_ENDI, /* Endianness specifier */
d2cd1205
JB
6193 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
6194 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
c19d1205 6195 OP_COND, /* conditional code */
92e90b6e 6196 OP_TB, /* Table branch. */
c19d1205 6197
037e8744
JB
6198 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
6199
c19d1205
ZW
6200 OP_RRnpc_I0, /* ARM register or literal 0 */
6201 OP_RR_EXr, /* ARM register or expression with opt. reloc suff. */
6202 OP_RR_EXi, /* ARM register or expression with imm prefix */
6203 OP_RF_IF, /* FPA register or immediate */
6204 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 6205 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
6206
6207 /* Optional operands. */
6208 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
6209 OP_oI31b, /* 0 .. 31 */
5287ad62 6210 OP_oI32b, /* 1 .. 32 */
5f1af56b 6211 OP_oI32z, /* 0 .. 32 */
c19d1205
ZW
6212 OP_oIffffb, /* 0 .. 65535 */
6213 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
6214
6215 OP_oRR, /* ARM register */
6216 OP_oRRnpc, /* ARM register, not the PC */
5be8be5d 6217 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
b6702015 6218 OP_oRRw, /* ARM register, not r15, optional trailing ! */
5287ad62
JB
6219 OP_oRND, /* Optional Neon double precision register */
6220 OP_oRNQ, /* Optional Neon quad precision register */
6221 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 6222 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
6223 OP_oSHll, /* LSL immediate */
6224 OP_oSHar, /* ASR immediate */
6225 OP_oSHllar, /* LSL or ASR immediate */
6226 OP_oROR, /* ROR 0/8/16/24 */
52e7f43d 6227 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
c19d1205 6228
5be8be5d
DG
6229 /* Some pre-defined mixed (ARM/THUMB) operands. */
6230 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
6231 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
6232 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
6233
c19d1205
ZW
6234 OP_FIRST_OPTIONAL = OP_oI7b
6235};
a737bd4d 6236
c19d1205
ZW
6237/* Generic instruction operand parser. This does no encoding and no
6238 semantic validation; it merely squirrels values away in the inst
6239 structure. Returns SUCCESS or FAIL depending on whether the
6240 specified grammar matched. */
6241static int
5be8be5d 6242parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
c19d1205 6243{
5be8be5d 6244 unsigned const int *upat = pattern;
c19d1205
ZW
6245 char *backtrack_pos = 0;
6246 const char *backtrack_error = 0;
99aad254 6247 int i, val = 0, backtrack_index = 0;
5287ad62 6248 enum arm_reg_type rtype;
4962c51a 6249 parse_operand_result result;
5be8be5d 6250 unsigned int op_parse_code;
c19d1205 6251
e07e6e58
NC
6252#define po_char_or_fail(chr) \
6253 do \
6254 { \
6255 if (skip_past_char (&str, chr) == FAIL) \
6256 goto bad_args; \
6257 } \
6258 while (0)
c19d1205 6259
e07e6e58
NC
6260#define po_reg_or_fail(regtype) \
6261 do \
dcbf9037 6262 { \
e07e6e58
NC
6263 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6264 & inst.operands[i].vectype); \
6265 if (val == FAIL) \
6266 { \
6267 first_error (_(reg_expected_msgs[regtype])); \
6268 goto failure; \
6269 } \
6270 inst.operands[i].reg = val; \
6271 inst.operands[i].isreg = 1; \
6272 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6273 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6274 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
6275 || rtype == REG_TYPE_VFD \
6276 || rtype == REG_TYPE_NQ); \
dcbf9037 6277 } \
e07e6e58
NC
6278 while (0)
6279
6280#define po_reg_or_goto(regtype, label) \
6281 do \
6282 { \
6283 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6284 & inst.operands[i].vectype); \
6285 if (val == FAIL) \
6286 goto label; \
dcbf9037 6287 \
e07e6e58
NC
6288 inst.operands[i].reg = val; \
6289 inst.operands[i].isreg = 1; \
6290 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6291 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6292 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
6293 || rtype == REG_TYPE_VFD \
6294 || rtype == REG_TYPE_NQ); \
6295 } \
6296 while (0)
6297
6298#define po_imm_or_fail(min, max, popt) \
6299 do \
6300 { \
6301 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
6302 goto failure; \
6303 inst.operands[i].imm = val; \
6304 } \
6305 while (0)
6306
6307#define po_scalar_or_goto(elsz, label) \
6308 do \
6309 { \
6310 val = parse_scalar (& str, elsz, & inst.operands[i].vectype); \
6311 if (val == FAIL) \
6312 goto label; \
6313 inst.operands[i].reg = val; \
6314 inst.operands[i].isscalar = 1; \
6315 } \
6316 while (0)
6317
6318#define po_misc_or_fail(expr) \
6319 do \
6320 { \
6321 if (expr) \
6322 goto failure; \
6323 } \
6324 while (0)
6325
6326#define po_misc_or_fail_no_backtrack(expr) \
6327 do \
6328 { \
6329 result = expr; \
6330 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
6331 backtrack_pos = 0; \
6332 if (result != PARSE_OPERAND_SUCCESS) \
6333 goto failure; \
6334 } \
6335 while (0)
4962c51a 6336
52e7f43d
RE
6337#define po_barrier_or_imm(str) \
6338 do \
6339 { \
6340 val = parse_barrier (&str); \
6341 if (val == FAIL) \
6342 { \
6343 if (ISALPHA (*str)) \
6344 goto failure; \
6345 else \
6346 goto immediate; \
6347 } \
6348 else \
6349 { \
6350 if ((inst.instruction & 0xf0) == 0x60 \
6351 && val != 0xf) \
6352 { \
6353 /* ISB can only take SY as an option. */ \
6354 inst.error = _("invalid barrier type"); \
6355 goto failure; \
6356 } \
6357 } \
6358 } \
6359 while (0)
6360
c19d1205
ZW
6361 skip_whitespace (str);
6362
6363 for (i = 0; upat[i] != OP_stop; i++)
6364 {
5be8be5d
DG
6365 op_parse_code = upat[i];
6366 if (op_parse_code >= 1<<16)
6367 op_parse_code = thumb ? (op_parse_code >> 16)
6368 : (op_parse_code & ((1<<16)-1));
6369
6370 if (op_parse_code >= OP_FIRST_OPTIONAL)
c19d1205
ZW
6371 {
6372 /* Remember where we are in case we need to backtrack. */
9c2799c2 6373 gas_assert (!backtrack_pos);
c19d1205
ZW
6374 backtrack_pos = str;
6375 backtrack_error = inst.error;
6376 backtrack_index = i;
6377 }
6378
b6702015 6379 if (i > 0 && (i > 1 || inst.operands[0].present))
c19d1205
ZW
6380 po_char_or_fail (',');
6381
5be8be5d 6382 switch (op_parse_code)
c19d1205
ZW
6383 {
6384 /* Registers */
6385 case OP_oRRnpc:
5be8be5d 6386 case OP_oRRnpcsp:
c19d1205 6387 case OP_RRnpc:
5be8be5d 6388 case OP_RRnpcsp:
c19d1205
ZW
6389 case OP_oRR:
6390 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
6391 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
6392 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
6393 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
6394 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
6395 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
5287ad62
JB
6396 case OP_oRND:
6397 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
cd2cf30b
PB
6398 case OP_RVC:
6399 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
6400 break;
6401 /* Also accept generic coprocessor regs for unknown registers. */
6402 coproc_reg:
6403 po_reg_or_fail (REG_TYPE_CN);
6404 break;
c19d1205
ZW
6405 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
6406 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
6407 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
6408 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
6409 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
6410 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
6411 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
6412 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
6413 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
6414 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
5287ad62
JB
6415 case OP_oRNQ:
6416 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
6417 case OP_oRNDQ:
6418 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
037e8744
JB
6419 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
6420 case OP_oRNSDQ:
6421 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
5287ad62
JB
6422
6423 /* Neon scalar. Using an element size of 8 means that some invalid
6424 scalars are accepted here, so deal with those in later code. */
6425 case OP_RNSC: po_scalar_or_goto (8, failure); break;
6426
5287ad62
JB
6427 case OP_RNDQ_I0:
6428 {
6429 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
6430 break;
6431 try_imm0:
6432 po_imm_or_fail (0, 0, TRUE);
6433 }
6434 break;
6435
037e8744
JB
6436 case OP_RVSD_I0:
6437 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
6438 break;
6439
5287ad62
JB
6440 case OP_RR_RNSC:
6441 {
6442 po_scalar_or_goto (8, try_rr);
6443 break;
6444 try_rr:
6445 po_reg_or_fail (REG_TYPE_RN);
6446 }
6447 break;
6448
037e8744
JB
6449 case OP_RNSDQ_RNSC:
6450 {
6451 po_scalar_or_goto (8, try_nsdq);
6452 break;
6453 try_nsdq:
6454 po_reg_or_fail (REG_TYPE_NSDQ);
6455 }
6456 break;
6457
5287ad62
JB
6458 case OP_RNDQ_RNSC:
6459 {
6460 po_scalar_or_goto (8, try_ndq);
6461 break;
6462 try_ndq:
6463 po_reg_or_fail (REG_TYPE_NDQ);
6464 }
6465 break;
6466
6467 case OP_RND_RNSC:
6468 {
6469 po_scalar_or_goto (8, try_vfd);
6470 break;
6471 try_vfd:
6472 po_reg_or_fail (REG_TYPE_VFD);
6473 }
6474 break;
6475
6476 case OP_VMOV:
6477 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
6478 not careful then bad things might happen. */
6479 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
6480 break;
6481
4316f0d2 6482 case OP_RNDQ_Ibig:
5287ad62 6483 {
4316f0d2 6484 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
5287ad62 6485 break;
4316f0d2 6486 try_immbig:
5287ad62
JB
6487 /* There's a possibility of getting a 64-bit immediate here, so
6488 we need special handling. */
6489 if (parse_big_immediate (&str, i) == FAIL)
6490 {
6491 inst.error = _("immediate value is out of range");
6492 goto failure;
6493 }
6494 }
6495 break;
6496
6497 case OP_RNDQ_I63b:
6498 {
6499 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
6500 break;
6501 try_shimm:
6502 po_imm_or_fail (0, 63, TRUE);
6503 }
6504 break;
c19d1205
ZW
6505
6506 case OP_RRnpcb:
6507 po_char_or_fail ('[');
6508 po_reg_or_fail (REG_TYPE_RN);
6509 po_char_or_fail (']');
6510 break;
a737bd4d 6511
55881a11 6512 case OP_RRnpctw:
c19d1205 6513 case OP_RRw:
b6702015 6514 case OP_oRRw:
c19d1205
ZW
6515 po_reg_or_fail (REG_TYPE_RN);
6516 if (skip_past_char (&str, '!') == SUCCESS)
6517 inst.operands[i].writeback = 1;
6518 break;
6519
6520 /* Immediates */
6521 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
6522 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
6523 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
5287ad62 6524 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
6525 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
6526 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
5287ad62 6527 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 6528 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
5287ad62
JB
6529 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
6530 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
6531 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 6532 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
6533
6534 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
6535 case OP_oI7b:
6536 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
6537 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
6538 case OP_oI31b:
6539 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
5287ad62 6540 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
5f1af56b 6541 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
c19d1205
ZW
6542 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
6543
6544 /* Immediate variants */
6545 case OP_oI255c:
6546 po_char_or_fail ('{');
6547 po_imm_or_fail (0, 255, TRUE);
6548 po_char_or_fail ('}');
6549 break;
6550
6551 case OP_I31w:
6552 /* The expression parser chokes on a trailing !, so we have
6553 to find it first and zap it. */
6554 {
6555 char *s = str;
6556 while (*s && *s != ',')
6557 s++;
6558 if (s[-1] == '!')
6559 {
6560 s[-1] = '\0';
6561 inst.operands[i].writeback = 1;
6562 }
6563 po_imm_or_fail (0, 31, TRUE);
6564 if (str == s - 1)
6565 str = s;
6566 }
6567 break;
6568
6569 /* Expressions */
6570 case OP_EXPi: EXPi:
6571 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6572 GE_OPT_PREFIX));
6573 break;
6574
6575 case OP_EXP:
6576 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6577 GE_NO_PREFIX));
6578 break;
6579
6580 case OP_EXPr: EXPr:
6581 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6582 GE_NO_PREFIX));
6583 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 6584 {
c19d1205
ZW
6585 val = parse_reloc (&str);
6586 if (val == -1)
6587 {
6588 inst.error = _("unrecognized relocation suffix");
6589 goto failure;
6590 }
6591 else if (val != BFD_RELOC_UNUSED)
6592 {
6593 inst.operands[i].imm = val;
6594 inst.operands[i].hasreloc = 1;
6595 }
a737bd4d 6596 }
c19d1205 6597 break;
a737bd4d 6598
b6895b4f
PB
6599 /* Operand for MOVW or MOVT. */
6600 case OP_HALF:
6601 po_misc_or_fail (parse_half (&str));
6602 break;
6603
e07e6e58 6604 /* Register or expression. */
c19d1205
ZW
6605 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
6606 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 6607
e07e6e58 6608 /* Register or immediate. */
c19d1205
ZW
6609 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
6610 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 6611
c19d1205
ZW
6612 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
6613 IF:
6614 if (!is_immediate_prefix (*str))
6615 goto bad_args;
6616 str++;
6617 val = parse_fpa_immediate (&str);
6618 if (val == FAIL)
6619 goto failure;
6620 /* FPA immediates are encoded as registers 8-15.
6621 parse_fpa_immediate has already applied the offset. */
6622 inst.operands[i].reg = val;
6623 inst.operands[i].isreg = 1;
6624 break;
09d92015 6625
2d447fca
JM
6626 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
6627 I32z: po_imm_or_fail (0, 32, FALSE); break;
6628
e07e6e58 6629 /* Two kinds of register. */
c19d1205
ZW
6630 case OP_RIWR_RIWC:
6631 {
6632 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
6633 if (!rege
6634 || (rege->type != REG_TYPE_MMXWR
6635 && rege->type != REG_TYPE_MMXWC
6636 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
6637 {
6638 inst.error = _("iWMMXt data or control register expected");
6639 goto failure;
6640 }
6641 inst.operands[i].reg = rege->number;
6642 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
6643 }
6644 break;
09d92015 6645
41adaa5c
JM
6646 case OP_RIWC_RIWG:
6647 {
6648 struct reg_entry *rege = arm_reg_parse_multi (&str);
6649 if (!rege
6650 || (rege->type != REG_TYPE_MMXWC
6651 && rege->type != REG_TYPE_MMXWCG))
6652 {
6653 inst.error = _("iWMMXt control register expected");
6654 goto failure;
6655 }
6656 inst.operands[i].reg = rege->number;
6657 inst.operands[i].isreg = 1;
6658 }
6659 break;
6660
c19d1205
ZW
6661 /* Misc */
6662 case OP_CPSF: val = parse_cps_flags (&str); break;
6663 case OP_ENDI: val = parse_endian_specifier (&str); break;
6664 case OP_oROR: val = parse_ror (&str); break;
c19d1205 6665 case OP_COND: val = parse_cond (&str); break;
52e7f43d
RE
6666 case OP_oBARRIER_I15:
6667 po_barrier_or_imm (str); break;
6668 immediate:
6669 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
6670 goto failure;
6671 break;
c19d1205 6672
fa94de6b 6673 case OP_wPSR:
d2cd1205 6674 case OP_rPSR:
90ec0d68
MGD
6675 po_reg_or_goto (REG_TYPE_RNB, try_psr);
6676 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
6677 {
6678 inst.error = _("Banked registers are not available with this "
6679 "architecture.");
6680 goto failure;
6681 }
6682 break;
d2cd1205
JB
6683 try_psr:
6684 val = parse_psr (&str, op_parse_code == OP_wPSR);
6685 break;
037e8744
JB
6686
6687 case OP_APSR_RR:
6688 po_reg_or_goto (REG_TYPE_RN, try_apsr);
6689 break;
6690 try_apsr:
6691 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
6692 instruction). */
6693 if (strncasecmp (str, "APSR_", 5) == 0)
6694 {
6695 unsigned found = 0;
6696 str += 5;
6697 while (found < 15)
6698 switch (*str++)
6699 {
6700 case 'c': found = (found & 1) ? 16 : found | 1; break;
6701 case 'n': found = (found & 2) ? 16 : found | 2; break;
6702 case 'z': found = (found & 4) ? 16 : found | 4; break;
6703 case 'v': found = (found & 8) ? 16 : found | 8; break;
6704 default: found = 16;
6705 }
6706 if (found != 15)
6707 goto failure;
6708 inst.operands[i].isvec = 1;
f7c21dc7
NC
6709 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
6710 inst.operands[i].reg = REG_PC;
037e8744
JB
6711 }
6712 else
6713 goto failure;
6714 break;
6715
92e90b6e
PB
6716 case OP_TB:
6717 po_misc_or_fail (parse_tb (&str));
6718 break;
6719
e07e6e58 6720 /* Register lists. */
c19d1205
ZW
6721 case OP_REGLST:
6722 val = parse_reg_list (&str);
6723 if (*str == '^')
6724 {
6725 inst.operands[1].writeback = 1;
6726 str++;
6727 }
6728 break;
09d92015 6729
c19d1205 6730 case OP_VRSLST:
5287ad62 6731 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 6732 break;
09d92015 6733
c19d1205 6734 case OP_VRDLST:
5287ad62 6735 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 6736 break;
a737bd4d 6737
037e8744
JB
6738 case OP_VRSDLST:
6739 /* Allow Q registers too. */
6740 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6741 REGLIST_NEON_D);
6742 if (val == FAIL)
6743 {
6744 inst.error = NULL;
6745 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6746 REGLIST_VFP_S);
6747 inst.operands[i].issingle = 1;
6748 }
6749 break;
6750
5287ad62
JB
6751 case OP_NRDLST:
6752 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6753 REGLIST_NEON_D);
6754 break;
6755
6756 case OP_NSTRLST:
dcbf9037
JB
6757 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
6758 &inst.operands[i].vectype);
5287ad62
JB
6759 break;
6760
c19d1205
ZW
6761 /* Addressing modes */
6762 case OP_ADDR:
6763 po_misc_or_fail (parse_address (&str, i));
6764 break;
09d92015 6765
4962c51a
MS
6766 case OP_ADDRGLDR:
6767 po_misc_or_fail_no_backtrack (
6768 parse_address_group_reloc (&str, i, GROUP_LDR));
6769 break;
6770
6771 case OP_ADDRGLDRS:
6772 po_misc_or_fail_no_backtrack (
6773 parse_address_group_reloc (&str, i, GROUP_LDRS));
6774 break;
6775
6776 case OP_ADDRGLDC:
6777 po_misc_or_fail_no_backtrack (
6778 parse_address_group_reloc (&str, i, GROUP_LDC));
6779 break;
6780
c19d1205
ZW
6781 case OP_SH:
6782 po_misc_or_fail (parse_shifter_operand (&str, i));
6783 break;
09d92015 6784
4962c51a
MS
6785 case OP_SHG:
6786 po_misc_or_fail_no_backtrack (
6787 parse_shifter_operand_group_reloc (&str, i));
6788 break;
6789
c19d1205
ZW
6790 case OP_oSHll:
6791 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
6792 break;
09d92015 6793
c19d1205
ZW
6794 case OP_oSHar:
6795 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
6796 break;
09d92015 6797
c19d1205
ZW
6798 case OP_oSHllar:
6799 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
6800 break;
09d92015 6801
c19d1205 6802 default:
5be8be5d 6803 as_fatal (_("unhandled operand code %d"), op_parse_code);
c19d1205 6804 }
09d92015 6805
c19d1205
ZW
6806 /* Various value-based sanity checks and shared operations. We
6807 do not signal immediate failures for the register constraints;
6808 this allows a syntax error to take precedence. */
5be8be5d 6809 switch (op_parse_code)
c19d1205
ZW
6810 {
6811 case OP_oRRnpc:
6812 case OP_RRnpc:
6813 case OP_RRnpcb:
6814 case OP_RRw:
b6702015 6815 case OP_oRRw:
c19d1205
ZW
6816 case OP_RRnpc_I0:
6817 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
6818 inst.error = BAD_PC;
6819 break;
09d92015 6820
5be8be5d
DG
6821 case OP_oRRnpcsp:
6822 case OP_RRnpcsp:
6823 if (inst.operands[i].isreg)
6824 {
6825 if (inst.operands[i].reg == REG_PC)
6826 inst.error = BAD_PC;
6827 else if (inst.operands[i].reg == REG_SP)
6828 inst.error = BAD_SP;
6829 }
6830 break;
6831
55881a11 6832 case OP_RRnpctw:
fa94de6b
RM
6833 if (inst.operands[i].isreg
6834 && inst.operands[i].reg == REG_PC
55881a11
MGD
6835 && (inst.operands[i].writeback || thumb))
6836 inst.error = BAD_PC;
6837 break;
6838
c19d1205
ZW
6839 case OP_CPSF:
6840 case OP_ENDI:
6841 case OP_oROR:
d2cd1205
JB
6842 case OP_wPSR:
6843 case OP_rPSR:
c19d1205 6844 case OP_COND:
52e7f43d 6845 case OP_oBARRIER_I15:
c19d1205
ZW
6846 case OP_REGLST:
6847 case OP_VRSLST:
6848 case OP_VRDLST:
037e8744 6849 case OP_VRSDLST:
5287ad62
JB
6850 case OP_NRDLST:
6851 case OP_NSTRLST:
c19d1205
ZW
6852 if (val == FAIL)
6853 goto failure;
6854 inst.operands[i].imm = val;
6855 break;
a737bd4d 6856
c19d1205
ZW
6857 default:
6858 break;
6859 }
09d92015 6860
c19d1205
ZW
6861 /* If we get here, this operand was successfully parsed. */
6862 inst.operands[i].present = 1;
6863 continue;
09d92015 6864
c19d1205 6865 bad_args:
09d92015 6866 inst.error = BAD_ARGS;
c19d1205
ZW
6867
6868 failure:
6869 if (!backtrack_pos)
d252fdde
PB
6870 {
6871 /* The parse routine should already have set inst.error, but set a
5f4273c7 6872 default here just in case. */
d252fdde
PB
6873 if (!inst.error)
6874 inst.error = _("syntax error");
6875 return FAIL;
6876 }
c19d1205
ZW
6877
6878 /* Do not backtrack over a trailing optional argument that
6879 absorbed some text. We will only fail again, with the
6880 'garbage following instruction' error message, which is
6881 probably less helpful than the current one. */
6882 if (backtrack_index == i && backtrack_pos != str
6883 && upat[i+1] == OP_stop)
d252fdde
PB
6884 {
6885 if (!inst.error)
6886 inst.error = _("syntax error");
6887 return FAIL;
6888 }
c19d1205
ZW
6889
6890 /* Try again, skipping the optional argument at backtrack_pos. */
6891 str = backtrack_pos;
6892 inst.error = backtrack_error;
6893 inst.operands[backtrack_index].present = 0;
6894 i = backtrack_index;
6895 backtrack_pos = 0;
09d92015 6896 }
09d92015 6897
c19d1205
ZW
6898 /* Check that we have parsed all the arguments. */
6899 if (*str != '\0' && !inst.error)
6900 inst.error = _("garbage following instruction");
09d92015 6901
c19d1205 6902 return inst.error ? FAIL : SUCCESS;
09d92015
MM
6903}
6904
c19d1205
ZW
6905#undef po_char_or_fail
6906#undef po_reg_or_fail
6907#undef po_reg_or_goto
6908#undef po_imm_or_fail
5287ad62 6909#undef po_scalar_or_fail
52e7f43d 6910#undef po_barrier_or_imm
e07e6e58 6911
c19d1205 6912/* Shorthand macro for instruction encoding functions issuing errors. */
e07e6e58
NC
6913#define constraint(expr, err) \
6914 do \
c19d1205 6915 { \
e07e6e58
NC
6916 if (expr) \
6917 { \
6918 inst.error = err; \
6919 return; \
6920 } \
c19d1205 6921 } \
e07e6e58 6922 while (0)
c19d1205 6923
fdfde340
JM
6924/* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
6925 instructions are unpredictable if these registers are used. This
6926 is the BadReg predicate in ARM's Thumb-2 documentation. */
6927#define reject_bad_reg(reg) \
6928 do \
6929 if (reg == REG_SP || reg == REG_PC) \
6930 { \
6931 inst.error = (reg == REG_SP) ? BAD_SP : BAD_PC; \
6932 return; \
6933 } \
6934 while (0)
6935
94206790
MM
6936/* If REG is R13 (the stack pointer), warn that its use is
6937 deprecated. */
6938#define warn_deprecated_sp(reg) \
6939 do \
6940 if (warn_on_deprecated && reg == REG_SP) \
6941 as_warn (_("use of r13 is deprecated")); \
6942 while (0)
6943
c19d1205
ZW
6944/* Functions for operand encoding. ARM, then Thumb. */
6945
6946#define rotate_left(v, n) (v << n | v >> (32 - n))
6947
6948/* If VAL can be encoded in the immediate field of an ARM instruction,
6949 return the encoded form. Otherwise, return FAIL. */
6950
6951static unsigned int
6952encode_arm_immediate (unsigned int val)
09d92015 6953{
c19d1205
ZW
6954 unsigned int a, i;
6955
6956 for (i = 0; i < 32; i += 2)
6957 if ((a = rotate_left (val, i)) <= 0xff)
6958 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
6959
6960 return FAIL;
09d92015
MM
6961}
6962
c19d1205
ZW
6963/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
6964 return the encoded form. Otherwise, return FAIL. */
6965static unsigned int
6966encode_thumb32_immediate (unsigned int val)
09d92015 6967{
c19d1205 6968 unsigned int a, i;
09d92015 6969
9c3c69f2 6970 if (val <= 0xff)
c19d1205 6971 return val;
a737bd4d 6972
9c3c69f2 6973 for (i = 1; i <= 24; i++)
09d92015 6974 {
9c3c69f2
PB
6975 a = val >> i;
6976 if ((val & ~(0xff << i)) == 0)
6977 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 6978 }
a737bd4d 6979
c19d1205
ZW
6980 a = val & 0xff;
6981 if (val == ((a << 16) | a))
6982 return 0x100 | a;
6983 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
6984 return 0x300 | a;
09d92015 6985
c19d1205
ZW
6986 a = val & 0xff00;
6987 if (val == ((a << 16) | a))
6988 return 0x200 | (a >> 8);
a737bd4d 6989
c19d1205 6990 return FAIL;
09d92015 6991}
5287ad62 6992/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
6993
6994static void
5287ad62
JB
6995encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
6996{
6997 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
6998 && reg > 15)
6999 {
b1cc4aeb 7000 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
5287ad62
JB
7001 {
7002 if (thumb_mode)
7003 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
b1cc4aeb 7004 fpu_vfp_ext_d32);
5287ad62
JB
7005 else
7006 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
b1cc4aeb 7007 fpu_vfp_ext_d32);
5287ad62
JB
7008 }
7009 else
7010 {
dcbf9037 7011 first_error (_("D register out of range for selected VFP version"));
5287ad62
JB
7012 return;
7013 }
7014 }
7015
c19d1205 7016 switch (pos)
09d92015 7017 {
c19d1205
ZW
7018 case VFP_REG_Sd:
7019 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
7020 break;
7021
7022 case VFP_REG_Sn:
7023 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
7024 break;
7025
7026 case VFP_REG_Sm:
7027 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
7028 break;
7029
5287ad62
JB
7030 case VFP_REG_Dd:
7031 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
7032 break;
5f4273c7 7033
5287ad62
JB
7034 case VFP_REG_Dn:
7035 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
7036 break;
5f4273c7 7037
5287ad62
JB
7038 case VFP_REG_Dm:
7039 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
7040 break;
7041
c19d1205
ZW
7042 default:
7043 abort ();
09d92015 7044 }
09d92015
MM
7045}
7046
c19d1205 7047/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 7048 if any, is handled by md_apply_fix. */
09d92015 7049static void
c19d1205 7050encode_arm_shift (int i)
09d92015 7051{
c19d1205
ZW
7052 if (inst.operands[i].shift_kind == SHIFT_RRX)
7053 inst.instruction |= SHIFT_ROR << 5;
7054 else
09d92015 7055 {
c19d1205
ZW
7056 inst.instruction |= inst.operands[i].shift_kind << 5;
7057 if (inst.operands[i].immisreg)
7058 {
7059 inst.instruction |= SHIFT_BY_REG;
7060 inst.instruction |= inst.operands[i].imm << 8;
7061 }
7062 else
7063 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 7064 }
c19d1205 7065}
09d92015 7066
c19d1205
ZW
7067static void
7068encode_arm_shifter_operand (int i)
7069{
7070 if (inst.operands[i].isreg)
09d92015 7071 {
c19d1205
ZW
7072 inst.instruction |= inst.operands[i].reg;
7073 encode_arm_shift (i);
09d92015 7074 }
c19d1205 7075 else
a415b1cd
JB
7076 {
7077 inst.instruction |= INST_IMMEDIATE;
7078 if (inst.reloc.type != BFD_RELOC_ARM_IMMEDIATE)
7079 inst.instruction |= inst.operands[i].imm;
7080 }
09d92015
MM
7081}
7082
c19d1205 7083/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 7084static void
c19d1205 7085encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 7086{
2b2f5df9
NC
7087 /* PR 14260:
7088 Generate an error if the operand is not a register. */
7089 constraint (!inst.operands[i].isreg,
7090 _("Instruction does not support =N addresses"));
7091
c19d1205 7092 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7093
c19d1205 7094 if (inst.operands[i].preind)
09d92015 7095 {
c19d1205
ZW
7096 if (is_t)
7097 {
7098 inst.error = _("instruction does not accept preindexed addressing");
7099 return;
7100 }
7101 inst.instruction |= PRE_INDEX;
7102 if (inst.operands[i].writeback)
7103 inst.instruction |= WRITE_BACK;
09d92015 7104
c19d1205
ZW
7105 }
7106 else if (inst.operands[i].postind)
7107 {
9c2799c2 7108 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
7109 if (is_t)
7110 inst.instruction |= WRITE_BACK;
7111 }
7112 else /* unindexed - only for coprocessor */
09d92015 7113 {
c19d1205 7114 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
7115 return;
7116 }
7117
c19d1205
ZW
7118 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
7119 && (((inst.instruction & 0x000f0000) >> 16)
7120 == ((inst.instruction & 0x0000f000) >> 12)))
7121 as_warn ((inst.instruction & LOAD_BIT)
7122 ? _("destination register same as write-back base")
7123 : _("source register same as write-back base"));
09d92015
MM
7124}
7125
c19d1205
ZW
7126/* inst.operands[i] was set up by parse_address. Encode it into an
7127 ARM-format mode 2 load or store instruction. If is_t is true,
7128 reject forms that cannot be used with a T instruction (i.e. not
7129 post-indexed). */
a737bd4d 7130static void
c19d1205 7131encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 7132{
5be8be5d
DG
7133 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
7134
c19d1205 7135 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7136
c19d1205 7137 if (inst.operands[i].immisreg)
09d92015 7138 {
5be8be5d
DG
7139 constraint ((inst.operands[i].imm == REG_PC
7140 || (is_pc && inst.operands[i].writeback)),
7141 BAD_PC_ADDRESSING);
c19d1205
ZW
7142 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
7143 inst.instruction |= inst.operands[i].imm;
7144 if (!inst.operands[i].negative)
7145 inst.instruction |= INDEX_UP;
7146 if (inst.operands[i].shifted)
7147 {
7148 if (inst.operands[i].shift_kind == SHIFT_RRX)
7149 inst.instruction |= SHIFT_ROR << 5;
7150 else
7151 {
7152 inst.instruction |= inst.operands[i].shift_kind << 5;
7153 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7154 }
7155 }
09d92015 7156 }
c19d1205 7157 else /* immediate offset in inst.reloc */
09d92015 7158 {
5be8be5d
DG
7159 if (is_pc && !inst.reloc.pc_rel)
7160 {
7161 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
23a10334
JZ
7162
7163 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
7164 cannot use PC in addressing.
7165 PC cannot be used in writeback addressing, either. */
7166 constraint ((is_t || inst.operands[i].writeback),
5be8be5d 7167 BAD_PC_ADDRESSING);
23a10334 7168
dc5ec521 7169 /* Use of PC in str is deprecated for ARMv7. */
23a10334
JZ
7170 if (warn_on_deprecated
7171 && !is_load
7172 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
7173 as_warn (_("use of PC in this instruction is deprecated"));
5be8be5d
DG
7174 }
7175
c19d1205 7176 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7177 {
7178 /* Prefer + for zero encoded value. */
7179 if (!inst.operands[i].negative)
7180 inst.instruction |= INDEX_UP;
7181 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
7182 }
09d92015 7183 }
09d92015
MM
7184}
7185
c19d1205
ZW
7186/* inst.operands[i] was set up by parse_address. Encode it into an
7187 ARM-format mode 3 load or store instruction. Reject forms that
7188 cannot be used with such instructions. If is_t is true, reject
7189 forms that cannot be used with a T instruction (i.e. not
7190 post-indexed). */
7191static void
7192encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 7193{
c19d1205 7194 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 7195 {
c19d1205
ZW
7196 inst.error = _("instruction does not accept scaled register index");
7197 return;
09d92015 7198 }
a737bd4d 7199
c19d1205 7200 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7201
c19d1205
ZW
7202 if (inst.operands[i].immisreg)
7203 {
5be8be5d
DG
7204 constraint ((inst.operands[i].imm == REG_PC
7205 || inst.operands[i].reg == REG_PC),
7206 BAD_PC_ADDRESSING);
c19d1205
ZW
7207 inst.instruction |= inst.operands[i].imm;
7208 if (!inst.operands[i].negative)
7209 inst.instruction |= INDEX_UP;
7210 }
7211 else /* immediate offset in inst.reloc */
7212 {
5be8be5d
DG
7213 constraint ((inst.operands[i].reg == REG_PC && !inst.reloc.pc_rel
7214 && inst.operands[i].writeback),
7215 BAD_PC_WRITEBACK);
c19d1205
ZW
7216 inst.instruction |= HWOFFSET_IMM;
7217 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7218 {
7219 /* Prefer + for zero encoded value. */
7220 if (!inst.operands[i].negative)
7221 inst.instruction |= INDEX_UP;
7222
7223 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
7224 }
c19d1205 7225 }
a737bd4d
NC
7226}
7227
c19d1205
ZW
7228/* inst.operands[i] was set up by parse_address. Encode it into an
7229 ARM-format instruction. Reject all forms which cannot be encoded
7230 into a coprocessor load/store instruction. If wb_ok is false,
7231 reject use of writeback; if unind_ok is false, reject use of
7232 unindexed addressing. If reloc_override is not 0, use it instead
4962c51a
MS
7233 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
7234 (in which case it is preserved). */
09d92015 7235
c19d1205
ZW
7236static int
7237encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
09d92015 7238{
c19d1205 7239 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7240
9c2799c2 7241 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
09d92015 7242
c19d1205 7243 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
09d92015 7244 {
9c2799c2 7245 gas_assert (!inst.operands[i].writeback);
c19d1205
ZW
7246 if (!unind_ok)
7247 {
7248 inst.error = _("instruction does not support unindexed addressing");
7249 return FAIL;
7250 }
7251 inst.instruction |= inst.operands[i].imm;
7252 inst.instruction |= INDEX_UP;
7253 return SUCCESS;
09d92015 7254 }
a737bd4d 7255
c19d1205
ZW
7256 if (inst.operands[i].preind)
7257 inst.instruction |= PRE_INDEX;
a737bd4d 7258
c19d1205 7259 if (inst.operands[i].writeback)
09d92015 7260 {
c19d1205
ZW
7261 if (inst.operands[i].reg == REG_PC)
7262 {
7263 inst.error = _("pc may not be used with write-back");
7264 return FAIL;
7265 }
7266 if (!wb_ok)
7267 {
7268 inst.error = _("instruction does not support writeback");
7269 return FAIL;
7270 }
7271 inst.instruction |= WRITE_BACK;
09d92015 7272 }
a737bd4d 7273
c19d1205 7274 if (reloc_override)
21d799b5 7275 inst.reloc.type = (bfd_reloc_code_real_type) reloc_override;
4962c51a
MS
7276 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
7277 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
7278 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
7279 {
7280 if (thumb_mode)
7281 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
7282 else
7283 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
7284 }
7285
26d97720
NS
7286 /* Prefer + for zero encoded value. */
7287 if (!inst.operands[i].negative)
7288 inst.instruction |= INDEX_UP;
7289
c19d1205
ZW
7290 return SUCCESS;
7291}
a737bd4d 7292
c19d1205
ZW
7293/* inst.reloc.exp describes an "=expr" load pseudo-operation.
7294 Determine whether it can be performed with a move instruction; if
7295 it can, convert inst.instruction to that move instruction and
c921be7d
NC
7296 return TRUE; if it can't, convert inst.instruction to a literal-pool
7297 load and return FALSE. If this is not a valid thing to do in the
7298 current context, set inst.error and return TRUE.
a737bd4d 7299
c19d1205
ZW
7300 inst.operands[i] describes the destination register. */
7301
c921be7d 7302static bfd_boolean
c19d1205
ZW
7303move_or_literal_pool (int i, bfd_boolean thumb_p, bfd_boolean mode_3)
7304{
53365c0d
PB
7305 unsigned long tbit;
7306
7307 if (thumb_p)
7308 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
7309 else
7310 tbit = LOAD_BIT;
7311
7312 if ((inst.instruction & tbit) == 0)
09d92015 7313 {
c19d1205 7314 inst.error = _("invalid pseudo operation");
c921be7d 7315 return TRUE;
09d92015 7316 }
c19d1205 7317 if (inst.reloc.exp.X_op != O_constant && inst.reloc.exp.X_op != O_symbol)
09d92015
MM
7318 {
7319 inst.error = _("constant expression expected");
c921be7d 7320 return TRUE;
09d92015 7321 }
c19d1205 7322 if (inst.reloc.exp.X_op == O_constant)
09d92015 7323 {
c19d1205
ZW
7324 if (thumb_p)
7325 {
53365c0d 7326 if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
c19d1205
ZW
7327 {
7328 /* This can be done with a mov(1) instruction. */
7329 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
7330 inst.instruction |= inst.reloc.exp.X_add_number;
c921be7d 7331 return TRUE;
c19d1205
ZW
7332 }
7333 }
7334 else
7335 {
7336 int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
7337 if (value != FAIL)
7338 {
7339 /* This can be done with a mov instruction. */
7340 inst.instruction &= LITERAL_MASK;
7341 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
7342 inst.instruction |= value & 0xfff;
c921be7d 7343 return TRUE;
c19d1205 7344 }
09d92015 7345
c19d1205
ZW
7346 value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
7347 if (value != FAIL)
7348 {
7349 /* This can be done with a mvn instruction. */
7350 inst.instruction &= LITERAL_MASK;
7351 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
7352 inst.instruction |= value & 0xfff;
c921be7d 7353 return TRUE;
c19d1205
ZW
7354 }
7355 }
09d92015
MM
7356 }
7357
c19d1205
ZW
7358 if (add_to_lit_pool () == FAIL)
7359 {
7360 inst.error = _("literal pool insertion failed");
c921be7d 7361 return TRUE;
c19d1205
ZW
7362 }
7363 inst.operands[1].reg = REG_PC;
7364 inst.operands[1].isreg = 1;
7365 inst.operands[1].preind = 1;
7366 inst.reloc.pc_rel = 1;
7367 inst.reloc.type = (thumb_p
7368 ? BFD_RELOC_ARM_THUMB_OFFSET
7369 : (mode_3
7370 ? BFD_RELOC_ARM_HWLITERAL
7371 : BFD_RELOC_ARM_LITERAL));
c921be7d 7372 return FALSE;
09d92015
MM
7373}
7374
5f4273c7 7375/* Functions for instruction encoding, sorted by sub-architecture.
c19d1205
ZW
7376 First some generics; their names are taken from the conventional
7377 bit positions for register arguments in ARM format instructions. */
09d92015 7378
a737bd4d 7379static void
c19d1205 7380do_noargs (void)
09d92015 7381{
c19d1205 7382}
a737bd4d 7383
c19d1205
ZW
7384static void
7385do_rd (void)
7386{
7387 inst.instruction |= inst.operands[0].reg << 12;
7388}
a737bd4d 7389
c19d1205
ZW
7390static void
7391do_rd_rm (void)
7392{
7393 inst.instruction |= inst.operands[0].reg << 12;
7394 inst.instruction |= inst.operands[1].reg;
7395}
09d92015 7396
9eb6c0f1
MGD
7397static void
7398do_rm_rn (void)
7399{
7400 inst.instruction |= inst.operands[0].reg;
7401 inst.instruction |= inst.operands[1].reg << 16;
7402}
7403
c19d1205
ZW
7404static void
7405do_rd_rn (void)
7406{
7407 inst.instruction |= inst.operands[0].reg << 12;
7408 inst.instruction |= inst.operands[1].reg << 16;
7409}
a737bd4d 7410
c19d1205
ZW
7411static void
7412do_rn_rd (void)
7413{
7414 inst.instruction |= inst.operands[0].reg << 16;
7415 inst.instruction |= inst.operands[1].reg << 12;
7416}
09d92015 7417
59d09be6
MGD
7418static bfd_boolean
7419check_obsolete (const arm_feature_set *feature, const char *msg)
7420{
7421 if (ARM_CPU_IS_ANY (cpu_variant))
7422 {
7423 as_warn ("%s", msg);
7424 return TRUE;
7425 }
7426 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
7427 {
7428 as_bad ("%s", msg);
7429 return TRUE;
7430 }
7431
7432 return FALSE;
7433}
7434
c19d1205
ZW
7435static void
7436do_rd_rm_rn (void)
7437{
9a64e435 7438 unsigned Rn = inst.operands[2].reg;
708587a4 7439 /* Enforce restrictions on SWP instruction. */
9a64e435 7440 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
56adecf4
DG
7441 {
7442 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
7443 _("Rn must not overlap other operands"));
7444
59d09be6
MGD
7445 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
7446 */
7447 if (!check_obsolete (&arm_ext_v8,
7448 _("swp{b} use is obsoleted for ARMv8 and later"))
7449 && warn_on_deprecated
7450 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
7451 as_warn (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
56adecf4 7452 }
59d09be6 7453
c19d1205
ZW
7454 inst.instruction |= inst.operands[0].reg << 12;
7455 inst.instruction |= inst.operands[1].reg;
9a64e435 7456 inst.instruction |= Rn << 16;
c19d1205 7457}
09d92015 7458
c19d1205
ZW
7459static void
7460do_rd_rn_rm (void)
7461{
7462 inst.instruction |= inst.operands[0].reg << 12;
7463 inst.instruction |= inst.operands[1].reg << 16;
7464 inst.instruction |= inst.operands[2].reg;
7465}
a737bd4d 7466
c19d1205
ZW
7467static void
7468do_rm_rd_rn (void)
7469{
5be8be5d
DG
7470 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
7471 constraint (((inst.reloc.exp.X_op != O_constant
7472 && inst.reloc.exp.X_op != O_illegal)
7473 || inst.reloc.exp.X_add_number != 0),
7474 BAD_ADDR_MODE);
c19d1205
ZW
7475 inst.instruction |= inst.operands[0].reg;
7476 inst.instruction |= inst.operands[1].reg << 12;
7477 inst.instruction |= inst.operands[2].reg << 16;
7478}
09d92015 7479
c19d1205
ZW
7480static void
7481do_imm0 (void)
7482{
7483 inst.instruction |= inst.operands[0].imm;
7484}
09d92015 7485
c19d1205
ZW
7486static void
7487do_rd_cpaddr (void)
7488{
7489 inst.instruction |= inst.operands[0].reg << 12;
7490 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 7491}
a737bd4d 7492
c19d1205
ZW
7493/* ARM instructions, in alphabetical order by function name (except
7494 that wrapper functions appear immediately after the function they
7495 wrap). */
09d92015 7496
c19d1205
ZW
7497/* This is a pseudo-op of the form "adr rd, label" to be converted
7498 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
7499
7500static void
c19d1205 7501do_adr (void)
09d92015 7502{
c19d1205 7503 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7504
c19d1205
ZW
7505 /* Frag hacking will turn this into a sub instruction if the offset turns
7506 out to be negative. */
7507 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 7508 inst.reloc.pc_rel = 1;
2fc8bdac 7509 inst.reloc.exp.X_add_number -= 8;
c19d1205 7510}
b99bd4ef 7511
c19d1205
ZW
7512/* This is a pseudo-op of the form "adrl rd, label" to be converted
7513 into a relative address of the form:
7514 add rd, pc, #low(label-.-8)"
7515 add rd, rd, #high(label-.-8)" */
b99bd4ef 7516
c19d1205
ZW
7517static void
7518do_adrl (void)
7519{
7520 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7521
c19d1205
ZW
7522 /* Frag hacking will turn this into a sub instruction if the offset turns
7523 out to be negative. */
7524 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
7525 inst.reloc.pc_rel = 1;
7526 inst.size = INSN_SIZE * 2;
2fc8bdac 7527 inst.reloc.exp.X_add_number -= 8;
b99bd4ef
NC
7528}
7529
b99bd4ef 7530static void
c19d1205 7531do_arit (void)
b99bd4ef 7532{
c19d1205
ZW
7533 if (!inst.operands[1].present)
7534 inst.operands[1].reg = inst.operands[0].reg;
7535 inst.instruction |= inst.operands[0].reg << 12;
7536 inst.instruction |= inst.operands[1].reg << 16;
7537 encode_arm_shifter_operand (2);
7538}
b99bd4ef 7539
62b3e311
PB
7540static void
7541do_barrier (void)
7542{
7543 if (inst.operands[0].present)
7544 {
7545 constraint ((inst.instruction & 0xf0) != 0x40
52e7f43d
RE
7546 && inst.operands[0].imm > 0xf
7547 && inst.operands[0].imm < 0x0,
bd3ba5d1 7548 _("bad barrier type"));
62b3e311
PB
7549 inst.instruction |= inst.operands[0].imm;
7550 }
7551 else
7552 inst.instruction |= 0xf;
7553}
7554
c19d1205
ZW
7555static void
7556do_bfc (void)
7557{
7558 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
7559 constraint (msb > 32, _("bit-field extends past end of register"));
7560 /* The instruction encoding stores the LSB and MSB,
7561 not the LSB and width. */
7562 inst.instruction |= inst.operands[0].reg << 12;
7563 inst.instruction |= inst.operands[1].imm << 7;
7564 inst.instruction |= (msb - 1) << 16;
7565}
b99bd4ef 7566
c19d1205
ZW
7567static void
7568do_bfi (void)
7569{
7570 unsigned int msb;
b99bd4ef 7571
c19d1205
ZW
7572 /* #0 in second position is alternative syntax for bfc, which is
7573 the same instruction but with REG_PC in the Rm field. */
7574 if (!inst.operands[1].isreg)
7575 inst.operands[1].reg = REG_PC;
b99bd4ef 7576
c19d1205
ZW
7577 msb = inst.operands[2].imm + inst.operands[3].imm;
7578 constraint (msb > 32, _("bit-field extends past end of register"));
7579 /* The instruction encoding stores the LSB and MSB,
7580 not the LSB and width. */
7581 inst.instruction |= inst.operands[0].reg << 12;
7582 inst.instruction |= inst.operands[1].reg;
7583 inst.instruction |= inst.operands[2].imm << 7;
7584 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
7585}
7586
b99bd4ef 7587static void
c19d1205 7588do_bfx (void)
b99bd4ef 7589{
c19d1205
ZW
7590 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
7591 _("bit-field extends past end of register"));
7592 inst.instruction |= inst.operands[0].reg << 12;
7593 inst.instruction |= inst.operands[1].reg;
7594 inst.instruction |= inst.operands[2].imm << 7;
7595 inst.instruction |= (inst.operands[3].imm - 1) << 16;
7596}
09d92015 7597
c19d1205
ZW
7598/* ARM V5 breakpoint instruction (argument parse)
7599 BKPT <16 bit unsigned immediate>
7600 Instruction is not conditional.
7601 The bit pattern given in insns[] has the COND_ALWAYS condition,
7602 and it is an error if the caller tried to override that. */
b99bd4ef 7603
c19d1205
ZW
7604static void
7605do_bkpt (void)
7606{
7607 /* Top 12 of 16 bits to bits 19:8. */
7608 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 7609
c19d1205
ZW
7610 /* Bottom 4 of 16 bits to bits 3:0. */
7611 inst.instruction |= inst.operands[0].imm & 0xf;
7612}
09d92015 7613
c19d1205
ZW
7614static void
7615encode_branch (int default_reloc)
7616{
7617 if (inst.operands[0].hasreloc)
7618 {
0855e32b
NS
7619 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
7620 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
7621 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
7622 inst.reloc.type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
7623 ? BFD_RELOC_ARM_PLT32
7624 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
c19d1205 7625 }
b99bd4ef 7626 else
9ae92b05 7627 inst.reloc.type = (bfd_reloc_code_real_type) default_reloc;
2fc8bdac 7628 inst.reloc.pc_rel = 1;
b99bd4ef
NC
7629}
7630
b99bd4ef 7631static void
c19d1205 7632do_branch (void)
b99bd4ef 7633{
39b41c9c
PB
7634#ifdef OBJ_ELF
7635 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7636 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7637 else
7638#endif
7639 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
7640}
7641
7642static void
7643do_bl (void)
7644{
7645#ifdef OBJ_ELF
7646 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7647 {
7648 if (inst.cond == COND_ALWAYS)
7649 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
7650 else
7651 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7652 }
7653 else
7654#endif
7655 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 7656}
b99bd4ef 7657
c19d1205
ZW
7658/* ARM V5 branch-link-exchange instruction (argument parse)
7659 BLX <target_addr> ie BLX(1)
7660 BLX{<condition>} <Rm> ie BLX(2)
7661 Unfortunately, there are two different opcodes for this mnemonic.
7662 So, the insns[].value is not used, and the code here zaps values
7663 into inst.instruction.
7664 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 7665
c19d1205
ZW
7666static void
7667do_blx (void)
7668{
7669 if (inst.operands[0].isreg)
b99bd4ef 7670 {
c19d1205
ZW
7671 /* Arg is a register; the opcode provided by insns[] is correct.
7672 It is not illegal to do "blx pc", just useless. */
7673 if (inst.operands[0].reg == REG_PC)
7674 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 7675
c19d1205
ZW
7676 inst.instruction |= inst.operands[0].reg;
7677 }
7678 else
b99bd4ef 7679 {
c19d1205 7680 /* Arg is an address; this instruction cannot be executed
267bf995
RR
7681 conditionally, and the opcode must be adjusted.
7682 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
7683 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
c19d1205 7684 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 7685 inst.instruction = 0xfa000000;
267bf995 7686 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 7687 }
c19d1205
ZW
7688}
7689
7690static void
7691do_bx (void)
7692{
845b51d6
PB
7693 bfd_boolean want_reloc;
7694
c19d1205
ZW
7695 if (inst.operands[0].reg == REG_PC)
7696 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 7697
c19d1205 7698 inst.instruction |= inst.operands[0].reg;
845b51d6
PB
7699 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
7700 it is for ARMv4t or earlier. */
7701 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
7702 if (object_arch && !ARM_CPU_HAS_FEATURE (*object_arch, arm_ext_v5))
7703 want_reloc = TRUE;
7704
5ad34203 7705#ifdef OBJ_ELF
845b51d6 7706 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
5ad34203 7707#endif
584206db 7708 want_reloc = FALSE;
845b51d6
PB
7709
7710 if (want_reloc)
7711 inst.reloc.type = BFD_RELOC_ARM_V4BX;
09d92015
MM
7712}
7713
c19d1205
ZW
7714
7715/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
7716
7717static void
c19d1205 7718do_bxj (void)
a737bd4d 7719{
c19d1205
ZW
7720 if (inst.operands[0].reg == REG_PC)
7721 as_tsktsk (_("use of r15 in bxj is not really useful"));
7722
7723 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
7724}
7725
c19d1205
ZW
7726/* Co-processor data operation:
7727 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
7728 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
7729static void
7730do_cdp (void)
7731{
7732 inst.instruction |= inst.operands[0].reg << 8;
7733 inst.instruction |= inst.operands[1].imm << 20;
7734 inst.instruction |= inst.operands[2].reg << 12;
7735 inst.instruction |= inst.operands[3].reg << 16;
7736 inst.instruction |= inst.operands[4].reg;
7737 inst.instruction |= inst.operands[5].imm << 5;
7738}
a737bd4d
NC
7739
7740static void
c19d1205 7741do_cmp (void)
a737bd4d 7742{
c19d1205
ZW
7743 inst.instruction |= inst.operands[0].reg << 16;
7744 encode_arm_shifter_operand (1);
a737bd4d
NC
7745}
7746
c19d1205
ZW
7747/* Transfer between coprocessor and ARM registers.
7748 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
7749 MRC2
7750 MCR{cond}
7751 MCR2
7752
7753 No special properties. */
09d92015 7754
dcbd0d71
MGD
7755struct deprecated_coproc_regs_s
7756{
7757 unsigned cp;
7758 int opc1;
7759 unsigned crn;
7760 unsigned crm;
7761 int opc2;
7762 arm_feature_set deprecated;
7763 arm_feature_set obsoleted;
7764 const char *dep_msg;
7765 const char *obs_msg;
7766};
7767
7768#define DEPR_ACCESS_V8 \
7769 N_("This coprocessor register access is deprecated in ARMv8")
7770
7771/* Table of all deprecated coprocessor registers. */
7772static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
7773{
7774 {15, 0, 7, 10, 5, /* CP15DMB. */
7775 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7776 DEPR_ACCESS_V8, NULL},
7777 {15, 0, 7, 10, 4, /* CP15DSB. */
7778 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7779 DEPR_ACCESS_V8, NULL},
7780 {15, 0, 7, 5, 4, /* CP15ISB. */
7781 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7782 DEPR_ACCESS_V8, NULL},
7783 {14, 6, 1, 0, 0, /* TEEHBR. */
7784 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7785 DEPR_ACCESS_V8, NULL},
7786 {14, 6, 0, 0, 0, /* TEECR. */
7787 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7788 DEPR_ACCESS_V8, NULL},
7789};
7790
7791#undef DEPR_ACCESS_V8
7792
7793static const size_t deprecated_coproc_reg_count =
7794 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
7795
09d92015 7796static void
c19d1205 7797do_co_reg (void)
09d92015 7798{
fdfde340 7799 unsigned Rd;
dcbd0d71 7800 size_t i;
fdfde340
JM
7801
7802 Rd = inst.operands[2].reg;
7803 if (thumb_mode)
7804 {
7805 if (inst.instruction == 0xee000010
7806 || inst.instruction == 0xfe000010)
7807 /* MCR, MCR2 */
7808 reject_bad_reg (Rd);
7809 else
7810 /* MRC, MRC2 */
7811 constraint (Rd == REG_SP, BAD_SP);
7812 }
7813 else
7814 {
7815 /* MCR */
7816 if (inst.instruction == 0xe000010)
7817 constraint (Rd == REG_PC, BAD_PC);
7818 }
7819
dcbd0d71
MGD
7820 for (i = 0; i < deprecated_coproc_reg_count; ++i)
7821 {
7822 const struct deprecated_coproc_regs_s *r =
7823 deprecated_coproc_regs + i;
7824
7825 if (inst.operands[0].reg == r->cp
7826 && inst.operands[1].imm == r->opc1
7827 && inst.operands[3].reg == r->crn
7828 && inst.operands[4].reg == r->crm
7829 && inst.operands[5].imm == r->opc2)
7830 {
b10bf8c5 7831 if (! ARM_CPU_IS_ANY (cpu_variant)
dcbd0d71
MGD
7832 && warn_on_deprecated
7833 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
7834 as_warn ("%s", r->dep_msg);
7835 }
7836 }
fdfde340 7837
c19d1205
ZW
7838 inst.instruction |= inst.operands[0].reg << 8;
7839 inst.instruction |= inst.operands[1].imm << 21;
fdfde340 7840 inst.instruction |= Rd << 12;
c19d1205
ZW
7841 inst.instruction |= inst.operands[3].reg << 16;
7842 inst.instruction |= inst.operands[4].reg;
7843 inst.instruction |= inst.operands[5].imm << 5;
7844}
09d92015 7845
c19d1205
ZW
7846/* Transfer between coprocessor register and pair of ARM registers.
7847 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
7848 MCRR2
7849 MRRC{cond}
7850 MRRC2
b99bd4ef 7851
c19d1205 7852 Two XScale instructions are special cases of these:
09d92015 7853
c19d1205
ZW
7854 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
7855 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 7856
5f4273c7 7857 Result unpredictable if Rd or Rn is R15. */
a737bd4d 7858
c19d1205
ZW
7859static void
7860do_co_reg2c (void)
7861{
fdfde340
JM
7862 unsigned Rd, Rn;
7863
7864 Rd = inst.operands[2].reg;
7865 Rn = inst.operands[3].reg;
7866
7867 if (thumb_mode)
7868 {
7869 reject_bad_reg (Rd);
7870 reject_bad_reg (Rn);
7871 }
7872 else
7873 {
7874 constraint (Rd == REG_PC, BAD_PC);
7875 constraint (Rn == REG_PC, BAD_PC);
7876 }
7877
c19d1205
ZW
7878 inst.instruction |= inst.operands[0].reg << 8;
7879 inst.instruction |= inst.operands[1].imm << 4;
fdfde340
JM
7880 inst.instruction |= Rd << 12;
7881 inst.instruction |= Rn << 16;
c19d1205 7882 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
7883}
7884
c19d1205
ZW
7885static void
7886do_cpsi (void)
7887{
7888 inst.instruction |= inst.operands[0].imm << 6;
a028a6f5
PB
7889 if (inst.operands[1].present)
7890 {
7891 inst.instruction |= CPSI_MMOD;
7892 inst.instruction |= inst.operands[1].imm;
7893 }
c19d1205 7894}
b99bd4ef 7895
62b3e311
PB
7896static void
7897do_dbg (void)
7898{
7899 inst.instruction |= inst.operands[0].imm;
7900}
7901
eea54501
MGD
7902static void
7903do_div (void)
7904{
7905 unsigned Rd, Rn, Rm;
7906
7907 Rd = inst.operands[0].reg;
7908 Rn = (inst.operands[1].present
7909 ? inst.operands[1].reg : Rd);
7910 Rm = inst.operands[2].reg;
7911
7912 constraint ((Rd == REG_PC), BAD_PC);
7913 constraint ((Rn == REG_PC), BAD_PC);
7914 constraint ((Rm == REG_PC), BAD_PC);
7915
7916 inst.instruction |= Rd << 16;
7917 inst.instruction |= Rn << 0;
7918 inst.instruction |= Rm << 8;
7919}
7920
b99bd4ef 7921static void
c19d1205 7922do_it (void)
b99bd4ef 7923{
c19d1205 7924 /* There is no IT instruction in ARM mode. We
e07e6e58
NC
7925 process it to do the validation as if in
7926 thumb mode, just in case the code gets
7927 assembled for thumb using the unified syntax. */
7928
c19d1205 7929 inst.size = 0;
e07e6e58
NC
7930 if (unified_syntax)
7931 {
7932 set_it_insn_type (IT_INSN);
7933 now_it.mask = (inst.instruction & 0xf) | 0x10;
7934 now_it.cc = inst.operands[0].imm;
7935 }
09d92015 7936}
b99bd4ef 7937
6530b175
NC
7938/* If there is only one register in the register list,
7939 then return its register number. Otherwise return -1. */
7940static int
7941only_one_reg_in_list (int range)
7942{
7943 int i = ffs (range) - 1;
7944 return (i > 15 || range != (1 << i)) ? -1 : i;
7945}
7946
09d92015 7947static void
6530b175 7948encode_ldmstm(int from_push_pop_mnem)
ea6ef066 7949{
c19d1205
ZW
7950 int base_reg = inst.operands[0].reg;
7951 int range = inst.operands[1].imm;
6530b175 7952 int one_reg;
ea6ef066 7953
c19d1205
ZW
7954 inst.instruction |= base_reg << 16;
7955 inst.instruction |= range;
ea6ef066 7956
c19d1205
ZW
7957 if (inst.operands[1].writeback)
7958 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 7959
c19d1205 7960 if (inst.operands[0].writeback)
ea6ef066 7961 {
c19d1205
ZW
7962 inst.instruction |= WRITE_BACK;
7963 /* Check for unpredictable uses of writeback. */
7964 if (inst.instruction & LOAD_BIT)
09d92015 7965 {
c19d1205
ZW
7966 /* Not allowed in LDM type 2. */
7967 if ((inst.instruction & LDM_TYPE_2_OR_3)
7968 && ((range & (1 << REG_PC)) == 0))
7969 as_warn (_("writeback of base register is UNPREDICTABLE"));
7970 /* Only allowed if base reg not in list for other types. */
7971 else if (range & (1 << base_reg))
7972 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
7973 }
7974 else /* STM. */
7975 {
7976 /* Not allowed for type 2. */
7977 if (inst.instruction & LDM_TYPE_2_OR_3)
7978 as_warn (_("writeback of base register is UNPREDICTABLE"));
7979 /* Only allowed if base reg not in list, or first in list. */
7980 else if ((range & (1 << base_reg))
7981 && (range & ((1 << base_reg) - 1)))
7982 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 7983 }
ea6ef066 7984 }
6530b175
NC
7985
7986 /* If PUSH/POP has only one register, then use the A2 encoding. */
7987 one_reg = only_one_reg_in_list (range);
7988 if (from_push_pop_mnem && one_reg >= 0)
7989 {
7990 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
7991
7992 inst.instruction &= A_COND_MASK;
7993 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
7994 inst.instruction |= one_reg << 12;
7995 }
7996}
7997
7998static void
7999do_ldmstm (void)
8000{
8001 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
a737bd4d
NC
8002}
8003
c19d1205
ZW
8004/* ARMv5TE load-consecutive (argument parse)
8005 Mode is like LDRH.
8006
8007 LDRccD R, mode
8008 STRccD R, mode. */
8009
a737bd4d 8010static void
c19d1205 8011do_ldrd (void)
a737bd4d 8012{
c19d1205 8013 constraint (inst.operands[0].reg % 2 != 0,
c56791bb 8014 _("first transfer register must be even"));
c19d1205
ZW
8015 constraint (inst.operands[1].present
8016 && inst.operands[1].reg != inst.operands[0].reg + 1,
c56791bb 8017 _("can only transfer two consecutive registers"));
c19d1205
ZW
8018 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
8019 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 8020
c19d1205
ZW
8021 if (!inst.operands[1].present)
8022 inst.operands[1].reg = inst.operands[0].reg + 1;
5f4273c7 8023
c56791bb
RE
8024 /* encode_arm_addr_mode_3 will diagnose overlap between the base
8025 register and the first register written; we have to diagnose
8026 overlap between the base and the second register written here. */
ea6ef066 8027
c56791bb
RE
8028 if (inst.operands[2].reg == inst.operands[1].reg
8029 && (inst.operands[2].writeback || inst.operands[2].postind))
8030 as_warn (_("base register written back, and overlaps "
8031 "second transfer register"));
b05fe5cf 8032
c56791bb
RE
8033 if (!(inst.instruction & V4_STR_BIT))
8034 {
c19d1205 8035 /* For an index-register load, the index register must not overlap the
c56791bb
RE
8036 destination (even if not write-back). */
8037 if (inst.operands[2].immisreg
8038 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
8039 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
8040 as_warn (_("index register overlaps transfer register"));
b05fe5cf 8041 }
c19d1205
ZW
8042 inst.instruction |= inst.operands[0].reg << 12;
8043 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
8044}
8045
8046static void
c19d1205 8047do_ldrex (void)
b05fe5cf 8048{
c19d1205
ZW
8049 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
8050 || inst.operands[1].postind || inst.operands[1].writeback
8051 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
8052 || inst.operands[1].negative
8053 /* This can arise if the programmer has written
8054 strex rN, rM, foo
8055 or if they have mistakenly used a register name as the last
8056 operand, eg:
8057 strex rN, rM, rX
8058 It is very difficult to distinguish between these two cases
8059 because "rX" might actually be a label. ie the register
8060 name has been occluded by a symbol of the same name. So we
8061 just generate a general 'bad addressing mode' type error
8062 message and leave it up to the programmer to discover the
8063 true cause and fix their mistake. */
8064 || (inst.operands[1].reg == REG_PC),
8065 BAD_ADDR_MODE);
b05fe5cf 8066
c19d1205
ZW
8067 constraint (inst.reloc.exp.X_op != O_constant
8068 || inst.reloc.exp.X_add_number != 0,
8069 _("offset must be zero in ARM encoding"));
b05fe5cf 8070
5be8be5d
DG
8071 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
8072
c19d1205
ZW
8073 inst.instruction |= inst.operands[0].reg << 12;
8074 inst.instruction |= inst.operands[1].reg << 16;
8075 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
8076}
8077
8078static void
c19d1205 8079do_ldrexd (void)
b05fe5cf 8080{
c19d1205
ZW
8081 constraint (inst.operands[0].reg % 2 != 0,
8082 _("even register required"));
8083 constraint (inst.operands[1].present
8084 && inst.operands[1].reg != inst.operands[0].reg + 1,
8085 _("can only load two consecutive registers"));
8086 /* If op 1 were present and equal to PC, this function wouldn't
8087 have been called in the first place. */
8088 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 8089
c19d1205
ZW
8090 inst.instruction |= inst.operands[0].reg << 12;
8091 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
8092}
8093
1be5fd2e
NC
8094/* In both ARM and thumb state 'ldr pc, #imm' with an immediate
8095 which is not a multiple of four is UNPREDICTABLE. */
8096static void
8097check_ldr_r15_aligned (void)
8098{
8099 constraint (!(inst.operands[1].immisreg)
8100 && (inst.operands[0].reg == REG_PC
8101 && inst.operands[1].reg == REG_PC
8102 && (inst.reloc.exp.X_add_number & 0x3)),
8103 _("ldr to register 15 must be 4-byte alligned"));
8104}
8105
b05fe5cf 8106static void
c19d1205 8107do_ldst (void)
b05fe5cf 8108{
c19d1205
ZW
8109 inst.instruction |= inst.operands[0].reg << 12;
8110 if (!inst.operands[1].isreg)
8111 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/FALSE))
b05fe5cf 8112 return;
c19d1205 8113 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
1be5fd2e 8114 check_ldr_r15_aligned ();
b05fe5cf
ZW
8115}
8116
8117static void
c19d1205 8118do_ldstt (void)
b05fe5cf 8119{
c19d1205
ZW
8120 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8121 reject [Rn,...]. */
8122 if (inst.operands[1].preind)
b05fe5cf 8123 {
bd3ba5d1
NC
8124 constraint (inst.reloc.exp.X_op != O_constant
8125 || inst.reloc.exp.X_add_number != 0,
c19d1205 8126 _("this instruction requires a post-indexed address"));
b05fe5cf 8127
c19d1205
ZW
8128 inst.operands[1].preind = 0;
8129 inst.operands[1].postind = 1;
8130 inst.operands[1].writeback = 1;
b05fe5cf 8131 }
c19d1205
ZW
8132 inst.instruction |= inst.operands[0].reg << 12;
8133 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
8134}
b05fe5cf 8135
c19d1205 8136/* Halfword and signed-byte load/store operations. */
b05fe5cf 8137
c19d1205
ZW
8138static void
8139do_ldstv4 (void)
8140{
ff4a8d2b 8141 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205
ZW
8142 inst.instruction |= inst.operands[0].reg << 12;
8143 if (!inst.operands[1].isreg)
8144 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/TRUE))
b05fe5cf 8145 return;
c19d1205 8146 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
8147}
8148
8149static void
c19d1205 8150do_ldsttv4 (void)
b05fe5cf 8151{
c19d1205
ZW
8152 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8153 reject [Rn,...]. */
8154 if (inst.operands[1].preind)
b05fe5cf 8155 {
bd3ba5d1
NC
8156 constraint (inst.reloc.exp.X_op != O_constant
8157 || inst.reloc.exp.X_add_number != 0,
c19d1205 8158 _("this instruction requires a post-indexed address"));
b05fe5cf 8159
c19d1205
ZW
8160 inst.operands[1].preind = 0;
8161 inst.operands[1].postind = 1;
8162 inst.operands[1].writeback = 1;
b05fe5cf 8163 }
c19d1205
ZW
8164 inst.instruction |= inst.operands[0].reg << 12;
8165 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
8166}
b05fe5cf 8167
c19d1205
ZW
8168/* Co-processor register load/store.
8169 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
8170static void
8171do_lstc (void)
8172{
8173 inst.instruction |= inst.operands[0].reg << 8;
8174 inst.instruction |= inst.operands[1].reg << 12;
8175 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
8176}
8177
b05fe5cf 8178static void
c19d1205 8179do_mlas (void)
b05fe5cf 8180{
8fb9d7b9 8181 /* This restriction does not apply to mls (nor to mla in v6 or later). */
c19d1205 8182 if (inst.operands[0].reg == inst.operands[1].reg
8fb9d7b9 8183 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
c19d1205 8184 && !(inst.instruction & 0x00400000))
8fb9d7b9 8185 as_tsktsk (_("Rd and Rm should be different in mla"));
b05fe5cf 8186
c19d1205
ZW
8187 inst.instruction |= inst.operands[0].reg << 16;
8188 inst.instruction |= inst.operands[1].reg;
8189 inst.instruction |= inst.operands[2].reg << 8;
8190 inst.instruction |= inst.operands[3].reg << 12;
c19d1205 8191}
b05fe5cf 8192
c19d1205
ZW
8193static void
8194do_mov (void)
8195{
8196 inst.instruction |= inst.operands[0].reg << 12;
8197 encode_arm_shifter_operand (1);
8198}
b05fe5cf 8199
c19d1205
ZW
8200/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
8201static void
8202do_mov16 (void)
8203{
b6895b4f
PB
8204 bfd_vma imm;
8205 bfd_boolean top;
8206
8207 top = (inst.instruction & 0x00400000) != 0;
8208 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
8209 _(":lower16: not allowed this instruction"));
8210 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
8211 _(":upper16: not allowed instruction"));
c19d1205 8212 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
8213 if (inst.reloc.type == BFD_RELOC_UNUSED)
8214 {
8215 imm = inst.reloc.exp.X_add_number;
8216 /* The value is in two pieces: 0:11, 16:19. */
8217 inst.instruction |= (imm & 0x00000fff);
8218 inst.instruction |= (imm & 0x0000f000) << 4;
8219 }
b05fe5cf 8220}
b99bd4ef 8221
037e8744
JB
8222static void do_vfp_nsyn_opcode (const char *);
8223
8224static int
8225do_vfp_nsyn_mrs (void)
8226{
8227 if (inst.operands[0].isvec)
8228 {
8229 if (inst.operands[1].reg != 1)
8230 first_error (_("operand 1 must be FPSCR"));
8231 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
8232 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
8233 do_vfp_nsyn_opcode ("fmstat");
8234 }
8235 else if (inst.operands[1].isvec)
8236 do_vfp_nsyn_opcode ("fmrx");
8237 else
8238 return FAIL;
5f4273c7 8239
037e8744
JB
8240 return SUCCESS;
8241}
8242
8243static int
8244do_vfp_nsyn_msr (void)
8245{
8246 if (inst.operands[0].isvec)
8247 do_vfp_nsyn_opcode ("fmxr");
8248 else
8249 return FAIL;
8250
8251 return SUCCESS;
8252}
8253
f7c21dc7
NC
8254static void
8255do_vmrs (void)
8256{
8257 unsigned Rt = inst.operands[0].reg;
fa94de6b 8258
f7c21dc7
NC
8259 if (thumb_mode && inst.operands[0].reg == REG_SP)
8260 {
8261 inst.error = BAD_SP;
8262 return;
8263 }
8264
8265 /* APSR_ sets isvec. All other refs to PC are illegal. */
8266 if (!inst.operands[0].isvec && inst.operands[0].reg == REG_PC)
8267 {
8268 inst.error = BAD_PC;
8269 return;
8270 }
8271
7465e07a
NC
8272 switch (inst.operands[1].reg)
8273 {
8274 case 0: /* FPSID */
8275 case 1: /* FPSCR */
8276 case 6: /* MVFR1 */
8277 case 7: /* MVFR0 */
8278 case 8: /* FPEXC */
8279 inst.instruction |= (inst.operands[1].reg << 16);
8280 break;
8281 default:
8282 first_error (_("operand 1 must be a VFP extension System Register"));
8283 }
f7c21dc7
NC
8284
8285 inst.instruction |= (Rt << 12);
8286}
8287
8288static void
8289do_vmsr (void)
8290{
8291 unsigned Rt = inst.operands[1].reg;
fa94de6b 8292
f7c21dc7
NC
8293 if (thumb_mode)
8294 reject_bad_reg (Rt);
8295 else if (Rt == REG_PC)
8296 {
8297 inst.error = BAD_PC;
8298 return;
8299 }
8300
7465e07a
NC
8301 switch (inst.operands[0].reg)
8302 {
8303 case 0: /* FPSID */
8304 case 1: /* FPSCR */
8305 case 8: /* FPEXC */
8306 inst.instruction |= (inst.operands[0].reg << 16);
8307 break;
8308 default:
8309 first_error (_("operand 0 must be FPSID or FPSCR pr FPEXC"));
8310 }
f7c21dc7
NC
8311
8312 inst.instruction |= (Rt << 12);
8313}
8314
b99bd4ef 8315static void
c19d1205 8316do_mrs (void)
b99bd4ef 8317{
90ec0d68
MGD
8318 unsigned br;
8319
037e8744
JB
8320 if (do_vfp_nsyn_mrs () == SUCCESS)
8321 return;
8322
ff4a8d2b 8323 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205 8324 inst.instruction |= inst.operands[0].reg << 12;
90ec0d68
MGD
8325
8326 if (inst.operands[1].isreg)
8327 {
8328 br = inst.operands[1].reg;
8329 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf000))
8330 as_bad (_("bad register for mrs"));
8331 }
8332 else
8333 {
8334 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
8335 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
8336 != (PSR_c|PSR_f),
d2cd1205 8337 _("'APSR', 'CPSR' or 'SPSR' expected"));
90ec0d68
MGD
8338 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
8339 }
8340
8341 inst.instruction |= br;
c19d1205 8342}
b99bd4ef 8343
c19d1205
ZW
8344/* Two possible forms:
8345 "{C|S}PSR_<field>, Rm",
8346 "{C|S}PSR_f, #expression". */
b99bd4ef 8347
c19d1205
ZW
8348static void
8349do_msr (void)
8350{
037e8744
JB
8351 if (do_vfp_nsyn_msr () == SUCCESS)
8352 return;
8353
c19d1205
ZW
8354 inst.instruction |= inst.operands[0].imm;
8355 if (inst.operands[1].isreg)
8356 inst.instruction |= inst.operands[1].reg;
8357 else
b99bd4ef 8358 {
c19d1205
ZW
8359 inst.instruction |= INST_IMMEDIATE;
8360 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
8361 inst.reloc.pc_rel = 0;
b99bd4ef 8362 }
b99bd4ef
NC
8363}
8364
c19d1205
ZW
8365static void
8366do_mul (void)
a737bd4d 8367{
ff4a8d2b
NC
8368 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
8369
c19d1205
ZW
8370 if (!inst.operands[2].present)
8371 inst.operands[2].reg = inst.operands[0].reg;
8372 inst.instruction |= inst.operands[0].reg << 16;
8373 inst.instruction |= inst.operands[1].reg;
8374 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 8375
8fb9d7b9
MS
8376 if (inst.operands[0].reg == inst.operands[1].reg
8377 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
8378 as_tsktsk (_("Rd and Rm should be different in mul"));
a737bd4d
NC
8379}
8380
c19d1205
ZW
8381/* Long Multiply Parser
8382 UMULL RdLo, RdHi, Rm, Rs
8383 SMULL RdLo, RdHi, Rm, Rs
8384 UMLAL RdLo, RdHi, Rm, Rs
8385 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
8386
8387static void
c19d1205 8388do_mull (void)
b99bd4ef 8389{
c19d1205
ZW
8390 inst.instruction |= inst.operands[0].reg << 12;
8391 inst.instruction |= inst.operands[1].reg << 16;
8392 inst.instruction |= inst.operands[2].reg;
8393 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 8394
682b27ad
PB
8395 /* rdhi and rdlo must be different. */
8396 if (inst.operands[0].reg == inst.operands[1].reg)
8397 as_tsktsk (_("rdhi and rdlo must be different"));
8398
8399 /* rdhi, rdlo and rm must all be different before armv6. */
8400 if ((inst.operands[0].reg == inst.operands[2].reg
c19d1205 8401 || inst.operands[1].reg == inst.operands[2].reg)
682b27ad 8402 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
c19d1205
ZW
8403 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
8404}
b99bd4ef 8405
c19d1205
ZW
8406static void
8407do_nop (void)
8408{
e7495e45
NS
8409 if (inst.operands[0].present
8410 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
c19d1205
ZW
8411 {
8412 /* Architectural NOP hints are CPSR sets with no bits selected. */
8413 inst.instruction &= 0xf0000000;
e7495e45
NS
8414 inst.instruction |= 0x0320f000;
8415 if (inst.operands[0].present)
8416 inst.instruction |= inst.operands[0].imm;
c19d1205 8417 }
b99bd4ef
NC
8418}
8419
c19d1205
ZW
8420/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
8421 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
8422 Condition defaults to COND_ALWAYS.
8423 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
8424
8425static void
c19d1205 8426do_pkhbt (void)
b99bd4ef 8427{
c19d1205
ZW
8428 inst.instruction |= inst.operands[0].reg << 12;
8429 inst.instruction |= inst.operands[1].reg << 16;
8430 inst.instruction |= inst.operands[2].reg;
8431 if (inst.operands[3].present)
8432 encode_arm_shift (3);
8433}
b99bd4ef 8434
c19d1205 8435/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 8436
c19d1205
ZW
8437static void
8438do_pkhtb (void)
8439{
8440 if (!inst.operands[3].present)
b99bd4ef 8441 {
c19d1205
ZW
8442 /* If the shift specifier is omitted, turn the instruction
8443 into pkhbt rd, rm, rn. */
8444 inst.instruction &= 0xfff00010;
8445 inst.instruction |= inst.operands[0].reg << 12;
8446 inst.instruction |= inst.operands[1].reg;
8447 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
8448 }
8449 else
8450 {
c19d1205
ZW
8451 inst.instruction |= inst.operands[0].reg << 12;
8452 inst.instruction |= inst.operands[1].reg << 16;
8453 inst.instruction |= inst.operands[2].reg;
8454 encode_arm_shift (3);
b99bd4ef
NC
8455 }
8456}
8457
c19d1205 8458/* ARMv5TE: Preload-Cache
60e5ef9f 8459 MP Extensions: Preload for write
c19d1205 8460
60e5ef9f 8461 PLD(W) <addr_mode>
c19d1205
ZW
8462
8463 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
8464
8465static void
c19d1205 8466do_pld (void)
b99bd4ef 8467{
c19d1205
ZW
8468 constraint (!inst.operands[0].isreg,
8469 _("'[' expected after PLD mnemonic"));
8470 constraint (inst.operands[0].postind,
8471 _("post-indexed expression used in preload instruction"));
8472 constraint (inst.operands[0].writeback,
8473 _("writeback used in preload instruction"));
8474 constraint (!inst.operands[0].preind,
8475 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
8476 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8477}
b99bd4ef 8478
62b3e311
PB
8479/* ARMv7: PLI <addr_mode> */
8480static void
8481do_pli (void)
8482{
8483 constraint (!inst.operands[0].isreg,
8484 _("'[' expected after PLI mnemonic"));
8485 constraint (inst.operands[0].postind,
8486 _("post-indexed expression used in preload instruction"));
8487 constraint (inst.operands[0].writeback,
8488 _("writeback used in preload instruction"));
8489 constraint (!inst.operands[0].preind,
8490 _("unindexed addressing used in preload instruction"));
8491 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8492 inst.instruction &= ~PRE_INDEX;
8493}
8494
c19d1205
ZW
8495static void
8496do_push_pop (void)
8497{
8498 inst.operands[1] = inst.operands[0];
8499 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
8500 inst.operands[0].isreg = 1;
8501 inst.operands[0].writeback = 1;
8502 inst.operands[0].reg = REG_SP;
6530b175 8503 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
c19d1205 8504}
b99bd4ef 8505
c19d1205
ZW
8506/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
8507 word at the specified address and the following word
8508 respectively.
8509 Unconditionally executed.
8510 Error if Rn is R15. */
b99bd4ef 8511
c19d1205
ZW
8512static void
8513do_rfe (void)
8514{
8515 inst.instruction |= inst.operands[0].reg << 16;
8516 if (inst.operands[0].writeback)
8517 inst.instruction |= WRITE_BACK;
8518}
b99bd4ef 8519
c19d1205 8520/* ARM V6 ssat (argument parse). */
b99bd4ef 8521
c19d1205
ZW
8522static void
8523do_ssat (void)
8524{
8525 inst.instruction |= inst.operands[0].reg << 12;
8526 inst.instruction |= (inst.operands[1].imm - 1) << 16;
8527 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8528
c19d1205
ZW
8529 if (inst.operands[3].present)
8530 encode_arm_shift (3);
b99bd4ef
NC
8531}
8532
c19d1205 8533/* ARM V6 usat (argument parse). */
b99bd4ef
NC
8534
8535static void
c19d1205 8536do_usat (void)
b99bd4ef 8537{
c19d1205
ZW
8538 inst.instruction |= inst.operands[0].reg << 12;
8539 inst.instruction |= inst.operands[1].imm << 16;
8540 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8541
c19d1205
ZW
8542 if (inst.operands[3].present)
8543 encode_arm_shift (3);
b99bd4ef
NC
8544}
8545
c19d1205 8546/* ARM V6 ssat16 (argument parse). */
09d92015
MM
8547
8548static void
c19d1205 8549do_ssat16 (void)
09d92015 8550{
c19d1205
ZW
8551 inst.instruction |= inst.operands[0].reg << 12;
8552 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
8553 inst.instruction |= inst.operands[2].reg;
09d92015
MM
8554}
8555
c19d1205
ZW
8556static void
8557do_usat16 (void)
a737bd4d 8558{
c19d1205
ZW
8559 inst.instruction |= inst.operands[0].reg << 12;
8560 inst.instruction |= inst.operands[1].imm << 16;
8561 inst.instruction |= inst.operands[2].reg;
8562}
a737bd4d 8563
c19d1205
ZW
8564/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
8565 preserving the other bits.
a737bd4d 8566
c19d1205
ZW
8567 setend <endian_specifier>, where <endian_specifier> is either
8568 BE or LE. */
a737bd4d 8569
c19d1205
ZW
8570static void
8571do_setend (void)
8572{
12e37cbc
MGD
8573 if (warn_on_deprecated
8574 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
8575 as_warn (_("setend use is deprecated for ARMv8"));
8576
c19d1205
ZW
8577 if (inst.operands[0].imm)
8578 inst.instruction |= 0x200;
a737bd4d
NC
8579}
8580
8581static void
c19d1205 8582do_shift (void)
a737bd4d 8583{
c19d1205
ZW
8584 unsigned int Rm = (inst.operands[1].present
8585 ? inst.operands[1].reg
8586 : inst.operands[0].reg);
a737bd4d 8587
c19d1205
ZW
8588 inst.instruction |= inst.operands[0].reg << 12;
8589 inst.instruction |= Rm;
8590 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 8591 {
c19d1205
ZW
8592 inst.instruction |= inst.operands[2].reg << 8;
8593 inst.instruction |= SHIFT_BY_REG;
94342ec3
NC
8594 /* PR 12854: Error on extraneous shifts. */
8595 constraint (inst.operands[2].shifted,
8596 _("extraneous shift as part of operand to shift insn"));
a737bd4d
NC
8597 }
8598 else
c19d1205 8599 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
8600}
8601
09d92015 8602static void
3eb17e6b 8603do_smc (void)
09d92015 8604{
3eb17e6b 8605 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 8606 inst.reloc.pc_rel = 0;
09d92015
MM
8607}
8608
90ec0d68
MGD
8609static void
8610do_hvc (void)
8611{
8612 inst.reloc.type = BFD_RELOC_ARM_HVC;
8613 inst.reloc.pc_rel = 0;
8614}
8615
09d92015 8616static void
c19d1205 8617do_swi (void)
09d92015 8618{
c19d1205
ZW
8619 inst.reloc.type = BFD_RELOC_ARM_SWI;
8620 inst.reloc.pc_rel = 0;
09d92015
MM
8621}
8622
c19d1205
ZW
8623/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
8624 SMLAxy{cond} Rd,Rm,Rs,Rn
8625 SMLAWy{cond} Rd,Rm,Rs,Rn
8626 Error if any register is R15. */
e16bb312 8627
c19d1205
ZW
8628static void
8629do_smla (void)
e16bb312 8630{
c19d1205
ZW
8631 inst.instruction |= inst.operands[0].reg << 16;
8632 inst.instruction |= inst.operands[1].reg;
8633 inst.instruction |= inst.operands[2].reg << 8;
8634 inst.instruction |= inst.operands[3].reg << 12;
8635}
a737bd4d 8636
c19d1205
ZW
8637/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
8638 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
8639 Error if any register is R15.
8640 Warning if Rdlo == Rdhi. */
a737bd4d 8641
c19d1205
ZW
8642static void
8643do_smlal (void)
8644{
8645 inst.instruction |= inst.operands[0].reg << 12;
8646 inst.instruction |= inst.operands[1].reg << 16;
8647 inst.instruction |= inst.operands[2].reg;
8648 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 8649
c19d1205
ZW
8650 if (inst.operands[0].reg == inst.operands[1].reg)
8651 as_tsktsk (_("rdhi and rdlo must be different"));
8652}
a737bd4d 8653
c19d1205
ZW
8654/* ARM V5E (El Segundo) signed-multiply (argument parse)
8655 SMULxy{cond} Rd,Rm,Rs
8656 Error if any register is R15. */
a737bd4d 8657
c19d1205
ZW
8658static void
8659do_smul (void)
8660{
8661 inst.instruction |= inst.operands[0].reg << 16;
8662 inst.instruction |= inst.operands[1].reg;
8663 inst.instruction |= inst.operands[2].reg << 8;
8664}
a737bd4d 8665
b6702015
PB
8666/* ARM V6 srs (argument parse). The variable fields in the encoding are
8667 the same for both ARM and Thumb-2. */
a737bd4d 8668
c19d1205
ZW
8669static void
8670do_srs (void)
8671{
b6702015
PB
8672 int reg;
8673
8674 if (inst.operands[0].present)
8675 {
8676 reg = inst.operands[0].reg;
fdfde340 8677 constraint (reg != REG_SP, _("SRS base register must be r13"));
b6702015
PB
8678 }
8679 else
fdfde340 8680 reg = REG_SP;
b6702015
PB
8681
8682 inst.instruction |= reg << 16;
8683 inst.instruction |= inst.operands[1].imm;
8684 if (inst.operands[0].writeback || inst.operands[1].writeback)
c19d1205
ZW
8685 inst.instruction |= WRITE_BACK;
8686}
a737bd4d 8687
c19d1205 8688/* ARM V6 strex (argument parse). */
a737bd4d 8689
c19d1205
ZW
8690static void
8691do_strex (void)
8692{
8693 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8694 || inst.operands[2].postind || inst.operands[2].writeback
8695 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
8696 || inst.operands[2].negative
8697 /* See comment in do_ldrex(). */
8698 || (inst.operands[2].reg == REG_PC),
8699 BAD_ADDR_MODE);
a737bd4d 8700
c19d1205
ZW
8701 constraint (inst.operands[0].reg == inst.operands[1].reg
8702 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 8703
c19d1205
ZW
8704 constraint (inst.reloc.exp.X_op != O_constant
8705 || inst.reloc.exp.X_add_number != 0,
8706 _("offset must be zero in ARM encoding"));
a737bd4d 8707
c19d1205
ZW
8708 inst.instruction |= inst.operands[0].reg << 12;
8709 inst.instruction |= inst.operands[1].reg;
8710 inst.instruction |= inst.operands[2].reg << 16;
8711 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
8712}
8713
877807f8
NC
8714static void
8715do_t_strexbh (void)
8716{
8717 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8718 || inst.operands[2].postind || inst.operands[2].writeback
8719 || inst.operands[2].immisreg || inst.operands[2].shifted
8720 || inst.operands[2].negative,
8721 BAD_ADDR_MODE);
8722
8723 constraint (inst.operands[0].reg == inst.operands[1].reg
8724 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8725
8726 do_rm_rd_rn ();
8727}
8728
e16bb312 8729static void
c19d1205 8730do_strexd (void)
e16bb312 8731{
c19d1205
ZW
8732 constraint (inst.operands[1].reg % 2 != 0,
8733 _("even register required"));
8734 constraint (inst.operands[2].present
8735 && inst.operands[2].reg != inst.operands[1].reg + 1,
8736 _("can only store two consecutive registers"));
8737 /* If op 2 were present and equal to PC, this function wouldn't
8738 have been called in the first place. */
8739 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 8740
c19d1205
ZW
8741 constraint (inst.operands[0].reg == inst.operands[1].reg
8742 || inst.operands[0].reg == inst.operands[1].reg + 1
8743 || inst.operands[0].reg == inst.operands[3].reg,
8744 BAD_OVERLAP);
e16bb312 8745
c19d1205
ZW
8746 inst.instruction |= inst.operands[0].reg << 12;
8747 inst.instruction |= inst.operands[1].reg;
8748 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
8749}
8750
9eb6c0f1
MGD
8751/* ARM V8 STRL. */
8752static void
4b8c8c02 8753do_stlex (void)
9eb6c0f1
MGD
8754{
8755 constraint (inst.operands[0].reg == inst.operands[1].reg
8756 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8757
8758 do_rd_rm_rn ();
8759}
8760
8761static void
4b8c8c02 8762do_t_stlex (void)
9eb6c0f1
MGD
8763{
8764 constraint (inst.operands[0].reg == inst.operands[1].reg
8765 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8766
8767 do_rm_rd_rn ();
8768}
8769
c19d1205
ZW
8770/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
8771 extends it to 32-bits, and adds the result to a value in another
8772 register. You can specify a rotation by 0, 8, 16, or 24 bits
8773 before extracting the 16-bit value.
8774 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
8775 Condition defaults to COND_ALWAYS.
8776 Error if any register uses R15. */
8777
e16bb312 8778static void
c19d1205 8779do_sxtah (void)
e16bb312 8780{
c19d1205
ZW
8781 inst.instruction |= inst.operands[0].reg << 12;
8782 inst.instruction |= inst.operands[1].reg << 16;
8783 inst.instruction |= inst.operands[2].reg;
8784 inst.instruction |= inst.operands[3].imm << 10;
8785}
e16bb312 8786
c19d1205 8787/* ARM V6 SXTH.
e16bb312 8788
c19d1205
ZW
8789 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
8790 Condition defaults to COND_ALWAYS.
8791 Error if any register uses R15. */
e16bb312
NC
8792
8793static void
c19d1205 8794do_sxth (void)
e16bb312 8795{
c19d1205
ZW
8796 inst.instruction |= inst.operands[0].reg << 12;
8797 inst.instruction |= inst.operands[1].reg;
8798 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 8799}
c19d1205
ZW
8800\f
8801/* VFP instructions. In a logical order: SP variant first, monad
8802 before dyad, arithmetic then move then load/store. */
e16bb312
NC
8803
8804static void
c19d1205 8805do_vfp_sp_monadic (void)
e16bb312 8806{
5287ad62
JB
8807 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8808 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8809}
8810
8811static void
c19d1205 8812do_vfp_sp_dyadic (void)
e16bb312 8813{
5287ad62
JB
8814 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8815 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
8816 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8817}
8818
8819static void
c19d1205 8820do_vfp_sp_compare_z (void)
e16bb312 8821{
5287ad62 8822 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
8823}
8824
8825static void
c19d1205 8826do_vfp_dp_sp_cvt (void)
e16bb312 8827{
5287ad62
JB
8828 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8829 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8830}
8831
8832static void
c19d1205 8833do_vfp_sp_dp_cvt (void)
e16bb312 8834{
5287ad62
JB
8835 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8836 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
8837}
8838
8839static void
c19d1205 8840do_vfp_reg_from_sp (void)
e16bb312 8841{
c19d1205 8842 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 8843 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
8844}
8845
8846static void
c19d1205 8847do_vfp_reg2_from_sp2 (void)
e16bb312 8848{
c19d1205
ZW
8849 constraint (inst.operands[2].imm != 2,
8850 _("only two consecutive VFP SP registers allowed here"));
8851 inst.instruction |= inst.operands[0].reg << 12;
8852 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 8853 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8854}
8855
8856static void
c19d1205 8857do_vfp_sp_from_reg (void)
e16bb312 8858{
5287ad62 8859 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 8860 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
8861}
8862
8863static void
c19d1205 8864do_vfp_sp2_from_reg2 (void)
e16bb312 8865{
c19d1205
ZW
8866 constraint (inst.operands[0].imm != 2,
8867 _("only two consecutive VFP SP registers allowed here"));
5287ad62 8868 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
8869 inst.instruction |= inst.operands[1].reg << 12;
8870 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
8871}
8872
8873static void
c19d1205 8874do_vfp_sp_ldst (void)
e16bb312 8875{
5287ad62 8876 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 8877 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8878}
8879
8880static void
c19d1205 8881do_vfp_dp_ldst (void)
e16bb312 8882{
5287ad62 8883 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 8884 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8885}
8886
c19d1205 8887
e16bb312 8888static void
c19d1205 8889vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8890{
c19d1205
ZW
8891 if (inst.operands[0].writeback)
8892 inst.instruction |= WRITE_BACK;
8893 else
8894 constraint (ldstm_type != VFP_LDSTMIA,
8895 _("this addressing mode requires base-register writeback"));
8896 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8897 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 8898 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
8899}
8900
8901static void
c19d1205 8902vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8903{
c19d1205 8904 int count;
e16bb312 8905
c19d1205
ZW
8906 if (inst.operands[0].writeback)
8907 inst.instruction |= WRITE_BACK;
8908 else
8909 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
8910 _("this addressing mode requires base-register writeback"));
e16bb312 8911
c19d1205 8912 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8913 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 8914
c19d1205
ZW
8915 count = inst.operands[1].imm << 1;
8916 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
8917 count += 1;
e16bb312 8918
c19d1205 8919 inst.instruction |= count;
e16bb312
NC
8920}
8921
8922static void
c19d1205 8923do_vfp_sp_ldstmia (void)
e16bb312 8924{
c19d1205 8925 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8926}
8927
8928static void
c19d1205 8929do_vfp_sp_ldstmdb (void)
e16bb312 8930{
c19d1205 8931 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8932}
8933
8934static void
c19d1205 8935do_vfp_dp_ldstmia (void)
e16bb312 8936{
c19d1205 8937 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8938}
8939
8940static void
c19d1205 8941do_vfp_dp_ldstmdb (void)
e16bb312 8942{
c19d1205 8943 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8944}
8945
8946static void
c19d1205 8947do_vfp_xp_ldstmia (void)
e16bb312 8948{
c19d1205
ZW
8949 vfp_dp_ldstm (VFP_LDSTMIAX);
8950}
e16bb312 8951
c19d1205
ZW
8952static void
8953do_vfp_xp_ldstmdb (void)
8954{
8955 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 8956}
5287ad62
JB
8957
8958static void
8959do_vfp_dp_rd_rm (void)
8960{
8961 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8962 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
8963}
8964
8965static void
8966do_vfp_dp_rn_rd (void)
8967{
8968 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
8969 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8970}
8971
8972static void
8973do_vfp_dp_rd_rn (void)
8974{
8975 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8976 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8977}
8978
8979static void
8980do_vfp_dp_rd_rn_rm (void)
8981{
8982 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8983 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8984 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
8985}
8986
8987static void
8988do_vfp_dp_rd (void)
8989{
8990 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8991}
8992
8993static void
8994do_vfp_dp_rm_rd_rn (void)
8995{
8996 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
8997 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8998 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
8999}
9000
9001/* VFPv3 instructions. */
9002static void
9003do_vfp_sp_const (void)
9004{
9005 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
00249aaa
PB
9006 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9007 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9008}
9009
9010static void
9011do_vfp_dp_const (void)
9012{
9013 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
00249aaa
PB
9014 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9015 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9016}
9017
9018static void
9019vfp_conv (int srcsize)
9020{
5f1af56b
MGD
9021 int immbits = srcsize - inst.operands[1].imm;
9022
fa94de6b
RM
9023 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
9024 {
5f1af56b
MGD
9025 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
9026 i.e. immbits must be in range 0 - 16. */
9027 inst.error = _("immediate value out of range, expected range [0, 16]");
9028 return;
9029 }
fa94de6b 9030 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
5f1af56b
MGD
9031 {
9032 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
9033 i.e. immbits must be in range 0 - 31. */
9034 inst.error = _("immediate value out of range, expected range [1, 32]");
9035 return;
9036 }
9037
5287ad62
JB
9038 inst.instruction |= (immbits & 1) << 5;
9039 inst.instruction |= (immbits >> 1);
9040}
9041
9042static void
9043do_vfp_sp_conv_16 (void)
9044{
9045 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9046 vfp_conv (16);
9047}
9048
9049static void
9050do_vfp_dp_conv_16 (void)
9051{
9052 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9053 vfp_conv (16);
9054}
9055
9056static void
9057do_vfp_sp_conv_32 (void)
9058{
9059 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9060 vfp_conv (32);
9061}
9062
9063static void
9064do_vfp_dp_conv_32 (void)
9065{
9066 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9067 vfp_conv (32);
9068}
c19d1205
ZW
9069\f
9070/* FPA instructions. Also in a logical order. */
e16bb312 9071
c19d1205
ZW
9072static void
9073do_fpa_cmp (void)
9074{
9075 inst.instruction |= inst.operands[0].reg << 16;
9076 inst.instruction |= inst.operands[1].reg;
9077}
b99bd4ef
NC
9078
9079static void
c19d1205 9080do_fpa_ldmstm (void)
b99bd4ef 9081{
c19d1205
ZW
9082 inst.instruction |= inst.operands[0].reg << 12;
9083 switch (inst.operands[1].imm)
9084 {
9085 case 1: inst.instruction |= CP_T_X; break;
9086 case 2: inst.instruction |= CP_T_Y; break;
9087 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
9088 case 4: break;
9089 default: abort ();
9090 }
b99bd4ef 9091
c19d1205
ZW
9092 if (inst.instruction & (PRE_INDEX | INDEX_UP))
9093 {
9094 /* The instruction specified "ea" or "fd", so we can only accept
9095 [Rn]{!}. The instruction does not really support stacking or
9096 unstacking, so we have to emulate these by setting appropriate
9097 bits and offsets. */
9098 constraint (inst.reloc.exp.X_op != O_constant
9099 || inst.reloc.exp.X_add_number != 0,
9100 _("this instruction does not support indexing"));
b99bd4ef 9101
c19d1205
ZW
9102 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
9103 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 9104
c19d1205
ZW
9105 if (!(inst.instruction & INDEX_UP))
9106 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 9107
c19d1205
ZW
9108 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
9109 {
9110 inst.operands[2].preind = 0;
9111 inst.operands[2].postind = 1;
9112 }
9113 }
b99bd4ef 9114
c19d1205 9115 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 9116}
c19d1205
ZW
9117\f
9118/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 9119
c19d1205
ZW
9120static void
9121do_iwmmxt_tandorc (void)
9122{
9123 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
9124}
b99bd4ef 9125
c19d1205
ZW
9126static void
9127do_iwmmxt_textrc (void)
9128{
9129 inst.instruction |= inst.operands[0].reg << 12;
9130 inst.instruction |= inst.operands[1].imm;
9131}
b99bd4ef
NC
9132
9133static void
c19d1205 9134do_iwmmxt_textrm (void)
b99bd4ef 9135{
c19d1205
ZW
9136 inst.instruction |= inst.operands[0].reg << 12;
9137 inst.instruction |= inst.operands[1].reg << 16;
9138 inst.instruction |= inst.operands[2].imm;
9139}
b99bd4ef 9140
c19d1205
ZW
9141static void
9142do_iwmmxt_tinsr (void)
9143{
9144 inst.instruction |= inst.operands[0].reg << 16;
9145 inst.instruction |= inst.operands[1].reg << 12;
9146 inst.instruction |= inst.operands[2].imm;
9147}
b99bd4ef 9148
c19d1205
ZW
9149static void
9150do_iwmmxt_tmia (void)
9151{
9152 inst.instruction |= inst.operands[0].reg << 5;
9153 inst.instruction |= inst.operands[1].reg;
9154 inst.instruction |= inst.operands[2].reg << 12;
9155}
b99bd4ef 9156
c19d1205
ZW
9157static void
9158do_iwmmxt_waligni (void)
9159{
9160 inst.instruction |= inst.operands[0].reg << 12;
9161 inst.instruction |= inst.operands[1].reg << 16;
9162 inst.instruction |= inst.operands[2].reg;
9163 inst.instruction |= inst.operands[3].imm << 20;
9164}
b99bd4ef 9165
2d447fca
JM
9166static void
9167do_iwmmxt_wmerge (void)
9168{
9169 inst.instruction |= inst.operands[0].reg << 12;
9170 inst.instruction |= inst.operands[1].reg << 16;
9171 inst.instruction |= inst.operands[2].reg;
9172 inst.instruction |= inst.operands[3].imm << 21;
9173}
9174
c19d1205
ZW
9175static void
9176do_iwmmxt_wmov (void)
9177{
9178 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
9179 inst.instruction |= inst.operands[0].reg << 12;
9180 inst.instruction |= inst.operands[1].reg << 16;
9181 inst.instruction |= inst.operands[1].reg;
9182}
b99bd4ef 9183
c19d1205
ZW
9184static void
9185do_iwmmxt_wldstbh (void)
9186{
8f06b2d8 9187 int reloc;
c19d1205 9188 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
9189 if (thumb_mode)
9190 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
9191 else
9192 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
9193 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
9194}
9195
c19d1205
ZW
9196static void
9197do_iwmmxt_wldstw (void)
9198{
9199 /* RIWR_RIWC clears .isreg for a control register. */
9200 if (!inst.operands[0].isreg)
9201 {
9202 constraint (inst.cond != COND_ALWAYS, BAD_COND);
9203 inst.instruction |= 0xf0000000;
9204 }
b99bd4ef 9205
c19d1205
ZW
9206 inst.instruction |= inst.operands[0].reg << 12;
9207 encode_arm_cp_address (1, TRUE, TRUE, 0);
9208}
b99bd4ef
NC
9209
9210static void
c19d1205 9211do_iwmmxt_wldstd (void)
b99bd4ef 9212{
c19d1205 9213 inst.instruction |= inst.operands[0].reg << 12;
2d447fca
JM
9214 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
9215 && inst.operands[1].immisreg)
9216 {
9217 inst.instruction &= ~0x1a000ff;
9218 inst.instruction |= (0xf << 28);
9219 if (inst.operands[1].preind)
9220 inst.instruction |= PRE_INDEX;
9221 if (!inst.operands[1].negative)
9222 inst.instruction |= INDEX_UP;
9223 if (inst.operands[1].writeback)
9224 inst.instruction |= WRITE_BACK;
9225 inst.instruction |= inst.operands[1].reg << 16;
9226 inst.instruction |= inst.reloc.exp.X_add_number << 4;
9227 inst.instruction |= inst.operands[1].imm;
9228 }
9229 else
9230 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 9231}
b99bd4ef 9232
c19d1205
ZW
9233static void
9234do_iwmmxt_wshufh (void)
9235{
9236 inst.instruction |= inst.operands[0].reg << 12;
9237 inst.instruction |= inst.operands[1].reg << 16;
9238 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
9239 inst.instruction |= (inst.operands[2].imm & 0x0f);
9240}
b99bd4ef 9241
c19d1205
ZW
9242static void
9243do_iwmmxt_wzero (void)
9244{
9245 /* WZERO reg is an alias for WANDN reg, reg, reg. */
9246 inst.instruction |= inst.operands[0].reg;
9247 inst.instruction |= inst.operands[0].reg << 12;
9248 inst.instruction |= inst.operands[0].reg << 16;
9249}
2d447fca
JM
9250
9251static void
9252do_iwmmxt_wrwrwr_or_imm5 (void)
9253{
9254 if (inst.operands[2].isreg)
9255 do_rd_rn_rm ();
9256 else {
9257 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
9258 _("immediate operand requires iWMMXt2"));
9259 do_rd_rn ();
9260 if (inst.operands[2].imm == 0)
9261 {
9262 switch ((inst.instruction >> 20) & 0xf)
9263 {
9264 case 4:
9265 case 5:
9266 case 6:
5f4273c7 9267 case 7:
2d447fca
JM
9268 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
9269 inst.operands[2].imm = 16;
9270 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
9271 break;
9272 case 8:
9273 case 9:
9274 case 10:
9275 case 11:
9276 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
9277 inst.operands[2].imm = 32;
9278 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
9279 break;
9280 case 12:
9281 case 13:
9282 case 14:
9283 case 15:
9284 {
9285 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
9286 unsigned long wrn;
9287 wrn = (inst.instruction >> 16) & 0xf;
9288 inst.instruction &= 0xff0fff0f;
9289 inst.instruction |= wrn;
9290 /* Bail out here; the instruction is now assembled. */
9291 return;
9292 }
9293 }
9294 }
9295 /* Map 32 -> 0, etc. */
9296 inst.operands[2].imm &= 0x1f;
9297 inst.instruction |= (0xf << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
9298 }
9299}
c19d1205
ZW
9300\f
9301/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
9302 operations first, then control, shift, and load/store. */
b99bd4ef 9303
c19d1205 9304/* Insns like "foo X,Y,Z". */
b99bd4ef 9305
c19d1205
ZW
9306static void
9307do_mav_triple (void)
9308{
9309 inst.instruction |= inst.operands[0].reg << 16;
9310 inst.instruction |= inst.operands[1].reg;
9311 inst.instruction |= inst.operands[2].reg << 12;
9312}
b99bd4ef 9313
c19d1205
ZW
9314/* Insns like "foo W,X,Y,Z".
9315 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 9316
c19d1205
ZW
9317static void
9318do_mav_quad (void)
9319{
9320 inst.instruction |= inst.operands[0].reg << 5;
9321 inst.instruction |= inst.operands[1].reg << 12;
9322 inst.instruction |= inst.operands[2].reg << 16;
9323 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
9324}
9325
c19d1205
ZW
9326/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
9327static void
9328do_mav_dspsc (void)
a737bd4d 9329{
c19d1205
ZW
9330 inst.instruction |= inst.operands[1].reg << 12;
9331}
a737bd4d 9332
c19d1205
ZW
9333/* Maverick shift immediate instructions.
9334 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
9335 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 9336
c19d1205
ZW
9337static void
9338do_mav_shift (void)
9339{
9340 int imm = inst.operands[2].imm;
a737bd4d 9341
c19d1205
ZW
9342 inst.instruction |= inst.operands[0].reg << 12;
9343 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 9344
c19d1205
ZW
9345 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
9346 Bits 5-7 of the insn should have bits 4-6 of the immediate.
9347 Bit 4 should be 0. */
9348 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 9349
c19d1205
ZW
9350 inst.instruction |= imm;
9351}
9352\f
9353/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 9354
c19d1205
ZW
9355/* Xscale multiply-accumulate (argument parse)
9356 MIAcc acc0,Rm,Rs
9357 MIAPHcc acc0,Rm,Rs
9358 MIAxycc acc0,Rm,Rs. */
a737bd4d 9359
c19d1205
ZW
9360static void
9361do_xsc_mia (void)
9362{
9363 inst.instruction |= inst.operands[1].reg;
9364 inst.instruction |= inst.operands[2].reg << 12;
9365}
a737bd4d 9366
c19d1205 9367/* Xscale move-accumulator-register (argument parse)
a737bd4d 9368
c19d1205 9369 MARcc acc0,RdLo,RdHi. */
b99bd4ef 9370
c19d1205
ZW
9371static void
9372do_xsc_mar (void)
9373{
9374 inst.instruction |= inst.operands[1].reg << 12;
9375 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9376}
9377
c19d1205 9378/* Xscale move-register-accumulator (argument parse)
b99bd4ef 9379
c19d1205 9380 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
9381
9382static void
c19d1205 9383do_xsc_mra (void)
b99bd4ef 9384{
c19d1205
ZW
9385 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
9386 inst.instruction |= inst.operands[0].reg << 12;
9387 inst.instruction |= inst.operands[1].reg << 16;
9388}
9389\f
9390/* Encoding functions relevant only to Thumb. */
b99bd4ef 9391
c19d1205
ZW
9392/* inst.operands[i] is a shifted-register operand; encode
9393 it into inst.instruction in the format used by Thumb32. */
9394
9395static void
9396encode_thumb32_shifted_operand (int i)
9397{
9398 unsigned int value = inst.reloc.exp.X_add_number;
9399 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 9400
9c3c69f2
PB
9401 constraint (inst.operands[i].immisreg,
9402 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
9403 inst.instruction |= inst.operands[i].reg;
9404 if (shift == SHIFT_RRX)
9405 inst.instruction |= SHIFT_ROR << 4;
9406 else
b99bd4ef 9407 {
c19d1205
ZW
9408 constraint (inst.reloc.exp.X_op != O_constant,
9409 _("expression too complex"));
9410
9411 constraint (value > 32
9412 || (value == 32 && (shift == SHIFT_LSL
9413 || shift == SHIFT_ROR)),
9414 _("shift expression is too large"));
9415
9416 if (value == 0)
9417 shift = SHIFT_LSL;
9418 else if (value == 32)
9419 value = 0;
9420
9421 inst.instruction |= shift << 4;
9422 inst.instruction |= (value & 0x1c) << 10;
9423 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 9424 }
c19d1205 9425}
b99bd4ef 9426
b99bd4ef 9427
c19d1205
ZW
9428/* inst.operands[i] was set up by parse_address. Encode it into a
9429 Thumb32 format load or store instruction. Reject forms that cannot
9430 be used with such instructions. If is_t is true, reject forms that
9431 cannot be used with a T instruction; if is_d is true, reject forms
5be8be5d
DG
9432 that cannot be used with a D instruction. If it is a store insn,
9433 reject PC in Rn. */
b99bd4ef 9434
c19d1205
ZW
9435static void
9436encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
9437{
5be8be5d 9438 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
c19d1205
ZW
9439
9440 constraint (!inst.operands[i].isreg,
53365c0d 9441 _("Instruction does not support =N addresses"));
b99bd4ef 9442
c19d1205
ZW
9443 inst.instruction |= inst.operands[i].reg << 16;
9444 if (inst.operands[i].immisreg)
b99bd4ef 9445 {
5be8be5d 9446 constraint (is_pc, BAD_PC_ADDRESSING);
c19d1205
ZW
9447 constraint (is_t || is_d, _("cannot use register index with this instruction"));
9448 constraint (inst.operands[i].negative,
9449 _("Thumb does not support negative register indexing"));
9450 constraint (inst.operands[i].postind,
9451 _("Thumb does not support register post-indexing"));
9452 constraint (inst.operands[i].writeback,
9453 _("Thumb does not support register indexing with writeback"));
9454 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
9455 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 9456
f40d1643 9457 inst.instruction |= inst.operands[i].imm;
c19d1205 9458 if (inst.operands[i].shifted)
b99bd4ef 9459 {
c19d1205
ZW
9460 constraint (inst.reloc.exp.X_op != O_constant,
9461 _("expression too complex"));
9c3c69f2
PB
9462 constraint (inst.reloc.exp.X_add_number < 0
9463 || inst.reloc.exp.X_add_number > 3,
c19d1205 9464 _("shift out of range"));
9c3c69f2 9465 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
9466 }
9467 inst.reloc.type = BFD_RELOC_UNUSED;
9468 }
9469 else if (inst.operands[i].preind)
9470 {
5be8be5d 9471 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
f40d1643 9472 constraint (is_t && inst.operands[i].writeback,
c19d1205 9473 _("cannot use writeback with this instruction"));
4755303e
WN
9474 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0),
9475 BAD_PC_ADDRESSING);
c19d1205
ZW
9476
9477 if (is_d)
9478 {
9479 inst.instruction |= 0x01000000;
9480 if (inst.operands[i].writeback)
9481 inst.instruction |= 0x00200000;
b99bd4ef 9482 }
c19d1205 9483 else
b99bd4ef 9484 {
c19d1205
ZW
9485 inst.instruction |= 0x00000c00;
9486 if (inst.operands[i].writeback)
9487 inst.instruction |= 0x00000100;
b99bd4ef 9488 }
c19d1205 9489 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 9490 }
c19d1205 9491 else if (inst.operands[i].postind)
b99bd4ef 9492 {
9c2799c2 9493 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
9494 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
9495 constraint (is_t, _("cannot use post-indexing with this instruction"));
9496
9497 if (is_d)
9498 inst.instruction |= 0x00200000;
9499 else
9500 inst.instruction |= 0x00000900;
9501 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
9502 }
9503 else /* unindexed - only for coprocessor */
9504 inst.error = _("instruction does not accept unindexed addressing");
9505}
9506
9507/* Table of Thumb instructions which exist in both 16- and 32-bit
9508 encodings (the latter only in post-V6T2 cores). The index is the
9509 value used in the insns table below. When there is more than one
9510 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
9511 holds variant (1).
9512 Also contains several pseudo-instructions used during relaxation. */
c19d1205 9513#define T16_32_TAB \
21d799b5
NC
9514 X(_adc, 4140, eb400000), \
9515 X(_adcs, 4140, eb500000), \
9516 X(_add, 1c00, eb000000), \
9517 X(_adds, 1c00, eb100000), \
9518 X(_addi, 0000, f1000000), \
9519 X(_addis, 0000, f1100000), \
9520 X(_add_pc,000f, f20f0000), \
9521 X(_add_sp,000d, f10d0000), \
9522 X(_adr, 000f, f20f0000), \
9523 X(_and, 4000, ea000000), \
9524 X(_ands, 4000, ea100000), \
9525 X(_asr, 1000, fa40f000), \
9526 X(_asrs, 1000, fa50f000), \
9527 X(_b, e000, f000b000), \
9528 X(_bcond, d000, f0008000), \
9529 X(_bic, 4380, ea200000), \
9530 X(_bics, 4380, ea300000), \
9531 X(_cmn, 42c0, eb100f00), \
9532 X(_cmp, 2800, ebb00f00), \
9533 X(_cpsie, b660, f3af8400), \
9534 X(_cpsid, b670, f3af8600), \
9535 X(_cpy, 4600, ea4f0000), \
9536 X(_dec_sp,80dd, f1ad0d00), \
9537 X(_eor, 4040, ea800000), \
9538 X(_eors, 4040, ea900000), \
9539 X(_inc_sp,00dd, f10d0d00), \
9540 X(_ldmia, c800, e8900000), \
9541 X(_ldr, 6800, f8500000), \
9542 X(_ldrb, 7800, f8100000), \
9543 X(_ldrh, 8800, f8300000), \
9544 X(_ldrsb, 5600, f9100000), \
9545 X(_ldrsh, 5e00, f9300000), \
9546 X(_ldr_pc,4800, f85f0000), \
9547 X(_ldr_pc2,4800, f85f0000), \
9548 X(_ldr_sp,9800, f85d0000), \
9549 X(_lsl, 0000, fa00f000), \
9550 X(_lsls, 0000, fa10f000), \
9551 X(_lsr, 0800, fa20f000), \
9552 X(_lsrs, 0800, fa30f000), \
9553 X(_mov, 2000, ea4f0000), \
9554 X(_movs, 2000, ea5f0000), \
9555 X(_mul, 4340, fb00f000), \
9556 X(_muls, 4340, ffffffff), /* no 32b muls */ \
9557 X(_mvn, 43c0, ea6f0000), \
9558 X(_mvns, 43c0, ea7f0000), \
9559 X(_neg, 4240, f1c00000), /* rsb #0 */ \
9560 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
9561 X(_orr, 4300, ea400000), \
9562 X(_orrs, 4300, ea500000), \
9563 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
9564 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
9565 X(_rev, ba00, fa90f080), \
9566 X(_rev16, ba40, fa90f090), \
9567 X(_revsh, bac0, fa90f0b0), \
9568 X(_ror, 41c0, fa60f000), \
9569 X(_rors, 41c0, fa70f000), \
9570 X(_sbc, 4180, eb600000), \
9571 X(_sbcs, 4180, eb700000), \
9572 X(_stmia, c000, e8800000), \
9573 X(_str, 6000, f8400000), \
9574 X(_strb, 7000, f8000000), \
9575 X(_strh, 8000, f8200000), \
9576 X(_str_sp,9000, f84d0000), \
9577 X(_sub, 1e00, eba00000), \
9578 X(_subs, 1e00, ebb00000), \
9579 X(_subi, 8000, f1a00000), \
9580 X(_subis, 8000, f1b00000), \
9581 X(_sxtb, b240, fa4ff080), \
9582 X(_sxth, b200, fa0ff080), \
9583 X(_tst, 4200, ea100f00), \
9584 X(_uxtb, b2c0, fa5ff080), \
9585 X(_uxth, b280, fa1ff080), \
9586 X(_nop, bf00, f3af8000), \
9587 X(_yield, bf10, f3af8001), \
9588 X(_wfe, bf20, f3af8002), \
9589 X(_wfi, bf30, f3af8003), \
53c4b28b
MGD
9590 X(_sev, bf40, f3af8004), \
9591 X(_sevl, bf50, f3af8005)
c19d1205
ZW
9592
9593/* To catch errors in encoding functions, the codes are all offset by
9594 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
9595 as 16-bit instructions. */
21d799b5 9596#define X(a,b,c) T_MNEM##a
c19d1205
ZW
9597enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
9598#undef X
9599
9600#define X(a,b,c) 0x##b
9601static const unsigned short thumb_op16[] = { T16_32_TAB };
9602#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
9603#undef X
9604
9605#define X(a,b,c) 0x##c
9606static const unsigned int thumb_op32[] = { T16_32_TAB };
c921be7d
NC
9607#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
9608#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
c19d1205
ZW
9609#undef X
9610#undef T16_32_TAB
9611
9612/* Thumb instruction encoders, in alphabetical order. */
9613
92e90b6e 9614/* ADDW or SUBW. */
c921be7d 9615
92e90b6e
PB
9616static void
9617do_t_add_sub_w (void)
9618{
9619 int Rd, Rn;
9620
9621 Rd = inst.operands[0].reg;
9622 Rn = inst.operands[1].reg;
9623
539d4391
NC
9624 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
9625 is the SP-{plus,minus}-immediate form of the instruction. */
9626 if (Rn == REG_SP)
9627 constraint (Rd == REG_PC, BAD_PC);
9628 else
9629 reject_bad_reg (Rd);
fdfde340 9630
92e90b6e
PB
9631 inst.instruction |= (Rn << 16) | (Rd << 8);
9632 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9633}
9634
c19d1205
ZW
9635/* Parse an add or subtract instruction. We get here with inst.instruction
9636 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
9637
9638static void
9639do_t_add_sub (void)
9640{
9641 int Rd, Rs, Rn;
9642
9643 Rd = inst.operands[0].reg;
9644 Rs = (inst.operands[1].present
9645 ? inst.operands[1].reg /* Rd, Rs, foo */
9646 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9647
e07e6e58
NC
9648 if (Rd == REG_PC)
9649 set_it_insn_type_last ();
9650
c19d1205
ZW
9651 if (unified_syntax)
9652 {
0110f2b8
PB
9653 bfd_boolean flags;
9654 bfd_boolean narrow;
9655 int opcode;
9656
9657 flags = (inst.instruction == T_MNEM_adds
9658 || inst.instruction == T_MNEM_subs);
9659 if (flags)
e07e6e58 9660 narrow = !in_it_block ();
0110f2b8 9661 else
e07e6e58 9662 narrow = in_it_block ();
c19d1205 9663 if (!inst.operands[2].isreg)
b99bd4ef 9664 {
16805f35
PB
9665 int add;
9666
fdfde340
JM
9667 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9668
16805f35
PB
9669 add = (inst.instruction == T_MNEM_add
9670 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
9671 opcode = 0;
9672 if (inst.size_req != 4)
9673 {
0110f2b8
PB
9674 /* Attempt to use a narrow opcode, with relaxation if
9675 appropriate. */
9676 if (Rd == REG_SP && Rs == REG_SP && !flags)
9677 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
9678 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
9679 opcode = T_MNEM_add_sp;
9680 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
9681 opcode = T_MNEM_add_pc;
9682 else if (Rd <= 7 && Rs <= 7 && narrow)
9683 {
9684 if (flags)
9685 opcode = add ? T_MNEM_addis : T_MNEM_subis;
9686 else
9687 opcode = add ? T_MNEM_addi : T_MNEM_subi;
9688 }
9689 if (opcode)
9690 {
9691 inst.instruction = THUMB_OP16(opcode);
9692 inst.instruction |= (Rd << 4) | Rs;
9693 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9694 if (inst.size_req != 2)
9695 inst.relax = opcode;
9696 }
9697 else
9698 constraint (inst.size_req == 2, BAD_HIREG);
9699 }
9700 if (inst.size_req == 4
9701 || (inst.size_req != 2 && !opcode))
9702 {
efd81785
PB
9703 if (Rd == REG_PC)
9704 {
fdfde340 9705 constraint (add, BAD_PC);
efd81785
PB
9706 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
9707 _("only SUBS PC, LR, #const allowed"));
9708 constraint (inst.reloc.exp.X_op != O_constant,
9709 _("expression too complex"));
9710 constraint (inst.reloc.exp.X_add_number < 0
9711 || inst.reloc.exp.X_add_number > 0xff,
9712 _("immediate value out of range"));
9713 inst.instruction = T2_SUBS_PC_LR
9714 | inst.reloc.exp.X_add_number;
9715 inst.reloc.type = BFD_RELOC_UNUSED;
9716 return;
9717 }
9718 else if (Rs == REG_PC)
16805f35
PB
9719 {
9720 /* Always use addw/subw. */
9721 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
9722 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9723 }
9724 else
9725 {
9726 inst.instruction = THUMB_OP32 (inst.instruction);
9727 inst.instruction = (inst.instruction & 0xe1ffffff)
9728 | 0x10000000;
9729 if (flags)
9730 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9731 else
9732 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
9733 }
dc4503c6
PB
9734 inst.instruction |= Rd << 8;
9735 inst.instruction |= Rs << 16;
0110f2b8 9736 }
b99bd4ef 9737 }
c19d1205
ZW
9738 else
9739 {
5f4cb198
NC
9740 unsigned int value = inst.reloc.exp.X_add_number;
9741 unsigned int shift = inst.operands[2].shift_kind;
9742
c19d1205
ZW
9743 Rn = inst.operands[2].reg;
9744 /* See if we can do this with a 16-bit instruction. */
9745 if (!inst.operands[2].shifted && inst.size_req != 4)
9746 {
e27ec89e
PB
9747 if (Rd > 7 || Rs > 7 || Rn > 7)
9748 narrow = FALSE;
9749
9750 if (narrow)
c19d1205 9751 {
e27ec89e
PB
9752 inst.instruction = ((inst.instruction == T_MNEM_adds
9753 || inst.instruction == T_MNEM_add)
c19d1205
ZW
9754 ? T_OPCODE_ADD_R3
9755 : T_OPCODE_SUB_R3);
9756 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
9757 return;
9758 }
b99bd4ef 9759
7e806470 9760 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
c19d1205 9761 {
7e806470
PB
9762 /* Thumb-1 cores (except v6-M) require at least one high
9763 register in a narrow non flag setting add. */
9764 if (Rd > 7 || Rn > 7
9765 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
9766 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
c19d1205 9767 {
7e806470
PB
9768 if (Rd == Rn)
9769 {
9770 Rn = Rs;
9771 Rs = Rd;
9772 }
c19d1205
ZW
9773 inst.instruction = T_OPCODE_ADD_HI;
9774 inst.instruction |= (Rd & 8) << 4;
9775 inst.instruction |= (Rd & 7);
9776 inst.instruction |= Rn << 3;
9777 return;
9778 }
c19d1205
ZW
9779 }
9780 }
c921be7d 9781
fdfde340
JM
9782 constraint (Rd == REG_PC, BAD_PC);
9783 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9784 constraint (Rs == REG_PC, BAD_PC);
9785 reject_bad_reg (Rn);
9786
c19d1205
ZW
9787 /* If we get here, it can't be done in 16 bits. */
9788 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
9789 _("shift must be constant"));
9790 inst.instruction = THUMB_OP32 (inst.instruction);
9791 inst.instruction |= Rd << 8;
9792 inst.instruction |= Rs << 16;
5f4cb198
NC
9793 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
9794 _("shift value over 3 not allowed in thumb mode"));
9795 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
9796 _("only LSL shift allowed in thumb mode"));
c19d1205
ZW
9797 encode_thumb32_shifted_operand (2);
9798 }
9799 }
9800 else
9801 {
9802 constraint (inst.instruction == T_MNEM_adds
9803 || inst.instruction == T_MNEM_subs,
9804 BAD_THUMB32);
b99bd4ef 9805
c19d1205 9806 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 9807 {
c19d1205
ZW
9808 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
9809 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
9810 BAD_HIREG);
9811
9812 inst.instruction = (inst.instruction == T_MNEM_add
9813 ? 0x0000 : 0x8000);
9814 inst.instruction |= (Rd << 4) | Rs;
9815 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
9816 return;
9817 }
9818
c19d1205
ZW
9819 Rn = inst.operands[2].reg;
9820 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 9821
c19d1205
ZW
9822 /* We now have Rd, Rs, and Rn set to registers. */
9823 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 9824 {
c19d1205
ZW
9825 /* Can't do this for SUB. */
9826 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
9827 inst.instruction = T_OPCODE_ADD_HI;
9828 inst.instruction |= (Rd & 8) << 4;
9829 inst.instruction |= (Rd & 7);
9830 if (Rs == Rd)
9831 inst.instruction |= Rn << 3;
9832 else if (Rn == Rd)
9833 inst.instruction |= Rs << 3;
9834 else
9835 constraint (1, _("dest must overlap one source register"));
9836 }
9837 else
9838 {
9839 inst.instruction = (inst.instruction == T_MNEM_add
9840 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
9841 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 9842 }
b99bd4ef 9843 }
b99bd4ef
NC
9844}
9845
c19d1205
ZW
9846static void
9847do_t_adr (void)
9848{
fdfde340
JM
9849 unsigned Rd;
9850
9851 Rd = inst.operands[0].reg;
9852 reject_bad_reg (Rd);
9853
9854 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
0110f2b8
PB
9855 {
9856 /* Defer to section relaxation. */
9857 inst.relax = inst.instruction;
9858 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 9859 inst.instruction |= Rd << 4;
0110f2b8
PB
9860 }
9861 else if (unified_syntax && inst.size_req != 2)
e9f89963 9862 {
0110f2b8 9863 /* Generate a 32-bit opcode. */
e9f89963 9864 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 9865 inst.instruction |= Rd << 8;
e9f89963
PB
9866 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
9867 inst.reloc.pc_rel = 1;
9868 }
9869 else
9870 {
0110f2b8 9871 /* Generate a 16-bit opcode. */
e9f89963
PB
9872 inst.instruction = THUMB_OP16 (inst.instruction);
9873 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9874 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
9875 inst.reloc.pc_rel = 1;
b99bd4ef 9876
fdfde340 9877 inst.instruction |= Rd << 4;
e9f89963 9878 }
c19d1205 9879}
b99bd4ef 9880
c19d1205
ZW
9881/* Arithmetic instructions for which there is just one 16-bit
9882 instruction encoding, and it allows only two low registers.
9883 For maximal compatibility with ARM syntax, we allow three register
9884 operands even when Thumb-32 instructions are not available, as long
9885 as the first two are identical. For instance, both "sbc r0,r1" and
9886 "sbc r0,r0,r1" are allowed. */
b99bd4ef 9887static void
c19d1205 9888do_t_arit3 (void)
b99bd4ef 9889{
c19d1205 9890 int Rd, Rs, Rn;
b99bd4ef 9891
c19d1205
ZW
9892 Rd = inst.operands[0].reg;
9893 Rs = (inst.operands[1].present
9894 ? inst.operands[1].reg /* Rd, Rs, foo */
9895 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9896 Rn = inst.operands[2].reg;
b99bd4ef 9897
fdfde340
JM
9898 reject_bad_reg (Rd);
9899 reject_bad_reg (Rs);
9900 if (inst.operands[2].isreg)
9901 reject_bad_reg (Rn);
9902
c19d1205 9903 if (unified_syntax)
b99bd4ef 9904 {
c19d1205
ZW
9905 if (!inst.operands[2].isreg)
9906 {
9907 /* For an immediate, we always generate a 32-bit opcode;
9908 section relaxation will shrink it later if possible. */
9909 inst.instruction = THUMB_OP32 (inst.instruction);
9910 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9911 inst.instruction |= Rd << 8;
9912 inst.instruction |= Rs << 16;
9913 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9914 }
9915 else
9916 {
e27ec89e
PB
9917 bfd_boolean narrow;
9918
c19d1205 9919 /* See if we can do this with a 16-bit instruction. */
e27ec89e 9920 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 9921 narrow = !in_it_block ();
e27ec89e 9922 else
e07e6e58 9923 narrow = in_it_block ();
e27ec89e
PB
9924
9925 if (Rd > 7 || Rn > 7 || Rs > 7)
9926 narrow = FALSE;
9927 if (inst.operands[2].shifted)
9928 narrow = FALSE;
9929 if (inst.size_req == 4)
9930 narrow = FALSE;
9931
9932 if (narrow
c19d1205
ZW
9933 && Rd == Rs)
9934 {
9935 inst.instruction = THUMB_OP16 (inst.instruction);
9936 inst.instruction |= Rd;
9937 inst.instruction |= Rn << 3;
9938 return;
9939 }
b99bd4ef 9940
c19d1205
ZW
9941 /* If we get here, it can't be done in 16 bits. */
9942 constraint (inst.operands[2].shifted
9943 && inst.operands[2].immisreg,
9944 _("shift must be constant"));
9945 inst.instruction = THUMB_OP32 (inst.instruction);
9946 inst.instruction |= Rd << 8;
9947 inst.instruction |= Rs << 16;
9948 encode_thumb32_shifted_operand (2);
9949 }
a737bd4d 9950 }
c19d1205 9951 else
b99bd4ef 9952 {
c19d1205
ZW
9953 /* On its face this is a lie - the instruction does set the
9954 flags. However, the only supported mnemonic in this mode
9955 says it doesn't. */
9956 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 9957
c19d1205
ZW
9958 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
9959 _("unshifted register required"));
9960 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
9961 constraint (Rd != Rs,
9962 _("dest and source1 must be the same register"));
a737bd4d 9963
c19d1205
ZW
9964 inst.instruction = THUMB_OP16 (inst.instruction);
9965 inst.instruction |= Rd;
9966 inst.instruction |= Rn << 3;
b99bd4ef 9967 }
a737bd4d 9968}
b99bd4ef 9969
c19d1205
ZW
9970/* Similarly, but for instructions where the arithmetic operation is
9971 commutative, so we can allow either of them to be different from
9972 the destination operand in a 16-bit instruction. For instance, all
9973 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
9974 accepted. */
9975static void
9976do_t_arit3c (void)
a737bd4d 9977{
c19d1205 9978 int Rd, Rs, Rn;
b99bd4ef 9979
c19d1205
ZW
9980 Rd = inst.operands[0].reg;
9981 Rs = (inst.operands[1].present
9982 ? inst.operands[1].reg /* Rd, Rs, foo */
9983 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9984 Rn = inst.operands[2].reg;
c921be7d 9985
fdfde340
JM
9986 reject_bad_reg (Rd);
9987 reject_bad_reg (Rs);
9988 if (inst.operands[2].isreg)
9989 reject_bad_reg (Rn);
a737bd4d 9990
c19d1205 9991 if (unified_syntax)
a737bd4d 9992 {
c19d1205 9993 if (!inst.operands[2].isreg)
b99bd4ef 9994 {
c19d1205
ZW
9995 /* For an immediate, we always generate a 32-bit opcode;
9996 section relaxation will shrink it later if possible. */
9997 inst.instruction = THUMB_OP32 (inst.instruction);
9998 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9999 inst.instruction |= Rd << 8;
10000 inst.instruction |= Rs << 16;
10001 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 10002 }
c19d1205 10003 else
a737bd4d 10004 {
e27ec89e
PB
10005 bfd_boolean narrow;
10006
c19d1205 10007 /* See if we can do this with a 16-bit instruction. */
e27ec89e 10008 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 10009 narrow = !in_it_block ();
e27ec89e 10010 else
e07e6e58 10011 narrow = in_it_block ();
e27ec89e
PB
10012
10013 if (Rd > 7 || Rn > 7 || Rs > 7)
10014 narrow = FALSE;
10015 if (inst.operands[2].shifted)
10016 narrow = FALSE;
10017 if (inst.size_req == 4)
10018 narrow = FALSE;
10019
10020 if (narrow)
a737bd4d 10021 {
c19d1205 10022 if (Rd == Rs)
a737bd4d 10023 {
c19d1205
ZW
10024 inst.instruction = THUMB_OP16 (inst.instruction);
10025 inst.instruction |= Rd;
10026 inst.instruction |= Rn << 3;
10027 return;
a737bd4d 10028 }
c19d1205 10029 if (Rd == Rn)
a737bd4d 10030 {
c19d1205
ZW
10031 inst.instruction = THUMB_OP16 (inst.instruction);
10032 inst.instruction |= Rd;
10033 inst.instruction |= Rs << 3;
10034 return;
a737bd4d
NC
10035 }
10036 }
c19d1205
ZW
10037
10038 /* If we get here, it can't be done in 16 bits. */
10039 constraint (inst.operands[2].shifted
10040 && inst.operands[2].immisreg,
10041 _("shift must be constant"));
10042 inst.instruction = THUMB_OP32 (inst.instruction);
10043 inst.instruction |= Rd << 8;
10044 inst.instruction |= Rs << 16;
10045 encode_thumb32_shifted_operand (2);
a737bd4d 10046 }
b99bd4ef 10047 }
c19d1205
ZW
10048 else
10049 {
10050 /* On its face this is a lie - the instruction does set the
10051 flags. However, the only supported mnemonic in this mode
10052 says it doesn't. */
10053 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10054
c19d1205
ZW
10055 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10056 _("unshifted register required"));
10057 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10058
10059 inst.instruction = THUMB_OP16 (inst.instruction);
10060 inst.instruction |= Rd;
10061
10062 if (Rd == Rs)
10063 inst.instruction |= Rn << 3;
10064 else if (Rd == Rn)
10065 inst.instruction |= Rs << 3;
10066 else
10067 constraint (1, _("dest must overlap one source register"));
10068 }
a737bd4d
NC
10069}
10070
62b3e311
PB
10071static void
10072do_t_barrier (void)
10073{
10074 if (inst.operands[0].present)
10075 {
10076 constraint ((inst.instruction & 0xf0) != 0x40
52e7f43d
RE
10077 && inst.operands[0].imm > 0xf
10078 && inst.operands[0].imm < 0x0,
bd3ba5d1 10079 _("bad barrier type"));
62b3e311
PB
10080 inst.instruction |= inst.operands[0].imm;
10081 }
10082 else
10083 inst.instruction |= 0xf;
10084}
10085
c19d1205
ZW
10086static void
10087do_t_bfc (void)
a737bd4d 10088{
fdfde340 10089 unsigned Rd;
c19d1205
ZW
10090 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
10091 constraint (msb > 32, _("bit-field extends past end of register"));
10092 /* The instruction encoding stores the LSB and MSB,
10093 not the LSB and width. */
fdfde340
JM
10094 Rd = inst.operands[0].reg;
10095 reject_bad_reg (Rd);
10096 inst.instruction |= Rd << 8;
c19d1205
ZW
10097 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
10098 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
10099 inst.instruction |= msb - 1;
b99bd4ef
NC
10100}
10101
c19d1205
ZW
10102static void
10103do_t_bfi (void)
b99bd4ef 10104{
fdfde340 10105 int Rd, Rn;
c19d1205 10106 unsigned int msb;
b99bd4ef 10107
fdfde340
JM
10108 Rd = inst.operands[0].reg;
10109 reject_bad_reg (Rd);
10110
c19d1205
ZW
10111 /* #0 in second position is alternative syntax for bfc, which is
10112 the same instruction but with REG_PC in the Rm field. */
10113 if (!inst.operands[1].isreg)
fdfde340
JM
10114 Rn = REG_PC;
10115 else
10116 {
10117 Rn = inst.operands[1].reg;
10118 reject_bad_reg (Rn);
10119 }
b99bd4ef 10120
c19d1205
ZW
10121 msb = inst.operands[2].imm + inst.operands[3].imm;
10122 constraint (msb > 32, _("bit-field extends past end of register"));
10123 /* The instruction encoding stores the LSB and MSB,
10124 not the LSB and width. */
fdfde340
JM
10125 inst.instruction |= Rd << 8;
10126 inst.instruction |= Rn << 16;
c19d1205
ZW
10127 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10128 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10129 inst.instruction |= msb - 1;
b99bd4ef
NC
10130}
10131
c19d1205
ZW
10132static void
10133do_t_bfx (void)
b99bd4ef 10134{
fdfde340
JM
10135 unsigned Rd, Rn;
10136
10137 Rd = inst.operands[0].reg;
10138 Rn = inst.operands[1].reg;
10139
10140 reject_bad_reg (Rd);
10141 reject_bad_reg (Rn);
10142
c19d1205
ZW
10143 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
10144 _("bit-field extends past end of register"));
fdfde340
JM
10145 inst.instruction |= Rd << 8;
10146 inst.instruction |= Rn << 16;
c19d1205
ZW
10147 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10148 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10149 inst.instruction |= inst.operands[3].imm - 1;
10150}
b99bd4ef 10151
c19d1205
ZW
10152/* ARM V5 Thumb BLX (argument parse)
10153 BLX <target_addr> which is BLX(1)
10154 BLX <Rm> which is BLX(2)
10155 Unfortunately, there are two different opcodes for this mnemonic.
10156 So, the insns[].value is not used, and the code here zaps values
10157 into inst.instruction.
b99bd4ef 10158
c19d1205
ZW
10159 ??? How to take advantage of the additional two bits of displacement
10160 available in Thumb32 mode? Need new relocation? */
b99bd4ef 10161
c19d1205
ZW
10162static void
10163do_t_blx (void)
10164{
e07e6e58
NC
10165 set_it_insn_type_last ();
10166
c19d1205 10167 if (inst.operands[0].isreg)
fdfde340
JM
10168 {
10169 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10170 /* We have a register, so this is BLX(2). */
10171 inst.instruction |= inst.operands[0].reg << 3;
10172 }
b99bd4ef
NC
10173 else
10174 {
c19d1205 10175 /* No register. This must be BLX(1). */
2fc8bdac 10176 inst.instruction = 0xf000e800;
0855e32b 10177 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
b99bd4ef
NC
10178 }
10179}
10180
c19d1205
ZW
10181static void
10182do_t_branch (void)
b99bd4ef 10183{
0110f2b8 10184 int opcode;
dfa9f0d5 10185 int cond;
9ae92b05 10186 int reloc;
dfa9f0d5 10187
e07e6e58
NC
10188 cond = inst.cond;
10189 set_it_insn_type (IF_INSIDE_IT_LAST_INSN);
10190
10191 if (in_it_block ())
dfa9f0d5
PB
10192 {
10193 /* Conditional branches inside IT blocks are encoded as unconditional
10194 branches. */
10195 cond = COND_ALWAYS;
dfa9f0d5
PB
10196 }
10197 else
10198 cond = inst.cond;
10199
10200 if (cond != COND_ALWAYS)
0110f2b8
PB
10201 opcode = T_MNEM_bcond;
10202 else
10203 opcode = inst.instruction;
10204
12d6b0b7
RS
10205 if (unified_syntax
10206 && (inst.size_req == 4
10960bfb
PB
10207 || (inst.size_req != 2
10208 && (inst.operands[0].hasreloc
10209 || inst.reloc.exp.X_op == O_constant))))
c19d1205 10210 {
0110f2b8 10211 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 10212 if (cond == COND_ALWAYS)
9ae92b05 10213 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
10214 else
10215 {
9c2799c2 10216 gas_assert (cond != 0xF);
dfa9f0d5 10217 inst.instruction |= cond << 22;
9ae92b05 10218 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
c19d1205
ZW
10219 }
10220 }
b99bd4ef
NC
10221 else
10222 {
0110f2b8 10223 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 10224 if (cond == COND_ALWAYS)
9ae92b05 10225 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
c19d1205 10226 else
b99bd4ef 10227 {
dfa9f0d5 10228 inst.instruction |= cond << 8;
9ae92b05 10229 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 10230 }
0110f2b8
PB
10231 /* Allow section relaxation. */
10232 if (unified_syntax && inst.size_req != 2)
10233 inst.relax = opcode;
b99bd4ef 10234 }
9ae92b05 10235 inst.reloc.type = reloc;
c19d1205 10236 inst.reloc.pc_rel = 1;
b99bd4ef
NC
10237}
10238
8884b720 10239/* Actually do the work for Thumb state bkpt and hlt. The only difference
bacebabc 10240 between the two is the maximum immediate allowed - which is passed in
8884b720 10241 RANGE. */
b99bd4ef 10242static void
8884b720 10243do_t_bkpt_hlt1 (int range)
b99bd4ef 10244{
dfa9f0d5
PB
10245 constraint (inst.cond != COND_ALWAYS,
10246 _("instruction is always unconditional"));
c19d1205 10247 if (inst.operands[0].present)
b99bd4ef 10248 {
8884b720 10249 constraint (inst.operands[0].imm > range,
c19d1205
ZW
10250 _("immediate value out of range"));
10251 inst.instruction |= inst.operands[0].imm;
b99bd4ef 10252 }
8884b720
MGD
10253
10254 set_it_insn_type (NEUTRAL_IT_INSN);
10255}
10256
10257static void
10258do_t_hlt (void)
10259{
10260 do_t_bkpt_hlt1 (63);
10261}
10262
10263static void
10264do_t_bkpt (void)
10265{
10266 do_t_bkpt_hlt1 (255);
b99bd4ef
NC
10267}
10268
10269static void
c19d1205 10270do_t_branch23 (void)
b99bd4ef 10271{
e07e6e58 10272 set_it_insn_type_last ();
0855e32b 10273 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
fa94de6b 10274
0855e32b
NS
10275 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
10276 this file. We used to simply ignore the PLT reloc type here --
10277 the branch encoding is now needed to deal with TLSCALL relocs.
10278 So if we see a PLT reloc now, put it back to how it used to be to
10279 keep the preexisting behaviour. */
10280 if (inst.reloc.type == BFD_RELOC_ARM_PLT32)
10281 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a 10282
4343666d 10283#if defined(OBJ_COFF)
c19d1205
ZW
10284 /* If the destination of the branch is a defined symbol which does not have
10285 the THUMB_FUNC attribute, then we must be calling a function which has
10286 the (interfacearm) attribute. We look for the Thumb entry point to that
10287 function and change the branch to refer to that function instead. */
10288 if ( inst.reloc.exp.X_op == O_symbol
10289 && inst.reloc.exp.X_add_symbol != NULL
10290 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
10291 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
10292 inst.reloc.exp.X_add_symbol =
10293 find_real_start (inst.reloc.exp.X_add_symbol);
4343666d 10294#endif
90e4755a
RE
10295}
10296
10297static void
c19d1205 10298do_t_bx (void)
90e4755a 10299{
e07e6e58 10300 set_it_insn_type_last ();
c19d1205
ZW
10301 inst.instruction |= inst.operands[0].reg << 3;
10302 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
10303 should cause the alignment to be checked once it is known. This is
10304 because BX PC only works if the instruction is word aligned. */
10305}
90e4755a 10306
c19d1205
ZW
10307static void
10308do_t_bxj (void)
10309{
fdfde340 10310 int Rm;
90e4755a 10311
e07e6e58 10312 set_it_insn_type_last ();
fdfde340
JM
10313 Rm = inst.operands[0].reg;
10314 reject_bad_reg (Rm);
10315 inst.instruction |= Rm << 16;
90e4755a
RE
10316}
10317
10318static void
c19d1205 10319do_t_clz (void)
90e4755a 10320{
fdfde340
JM
10321 unsigned Rd;
10322 unsigned Rm;
10323
10324 Rd = inst.operands[0].reg;
10325 Rm = inst.operands[1].reg;
10326
10327 reject_bad_reg (Rd);
10328 reject_bad_reg (Rm);
10329
10330 inst.instruction |= Rd << 8;
10331 inst.instruction |= Rm << 16;
10332 inst.instruction |= Rm;
c19d1205 10333}
90e4755a 10334
dfa9f0d5
PB
10335static void
10336do_t_cps (void)
10337{
e07e6e58 10338 set_it_insn_type (OUTSIDE_IT_INSN);
dfa9f0d5
PB
10339 inst.instruction |= inst.operands[0].imm;
10340}
10341
c19d1205
ZW
10342static void
10343do_t_cpsi (void)
10344{
e07e6e58 10345 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205 10346 if (unified_syntax
62b3e311
PB
10347 && (inst.operands[1].present || inst.size_req == 4)
10348 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 10349 {
c19d1205
ZW
10350 unsigned int imod = (inst.instruction & 0x0030) >> 4;
10351 inst.instruction = 0xf3af8000;
10352 inst.instruction |= imod << 9;
10353 inst.instruction |= inst.operands[0].imm << 5;
10354 if (inst.operands[1].present)
10355 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 10356 }
c19d1205 10357 else
90e4755a 10358 {
62b3e311
PB
10359 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
10360 && (inst.operands[0].imm & 4),
10361 _("selected processor does not support 'A' form "
10362 "of this instruction"));
10363 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
10364 _("Thumb does not support the 2-argument "
10365 "form of this instruction"));
10366 inst.instruction |= inst.operands[0].imm;
90e4755a 10367 }
90e4755a
RE
10368}
10369
c19d1205
ZW
10370/* THUMB CPY instruction (argument parse). */
10371
90e4755a 10372static void
c19d1205 10373do_t_cpy (void)
90e4755a 10374{
c19d1205 10375 if (inst.size_req == 4)
90e4755a 10376 {
c19d1205
ZW
10377 inst.instruction = THUMB_OP32 (T_MNEM_mov);
10378 inst.instruction |= inst.operands[0].reg << 8;
10379 inst.instruction |= inst.operands[1].reg;
90e4755a 10380 }
c19d1205 10381 else
90e4755a 10382 {
c19d1205
ZW
10383 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
10384 inst.instruction |= (inst.operands[0].reg & 0x7);
10385 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 10386 }
90e4755a
RE
10387}
10388
90e4755a 10389static void
25fe350b 10390do_t_cbz (void)
90e4755a 10391{
e07e6e58 10392 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
10393 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10394 inst.instruction |= inst.operands[0].reg;
10395 inst.reloc.pc_rel = 1;
10396 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
10397}
90e4755a 10398
62b3e311
PB
10399static void
10400do_t_dbg (void)
10401{
10402 inst.instruction |= inst.operands[0].imm;
10403}
10404
10405static void
10406do_t_div (void)
10407{
fdfde340
JM
10408 unsigned Rd, Rn, Rm;
10409
10410 Rd = inst.operands[0].reg;
10411 Rn = (inst.operands[1].present
10412 ? inst.operands[1].reg : Rd);
10413 Rm = inst.operands[2].reg;
10414
10415 reject_bad_reg (Rd);
10416 reject_bad_reg (Rn);
10417 reject_bad_reg (Rm);
10418
10419 inst.instruction |= Rd << 8;
10420 inst.instruction |= Rn << 16;
10421 inst.instruction |= Rm;
62b3e311
PB
10422}
10423
c19d1205
ZW
10424static void
10425do_t_hint (void)
10426{
10427 if (unified_syntax && inst.size_req == 4)
10428 inst.instruction = THUMB_OP32 (inst.instruction);
10429 else
10430 inst.instruction = THUMB_OP16 (inst.instruction);
10431}
90e4755a 10432
c19d1205
ZW
10433static void
10434do_t_it (void)
10435{
10436 unsigned int cond = inst.operands[0].imm;
e27ec89e 10437
e07e6e58
NC
10438 set_it_insn_type (IT_INSN);
10439 now_it.mask = (inst.instruction & 0xf) | 0x10;
10440 now_it.cc = cond;
5a01bb1d 10441 now_it.warn_deprecated = FALSE;
e27ec89e
PB
10442
10443 /* If the condition is a negative condition, invert the mask. */
c19d1205 10444 if ((cond & 0x1) == 0x0)
90e4755a 10445 {
c19d1205 10446 unsigned int mask = inst.instruction & 0x000f;
90e4755a 10447
c19d1205 10448 if ((mask & 0x7) == 0)
5a01bb1d
MGD
10449 {
10450 /* No conversion needed. */
10451 now_it.block_length = 1;
10452 }
c19d1205 10453 else if ((mask & 0x3) == 0)
5a01bb1d
MGD
10454 {
10455 mask ^= 0x8;
10456 now_it.block_length = 2;
10457 }
e27ec89e 10458 else if ((mask & 0x1) == 0)
5a01bb1d
MGD
10459 {
10460 mask ^= 0xC;
10461 now_it.block_length = 3;
10462 }
c19d1205 10463 else
5a01bb1d
MGD
10464 {
10465 mask ^= 0xE;
10466 now_it.block_length = 4;
10467 }
90e4755a 10468
e27ec89e
PB
10469 inst.instruction &= 0xfff0;
10470 inst.instruction |= mask;
c19d1205 10471 }
90e4755a 10472
c19d1205
ZW
10473 inst.instruction |= cond << 4;
10474}
90e4755a 10475
3c707909
PB
10476/* Helper function used for both push/pop and ldm/stm. */
10477static void
10478encode_thumb2_ldmstm (int base, unsigned mask, bfd_boolean writeback)
10479{
10480 bfd_boolean load;
10481
10482 load = (inst.instruction & (1 << 20)) != 0;
10483
10484 if (mask & (1 << 13))
10485 inst.error = _("SP not allowed in register list");
1e5b0379
NC
10486
10487 if ((mask & (1 << base)) != 0
10488 && writeback)
10489 inst.error = _("having the base register in the register list when "
10490 "using write back is UNPREDICTABLE");
10491
3c707909
PB
10492 if (load)
10493 {
e07e6e58
NC
10494 if (mask & (1 << 15))
10495 {
10496 if (mask & (1 << 14))
10497 inst.error = _("LR and PC should not both be in register list");
10498 else
10499 set_it_insn_type_last ();
10500 }
3c707909
PB
10501 }
10502 else
10503 {
10504 if (mask & (1 << 15))
10505 inst.error = _("PC not allowed in register list");
3c707909
PB
10506 }
10507
10508 if ((mask & (mask - 1)) == 0)
10509 {
10510 /* Single register transfers implemented as str/ldr. */
10511 if (writeback)
10512 {
10513 if (inst.instruction & (1 << 23))
10514 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
10515 else
10516 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
10517 }
10518 else
10519 {
10520 if (inst.instruction & (1 << 23))
10521 inst.instruction = 0x00800000; /* ia -> [base] */
10522 else
10523 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
10524 }
10525
10526 inst.instruction |= 0xf8400000;
10527 if (load)
10528 inst.instruction |= 0x00100000;
10529
5f4273c7 10530 mask = ffs (mask) - 1;
3c707909
PB
10531 mask <<= 12;
10532 }
10533 else if (writeback)
10534 inst.instruction |= WRITE_BACK;
10535
10536 inst.instruction |= mask;
10537 inst.instruction |= base << 16;
10538}
10539
c19d1205
ZW
10540static void
10541do_t_ldmstm (void)
10542{
10543 /* This really doesn't seem worth it. */
10544 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
10545 _("expression too complex"));
10546 constraint (inst.operands[1].writeback,
10547 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 10548
c19d1205
ZW
10549 if (unified_syntax)
10550 {
3c707909
PB
10551 bfd_boolean narrow;
10552 unsigned mask;
10553
10554 narrow = FALSE;
c19d1205
ZW
10555 /* See if we can use a 16-bit instruction. */
10556 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
10557 && inst.size_req != 4
3c707909 10558 && !(inst.operands[1].imm & ~0xff))
90e4755a 10559 {
3c707909 10560 mask = 1 << inst.operands[0].reg;
90e4755a 10561
eab4f823 10562 if (inst.operands[0].reg <= 7)
90e4755a 10563 {
3c707909 10564 if (inst.instruction == T_MNEM_stmia
eab4f823
MGD
10565 ? inst.operands[0].writeback
10566 : (inst.operands[0].writeback
10567 == !(inst.operands[1].imm & mask)))
10568 {
10569 if (inst.instruction == T_MNEM_stmia
10570 && (inst.operands[1].imm & mask)
10571 && (inst.operands[1].imm & (mask - 1)))
10572 as_warn (_("value stored for r%d is UNKNOWN"),
10573 inst.operands[0].reg);
3c707909 10574
eab4f823
MGD
10575 inst.instruction = THUMB_OP16 (inst.instruction);
10576 inst.instruction |= inst.operands[0].reg << 8;
10577 inst.instruction |= inst.operands[1].imm;
10578 narrow = TRUE;
10579 }
10580 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10581 {
10582 /* This means 1 register in reg list one of 3 situations:
10583 1. Instruction is stmia, but without writeback.
10584 2. lmdia without writeback, but with Rn not in
10585 reglist.
10586 3. ldmia with writeback, but with Rn in reglist.
10587 Case 3 is UNPREDICTABLE behaviour, so we handle
10588 case 1 and 2 which can be converted into a 16-bit
10589 str or ldr. The SP cases are handled below. */
10590 unsigned long opcode;
10591 /* First, record an error for Case 3. */
10592 if (inst.operands[1].imm & mask
10593 && inst.operands[0].writeback)
fa94de6b 10594 inst.error =
eab4f823
MGD
10595 _("having the base register in the register list when "
10596 "using write back is UNPREDICTABLE");
fa94de6b
RM
10597
10598 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
eab4f823
MGD
10599 : T_MNEM_ldr);
10600 inst.instruction = THUMB_OP16 (opcode);
10601 inst.instruction |= inst.operands[0].reg << 3;
10602 inst.instruction |= (ffs (inst.operands[1].imm)-1);
10603 narrow = TRUE;
10604 }
90e4755a 10605 }
eab4f823 10606 else if (inst.operands[0] .reg == REG_SP)
90e4755a 10607 {
eab4f823
MGD
10608 if (inst.operands[0].writeback)
10609 {
fa94de6b 10610 inst.instruction =
eab4f823
MGD
10611 THUMB_OP16 (inst.instruction == T_MNEM_stmia
10612 ? T_MNEM_push : T_MNEM_pop);
10613 inst.instruction |= inst.operands[1].imm;
10614 narrow = TRUE;
10615 }
10616 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10617 {
fa94de6b 10618 inst.instruction =
eab4f823
MGD
10619 THUMB_OP16 (inst.instruction == T_MNEM_stmia
10620 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
10621 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
10622 narrow = TRUE;
10623 }
90e4755a 10624 }
3c707909
PB
10625 }
10626
10627 if (!narrow)
10628 {
c19d1205
ZW
10629 if (inst.instruction < 0xffff)
10630 inst.instruction = THUMB_OP32 (inst.instruction);
3c707909 10631
5f4273c7
NC
10632 encode_thumb2_ldmstm (inst.operands[0].reg, inst.operands[1].imm,
10633 inst.operands[0].writeback);
90e4755a
RE
10634 }
10635 }
c19d1205 10636 else
90e4755a 10637 {
c19d1205
ZW
10638 constraint (inst.operands[0].reg > 7
10639 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
1198ca51
PB
10640 constraint (inst.instruction != T_MNEM_ldmia
10641 && inst.instruction != T_MNEM_stmia,
10642 _("Thumb-2 instruction only valid in unified syntax"));
c19d1205 10643 if (inst.instruction == T_MNEM_stmia)
f03698e6 10644 {
c19d1205
ZW
10645 if (!inst.operands[0].writeback)
10646 as_warn (_("this instruction will write back the base register"));
10647 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
10648 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
1e5b0379 10649 as_warn (_("value stored for r%d is UNKNOWN"),
c19d1205 10650 inst.operands[0].reg);
f03698e6 10651 }
c19d1205 10652 else
90e4755a 10653 {
c19d1205
ZW
10654 if (!inst.operands[0].writeback
10655 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
10656 as_warn (_("this instruction will write back the base register"));
10657 else if (inst.operands[0].writeback
10658 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
10659 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
10660 }
10661
c19d1205
ZW
10662 inst.instruction = THUMB_OP16 (inst.instruction);
10663 inst.instruction |= inst.operands[0].reg << 8;
10664 inst.instruction |= inst.operands[1].imm;
10665 }
10666}
e28cd48c 10667
c19d1205
ZW
10668static void
10669do_t_ldrex (void)
10670{
10671 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
10672 || inst.operands[1].postind || inst.operands[1].writeback
10673 || inst.operands[1].immisreg || inst.operands[1].shifted
10674 || inst.operands[1].negative,
01cfc07f 10675 BAD_ADDR_MODE);
e28cd48c 10676
5be8be5d
DG
10677 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
10678
c19d1205
ZW
10679 inst.instruction |= inst.operands[0].reg << 12;
10680 inst.instruction |= inst.operands[1].reg << 16;
10681 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
10682}
e28cd48c 10683
c19d1205
ZW
10684static void
10685do_t_ldrexd (void)
10686{
10687 if (!inst.operands[1].present)
1cac9012 10688 {
c19d1205
ZW
10689 constraint (inst.operands[0].reg == REG_LR,
10690 _("r14 not allowed as first register "
10691 "when second register is omitted"));
10692 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 10693 }
c19d1205
ZW
10694 constraint (inst.operands[0].reg == inst.operands[1].reg,
10695 BAD_OVERLAP);
b99bd4ef 10696
c19d1205
ZW
10697 inst.instruction |= inst.operands[0].reg << 12;
10698 inst.instruction |= inst.operands[1].reg << 8;
10699 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
10700}
10701
10702static void
c19d1205 10703do_t_ldst (void)
b99bd4ef 10704{
0110f2b8
PB
10705 unsigned long opcode;
10706 int Rn;
10707
e07e6e58
NC
10708 if (inst.operands[0].isreg
10709 && !inst.operands[0].preind
10710 && inst.operands[0].reg == REG_PC)
10711 set_it_insn_type_last ();
10712
0110f2b8 10713 opcode = inst.instruction;
c19d1205 10714 if (unified_syntax)
b99bd4ef 10715 {
53365c0d
PB
10716 if (!inst.operands[1].isreg)
10717 {
10718 if (opcode <= 0xffff)
10719 inst.instruction = THUMB_OP32 (opcode);
10720 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10721 return;
10722 }
0110f2b8
PB
10723 if (inst.operands[1].isreg
10724 && !inst.operands[1].writeback
c19d1205
ZW
10725 && !inst.operands[1].shifted && !inst.operands[1].postind
10726 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
10727 && opcode <= 0xffff
10728 && inst.size_req != 4)
c19d1205 10729 {
0110f2b8
PB
10730 /* Insn may have a 16-bit form. */
10731 Rn = inst.operands[1].reg;
10732 if (inst.operands[1].immisreg)
10733 {
10734 inst.instruction = THUMB_OP16 (opcode);
5f4273c7 10735 /* [Rn, Rik] */
0110f2b8
PB
10736 if (Rn <= 7 && inst.operands[1].imm <= 7)
10737 goto op16;
5be8be5d
DG
10738 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
10739 reject_bad_reg (inst.operands[1].imm);
0110f2b8
PB
10740 }
10741 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
10742 && opcode != T_MNEM_ldrsb)
10743 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
10744 || (Rn == REG_SP && opcode == T_MNEM_str))
10745 {
10746 /* [Rn, #const] */
10747 if (Rn > 7)
10748 {
10749 if (Rn == REG_PC)
10750 {
10751 if (inst.reloc.pc_rel)
10752 opcode = T_MNEM_ldr_pc2;
10753 else
10754 opcode = T_MNEM_ldr_pc;
10755 }
10756 else
10757 {
10758 if (opcode == T_MNEM_ldr)
10759 opcode = T_MNEM_ldr_sp;
10760 else
10761 opcode = T_MNEM_str_sp;
10762 }
10763 inst.instruction = inst.operands[0].reg << 8;
10764 }
10765 else
10766 {
10767 inst.instruction = inst.operands[0].reg;
10768 inst.instruction |= inst.operands[1].reg << 3;
10769 }
10770 inst.instruction |= THUMB_OP16 (opcode);
10771 if (inst.size_req == 2)
10772 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10773 else
10774 inst.relax = opcode;
10775 return;
10776 }
c19d1205 10777 }
0110f2b8 10778 /* Definitely a 32-bit variant. */
5be8be5d 10779
8d67f500
NC
10780 /* Warning for Erratum 752419. */
10781 if (opcode == T_MNEM_ldr
10782 && inst.operands[0].reg == REG_SP
10783 && inst.operands[1].writeback == 1
10784 && !inst.operands[1].immisreg)
10785 {
10786 if (no_cpu_selected ()
10787 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
10788 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
10789 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
10790 as_warn (_("This instruction may be unpredictable "
10791 "if executed on M-profile cores "
10792 "with interrupts enabled."));
10793 }
10794
5be8be5d 10795 /* Do some validations regarding addressing modes. */
1be5fd2e 10796 if (inst.operands[1].immisreg)
5be8be5d
DG
10797 reject_bad_reg (inst.operands[1].imm);
10798
1be5fd2e
NC
10799 constraint (inst.operands[1].writeback == 1
10800 && inst.operands[0].reg == inst.operands[1].reg,
10801 BAD_OVERLAP);
10802
0110f2b8 10803 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
10804 inst.instruction |= inst.operands[0].reg << 12;
10805 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
1be5fd2e 10806 check_ldr_r15_aligned ();
b99bd4ef
NC
10807 return;
10808 }
10809
c19d1205
ZW
10810 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10811
10812 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 10813 {
c19d1205
ZW
10814 /* Only [Rn,Rm] is acceptable. */
10815 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
10816 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
10817 || inst.operands[1].postind || inst.operands[1].shifted
10818 || inst.operands[1].negative,
10819 _("Thumb does not support this addressing mode"));
10820 inst.instruction = THUMB_OP16 (inst.instruction);
10821 goto op16;
b99bd4ef 10822 }
5f4273c7 10823
c19d1205
ZW
10824 inst.instruction = THUMB_OP16 (inst.instruction);
10825 if (!inst.operands[1].isreg)
10826 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10827 return;
b99bd4ef 10828
c19d1205
ZW
10829 constraint (!inst.operands[1].preind
10830 || inst.operands[1].shifted
10831 || inst.operands[1].writeback,
10832 _("Thumb does not support this addressing mode"));
10833 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 10834 {
c19d1205
ZW
10835 constraint (inst.instruction & 0x0600,
10836 _("byte or halfword not valid for base register"));
10837 constraint (inst.operands[1].reg == REG_PC
10838 && !(inst.instruction & THUMB_LOAD_BIT),
10839 _("r15 based store not allowed"));
10840 constraint (inst.operands[1].immisreg,
10841 _("invalid base register for register offset"));
b99bd4ef 10842
c19d1205
ZW
10843 if (inst.operands[1].reg == REG_PC)
10844 inst.instruction = T_OPCODE_LDR_PC;
10845 else if (inst.instruction & THUMB_LOAD_BIT)
10846 inst.instruction = T_OPCODE_LDR_SP;
10847 else
10848 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 10849
c19d1205
ZW
10850 inst.instruction |= inst.operands[0].reg << 8;
10851 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10852 return;
10853 }
90e4755a 10854
c19d1205
ZW
10855 constraint (inst.operands[1].reg > 7, BAD_HIREG);
10856 if (!inst.operands[1].immisreg)
10857 {
10858 /* Immediate offset. */
10859 inst.instruction |= inst.operands[0].reg;
10860 inst.instruction |= inst.operands[1].reg << 3;
10861 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10862 return;
10863 }
90e4755a 10864
c19d1205
ZW
10865 /* Register offset. */
10866 constraint (inst.operands[1].imm > 7, BAD_HIREG);
10867 constraint (inst.operands[1].negative,
10868 _("Thumb does not support this addressing mode"));
90e4755a 10869
c19d1205
ZW
10870 op16:
10871 switch (inst.instruction)
10872 {
10873 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
10874 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
10875 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
10876 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
10877 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
10878 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
10879 case 0x5600 /* ldrsb */:
10880 case 0x5e00 /* ldrsh */: break;
10881 default: abort ();
10882 }
90e4755a 10883
c19d1205
ZW
10884 inst.instruction |= inst.operands[0].reg;
10885 inst.instruction |= inst.operands[1].reg << 3;
10886 inst.instruction |= inst.operands[1].imm << 6;
10887}
90e4755a 10888
c19d1205
ZW
10889static void
10890do_t_ldstd (void)
10891{
10892 if (!inst.operands[1].present)
b99bd4ef 10893 {
c19d1205
ZW
10894 inst.operands[1].reg = inst.operands[0].reg + 1;
10895 constraint (inst.operands[0].reg == REG_LR,
10896 _("r14 not allowed here"));
bd340a04
MGD
10897 constraint (inst.operands[0].reg == REG_R12,
10898 _("r12 not allowed here"));
b99bd4ef 10899 }
bd340a04
MGD
10900
10901 if (inst.operands[2].writeback
10902 && (inst.operands[0].reg == inst.operands[2].reg
10903 || inst.operands[1].reg == inst.operands[2].reg))
10904 as_warn (_("base register written back, and overlaps "
10905 "one of transfer registers"));
10906
c19d1205
ZW
10907 inst.instruction |= inst.operands[0].reg << 12;
10908 inst.instruction |= inst.operands[1].reg << 8;
10909 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
b99bd4ef
NC
10910}
10911
c19d1205
ZW
10912static void
10913do_t_ldstt (void)
10914{
10915 inst.instruction |= inst.operands[0].reg << 12;
10916 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
10917}
a737bd4d 10918
b99bd4ef 10919static void
c19d1205 10920do_t_mla (void)
b99bd4ef 10921{
fdfde340 10922 unsigned Rd, Rn, Rm, Ra;
c921be7d 10923
fdfde340
JM
10924 Rd = inst.operands[0].reg;
10925 Rn = inst.operands[1].reg;
10926 Rm = inst.operands[2].reg;
10927 Ra = inst.operands[3].reg;
10928
10929 reject_bad_reg (Rd);
10930 reject_bad_reg (Rn);
10931 reject_bad_reg (Rm);
10932 reject_bad_reg (Ra);
10933
10934 inst.instruction |= Rd << 8;
10935 inst.instruction |= Rn << 16;
10936 inst.instruction |= Rm;
10937 inst.instruction |= Ra << 12;
c19d1205 10938}
b99bd4ef 10939
c19d1205
ZW
10940static void
10941do_t_mlal (void)
10942{
fdfde340
JM
10943 unsigned RdLo, RdHi, Rn, Rm;
10944
10945 RdLo = inst.operands[0].reg;
10946 RdHi = inst.operands[1].reg;
10947 Rn = inst.operands[2].reg;
10948 Rm = inst.operands[3].reg;
10949
10950 reject_bad_reg (RdLo);
10951 reject_bad_reg (RdHi);
10952 reject_bad_reg (Rn);
10953 reject_bad_reg (Rm);
10954
10955 inst.instruction |= RdLo << 12;
10956 inst.instruction |= RdHi << 8;
10957 inst.instruction |= Rn << 16;
10958 inst.instruction |= Rm;
c19d1205 10959}
b99bd4ef 10960
c19d1205
ZW
10961static void
10962do_t_mov_cmp (void)
10963{
fdfde340
JM
10964 unsigned Rn, Rm;
10965
10966 Rn = inst.operands[0].reg;
10967 Rm = inst.operands[1].reg;
10968
e07e6e58
NC
10969 if (Rn == REG_PC)
10970 set_it_insn_type_last ();
10971
c19d1205 10972 if (unified_syntax)
b99bd4ef 10973 {
c19d1205
ZW
10974 int r0off = (inst.instruction == T_MNEM_mov
10975 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 10976 unsigned long opcode;
3d388997
PB
10977 bfd_boolean narrow;
10978 bfd_boolean low_regs;
10979
fdfde340 10980 low_regs = (Rn <= 7 && Rm <= 7);
0110f2b8 10981 opcode = inst.instruction;
e07e6e58 10982 if (in_it_block ())
0110f2b8 10983 narrow = opcode != T_MNEM_movs;
3d388997 10984 else
0110f2b8 10985 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
10986 if (inst.size_req == 4
10987 || inst.operands[1].shifted)
10988 narrow = FALSE;
10989
efd81785
PB
10990 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
10991 if (opcode == T_MNEM_movs && inst.operands[1].isreg
10992 && !inst.operands[1].shifted
fdfde340
JM
10993 && Rn == REG_PC
10994 && Rm == REG_LR)
efd81785
PB
10995 {
10996 inst.instruction = T2_SUBS_PC_LR;
10997 return;
10998 }
10999
fdfde340
JM
11000 if (opcode == T_MNEM_cmp)
11001 {
11002 constraint (Rn == REG_PC, BAD_PC);
94206790
MM
11003 if (narrow)
11004 {
11005 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
11006 but valid. */
11007 warn_deprecated_sp (Rm);
11008 /* R15 was documented as a valid choice for Rm in ARMv6,
11009 but as UNPREDICTABLE in ARMv7. ARM's proprietary
11010 tools reject R15, so we do too. */
11011 constraint (Rm == REG_PC, BAD_PC);
11012 }
11013 else
11014 reject_bad_reg (Rm);
fdfde340
JM
11015 }
11016 else if (opcode == T_MNEM_mov
11017 || opcode == T_MNEM_movs)
11018 {
11019 if (inst.operands[1].isreg)
11020 {
11021 if (opcode == T_MNEM_movs)
11022 {
11023 reject_bad_reg (Rn);
11024 reject_bad_reg (Rm);
11025 }
76fa04a4
MGD
11026 else if (narrow)
11027 {
11028 /* This is mov.n. */
11029 if ((Rn == REG_SP || Rn == REG_PC)
11030 && (Rm == REG_SP || Rm == REG_PC))
11031 {
11032 as_warn (_("Use of r%u as a source register is "
11033 "deprecated when r%u is the destination "
11034 "register."), Rm, Rn);
11035 }
11036 }
11037 else
11038 {
11039 /* This is mov.w. */
11040 constraint (Rn == REG_PC, BAD_PC);
11041 constraint (Rm == REG_PC, BAD_PC);
11042 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
11043 }
fdfde340
JM
11044 }
11045 else
11046 reject_bad_reg (Rn);
11047 }
11048
c19d1205
ZW
11049 if (!inst.operands[1].isreg)
11050 {
0110f2b8 11051 /* Immediate operand. */
e07e6e58 11052 if (!in_it_block () && opcode == T_MNEM_mov)
0110f2b8
PB
11053 narrow = 0;
11054 if (low_regs && narrow)
11055 {
11056 inst.instruction = THUMB_OP16 (opcode);
fdfde340 11057 inst.instruction |= Rn << 8;
0110f2b8
PB
11058 if (inst.size_req == 2)
11059 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11060 else
11061 inst.relax = opcode;
11062 }
11063 else
11064 {
11065 inst.instruction = THUMB_OP32 (inst.instruction);
11066 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11067 inst.instruction |= Rn << r0off;
0110f2b8
PB
11068 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11069 }
c19d1205 11070 }
728ca7c9
PB
11071 else if (inst.operands[1].shifted && inst.operands[1].immisreg
11072 && (inst.instruction == T_MNEM_mov
11073 || inst.instruction == T_MNEM_movs))
11074 {
11075 /* Register shifts are encoded as separate shift instructions. */
11076 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
11077
e07e6e58 11078 if (in_it_block ())
728ca7c9
PB
11079 narrow = !flags;
11080 else
11081 narrow = flags;
11082
11083 if (inst.size_req == 4)
11084 narrow = FALSE;
11085
11086 if (!low_regs || inst.operands[1].imm > 7)
11087 narrow = FALSE;
11088
fdfde340 11089 if (Rn != Rm)
728ca7c9
PB
11090 narrow = FALSE;
11091
11092 switch (inst.operands[1].shift_kind)
11093 {
11094 case SHIFT_LSL:
11095 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
11096 break;
11097 case SHIFT_ASR:
11098 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
11099 break;
11100 case SHIFT_LSR:
11101 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
11102 break;
11103 case SHIFT_ROR:
11104 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
11105 break;
11106 default:
5f4273c7 11107 abort ();
728ca7c9
PB
11108 }
11109
11110 inst.instruction = opcode;
11111 if (narrow)
11112 {
fdfde340 11113 inst.instruction |= Rn;
728ca7c9
PB
11114 inst.instruction |= inst.operands[1].imm << 3;
11115 }
11116 else
11117 {
11118 if (flags)
11119 inst.instruction |= CONDS_BIT;
11120
fdfde340
JM
11121 inst.instruction |= Rn << 8;
11122 inst.instruction |= Rm << 16;
728ca7c9
PB
11123 inst.instruction |= inst.operands[1].imm;
11124 }
11125 }
3d388997 11126 else if (!narrow)
c19d1205 11127 {
728ca7c9
PB
11128 /* Some mov with immediate shift have narrow variants.
11129 Register shifts are handled above. */
11130 if (low_regs && inst.operands[1].shifted
11131 && (inst.instruction == T_MNEM_mov
11132 || inst.instruction == T_MNEM_movs))
11133 {
e07e6e58 11134 if (in_it_block ())
728ca7c9
PB
11135 narrow = (inst.instruction == T_MNEM_mov);
11136 else
11137 narrow = (inst.instruction == T_MNEM_movs);
11138 }
11139
11140 if (narrow)
11141 {
11142 switch (inst.operands[1].shift_kind)
11143 {
11144 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11145 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
11146 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11147 default: narrow = FALSE; break;
11148 }
11149 }
11150
11151 if (narrow)
11152 {
fdfde340
JM
11153 inst.instruction |= Rn;
11154 inst.instruction |= Rm << 3;
728ca7c9
PB
11155 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11156 }
11157 else
11158 {
11159 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11160 inst.instruction |= Rn << r0off;
728ca7c9
PB
11161 encode_thumb32_shifted_operand (1);
11162 }
c19d1205
ZW
11163 }
11164 else
11165 switch (inst.instruction)
11166 {
11167 case T_MNEM_mov:
837b3435 11168 /* In v4t or v5t a move of two lowregs produces unpredictable
c6400f8a
MGD
11169 results. Don't allow this. */
11170 if (low_regs)
11171 {
11172 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
11173 "MOV Rd, Rs with two low registers is not "
11174 "permitted on this architecture");
fa94de6b 11175 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
c6400f8a
MGD
11176 arm_ext_v6);
11177 }
11178
c19d1205 11179 inst.instruction = T_OPCODE_MOV_HR;
fdfde340
JM
11180 inst.instruction |= (Rn & 0x8) << 4;
11181 inst.instruction |= (Rn & 0x7);
11182 inst.instruction |= Rm << 3;
c19d1205 11183 break;
b99bd4ef 11184
c19d1205
ZW
11185 case T_MNEM_movs:
11186 /* We know we have low registers at this point.
941a8a52
MGD
11187 Generate LSLS Rd, Rs, #0. */
11188 inst.instruction = T_OPCODE_LSL_I;
fdfde340
JM
11189 inst.instruction |= Rn;
11190 inst.instruction |= Rm << 3;
c19d1205
ZW
11191 break;
11192
11193 case T_MNEM_cmp:
3d388997 11194 if (low_regs)
c19d1205
ZW
11195 {
11196 inst.instruction = T_OPCODE_CMP_LR;
fdfde340
JM
11197 inst.instruction |= Rn;
11198 inst.instruction |= Rm << 3;
c19d1205
ZW
11199 }
11200 else
11201 {
11202 inst.instruction = T_OPCODE_CMP_HR;
fdfde340
JM
11203 inst.instruction |= (Rn & 0x8) << 4;
11204 inst.instruction |= (Rn & 0x7);
11205 inst.instruction |= Rm << 3;
c19d1205
ZW
11206 }
11207 break;
11208 }
b99bd4ef
NC
11209 return;
11210 }
11211
c19d1205 11212 inst.instruction = THUMB_OP16 (inst.instruction);
539d4391
NC
11213
11214 /* PR 10443: Do not silently ignore shifted operands. */
11215 constraint (inst.operands[1].shifted,
11216 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
11217
c19d1205 11218 if (inst.operands[1].isreg)
b99bd4ef 11219 {
fdfde340 11220 if (Rn < 8 && Rm < 8)
b99bd4ef 11221 {
c19d1205
ZW
11222 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
11223 since a MOV instruction produces unpredictable results. */
11224 if (inst.instruction == T_OPCODE_MOV_I8)
11225 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 11226 else
c19d1205 11227 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 11228
fdfde340
JM
11229 inst.instruction |= Rn;
11230 inst.instruction |= Rm << 3;
b99bd4ef
NC
11231 }
11232 else
11233 {
c19d1205
ZW
11234 if (inst.instruction == T_OPCODE_MOV_I8)
11235 inst.instruction = T_OPCODE_MOV_HR;
11236 else
11237 inst.instruction = T_OPCODE_CMP_HR;
11238 do_t_cpy ();
b99bd4ef
NC
11239 }
11240 }
c19d1205 11241 else
b99bd4ef 11242 {
fdfde340 11243 constraint (Rn > 7,
c19d1205 11244 _("only lo regs allowed with immediate"));
fdfde340 11245 inst.instruction |= Rn << 8;
c19d1205
ZW
11246 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11247 }
11248}
b99bd4ef 11249
c19d1205
ZW
11250static void
11251do_t_mov16 (void)
11252{
fdfde340 11253 unsigned Rd;
b6895b4f
PB
11254 bfd_vma imm;
11255 bfd_boolean top;
11256
11257 top = (inst.instruction & 0x00800000) != 0;
11258 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
11259 {
11260 constraint (top, _(":lower16: not allowed this instruction"));
11261 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
11262 }
11263 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
11264 {
11265 constraint (!top, _(":upper16: not allowed this instruction"));
11266 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
11267 }
11268
fdfde340
JM
11269 Rd = inst.operands[0].reg;
11270 reject_bad_reg (Rd);
11271
11272 inst.instruction |= Rd << 8;
b6895b4f
PB
11273 if (inst.reloc.type == BFD_RELOC_UNUSED)
11274 {
11275 imm = inst.reloc.exp.X_add_number;
11276 inst.instruction |= (imm & 0xf000) << 4;
11277 inst.instruction |= (imm & 0x0800) << 15;
11278 inst.instruction |= (imm & 0x0700) << 4;
11279 inst.instruction |= (imm & 0x00ff);
11280 }
c19d1205 11281}
b99bd4ef 11282
c19d1205
ZW
11283static void
11284do_t_mvn_tst (void)
11285{
fdfde340 11286 unsigned Rn, Rm;
c921be7d 11287
fdfde340
JM
11288 Rn = inst.operands[0].reg;
11289 Rm = inst.operands[1].reg;
11290
11291 if (inst.instruction == T_MNEM_cmp
11292 || inst.instruction == T_MNEM_cmn)
11293 constraint (Rn == REG_PC, BAD_PC);
11294 else
11295 reject_bad_reg (Rn);
11296 reject_bad_reg (Rm);
11297
c19d1205
ZW
11298 if (unified_syntax)
11299 {
11300 int r0off = (inst.instruction == T_MNEM_mvn
11301 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
11302 bfd_boolean narrow;
11303
11304 if (inst.size_req == 4
11305 || inst.instruction > 0xffff
11306 || inst.operands[1].shifted
fdfde340 11307 || Rn > 7 || Rm > 7)
3d388997
PB
11308 narrow = FALSE;
11309 else if (inst.instruction == T_MNEM_cmn)
11310 narrow = TRUE;
11311 else if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11312 narrow = !in_it_block ();
3d388997 11313 else
e07e6e58 11314 narrow = in_it_block ();
3d388997 11315
c19d1205 11316 if (!inst.operands[1].isreg)
b99bd4ef 11317 {
c19d1205
ZW
11318 /* For an immediate, we always generate a 32-bit opcode;
11319 section relaxation will shrink it later if possible. */
11320 if (inst.instruction < 0xffff)
11321 inst.instruction = THUMB_OP32 (inst.instruction);
11322 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11323 inst.instruction |= Rn << r0off;
c19d1205 11324 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 11325 }
c19d1205 11326 else
b99bd4ef 11327 {
c19d1205 11328 /* See if we can do this with a 16-bit instruction. */
3d388997 11329 if (narrow)
b99bd4ef 11330 {
c19d1205 11331 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11332 inst.instruction |= Rn;
11333 inst.instruction |= Rm << 3;
b99bd4ef 11334 }
c19d1205 11335 else
b99bd4ef 11336 {
c19d1205
ZW
11337 constraint (inst.operands[1].shifted
11338 && inst.operands[1].immisreg,
11339 _("shift must be constant"));
11340 if (inst.instruction < 0xffff)
11341 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11342 inst.instruction |= Rn << r0off;
c19d1205 11343 encode_thumb32_shifted_operand (1);
b99bd4ef 11344 }
b99bd4ef
NC
11345 }
11346 }
11347 else
11348 {
c19d1205
ZW
11349 constraint (inst.instruction > 0xffff
11350 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
11351 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
11352 _("unshifted register required"));
fdfde340 11353 constraint (Rn > 7 || Rm > 7,
c19d1205 11354 BAD_HIREG);
b99bd4ef 11355
c19d1205 11356 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11357 inst.instruction |= Rn;
11358 inst.instruction |= Rm << 3;
b99bd4ef 11359 }
b99bd4ef
NC
11360}
11361
b05fe5cf 11362static void
c19d1205 11363do_t_mrs (void)
b05fe5cf 11364{
fdfde340 11365 unsigned Rd;
037e8744
JB
11366
11367 if (do_vfp_nsyn_mrs () == SUCCESS)
11368 return;
11369
90ec0d68
MGD
11370 Rd = inst.operands[0].reg;
11371 reject_bad_reg (Rd);
11372 inst.instruction |= Rd << 8;
11373
11374 if (inst.operands[1].isreg)
62b3e311 11375 {
90ec0d68
MGD
11376 unsigned br = inst.operands[1].reg;
11377 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
11378 as_bad (_("bad register for mrs"));
11379
11380 inst.instruction |= br & (0xf << 16);
11381 inst.instruction |= (br & 0x300) >> 4;
11382 inst.instruction |= (br & SPSR_BIT) >> 2;
62b3e311
PB
11383 }
11384 else
11385 {
90ec0d68 11386 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
5f4273c7 11387
d2cd1205 11388 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
1a43faaf
NC
11389 {
11390 /* PR gas/12698: The constraint is only applied for m_profile.
11391 If the user has specified -march=all, we want to ignore it as
11392 we are building for any CPU type, including non-m variants. */
11393 bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
11394 constraint ((flags != 0) && m_profile, _("selected processor does "
11395 "not support requested special purpose register"));
11396 }
90ec0d68 11397 else
d2cd1205
JB
11398 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
11399 devices). */
11400 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
11401 _("'APSR', 'CPSR' or 'SPSR' expected"));
fdfde340 11402
90ec0d68
MGD
11403 inst.instruction |= (flags & SPSR_BIT) >> 2;
11404 inst.instruction |= inst.operands[1].imm & 0xff;
11405 inst.instruction |= 0xf0000;
11406 }
c19d1205 11407}
b05fe5cf 11408
c19d1205
ZW
11409static void
11410do_t_msr (void)
11411{
62b3e311 11412 int flags;
fdfde340 11413 unsigned Rn;
62b3e311 11414
037e8744
JB
11415 if (do_vfp_nsyn_msr () == SUCCESS)
11416 return;
11417
c19d1205
ZW
11418 constraint (!inst.operands[1].isreg,
11419 _("Thumb encoding does not support an immediate here"));
90ec0d68
MGD
11420
11421 if (inst.operands[0].isreg)
11422 flags = (int)(inst.operands[0].reg);
11423 else
11424 flags = inst.operands[0].imm;
11425
d2cd1205 11426 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
62b3e311 11427 {
d2cd1205
JB
11428 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
11429
1a43faaf
NC
11430 /* PR gas/12698: The constraint is only applied for m_profile.
11431 If the user has specified -march=all, we want to ignore it as
11432 we are building for any CPU type, including non-m variants. */
11433 bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
11434 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11435 && (bits & ~(PSR_s | PSR_f)) != 0)
11436 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11437 && bits != PSR_f)) && m_profile,
11438 _("selected processor does not support requested special "
11439 "purpose register"));
62b3e311
PB
11440 }
11441 else
d2cd1205
JB
11442 constraint ((flags & 0xff) != 0, _("selected processor does not support "
11443 "requested special purpose register"));
c921be7d 11444
fdfde340
JM
11445 Rn = inst.operands[1].reg;
11446 reject_bad_reg (Rn);
11447
62b3e311 11448 inst.instruction |= (flags & SPSR_BIT) >> 2;
90ec0d68
MGD
11449 inst.instruction |= (flags & 0xf0000) >> 8;
11450 inst.instruction |= (flags & 0x300) >> 4;
62b3e311 11451 inst.instruction |= (flags & 0xff);
fdfde340 11452 inst.instruction |= Rn << 16;
c19d1205 11453}
b05fe5cf 11454
c19d1205
ZW
11455static void
11456do_t_mul (void)
11457{
17828f45 11458 bfd_boolean narrow;
fdfde340 11459 unsigned Rd, Rn, Rm;
17828f45 11460
c19d1205
ZW
11461 if (!inst.operands[2].present)
11462 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 11463
fdfde340
JM
11464 Rd = inst.operands[0].reg;
11465 Rn = inst.operands[1].reg;
11466 Rm = inst.operands[2].reg;
11467
17828f45 11468 if (unified_syntax)
b05fe5cf 11469 {
17828f45 11470 if (inst.size_req == 4
fdfde340
JM
11471 || (Rd != Rn
11472 && Rd != Rm)
11473 || Rn > 7
11474 || Rm > 7)
17828f45
JM
11475 narrow = FALSE;
11476 else if (inst.instruction == T_MNEM_muls)
e07e6e58 11477 narrow = !in_it_block ();
17828f45 11478 else
e07e6e58 11479 narrow = in_it_block ();
b05fe5cf 11480 }
c19d1205 11481 else
b05fe5cf 11482 {
17828f45 11483 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
fdfde340 11484 constraint (Rn > 7 || Rm > 7,
c19d1205 11485 BAD_HIREG);
17828f45
JM
11486 narrow = TRUE;
11487 }
b05fe5cf 11488
17828f45
JM
11489 if (narrow)
11490 {
11491 /* 16-bit MULS/Conditional MUL. */
c19d1205 11492 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 11493 inst.instruction |= Rd;
b05fe5cf 11494
fdfde340
JM
11495 if (Rd == Rn)
11496 inst.instruction |= Rm << 3;
11497 else if (Rd == Rm)
11498 inst.instruction |= Rn << 3;
c19d1205
ZW
11499 else
11500 constraint (1, _("dest must overlap one source register"));
11501 }
17828f45
JM
11502 else
11503 {
e07e6e58
NC
11504 constraint (inst.instruction != T_MNEM_mul,
11505 _("Thumb-2 MUL must not set flags"));
17828f45
JM
11506 /* 32-bit MUL. */
11507 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11508 inst.instruction |= Rd << 8;
11509 inst.instruction |= Rn << 16;
11510 inst.instruction |= Rm << 0;
11511
11512 reject_bad_reg (Rd);
11513 reject_bad_reg (Rn);
11514 reject_bad_reg (Rm);
17828f45 11515 }
c19d1205 11516}
b05fe5cf 11517
c19d1205
ZW
11518static void
11519do_t_mull (void)
11520{
fdfde340 11521 unsigned RdLo, RdHi, Rn, Rm;
b05fe5cf 11522
fdfde340
JM
11523 RdLo = inst.operands[0].reg;
11524 RdHi = inst.operands[1].reg;
11525 Rn = inst.operands[2].reg;
11526 Rm = inst.operands[3].reg;
11527
11528 reject_bad_reg (RdLo);
11529 reject_bad_reg (RdHi);
11530 reject_bad_reg (Rn);
11531 reject_bad_reg (Rm);
11532
11533 inst.instruction |= RdLo << 12;
11534 inst.instruction |= RdHi << 8;
11535 inst.instruction |= Rn << 16;
11536 inst.instruction |= Rm;
11537
11538 if (RdLo == RdHi)
c19d1205
ZW
11539 as_tsktsk (_("rdhi and rdlo must be different"));
11540}
b05fe5cf 11541
c19d1205
ZW
11542static void
11543do_t_nop (void)
11544{
e07e6e58
NC
11545 set_it_insn_type (NEUTRAL_IT_INSN);
11546
c19d1205
ZW
11547 if (unified_syntax)
11548 {
11549 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 11550 {
c19d1205
ZW
11551 inst.instruction = THUMB_OP32 (inst.instruction);
11552 inst.instruction |= inst.operands[0].imm;
11553 }
11554 else
11555 {
bc2d1808
NC
11556 /* PR9722: Check for Thumb2 availability before
11557 generating a thumb2 nop instruction. */
afa62d5e 11558 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
bc2d1808
NC
11559 {
11560 inst.instruction = THUMB_OP16 (inst.instruction);
11561 inst.instruction |= inst.operands[0].imm << 4;
11562 }
11563 else
11564 inst.instruction = 0x46c0;
c19d1205
ZW
11565 }
11566 }
11567 else
11568 {
11569 constraint (inst.operands[0].present,
11570 _("Thumb does not support NOP with hints"));
11571 inst.instruction = 0x46c0;
11572 }
11573}
b05fe5cf 11574
c19d1205
ZW
11575static void
11576do_t_neg (void)
11577{
11578 if (unified_syntax)
11579 {
3d388997
PB
11580 bfd_boolean narrow;
11581
11582 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11583 narrow = !in_it_block ();
3d388997 11584 else
e07e6e58 11585 narrow = in_it_block ();
3d388997
PB
11586 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11587 narrow = FALSE;
11588 if (inst.size_req == 4)
11589 narrow = FALSE;
11590
11591 if (!narrow)
c19d1205
ZW
11592 {
11593 inst.instruction = THUMB_OP32 (inst.instruction);
11594 inst.instruction |= inst.operands[0].reg << 8;
11595 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
11596 }
11597 else
11598 {
c19d1205
ZW
11599 inst.instruction = THUMB_OP16 (inst.instruction);
11600 inst.instruction |= inst.operands[0].reg;
11601 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
11602 }
11603 }
11604 else
11605 {
c19d1205
ZW
11606 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
11607 BAD_HIREG);
11608 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11609
11610 inst.instruction = THUMB_OP16 (inst.instruction);
11611 inst.instruction |= inst.operands[0].reg;
11612 inst.instruction |= inst.operands[1].reg << 3;
11613 }
11614}
11615
1c444d06
JM
11616static void
11617do_t_orn (void)
11618{
11619 unsigned Rd, Rn;
11620
11621 Rd = inst.operands[0].reg;
11622 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
11623
fdfde340
JM
11624 reject_bad_reg (Rd);
11625 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
11626 reject_bad_reg (Rn);
11627
1c444d06
JM
11628 inst.instruction |= Rd << 8;
11629 inst.instruction |= Rn << 16;
11630
11631 if (!inst.operands[2].isreg)
11632 {
11633 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11634 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11635 }
11636 else
11637 {
11638 unsigned Rm;
11639
11640 Rm = inst.operands[2].reg;
fdfde340 11641 reject_bad_reg (Rm);
1c444d06
JM
11642
11643 constraint (inst.operands[2].shifted
11644 && inst.operands[2].immisreg,
11645 _("shift must be constant"));
11646 encode_thumb32_shifted_operand (2);
11647 }
11648}
11649
c19d1205
ZW
11650static void
11651do_t_pkhbt (void)
11652{
fdfde340
JM
11653 unsigned Rd, Rn, Rm;
11654
11655 Rd = inst.operands[0].reg;
11656 Rn = inst.operands[1].reg;
11657 Rm = inst.operands[2].reg;
11658
11659 reject_bad_reg (Rd);
11660 reject_bad_reg (Rn);
11661 reject_bad_reg (Rm);
11662
11663 inst.instruction |= Rd << 8;
11664 inst.instruction |= Rn << 16;
11665 inst.instruction |= Rm;
c19d1205
ZW
11666 if (inst.operands[3].present)
11667 {
11668 unsigned int val = inst.reloc.exp.X_add_number;
11669 constraint (inst.reloc.exp.X_op != O_constant,
11670 _("expression too complex"));
11671 inst.instruction |= (val & 0x1c) << 10;
11672 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 11673 }
c19d1205 11674}
b05fe5cf 11675
c19d1205
ZW
11676static void
11677do_t_pkhtb (void)
11678{
11679 if (!inst.operands[3].present)
1ef52f49
NC
11680 {
11681 unsigned Rtmp;
11682
11683 inst.instruction &= ~0x00000020;
11684
11685 /* PR 10168. Swap the Rm and Rn registers. */
11686 Rtmp = inst.operands[1].reg;
11687 inst.operands[1].reg = inst.operands[2].reg;
11688 inst.operands[2].reg = Rtmp;
11689 }
c19d1205 11690 do_t_pkhbt ();
b05fe5cf
ZW
11691}
11692
c19d1205
ZW
11693static void
11694do_t_pld (void)
11695{
fdfde340
JM
11696 if (inst.operands[0].immisreg)
11697 reject_bad_reg (inst.operands[0].imm);
11698
c19d1205
ZW
11699 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
11700}
b05fe5cf 11701
c19d1205
ZW
11702static void
11703do_t_push_pop (void)
b99bd4ef 11704{
e9f89963 11705 unsigned mask;
5f4273c7 11706
c19d1205
ZW
11707 constraint (inst.operands[0].writeback,
11708 _("push/pop do not support {reglist}^"));
11709 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
11710 _("expression too complex"));
b99bd4ef 11711
e9f89963
PB
11712 mask = inst.operands[0].imm;
11713 if ((mask & ~0xff) == 0)
3c707909 11714 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
c19d1205 11715 else if ((inst.instruction == T_MNEM_push
e9f89963 11716 && (mask & ~0xff) == 1 << REG_LR)
c19d1205 11717 || (inst.instruction == T_MNEM_pop
e9f89963 11718 && (mask & ~0xff) == 1 << REG_PC))
b99bd4ef 11719 {
c19d1205
ZW
11720 inst.instruction = THUMB_OP16 (inst.instruction);
11721 inst.instruction |= THUMB_PP_PC_LR;
3c707909 11722 inst.instruction |= mask & 0xff;
c19d1205
ZW
11723 }
11724 else if (unified_syntax)
11725 {
3c707909 11726 inst.instruction = THUMB_OP32 (inst.instruction);
5f4273c7 11727 encode_thumb2_ldmstm (13, mask, TRUE);
c19d1205
ZW
11728 }
11729 else
11730 {
11731 inst.error = _("invalid register list to push/pop instruction");
11732 return;
11733 }
c19d1205 11734}
b99bd4ef 11735
c19d1205
ZW
11736static void
11737do_t_rbit (void)
11738{
fdfde340
JM
11739 unsigned Rd, Rm;
11740
11741 Rd = inst.operands[0].reg;
11742 Rm = inst.operands[1].reg;
11743
11744 reject_bad_reg (Rd);
11745 reject_bad_reg (Rm);
11746
11747 inst.instruction |= Rd << 8;
11748 inst.instruction |= Rm << 16;
11749 inst.instruction |= Rm;
c19d1205 11750}
b99bd4ef 11751
c19d1205
ZW
11752static void
11753do_t_rev (void)
11754{
fdfde340
JM
11755 unsigned Rd, Rm;
11756
11757 Rd = inst.operands[0].reg;
11758 Rm = inst.operands[1].reg;
11759
11760 reject_bad_reg (Rd);
11761 reject_bad_reg (Rm);
11762
11763 if (Rd <= 7 && Rm <= 7
c19d1205
ZW
11764 && inst.size_req != 4)
11765 {
11766 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11767 inst.instruction |= Rd;
11768 inst.instruction |= Rm << 3;
c19d1205
ZW
11769 }
11770 else if (unified_syntax)
11771 {
11772 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11773 inst.instruction |= Rd << 8;
11774 inst.instruction |= Rm << 16;
11775 inst.instruction |= Rm;
c19d1205
ZW
11776 }
11777 else
11778 inst.error = BAD_HIREG;
11779}
b99bd4ef 11780
1c444d06
JM
11781static void
11782do_t_rrx (void)
11783{
11784 unsigned Rd, Rm;
11785
11786 Rd = inst.operands[0].reg;
11787 Rm = inst.operands[1].reg;
11788
fdfde340
JM
11789 reject_bad_reg (Rd);
11790 reject_bad_reg (Rm);
c921be7d 11791
1c444d06
JM
11792 inst.instruction |= Rd << 8;
11793 inst.instruction |= Rm;
11794}
11795
c19d1205
ZW
11796static void
11797do_t_rsb (void)
11798{
fdfde340 11799 unsigned Rd, Rs;
b99bd4ef 11800
c19d1205
ZW
11801 Rd = inst.operands[0].reg;
11802 Rs = (inst.operands[1].present
11803 ? inst.operands[1].reg /* Rd, Rs, foo */
11804 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 11805
fdfde340
JM
11806 reject_bad_reg (Rd);
11807 reject_bad_reg (Rs);
11808 if (inst.operands[2].isreg)
11809 reject_bad_reg (inst.operands[2].reg);
11810
c19d1205
ZW
11811 inst.instruction |= Rd << 8;
11812 inst.instruction |= Rs << 16;
11813 if (!inst.operands[2].isreg)
11814 {
026d3abb
PB
11815 bfd_boolean narrow;
11816
11817 if ((inst.instruction & 0x00100000) != 0)
e07e6e58 11818 narrow = !in_it_block ();
026d3abb 11819 else
e07e6e58 11820 narrow = in_it_block ();
026d3abb
PB
11821
11822 if (Rd > 7 || Rs > 7)
11823 narrow = FALSE;
11824
11825 if (inst.size_req == 4 || !unified_syntax)
11826 narrow = FALSE;
11827
11828 if (inst.reloc.exp.X_op != O_constant
11829 || inst.reloc.exp.X_add_number != 0)
11830 narrow = FALSE;
11831
11832 /* Turn rsb #0 into 16-bit neg. We should probably do this via
11833 relaxation, but it doesn't seem worth the hassle. */
11834 if (narrow)
11835 {
11836 inst.reloc.type = BFD_RELOC_UNUSED;
11837 inst.instruction = THUMB_OP16 (T_MNEM_negs);
11838 inst.instruction |= Rs << 3;
11839 inst.instruction |= Rd;
11840 }
11841 else
11842 {
11843 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11844 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11845 }
c19d1205
ZW
11846 }
11847 else
11848 encode_thumb32_shifted_operand (2);
11849}
b99bd4ef 11850
c19d1205
ZW
11851static void
11852do_t_setend (void)
11853{
12e37cbc
MGD
11854 if (warn_on_deprecated
11855 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11856 as_warn (_("setend use is deprecated for ARMv8"));
11857
e07e6e58 11858 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
11859 if (inst.operands[0].imm)
11860 inst.instruction |= 0x8;
11861}
b99bd4ef 11862
c19d1205
ZW
11863static void
11864do_t_shift (void)
11865{
11866 if (!inst.operands[1].present)
11867 inst.operands[1].reg = inst.operands[0].reg;
11868
11869 if (unified_syntax)
11870 {
3d388997
PB
11871 bfd_boolean narrow;
11872 int shift_kind;
11873
11874 switch (inst.instruction)
11875 {
11876 case T_MNEM_asr:
11877 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
11878 case T_MNEM_lsl:
11879 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
11880 case T_MNEM_lsr:
11881 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
11882 case T_MNEM_ror:
11883 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
11884 default: abort ();
11885 }
11886
11887 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11888 narrow = !in_it_block ();
3d388997 11889 else
e07e6e58 11890 narrow = in_it_block ();
3d388997
PB
11891 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11892 narrow = FALSE;
11893 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
11894 narrow = FALSE;
11895 if (inst.operands[2].isreg
11896 && (inst.operands[1].reg != inst.operands[0].reg
11897 || inst.operands[2].reg > 7))
11898 narrow = FALSE;
11899 if (inst.size_req == 4)
11900 narrow = FALSE;
11901
fdfde340
JM
11902 reject_bad_reg (inst.operands[0].reg);
11903 reject_bad_reg (inst.operands[1].reg);
c921be7d 11904
3d388997 11905 if (!narrow)
c19d1205
ZW
11906 {
11907 if (inst.operands[2].isreg)
b99bd4ef 11908 {
fdfde340 11909 reject_bad_reg (inst.operands[2].reg);
c19d1205
ZW
11910 inst.instruction = THUMB_OP32 (inst.instruction);
11911 inst.instruction |= inst.operands[0].reg << 8;
11912 inst.instruction |= inst.operands[1].reg << 16;
11913 inst.instruction |= inst.operands[2].reg;
94342ec3
NC
11914
11915 /* PR 12854: Error on extraneous shifts. */
11916 constraint (inst.operands[2].shifted,
11917 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11918 }
11919 else
11920 {
11921 inst.operands[1].shifted = 1;
3d388997 11922 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
11923 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
11924 ? T_MNEM_movs : T_MNEM_mov);
11925 inst.instruction |= inst.operands[0].reg << 8;
11926 encode_thumb32_shifted_operand (1);
11927 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
11928 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
11929 }
11930 }
11931 else
11932 {
c19d1205 11933 if (inst.operands[2].isreg)
b99bd4ef 11934 {
3d388997 11935 switch (shift_kind)
b99bd4ef 11936 {
3d388997
PB
11937 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
11938 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
11939 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
11940 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 11941 default: abort ();
b99bd4ef 11942 }
5f4273c7 11943
c19d1205
ZW
11944 inst.instruction |= inst.operands[0].reg;
11945 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11946
11947 /* PR 12854: Error on extraneous shifts. */
11948 constraint (inst.operands[2].shifted,
11949 _("extraneous shift as part of operand to shift insn"));
b99bd4ef
NC
11950 }
11951 else
11952 {
3d388997 11953 switch (shift_kind)
b99bd4ef 11954 {
3d388997
PB
11955 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11956 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11957 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 11958 default: abort ();
b99bd4ef 11959 }
c19d1205
ZW
11960 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11961 inst.instruction |= inst.operands[0].reg;
11962 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
11963 }
11964 }
c19d1205
ZW
11965 }
11966 else
11967 {
11968 constraint (inst.operands[0].reg > 7
11969 || inst.operands[1].reg > 7, BAD_HIREG);
11970 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 11971
c19d1205
ZW
11972 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
11973 {
11974 constraint (inst.operands[2].reg > 7, BAD_HIREG);
11975 constraint (inst.operands[0].reg != inst.operands[1].reg,
11976 _("source1 and dest must be same register"));
b99bd4ef 11977
c19d1205
ZW
11978 switch (inst.instruction)
11979 {
11980 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
11981 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
11982 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
11983 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
11984 default: abort ();
11985 }
5f4273c7 11986
c19d1205
ZW
11987 inst.instruction |= inst.operands[0].reg;
11988 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11989
11990 /* PR 12854: Error on extraneous shifts. */
11991 constraint (inst.operands[2].shifted,
11992 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11993 }
11994 else
b99bd4ef 11995 {
c19d1205
ZW
11996 switch (inst.instruction)
11997 {
11998 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
11999 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
12000 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
12001 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
12002 default: abort ();
12003 }
12004 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12005 inst.instruction |= inst.operands[0].reg;
12006 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
12007 }
12008 }
b99bd4ef
NC
12009}
12010
12011static void
c19d1205 12012do_t_simd (void)
b99bd4ef 12013{
fdfde340
JM
12014 unsigned Rd, Rn, Rm;
12015
12016 Rd = inst.operands[0].reg;
12017 Rn = inst.operands[1].reg;
12018 Rm = inst.operands[2].reg;
12019
12020 reject_bad_reg (Rd);
12021 reject_bad_reg (Rn);
12022 reject_bad_reg (Rm);
12023
12024 inst.instruction |= Rd << 8;
12025 inst.instruction |= Rn << 16;
12026 inst.instruction |= Rm;
c19d1205 12027}
b99bd4ef 12028
03ee1b7f
NC
12029static void
12030do_t_simd2 (void)
12031{
12032 unsigned Rd, Rn, Rm;
12033
12034 Rd = inst.operands[0].reg;
12035 Rm = inst.operands[1].reg;
12036 Rn = inst.operands[2].reg;
12037
12038 reject_bad_reg (Rd);
12039 reject_bad_reg (Rn);
12040 reject_bad_reg (Rm);
12041
12042 inst.instruction |= Rd << 8;
12043 inst.instruction |= Rn << 16;
12044 inst.instruction |= Rm;
12045}
12046
c19d1205 12047static void
3eb17e6b 12048do_t_smc (void)
c19d1205
ZW
12049{
12050 unsigned int value = inst.reloc.exp.X_add_number;
f4c65163
MGD
12051 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
12052 _("SMC is not permitted on this architecture"));
c19d1205
ZW
12053 constraint (inst.reloc.exp.X_op != O_constant,
12054 _("expression too complex"));
12055 inst.reloc.type = BFD_RELOC_UNUSED;
12056 inst.instruction |= (value & 0xf000) >> 12;
12057 inst.instruction |= (value & 0x0ff0);
12058 inst.instruction |= (value & 0x000f) << 16;
12059}
b99bd4ef 12060
90ec0d68
MGD
12061static void
12062do_t_hvc (void)
12063{
12064 unsigned int value = inst.reloc.exp.X_add_number;
12065
12066 inst.reloc.type = BFD_RELOC_UNUSED;
12067 inst.instruction |= (value & 0x0fff);
12068 inst.instruction |= (value & 0xf000) << 4;
12069}
12070
c19d1205 12071static void
3a21c15a 12072do_t_ssat_usat (int bias)
c19d1205 12073{
fdfde340
JM
12074 unsigned Rd, Rn;
12075
12076 Rd = inst.operands[0].reg;
12077 Rn = inst.operands[2].reg;
12078
12079 reject_bad_reg (Rd);
12080 reject_bad_reg (Rn);
12081
12082 inst.instruction |= Rd << 8;
3a21c15a 12083 inst.instruction |= inst.operands[1].imm - bias;
fdfde340 12084 inst.instruction |= Rn << 16;
b99bd4ef 12085
c19d1205 12086 if (inst.operands[3].present)
b99bd4ef 12087 {
3a21c15a
NC
12088 offsetT shift_amount = inst.reloc.exp.X_add_number;
12089
12090 inst.reloc.type = BFD_RELOC_UNUSED;
12091
c19d1205
ZW
12092 constraint (inst.reloc.exp.X_op != O_constant,
12093 _("expression too complex"));
b99bd4ef 12094
3a21c15a 12095 if (shift_amount != 0)
6189168b 12096 {
3a21c15a
NC
12097 constraint (shift_amount > 31,
12098 _("shift expression is too large"));
12099
c19d1205 12100 if (inst.operands[3].shift_kind == SHIFT_ASR)
3a21c15a
NC
12101 inst.instruction |= 0x00200000; /* sh bit. */
12102
12103 inst.instruction |= (shift_amount & 0x1c) << 10;
12104 inst.instruction |= (shift_amount & 0x03) << 6;
6189168b
NC
12105 }
12106 }
b99bd4ef 12107}
c921be7d 12108
3a21c15a
NC
12109static void
12110do_t_ssat (void)
12111{
12112 do_t_ssat_usat (1);
12113}
b99bd4ef 12114
0dd132b6 12115static void
c19d1205 12116do_t_ssat16 (void)
0dd132b6 12117{
fdfde340
JM
12118 unsigned Rd, Rn;
12119
12120 Rd = inst.operands[0].reg;
12121 Rn = inst.operands[2].reg;
12122
12123 reject_bad_reg (Rd);
12124 reject_bad_reg (Rn);
12125
12126 inst.instruction |= Rd << 8;
c19d1205 12127 inst.instruction |= inst.operands[1].imm - 1;
fdfde340 12128 inst.instruction |= Rn << 16;
c19d1205 12129}
0dd132b6 12130
c19d1205
ZW
12131static void
12132do_t_strex (void)
12133{
12134 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
12135 || inst.operands[2].postind || inst.operands[2].writeback
12136 || inst.operands[2].immisreg || inst.operands[2].shifted
12137 || inst.operands[2].negative,
01cfc07f 12138 BAD_ADDR_MODE);
0dd132b6 12139
5be8be5d
DG
12140 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
12141
c19d1205
ZW
12142 inst.instruction |= inst.operands[0].reg << 8;
12143 inst.instruction |= inst.operands[1].reg << 12;
12144 inst.instruction |= inst.operands[2].reg << 16;
12145 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
12146}
12147
b99bd4ef 12148static void
c19d1205 12149do_t_strexd (void)
b99bd4ef 12150{
c19d1205
ZW
12151 if (!inst.operands[2].present)
12152 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 12153
c19d1205
ZW
12154 constraint (inst.operands[0].reg == inst.operands[1].reg
12155 || inst.operands[0].reg == inst.operands[2].reg
f8a8e9d6 12156 || inst.operands[0].reg == inst.operands[3].reg,
c19d1205 12157 BAD_OVERLAP);
b99bd4ef 12158
c19d1205
ZW
12159 inst.instruction |= inst.operands[0].reg;
12160 inst.instruction |= inst.operands[1].reg << 12;
12161 inst.instruction |= inst.operands[2].reg << 8;
12162 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
12163}
12164
12165static void
c19d1205 12166do_t_sxtah (void)
b99bd4ef 12167{
fdfde340
JM
12168 unsigned Rd, Rn, Rm;
12169
12170 Rd = inst.operands[0].reg;
12171 Rn = inst.operands[1].reg;
12172 Rm = inst.operands[2].reg;
12173
12174 reject_bad_reg (Rd);
12175 reject_bad_reg (Rn);
12176 reject_bad_reg (Rm);
12177
12178 inst.instruction |= Rd << 8;
12179 inst.instruction |= Rn << 16;
12180 inst.instruction |= Rm;
c19d1205
ZW
12181 inst.instruction |= inst.operands[3].imm << 4;
12182}
b99bd4ef 12183
c19d1205
ZW
12184static void
12185do_t_sxth (void)
12186{
fdfde340
JM
12187 unsigned Rd, Rm;
12188
12189 Rd = inst.operands[0].reg;
12190 Rm = inst.operands[1].reg;
12191
12192 reject_bad_reg (Rd);
12193 reject_bad_reg (Rm);
c921be7d
NC
12194
12195 if (inst.instruction <= 0xffff
12196 && inst.size_req != 4
fdfde340 12197 && Rd <= 7 && Rm <= 7
c19d1205 12198 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 12199 {
c19d1205 12200 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12201 inst.instruction |= Rd;
12202 inst.instruction |= Rm << 3;
b99bd4ef 12203 }
c19d1205 12204 else if (unified_syntax)
b99bd4ef 12205 {
c19d1205
ZW
12206 if (inst.instruction <= 0xffff)
12207 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12208 inst.instruction |= Rd << 8;
12209 inst.instruction |= Rm;
c19d1205 12210 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 12211 }
c19d1205 12212 else
b99bd4ef 12213 {
c19d1205
ZW
12214 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
12215 _("Thumb encoding does not support rotation"));
12216 constraint (1, BAD_HIREG);
b99bd4ef 12217 }
c19d1205 12218}
b99bd4ef 12219
c19d1205
ZW
12220static void
12221do_t_swi (void)
12222{
b2a5fbdc
MGD
12223 /* We have to do the following check manually as ARM_EXT_OS only applies
12224 to ARM_EXT_V6M. */
12225 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6m))
12226 {
ac7f631b
NC
12227 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_os)
12228 /* This only applies to the v6m howver, not later architectures. */
12229 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7))
b2a5fbdc
MGD
12230 as_bad (_("SVC is not permitted on this architecture"));
12231 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, arm_ext_os);
12232 }
12233
c19d1205
ZW
12234 inst.reloc.type = BFD_RELOC_ARM_SWI;
12235}
b99bd4ef 12236
92e90b6e
PB
12237static void
12238do_t_tb (void)
12239{
fdfde340 12240 unsigned Rn, Rm;
92e90b6e
PB
12241 int half;
12242
12243 half = (inst.instruction & 0x10) != 0;
e07e6e58 12244 set_it_insn_type_last ();
dfa9f0d5
PB
12245 constraint (inst.operands[0].immisreg,
12246 _("instruction requires register index"));
fdfde340
JM
12247
12248 Rn = inst.operands[0].reg;
12249 Rm = inst.operands[0].imm;
c921be7d 12250
fdfde340
JM
12251 constraint (Rn == REG_SP, BAD_SP);
12252 reject_bad_reg (Rm);
12253
92e90b6e
PB
12254 constraint (!half && inst.operands[0].shifted,
12255 _("instruction does not allow shifted index"));
fdfde340 12256 inst.instruction |= (Rn << 16) | Rm;
92e90b6e
PB
12257}
12258
c19d1205
ZW
12259static void
12260do_t_usat (void)
12261{
3a21c15a 12262 do_t_ssat_usat (0);
b99bd4ef
NC
12263}
12264
12265static void
c19d1205 12266do_t_usat16 (void)
b99bd4ef 12267{
fdfde340
JM
12268 unsigned Rd, Rn;
12269
12270 Rd = inst.operands[0].reg;
12271 Rn = inst.operands[2].reg;
12272
12273 reject_bad_reg (Rd);
12274 reject_bad_reg (Rn);
12275
12276 inst.instruction |= Rd << 8;
c19d1205 12277 inst.instruction |= inst.operands[1].imm;
fdfde340 12278 inst.instruction |= Rn << 16;
b99bd4ef 12279}
c19d1205 12280
5287ad62 12281/* Neon instruction encoder helpers. */
5f4273c7 12282
5287ad62 12283/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 12284
5287ad62
JB
12285/* An "invalid" code for the following tables. */
12286#define N_INV -1u
12287
12288struct neon_tab_entry
b99bd4ef 12289{
5287ad62
JB
12290 unsigned integer;
12291 unsigned float_or_poly;
12292 unsigned scalar_or_imm;
12293};
5f4273c7 12294
5287ad62
JB
12295/* Map overloaded Neon opcodes to their respective encodings. */
12296#define NEON_ENC_TAB \
12297 X(vabd, 0x0000700, 0x1200d00, N_INV), \
12298 X(vmax, 0x0000600, 0x0000f00, N_INV), \
12299 X(vmin, 0x0000610, 0x0200f00, N_INV), \
12300 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
12301 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
12302 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
12303 X(vadd, 0x0000800, 0x0000d00, N_INV), \
12304 X(vsub, 0x1000800, 0x0200d00, N_INV), \
12305 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
12306 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
12307 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
12308 /* Register variants of the following two instructions are encoded as
e07e6e58 12309 vcge / vcgt with the operands reversed. */ \
92559b5b
PB
12310 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
12311 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
62f3b8c8
PB
12312 X(vfma, N_INV, 0x0000c10, N_INV), \
12313 X(vfms, N_INV, 0x0200c10, N_INV), \
5287ad62
JB
12314 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
12315 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
12316 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
12317 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
12318 X(vmlal, 0x0800800, N_INV, 0x0800240), \
12319 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
12320 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
12321 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
12322 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
12323 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
12324 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
12325 X(vshl, 0x0000400, N_INV, 0x0800510), \
12326 X(vqshl, 0x0000410, N_INV, 0x0800710), \
12327 X(vand, 0x0000110, N_INV, 0x0800030), \
12328 X(vbic, 0x0100110, N_INV, 0x0800030), \
12329 X(veor, 0x1000110, N_INV, N_INV), \
12330 X(vorn, 0x0300110, N_INV, 0x0800010), \
12331 X(vorr, 0x0200110, N_INV, 0x0800010), \
12332 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
12333 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
12334 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
12335 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
12336 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
12337 X(vst1, 0x0000000, 0x0800000, N_INV), \
12338 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
12339 X(vst2, 0x0000100, 0x0800100, N_INV), \
12340 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
12341 X(vst3, 0x0000200, 0x0800200, N_INV), \
12342 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
12343 X(vst4, 0x0000300, 0x0800300, N_INV), \
12344 X(vmovn, 0x1b20200, N_INV, N_INV), \
12345 X(vtrn, 0x1b20080, N_INV, N_INV), \
12346 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
12347 X(vqmovun, 0x1b20240, N_INV, N_INV), \
12348 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
e6655fda
PB
12349 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
12350 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
62f3b8c8
PB
12351 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
12352 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
037e8744
JB
12353 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
12354 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
12355 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
33399f07
MGD
12356 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
12357 X(vseleq, 0xe000a00, N_INV, N_INV), \
12358 X(vselvs, 0xe100a00, N_INV, N_INV), \
12359 X(vselge, 0xe200a00, N_INV, N_INV), \
73924fbc
MGD
12360 X(vselgt, 0xe300a00, N_INV, N_INV), \
12361 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
7e8e6784 12362 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
30bdf752
MGD
12363 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
12364 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
91ff7894 12365 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
48adcd8e 12366 X(aes, 0x3b00300, N_INV, N_INV), \
3c9017d2
MGD
12367 X(sha3op, 0x2000c00, N_INV, N_INV), \
12368 X(sha1h, 0x3b902c0, N_INV, N_INV), \
12369 X(sha2op, 0x3ba0380, N_INV, N_INV)
5287ad62
JB
12370
12371enum neon_opc
12372{
12373#define X(OPC,I,F,S) N_MNEM_##OPC
12374NEON_ENC_TAB
12375#undef X
12376};
b99bd4ef 12377
5287ad62
JB
12378static const struct neon_tab_entry neon_enc_tab[] =
12379{
12380#define X(OPC,I,F,S) { (I), (F), (S) }
12381NEON_ENC_TAB
12382#undef X
12383};
b99bd4ef 12384
88714cb8
DG
12385/* Do not use these macros; instead, use NEON_ENCODE defined below. */
12386#define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12387#define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12388#define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12389#define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12390#define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12391#define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12392#define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12393#define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12394#define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12395#define NEON_ENC_SINGLE_(X) \
037e8744 12396 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
88714cb8 12397#define NEON_ENC_DOUBLE_(X) \
037e8744 12398 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
33399f07
MGD
12399#define NEON_ENC_FPV8_(X) \
12400 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
5287ad62 12401
88714cb8
DG
12402#define NEON_ENCODE(type, inst) \
12403 do \
12404 { \
12405 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
12406 inst.is_neon = 1; \
12407 } \
12408 while (0)
12409
12410#define check_neon_suffixes \
12411 do \
12412 { \
12413 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
12414 { \
12415 as_bad (_("invalid neon suffix for non neon instruction")); \
12416 return; \
12417 } \
12418 } \
12419 while (0)
12420
037e8744
JB
12421/* Define shapes for instruction operands. The following mnemonic characters
12422 are used in this table:
5287ad62 12423
037e8744 12424 F - VFP S<n> register
5287ad62
JB
12425 D - Neon D<n> register
12426 Q - Neon Q<n> register
12427 I - Immediate
12428 S - Scalar
12429 R - ARM register
12430 L - D<n> register list
5f4273c7 12431
037e8744
JB
12432 This table is used to generate various data:
12433 - enumerations of the form NS_DDR to be used as arguments to
12434 neon_select_shape.
12435 - a table classifying shapes into single, double, quad, mixed.
5f4273c7 12436 - a table used to drive neon_select_shape. */
b99bd4ef 12437
037e8744
JB
12438#define NEON_SHAPE_DEF \
12439 X(3, (D, D, D), DOUBLE), \
12440 X(3, (Q, Q, Q), QUAD), \
12441 X(3, (D, D, I), DOUBLE), \
12442 X(3, (Q, Q, I), QUAD), \
12443 X(3, (D, D, S), DOUBLE), \
12444 X(3, (Q, Q, S), QUAD), \
12445 X(2, (D, D), DOUBLE), \
12446 X(2, (Q, Q), QUAD), \
12447 X(2, (D, S), DOUBLE), \
12448 X(2, (Q, S), QUAD), \
12449 X(2, (D, R), DOUBLE), \
12450 X(2, (Q, R), QUAD), \
12451 X(2, (D, I), DOUBLE), \
12452 X(2, (Q, I), QUAD), \
12453 X(3, (D, L, D), DOUBLE), \
12454 X(2, (D, Q), MIXED), \
12455 X(2, (Q, D), MIXED), \
12456 X(3, (D, Q, I), MIXED), \
12457 X(3, (Q, D, I), MIXED), \
12458 X(3, (Q, D, D), MIXED), \
12459 X(3, (D, Q, Q), MIXED), \
12460 X(3, (Q, Q, D), MIXED), \
12461 X(3, (Q, D, S), MIXED), \
12462 X(3, (D, Q, S), MIXED), \
12463 X(4, (D, D, D, I), DOUBLE), \
12464 X(4, (Q, Q, Q, I), QUAD), \
12465 X(2, (F, F), SINGLE), \
12466 X(3, (F, F, F), SINGLE), \
12467 X(2, (F, I), SINGLE), \
12468 X(2, (F, D), MIXED), \
12469 X(2, (D, F), MIXED), \
12470 X(3, (F, F, I), MIXED), \
12471 X(4, (R, R, F, F), SINGLE), \
12472 X(4, (F, F, R, R), SINGLE), \
12473 X(3, (D, R, R), DOUBLE), \
12474 X(3, (R, R, D), DOUBLE), \
12475 X(2, (S, R), SINGLE), \
12476 X(2, (R, S), SINGLE), \
12477 X(2, (F, R), SINGLE), \
12478 X(2, (R, F), SINGLE)
12479
12480#define S2(A,B) NS_##A##B
12481#define S3(A,B,C) NS_##A##B##C
12482#define S4(A,B,C,D) NS_##A##B##C##D
12483
12484#define X(N, L, C) S##N L
12485
5287ad62
JB
12486enum neon_shape
12487{
037e8744
JB
12488 NEON_SHAPE_DEF,
12489 NS_NULL
5287ad62 12490};
b99bd4ef 12491
037e8744
JB
12492#undef X
12493#undef S2
12494#undef S3
12495#undef S4
12496
12497enum neon_shape_class
12498{
12499 SC_SINGLE,
12500 SC_DOUBLE,
12501 SC_QUAD,
12502 SC_MIXED
12503};
12504
12505#define X(N, L, C) SC_##C
12506
12507static enum neon_shape_class neon_shape_class[] =
12508{
12509 NEON_SHAPE_DEF
12510};
12511
12512#undef X
12513
12514enum neon_shape_el
12515{
12516 SE_F,
12517 SE_D,
12518 SE_Q,
12519 SE_I,
12520 SE_S,
12521 SE_R,
12522 SE_L
12523};
12524
12525/* Register widths of above. */
12526static unsigned neon_shape_el_size[] =
12527{
12528 32,
12529 64,
12530 128,
12531 0,
12532 32,
12533 32,
12534 0
12535};
12536
12537struct neon_shape_info
12538{
12539 unsigned els;
12540 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
12541};
12542
12543#define S2(A,B) { SE_##A, SE_##B }
12544#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
12545#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
12546
12547#define X(N, L, C) { N, S##N L }
12548
12549static struct neon_shape_info neon_shape_tab[] =
12550{
12551 NEON_SHAPE_DEF
12552};
12553
12554#undef X
12555#undef S2
12556#undef S3
12557#undef S4
12558
5287ad62
JB
12559/* Bit masks used in type checking given instructions.
12560 'N_EQK' means the type must be the same as (or based on in some way) the key
12561 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
12562 set, various other bits can be set as well in order to modify the meaning of
12563 the type constraint. */
12564
12565enum neon_type_mask
12566{
8e79c3df
CM
12567 N_S8 = 0x0000001,
12568 N_S16 = 0x0000002,
12569 N_S32 = 0x0000004,
12570 N_S64 = 0x0000008,
12571 N_U8 = 0x0000010,
12572 N_U16 = 0x0000020,
12573 N_U32 = 0x0000040,
12574 N_U64 = 0x0000080,
12575 N_I8 = 0x0000100,
12576 N_I16 = 0x0000200,
12577 N_I32 = 0x0000400,
12578 N_I64 = 0x0000800,
12579 N_8 = 0x0001000,
12580 N_16 = 0x0002000,
12581 N_32 = 0x0004000,
12582 N_64 = 0x0008000,
12583 N_P8 = 0x0010000,
12584 N_P16 = 0x0020000,
12585 N_F16 = 0x0040000,
12586 N_F32 = 0x0080000,
12587 N_F64 = 0x0100000,
4f51b4bd 12588 N_P64 = 0x0200000,
c921be7d
NC
12589 N_KEY = 0x1000000, /* Key element (main type specifier). */
12590 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
8e79c3df 12591 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
91ff7894 12592 N_UNT = 0x8000000, /* Must be explicitly untyped. */
c921be7d
NC
12593 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
12594 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
12595 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
12596 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
12597 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
12598 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
12599 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
5287ad62 12600 N_UTYP = 0,
4f51b4bd 12601 N_MAX_NONSPECIAL = N_P64
5287ad62
JB
12602};
12603
dcbf9037
JB
12604#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
12605
5287ad62
JB
12606#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
12607#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
12608#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
12609#define N_SUF_32 (N_SU_32 | N_F32)
12610#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
12611#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F32)
12612
12613/* Pass this as the first type argument to neon_check_type to ignore types
12614 altogether. */
12615#define N_IGNORE_TYPE (N_KEY | N_EQK)
12616
037e8744
JB
12617/* Select a "shape" for the current instruction (describing register types or
12618 sizes) from a list of alternatives. Return NS_NULL if the current instruction
12619 doesn't fit. For non-polymorphic shapes, checking is usually done as a
12620 function of operand parsing, so this function doesn't need to be called.
12621 Shapes should be listed in order of decreasing length. */
5287ad62
JB
12622
12623static enum neon_shape
037e8744 12624neon_select_shape (enum neon_shape shape, ...)
5287ad62 12625{
037e8744
JB
12626 va_list ap;
12627 enum neon_shape first_shape = shape;
5287ad62
JB
12628
12629 /* Fix missing optional operands. FIXME: we don't know at this point how
12630 many arguments we should have, so this makes the assumption that we have
12631 > 1. This is true of all current Neon opcodes, I think, but may not be
12632 true in the future. */
12633 if (!inst.operands[1].present)
12634 inst.operands[1] = inst.operands[0];
12635
037e8744 12636 va_start (ap, shape);
5f4273c7 12637
21d799b5 12638 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
037e8744
JB
12639 {
12640 unsigned j;
12641 int matches = 1;
12642
12643 for (j = 0; j < neon_shape_tab[shape].els; j++)
12644 {
12645 if (!inst.operands[j].present)
12646 {
12647 matches = 0;
12648 break;
12649 }
12650
12651 switch (neon_shape_tab[shape].el[j])
12652 {
12653 case SE_F:
12654 if (!(inst.operands[j].isreg
12655 && inst.operands[j].isvec
12656 && inst.operands[j].issingle
12657 && !inst.operands[j].isquad))
12658 matches = 0;
12659 break;
12660
12661 case SE_D:
12662 if (!(inst.operands[j].isreg
12663 && inst.operands[j].isvec
12664 && !inst.operands[j].isquad
12665 && !inst.operands[j].issingle))
12666 matches = 0;
12667 break;
12668
12669 case SE_R:
12670 if (!(inst.operands[j].isreg
12671 && !inst.operands[j].isvec))
12672 matches = 0;
12673 break;
12674
12675 case SE_Q:
12676 if (!(inst.operands[j].isreg
12677 && inst.operands[j].isvec
12678 && inst.operands[j].isquad
12679 && !inst.operands[j].issingle))
12680 matches = 0;
12681 break;
12682
12683 case SE_I:
12684 if (!(!inst.operands[j].isreg
12685 && !inst.operands[j].isscalar))
12686 matches = 0;
12687 break;
12688
12689 case SE_S:
12690 if (!(!inst.operands[j].isreg
12691 && inst.operands[j].isscalar))
12692 matches = 0;
12693 break;
12694
12695 case SE_L:
12696 break;
12697 }
3fde54a2
JZ
12698 if (!matches)
12699 break;
037e8744 12700 }
ad6cec43
MGD
12701 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
12702 /* We've matched all the entries in the shape table, and we don't
12703 have any left over operands which have not been matched. */
5287ad62 12704 break;
037e8744 12705 }
5f4273c7 12706
037e8744 12707 va_end (ap);
5287ad62 12708
037e8744
JB
12709 if (shape == NS_NULL && first_shape != NS_NULL)
12710 first_error (_("invalid instruction shape"));
5287ad62 12711
037e8744
JB
12712 return shape;
12713}
5287ad62 12714
037e8744
JB
12715/* True if SHAPE is predominantly a quadword operation (most of the time, this
12716 means the Q bit should be set). */
12717
12718static int
12719neon_quad (enum neon_shape shape)
12720{
12721 return neon_shape_class[shape] == SC_QUAD;
5287ad62 12722}
037e8744 12723
5287ad62
JB
12724static void
12725neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
12726 unsigned *g_size)
12727{
12728 /* Allow modification to be made to types which are constrained to be
12729 based on the key element, based on bits set alongside N_EQK. */
12730 if ((typebits & N_EQK) != 0)
12731 {
12732 if ((typebits & N_HLF) != 0)
12733 *g_size /= 2;
12734 else if ((typebits & N_DBL) != 0)
12735 *g_size *= 2;
12736 if ((typebits & N_SGN) != 0)
12737 *g_type = NT_signed;
12738 else if ((typebits & N_UNS) != 0)
12739 *g_type = NT_unsigned;
12740 else if ((typebits & N_INT) != 0)
12741 *g_type = NT_integer;
12742 else if ((typebits & N_FLT) != 0)
12743 *g_type = NT_float;
dcbf9037
JB
12744 else if ((typebits & N_SIZ) != 0)
12745 *g_type = NT_untyped;
5287ad62
JB
12746 }
12747}
5f4273c7 12748
5287ad62
JB
12749/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
12750 operand type, i.e. the single type specified in a Neon instruction when it
12751 is the only one given. */
12752
12753static struct neon_type_el
12754neon_type_promote (struct neon_type_el *key, unsigned thisarg)
12755{
12756 struct neon_type_el dest = *key;
5f4273c7 12757
9c2799c2 12758 gas_assert ((thisarg & N_EQK) != 0);
5f4273c7 12759
5287ad62
JB
12760 neon_modify_type_size (thisarg, &dest.type, &dest.size);
12761
12762 return dest;
12763}
12764
12765/* Convert Neon type and size into compact bitmask representation. */
12766
12767static enum neon_type_mask
12768type_chk_of_el_type (enum neon_el_type type, unsigned size)
12769{
12770 switch (type)
12771 {
12772 case NT_untyped:
12773 switch (size)
12774 {
12775 case 8: return N_8;
12776 case 16: return N_16;
12777 case 32: return N_32;
12778 case 64: return N_64;
12779 default: ;
12780 }
12781 break;
12782
12783 case NT_integer:
12784 switch (size)
12785 {
12786 case 8: return N_I8;
12787 case 16: return N_I16;
12788 case 32: return N_I32;
12789 case 64: return N_I64;
12790 default: ;
12791 }
12792 break;
12793
12794 case NT_float:
037e8744
JB
12795 switch (size)
12796 {
8e79c3df 12797 case 16: return N_F16;
037e8744
JB
12798 case 32: return N_F32;
12799 case 64: return N_F64;
12800 default: ;
12801 }
5287ad62
JB
12802 break;
12803
12804 case NT_poly:
12805 switch (size)
12806 {
12807 case 8: return N_P8;
12808 case 16: return N_P16;
4f51b4bd 12809 case 64: return N_P64;
5287ad62
JB
12810 default: ;
12811 }
12812 break;
12813
12814 case NT_signed:
12815 switch (size)
12816 {
12817 case 8: return N_S8;
12818 case 16: return N_S16;
12819 case 32: return N_S32;
12820 case 64: return N_S64;
12821 default: ;
12822 }
12823 break;
12824
12825 case NT_unsigned:
12826 switch (size)
12827 {
12828 case 8: return N_U8;
12829 case 16: return N_U16;
12830 case 32: return N_U32;
12831 case 64: return N_U64;
12832 default: ;
12833 }
12834 break;
12835
12836 default: ;
12837 }
5f4273c7 12838
5287ad62
JB
12839 return N_UTYP;
12840}
12841
12842/* Convert compact Neon bitmask type representation to a type and size. Only
12843 handles the case where a single bit is set in the mask. */
12844
dcbf9037 12845static int
5287ad62
JB
12846el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
12847 enum neon_type_mask mask)
12848{
dcbf9037
JB
12849 if ((mask & N_EQK) != 0)
12850 return FAIL;
12851
5287ad62
JB
12852 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
12853 *size = 8;
c70a8987 12854 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16)) != 0)
5287ad62 12855 *size = 16;
dcbf9037 12856 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 12857 *size = 32;
4f51b4bd 12858 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
5287ad62 12859 *size = 64;
dcbf9037
JB
12860 else
12861 return FAIL;
12862
5287ad62
JB
12863 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
12864 *type = NT_signed;
dcbf9037 12865 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 12866 *type = NT_unsigned;
dcbf9037 12867 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 12868 *type = NT_integer;
dcbf9037 12869 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 12870 *type = NT_untyped;
4f51b4bd 12871 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
5287ad62 12872 *type = NT_poly;
c70a8987 12873 else if ((mask & (N_F16 | N_F32 | N_F64)) != 0)
5287ad62 12874 *type = NT_float;
dcbf9037
JB
12875 else
12876 return FAIL;
5f4273c7 12877
dcbf9037 12878 return SUCCESS;
5287ad62
JB
12879}
12880
12881/* Modify a bitmask of allowed types. This is only needed for type
12882 relaxation. */
12883
12884static unsigned
12885modify_types_allowed (unsigned allowed, unsigned mods)
12886{
12887 unsigned size;
12888 enum neon_el_type type;
12889 unsigned destmask;
12890 int i;
5f4273c7 12891
5287ad62 12892 destmask = 0;
5f4273c7 12893
5287ad62
JB
12894 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
12895 {
21d799b5
NC
12896 if (el_type_of_type_chk (&type, &size,
12897 (enum neon_type_mask) (allowed & i)) == SUCCESS)
dcbf9037
JB
12898 {
12899 neon_modify_type_size (mods, &type, &size);
12900 destmask |= type_chk_of_el_type (type, size);
12901 }
5287ad62 12902 }
5f4273c7 12903
5287ad62
JB
12904 return destmask;
12905}
12906
12907/* Check type and return type classification.
12908 The manual states (paraphrase): If one datatype is given, it indicates the
12909 type given in:
12910 - the second operand, if there is one
12911 - the operand, if there is no second operand
12912 - the result, if there are no operands.
12913 This isn't quite good enough though, so we use a concept of a "key" datatype
12914 which is set on a per-instruction basis, which is the one which matters when
12915 only one data type is written.
12916 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 12917 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
12918
12919static struct neon_type_el
12920neon_check_type (unsigned els, enum neon_shape ns, ...)
12921{
12922 va_list ap;
12923 unsigned i, pass, key_el = 0;
12924 unsigned types[NEON_MAX_TYPE_ELS];
12925 enum neon_el_type k_type = NT_invtype;
12926 unsigned k_size = -1u;
12927 struct neon_type_el badtype = {NT_invtype, -1};
12928 unsigned key_allowed = 0;
12929
12930 /* Optional registers in Neon instructions are always (not) in operand 1.
12931 Fill in the missing operand here, if it was omitted. */
12932 if (els > 1 && !inst.operands[1].present)
12933 inst.operands[1] = inst.operands[0];
12934
12935 /* Suck up all the varargs. */
12936 va_start (ap, ns);
12937 for (i = 0; i < els; i++)
12938 {
12939 unsigned thisarg = va_arg (ap, unsigned);
12940 if (thisarg == N_IGNORE_TYPE)
12941 {
12942 va_end (ap);
12943 return badtype;
12944 }
12945 types[i] = thisarg;
12946 if ((thisarg & N_KEY) != 0)
12947 key_el = i;
12948 }
12949 va_end (ap);
12950
dcbf9037
JB
12951 if (inst.vectype.elems > 0)
12952 for (i = 0; i < els; i++)
12953 if (inst.operands[i].vectype.type != NT_invtype)
12954 {
12955 first_error (_("types specified in both the mnemonic and operands"));
12956 return badtype;
12957 }
12958
5287ad62
JB
12959 /* Duplicate inst.vectype elements here as necessary.
12960 FIXME: No idea if this is exactly the same as the ARM assembler,
12961 particularly when an insn takes one register and one non-register
12962 operand. */
12963 if (inst.vectype.elems == 1 && els > 1)
12964 {
12965 unsigned j;
12966 inst.vectype.elems = els;
12967 inst.vectype.el[key_el] = inst.vectype.el[0];
12968 for (j = 0; j < els; j++)
dcbf9037
JB
12969 if (j != key_el)
12970 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12971 types[j]);
12972 }
12973 else if (inst.vectype.elems == 0 && els > 0)
12974 {
12975 unsigned j;
12976 /* No types were given after the mnemonic, so look for types specified
12977 after each operand. We allow some flexibility here; as long as the
12978 "key" operand has a type, we can infer the others. */
12979 for (j = 0; j < els; j++)
12980 if (inst.operands[j].vectype.type != NT_invtype)
12981 inst.vectype.el[j] = inst.operands[j].vectype;
12982
12983 if (inst.operands[key_el].vectype.type != NT_invtype)
5287ad62 12984 {
dcbf9037
JB
12985 for (j = 0; j < els; j++)
12986 if (inst.operands[j].vectype.type == NT_invtype)
12987 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12988 types[j]);
12989 }
12990 else
12991 {
12992 first_error (_("operand types can't be inferred"));
12993 return badtype;
5287ad62
JB
12994 }
12995 }
12996 else if (inst.vectype.elems != els)
12997 {
dcbf9037 12998 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
12999 return badtype;
13000 }
13001
13002 for (pass = 0; pass < 2; pass++)
13003 {
13004 for (i = 0; i < els; i++)
13005 {
13006 unsigned thisarg = types[i];
13007 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
13008 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
13009 enum neon_el_type g_type = inst.vectype.el[i].type;
13010 unsigned g_size = inst.vectype.el[i].size;
13011
13012 /* Decay more-specific signed & unsigned types to sign-insensitive
13013 integer types if sign-specific variants are unavailable. */
13014 if ((g_type == NT_signed || g_type == NT_unsigned)
13015 && (types_allowed & N_SU_ALL) == 0)
13016 g_type = NT_integer;
13017
13018 /* If only untyped args are allowed, decay any more specific types to
13019 them. Some instructions only care about signs for some element
13020 sizes, so handle that properly. */
91ff7894
MGD
13021 if (((types_allowed & N_UNT) == 0)
13022 && ((g_size == 8 && (types_allowed & N_8) != 0)
13023 || (g_size == 16 && (types_allowed & N_16) != 0)
13024 || (g_size == 32 && (types_allowed & N_32) != 0)
13025 || (g_size == 64 && (types_allowed & N_64) != 0)))
5287ad62
JB
13026 g_type = NT_untyped;
13027
13028 if (pass == 0)
13029 {
13030 if ((thisarg & N_KEY) != 0)
13031 {
13032 k_type = g_type;
13033 k_size = g_size;
13034 key_allowed = thisarg & ~N_KEY;
13035 }
13036 }
13037 else
13038 {
037e8744
JB
13039 if ((thisarg & N_VFP) != 0)
13040 {
99b253c5
NC
13041 enum neon_shape_el regshape;
13042 unsigned regwidth, match;
13043
13044 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
13045 if (ns == NS_NULL)
13046 {
13047 first_error (_("invalid instruction shape"));
13048 return badtype;
13049 }
13050 regshape = neon_shape_tab[ns].el[i];
13051 regwidth = neon_shape_el_size[regshape];
037e8744
JB
13052
13053 /* In VFP mode, operands must match register widths. If we
13054 have a key operand, use its width, else use the width of
13055 the current operand. */
13056 if (k_size != -1u)
13057 match = k_size;
13058 else
13059 match = g_size;
13060
13061 if (regwidth != match)
13062 {
13063 first_error (_("operand size must match register width"));
13064 return badtype;
13065 }
13066 }
5f4273c7 13067
5287ad62
JB
13068 if ((thisarg & N_EQK) == 0)
13069 {
13070 unsigned given_type = type_chk_of_el_type (g_type, g_size);
13071
13072 if ((given_type & types_allowed) == 0)
13073 {
dcbf9037 13074 first_error (_("bad type in Neon instruction"));
5287ad62
JB
13075 return badtype;
13076 }
13077 }
13078 else
13079 {
13080 enum neon_el_type mod_k_type = k_type;
13081 unsigned mod_k_size = k_size;
13082 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
13083 if (g_type != mod_k_type || g_size != mod_k_size)
13084 {
dcbf9037 13085 first_error (_("inconsistent types in Neon instruction"));
5287ad62
JB
13086 return badtype;
13087 }
13088 }
13089 }
13090 }
13091 }
13092
13093 return inst.vectype.el[key_el];
13094}
13095
037e8744 13096/* Neon-style VFP instruction forwarding. */
5287ad62 13097
037e8744
JB
13098/* Thumb VFP instructions have 0xE in the condition field. */
13099
13100static void
13101do_vfp_cond_or_thumb (void)
5287ad62 13102{
88714cb8
DG
13103 inst.is_neon = 1;
13104
5287ad62 13105 if (thumb_mode)
037e8744 13106 inst.instruction |= 0xe0000000;
5287ad62 13107 else
037e8744 13108 inst.instruction |= inst.cond << 28;
5287ad62
JB
13109}
13110
037e8744
JB
13111/* Look up and encode a simple mnemonic, for use as a helper function for the
13112 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
13113 etc. It is assumed that operand parsing has already been done, and that the
13114 operands are in the form expected by the given opcode (this isn't necessarily
13115 the same as the form in which they were parsed, hence some massaging must
13116 take place before this function is called).
13117 Checks current arch version against that in the looked-up opcode. */
5287ad62 13118
037e8744
JB
13119static void
13120do_vfp_nsyn_opcode (const char *opname)
5287ad62 13121{
037e8744 13122 const struct asm_opcode *opcode;
5f4273c7 13123
21d799b5 13124 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
5287ad62 13125
037e8744
JB
13126 if (!opcode)
13127 abort ();
5287ad62 13128
037e8744
JB
13129 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
13130 thumb_mode ? *opcode->tvariant : *opcode->avariant),
13131 _(BAD_FPU));
5287ad62 13132
88714cb8
DG
13133 inst.is_neon = 1;
13134
037e8744
JB
13135 if (thumb_mode)
13136 {
13137 inst.instruction = opcode->tvalue;
13138 opcode->tencode ();
13139 }
13140 else
13141 {
13142 inst.instruction = (inst.cond << 28) | opcode->avalue;
13143 opcode->aencode ();
13144 }
13145}
5287ad62
JB
13146
13147static void
037e8744 13148do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 13149{
037e8744
JB
13150 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
13151
13152 if (rs == NS_FFF)
13153 {
13154 if (is_add)
13155 do_vfp_nsyn_opcode ("fadds");
13156 else
13157 do_vfp_nsyn_opcode ("fsubs");
13158 }
13159 else
13160 {
13161 if (is_add)
13162 do_vfp_nsyn_opcode ("faddd");
13163 else
13164 do_vfp_nsyn_opcode ("fsubd");
13165 }
13166}
13167
13168/* Check operand types to see if this is a VFP instruction, and if so call
13169 PFN (). */
13170
13171static int
13172try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
13173{
13174 enum neon_shape rs;
13175 struct neon_type_el et;
13176
13177 switch (args)
13178 {
13179 case 2:
13180 rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13181 et = neon_check_type (2, rs,
13182 N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
13183 break;
5f4273c7 13184
037e8744
JB
13185 case 3:
13186 rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13187 et = neon_check_type (3, rs,
13188 N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
13189 break;
13190
13191 default:
13192 abort ();
13193 }
13194
13195 if (et.type != NT_invtype)
13196 {
13197 pfn (rs);
13198 return SUCCESS;
13199 }
037e8744 13200
99b253c5 13201 inst.error = NULL;
037e8744
JB
13202 return FAIL;
13203}
13204
13205static void
13206do_vfp_nsyn_mla_mls (enum neon_shape rs)
13207{
13208 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
5f4273c7 13209
037e8744
JB
13210 if (rs == NS_FFF)
13211 {
13212 if (is_mla)
13213 do_vfp_nsyn_opcode ("fmacs");
13214 else
1ee69515 13215 do_vfp_nsyn_opcode ("fnmacs");
037e8744
JB
13216 }
13217 else
13218 {
13219 if (is_mla)
13220 do_vfp_nsyn_opcode ("fmacd");
13221 else
1ee69515 13222 do_vfp_nsyn_opcode ("fnmacd");
037e8744
JB
13223 }
13224}
13225
62f3b8c8
PB
13226static void
13227do_vfp_nsyn_fma_fms (enum neon_shape rs)
13228{
13229 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
13230
13231 if (rs == NS_FFF)
13232 {
13233 if (is_fma)
13234 do_vfp_nsyn_opcode ("ffmas");
13235 else
13236 do_vfp_nsyn_opcode ("ffnmas");
13237 }
13238 else
13239 {
13240 if (is_fma)
13241 do_vfp_nsyn_opcode ("ffmad");
13242 else
13243 do_vfp_nsyn_opcode ("ffnmad");
13244 }
13245}
13246
037e8744
JB
13247static void
13248do_vfp_nsyn_mul (enum neon_shape rs)
13249{
13250 if (rs == NS_FFF)
13251 do_vfp_nsyn_opcode ("fmuls");
13252 else
13253 do_vfp_nsyn_opcode ("fmuld");
13254}
13255
13256static void
13257do_vfp_nsyn_abs_neg (enum neon_shape rs)
13258{
13259 int is_neg = (inst.instruction & 0x80) != 0;
13260 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
13261
13262 if (rs == NS_FF)
13263 {
13264 if (is_neg)
13265 do_vfp_nsyn_opcode ("fnegs");
13266 else
13267 do_vfp_nsyn_opcode ("fabss");
13268 }
13269 else
13270 {
13271 if (is_neg)
13272 do_vfp_nsyn_opcode ("fnegd");
13273 else
13274 do_vfp_nsyn_opcode ("fabsd");
13275 }
13276}
13277
13278/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
13279 insns belong to Neon, and are handled elsewhere. */
13280
13281static void
13282do_vfp_nsyn_ldm_stm (int is_dbmode)
13283{
13284 int is_ldm = (inst.instruction & (1 << 20)) != 0;
13285 if (is_ldm)
13286 {
13287 if (is_dbmode)
13288 do_vfp_nsyn_opcode ("fldmdbs");
13289 else
13290 do_vfp_nsyn_opcode ("fldmias");
13291 }
13292 else
13293 {
13294 if (is_dbmode)
13295 do_vfp_nsyn_opcode ("fstmdbs");
13296 else
13297 do_vfp_nsyn_opcode ("fstmias");
13298 }
13299}
13300
037e8744
JB
13301static void
13302do_vfp_nsyn_sqrt (void)
13303{
13304 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13305 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13306
037e8744
JB
13307 if (rs == NS_FF)
13308 do_vfp_nsyn_opcode ("fsqrts");
13309 else
13310 do_vfp_nsyn_opcode ("fsqrtd");
13311}
13312
13313static void
13314do_vfp_nsyn_div (void)
13315{
13316 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13317 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13318 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13319
037e8744
JB
13320 if (rs == NS_FFF)
13321 do_vfp_nsyn_opcode ("fdivs");
13322 else
13323 do_vfp_nsyn_opcode ("fdivd");
13324}
13325
13326static void
13327do_vfp_nsyn_nmul (void)
13328{
13329 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13330 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13331 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13332
037e8744
JB
13333 if (rs == NS_FFF)
13334 {
88714cb8 13335 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13336 do_vfp_sp_dyadic ();
13337 }
13338 else
13339 {
88714cb8 13340 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13341 do_vfp_dp_rd_rn_rm ();
13342 }
13343 do_vfp_cond_or_thumb ();
13344}
13345
13346static void
13347do_vfp_nsyn_cmp (void)
13348{
13349 if (inst.operands[1].isreg)
13350 {
13351 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13352 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13353
037e8744
JB
13354 if (rs == NS_FF)
13355 {
88714cb8 13356 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13357 do_vfp_sp_monadic ();
13358 }
13359 else
13360 {
88714cb8 13361 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13362 do_vfp_dp_rd_rm ();
13363 }
13364 }
13365 else
13366 {
13367 enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
13368 neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
13369
13370 switch (inst.instruction & 0x0fffffff)
13371 {
13372 case N_MNEM_vcmp:
13373 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
13374 break;
13375 case N_MNEM_vcmpe:
13376 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
13377 break;
13378 default:
13379 abort ();
13380 }
5f4273c7 13381
037e8744
JB
13382 if (rs == NS_FI)
13383 {
88714cb8 13384 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13385 do_vfp_sp_compare_z ();
13386 }
13387 else
13388 {
88714cb8 13389 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13390 do_vfp_dp_rd ();
13391 }
13392 }
13393 do_vfp_cond_or_thumb ();
13394}
13395
13396static void
13397nsyn_insert_sp (void)
13398{
13399 inst.operands[1] = inst.operands[0];
13400 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
fdfde340 13401 inst.operands[0].reg = REG_SP;
037e8744
JB
13402 inst.operands[0].isreg = 1;
13403 inst.operands[0].writeback = 1;
13404 inst.operands[0].present = 1;
13405}
13406
13407static void
13408do_vfp_nsyn_push (void)
13409{
13410 nsyn_insert_sp ();
13411 if (inst.operands[1].issingle)
13412 do_vfp_nsyn_opcode ("fstmdbs");
13413 else
13414 do_vfp_nsyn_opcode ("fstmdbd");
13415}
13416
13417static void
13418do_vfp_nsyn_pop (void)
13419{
13420 nsyn_insert_sp ();
13421 if (inst.operands[1].issingle)
22b5b651 13422 do_vfp_nsyn_opcode ("fldmias");
037e8744 13423 else
22b5b651 13424 do_vfp_nsyn_opcode ("fldmiad");
037e8744
JB
13425}
13426
13427/* Fix up Neon data-processing instructions, ORing in the correct bits for
13428 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
13429
88714cb8
DG
13430static void
13431neon_dp_fixup (struct arm_it* insn)
037e8744 13432{
88714cb8
DG
13433 unsigned int i = insn->instruction;
13434 insn->is_neon = 1;
13435
037e8744
JB
13436 if (thumb_mode)
13437 {
13438 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
13439 if (i & (1 << 24))
13440 i |= 1 << 28;
5f4273c7 13441
037e8744 13442 i &= ~(1 << 24);
5f4273c7 13443
037e8744
JB
13444 i |= 0xef000000;
13445 }
13446 else
13447 i |= 0xf2000000;
5f4273c7 13448
88714cb8 13449 insn->instruction = i;
037e8744
JB
13450}
13451
13452/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
13453 (0, 1, 2, 3). */
13454
13455static unsigned
13456neon_logbits (unsigned x)
13457{
13458 return ffs (x) - 4;
13459}
13460
13461#define LOW4(R) ((R) & 0xf)
13462#define HI1(R) (((R) >> 4) & 1)
13463
13464/* Encode insns with bit pattern:
13465
13466 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
13467 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
5f4273c7 13468
037e8744
JB
13469 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
13470 different meaning for some instruction. */
13471
13472static void
13473neon_three_same (int isquad, int ubit, int size)
13474{
13475 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13476 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13477 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
13478 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
13479 inst.instruction |= LOW4 (inst.operands[2].reg);
13480 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
13481 inst.instruction |= (isquad != 0) << 6;
13482 inst.instruction |= (ubit != 0) << 24;
13483 if (size != -1)
13484 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 13485
88714cb8 13486 neon_dp_fixup (&inst);
037e8744
JB
13487}
13488
13489/* Encode instructions of the form:
13490
13491 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
13492 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
13493
13494 Don't write size if SIZE == -1. */
13495
13496static void
13497neon_two_same (int qbit, int ubit, int size)
13498{
13499 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13500 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13501 inst.instruction |= LOW4 (inst.operands[1].reg);
13502 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13503 inst.instruction |= (qbit != 0) << 6;
13504 inst.instruction |= (ubit != 0) << 24;
13505
13506 if (size != -1)
13507 inst.instruction |= neon_logbits (size) << 18;
13508
88714cb8 13509 neon_dp_fixup (&inst);
5287ad62
JB
13510}
13511
13512/* Neon instruction encoders, in approximate order of appearance. */
13513
13514static void
13515do_neon_dyadic_i_su (void)
13516{
037e8744 13517 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13518 struct neon_type_el et = neon_check_type (3, rs,
13519 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 13520 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13521}
13522
13523static void
13524do_neon_dyadic_i64_su (void)
13525{
037e8744 13526 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13527 struct neon_type_el et = neon_check_type (3, rs,
13528 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 13529 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13530}
13531
13532static void
13533neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
13534 unsigned immbits)
13535{
13536 unsigned size = et.size >> 3;
13537 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13538 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13539 inst.instruction |= LOW4 (inst.operands[1].reg);
13540 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13541 inst.instruction |= (isquad != 0) << 6;
13542 inst.instruction |= immbits << 16;
13543 inst.instruction |= (size >> 3) << 7;
13544 inst.instruction |= (size & 0x7) << 19;
13545 if (write_ubit)
13546 inst.instruction |= (uval != 0) << 24;
13547
88714cb8 13548 neon_dp_fixup (&inst);
5287ad62
JB
13549}
13550
13551static void
13552do_neon_shl_imm (void)
13553{
13554 if (!inst.operands[2].isreg)
13555 {
037e8744 13556 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13557 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
88714cb8 13558 NEON_ENCODE (IMMED, inst);
037e8744 13559 neon_imm_shift (FALSE, 0, neon_quad (rs), et, inst.operands[2].imm);
5287ad62
JB
13560 }
13561 else
13562 {
037e8744 13563 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13564 struct neon_type_el et = neon_check_type (3, rs,
13565 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13566 unsigned int tmp;
13567
13568 /* VSHL/VQSHL 3-register variants have syntax such as:
13569 vshl.xx Dd, Dm, Dn
13570 whereas other 3-register operations encoded by neon_three_same have
13571 syntax like:
13572 vadd.xx Dd, Dn, Dm
13573 (i.e. with Dn & Dm reversed). Swap operands[1].reg and operands[2].reg
13574 here. */
13575 tmp = inst.operands[2].reg;
13576 inst.operands[2].reg = inst.operands[1].reg;
13577 inst.operands[1].reg = tmp;
88714cb8 13578 NEON_ENCODE (INTEGER, inst);
037e8744 13579 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13580 }
13581}
13582
13583static void
13584do_neon_qshl_imm (void)
13585{
13586 if (!inst.operands[2].isreg)
13587 {
037e8744 13588 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13589 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
627907b7 13590
88714cb8 13591 NEON_ENCODE (IMMED, inst);
037e8744 13592 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
13593 inst.operands[2].imm);
13594 }
13595 else
13596 {
037e8744 13597 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13598 struct neon_type_el et = neon_check_type (3, rs,
13599 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13600 unsigned int tmp;
13601
13602 /* See note in do_neon_shl_imm. */
13603 tmp = inst.operands[2].reg;
13604 inst.operands[2].reg = inst.operands[1].reg;
13605 inst.operands[1].reg = tmp;
88714cb8 13606 NEON_ENCODE (INTEGER, inst);
037e8744 13607 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13608 }
13609}
13610
627907b7
JB
13611static void
13612do_neon_rshl (void)
13613{
13614 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
13615 struct neon_type_el et = neon_check_type (3, rs,
13616 N_EQK, N_EQK, N_SU_ALL | N_KEY);
13617 unsigned int tmp;
13618
13619 tmp = inst.operands[2].reg;
13620 inst.operands[2].reg = inst.operands[1].reg;
13621 inst.operands[1].reg = tmp;
13622 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
13623}
13624
5287ad62
JB
13625static int
13626neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
13627{
036dc3f7
PB
13628 /* Handle .I8 pseudo-instructions. */
13629 if (size == 8)
5287ad62 13630 {
5287ad62
JB
13631 /* Unfortunately, this will make everything apart from zero out-of-range.
13632 FIXME is this the intended semantics? There doesn't seem much point in
13633 accepting .I8 if so. */
13634 immediate |= immediate << 8;
13635 size = 16;
036dc3f7
PB
13636 }
13637
13638 if (size >= 32)
13639 {
13640 if (immediate == (immediate & 0x000000ff))
13641 {
13642 *immbits = immediate;
13643 return 0x1;
13644 }
13645 else if (immediate == (immediate & 0x0000ff00))
13646 {
13647 *immbits = immediate >> 8;
13648 return 0x3;
13649 }
13650 else if (immediate == (immediate & 0x00ff0000))
13651 {
13652 *immbits = immediate >> 16;
13653 return 0x5;
13654 }
13655 else if (immediate == (immediate & 0xff000000))
13656 {
13657 *immbits = immediate >> 24;
13658 return 0x7;
13659 }
13660 if ((immediate & 0xffff) != (immediate >> 16))
13661 goto bad_immediate;
13662 immediate &= 0xffff;
5287ad62
JB
13663 }
13664
13665 if (immediate == (immediate & 0x000000ff))
13666 {
13667 *immbits = immediate;
036dc3f7 13668 return 0x9;
5287ad62
JB
13669 }
13670 else if (immediate == (immediate & 0x0000ff00))
13671 {
13672 *immbits = immediate >> 8;
036dc3f7 13673 return 0xb;
5287ad62
JB
13674 }
13675
13676 bad_immediate:
dcbf9037 13677 first_error (_("immediate value out of range"));
5287ad62
JB
13678 return FAIL;
13679}
13680
13681/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
13682 A, B, C, D. */
13683
13684static int
13685neon_bits_same_in_bytes (unsigned imm)
13686{
13687 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
13688 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
13689 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
13690 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
13691}
13692
13693/* For immediate of above form, return 0bABCD. */
13694
13695static unsigned
13696neon_squash_bits (unsigned imm)
13697{
13698 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
13699 | ((imm & 0x01000000) >> 21);
13700}
13701
136da414 13702/* Compress quarter-float representation to 0b...000 abcdefgh. */
5287ad62
JB
13703
13704static unsigned
13705neon_qfloat_bits (unsigned imm)
13706{
136da414 13707 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
5287ad62
JB
13708}
13709
13710/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
13711 the instruction. *OP is passed as the initial value of the op field, and
13712 may be set to a different value depending on the constant (i.e.
13713 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
5f4273c7 13714 MVN). If the immediate looks like a repeated pattern then also
036dc3f7 13715 try smaller element sizes. */
5287ad62
JB
13716
13717static int
c96612cc
JB
13718neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
13719 unsigned *immbits, int *op, int size,
13720 enum neon_el_type type)
5287ad62 13721{
c96612cc
JB
13722 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
13723 float. */
13724 if (type == NT_float && !float_p)
13725 return FAIL;
13726
136da414
JB
13727 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
13728 {
13729 if (size != 32 || *op == 1)
13730 return FAIL;
13731 *immbits = neon_qfloat_bits (immlo);
13732 return 0xf;
13733 }
036dc3f7
PB
13734
13735 if (size == 64)
5287ad62 13736 {
036dc3f7
PB
13737 if (neon_bits_same_in_bytes (immhi)
13738 && neon_bits_same_in_bytes (immlo))
13739 {
13740 if (*op == 1)
13741 return FAIL;
13742 *immbits = (neon_squash_bits (immhi) << 4)
13743 | neon_squash_bits (immlo);
13744 *op = 1;
13745 return 0xe;
13746 }
13747
13748 if (immhi != immlo)
13749 return FAIL;
5287ad62 13750 }
036dc3f7
PB
13751
13752 if (size >= 32)
5287ad62 13753 {
036dc3f7
PB
13754 if (immlo == (immlo & 0x000000ff))
13755 {
13756 *immbits = immlo;
13757 return 0x0;
13758 }
13759 else if (immlo == (immlo & 0x0000ff00))
13760 {
13761 *immbits = immlo >> 8;
13762 return 0x2;
13763 }
13764 else if (immlo == (immlo & 0x00ff0000))
13765 {
13766 *immbits = immlo >> 16;
13767 return 0x4;
13768 }
13769 else if (immlo == (immlo & 0xff000000))
13770 {
13771 *immbits = immlo >> 24;
13772 return 0x6;
13773 }
13774 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
13775 {
13776 *immbits = (immlo >> 8) & 0xff;
13777 return 0xc;
13778 }
13779 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
13780 {
13781 *immbits = (immlo >> 16) & 0xff;
13782 return 0xd;
13783 }
13784
13785 if ((immlo & 0xffff) != (immlo >> 16))
13786 return FAIL;
13787 immlo &= 0xffff;
5287ad62 13788 }
036dc3f7
PB
13789
13790 if (size >= 16)
5287ad62 13791 {
036dc3f7
PB
13792 if (immlo == (immlo & 0x000000ff))
13793 {
13794 *immbits = immlo;
13795 return 0x8;
13796 }
13797 else if (immlo == (immlo & 0x0000ff00))
13798 {
13799 *immbits = immlo >> 8;
13800 return 0xa;
13801 }
13802
13803 if ((immlo & 0xff) != (immlo >> 8))
13804 return FAIL;
13805 immlo &= 0xff;
5287ad62 13806 }
036dc3f7
PB
13807
13808 if (immlo == (immlo & 0x000000ff))
5287ad62 13809 {
036dc3f7
PB
13810 /* Don't allow MVN with 8-bit immediate. */
13811 if (*op == 1)
13812 return FAIL;
13813 *immbits = immlo;
13814 return 0xe;
5287ad62 13815 }
5287ad62
JB
13816
13817 return FAIL;
13818}
13819
13820/* Write immediate bits [7:0] to the following locations:
13821
13822 |28/24|23 19|18 16|15 4|3 0|
13823 | 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|
13824
13825 This function is used by VMOV/VMVN/VORR/VBIC. */
13826
13827static void
13828neon_write_immbits (unsigned immbits)
13829{
13830 inst.instruction |= immbits & 0xf;
13831 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
13832 inst.instruction |= ((immbits >> 7) & 0x1) << 24;
13833}
13834
13835/* Invert low-order SIZE bits of XHI:XLO. */
13836
13837static void
13838neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
13839{
13840 unsigned immlo = xlo ? *xlo : 0;
13841 unsigned immhi = xhi ? *xhi : 0;
13842
13843 switch (size)
13844 {
13845 case 8:
13846 immlo = (~immlo) & 0xff;
13847 break;
13848
13849 case 16:
13850 immlo = (~immlo) & 0xffff;
13851 break;
13852
13853 case 64:
13854 immhi = (~immhi) & 0xffffffff;
13855 /* fall through. */
13856
13857 case 32:
13858 immlo = (~immlo) & 0xffffffff;
13859 break;
13860
13861 default:
13862 abort ();
13863 }
13864
13865 if (xlo)
13866 *xlo = immlo;
13867
13868 if (xhi)
13869 *xhi = immhi;
13870}
13871
13872static void
13873do_neon_logic (void)
13874{
13875 if (inst.operands[2].present && inst.operands[2].isreg)
13876 {
037e8744 13877 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13878 neon_check_type (3, rs, N_IGNORE_TYPE);
13879 /* U bit and size field were set as part of the bitmask. */
88714cb8 13880 NEON_ENCODE (INTEGER, inst);
037e8744 13881 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13882 }
13883 else
13884 {
4316f0d2
DG
13885 const int three_ops_form = (inst.operands[2].present
13886 && !inst.operands[2].isreg);
13887 const int immoperand = (three_ops_form ? 2 : 1);
13888 enum neon_shape rs = (three_ops_form
13889 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
13890 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
037e8744
JB
13891 struct neon_type_el et = neon_check_type (2, rs,
13892 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
21d799b5 13893 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
5287ad62
JB
13894 unsigned immbits;
13895 int cmode;
5f4273c7 13896
5287ad62
JB
13897 if (et.type == NT_invtype)
13898 return;
5f4273c7 13899
4316f0d2
DG
13900 if (three_ops_form)
13901 constraint (inst.operands[0].reg != inst.operands[1].reg,
13902 _("first and second operands shall be the same register"));
13903
88714cb8 13904 NEON_ENCODE (IMMED, inst);
5287ad62 13905
4316f0d2 13906 immbits = inst.operands[immoperand].imm;
036dc3f7
PB
13907 if (et.size == 64)
13908 {
13909 /* .i64 is a pseudo-op, so the immediate must be a repeating
13910 pattern. */
4316f0d2
DG
13911 if (immbits != (inst.operands[immoperand].regisimm ?
13912 inst.operands[immoperand].reg : 0))
036dc3f7
PB
13913 {
13914 /* Set immbits to an invalid constant. */
13915 immbits = 0xdeadbeef;
13916 }
13917 }
13918
5287ad62
JB
13919 switch (opcode)
13920 {
13921 case N_MNEM_vbic:
036dc3f7 13922 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
5287ad62 13923 break;
5f4273c7 13924
5287ad62 13925 case N_MNEM_vorr:
036dc3f7 13926 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
5287ad62 13927 break;
5f4273c7 13928
5287ad62
JB
13929 case N_MNEM_vand:
13930 /* Pseudo-instruction for VBIC. */
5287ad62
JB
13931 neon_invert_size (&immbits, 0, et.size);
13932 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13933 break;
5f4273c7 13934
5287ad62
JB
13935 case N_MNEM_vorn:
13936 /* Pseudo-instruction for VORR. */
5287ad62
JB
13937 neon_invert_size (&immbits, 0, et.size);
13938 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13939 break;
5f4273c7 13940
5287ad62
JB
13941 default:
13942 abort ();
13943 }
13944
13945 if (cmode == FAIL)
13946 return;
13947
037e8744 13948 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
13949 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13950 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13951 inst.instruction |= cmode << 8;
13952 neon_write_immbits (immbits);
5f4273c7 13953
88714cb8 13954 neon_dp_fixup (&inst);
5287ad62
JB
13955 }
13956}
13957
13958static void
13959do_neon_bitfield (void)
13960{
037e8744 13961 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 13962 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 13963 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13964}
13965
13966static void
dcbf9037
JB
13967neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
13968 unsigned destbits)
5287ad62 13969{
037e8744 13970 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037
JB
13971 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
13972 types | N_KEY);
5287ad62
JB
13973 if (et.type == NT_float)
13974 {
88714cb8 13975 NEON_ENCODE (FLOAT, inst);
037e8744 13976 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13977 }
13978 else
13979 {
88714cb8 13980 NEON_ENCODE (INTEGER, inst);
037e8744 13981 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
13982 }
13983}
13984
13985static void
13986do_neon_dyadic_if_su (void)
13987{
dcbf9037 13988 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13989}
13990
13991static void
13992do_neon_dyadic_if_su_d (void)
13993{
13994 /* This version only allow D registers, but that constraint is enforced during
13995 operand parsing so we don't need to do anything extra here. */
dcbf9037 13996 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13997}
13998
5287ad62
JB
13999static void
14000do_neon_dyadic_if_i_d (void)
14001{
428e3f1f
PB
14002 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14003 affected if we specify unsigned args. */
14004 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
14005}
14006
037e8744
JB
14007enum vfp_or_neon_is_neon_bits
14008{
14009 NEON_CHECK_CC = 1,
73924fbc
MGD
14010 NEON_CHECK_ARCH = 2,
14011 NEON_CHECK_ARCH8 = 4
037e8744
JB
14012};
14013
14014/* Call this function if an instruction which may have belonged to the VFP or
14015 Neon instruction sets, but turned out to be a Neon instruction (due to the
14016 operand types involved, etc.). We have to check and/or fix-up a couple of
14017 things:
14018
14019 - Make sure the user hasn't attempted to make a Neon instruction
14020 conditional.
14021 - Alter the value in the condition code field if necessary.
14022 - Make sure that the arch supports Neon instructions.
14023
14024 Which of these operations take place depends on bits from enum
14025 vfp_or_neon_is_neon_bits.
14026
14027 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
14028 current instruction's condition is COND_ALWAYS, the condition field is
14029 changed to inst.uncond_value. This is necessary because instructions shared
14030 between VFP and Neon may be conditional for the VFP variants only, and the
14031 unconditional Neon version must have, e.g., 0xF in the condition field. */
14032
14033static int
14034vfp_or_neon_is_neon (unsigned check)
14035{
14036 /* Conditions are always legal in Thumb mode (IT blocks). */
14037 if (!thumb_mode && (check & NEON_CHECK_CC))
14038 {
14039 if (inst.cond != COND_ALWAYS)
14040 {
14041 first_error (_(BAD_COND));
14042 return FAIL;
14043 }
14044 if (inst.uncond_value != -1)
14045 inst.instruction |= inst.uncond_value << 28;
14046 }
5f4273c7 14047
037e8744 14048 if ((check & NEON_CHECK_ARCH)
73924fbc
MGD
14049 && !mark_feature_used (&fpu_neon_ext_v1))
14050 {
14051 first_error (_(BAD_FPU));
14052 return FAIL;
14053 }
14054
14055 if ((check & NEON_CHECK_ARCH8)
14056 && !mark_feature_used (&fpu_neon_ext_armv8))
037e8744
JB
14057 {
14058 first_error (_(BAD_FPU));
14059 return FAIL;
14060 }
5f4273c7 14061
037e8744
JB
14062 return SUCCESS;
14063}
14064
5287ad62
JB
14065static void
14066do_neon_addsub_if_i (void)
14067{
037e8744
JB
14068 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
14069 return;
14070
14071 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14072 return;
14073
5287ad62
JB
14074 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14075 affected if we specify unsigned args. */
dcbf9037 14076 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
14077}
14078
14079/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
14080 result to be:
14081 V<op> A,B (A is operand 0, B is operand 2)
14082 to mean:
14083 V<op> A,B,A
14084 not:
14085 V<op> A,B,B
14086 so handle that case specially. */
14087
14088static void
14089neon_exchange_operands (void)
14090{
14091 void *scratch = alloca (sizeof (inst.operands[0]));
14092 if (inst.operands[1].present)
14093 {
14094 /* Swap operands[1] and operands[2]. */
14095 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
14096 inst.operands[1] = inst.operands[2];
14097 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
14098 }
14099 else
14100 {
14101 inst.operands[1] = inst.operands[2];
14102 inst.operands[2] = inst.operands[0];
14103 }
14104}
14105
14106static void
14107neon_compare (unsigned regtypes, unsigned immtypes, int invert)
14108{
14109 if (inst.operands[2].isreg)
14110 {
14111 if (invert)
14112 neon_exchange_operands ();
dcbf9037 14113 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
14114 }
14115 else
14116 {
037e8744 14117 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037
JB
14118 struct neon_type_el et = neon_check_type (2, rs,
14119 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62 14120
88714cb8 14121 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14122 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14123 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14124 inst.instruction |= LOW4 (inst.operands[1].reg);
14125 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14126 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14127 inst.instruction |= (et.type == NT_float) << 10;
14128 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14129
88714cb8 14130 neon_dp_fixup (&inst);
5287ad62
JB
14131 }
14132}
14133
14134static void
14135do_neon_cmp (void)
14136{
14137 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
14138}
14139
14140static void
14141do_neon_cmp_inv (void)
14142{
14143 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
14144}
14145
14146static void
14147do_neon_ceq (void)
14148{
14149 neon_compare (N_IF_32, N_IF_32, FALSE);
14150}
14151
14152/* For multiply instructions, we have the possibility of 16-bit or 32-bit
14153 scalars, which are encoded in 5 bits, M : Rm.
14154 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
14155 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
14156 index in M. */
14157
14158static unsigned
14159neon_scalar_for_mul (unsigned scalar, unsigned elsize)
14160{
dcbf9037
JB
14161 unsigned regno = NEON_SCALAR_REG (scalar);
14162 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
14163
14164 switch (elsize)
14165 {
14166 case 16:
14167 if (regno > 7 || elno > 3)
14168 goto bad_scalar;
14169 return regno | (elno << 3);
5f4273c7 14170
5287ad62
JB
14171 case 32:
14172 if (regno > 15 || elno > 1)
14173 goto bad_scalar;
14174 return regno | (elno << 4);
14175
14176 default:
14177 bad_scalar:
dcbf9037 14178 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
14179 }
14180
14181 return 0;
14182}
14183
14184/* Encode multiply / multiply-accumulate scalar instructions. */
14185
14186static void
14187neon_mul_mac (struct neon_type_el et, int ubit)
14188{
dcbf9037
JB
14189 unsigned scalar;
14190
14191 /* Give a more helpful error message if we have an invalid type. */
14192 if (et.type == NT_invtype)
14193 return;
5f4273c7 14194
dcbf9037 14195 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
14196 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14197 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14198 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14199 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14200 inst.instruction |= LOW4 (scalar);
14201 inst.instruction |= HI1 (scalar) << 5;
14202 inst.instruction |= (et.type == NT_float) << 8;
14203 inst.instruction |= neon_logbits (et.size) << 20;
14204 inst.instruction |= (ubit != 0) << 24;
14205
88714cb8 14206 neon_dp_fixup (&inst);
5287ad62
JB
14207}
14208
14209static void
14210do_neon_mac_maybe_scalar (void)
14211{
037e8744
JB
14212 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
14213 return;
14214
14215 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14216 return;
14217
5287ad62
JB
14218 if (inst.operands[2].isscalar)
14219 {
037e8744 14220 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
14221 struct neon_type_el et = neon_check_type (3, rs,
14222 N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
88714cb8 14223 NEON_ENCODE (SCALAR, inst);
037e8744 14224 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14225 }
14226 else
428e3f1f
PB
14227 {
14228 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14229 affected if we specify unsigned args. */
14230 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14231 }
5287ad62
JB
14232}
14233
62f3b8c8
PB
14234static void
14235do_neon_fmac (void)
14236{
14237 if (try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
14238 return;
14239
14240 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14241 return;
14242
14243 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14244}
14245
5287ad62
JB
14246static void
14247do_neon_tst (void)
14248{
037e8744 14249 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14250 struct neon_type_el et = neon_check_type (3, rs,
14251 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 14252 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14253}
14254
14255/* VMUL with 3 registers allows the P8 type. The scalar version supports the
14256 same types as the MAC equivalents. The polynomial type for this instruction
14257 is encoded the same as the integer type. */
14258
14259static void
14260do_neon_mul (void)
14261{
037e8744
JB
14262 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
14263 return;
14264
14265 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14266 return;
14267
5287ad62
JB
14268 if (inst.operands[2].isscalar)
14269 do_neon_mac_maybe_scalar ();
14270 else
dcbf9037 14271 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
5287ad62
JB
14272}
14273
14274static void
14275do_neon_qdmulh (void)
14276{
14277 if (inst.operands[2].isscalar)
14278 {
037e8744 14279 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
14280 struct neon_type_el et = neon_check_type (3, rs,
14281 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14282 NEON_ENCODE (SCALAR, inst);
037e8744 14283 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14284 }
14285 else
14286 {
037e8744 14287 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14288 struct neon_type_el et = neon_check_type (3, rs,
14289 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14290 NEON_ENCODE (INTEGER, inst);
5287ad62 14291 /* The U bit (rounding) comes from bit mask. */
037e8744 14292 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14293 }
14294}
14295
14296static void
14297do_neon_fcmp_absolute (void)
14298{
037e8744 14299 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14300 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
14301 /* Size field comes from bit mask. */
037e8744 14302 neon_three_same (neon_quad (rs), 1, -1);
5287ad62
JB
14303}
14304
14305static void
14306do_neon_fcmp_absolute_inv (void)
14307{
14308 neon_exchange_operands ();
14309 do_neon_fcmp_absolute ();
14310}
14311
14312static void
14313do_neon_step (void)
14314{
037e8744 14315 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14316 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
037e8744 14317 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14318}
14319
14320static void
14321do_neon_abs_neg (void)
14322{
037e8744
JB
14323 enum neon_shape rs;
14324 struct neon_type_el et;
5f4273c7 14325
037e8744
JB
14326 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
14327 return;
14328
14329 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14330 return;
14331
14332 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
14333 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
5f4273c7 14334
5287ad62
JB
14335 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14336 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14337 inst.instruction |= LOW4 (inst.operands[1].reg);
14338 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14339 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14340 inst.instruction |= (et.type == NT_float) << 10;
14341 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14342
88714cb8 14343 neon_dp_fixup (&inst);
5287ad62
JB
14344}
14345
14346static void
14347do_neon_sli (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 < 0 || (unsigned)imm >= et.size,
14354 _("immediate out of range for insert"));
037e8744 14355 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14356}
14357
14358static void
14359do_neon_sri (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_8 | N_16 | N_32 | N_64 | N_KEY);
14364 int imm = inst.operands[2].imm;
14365 constraint (imm < 1 || (unsigned)imm > et.size,
14366 _("immediate out of range for insert"));
037e8744 14367 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
14368}
14369
14370static void
14371do_neon_qshlu_imm (void)
14372{
037e8744 14373 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14374 struct neon_type_el et = neon_check_type (2, rs,
14375 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
14376 int imm = inst.operands[2].imm;
14377 constraint (imm < 0 || (unsigned)imm >= et.size,
14378 _("immediate out of range for shift"));
14379 /* Only encodes the 'U present' variant of the instruction.
14380 In this case, signed types have OP (bit 8) set to 0.
14381 Unsigned types have OP set to 1. */
14382 inst.instruction |= (et.type == NT_unsigned) << 8;
14383 /* The rest of the bits are the same as other immediate shifts. */
037e8744 14384 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14385}
14386
14387static void
14388do_neon_qmovn (void)
14389{
14390 struct neon_type_el et = neon_check_type (2, NS_DQ,
14391 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14392 /* Saturating move where operands can be signed or unsigned, and the
14393 destination has the same signedness. */
88714cb8 14394 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14395 if (et.type == NT_unsigned)
14396 inst.instruction |= 0xc0;
14397 else
14398 inst.instruction |= 0x80;
14399 neon_two_same (0, 1, et.size / 2);
14400}
14401
14402static void
14403do_neon_qmovun (void)
14404{
14405 struct neon_type_el et = neon_check_type (2, NS_DQ,
14406 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14407 /* Saturating move with unsigned results. Operands must be signed. */
88714cb8 14408 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14409 neon_two_same (0, 1, et.size / 2);
14410}
14411
14412static void
14413do_neon_rshift_sat_narrow (void)
14414{
14415 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14416 or unsigned. If operands are unsigned, results must also be unsigned. */
14417 struct neon_type_el et = neon_check_type (2, NS_DQI,
14418 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14419 int imm = inst.operands[2].imm;
14420 /* This gets the bounds check, size encoding and immediate bits calculation
14421 right. */
14422 et.size /= 2;
5f4273c7 14423
5287ad62
JB
14424 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
14425 VQMOVN.I<size> <Dd>, <Qm>. */
14426 if (imm == 0)
14427 {
14428 inst.operands[2].present = 0;
14429 inst.instruction = N_MNEM_vqmovn;
14430 do_neon_qmovn ();
14431 return;
14432 }
5f4273c7 14433
5287ad62
JB
14434 constraint (imm < 1 || (unsigned)imm > et.size,
14435 _("immediate out of range"));
14436 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
14437}
14438
14439static void
14440do_neon_rshift_sat_narrow_u (void)
14441{
14442 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14443 or unsigned. If operands are unsigned, results must also be unsigned. */
14444 struct neon_type_el et = neon_check_type (2, NS_DQI,
14445 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14446 int imm = inst.operands[2].imm;
14447 /* This gets the bounds check, size encoding and immediate bits calculation
14448 right. */
14449 et.size /= 2;
14450
14451 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
14452 VQMOVUN.I<size> <Dd>, <Qm>. */
14453 if (imm == 0)
14454 {
14455 inst.operands[2].present = 0;
14456 inst.instruction = N_MNEM_vqmovun;
14457 do_neon_qmovun ();
14458 return;
14459 }
14460
14461 constraint (imm < 1 || (unsigned)imm > et.size,
14462 _("immediate out of range"));
14463 /* FIXME: The manual is kind of unclear about what value U should have in
14464 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
14465 must be 1. */
14466 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
14467}
14468
14469static void
14470do_neon_movn (void)
14471{
14472 struct neon_type_el et = neon_check_type (2, NS_DQ,
14473 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
88714cb8 14474 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14475 neon_two_same (0, 1, et.size / 2);
14476}
14477
14478static void
14479do_neon_rshift_narrow (void)
14480{
14481 struct neon_type_el et = neon_check_type (2, NS_DQI,
14482 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
14483 int imm = inst.operands[2].imm;
14484 /* This gets the bounds check, size encoding and immediate bits calculation
14485 right. */
14486 et.size /= 2;
5f4273c7 14487
5287ad62
JB
14488 /* If immediate is zero then we are a pseudo-instruction for
14489 VMOVN.I<size> <Dd>, <Qm> */
14490 if (imm == 0)
14491 {
14492 inst.operands[2].present = 0;
14493 inst.instruction = N_MNEM_vmovn;
14494 do_neon_movn ();
14495 return;
14496 }
5f4273c7 14497
5287ad62
JB
14498 constraint (imm < 1 || (unsigned)imm > et.size,
14499 _("immediate out of range for narrowing operation"));
14500 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
14501}
14502
14503static void
14504do_neon_shll (void)
14505{
14506 /* FIXME: Type checking when lengthening. */
14507 struct neon_type_el et = neon_check_type (2, NS_QDI,
14508 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
14509 unsigned imm = inst.operands[2].imm;
14510
14511 if (imm == et.size)
14512 {
14513 /* Maximum shift variant. */
88714cb8 14514 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14515 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14516 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14517 inst.instruction |= LOW4 (inst.operands[1].reg);
14518 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14519 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14520
88714cb8 14521 neon_dp_fixup (&inst);
5287ad62
JB
14522 }
14523 else
14524 {
14525 /* A more-specific type check for non-max versions. */
14526 et = neon_check_type (2, NS_QDI,
14527 N_EQK | N_DBL, N_SU_32 | N_KEY);
88714cb8 14528 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14529 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
14530 }
14531}
14532
037e8744 14533/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
14534 the current instruction is. */
14535
6b9a8b67
MGD
14536#define CVT_FLAVOUR_VAR \
14537 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
14538 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
14539 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
14540 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
14541 /* Half-precision conversions. */ \
14542 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
14543 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
14544 /* VFP instructions. */ \
14545 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
14546 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
14547 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
14548 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
14549 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
14550 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
14551 /* VFP instructions with bitshift. */ \
14552 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
14553 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
14554 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
14555 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
14556 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
14557 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
14558 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
14559 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
14560
14561#define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
14562 neon_cvt_flavour_##C,
14563
14564/* The different types of conversions we can do. */
14565enum neon_cvt_flavour
14566{
14567 CVT_FLAVOUR_VAR
14568 neon_cvt_flavour_invalid,
14569 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
14570};
14571
14572#undef CVT_VAR
14573
14574static enum neon_cvt_flavour
14575get_neon_cvt_flavour (enum neon_shape rs)
5287ad62 14576{
6b9a8b67
MGD
14577#define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
14578 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
14579 if (et.type != NT_invtype) \
14580 { \
14581 inst.error = NULL; \
14582 return (neon_cvt_flavour_##C); \
5287ad62 14583 }
6b9a8b67 14584
5287ad62 14585 struct neon_type_el et;
037e8744
JB
14586 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
14587 || rs == NS_FF) ? N_VFP : 0;
14588 /* The instruction versions which take an immediate take one register
14589 argument, which is extended to the width of the full register. Thus the
14590 "source" and "destination" registers must have the same width. Hack that
14591 here by making the size equal to the key (wider, in this case) operand. */
14592 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5f4273c7 14593
6b9a8b67
MGD
14594 CVT_FLAVOUR_VAR;
14595
14596 return neon_cvt_flavour_invalid;
5287ad62
JB
14597#undef CVT_VAR
14598}
14599
7e8e6784
MGD
14600enum neon_cvt_mode
14601{
14602 neon_cvt_mode_a,
14603 neon_cvt_mode_n,
14604 neon_cvt_mode_p,
14605 neon_cvt_mode_m,
14606 neon_cvt_mode_z,
30bdf752
MGD
14607 neon_cvt_mode_x,
14608 neon_cvt_mode_r
7e8e6784
MGD
14609};
14610
037e8744
JB
14611/* Neon-syntax VFP conversions. */
14612
5287ad62 14613static void
6b9a8b67 14614do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
5287ad62 14615{
037e8744 14616 const char *opname = 0;
5f4273c7 14617
037e8744 14618 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
5287ad62 14619 {
037e8744
JB
14620 /* Conversions with immediate bitshift. */
14621 const char *enc[] =
14622 {
6b9a8b67
MGD
14623#define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
14624 CVT_FLAVOUR_VAR
14625 NULL
14626#undef CVT_VAR
037e8744
JB
14627 };
14628
6b9a8b67 14629 if (flavour < (int) ARRAY_SIZE (enc))
037e8744
JB
14630 {
14631 opname = enc[flavour];
14632 constraint (inst.operands[0].reg != inst.operands[1].reg,
14633 _("operands 0 and 1 must be the same register"));
14634 inst.operands[1] = inst.operands[2];
14635 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
14636 }
5287ad62
JB
14637 }
14638 else
14639 {
037e8744
JB
14640 /* Conversions without bitshift. */
14641 const char *enc[] =
14642 {
6b9a8b67
MGD
14643#define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
14644 CVT_FLAVOUR_VAR
14645 NULL
14646#undef CVT_VAR
037e8744
JB
14647 };
14648
6b9a8b67 14649 if (flavour < (int) ARRAY_SIZE (enc))
037e8744
JB
14650 opname = enc[flavour];
14651 }
14652
14653 if (opname)
14654 do_vfp_nsyn_opcode (opname);
14655}
14656
14657static void
14658do_vfp_nsyn_cvtz (void)
14659{
14660 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
6b9a8b67 14661 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744
JB
14662 const char *enc[] =
14663 {
6b9a8b67
MGD
14664#define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
14665 CVT_FLAVOUR_VAR
14666 NULL
14667#undef CVT_VAR
037e8744
JB
14668 };
14669
6b9a8b67 14670 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
037e8744
JB
14671 do_vfp_nsyn_opcode (enc[flavour]);
14672}
f31fef98 14673
037e8744 14674static void
bacebabc 14675do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
7e8e6784
MGD
14676 enum neon_cvt_mode mode)
14677{
14678 int sz, op;
14679 int rm;
14680
14681 set_it_insn_type (OUTSIDE_IT_INSN);
14682
14683 switch (flavour)
14684 {
14685 case neon_cvt_flavour_s32_f64:
14686 sz = 1;
14687 op = 0;
14688 break;
14689 case neon_cvt_flavour_s32_f32:
14690 sz = 0;
14691 op = 1;
14692 break;
14693 case neon_cvt_flavour_u32_f64:
14694 sz = 1;
14695 op = 0;
14696 break;
14697 case neon_cvt_flavour_u32_f32:
14698 sz = 0;
14699 op = 0;
14700 break;
14701 default:
14702 first_error (_("invalid instruction shape"));
14703 return;
14704 }
14705
14706 switch (mode)
14707 {
14708 case neon_cvt_mode_a: rm = 0; break;
14709 case neon_cvt_mode_n: rm = 1; break;
14710 case neon_cvt_mode_p: rm = 2; break;
14711 case neon_cvt_mode_m: rm = 3; break;
14712 default: first_error (_("invalid rounding mode")); return;
14713 }
14714
14715 NEON_ENCODE (FPV8, inst);
14716 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
14717 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
14718 inst.instruction |= sz << 8;
14719 inst.instruction |= op << 7;
14720 inst.instruction |= rm << 16;
14721 inst.instruction |= 0xf0000000;
14722 inst.is_neon = TRUE;
14723}
14724
14725static void
14726do_neon_cvt_1 (enum neon_cvt_mode mode)
037e8744
JB
14727{
14728 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
8e79c3df 14729 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ, NS_NULL);
6b9a8b67 14730 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744 14731
e3e535bc 14732 /* PR11109: Handle round-to-zero for VCVT conversions. */
7e8e6784 14733 if (mode == neon_cvt_mode_z
e3e535bc 14734 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
bacebabc
RM
14735 && (flavour == neon_cvt_flavour_s32_f32
14736 || flavour == neon_cvt_flavour_u32_f32
14737 || flavour == neon_cvt_flavour_s32_f64
6b9a8b67 14738 || flavour == neon_cvt_flavour_u32_f64)
e3e535bc
NC
14739 && (rs == NS_FD || rs == NS_FF))
14740 {
14741 do_vfp_nsyn_cvtz ();
14742 return;
14743 }
14744
037e8744 14745 /* VFP rather than Neon conversions. */
6b9a8b67 14746 if (flavour >= neon_cvt_flavour_first_fp)
037e8744 14747 {
7e8e6784
MGD
14748 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
14749 do_vfp_nsyn_cvt (rs, flavour);
14750 else
14751 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
14752
037e8744
JB
14753 return;
14754 }
14755
14756 switch (rs)
14757 {
14758 case NS_DDI:
14759 case NS_QQI:
14760 {
35997600
NC
14761 unsigned immbits;
14762 unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
14763
037e8744
JB
14764 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14765 return;
14766
14767 /* Fixed-point conversion with #0 immediate is encoded as an
14768 integer conversion. */
14769 if (inst.operands[2].present && inst.operands[2].imm == 0)
14770 goto int_encode;
35997600 14771 immbits = 32 - inst.operands[2].imm;
88714cb8 14772 NEON_ENCODE (IMMED, inst);
6b9a8b67 14773 if (flavour != neon_cvt_flavour_invalid)
037e8744
JB
14774 inst.instruction |= enctab[flavour];
14775 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14776 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14777 inst.instruction |= LOW4 (inst.operands[1].reg);
14778 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14779 inst.instruction |= neon_quad (rs) << 6;
14780 inst.instruction |= 1 << 21;
14781 inst.instruction |= immbits << 16;
14782
88714cb8 14783 neon_dp_fixup (&inst);
037e8744
JB
14784 }
14785 break;
14786
14787 case NS_DD:
14788 case NS_QQ:
7e8e6784
MGD
14789 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
14790 {
14791 NEON_ENCODE (FLOAT, inst);
14792 set_it_insn_type (OUTSIDE_IT_INSN);
14793
14794 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
14795 return;
14796
14797 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14798 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14799 inst.instruction |= LOW4 (inst.operands[1].reg);
14800 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14801 inst.instruction |= neon_quad (rs) << 6;
14802 inst.instruction |= (flavour == neon_cvt_flavour_u32_f32) << 7;
14803 inst.instruction |= mode << 8;
14804 if (thumb_mode)
14805 inst.instruction |= 0xfc000000;
14806 else
14807 inst.instruction |= 0xf0000000;
14808 }
14809 else
14810 {
037e8744 14811 int_encode:
7e8e6784
MGD
14812 {
14813 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
037e8744 14814
7e8e6784 14815 NEON_ENCODE (INTEGER, inst);
037e8744 14816
7e8e6784
MGD
14817 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14818 return;
037e8744 14819
7e8e6784
MGD
14820 if (flavour != neon_cvt_flavour_invalid)
14821 inst.instruction |= enctab[flavour];
037e8744 14822
7e8e6784
MGD
14823 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14824 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14825 inst.instruction |= LOW4 (inst.operands[1].reg);
14826 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14827 inst.instruction |= neon_quad (rs) << 6;
14828 inst.instruction |= 2 << 18;
037e8744 14829
7e8e6784
MGD
14830 neon_dp_fixup (&inst);
14831 }
14832 }
14833 break;
037e8744 14834
8e79c3df
CM
14835 /* Half-precision conversions for Advanced SIMD -- neon. */
14836 case NS_QD:
14837 case NS_DQ:
14838
14839 if ((rs == NS_DQ)
14840 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
14841 {
14842 as_bad (_("operand size must match register width"));
14843 break;
14844 }
14845
14846 if ((rs == NS_QD)
14847 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
14848 {
14849 as_bad (_("operand size must match register width"));
14850 break;
14851 }
14852
14853 if (rs == NS_DQ)
14854 inst.instruction = 0x3b60600;
14855 else
14856 inst.instruction = 0x3b60700;
14857
14858 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14859 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14860 inst.instruction |= LOW4 (inst.operands[1].reg);
14861 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
88714cb8 14862 neon_dp_fixup (&inst);
8e79c3df
CM
14863 break;
14864
037e8744
JB
14865 default:
14866 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
7e8e6784
MGD
14867 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
14868 do_vfp_nsyn_cvt (rs, flavour);
14869 else
14870 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
5287ad62 14871 }
5287ad62
JB
14872}
14873
e3e535bc
NC
14874static void
14875do_neon_cvtr (void)
14876{
7e8e6784 14877 do_neon_cvt_1 (neon_cvt_mode_x);
e3e535bc
NC
14878}
14879
14880static void
14881do_neon_cvt (void)
14882{
7e8e6784
MGD
14883 do_neon_cvt_1 (neon_cvt_mode_z);
14884}
14885
14886static void
14887do_neon_cvta (void)
14888{
14889 do_neon_cvt_1 (neon_cvt_mode_a);
14890}
14891
14892static void
14893do_neon_cvtn (void)
14894{
14895 do_neon_cvt_1 (neon_cvt_mode_n);
14896}
14897
14898static void
14899do_neon_cvtp (void)
14900{
14901 do_neon_cvt_1 (neon_cvt_mode_p);
14902}
14903
14904static void
14905do_neon_cvtm (void)
14906{
14907 do_neon_cvt_1 (neon_cvt_mode_m);
e3e535bc
NC
14908}
14909
8e79c3df 14910static void
c70a8987 14911do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
8e79c3df 14912{
c70a8987
MGD
14913 if (is_double)
14914 mark_feature_used (&fpu_vfp_ext_armv8);
8e79c3df 14915
c70a8987
MGD
14916 encode_arm_vfp_reg (inst.operands[0].reg,
14917 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
14918 encode_arm_vfp_reg (inst.operands[1].reg,
14919 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
14920 inst.instruction |= to ? 0x10000 : 0;
14921 inst.instruction |= t ? 0x80 : 0;
14922 inst.instruction |= is_double ? 0x100 : 0;
14923 do_vfp_cond_or_thumb ();
14924}
8e79c3df 14925
c70a8987
MGD
14926static void
14927do_neon_cvttb_1 (bfd_boolean t)
14928{
14929 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_DF, NS_NULL);
8e79c3df 14930
c70a8987
MGD
14931 if (rs == NS_NULL)
14932 return;
14933 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
14934 {
14935 inst.error = NULL;
14936 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
14937 }
14938 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
14939 {
14940 inst.error = NULL;
14941 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
14942 }
14943 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
14944 {
14945 inst.error = NULL;
14946 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
14947 }
14948 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
14949 {
14950 inst.error = NULL;
14951 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
14952 }
14953 else
14954 return;
14955}
14956
14957static void
14958do_neon_cvtb (void)
14959{
14960 do_neon_cvttb_1 (FALSE);
8e79c3df
CM
14961}
14962
14963
14964static void
14965do_neon_cvtt (void)
14966{
c70a8987 14967 do_neon_cvttb_1 (TRUE);
8e79c3df
CM
14968}
14969
5287ad62
JB
14970static void
14971neon_move_immediate (void)
14972{
037e8744
JB
14973 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
14974 struct neon_type_el et = neon_check_type (2, rs,
14975 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62 14976 unsigned immlo, immhi = 0, immbits;
c96612cc 14977 int op, cmode, float_p;
5287ad62 14978
037e8744
JB
14979 constraint (et.type == NT_invtype,
14980 _("operand size must be specified for immediate VMOV"));
14981
5287ad62
JB
14982 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
14983 op = (inst.instruction & (1 << 5)) != 0;
14984
14985 immlo = inst.operands[1].imm;
14986 if (inst.operands[1].regisimm)
14987 immhi = inst.operands[1].reg;
14988
14989 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
14990 _("immediate has bits set outside the operand size"));
14991
c96612cc
JB
14992 float_p = inst.operands[1].immisfloat;
14993
14994 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
136da414 14995 et.size, et.type)) == FAIL)
5287ad62
JB
14996 {
14997 /* Invert relevant bits only. */
14998 neon_invert_size (&immlo, &immhi, et.size);
14999 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
15000 with one or the other; those cases are caught by
15001 neon_cmode_for_move_imm. */
15002 op = !op;
c96612cc
JB
15003 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
15004 &op, et.size, et.type)) == FAIL)
5287ad62 15005 {
dcbf9037 15006 first_error (_("immediate out of range"));
5287ad62
JB
15007 return;
15008 }
15009 }
15010
15011 inst.instruction &= ~(1 << 5);
15012 inst.instruction |= op << 5;
15013
15014 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15015 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 15016 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15017 inst.instruction |= cmode << 8;
15018
15019 neon_write_immbits (immbits);
15020}
15021
15022static void
15023do_neon_mvn (void)
15024{
15025 if (inst.operands[1].isreg)
15026 {
037e8744 15027 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5f4273c7 15028
88714cb8 15029 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15030 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15031 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15032 inst.instruction |= LOW4 (inst.operands[1].reg);
15033 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 15034 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15035 }
15036 else
15037 {
88714cb8 15038 NEON_ENCODE (IMMED, inst);
5287ad62
JB
15039 neon_move_immediate ();
15040 }
15041
88714cb8 15042 neon_dp_fixup (&inst);
5287ad62
JB
15043}
15044
15045/* Encode instructions of form:
15046
15047 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
5f4273c7 15048 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
5287ad62
JB
15049
15050static void
15051neon_mixed_length (struct neon_type_el et, unsigned size)
15052{
15053 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15054 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15055 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15056 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15057 inst.instruction |= LOW4 (inst.operands[2].reg);
15058 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15059 inst.instruction |= (et.type == NT_unsigned) << 24;
15060 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 15061
88714cb8 15062 neon_dp_fixup (&inst);
5287ad62
JB
15063}
15064
15065static void
15066do_neon_dyadic_long (void)
15067{
15068 /* FIXME: Type checking for lengthening op. */
15069 struct neon_type_el et = neon_check_type (3, NS_QDD,
15070 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
15071 neon_mixed_length (et, et.size);
15072}
15073
15074static void
15075do_neon_abal (void)
15076{
15077 struct neon_type_el et = neon_check_type (3, NS_QDD,
15078 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
15079 neon_mixed_length (et, et.size);
15080}
15081
15082static void
15083neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
15084{
15085 if (inst.operands[2].isscalar)
15086 {
dcbf9037
JB
15087 struct neon_type_el et = neon_check_type (3, NS_QDS,
15088 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
88714cb8 15089 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15090 neon_mul_mac (et, et.type == NT_unsigned);
15091 }
15092 else
15093 {
15094 struct neon_type_el et = neon_check_type (3, NS_QDD,
15095 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
88714cb8 15096 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15097 neon_mixed_length (et, et.size);
15098 }
15099}
15100
15101static void
15102do_neon_mac_maybe_scalar_long (void)
15103{
15104 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
15105}
15106
15107static void
15108do_neon_dyadic_wide (void)
15109{
15110 struct neon_type_el et = neon_check_type (3, NS_QQD,
15111 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
15112 neon_mixed_length (et, et.size);
15113}
15114
15115static void
15116do_neon_dyadic_narrow (void)
15117{
15118 struct neon_type_el et = neon_check_type (3, NS_QDD,
15119 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
15120 /* Operand sign is unimportant, and the U bit is part of the opcode,
15121 so force the operand type to integer. */
15122 et.type = NT_integer;
5287ad62
JB
15123 neon_mixed_length (et, et.size / 2);
15124}
15125
15126static void
15127do_neon_mul_sat_scalar_long (void)
15128{
15129 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
15130}
15131
15132static void
15133do_neon_vmull (void)
15134{
15135 if (inst.operands[2].isscalar)
15136 do_neon_mac_maybe_scalar_long ();
15137 else
15138 {
15139 struct neon_type_el et = neon_check_type (3, NS_QDD,
4f51b4bd
MGD
15140 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
15141
5287ad62 15142 if (et.type == NT_poly)
88714cb8 15143 NEON_ENCODE (POLY, inst);
5287ad62 15144 else
88714cb8 15145 NEON_ENCODE (INTEGER, inst);
4f51b4bd
MGD
15146
15147 /* For polynomial encoding the U bit must be zero, and the size must
15148 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
15149 obviously, as 0b10). */
15150 if (et.size == 64)
15151 {
15152 /* Check we're on the correct architecture. */
15153 if (!mark_feature_used (&fpu_crypto_ext_armv8))
15154 inst.error =
15155 _("Instruction form not available on this architecture.");
15156
15157 et.size = 32;
15158 }
15159
5287ad62
JB
15160 neon_mixed_length (et, et.size);
15161 }
15162}
15163
15164static void
15165do_neon_ext (void)
15166{
037e8744 15167 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
15168 struct neon_type_el et = neon_check_type (3, rs,
15169 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15170 unsigned imm = (inst.operands[3].imm * et.size) / 8;
35997600
NC
15171
15172 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
15173 _("shift out of range"));
5287ad62
JB
15174 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15175 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15176 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15177 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15178 inst.instruction |= LOW4 (inst.operands[2].reg);
15179 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 15180 inst.instruction |= neon_quad (rs) << 6;
5287ad62 15181 inst.instruction |= imm << 8;
5f4273c7 15182
88714cb8 15183 neon_dp_fixup (&inst);
5287ad62
JB
15184}
15185
15186static void
15187do_neon_rev (void)
15188{
037e8744 15189 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15190 struct neon_type_el et = neon_check_type (2, rs,
15191 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15192 unsigned op = (inst.instruction >> 7) & 3;
15193 /* N (width of reversed regions) is encoded as part of the bitmask. We
15194 extract it here to check the elements to be reversed are smaller.
15195 Otherwise we'd get a reserved instruction. */
15196 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
9c2799c2 15197 gas_assert (elsize != 0);
5287ad62
JB
15198 constraint (et.size >= elsize,
15199 _("elements must be smaller than reversal region"));
037e8744 15200 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15201}
15202
15203static void
15204do_neon_dup (void)
15205{
15206 if (inst.operands[1].isscalar)
15207 {
037e8744 15208 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037
JB
15209 struct neon_type_el et = neon_check_type (2, rs,
15210 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 15211 unsigned sizebits = et.size >> 3;
dcbf9037 15212 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 15213 int logsize = neon_logbits (et.size);
dcbf9037 15214 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
15215
15216 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
15217 return;
15218
88714cb8 15219 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15220 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15221 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15222 inst.instruction |= LOW4 (dm);
15223 inst.instruction |= HI1 (dm) << 5;
037e8744 15224 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15225 inst.instruction |= x << 17;
15226 inst.instruction |= sizebits << 16;
5f4273c7 15227
88714cb8 15228 neon_dp_fixup (&inst);
5287ad62
JB
15229 }
15230 else
15231 {
037e8744
JB
15232 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
15233 struct neon_type_el et = neon_check_type (2, rs,
15234 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62 15235 /* Duplicate ARM register to lanes of vector. */
88714cb8 15236 NEON_ENCODE (ARMREG, inst);
5287ad62
JB
15237 switch (et.size)
15238 {
15239 case 8: inst.instruction |= 0x400000; break;
15240 case 16: inst.instruction |= 0x000020; break;
15241 case 32: inst.instruction |= 0x000000; break;
15242 default: break;
15243 }
15244 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15245 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
15246 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 15247 inst.instruction |= neon_quad (rs) << 21;
5287ad62
JB
15248 /* The encoding for this instruction is identical for the ARM and Thumb
15249 variants, except for the condition field. */
037e8744 15250 do_vfp_cond_or_thumb ();
5287ad62
JB
15251 }
15252}
15253
15254/* VMOV has particularly many variations. It can be one of:
15255 0. VMOV<c><q> <Qd>, <Qm>
15256 1. VMOV<c><q> <Dd>, <Dm>
15257 (Register operations, which are VORR with Rm = Rn.)
15258 2. VMOV<c><q>.<dt> <Qd>, #<imm>
15259 3. VMOV<c><q>.<dt> <Dd>, #<imm>
15260 (Immediate loads.)
15261 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
15262 (ARM register to scalar.)
15263 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
15264 (Two ARM registers to vector.)
15265 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
15266 (Scalar to ARM register.)
15267 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
15268 (Vector to two ARM registers.)
037e8744
JB
15269 8. VMOV.F32 <Sd>, <Sm>
15270 9. VMOV.F64 <Dd>, <Dm>
15271 (VFP register moves.)
15272 10. VMOV.F32 <Sd>, #imm
15273 11. VMOV.F64 <Dd>, #imm
15274 (VFP float immediate load.)
15275 12. VMOV <Rd>, <Sm>
15276 (VFP single to ARM reg.)
15277 13. VMOV <Sd>, <Rm>
15278 (ARM reg to VFP single.)
15279 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
15280 (Two ARM regs to two VFP singles.)
15281 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
15282 (Two VFP singles to two ARM regs.)
5f4273c7 15283
037e8744
JB
15284 These cases can be disambiguated using neon_select_shape, except cases 1/9
15285 and 3/11 which depend on the operand type too.
5f4273c7 15286
5287ad62 15287 All the encoded bits are hardcoded by this function.
5f4273c7 15288
b7fc2769
JB
15289 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
15290 Cases 5, 7 may be used with VFPv2 and above.
5f4273c7 15291
5287ad62 15292 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
5f4273c7 15293 can specify a type where it doesn't make sense to, and is ignored). */
5287ad62
JB
15294
15295static void
15296do_neon_mov (void)
15297{
037e8744
JB
15298 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
15299 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
15300 NS_NULL);
15301 struct neon_type_el et;
15302 const char *ldconst = 0;
5287ad62 15303
037e8744 15304 switch (rs)
5287ad62 15305 {
037e8744
JB
15306 case NS_DD: /* case 1/9. */
15307 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15308 /* It is not an error here if no type is given. */
15309 inst.error = NULL;
15310 if (et.type == NT_float && et.size == 64)
5287ad62 15311 {
037e8744
JB
15312 do_vfp_nsyn_opcode ("fcpyd");
15313 break;
5287ad62 15314 }
037e8744 15315 /* fall through. */
5287ad62 15316
037e8744
JB
15317 case NS_QQ: /* case 0/1. */
15318 {
15319 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15320 return;
15321 /* The architecture manual I have doesn't explicitly state which
15322 value the U bit should have for register->register moves, but
15323 the equivalent VORR instruction has U = 0, so do that. */
15324 inst.instruction = 0x0200110;
15325 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15326 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15327 inst.instruction |= LOW4 (inst.operands[1].reg);
15328 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15329 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15330 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15331 inst.instruction |= neon_quad (rs) << 6;
15332
88714cb8 15333 neon_dp_fixup (&inst);
037e8744
JB
15334 }
15335 break;
5f4273c7 15336
037e8744
JB
15337 case NS_DI: /* case 3/11. */
15338 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15339 inst.error = NULL;
15340 if (et.type == NT_float && et.size == 64)
5287ad62 15341 {
037e8744
JB
15342 /* case 11 (fconstd). */
15343 ldconst = "fconstd";
15344 goto encode_fconstd;
5287ad62 15345 }
037e8744
JB
15346 /* fall through. */
15347
15348 case NS_QI: /* case 2/3. */
15349 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15350 return;
15351 inst.instruction = 0x0800010;
15352 neon_move_immediate ();
88714cb8 15353 neon_dp_fixup (&inst);
5287ad62 15354 break;
5f4273c7 15355
037e8744
JB
15356 case NS_SR: /* case 4. */
15357 {
15358 unsigned bcdebits = 0;
91d6fa6a 15359 int logsize;
037e8744
JB
15360 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
15361 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
15362
05ac0ffb
JB
15363 /* .<size> is optional here, defaulting to .32. */
15364 if (inst.vectype.elems == 0
15365 && inst.operands[0].vectype.type == NT_invtype
15366 && inst.operands[1].vectype.type == NT_invtype)
15367 {
15368 inst.vectype.el[0].type = NT_untyped;
15369 inst.vectype.el[0].size = 32;
15370 inst.vectype.elems = 1;
15371 }
15372
91d6fa6a
NC
15373 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
15374 logsize = neon_logbits (et.size);
15375
037e8744
JB
15376 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15377 _(BAD_FPU));
15378 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15379 && et.size != 32, _(BAD_FPU));
15380 constraint (et.type == NT_invtype, _("bad type for scalar"));
15381 constraint (x >= 64 / et.size, _("scalar index out of range"));
15382
15383 switch (et.size)
15384 {
15385 case 8: bcdebits = 0x8; break;
15386 case 16: bcdebits = 0x1; break;
15387 case 32: bcdebits = 0x0; break;
15388 default: ;
15389 }
15390
15391 bcdebits |= x << logsize;
15392
15393 inst.instruction = 0xe000b10;
15394 do_vfp_cond_or_thumb ();
15395 inst.instruction |= LOW4 (dn) << 16;
15396 inst.instruction |= HI1 (dn) << 7;
15397 inst.instruction |= inst.operands[1].reg << 12;
15398 inst.instruction |= (bcdebits & 3) << 5;
15399 inst.instruction |= (bcdebits >> 2) << 21;
15400 }
15401 break;
5f4273c7 15402
037e8744 15403 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 15404 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
037e8744 15405 _(BAD_FPU));
b7fc2769 15406
037e8744
JB
15407 inst.instruction = 0xc400b10;
15408 do_vfp_cond_or_thumb ();
15409 inst.instruction |= LOW4 (inst.operands[0].reg);
15410 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
15411 inst.instruction |= inst.operands[1].reg << 12;
15412 inst.instruction |= inst.operands[2].reg << 16;
15413 break;
5f4273c7 15414
037e8744
JB
15415 case NS_RS: /* case 6. */
15416 {
91d6fa6a 15417 unsigned logsize;
037e8744
JB
15418 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
15419 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
15420 unsigned abcdebits = 0;
15421
05ac0ffb
JB
15422 /* .<dt> is optional here, defaulting to .32. */
15423 if (inst.vectype.elems == 0
15424 && inst.operands[0].vectype.type == NT_invtype
15425 && inst.operands[1].vectype.type == NT_invtype)
15426 {
15427 inst.vectype.el[0].type = NT_untyped;
15428 inst.vectype.el[0].size = 32;
15429 inst.vectype.elems = 1;
15430 }
15431
91d6fa6a
NC
15432 et = neon_check_type (2, NS_NULL,
15433 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
15434 logsize = neon_logbits (et.size);
15435
037e8744
JB
15436 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15437 _(BAD_FPU));
15438 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15439 && et.size != 32, _(BAD_FPU));
15440 constraint (et.type == NT_invtype, _("bad type for scalar"));
15441 constraint (x >= 64 / et.size, _("scalar index out of range"));
15442
15443 switch (et.size)
15444 {
15445 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
15446 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
15447 case 32: abcdebits = 0x00; break;
15448 default: ;
15449 }
15450
15451 abcdebits |= x << logsize;
15452 inst.instruction = 0xe100b10;
15453 do_vfp_cond_or_thumb ();
15454 inst.instruction |= LOW4 (dn) << 16;
15455 inst.instruction |= HI1 (dn) << 7;
15456 inst.instruction |= inst.operands[0].reg << 12;
15457 inst.instruction |= (abcdebits & 3) << 5;
15458 inst.instruction |= (abcdebits >> 2) << 21;
15459 }
15460 break;
5f4273c7 15461
037e8744
JB
15462 case NS_RRD: /* case 7 (fmrrd). */
15463 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
15464 _(BAD_FPU));
15465
15466 inst.instruction = 0xc500b10;
15467 do_vfp_cond_or_thumb ();
15468 inst.instruction |= inst.operands[0].reg << 12;
15469 inst.instruction |= inst.operands[1].reg << 16;
15470 inst.instruction |= LOW4 (inst.operands[2].reg);
15471 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15472 break;
5f4273c7 15473
037e8744
JB
15474 case NS_FF: /* case 8 (fcpys). */
15475 do_vfp_nsyn_opcode ("fcpys");
15476 break;
5f4273c7 15477
037e8744
JB
15478 case NS_FI: /* case 10 (fconsts). */
15479 ldconst = "fconsts";
15480 encode_fconstd:
15481 if (is_quarter_float (inst.operands[1].imm))
5287ad62 15482 {
037e8744
JB
15483 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
15484 do_vfp_nsyn_opcode (ldconst);
5287ad62
JB
15485 }
15486 else
037e8744
JB
15487 first_error (_("immediate out of range"));
15488 break;
5f4273c7 15489
037e8744
JB
15490 case NS_RF: /* case 12 (fmrs). */
15491 do_vfp_nsyn_opcode ("fmrs");
15492 break;
5f4273c7 15493
037e8744
JB
15494 case NS_FR: /* case 13 (fmsr). */
15495 do_vfp_nsyn_opcode ("fmsr");
15496 break;
5f4273c7 15497
037e8744
JB
15498 /* The encoders for the fmrrs and fmsrr instructions expect three operands
15499 (one of which is a list), but we have parsed four. Do some fiddling to
15500 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
15501 expect. */
15502 case NS_RRFF: /* case 14 (fmrrs). */
15503 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
15504 _("VFP registers must be adjacent"));
15505 inst.operands[2].imm = 2;
15506 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15507 do_vfp_nsyn_opcode ("fmrrs");
15508 break;
5f4273c7 15509
037e8744
JB
15510 case NS_FFRR: /* case 15 (fmsrr). */
15511 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
15512 _("VFP registers must be adjacent"));
15513 inst.operands[1] = inst.operands[2];
15514 inst.operands[2] = inst.operands[3];
15515 inst.operands[0].imm = 2;
15516 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15517 do_vfp_nsyn_opcode ("fmsrr");
5287ad62 15518 break;
5f4273c7 15519
4c261dff
NC
15520 case NS_NULL:
15521 /* neon_select_shape has determined that the instruction
15522 shape is wrong and has already set the error message. */
15523 break;
15524
5287ad62
JB
15525 default:
15526 abort ();
15527 }
15528}
15529
15530static void
15531do_neon_rshift_round_imm (void)
15532{
037e8744 15533 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15534 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
15535 int imm = inst.operands[2].imm;
15536
15537 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
15538 if (imm == 0)
15539 {
15540 inst.operands[2].present = 0;
15541 do_neon_mov ();
15542 return;
15543 }
15544
15545 constraint (imm < 1 || (unsigned)imm > et.size,
15546 _("immediate out of range for shift"));
037e8744 15547 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
15548 et.size - imm);
15549}
15550
15551static void
15552do_neon_movl (void)
15553{
15554 struct neon_type_el et = neon_check_type (2, NS_QD,
15555 N_EQK | N_DBL, N_SU_32 | N_KEY);
15556 unsigned sizebits = et.size >> 3;
15557 inst.instruction |= sizebits << 19;
15558 neon_two_same (0, et.type == NT_unsigned, -1);
15559}
15560
15561static void
15562do_neon_trn (void)
15563{
037e8744 15564 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15565 struct neon_type_el et = neon_check_type (2, rs,
15566 N_EQK, N_8 | N_16 | N_32 | N_KEY);
88714cb8 15567 NEON_ENCODE (INTEGER, inst);
037e8744 15568 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15569}
15570
15571static void
15572do_neon_zip_uzp (void)
15573{
037e8744 15574 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15575 struct neon_type_el et = neon_check_type (2, rs,
15576 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15577 if (rs == NS_DD && et.size == 32)
15578 {
15579 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
15580 inst.instruction = N_MNEM_vtrn;
15581 do_neon_trn ();
15582 return;
15583 }
037e8744 15584 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15585}
15586
15587static void
15588do_neon_sat_abs_neg (void)
15589{
037e8744 15590 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15591 struct neon_type_el et = neon_check_type (2, rs,
15592 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15593 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15594}
15595
15596static void
15597do_neon_pair_long (void)
15598{
037e8744 15599 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15600 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
15601 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
15602 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 15603 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15604}
15605
15606static void
15607do_neon_recip_est (void)
15608{
037e8744 15609 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15610 struct neon_type_el et = neon_check_type (2, rs,
15611 N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
15612 inst.instruction |= (et.type == NT_float) << 8;
037e8744 15613 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15614}
15615
15616static void
15617do_neon_cls (void)
15618{
037e8744 15619 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15620 struct neon_type_el et = neon_check_type (2, rs,
15621 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15622 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15623}
15624
15625static void
15626do_neon_clz (void)
15627{
037e8744 15628 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15629 struct neon_type_el et = neon_check_type (2, rs,
15630 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 15631 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15632}
15633
15634static void
15635do_neon_cnt (void)
15636{
037e8744 15637 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15638 struct neon_type_el et = neon_check_type (2, rs,
15639 N_EQK | N_INT, N_8 | N_KEY);
037e8744 15640 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15641}
15642
15643static void
15644do_neon_swp (void)
15645{
037e8744
JB
15646 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
15647 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
15648}
15649
15650static void
15651do_neon_tbl_tbx (void)
15652{
15653 unsigned listlenbits;
dcbf9037 15654 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5f4273c7 15655
5287ad62
JB
15656 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
15657 {
dcbf9037 15658 first_error (_("bad list length for table lookup"));
5287ad62
JB
15659 return;
15660 }
5f4273c7 15661
5287ad62
JB
15662 listlenbits = inst.operands[1].imm - 1;
15663 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15664 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15665 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15666 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15667 inst.instruction |= LOW4 (inst.operands[2].reg);
15668 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15669 inst.instruction |= listlenbits << 8;
5f4273c7 15670
88714cb8 15671 neon_dp_fixup (&inst);
5287ad62
JB
15672}
15673
15674static void
15675do_neon_ldm_stm (void)
15676{
15677 /* P, U and L bits are part of bitmask. */
15678 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
15679 unsigned offsetbits = inst.operands[1].imm * 2;
15680
037e8744
JB
15681 if (inst.operands[1].issingle)
15682 {
15683 do_vfp_nsyn_ldm_stm (is_dbmode);
15684 return;
15685 }
15686
5287ad62
JB
15687 constraint (is_dbmode && !inst.operands[0].writeback,
15688 _("writeback (!) must be used for VLDMDB and VSTMDB"));
15689
15690 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
15691 _("register list must contain at least 1 and at most 16 "
15692 "registers"));
15693
15694 inst.instruction |= inst.operands[0].reg << 16;
15695 inst.instruction |= inst.operands[0].writeback << 21;
15696 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15697 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
15698
15699 inst.instruction |= offsetbits;
5f4273c7 15700
037e8744 15701 do_vfp_cond_or_thumb ();
5287ad62
JB
15702}
15703
15704static void
15705do_neon_ldr_str (void)
15706{
5287ad62 15707 int is_ldr = (inst.instruction & (1 << 20)) != 0;
5f4273c7 15708
6844b2c2
MGD
15709 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
15710 And is UNPREDICTABLE in thumb mode. */
fa94de6b 15711 if (!is_ldr
6844b2c2 15712 && inst.operands[1].reg == REG_PC
ba86b375 15713 && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode))
6844b2c2 15714 {
94dcf8bf 15715 if (thumb_mode)
6844b2c2 15716 inst.error = _("Use of PC here is UNPREDICTABLE");
94dcf8bf
JB
15717 else if (warn_on_deprecated)
15718 as_warn (_("Use of PC here is deprecated"));
6844b2c2
MGD
15719 }
15720
037e8744
JB
15721 if (inst.operands[0].issingle)
15722 {
cd2f129f
JB
15723 if (is_ldr)
15724 do_vfp_nsyn_opcode ("flds");
15725 else
15726 do_vfp_nsyn_opcode ("fsts");
5287ad62
JB
15727 }
15728 else
5287ad62 15729 {
cd2f129f
JB
15730 if (is_ldr)
15731 do_vfp_nsyn_opcode ("fldd");
5287ad62 15732 else
cd2f129f 15733 do_vfp_nsyn_opcode ("fstd");
5287ad62 15734 }
5287ad62
JB
15735}
15736
15737/* "interleave" version also handles non-interleaving register VLD1/VST1
15738 instructions. */
15739
15740static void
15741do_neon_ld_st_interleave (void)
15742{
037e8744 15743 struct neon_type_el et = neon_check_type (1, NS_NULL,
5287ad62
JB
15744 N_8 | N_16 | N_32 | N_64);
15745 unsigned alignbits = 0;
15746 unsigned idx;
15747 /* The bits in this table go:
15748 0: register stride of one (0) or two (1)
15749 1,2: register list length, minus one (1, 2, 3, 4).
15750 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
15751 We use -1 for invalid entries. */
15752 const int typetable[] =
15753 {
15754 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
15755 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
15756 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
15757 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
15758 };
15759 int typebits;
15760
dcbf9037
JB
15761 if (et.type == NT_invtype)
15762 return;
15763
5287ad62
JB
15764 if (inst.operands[1].immisalign)
15765 switch (inst.operands[1].imm >> 8)
15766 {
15767 case 64: alignbits = 1; break;
15768 case 128:
e23c0ad8
JZ
15769 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
15770 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
5287ad62
JB
15771 goto bad_alignment;
15772 alignbits = 2;
15773 break;
15774 case 256:
e23c0ad8 15775 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
5287ad62
JB
15776 goto bad_alignment;
15777 alignbits = 3;
15778 break;
15779 default:
15780 bad_alignment:
dcbf9037 15781 first_error (_("bad alignment"));
5287ad62
JB
15782 return;
15783 }
15784
15785 inst.instruction |= alignbits << 4;
15786 inst.instruction |= neon_logbits (et.size) << 6;
15787
15788 /* Bits [4:6] of the immediate in a list specifier encode register stride
15789 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
15790 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
15791 up the right value for "type" in a table based on this value and the given
15792 list style, then stick it back. */
15793 idx = ((inst.operands[0].imm >> 4) & 7)
15794 | (((inst.instruction >> 8) & 3) << 3);
15795
15796 typebits = typetable[idx];
5f4273c7 15797
5287ad62
JB
15798 constraint (typebits == -1, _("bad list type for instruction"));
15799
15800 inst.instruction &= ~0xf00;
15801 inst.instruction |= typebits << 8;
15802}
15803
15804/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
15805 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
15806 otherwise. The variable arguments are a list of pairs of legal (size, align)
15807 values, terminated with -1. */
15808
15809static int
15810neon_alignment_bit (int size, int align, int *do_align, ...)
15811{
15812 va_list ap;
15813 int result = FAIL, thissize, thisalign;
5f4273c7 15814
5287ad62
JB
15815 if (!inst.operands[1].immisalign)
15816 {
15817 *do_align = 0;
15818 return SUCCESS;
15819 }
5f4273c7 15820
5287ad62
JB
15821 va_start (ap, do_align);
15822
15823 do
15824 {
15825 thissize = va_arg (ap, int);
15826 if (thissize == -1)
15827 break;
15828 thisalign = va_arg (ap, int);
15829
15830 if (size == thissize && align == thisalign)
15831 result = SUCCESS;
15832 }
15833 while (result != SUCCESS);
15834
15835 va_end (ap);
15836
15837 if (result == SUCCESS)
15838 *do_align = 1;
15839 else
dcbf9037 15840 first_error (_("unsupported alignment for instruction"));
5f4273c7 15841
5287ad62
JB
15842 return result;
15843}
15844
15845static void
15846do_neon_ld_st_lane (void)
15847{
037e8744 15848 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15849 int align_good, do_align = 0;
15850 int logsize = neon_logbits (et.size);
15851 int align = inst.operands[1].imm >> 8;
15852 int n = (inst.instruction >> 8) & 3;
15853 int max_el = 64 / et.size;
5f4273c7 15854
dcbf9037
JB
15855 if (et.type == NT_invtype)
15856 return;
5f4273c7 15857
5287ad62
JB
15858 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
15859 _("bad list length"));
15860 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
15861 _("scalar index out of range"));
15862 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
15863 && et.size == 8,
15864 _("stride of 2 unavailable when element size is 8"));
5f4273c7 15865
5287ad62
JB
15866 switch (n)
15867 {
15868 case 0: /* VLD1 / VST1. */
15869 align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
15870 32, 32, -1);
15871 if (align_good == FAIL)
15872 return;
15873 if (do_align)
15874 {
15875 unsigned alignbits = 0;
15876 switch (et.size)
15877 {
15878 case 16: alignbits = 0x1; break;
15879 case 32: alignbits = 0x3; break;
15880 default: ;
15881 }
15882 inst.instruction |= alignbits << 4;
15883 }
15884 break;
15885
15886 case 1: /* VLD2 / VST2. */
15887 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
15888 32, 64, -1);
15889 if (align_good == FAIL)
15890 return;
15891 if (do_align)
15892 inst.instruction |= 1 << 4;
15893 break;
15894
15895 case 2: /* VLD3 / VST3. */
15896 constraint (inst.operands[1].immisalign,
15897 _("can't use alignment with this instruction"));
15898 break;
15899
15900 case 3: /* VLD4 / VST4. */
15901 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15902 16, 64, 32, 64, 32, 128, -1);
15903 if (align_good == FAIL)
15904 return;
15905 if (do_align)
15906 {
15907 unsigned alignbits = 0;
15908 switch (et.size)
15909 {
15910 case 8: alignbits = 0x1; break;
15911 case 16: alignbits = 0x1; break;
15912 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
15913 default: ;
15914 }
15915 inst.instruction |= alignbits << 4;
15916 }
15917 break;
15918
15919 default: ;
15920 }
15921
15922 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
15923 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15924 inst.instruction |= 1 << (4 + logsize);
5f4273c7 15925
5287ad62
JB
15926 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
15927 inst.instruction |= logsize << 10;
15928}
15929
15930/* Encode single n-element structure to all lanes VLD<n> instructions. */
15931
15932static void
15933do_neon_ld_dup (void)
15934{
037e8744 15935 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15936 int align_good, do_align = 0;
15937
dcbf9037
JB
15938 if (et.type == NT_invtype)
15939 return;
15940
5287ad62
JB
15941 switch ((inst.instruction >> 8) & 3)
15942 {
15943 case 0: /* VLD1. */
9c2799c2 15944 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
5287ad62
JB
15945 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
15946 &do_align, 16, 16, 32, 32, -1);
15947 if (align_good == FAIL)
15948 return;
15949 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
15950 {
15951 case 1: break;
15952 case 2: inst.instruction |= 1 << 5; break;
dcbf9037 15953 default: first_error (_("bad list length")); return;
5287ad62
JB
15954 }
15955 inst.instruction |= neon_logbits (et.size) << 6;
15956 break;
15957
15958 case 1: /* VLD2. */
15959 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
15960 &do_align, 8, 16, 16, 32, 32, 64, -1);
15961 if (align_good == FAIL)
15962 return;
15963 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
15964 _("bad list length"));
15965 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15966 inst.instruction |= 1 << 5;
15967 inst.instruction |= neon_logbits (et.size) << 6;
15968 break;
15969
15970 case 2: /* VLD3. */
15971 constraint (inst.operands[1].immisalign,
15972 _("can't use alignment with this instruction"));
15973 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
15974 _("bad list length"));
15975 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15976 inst.instruction |= 1 << 5;
15977 inst.instruction |= neon_logbits (et.size) << 6;
15978 break;
15979
15980 case 3: /* VLD4. */
15981 {
15982 int align = inst.operands[1].imm >> 8;
15983 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15984 16, 64, 32, 64, 32, 128, -1);
15985 if (align_good == FAIL)
15986 return;
15987 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
15988 _("bad list length"));
15989 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15990 inst.instruction |= 1 << 5;
15991 if (et.size == 32 && align == 128)
15992 inst.instruction |= 0x3 << 6;
15993 else
15994 inst.instruction |= neon_logbits (et.size) << 6;
15995 }
15996 break;
15997
15998 default: ;
15999 }
16000
16001 inst.instruction |= do_align << 4;
16002}
16003
16004/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
16005 apart from bits [11:4]. */
16006
16007static void
16008do_neon_ldx_stx (void)
16009{
b1a769ed
DG
16010 if (inst.operands[1].isreg)
16011 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
16012
5287ad62
JB
16013 switch (NEON_LANE (inst.operands[0].imm))
16014 {
16015 case NEON_INTERLEAVE_LANES:
88714cb8 16016 NEON_ENCODE (INTERLV, inst);
5287ad62
JB
16017 do_neon_ld_st_interleave ();
16018 break;
5f4273c7 16019
5287ad62 16020 case NEON_ALL_LANES:
88714cb8 16021 NEON_ENCODE (DUP, inst);
2d51fb74
JB
16022 if (inst.instruction == N_INV)
16023 {
16024 first_error ("only loads support such operands");
16025 break;
16026 }
5287ad62
JB
16027 do_neon_ld_dup ();
16028 break;
5f4273c7 16029
5287ad62 16030 default:
88714cb8 16031 NEON_ENCODE (LANE, inst);
5287ad62
JB
16032 do_neon_ld_st_lane ();
16033 }
16034
16035 /* L bit comes from bit mask. */
16036 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16037 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16038 inst.instruction |= inst.operands[1].reg << 16;
5f4273c7 16039
5287ad62
JB
16040 if (inst.operands[1].postind)
16041 {
16042 int postreg = inst.operands[1].imm & 0xf;
16043 constraint (!inst.operands[1].immisreg,
16044 _("post-index must be a register"));
16045 constraint (postreg == 0xd || postreg == 0xf,
16046 _("bad register for post-index"));
16047 inst.instruction |= postreg;
16048 }
16049 else if (inst.operands[1].writeback)
16050 {
16051 inst.instruction |= 0xd;
16052 }
16053 else
5f4273c7
NC
16054 inst.instruction |= 0xf;
16055
5287ad62
JB
16056 if (thumb_mode)
16057 inst.instruction |= 0xf9000000;
16058 else
16059 inst.instruction |= 0xf4000000;
16060}
33399f07
MGD
16061
16062/* FP v8. */
16063static void
16064do_vfp_nsyn_fpv8 (enum neon_shape rs)
16065{
16066 NEON_ENCODE (FPV8, inst);
16067
16068 if (rs == NS_FFF)
16069 do_vfp_sp_dyadic ();
16070 else
16071 do_vfp_dp_rd_rn_rm ();
16072
16073 if (rs == NS_DDD)
16074 inst.instruction |= 0x100;
16075
16076 inst.instruction |= 0xf0000000;
16077}
16078
16079static void
16080do_vsel (void)
16081{
16082 set_it_insn_type (OUTSIDE_IT_INSN);
16083
16084 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
16085 first_error (_("invalid instruction shape"));
16086}
16087
73924fbc
MGD
16088static void
16089do_vmaxnm (void)
16090{
16091 set_it_insn_type (OUTSIDE_IT_INSN);
16092
16093 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
16094 return;
16095
16096 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16097 return;
16098
16099 neon_dyadic_misc (NT_untyped, N_F32, 0);
16100}
16101
30bdf752
MGD
16102static void
16103do_vrint_1 (enum neon_cvt_mode mode)
16104{
16105 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_QQ, NS_NULL);
16106 struct neon_type_el et;
16107
16108 if (rs == NS_NULL)
16109 return;
16110
16111 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
16112 if (et.type != NT_invtype)
16113 {
16114 /* VFP encodings. */
16115 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
16116 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
16117 set_it_insn_type (OUTSIDE_IT_INSN);
16118
16119 NEON_ENCODE (FPV8, inst);
16120 if (rs == NS_FF)
16121 do_vfp_sp_monadic ();
16122 else
16123 do_vfp_dp_rd_rm ();
16124
16125 switch (mode)
16126 {
16127 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
16128 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
16129 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
16130 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
16131 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
16132 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
16133 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
16134 default: abort ();
16135 }
16136
16137 inst.instruction |= (rs == NS_DD) << 8;
16138 do_vfp_cond_or_thumb ();
16139 }
16140 else
16141 {
16142 /* Neon encodings (or something broken...). */
16143 inst.error = NULL;
16144 et = neon_check_type (2, rs, N_EQK, N_F32 | N_KEY);
16145
16146 if (et.type == NT_invtype)
16147 return;
16148
16149 set_it_insn_type (OUTSIDE_IT_INSN);
16150 NEON_ENCODE (FLOAT, inst);
16151
16152 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16153 return;
16154
16155 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16156 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16157 inst.instruction |= LOW4 (inst.operands[1].reg);
16158 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16159 inst.instruction |= neon_quad (rs) << 6;
16160 switch (mode)
16161 {
16162 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
16163 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
16164 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
16165 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
16166 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
16167 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
16168 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
16169 default: abort ();
16170 }
16171
16172 if (thumb_mode)
16173 inst.instruction |= 0xfc000000;
16174 else
16175 inst.instruction |= 0xf0000000;
16176 }
16177}
16178
16179static void
16180do_vrintx (void)
16181{
16182 do_vrint_1 (neon_cvt_mode_x);
16183}
16184
16185static void
16186do_vrintz (void)
16187{
16188 do_vrint_1 (neon_cvt_mode_z);
16189}
16190
16191static void
16192do_vrintr (void)
16193{
16194 do_vrint_1 (neon_cvt_mode_r);
16195}
16196
16197static void
16198do_vrinta (void)
16199{
16200 do_vrint_1 (neon_cvt_mode_a);
16201}
16202
16203static void
16204do_vrintn (void)
16205{
16206 do_vrint_1 (neon_cvt_mode_n);
16207}
16208
16209static void
16210do_vrintp (void)
16211{
16212 do_vrint_1 (neon_cvt_mode_p);
16213}
16214
16215static void
16216do_vrintm (void)
16217{
16218 do_vrint_1 (neon_cvt_mode_m);
16219}
16220
91ff7894
MGD
16221/* Crypto v1 instructions. */
16222static void
16223do_crypto_2op_1 (unsigned elttype, int op)
16224{
16225 set_it_insn_type (OUTSIDE_IT_INSN);
16226
16227 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
16228 == NT_invtype)
16229 return;
16230
16231 inst.error = NULL;
16232
16233 NEON_ENCODE (INTEGER, inst);
16234 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16235 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16236 inst.instruction |= LOW4 (inst.operands[1].reg);
16237 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16238 if (op != -1)
16239 inst.instruction |= op << 6;
16240
16241 if (thumb_mode)
16242 inst.instruction |= 0xfc000000;
16243 else
16244 inst.instruction |= 0xf0000000;
16245}
16246
48adcd8e
MGD
16247static void
16248do_crypto_3op_1 (int u, int op)
16249{
16250 set_it_insn_type (OUTSIDE_IT_INSN);
16251
16252 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
16253 N_32 | N_UNT | N_KEY).type == NT_invtype)
16254 return;
16255
16256 inst.error = NULL;
16257
16258 NEON_ENCODE (INTEGER, inst);
16259 neon_three_same (1, u, 8 << op);
16260}
16261
91ff7894
MGD
16262static void
16263do_aese (void)
16264{
16265 do_crypto_2op_1 (N_8, 0);
16266}
16267
16268static void
16269do_aesd (void)
16270{
16271 do_crypto_2op_1 (N_8, 1);
16272}
16273
16274static void
16275do_aesmc (void)
16276{
16277 do_crypto_2op_1 (N_8, 2);
16278}
16279
16280static void
16281do_aesimc (void)
16282{
16283 do_crypto_2op_1 (N_8, 3);
16284}
16285
48adcd8e
MGD
16286static void
16287do_sha1c (void)
16288{
16289 do_crypto_3op_1 (0, 0);
16290}
16291
16292static void
16293do_sha1p (void)
16294{
16295 do_crypto_3op_1 (0, 1);
16296}
16297
16298static void
16299do_sha1m (void)
16300{
16301 do_crypto_3op_1 (0, 2);
16302}
16303
16304static void
16305do_sha1su0 (void)
16306{
16307 do_crypto_3op_1 (0, 3);
16308}
91ff7894 16309
48adcd8e
MGD
16310static void
16311do_sha256h (void)
16312{
16313 do_crypto_3op_1 (1, 0);
16314}
16315
16316static void
16317do_sha256h2 (void)
16318{
16319 do_crypto_3op_1 (1, 1);
16320}
16321
16322static void
16323do_sha256su1 (void)
16324{
16325 do_crypto_3op_1 (1, 2);
16326}
3c9017d2
MGD
16327
16328static void
16329do_sha1h (void)
16330{
16331 do_crypto_2op_1 (N_32, -1);
16332}
16333
16334static void
16335do_sha1su1 (void)
16336{
16337 do_crypto_2op_1 (N_32, 0);
16338}
16339
16340static void
16341do_sha256su0 (void)
16342{
16343 do_crypto_2op_1 (N_32, 1);
16344}
dd5181d5
KT
16345
16346static void
16347do_crc32_1 (unsigned int poly, unsigned int sz)
16348{
16349 unsigned int Rd = inst.operands[0].reg;
16350 unsigned int Rn = inst.operands[1].reg;
16351 unsigned int Rm = inst.operands[2].reg;
16352
16353 set_it_insn_type (OUTSIDE_IT_INSN);
16354 inst.instruction |= LOW4 (Rd) << (thumb_mode ? 8 : 12);
16355 inst.instruction |= LOW4 (Rn) << 16;
16356 inst.instruction |= LOW4 (Rm);
16357 inst.instruction |= sz << (thumb_mode ? 4 : 21);
16358 inst.instruction |= poly << (thumb_mode ? 20 : 9);
16359
16360 if (Rd == REG_PC || Rn == REG_PC || Rm == REG_PC)
16361 as_warn (UNPRED_REG ("r15"));
16362 if (thumb_mode && (Rd == REG_SP || Rn == REG_SP || Rm == REG_SP))
16363 as_warn (UNPRED_REG ("r13"));
16364}
16365
16366static void
16367do_crc32b (void)
16368{
16369 do_crc32_1 (0, 0);
16370}
16371
16372static void
16373do_crc32h (void)
16374{
16375 do_crc32_1 (0, 1);
16376}
16377
16378static void
16379do_crc32w (void)
16380{
16381 do_crc32_1 (0, 2);
16382}
16383
16384static void
16385do_crc32cb (void)
16386{
16387 do_crc32_1 (1, 0);
16388}
16389
16390static void
16391do_crc32ch (void)
16392{
16393 do_crc32_1 (1, 1);
16394}
16395
16396static void
16397do_crc32cw (void)
16398{
16399 do_crc32_1 (1, 2);
16400}
16401
5287ad62
JB
16402\f
16403/* Overall per-instruction processing. */
16404
16405/* We need to be able to fix up arbitrary expressions in some statements.
16406 This is so that we can handle symbols that are an arbitrary distance from
16407 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
16408 which returns part of an address in a form which will be valid for
16409 a data instruction. We do this by pushing the expression into a symbol
16410 in the expr_section, and creating a fix for that. */
16411
16412static void
16413fix_new_arm (fragS * frag,
16414 int where,
16415 short int size,
16416 expressionS * exp,
16417 int pc_rel,
16418 int reloc)
16419{
16420 fixS * new_fix;
16421
16422 switch (exp->X_op)
16423 {
16424 case O_constant:
6e7ce2cd
PB
16425 if (pc_rel)
16426 {
16427 /* Create an absolute valued symbol, so we have something to
16428 refer to in the object file. Unfortunately for us, gas's
16429 generic expression parsing will already have folded out
16430 any use of .set foo/.type foo %function that may have
16431 been used to set type information of the target location,
16432 that's being specified symbolically. We have to presume
16433 the user knows what they are doing. */
16434 char name[16 + 8];
16435 symbolS *symbol;
16436
16437 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
16438
16439 symbol = symbol_find_or_make (name);
16440 S_SET_SEGMENT (symbol, absolute_section);
16441 symbol_set_frag (symbol, &zero_address_frag);
16442 S_SET_VALUE (symbol, exp->X_add_number);
16443 exp->X_op = O_symbol;
16444 exp->X_add_symbol = symbol;
16445 exp->X_add_number = 0;
16446 }
16447 /* FALLTHROUGH */
5287ad62
JB
16448 case O_symbol:
16449 case O_add:
16450 case O_subtract:
21d799b5
NC
16451 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
16452 (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16453 break;
16454
16455 default:
21d799b5
NC
16456 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
16457 pc_rel, (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16458 break;
16459 }
16460
16461 /* Mark whether the fix is to a THUMB instruction, or an ARM
16462 instruction. */
16463 new_fix->tc_fix_data = thumb_mode;
16464}
16465
16466/* Create a frg for an instruction requiring relaxation. */
16467static void
16468output_relax_insn (void)
16469{
16470 char * to;
16471 symbolS *sym;
0110f2b8
PB
16472 int offset;
16473
6e1cb1a6
PB
16474 /* The size of the instruction is unknown, so tie the debug info to the
16475 start of the instruction. */
16476 dwarf2_emit_insn (0);
6e1cb1a6 16477
0110f2b8
PB
16478 switch (inst.reloc.exp.X_op)
16479 {
16480 case O_symbol:
16481 sym = inst.reloc.exp.X_add_symbol;
16482 offset = inst.reloc.exp.X_add_number;
16483 break;
16484 case O_constant:
16485 sym = NULL;
16486 offset = inst.reloc.exp.X_add_number;
16487 break;
16488 default:
16489 sym = make_expr_symbol (&inst.reloc.exp);
16490 offset = 0;
16491 break;
16492 }
16493 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
16494 inst.relax, sym, offset, NULL/*offset, opcode*/);
16495 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
16496}
16497
16498/* Write a 32-bit thumb instruction to buf. */
16499static void
16500put_thumb32_insn (char * buf, unsigned long insn)
16501{
16502 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
16503 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
16504}
16505
b99bd4ef 16506static void
c19d1205 16507output_inst (const char * str)
b99bd4ef 16508{
c19d1205 16509 char * to = NULL;
b99bd4ef 16510
c19d1205 16511 if (inst.error)
b99bd4ef 16512 {
c19d1205 16513 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
16514 return;
16515 }
5f4273c7
NC
16516 if (inst.relax)
16517 {
16518 output_relax_insn ();
0110f2b8 16519 return;
5f4273c7 16520 }
c19d1205
ZW
16521 if (inst.size == 0)
16522 return;
b99bd4ef 16523
c19d1205 16524 to = frag_more (inst.size);
8dc2430f
NC
16525 /* PR 9814: Record the thumb mode into the current frag so that we know
16526 what type of NOP padding to use, if necessary. We override any previous
16527 setting so that if the mode has changed then the NOPS that we use will
16528 match the encoding of the last instruction in the frag. */
cd000bff 16529 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
c19d1205
ZW
16530
16531 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 16532 {
9c2799c2 16533 gas_assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 16534 put_thumb32_insn (to, inst.instruction);
b99bd4ef 16535 }
c19d1205 16536 else if (inst.size > INSN_SIZE)
b99bd4ef 16537 {
9c2799c2 16538 gas_assert (inst.size == (2 * INSN_SIZE));
c19d1205
ZW
16539 md_number_to_chars (to, inst.instruction, INSN_SIZE);
16540 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 16541 }
c19d1205
ZW
16542 else
16543 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 16544
c19d1205
ZW
16545 if (inst.reloc.type != BFD_RELOC_UNUSED)
16546 fix_new_arm (frag_now, to - frag_now->fr_literal,
16547 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
16548 inst.reloc.type);
b99bd4ef 16549
c19d1205 16550 dwarf2_emit_insn (inst.size);
c19d1205 16551}
b99bd4ef 16552
e07e6e58
NC
16553static char *
16554output_it_inst (int cond, int mask, char * to)
16555{
16556 unsigned long instruction = 0xbf00;
16557
16558 mask &= 0xf;
16559 instruction |= mask;
16560 instruction |= cond << 4;
16561
16562 if (to == NULL)
16563 {
16564 to = frag_more (2);
16565#ifdef OBJ_ELF
16566 dwarf2_emit_insn (2);
16567#endif
16568 }
16569
16570 md_number_to_chars (to, instruction, 2);
16571
16572 return to;
16573}
16574
c19d1205
ZW
16575/* Tag values used in struct asm_opcode's tag field. */
16576enum opcode_tag
16577{
16578 OT_unconditional, /* Instruction cannot be conditionalized.
16579 The ARM condition field is still 0xE. */
16580 OT_unconditionalF, /* Instruction cannot be conditionalized
16581 and carries 0xF in its ARM condition field. */
16582 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744
JB
16583 OT_csuffixF, /* Some forms of the instruction take a conditional
16584 suffix, others place 0xF where the condition field
16585 would be. */
c19d1205
ZW
16586 OT_cinfix3, /* Instruction takes a conditional infix,
16587 beginning at character index 3. (In
16588 unified mode, it becomes a suffix.) */
088fa78e
KH
16589 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
16590 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
16591 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
16592 character index 3, even in unified mode. Used for
16593 legacy instructions where suffix and infix forms
16594 may be ambiguous. */
c19d1205 16595 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 16596 suffix or an infix at character index 3. */
c19d1205
ZW
16597 OT_odd_infix_unc, /* This is the unconditional variant of an
16598 instruction that takes a conditional infix
16599 at an unusual position. In unified mode,
16600 this variant will accept a suffix. */
16601 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
16602 are the conditional variants of instructions that
16603 take conditional infixes in unusual positions.
16604 The infix appears at character index
16605 (tag - OT_odd_infix_0). These are not accepted
16606 in unified mode. */
16607};
b99bd4ef 16608
c19d1205
ZW
16609/* Subroutine of md_assemble, responsible for looking up the primary
16610 opcode from the mnemonic the user wrote. STR points to the
16611 beginning of the mnemonic.
16612
16613 This is not simply a hash table lookup, because of conditional
16614 variants. Most instructions have conditional variants, which are
16615 expressed with a _conditional affix_ to the mnemonic. If we were
16616 to encode each conditional variant as a literal string in the opcode
16617 table, it would have approximately 20,000 entries.
16618
16619 Most mnemonics take this affix as a suffix, and in unified syntax,
16620 'most' is upgraded to 'all'. However, in the divided syntax, some
16621 instructions take the affix as an infix, notably the s-variants of
16622 the arithmetic instructions. Of those instructions, all but six
16623 have the infix appear after the third character of the mnemonic.
16624
16625 Accordingly, the algorithm for looking up primary opcodes given
16626 an identifier is:
16627
16628 1. Look up the identifier in the opcode table.
16629 If we find a match, go to step U.
16630
16631 2. Look up the last two characters of the identifier in the
16632 conditions table. If we find a match, look up the first N-2
16633 characters of the identifier in the opcode table. If we
16634 find a match, go to step CE.
16635
16636 3. Look up the fourth and fifth characters of the identifier in
16637 the conditions table. If we find a match, extract those
16638 characters from the identifier, and look up the remaining
16639 characters in the opcode table. If we find a match, go
16640 to step CM.
16641
16642 4. Fail.
16643
16644 U. Examine the tag field of the opcode structure, in case this is
16645 one of the six instructions with its conditional infix in an
16646 unusual place. If it is, the tag tells us where to find the
16647 infix; look it up in the conditions table and set inst.cond
16648 accordingly. Otherwise, this is an unconditional instruction.
16649 Again set inst.cond accordingly. Return the opcode structure.
16650
16651 CE. Examine the tag field to make sure this is an instruction that
16652 should receive a conditional suffix. If it is not, fail.
16653 Otherwise, set inst.cond from the suffix we already looked up,
16654 and return the opcode structure.
16655
16656 CM. Examine the tag field to make sure this is an instruction that
16657 should receive a conditional infix after the third character.
16658 If it is not, fail. Otherwise, undo the edits to the current
16659 line of input and proceed as for case CE. */
16660
16661static const struct asm_opcode *
16662opcode_lookup (char **str)
16663{
16664 char *end, *base;
16665 char *affix;
16666 const struct asm_opcode *opcode;
16667 const struct asm_cond *cond;
e3cb604e 16668 char save[2];
c19d1205
ZW
16669
16670 /* Scan up to the end of the mnemonic, which must end in white space,
721a8186 16671 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
c19d1205 16672 for (base = end = *str; *end != '\0'; end++)
721a8186 16673 if (*end == ' ' || *end == '.')
c19d1205 16674 break;
b99bd4ef 16675
c19d1205 16676 if (end == base)
c921be7d 16677 return NULL;
b99bd4ef 16678
5287ad62 16679 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 16680 if (end[0] == '.')
b99bd4ef 16681 {
5287ad62 16682 int offset = 2;
5f4273c7 16683
267d2029
JB
16684 /* The .w and .n suffixes are only valid if the unified syntax is in
16685 use. */
16686 if (unified_syntax && end[1] == 'w')
c19d1205 16687 inst.size_req = 4;
267d2029 16688 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
16689 inst.size_req = 2;
16690 else
5287ad62
JB
16691 offset = 0;
16692
16693 inst.vectype.elems = 0;
16694
16695 *str = end + offset;
b99bd4ef 16696
5f4273c7 16697 if (end[offset] == '.')
5287ad62 16698 {
267d2029
JB
16699 /* See if we have a Neon type suffix (possible in either unified or
16700 non-unified ARM syntax mode). */
dcbf9037 16701 if (parse_neon_type (&inst.vectype, str) == FAIL)
c921be7d 16702 return NULL;
5287ad62
JB
16703 }
16704 else if (end[offset] != '\0' && end[offset] != ' ')
c921be7d 16705 return NULL;
b99bd4ef 16706 }
c19d1205
ZW
16707 else
16708 *str = end;
b99bd4ef 16709
c19d1205 16710 /* Look for unaffixed or special-case affixed mnemonic. */
21d799b5
NC
16711 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16712 end - base);
c19d1205 16713 if (opcode)
b99bd4ef 16714 {
c19d1205
ZW
16715 /* step U */
16716 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 16717 {
c19d1205
ZW
16718 inst.cond = COND_ALWAYS;
16719 return opcode;
b99bd4ef 16720 }
b99bd4ef 16721
278df34e 16722 if (warn_on_deprecated && unified_syntax)
c19d1205
ZW
16723 as_warn (_("conditional infixes are deprecated in unified syntax"));
16724 affix = base + (opcode->tag - OT_odd_infix_0);
21d799b5 16725 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
9c2799c2 16726 gas_assert (cond);
b99bd4ef 16727
c19d1205
ZW
16728 inst.cond = cond->value;
16729 return opcode;
16730 }
b99bd4ef 16731
c19d1205
ZW
16732 /* Cannot have a conditional suffix on a mnemonic of less than two
16733 characters. */
16734 if (end - base < 3)
c921be7d 16735 return NULL;
b99bd4ef 16736
c19d1205
ZW
16737 /* Look for suffixed mnemonic. */
16738 affix = end - 2;
21d799b5
NC
16739 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
16740 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16741 affix - base);
c19d1205
ZW
16742 if (opcode && cond)
16743 {
16744 /* step CE */
16745 switch (opcode->tag)
16746 {
e3cb604e
PB
16747 case OT_cinfix3_legacy:
16748 /* Ignore conditional suffixes matched on infix only mnemonics. */
16749 break;
16750
c19d1205 16751 case OT_cinfix3:
088fa78e 16752 case OT_cinfix3_deprecated:
c19d1205
ZW
16753 case OT_odd_infix_unc:
16754 if (!unified_syntax)
e3cb604e 16755 return 0;
c19d1205
ZW
16756 /* else fall through */
16757
16758 case OT_csuffix:
037e8744 16759 case OT_csuffixF:
c19d1205
ZW
16760 case OT_csuf_or_in3:
16761 inst.cond = cond->value;
16762 return opcode;
16763
16764 case OT_unconditional:
16765 case OT_unconditionalF:
dfa9f0d5 16766 if (thumb_mode)
c921be7d 16767 inst.cond = cond->value;
dfa9f0d5
PB
16768 else
16769 {
c921be7d 16770 /* Delayed diagnostic. */
dfa9f0d5
PB
16771 inst.error = BAD_COND;
16772 inst.cond = COND_ALWAYS;
16773 }
c19d1205 16774 return opcode;
b99bd4ef 16775
c19d1205 16776 default:
c921be7d 16777 return NULL;
c19d1205
ZW
16778 }
16779 }
b99bd4ef 16780
c19d1205
ZW
16781 /* Cannot have a usual-position infix on a mnemonic of less than
16782 six characters (five would be a suffix). */
16783 if (end - base < 6)
c921be7d 16784 return NULL;
b99bd4ef 16785
c19d1205
ZW
16786 /* Look for infixed mnemonic in the usual position. */
16787 affix = base + 3;
21d799b5 16788 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e 16789 if (!cond)
c921be7d 16790 return NULL;
e3cb604e
PB
16791
16792 memcpy (save, affix, 2);
16793 memmove (affix, affix + 2, (end - affix) - 2);
21d799b5
NC
16794 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16795 (end - base) - 2);
e3cb604e
PB
16796 memmove (affix + 2, affix, (end - affix) - 2);
16797 memcpy (affix, save, 2);
16798
088fa78e
KH
16799 if (opcode
16800 && (opcode->tag == OT_cinfix3
16801 || opcode->tag == OT_cinfix3_deprecated
16802 || opcode->tag == OT_csuf_or_in3
16803 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 16804 {
c921be7d 16805 /* Step CM. */
278df34e 16806 if (warn_on_deprecated && unified_syntax
088fa78e
KH
16807 && (opcode->tag == OT_cinfix3
16808 || opcode->tag == OT_cinfix3_deprecated))
c19d1205
ZW
16809 as_warn (_("conditional infixes are deprecated in unified syntax"));
16810
16811 inst.cond = cond->value;
16812 return opcode;
b99bd4ef
NC
16813 }
16814
c921be7d 16815 return NULL;
b99bd4ef
NC
16816}
16817
e07e6e58
NC
16818/* This function generates an initial IT instruction, leaving its block
16819 virtually open for the new instructions. Eventually,
16820 the mask will be updated by now_it_add_mask () each time
16821 a new instruction needs to be included in the IT block.
16822 Finally, the block is closed with close_automatic_it_block ().
16823 The block closure can be requested either from md_assemble (),
16824 a tencode (), or due to a label hook. */
16825
16826static void
16827new_automatic_it_block (int cond)
16828{
16829 now_it.state = AUTOMATIC_IT_BLOCK;
16830 now_it.mask = 0x18;
16831 now_it.cc = cond;
16832 now_it.block_length = 1;
cd000bff 16833 mapping_state (MAP_THUMB);
e07e6e58 16834 now_it.insn = output_it_inst (cond, now_it.mask, NULL);
5a01bb1d
MGD
16835 now_it.warn_deprecated = FALSE;
16836 now_it.insn_cond = TRUE;
e07e6e58
NC
16837}
16838
16839/* Close an automatic IT block.
16840 See comments in new_automatic_it_block (). */
16841
16842static void
16843close_automatic_it_block (void)
16844{
16845 now_it.mask = 0x10;
16846 now_it.block_length = 0;
16847}
16848
16849/* Update the mask of the current automatically-generated IT
16850 instruction. See comments in new_automatic_it_block (). */
16851
16852static void
16853now_it_add_mask (int cond)
16854{
16855#define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
16856#define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
16857 | ((bitvalue) << (nbit)))
e07e6e58 16858 const int resulting_bit = (cond & 1);
c921be7d 16859
e07e6e58
NC
16860 now_it.mask &= 0xf;
16861 now_it.mask = SET_BIT_VALUE (now_it.mask,
16862 resulting_bit,
16863 (5 - now_it.block_length));
16864 now_it.mask = SET_BIT_VALUE (now_it.mask,
16865 1,
16866 ((5 - now_it.block_length) - 1) );
16867 output_it_inst (now_it.cc, now_it.mask, now_it.insn);
16868
16869#undef CLEAR_BIT
16870#undef SET_BIT_VALUE
e07e6e58
NC
16871}
16872
16873/* The IT blocks handling machinery is accessed through the these functions:
16874 it_fsm_pre_encode () from md_assemble ()
16875 set_it_insn_type () optional, from the tencode functions
16876 set_it_insn_type_last () ditto
16877 in_it_block () ditto
16878 it_fsm_post_encode () from md_assemble ()
16879 force_automatic_it_block_close () from label habdling functions
16880
16881 Rationale:
16882 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
16883 initializing the IT insn type with a generic initial value depending
16884 on the inst.condition.
16885 2) During the tencode function, two things may happen:
16886 a) The tencode function overrides the IT insn type by
16887 calling either set_it_insn_type (type) or set_it_insn_type_last ().
16888 b) The tencode function queries the IT block state by
16889 calling in_it_block () (i.e. to determine narrow/not narrow mode).
16890
16891 Both set_it_insn_type and in_it_block run the internal FSM state
16892 handling function (handle_it_state), because: a) setting the IT insn
16893 type may incur in an invalid state (exiting the function),
16894 and b) querying the state requires the FSM to be updated.
16895 Specifically we want to avoid creating an IT block for conditional
16896 branches, so it_fsm_pre_encode is actually a guess and we can't
16897 determine whether an IT block is required until the tencode () routine
16898 has decided what type of instruction this actually it.
16899 Because of this, if set_it_insn_type and in_it_block have to be used,
16900 set_it_insn_type has to be called first.
16901
16902 set_it_insn_type_last () is a wrapper of set_it_insn_type (type), that
16903 determines the insn IT type depending on the inst.cond code.
16904 When a tencode () routine encodes an instruction that can be
16905 either outside an IT block, or, in the case of being inside, has to be
16906 the last one, set_it_insn_type_last () will determine the proper
16907 IT instruction type based on the inst.cond code. Otherwise,
16908 set_it_insn_type can be called for overriding that logic or
16909 for covering other cases.
16910
16911 Calling handle_it_state () may not transition the IT block state to
16912 OUTSIDE_IT_BLOCK immediatelly, since the (current) state could be
16913 still queried. Instead, if the FSM determines that the state should
16914 be transitioned to OUTSIDE_IT_BLOCK, a flag is marked to be closed
16915 after the tencode () function: that's what it_fsm_post_encode () does.
16916
16917 Since in_it_block () calls the state handling function to get an
16918 updated state, an error may occur (due to invalid insns combination).
16919 In that case, inst.error is set.
16920 Therefore, inst.error has to be checked after the execution of
16921 the tencode () routine.
16922
16923 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
16924 any pending state change (if any) that didn't take place in
16925 handle_it_state () as explained above. */
16926
16927static void
16928it_fsm_pre_encode (void)
16929{
16930 if (inst.cond != COND_ALWAYS)
16931 inst.it_insn_type = INSIDE_IT_INSN;
16932 else
16933 inst.it_insn_type = OUTSIDE_IT_INSN;
16934
16935 now_it.state_handled = 0;
16936}
16937
16938/* IT state FSM handling function. */
16939
16940static int
16941handle_it_state (void)
16942{
16943 now_it.state_handled = 1;
5a01bb1d 16944 now_it.insn_cond = FALSE;
e07e6e58
NC
16945
16946 switch (now_it.state)
16947 {
16948 case OUTSIDE_IT_BLOCK:
16949 switch (inst.it_insn_type)
16950 {
16951 case OUTSIDE_IT_INSN:
16952 break;
16953
16954 case INSIDE_IT_INSN:
16955 case INSIDE_IT_LAST_INSN:
16956 if (thumb_mode == 0)
16957 {
c921be7d 16958 if (unified_syntax
e07e6e58
NC
16959 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
16960 as_tsktsk (_("Warning: conditional outside an IT block"\
16961 " for Thumb."));
16962 }
16963 else
16964 {
16965 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
16966 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2))
16967 {
16968 /* Automatically generate the IT instruction. */
16969 new_automatic_it_block (inst.cond);
16970 if (inst.it_insn_type == INSIDE_IT_LAST_INSN)
16971 close_automatic_it_block ();
16972 }
16973 else
16974 {
16975 inst.error = BAD_OUT_IT;
16976 return FAIL;
16977 }
16978 }
16979 break;
16980
16981 case IF_INSIDE_IT_LAST_INSN:
16982 case NEUTRAL_IT_INSN:
16983 break;
16984
16985 case IT_INSN:
16986 now_it.state = MANUAL_IT_BLOCK;
16987 now_it.block_length = 0;
16988 break;
16989 }
16990 break;
16991
16992 case AUTOMATIC_IT_BLOCK:
16993 /* Three things may happen now:
16994 a) We should increment current it block size;
16995 b) We should close current it block (closing insn or 4 insns);
16996 c) We should close current it block and start a new one (due
16997 to incompatible conditions or
16998 4 insns-length block reached). */
16999
17000 switch (inst.it_insn_type)
17001 {
17002 case OUTSIDE_IT_INSN:
17003 /* The closure of the block shall happen immediatelly,
17004 so any in_it_block () call reports the block as closed. */
17005 force_automatic_it_block_close ();
17006 break;
17007
17008 case INSIDE_IT_INSN:
17009 case INSIDE_IT_LAST_INSN:
17010 case IF_INSIDE_IT_LAST_INSN:
17011 now_it.block_length++;
17012
17013 if (now_it.block_length > 4
17014 || !now_it_compatible (inst.cond))
17015 {
17016 force_automatic_it_block_close ();
17017 if (inst.it_insn_type != IF_INSIDE_IT_LAST_INSN)
17018 new_automatic_it_block (inst.cond);
17019 }
17020 else
17021 {
5a01bb1d 17022 now_it.insn_cond = TRUE;
e07e6e58
NC
17023 now_it_add_mask (inst.cond);
17024 }
17025
17026 if (now_it.state == AUTOMATIC_IT_BLOCK
17027 && (inst.it_insn_type == INSIDE_IT_LAST_INSN
17028 || inst.it_insn_type == IF_INSIDE_IT_LAST_INSN))
17029 close_automatic_it_block ();
17030 break;
17031
17032 case NEUTRAL_IT_INSN:
17033 now_it.block_length++;
5a01bb1d 17034 now_it.insn_cond = TRUE;
e07e6e58
NC
17035
17036 if (now_it.block_length > 4)
17037 force_automatic_it_block_close ();
17038 else
17039 now_it_add_mask (now_it.cc & 1);
17040 break;
17041
17042 case IT_INSN:
17043 close_automatic_it_block ();
17044 now_it.state = MANUAL_IT_BLOCK;
17045 break;
17046 }
17047 break;
17048
17049 case MANUAL_IT_BLOCK:
17050 {
17051 /* Check conditional suffixes. */
17052 const int cond = now_it.cc ^ ((now_it.mask >> 4) & 1) ^ 1;
17053 int is_last;
17054 now_it.mask <<= 1;
17055 now_it.mask &= 0x1f;
17056 is_last = (now_it.mask == 0x10);
5a01bb1d 17057 now_it.insn_cond = TRUE;
e07e6e58
NC
17058
17059 switch (inst.it_insn_type)
17060 {
17061 case OUTSIDE_IT_INSN:
17062 inst.error = BAD_NOT_IT;
17063 return FAIL;
17064
17065 case INSIDE_IT_INSN:
17066 if (cond != inst.cond)
17067 {
17068 inst.error = BAD_IT_COND;
17069 return FAIL;
17070 }
17071 break;
17072
17073 case INSIDE_IT_LAST_INSN:
17074 case IF_INSIDE_IT_LAST_INSN:
17075 if (cond != inst.cond)
17076 {
17077 inst.error = BAD_IT_COND;
17078 return FAIL;
17079 }
17080 if (!is_last)
17081 {
17082 inst.error = BAD_BRANCH;
17083 return FAIL;
17084 }
17085 break;
17086
17087 case NEUTRAL_IT_INSN:
17088 /* The BKPT instruction is unconditional even in an IT block. */
17089 break;
17090
17091 case IT_INSN:
17092 inst.error = BAD_IT_IT;
17093 return FAIL;
17094 }
17095 }
17096 break;
17097 }
17098
17099 return SUCCESS;
17100}
17101
5a01bb1d
MGD
17102struct depr_insn_mask
17103{
17104 unsigned long pattern;
17105 unsigned long mask;
17106 const char* description;
17107};
17108
17109/* List of 16-bit instruction patterns deprecated in an IT block in
17110 ARMv8. */
17111static const struct depr_insn_mask depr_it_insns[] = {
17112 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
17113 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
17114 { 0xa000, 0xb800, N_("ADR") },
17115 { 0x4800, 0xf800, N_("Literal loads") },
17116 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
17117 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
17118 { 0, 0, NULL }
17119};
17120
e07e6e58
NC
17121static void
17122it_fsm_post_encode (void)
17123{
17124 int is_last;
17125
17126 if (!now_it.state_handled)
17127 handle_it_state ();
17128
5a01bb1d
MGD
17129 if (now_it.insn_cond
17130 && !now_it.warn_deprecated
17131 && warn_on_deprecated
17132 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
17133 {
17134 if (inst.instruction >= 0x10000)
17135 {
17136 as_warn (_("it blocks containing wide Thumb instructions are "
17137 "deprecated in ARMv8"));
17138 now_it.warn_deprecated = TRUE;
17139 }
17140 else
17141 {
17142 const struct depr_insn_mask *p = depr_it_insns;
17143
17144 while (p->mask != 0)
17145 {
17146 if ((inst.instruction & p->mask) == p->pattern)
17147 {
17148 as_warn (_("it blocks containing 16-bit Thumb intsructions "
17149 "of the following class are deprecated in ARMv8: "
17150 "%s"), p->description);
17151 now_it.warn_deprecated = TRUE;
17152 break;
17153 }
17154
17155 ++p;
17156 }
17157 }
17158
17159 if (now_it.block_length > 1)
17160 {
17161 as_warn (_("it blocks of more than one conditional instruction are "
17162 "deprecated in ARMv8"));
17163 now_it.warn_deprecated = TRUE;
17164 }
17165 }
17166
e07e6e58
NC
17167 is_last = (now_it.mask == 0x10);
17168 if (is_last)
17169 {
17170 now_it.state = OUTSIDE_IT_BLOCK;
17171 now_it.mask = 0;
17172 }
17173}
17174
17175static void
17176force_automatic_it_block_close (void)
17177{
17178 if (now_it.state == AUTOMATIC_IT_BLOCK)
17179 {
17180 close_automatic_it_block ();
17181 now_it.state = OUTSIDE_IT_BLOCK;
17182 now_it.mask = 0;
17183 }
17184}
17185
17186static int
17187in_it_block (void)
17188{
17189 if (!now_it.state_handled)
17190 handle_it_state ();
17191
17192 return now_it.state != OUTSIDE_IT_BLOCK;
17193}
17194
c19d1205
ZW
17195void
17196md_assemble (char *str)
b99bd4ef 17197{
c19d1205
ZW
17198 char *p = str;
17199 const struct asm_opcode * opcode;
b99bd4ef 17200
c19d1205
ZW
17201 /* Align the previous label if needed. */
17202 if (last_label_seen != NULL)
b99bd4ef 17203 {
c19d1205
ZW
17204 symbol_set_frag (last_label_seen, frag_now);
17205 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
17206 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
17207 }
17208
c19d1205
ZW
17209 memset (&inst, '\0', sizeof (inst));
17210 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 17211
c19d1205
ZW
17212 opcode = opcode_lookup (&p);
17213 if (!opcode)
b99bd4ef 17214 {
c19d1205 17215 /* It wasn't an instruction, but it might be a register alias of
dcbf9037 17216 the form alias .req reg, or a Neon .dn/.qn directive. */
c921be7d
NC
17217 if (! create_register_alias (str, p)
17218 && ! create_neon_reg_alias (str, p))
c19d1205 17219 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 17220
b99bd4ef
NC
17221 return;
17222 }
17223
278df34e 17224 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
088fa78e
KH
17225 as_warn (_("s suffix on comparison instruction is deprecated"));
17226
037e8744
JB
17227 /* The value which unconditional instructions should have in place of the
17228 condition field. */
17229 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
17230
c19d1205 17231 if (thumb_mode)
b99bd4ef 17232 {
e74cfd16 17233 arm_feature_set variant;
8f06b2d8
PB
17234
17235 variant = cpu_variant;
17236 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
17237 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
17238 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 17239 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
17240 if (!opcode->tvariant
17241 || (thumb_mode == 1
17242 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 17243 {
bf3eeda7 17244 as_bad (_("selected processor does not support Thumb mode `%s'"), str);
b99bd4ef
NC
17245 return;
17246 }
c19d1205
ZW
17247 if (inst.cond != COND_ALWAYS && !unified_syntax
17248 && opcode->tencode != do_t_branch)
b99bd4ef 17249 {
c19d1205 17250 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
17251 return;
17252 }
17253
752d5da4 17254 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2))
076d447c 17255 {
7e806470 17256 if (opcode->tencode != do_t_blx && opcode->tencode != do_t_branch23
752d5da4
NC
17257 && !(ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_msr)
17258 || ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_barrier)))
17259 {
17260 /* Two things are addressed here.
17261 1) Implicit require narrow instructions on Thumb-1.
17262 This avoids relaxation accidentally introducing Thumb-2
17263 instructions.
17264 2) Reject wide instructions in non Thumb-2 cores. */
17265 if (inst.size_req == 0)
17266 inst.size_req = 2;
17267 else if (inst.size_req == 4)
17268 {
bf3eeda7 17269 as_bad (_("selected processor does not support Thumb-2 mode `%s'"), str);
752d5da4
NC
17270 return;
17271 }
17272 }
076d447c
PB
17273 }
17274
c19d1205
ZW
17275 inst.instruction = opcode->tvalue;
17276
5be8be5d 17277 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
e07e6e58
NC
17278 {
17279 /* Prepare the it_insn_type for those encodings that don't set
17280 it. */
17281 it_fsm_pre_encode ();
c19d1205 17282
e07e6e58
NC
17283 opcode->tencode ();
17284
17285 it_fsm_post_encode ();
17286 }
e27ec89e 17287
0110f2b8 17288 if (!(inst.error || inst.relax))
b99bd4ef 17289 {
9c2799c2 17290 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
c19d1205
ZW
17291 inst.size = (inst.instruction > 0xffff ? 4 : 2);
17292 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 17293 {
c19d1205 17294 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
17295 return;
17296 }
17297 }
076d447c
PB
17298
17299 /* Something has gone badly wrong if we try to relax a fixed size
17300 instruction. */
9c2799c2 17301 gas_assert (inst.size_req == 0 || !inst.relax);
076d447c 17302
e74cfd16
PB
17303 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17304 *opcode->tvariant);
ee065d83 17305 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
708587a4 17306 set those bits when Thumb-2 32-bit instructions are seen. ie.
7e806470 17307 anything other than bl/blx and v6-M instructions.
ee065d83 17308 This is overly pessimistic for relaxable instructions. */
7e806470
PB
17309 if (((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
17310 || inst.relax)
e07e6e58
NC
17311 && !(ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
17312 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier)))
e74cfd16
PB
17313 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17314 arm_ext_v6t2);
cd000bff 17315
88714cb8
DG
17316 check_neon_suffixes;
17317
cd000bff 17318 if (!inst.error)
c877a2f2
NC
17319 {
17320 mapping_state (MAP_THUMB);
17321 }
c19d1205 17322 }
3e9e4fcf 17323 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205 17324 {
845b51d6
PB
17325 bfd_boolean is_bx;
17326
17327 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
17328 is_bx = (opcode->aencode == do_bx);
17329
c19d1205 17330 /* Check that this instruction is supported for this CPU. */
845b51d6
PB
17331 if (!(is_bx && fix_v4bx)
17332 && !(opcode->avariant &&
17333 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
b99bd4ef 17334 {
bf3eeda7 17335 as_bad (_("selected processor does not support ARM mode `%s'"), str);
c19d1205 17336 return;
b99bd4ef 17337 }
c19d1205 17338 if (inst.size_req)
b99bd4ef 17339 {
c19d1205
ZW
17340 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
17341 return;
b99bd4ef
NC
17342 }
17343
c19d1205
ZW
17344 inst.instruction = opcode->avalue;
17345 if (opcode->tag == OT_unconditionalF)
17346 inst.instruction |= 0xF << 28;
17347 else
17348 inst.instruction |= inst.cond << 28;
17349 inst.size = INSN_SIZE;
5be8be5d 17350 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
e07e6e58
NC
17351 {
17352 it_fsm_pre_encode ();
17353 opcode->aencode ();
17354 it_fsm_post_encode ();
17355 }
ee065d83
PB
17356 /* Arm mode bx is marked as both v4T and v5 because it's still required
17357 on a hypothetical non-thumb v5 core. */
845b51d6 17358 if (is_bx)
e74cfd16 17359 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 17360 else
e74cfd16
PB
17361 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
17362 *opcode->avariant);
88714cb8
DG
17363
17364 check_neon_suffixes;
17365
cd000bff 17366 if (!inst.error)
c877a2f2
NC
17367 {
17368 mapping_state (MAP_ARM);
17369 }
b99bd4ef 17370 }
3e9e4fcf
JB
17371 else
17372 {
17373 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
17374 "-- `%s'"), str);
17375 return;
17376 }
c19d1205
ZW
17377 output_inst (str);
17378}
b99bd4ef 17379
e07e6e58
NC
17380static void
17381check_it_blocks_finished (void)
17382{
17383#ifdef OBJ_ELF
17384 asection *sect;
17385
17386 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
17387 if (seg_info (sect)->tc_segment_info_data.current_it.state
17388 == MANUAL_IT_BLOCK)
17389 {
17390 as_warn (_("section '%s' finished with an open IT block."),
17391 sect->name);
17392 }
17393#else
17394 if (now_it.state == MANUAL_IT_BLOCK)
17395 as_warn (_("file finished with an open IT block."));
17396#endif
17397}
17398
c19d1205
ZW
17399/* Various frobbings of labels and their addresses. */
17400
17401void
17402arm_start_line_hook (void)
17403{
17404 last_label_seen = NULL;
b99bd4ef
NC
17405}
17406
c19d1205
ZW
17407void
17408arm_frob_label (symbolS * sym)
b99bd4ef 17409{
c19d1205 17410 last_label_seen = sym;
b99bd4ef 17411
c19d1205 17412 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 17413
c19d1205
ZW
17414#if defined OBJ_COFF || defined OBJ_ELF
17415 ARM_SET_INTERWORK (sym, support_interwork);
17416#endif
b99bd4ef 17417
e07e6e58
NC
17418 force_automatic_it_block_close ();
17419
5f4273c7 17420 /* Note - do not allow local symbols (.Lxxx) to be labelled
c19d1205
ZW
17421 as Thumb functions. This is because these labels, whilst
17422 they exist inside Thumb code, are not the entry points for
17423 possible ARM->Thumb calls. Also, these labels can be used
17424 as part of a computed goto or switch statement. eg gcc
17425 can generate code that looks like this:
b99bd4ef 17426
c19d1205
ZW
17427 ldr r2, [pc, .Laaa]
17428 lsl r3, r3, #2
17429 ldr r2, [r3, r2]
17430 mov pc, r2
b99bd4ef 17431
c19d1205
ZW
17432 .Lbbb: .word .Lxxx
17433 .Lccc: .word .Lyyy
17434 ..etc...
17435 .Laaa: .word Lbbb
b99bd4ef 17436
c19d1205
ZW
17437 The first instruction loads the address of the jump table.
17438 The second instruction converts a table index into a byte offset.
17439 The third instruction gets the jump address out of the table.
17440 The fourth instruction performs the jump.
b99bd4ef 17441
c19d1205
ZW
17442 If the address stored at .Laaa is that of a symbol which has the
17443 Thumb_Func bit set, then the linker will arrange for this address
17444 to have the bottom bit set, which in turn would mean that the
17445 address computation performed by the third instruction would end
17446 up with the bottom bit set. Since the ARM is capable of unaligned
17447 word loads, the instruction would then load the incorrect address
17448 out of the jump table, and chaos would ensue. */
17449 if (label_is_thumb_function_name
17450 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
17451 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 17452 {
c19d1205
ZW
17453 /* When the address of a Thumb function is taken the bottom
17454 bit of that address should be set. This will allow
17455 interworking between Arm and Thumb functions to work
17456 correctly. */
b99bd4ef 17457
c19d1205 17458 THUMB_SET_FUNC (sym, 1);
b99bd4ef 17459
c19d1205 17460 label_is_thumb_function_name = FALSE;
b99bd4ef 17461 }
07a53e5c 17462
07a53e5c 17463 dwarf2_emit_label (sym);
b99bd4ef
NC
17464}
17465
c921be7d 17466bfd_boolean
c19d1205 17467arm_data_in_code (void)
b99bd4ef 17468{
c19d1205 17469 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 17470 {
c19d1205
ZW
17471 *input_line_pointer = '/';
17472 input_line_pointer += 5;
17473 *input_line_pointer = 0;
c921be7d 17474 return TRUE;
b99bd4ef
NC
17475 }
17476
c921be7d 17477 return FALSE;
b99bd4ef
NC
17478}
17479
c19d1205
ZW
17480char *
17481arm_canonicalize_symbol_name (char * name)
b99bd4ef 17482{
c19d1205 17483 int len;
b99bd4ef 17484
c19d1205
ZW
17485 if (thumb_mode && (len = strlen (name)) > 5
17486 && streq (name + len - 5, "/data"))
17487 *(name + len - 5) = 0;
b99bd4ef 17488
c19d1205 17489 return name;
b99bd4ef 17490}
c19d1205
ZW
17491\f
17492/* Table of all register names defined by default. The user can
17493 define additional names with .req. Note that all register names
17494 should appear in both upper and lowercase variants. Some registers
17495 also have mixed-case names. */
b99bd4ef 17496
dcbf9037 17497#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 17498#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 17499#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
17500#define REGSET(p,t) \
17501 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
17502 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
17503 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
17504 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
17505#define REGSETH(p,t) \
17506 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
17507 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
17508 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
17509 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
17510#define REGSET2(p,t) \
17511 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
17512 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
17513 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
17514 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
90ec0d68
MGD
17515#define SPLRBANK(base,bank,t) \
17516 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
17517 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
17518 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
17519 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
17520 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
17521 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
7ed4c4c5 17522
c19d1205 17523static const struct reg_entry reg_names[] =
7ed4c4c5 17524{
c19d1205
ZW
17525 /* ARM integer registers. */
17526 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 17527
c19d1205
ZW
17528 /* ATPCS synonyms. */
17529 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
17530 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
17531 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 17532
c19d1205
ZW
17533 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
17534 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
17535 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 17536
c19d1205
ZW
17537 /* Well-known aliases. */
17538 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
17539 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
17540
17541 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
17542 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
17543
17544 /* Coprocessor numbers. */
17545 REGSET(p, CP), REGSET(P, CP),
17546
17547 /* Coprocessor register numbers. The "cr" variants are for backward
17548 compatibility. */
17549 REGSET(c, CN), REGSET(C, CN),
17550 REGSET(cr, CN), REGSET(CR, CN),
17551
90ec0d68
MGD
17552 /* ARM banked registers. */
17553 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
17554 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
17555 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
17556 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
17557 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
17558 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
17559 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
17560
17561 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
17562 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
17563 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
17564 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
17565 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
1472d06f 17566 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(sp_fiq,512|(13<<16),RNB),
90ec0d68
MGD
17567 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
17568 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
17569
17570 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
17571 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
17572 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
17573 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
17574 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
17575 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
17576 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
fa94de6b 17577 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
90ec0d68
MGD
17578 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
17579
c19d1205
ZW
17580 /* FPA registers. */
17581 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
17582 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
17583
17584 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
17585 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
17586
17587 /* VFP SP registers. */
5287ad62
JB
17588 REGSET(s,VFS), REGSET(S,VFS),
17589 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
17590
17591 /* VFP DP Registers. */
5287ad62
JB
17592 REGSET(d,VFD), REGSET(D,VFD),
17593 /* Extra Neon DP registers. */
17594 REGSETH(d,VFD), REGSETH(D,VFD),
17595
17596 /* Neon QP registers. */
17597 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
17598
17599 /* VFP control registers. */
17600 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
17601 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
cd2cf30b
PB
17602 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
17603 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
17604 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
17605 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
c19d1205
ZW
17606
17607 /* Maverick DSP coprocessor registers. */
17608 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
17609 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
17610
17611 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
17612 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
17613 REGDEF(dspsc,0,DSPSC),
17614
17615 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
17616 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
17617 REGDEF(DSPSC,0,DSPSC),
17618
17619 /* iWMMXt data registers - p0, c0-15. */
17620 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
17621
17622 /* iWMMXt control registers - p1, c0-3. */
17623 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
17624 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
17625 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
17626 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
17627
17628 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
17629 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
17630 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
17631 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
17632 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
17633
17634 /* XScale accumulator registers. */
17635 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
17636};
17637#undef REGDEF
17638#undef REGNUM
17639#undef REGSET
7ed4c4c5 17640
c19d1205
ZW
17641/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
17642 within psr_required_here. */
17643static const struct asm_psr psrs[] =
17644{
17645 /* Backward compatibility notation. Note that "all" is no longer
17646 truly all possible PSR bits. */
17647 {"all", PSR_c | PSR_f},
17648 {"flg", PSR_f},
17649 {"ctl", PSR_c},
17650
17651 /* Individual flags. */
17652 {"f", PSR_f},
17653 {"c", PSR_c},
17654 {"x", PSR_x},
17655 {"s", PSR_s},
59b42a0d 17656
c19d1205
ZW
17657 /* Combinations of flags. */
17658 {"fs", PSR_f | PSR_s},
17659 {"fx", PSR_f | PSR_x},
17660 {"fc", PSR_f | PSR_c},
17661 {"sf", PSR_s | PSR_f},
17662 {"sx", PSR_s | PSR_x},
17663 {"sc", PSR_s | PSR_c},
17664 {"xf", PSR_x | PSR_f},
17665 {"xs", PSR_x | PSR_s},
17666 {"xc", PSR_x | PSR_c},
17667 {"cf", PSR_c | PSR_f},
17668 {"cs", PSR_c | PSR_s},
17669 {"cx", PSR_c | PSR_x},
17670 {"fsx", PSR_f | PSR_s | PSR_x},
17671 {"fsc", PSR_f | PSR_s | PSR_c},
17672 {"fxs", PSR_f | PSR_x | PSR_s},
17673 {"fxc", PSR_f | PSR_x | PSR_c},
17674 {"fcs", PSR_f | PSR_c | PSR_s},
17675 {"fcx", PSR_f | PSR_c | PSR_x},
17676 {"sfx", PSR_s | PSR_f | PSR_x},
17677 {"sfc", PSR_s | PSR_f | PSR_c},
17678 {"sxf", PSR_s | PSR_x | PSR_f},
17679 {"sxc", PSR_s | PSR_x | PSR_c},
17680 {"scf", PSR_s | PSR_c | PSR_f},
17681 {"scx", PSR_s | PSR_c | PSR_x},
17682 {"xfs", PSR_x | PSR_f | PSR_s},
17683 {"xfc", PSR_x | PSR_f | PSR_c},
17684 {"xsf", PSR_x | PSR_s | PSR_f},
17685 {"xsc", PSR_x | PSR_s | PSR_c},
17686 {"xcf", PSR_x | PSR_c | PSR_f},
17687 {"xcs", PSR_x | PSR_c | PSR_s},
17688 {"cfs", PSR_c | PSR_f | PSR_s},
17689 {"cfx", PSR_c | PSR_f | PSR_x},
17690 {"csf", PSR_c | PSR_s | PSR_f},
17691 {"csx", PSR_c | PSR_s | PSR_x},
17692 {"cxf", PSR_c | PSR_x | PSR_f},
17693 {"cxs", PSR_c | PSR_x | PSR_s},
17694 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
17695 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
17696 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
17697 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
17698 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
17699 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
17700 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
17701 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
17702 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
17703 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
17704 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
17705 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
17706 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
17707 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
17708 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
17709 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
17710 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
17711 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
17712 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
17713 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
17714 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
17715 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
17716 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
17717 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
17718};
17719
62b3e311
PB
17720/* Table of V7M psr names. */
17721static const struct asm_psr v7m_psrs[] =
17722{
2b744c99
PB
17723 {"apsr", 0 }, {"APSR", 0 },
17724 {"iapsr", 1 }, {"IAPSR", 1 },
17725 {"eapsr", 2 }, {"EAPSR", 2 },
17726 {"psr", 3 }, {"PSR", 3 },
17727 {"xpsr", 3 }, {"XPSR", 3 }, {"xPSR", 3 },
17728 {"ipsr", 5 }, {"IPSR", 5 },
17729 {"epsr", 6 }, {"EPSR", 6 },
17730 {"iepsr", 7 }, {"IEPSR", 7 },
17731 {"msp", 8 }, {"MSP", 8 },
17732 {"psp", 9 }, {"PSP", 9 },
17733 {"primask", 16}, {"PRIMASK", 16},
17734 {"basepri", 17}, {"BASEPRI", 17},
00bbc0bd
NC
17735 {"basepri_max", 18}, {"BASEPRI_MAX", 18},
17736 {"basepri_max", 18}, {"BASEPRI_MASK", 18}, /* Typo, preserved for backwards compatibility. */
2b744c99
PB
17737 {"faultmask", 19}, {"FAULTMASK", 19},
17738 {"control", 20}, {"CONTROL", 20}
62b3e311
PB
17739};
17740
c19d1205
ZW
17741/* Table of all shift-in-operand names. */
17742static const struct asm_shift_name shift_names [] =
b99bd4ef 17743{
c19d1205
ZW
17744 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
17745 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
17746 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
17747 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
17748 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
17749 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
17750};
b99bd4ef 17751
c19d1205
ZW
17752/* Table of all explicit relocation names. */
17753#ifdef OBJ_ELF
17754static struct reloc_entry reloc_names[] =
17755{
17756 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
17757 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
17758 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
17759 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
17760 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
17761 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
17762 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
17763 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
17764 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
17765 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
b43420e6 17766 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
0855e32b
NS
17767 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
17768 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
17769 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
17770 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
17771 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
17772 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
17773 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ}
c19d1205
ZW
17774};
17775#endif
b99bd4ef 17776
c19d1205
ZW
17777/* Table of all conditional affixes. 0xF is not defined as a condition code. */
17778static const struct asm_cond conds[] =
17779{
17780 {"eq", 0x0},
17781 {"ne", 0x1},
17782 {"cs", 0x2}, {"hs", 0x2},
17783 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
17784 {"mi", 0x4},
17785 {"pl", 0x5},
17786 {"vs", 0x6},
17787 {"vc", 0x7},
17788 {"hi", 0x8},
17789 {"ls", 0x9},
17790 {"ge", 0xa},
17791 {"lt", 0xb},
17792 {"gt", 0xc},
17793 {"le", 0xd},
17794 {"al", 0xe}
17795};
bfae80f2 17796
e797f7e0
MGD
17797#define UL_BARRIER(L,U,CODE,FEAT) \
17798 { L, CODE, ARM_FEATURE (FEAT, 0) }, \
17799 { U, CODE, ARM_FEATURE (FEAT, 0) }
17800
62b3e311
PB
17801static struct asm_barrier_opt barrier_opt_names[] =
17802{
e797f7e0
MGD
17803 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
17804 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
17805 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
17806 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
17807 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
17808 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
17809 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
17810 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
17811 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
17812 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
17813 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
17814 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
17815 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
17816 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
17817 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
17818 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
62b3e311
PB
17819};
17820
e797f7e0
MGD
17821#undef UL_BARRIER
17822
c19d1205
ZW
17823/* Table of ARM-format instructions. */
17824
17825/* Macros for gluing together operand strings. N.B. In all cases
17826 other than OPS0, the trailing OP_stop comes from default
17827 zero-initialization of the unspecified elements of the array. */
17828#define OPS0() { OP_stop, }
17829#define OPS1(a) { OP_##a, }
17830#define OPS2(a,b) { OP_##a,OP_##b, }
17831#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
17832#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
17833#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
17834#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
17835
5be8be5d
DG
17836/* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
17837 This is useful when mixing operands for ARM and THUMB, i.e. using the
17838 MIX_ARM_THUMB_OPERANDS macro.
17839 In order to use these macros, prefix the number of operands with _
17840 e.g. _3. */
17841#define OPS_1(a) { a, }
17842#define OPS_2(a,b) { a,b, }
17843#define OPS_3(a,b,c) { a,b,c, }
17844#define OPS_4(a,b,c,d) { a,b,c,d, }
17845#define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
17846#define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
17847
c19d1205
ZW
17848/* These macros abstract out the exact format of the mnemonic table and
17849 save some repeated characters. */
17850
17851/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
17852#define TxCE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17853 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 17854 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17855
17856/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
17857 a T_MNEM_xyz enumerator. */
17858#define TCE(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17859 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17860#define tCE(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17861 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
17862
17863/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
17864 infix after the third character. */
17865#define TxC3(mnem, op, top, nops, ops, ae, te) \
21d799b5 17866 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 17867 THUMB_VARIANT, do_##ae, do_##te }
088fa78e 17868#define TxC3w(mnem, op, top, nops, ops, ae, te) \
21d799b5 17869 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
088fa78e 17870 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 17871#define TC3(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17872 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e 17873#define TC3w(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17874 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17875#define tC3(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17876 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
088fa78e 17877#define tC3w(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17878 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205 17879
c19d1205 17880/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
17881 field is still 0xE. Many of the Thumb variants can be executed
17882 conditionally, so this is checked separately. */
c19d1205 17883#define TUE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17884 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17885 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 17886
dd5181d5
KT
17887/* Same as TUE but the encoding function for ARM and Thumb modes is the same.
17888 Used by mnemonics that have very minimal differences in the encoding for
17889 ARM and Thumb variants and can be handled in a common function. */
17890#define TUEc(mnem, op, top, nops, ops, en) \
17891 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
17892 THUMB_VARIANT, do_##en, do_##en }
17893
c19d1205
ZW
17894/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
17895 condition code field. */
17896#define TUF(mnem, op, top, nops, ops, ae, te) \
21d799b5 17897 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17898 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17899
17900/* ARM-only variants of all the above. */
6a86118a 17901#define CE(mnem, op, nops, ops, ae) \
21d799b5 17902 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
6a86118a
NC
17903
17904#define C3(mnem, op, nops, ops, ae) \
17905 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17906
e3cb604e
PB
17907/* Legacy mnemonics that always have conditional infix after the third
17908 character. */
17909#define CL(mnem, op, nops, ops, ae) \
21d799b5 17910 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17911 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17912
8f06b2d8
PB
17913/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
17914#define cCE(mnem, op, nops, ops, ae) \
21d799b5 17915 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17916
e3cb604e
PB
17917/* Legacy coprocessor instructions where conditional infix and conditional
17918 suffix are ambiguous. For consistency this includes all FPA instructions,
17919 not just the potentially ambiguous ones. */
17920#define cCL(mnem, op, nops, ops, ae) \
21d799b5 17921 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17922 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
17923
17924/* Coprocessor, takes either a suffix or a position-3 infix
17925 (for an FPA corner case). */
17926#define C3E(mnem, op, nops, ops, ae) \
21d799b5 17927 { mnem, OPS##nops ops, OT_csuf_or_in3, \
e3cb604e 17928 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17929
6a86118a 17930#define xCM_(m1, m2, m3, op, nops, ops, ae) \
21d799b5
NC
17931 { m1 #m2 m3, OPS##nops ops, \
17932 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
6a86118a
NC
17933 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17934
17935#define CM(m1, m2, op, nops, ops, ae) \
e07e6e58
NC
17936 xCM_ (m1, , m2, op, nops, ops, ae), \
17937 xCM_ (m1, eq, m2, op, nops, ops, ae), \
17938 xCM_ (m1, ne, m2, op, nops, ops, ae), \
17939 xCM_ (m1, cs, m2, op, nops, ops, ae), \
17940 xCM_ (m1, hs, m2, op, nops, ops, ae), \
17941 xCM_ (m1, cc, m2, op, nops, ops, ae), \
17942 xCM_ (m1, ul, m2, op, nops, ops, ae), \
17943 xCM_ (m1, lo, m2, op, nops, ops, ae), \
17944 xCM_ (m1, mi, m2, op, nops, ops, ae), \
17945 xCM_ (m1, pl, m2, op, nops, ops, ae), \
17946 xCM_ (m1, vs, m2, op, nops, ops, ae), \
17947 xCM_ (m1, vc, m2, op, nops, ops, ae), \
17948 xCM_ (m1, hi, m2, op, nops, ops, ae), \
17949 xCM_ (m1, ls, m2, op, nops, ops, ae), \
17950 xCM_ (m1, ge, m2, op, nops, ops, ae), \
17951 xCM_ (m1, lt, m2, op, nops, ops, ae), \
17952 xCM_ (m1, gt, m2, op, nops, ops, ae), \
17953 xCM_ (m1, le, m2, op, nops, ops, ae), \
17954 xCM_ (m1, al, m2, op, nops, ops, ae)
6a86118a
NC
17955
17956#define UE(mnem, op, nops, ops, ae) \
17957 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17958
17959#define UF(mnem, op, nops, ops, ae) \
17960 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17961
5287ad62
JB
17962/* Neon data-processing. ARM versions are unconditional with cond=0xf.
17963 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
17964 use the same encoding function for each. */
17965#define NUF(mnem, op, nops, ops, enc) \
17966 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
17967 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17968
17969/* Neon data processing, version which indirects through neon_enc_tab for
17970 the various overloaded versions of opcodes. */
17971#define nUF(mnem, op, nops, ops, enc) \
21d799b5 17972 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17973 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17974
17975/* Neon insn with conditional suffix for the ARM version, non-overloaded
17976 version. */
037e8744
JB
17977#define NCE_tag(mnem, op, nops, ops, enc, tag) \
17978 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
17979 THUMB_VARIANT, do_##enc, do_##enc }
17980
037e8744 17981#define NCE(mnem, op, nops, ops, enc) \
e07e6e58 17982 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17983
17984#define NCEF(mnem, op, nops, ops, enc) \
e07e6e58 17985 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17986
5287ad62 17987/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744 17988#define nCE_tag(mnem, op, nops, ops, enc, tag) \
21d799b5 17989 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17990 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17991
037e8744 17992#define nCE(mnem, op, nops, ops, enc) \
e07e6e58 17993 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17994
17995#define nCEF(mnem, op, nops, ops, enc) \
e07e6e58 17996 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17997
c19d1205
ZW
17998#define do_0 0
17999
c19d1205 18000static const struct asm_opcode insns[] =
bfae80f2 18001{
e74cfd16
PB
18002#define ARM_VARIANT &arm_ext_v1 /* Core ARM Instructions. */
18003#define THUMB_VARIANT &arm_ext_v4t
21d799b5
NC
18004 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
18005 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
18006 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
18007 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
18008 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
18009 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
18010 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
18011 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
18012 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
18013 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
18014 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
18015 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
18016 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
18017 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
18018 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
18019 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
c19d1205
ZW
18020
18021 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
18022 for setting PSR flag bits. They are obsolete in V6 and do not
18023 have Thumb equivalents. */
21d799b5
NC
18024 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
18025 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
18026 CL("tstp", 110f000, 2, (RR, SH), cmp),
18027 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
18028 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
18029 CL("cmpp", 150f000, 2, (RR, SH), cmp),
18030 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
18031 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
18032 CL("cmnp", 170f000, 2, (RR, SH), cmp),
18033
18034 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
18035 tC3("movs", 1b00000, _movs, 2, (RR, SH), mov, t_mov_cmp),
18036 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
18037 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
18038
18039 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
5be8be5d
DG
18040 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
18041 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
18042 OP_RRnpc),
18043 OP_ADDRGLDR),ldst, t_ldst),
18044 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
21d799b5
NC
18045
18046 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18047 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18048 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18049 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18050 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18051 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18052
18053 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
18054 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
18055 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
18056 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 18057
c19d1205 18058 /* Pseudo ops. */
21d799b5 18059 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac 18060 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
21d799b5 18061 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
c19d1205
ZW
18062
18063 /* Thumb-compatibility pseudo ops. */
21d799b5
NC
18064 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
18065 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
18066 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
18067 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
18068 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
18069 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
18070 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
18071 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
18072 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
18073 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
18074 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
18075 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
c19d1205 18076
16a4cf17 18077 /* These may simplify to neg. */
21d799b5
NC
18078 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
18079 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
16a4cf17 18080
c921be7d
NC
18081#undef THUMB_VARIANT
18082#define THUMB_VARIANT & arm_ext_v6
18083
21d799b5 18084 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
18085
18086 /* V1 instructions with no Thumb analogue prior to V6T2. */
c921be7d
NC
18087#undef THUMB_VARIANT
18088#define THUMB_VARIANT & arm_ext_v6t2
18089
21d799b5
NC
18090 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
18091 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
18092 CL("teqp", 130f000, 2, (RR, SH), cmp),
c19d1205 18093
5be8be5d
DG
18094 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
18095 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
18096 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
18097 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
c19d1205 18098
21d799b5
NC
18099 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18100 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 18101
21d799b5
NC
18102 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18103 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
18104
18105 /* V1 instructions with no Thumb analogue at all. */
21d799b5 18106 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
c19d1205
ZW
18107 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
18108
18109 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
18110 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
18111 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
18112 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
18113 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
18114 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
18115 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
18116 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
18117
c921be7d
NC
18118#undef ARM_VARIANT
18119#define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
18120#undef THUMB_VARIANT
18121#define THUMB_VARIANT & arm_ext_v4t
18122
21d799b5
NC
18123 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
18124 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
c19d1205 18125
c921be7d
NC
18126#undef THUMB_VARIANT
18127#define THUMB_VARIANT & arm_ext_v6t2
18128
21d799b5 18129 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
c19d1205
ZW
18130 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
18131
18132 /* Generic coprocessor instructions. */
21d799b5
NC
18133 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18134 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18135 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18136 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18137 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18138 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
db472d6f 18139 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18140
c921be7d
NC
18141#undef ARM_VARIANT
18142#define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
18143
21d799b5 18144 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
c19d1205
ZW
18145 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
18146
c921be7d
NC
18147#undef ARM_VARIANT
18148#define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
18149#undef THUMB_VARIANT
18150#define THUMB_VARIANT & arm_ext_msr
18151
d2cd1205
JB
18152 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
18153 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
c19d1205 18154
c921be7d
NC
18155#undef ARM_VARIANT
18156#define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
18157#undef THUMB_VARIANT
18158#define THUMB_VARIANT & arm_ext_v6t2
18159
21d799b5
NC
18160 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18161 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18162 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18163 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18164 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18165 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18166 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18167 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
c19d1205 18168
c921be7d
NC
18169#undef ARM_VARIANT
18170#define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
18171#undef THUMB_VARIANT
18172#define THUMB_VARIANT & arm_ext_v4t
18173
5be8be5d
DG
18174 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18175 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18176 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18177 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
56c0a61f
RE
18178 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18179 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
c19d1205 18180
c921be7d
NC
18181#undef ARM_VARIANT
18182#define ARM_VARIANT & arm_ext_v4t_5
18183
c19d1205
ZW
18184 /* ARM Architecture 4T. */
18185 /* Note: bx (and blx) are required on V5, even if the processor does
18186 not support Thumb. */
21d799b5 18187 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
c19d1205 18188
c921be7d
NC
18189#undef ARM_VARIANT
18190#define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
18191#undef THUMB_VARIANT
18192#define THUMB_VARIANT & arm_ext_v5t
18193
c19d1205
ZW
18194 /* Note: blx has 2 variants; the .value coded here is for
18195 BLX(2). Only this variant has conditional execution. */
21d799b5
NC
18196 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
18197 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
c19d1205 18198
c921be7d
NC
18199#undef THUMB_VARIANT
18200#define THUMB_VARIANT & arm_ext_v6t2
18201
21d799b5
NC
18202 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
18203 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18204 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18205 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18206 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18207 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18208 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
18209 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18210
c921be7d
NC
18211#undef ARM_VARIANT
18212#define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
9e3c6df6
PB
18213#undef THUMB_VARIANT
18214#define THUMB_VARIANT &arm_ext_v5exp
c921be7d 18215
21d799b5
NC
18216 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18217 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18218 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18219 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18220
21d799b5
NC
18221 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18222 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18223
21d799b5
NC
18224 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18225 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18226 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18227 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
c19d1205 18228
21d799b5
NC
18229 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18230 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18231 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18232 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18233
21d799b5
NC
18234 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18235 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18236
03ee1b7f
NC
18237 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18238 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18239 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18240 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
c19d1205 18241
c921be7d
NC
18242#undef ARM_VARIANT
18243#define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
9e3c6df6
PB
18244#undef THUMB_VARIANT
18245#define THUMB_VARIANT &arm_ext_v6t2
c921be7d 18246
21d799b5 18247 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
5be8be5d
DG
18248 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
18249 ldrd, t_ldstd),
18250 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
18251 ADDRGLDRS), ldrd, t_ldstd),
c19d1205 18252
21d799b5
NC
18253 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18254 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
c19d1205 18255
c921be7d
NC
18256#undef ARM_VARIANT
18257#define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
18258
21d799b5 18259 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
c19d1205 18260
c921be7d
NC
18261#undef ARM_VARIANT
18262#define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
18263#undef THUMB_VARIANT
18264#define THUMB_VARIANT & arm_ext_v6
18265
21d799b5
NC
18266 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
18267 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
18268 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18269 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18270 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18271 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18272 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18273 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18274 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18275 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
c19d1205 18276
c921be7d
NC
18277#undef THUMB_VARIANT
18278#define THUMB_VARIANT & arm_ext_v6t2
18279
5be8be5d
DG
18280 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
18281 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
18282 strex, t_strex),
21d799b5
NC
18283 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18284 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311 18285
21d799b5
NC
18286 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
18287 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
62b3e311 18288
9e3c6df6 18289/* ARM V6 not included in V7M. */
c921be7d
NC
18290#undef THUMB_VARIANT
18291#define THUMB_VARIANT & arm_ext_v6_notm
9e3c6df6 18292 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6 18293 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
9e3c6df6
PB
18294 UF(rfeib, 9900a00, 1, (RRw), rfe),
18295 UF(rfeda, 8100a00, 1, (RRw), rfe),
18296 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18297 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6
RE
18298 UF(rfefa, 8100a00, 1, (RRw), rfe),
18299 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18300 UF(rfeed, 9900a00, 1, (RRw), rfe),
9e3c6df6 18301 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
d709e4e6
RE
18302 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
18303 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
9e3c6df6 18304 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
d709e4e6 18305 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
9e3c6df6 18306 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
d709e4e6 18307 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
9e3c6df6 18308 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
d709e4e6 18309 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
c921be7d 18310
9e3c6df6
PB
18311/* ARM V6 not included in V7M (eg. integer SIMD). */
18312#undef THUMB_VARIANT
18313#define THUMB_VARIANT & arm_ext_v6_dsp
21d799b5
NC
18314 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
18315 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
18316 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
18317 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18318 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18319 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18320 /* Old name for QASX. */
21d799b5
NC
18321 TCE("qaddsubx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18322 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18323 /* Old name for QSAX. */
21d799b5
NC
18324 TCE("qsubaddx", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18325 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18326 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18327 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18328 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18329 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18330 /* Old name for SASX. */
21d799b5
NC
18331 TCE("saddsubx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18332 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18333 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18334 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18335 /* Old name for SHASX. */
21d799b5
NC
18336 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18337 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18338 /* Old name for SHSAX. */
21d799b5
NC
18339 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18340 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18341 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18342 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18343 /* Old name for SSAX. */
21d799b5
NC
18344 TCE("ssubaddx", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18345 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18346 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18347 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18348 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18349 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18350 /* Old name for UASX. */
21d799b5
NC
18351 TCE("uaddsubx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18352 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18353 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18354 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18355 /* Old name for UHASX. */
21d799b5
NC
18356 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18357 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18358 /* Old name for UHSAX. */
21d799b5
NC
18359 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18360 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18361 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18362 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18363 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18364 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18365 /* Old name for UQASX. */
21d799b5
NC
18366 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18367 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18368 /* Old name for UQSAX. */
21d799b5
NC
18369 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18370 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18371 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18372 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18373 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18374 /* Old name for USAX. */
21d799b5
NC
18375 TCE("usubaddx", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18376 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18377 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18378 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18379 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18380 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18381 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18382 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18383 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18384 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18385 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18386 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18387 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18388 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18389 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18390 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18391 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18392 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18393 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18394 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18395 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18396 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18397 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18398 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18399 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18400 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18401 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18402 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18403 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
21d799b5
NC
18404 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
18405 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
18406 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18407 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18408 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
c19d1205 18409
c921be7d
NC
18410#undef ARM_VARIANT
18411#define ARM_VARIANT & arm_ext_v6k
18412#undef THUMB_VARIANT
18413#define THUMB_VARIANT & arm_ext_v6k
18414
21d799b5
NC
18415 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
18416 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
18417 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
18418 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
c19d1205 18419
c921be7d
NC
18420#undef THUMB_VARIANT
18421#define THUMB_VARIANT & arm_ext_v6_notm
5be8be5d
DG
18422 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
18423 ldrexd, t_ldrexd),
18424 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
18425 RRnpcb), strexd, t_strexd),
ebdca51a 18426
c921be7d
NC
18427#undef THUMB_VARIANT
18428#define THUMB_VARIANT & arm_ext_v6t2
5be8be5d
DG
18429 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
18430 rd_rn, rd_rn),
18431 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
18432 rd_rn, rd_rn),
18433 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18434 strex, t_strexbh),
5be8be5d 18435 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18436 strex, t_strexbh),
21d799b5 18437 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
c19d1205 18438
c921be7d 18439#undef ARM_VARIANT
f4c65163
MGD
18440#define ARM_VARIANT & arm_ext_sec
18441#undef THUMB_VARIANT
18442#define THUMB_VARIANT & arm_ext_sec
c921be7d 18443
21d799b5 18444 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205 18445
90ec0d68
MGD
18446#undef ARM_VARIANT
18447#define ARM_VARIANT & arm_ext_virt
18448#undef THUMB_VARIANT
18449#define THUMB_VARIANT & arm_ext_virt
18450
18451 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
18452 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
18453
c921be7d
NC
18454#undef ARM_VARIANT
18455#define ARM_VARIANT & arm_ext_v6t2
f4c65163
MGD
18456#undef THUMB_VARIANT
18457#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 18458
21d799b5
NC
18459 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
18460 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
18461 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
18462 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
c19d1205 18463
21d799b5
NC
18464 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
18465 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
18466 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
18467 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205 18468
5be8be5d
DG
18469 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18470 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18471 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18472 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
c19d1205 18473
bf3eeda7
NS
18474 /* Thumb-only instructions. */
18475#undef ARM_VARIANT
18476#define ARM_VARIANT NULL
18477 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
18478 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
c921be7d
NC
18479
18480 /* ARM does not really have an IT instruction, so always allow it.
18481 The opcode is copied from Thumb in order to allow warnings in
18482 -mimplicit-it=[never | arm] modes. */
18483#undef ARM_VARIANT
18484#define ARM_VARIANT & arm_ext_v1
18485
21d799b5
NC
18486 TUE("it", bf08, bf08, 1, (COND), it, t_it),
18487 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
18488 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
18489 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
18490 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
18491 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
18492 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
18493 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
18494 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
18495 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
18496 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
18497 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
18498 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
18499 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
18500 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
1c444d06 18501 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
21d799b5
NC
18502 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
18503 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
c19d1205 18504
92e90b6e 18505 /* Thumb2 only instructions. */
c921be7d
NC
18506#undef ARM_VARIANT
18507#define ARM_VARIANT NULL
92e90b6e 18508
21d799b5
NC
18509 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18510 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18511 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
18512 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
18513 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
18514 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
92e90b6e 18515
eea54501
MGD
18516 /* Hardware division instructions. */
18517#undef ARM_VARIANT
18518#define ARM_VARIANT & arm_ext_adiv
c921be7d
NC
18519#undef THUMB_VARIANT
18520#define THUMB_VARIANT & arm_ext_div
18521
eea54501
MGD
18522 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
18523 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
62b3e311 18524
7e806470 18525 /* ARM V6M/V7 instructions. */
c921be7d
NC
18526#undef ARM_VARIANT
18527#define ARM_VARIANT & arm_ext_barrier
18528#undef THUMB_VARIANT
18529#define THUMB_VARIANT & arm_ext_barrier
18530
52e7f43d
RE
18531 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, t_barrier),
18532 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, t_barrier),
18533 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, t_barrier),
7e806470 18534
62b3e311 18535 /* ARM V7 instructions. */
c921be7d
NC
18536#undef ARM_VARIANT
18537#define ARM_VARIANT & arm_ext_v7
18538#undef THUMB_VARIANT
18539#define THUMB_VARIANT & arm_ext_v7
18540
21d799b5
NC
18541 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
18542 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
62b3e311 18543
60e5ef9f
MGD
18544#undef ARM_VARIANT
18545#define ARM_VARIANT & arm_ext_mp
18546#undef THUMB_VARIANT
18547#define THUMB_VARIANT & arm_ext_mp
18548
18549 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
18550
53c4b28b
MGD
18551 /* AArchv8 instructions. */
18552#undef ARM_VARIANT
18553#define ARM_VARIANT & arm_ext_v8
18554#undef THUMB_VARIANT
18555#define THUMB_VARIANT & arm_ext_v8
18556
18557 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
8884b720 18558 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
4b8c8c02
RE
18559 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18560 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18561 ldrexd, t_ldrexd),
4b8c8c02
RE
18562 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
18563 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18564 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
18565 stlex, t_stlex),
18566 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18567 strexd, t_strexd),
4b8c8c02
RE
18568 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
18569 stlex, t_stlex),
18570 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
18571 stlex, t_stlex),
18572 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18573 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18574 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18575 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
18576 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
18577 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
53c4b28b 18578
8884b720 18579 /* ARMv8 T32 only. */
b79f7053
MGD
18580#undef ARM_VARIANT
18581#define ARM_VARIANT NULL
18582 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
18583 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
18584 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
18585
33399f07
MGD
18586 /* FP for ARMv8. */
18587#undef ARM_VARIANT
18588#define ARM_VARIANT & fpu_vfp_ext_armv8
18589#undef THUMB_VARIANT
18590#define THUMB_VARIANT & fpu_vfp_ext_armv8
18591
18592 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
18593 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
18594 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
18595 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
73924fbc
MGD
18596 nUF(vmaxnm, _vmaxnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
18597 nUF(vminnm, _vminnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
7e8e6784
MGD
18598 nUF(vcvta, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvta),
18599 nUF(vcvtn, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtn),
18600 nUF(vcvtp, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtp),
18601 nUF(vcvtm, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtm),
30bdf752
MGD
18602 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
18603 nCE(vrintz, _vrintr, 2, (RNSDQ, oRNSDQ), vrintz),
18604 nCE(vrintx, _vrintr, 2, (RNSDQ, oRNSDQ), vrintx),
18605 nUF(vrinta, _vrinta, 2, (RNSDQ, oRNSDQ), vrinta),
18606 nUF(vrintn, _vrinta, 2, (RNSDQ, oRNSDQ), vrintn),
18607 nUF(vrintp, _vrinta, 2, (RNSDQ, oRNSDQ), vrintp),
18608 nUF(vrintm, _vrinta, 2, (RNSDQ, oRNSDQ), vrintm),
33399f07 18609
91ff7894
MGD
18610 /* Crypto v1 extensions. */
18611#undef ARM_VARIANT
18612#define ARM_VARIANT & fpu_crypto_ext_armv8
18613#undef THUMB_VARIANT
18614#define THUMB_VARIANT & fpu_crypto_ext_armv8
18615
18616 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
18617 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
18618 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
18619 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
48adcd8e
MGD
18620 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
18621 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
18622 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
18623 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
18624 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
18625 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
18626 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
3c9017d2
MGD
18627 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
18628 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
18629 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
91ff7894 18630
dd5181d5
KT
18631#undef ARM_VARIANT
18632#define ARM_VARIANT & crc_ext_armv8
18633#undef THUMB_VARIANT
18634#define THUMB_VARIANT & crc_ext_armv8
18635 TUEc("crc32b", 1000040, fac0f080, 3, (RR, oRR, RR), crc32b),
18636 TUEc("crc32h", 1200040, fac0f090, 3, (RR, oRR, RR), crc32h),
18637 TUEc("crc32w", 1400040, fac0f0a0, 3, (RR, oRR, RR), crc32w),
18638 TUEc("crc32cb",1000240, fad0f080, 3, (RR, oRR, RR), crc32cb),
18639 TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
18640 TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
18641
c921be7d
NC
18642#undef ARM_VARIANT
18643#define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
53c4b28b
MGD
18644#undef THUMB_VARIANT
18645#define THUMB_VARIANT NULL
c921be7d 18646
21d799b5
NC
18647 cCE("wfs", e200110, 1, (RR), rd),
18648 cCE("rfs", e300110, 1, (RR), rd),
18649 cCE("wfc", e400110, 1, (RR), rd),
18650 cCE("rfc", e500110, 1, (RR), rd),
18651
18652 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
18653 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
18654 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
18655 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
18656
18657 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
18658 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
18659 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
18660 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
18661
18662 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
18663 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
18664 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
18665 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
18666 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
18667 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
18668 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
18669 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
18670 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
18671 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
18672 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
18673 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
18674
18675 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
18676 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
18677 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
18678 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
18679 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
18680 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
18681 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
18682 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
18683 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
18684 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
18685 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
18686 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
18687
18688 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
18689 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
18690 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
18691 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
18692 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
18693 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
18694 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
18695 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
18696 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
18697 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
18698 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
18699 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
18700
18701 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
18702 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
18703 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
18704 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
18705 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
18706 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
18707 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
18708 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
18709 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
18710 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
18711 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
18712 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
18713
18714 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
18715 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
18716 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
18717 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
18718 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
18719 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
18720 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
18721 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
18722 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
18723 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
18724 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
18725 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
18726
18727 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
18728 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
18729 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
18730 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
18731 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
18732 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
18733 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
18734 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
18735 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
18736 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
18737 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
18738 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
18739
18740 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
18741 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
18742 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
18743 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
18744 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
18745 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
18746 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
18747 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
18748 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
18749 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
18750 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
18751 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
18752
18753 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
18754 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
18755 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
18756 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
18757 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
18758 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
18759 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
18760 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
18761 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
18762 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
18763 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
18764 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
18765
18766 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
18767 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
18768 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
18769 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
18770 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
18771 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
18772 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
18773 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
18774 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
18775 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
18776 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
18777 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
18778
18779 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
18780 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
18781 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
18782 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
18783 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
18784 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
18785 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
18786 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
18787 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
18788 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
18789 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
18790 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
18791
18792 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
18793 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
18794 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
18795 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
18796 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
18797 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
18798 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
18799 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
18800 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
18801 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
18802 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
18803 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
18804
18805 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
18806 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
18807 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
18808 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
18809 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
18810 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
18811 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
18812 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
18813 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
18814 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
18815 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
18816 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
18817
18818 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
18819 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
18820 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
18821 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
18822 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
18823 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
18824 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
18825 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
18826 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
18827 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
18828 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
18829 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
18830
18831 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
18832 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
18833 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
18834 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
18835 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
18836 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
18837 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
18838 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
18839 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
18840 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
18841 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
18842 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
18843
18844 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
18845 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
18846 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
18847 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
18848 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
18849 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
18850 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
18851 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
18852 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
18853 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
18854 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
18855 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
18856
18857 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
18858 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
18859 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
18860 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
18861 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
18862 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
18863 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
18864 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
18865 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
18866 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
18867 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
18868 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
18869
18870 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
18871 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
18872 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
18873 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
18874 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
18875 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18876 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18877 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18878 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
18879 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
18880 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
18881 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
18882
18883 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
18884 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
18885 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
18886 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
18887 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
18888 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18889 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18890 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18891 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
18892 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
18893 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
18894 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
18895
18896 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
18897 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
18898 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
18899 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
18900 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
18901 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18902 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18903 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18904 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
18905 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
18906 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
18907 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
18908
18909 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
18910 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
18911 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
18912 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
18913 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
18914 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18915 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18916 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18917 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
18918 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
18919 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
18920 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
18921
18922 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
18923 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
18924 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
18925 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
18926 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
18927 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18928 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18929 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18930 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
18931 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
18932 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
18933 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
18934
18935 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
18936 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
18937 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
18938 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
18939 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
18940 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18941 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18942 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18943 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
18944 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
18945 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
18946 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
18947
18948 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
18949 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
18950 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
18951 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
18952 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
18953 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18954 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18955 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18956 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
18957 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
18958 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
18959 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
18960
18961 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
18962 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
18963 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
18964 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
18965 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
18966 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18967 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18968 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18969 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
18970 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
18971 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
18972 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
18973
18974 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
18975 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
18976 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
18977 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
18978 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
18979 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18980 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18981 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18982 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
18983 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
18984 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
18985 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
18986
18987 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
18988 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
18989 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
18990 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
18991 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
18992 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18993 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18994 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18995 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
18996 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
18997 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
18998 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
18999
19000 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19001 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19002 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19003 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19004 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19005 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19006 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19007 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19008 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19009 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19010 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19011 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19012
19013 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19014 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19015 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19016 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19017 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19018 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19019 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19020 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19021 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19022 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19023 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19024 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19025
19026 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
19027 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
19028 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
19029 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
19030 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
19031 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
19032 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
19033 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
19034 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
19035 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
19036 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
19037 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
19038
19039 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
19040 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
19041 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
19042 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
19043
19044 cCL("flts", e000110, 2, (RF, RR), rn_rd),
19045 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
19046 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
19047 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
19048 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
19049 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
19050 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
19051 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
19052 cCL("flte", e080110, 2, (RF, RR), rn_rd),
19053 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
19054 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
19055 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
b99bd4ef 19056
c19d1205
ZW
19057 /* The implementation of the FIX instruction is broken on some
19058 assemblers, in that it accepts a precision specifier as well as a
19059 rounding specifier, despite the fact that this is meaningless.
19060 To be more compatible, we accept it as well, though of course it
19061 does not set any bits. */
21d799b5
NC
19062 cCE("fix", e100110, 2, (RR, RF), rd_rm),
19063 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
19064 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
19065 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
19066 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
19067 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
19068 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
19069 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
19070 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
19071 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
19072 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
19073 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
19074 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
bfae80f2 19075
c19d1205 19076 /* Instructions that were new with the real FPA, call them V2. */
c921be7d
NC
19077#undef ARM_VARIANT
19078#define ARM_VARIANT & fpu_fpa_ext_v2
19079
21d799b5
NC
19080 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19081 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19082 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19083 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19084 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19085 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205 19086
c921be7d
NC
19087#undef ARM_VARIANT
19088#define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
19089
c19d1205 19090 /* Moves and type conversions. */
21d799b5
NC
19091 cCE("fcpys", eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
19092 cCE("fmrs", e100a10, 2, (RR, RVS), vfp_reg_from_sp),
19093 cCE("fmsr", e000a10, 2, (RVS, RR), vfp_sp_from_reg),
19094 cCE("fmstat", ef1fa10, 0, (), noargs),
7465e07a
NC
19095 cCE("vmrs", ef00a10, 2, (APSR_RR, RVC), vmrs),
19096 cCE("vmsr", ee00a10, 2, (RVC, RR), vmsr),
21d799b5
NC
19097 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
19098 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
19099 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
19100 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
19101 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
19102 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
19103 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
19104 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
19105
19106 /* Memory operations. */
21d799b5
NC
19107 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
19108 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
55881a11
MGD
19109 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19110 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19111 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19112 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19113 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19114 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19115 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19116 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19117 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19118 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19119 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19120 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19121 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19122 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19123 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19124 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 19125
c19d1205 19126 /* Monadic operations. */
21d799b5
NC
19127 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
19128 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
19129 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
19130
19131 /* Dyadic operations. */
21d799b5
NC
19132 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19133 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19134 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19135 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19136 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19137 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19138 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19139 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19140 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 19141
c19d1205 19142 /* Comparisons. */
21d799b5
NC
19143 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
19144 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
19145 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
19146 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 19147
62f3b8c8
PB
19148 /* Double precision load/store are still present on single precision
19149 implementations. */
19150 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
19151 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
55881a11
MGD
19152 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19153 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19154 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19155 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19156 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19157 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19158 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19159 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
62f3b8c8 19160
c921be7d
NC
19161#undef ARM_VARIANT
19162#define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
19163
c19d1205 19164 /* Moves and type conversions. */
21d799b5
NC
19165 cCE("fcpyd", eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19166 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19167 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19168 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
19169 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
19170 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
19171 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
19172 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19173 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
19174 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19175 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19176 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19177 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205 19178
c19d1205 19179 /* Monadic operations. */
21d799b5
NC
19180 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19181 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19182 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
19183
19184 /* Dyadic operations. */
21d799b5
NC
19185 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19186 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19187 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19188 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19189 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19190 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19191 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19192 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19193 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 19194
c19d1205 19195 /* Comparisons. */
21d799b5
NC
19196 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19197 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
19198 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19199 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205 19200
c921be7d
NC
19201#undef ARM_VARIANT
19202#define ARM_VARIANT & fpu_vfp_ext_v2
19203
21d799b5
NC
19204 cCE("fmsrr", c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
19205 cCE("fmrrs", c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
19206 cCE("fmdrr", c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
19207 cCE("fmrrd", c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
5287ad62 19208
037e8744
JB
19209/* Instructions which may belong to either the Neon or VFP instruction sets.
19210 Individual encoder functions perform additional architecture checks. */
c921be7d
NC
19211#undef ARM_VARIANT
19212#define ARM_VARIANT & fpu_vfp_ext_v1xd
19213#undef THUMB_VARIANT
19214#define THUMB_VARIANT & fpu_vfp_ext_v1xd
19215
037e8744
JB
19216 /* These mnemonics are unique to VFP. */
19217 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
19218 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
21d799b5
NC
19219 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19220 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19221 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19222 nCE(vcmp, _vcmp, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
19223 nCE(vcmpe, _vcmpe, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
037e8744
JB
19224 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
19225 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
19226 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
19227
19228 /* Mnemonics shared by Neon and VFP. */
21d799b5
NC
19229 nCEF(vmul, _vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
19230 nCEF(vmla, _vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
19231 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
037e8744 19232
21d799b5
NC
19233 nCEF(vadd, _vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
19234 nCEF(vsub, _vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
037e8744
JB
19235
19236 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19237 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19238
55881a11
MGD
19239 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19240 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19241 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19242 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19243 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19244 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
4962c51a
MS
19245 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
19246 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744 19247
5f1af56b 19248 nCEF(vcvt, _vcvt, 3, (RNSDQ, RNSDQ, oI32z), neon_cvt),
e3e535bc 19249 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
c70a8987
MGD
19250 NCEF(vcvtb, eb20a40, 2, (RVSD, RVSD), neon_cvtb),
19251 NCEF(vcvtt, eb20a40, 2, (RVSD, RVSD), neon_cvtt),
f31fef98 19252
037e8744
JB
19253
19254 /* NOTE: All VMOV encoding is special-cased! */
19255 NCE(vmov, 0, 1, (VMOV), neon_mov),
19256 NCE(vmovq, 0, 1, (VMOV), neon_mov),
19257
c921be7d
NC
19258#undef THUMB_VARIANT
19259#define THUMB_VARIANT & fpu_neon_ext_v1
19260#undef ARM_VARIANT
19261#define ARM_VARIANT & fpu_neon_ext_v1
19262
5287ad62
JB
19263 /* Data processing with three registers of the same length. */
19264 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
19265 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
19266 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
19267 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19268 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19269 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19270 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19271 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19272 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19273 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
19274 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19275 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
19276 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19277 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
627907b7
JB
19278 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19279 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
19280 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19281 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
5287ad62
JB
19282 /* If not immediate, fall back to neon_dyadic_i64_su.
19283 shl_imm should accept I8 I16 I32 I64,
19284 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
21d799b5
NC
19285 nUF(vshl, _vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
19286 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
19287 nUF(vqshl, _vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
19288 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
5287ad62 19289 /* Logic ops, types optional & ignored. */
4316f0d2
DG
19290 nUF(vand, _vand, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19291 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19292 nUF(vbic, _vbic, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19293 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19294 nUF(vorr, _vorr, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19295 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19296 nUF(vorn, _vorn, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19297 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19298 nUF(veor, _veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
19299 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
5287ad62
JB
19300 /* Bitfield ops, untyped. */
19301 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19302 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19303 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19304 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19305 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19306 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19307 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32. */
21d799b5
NC
19308 nUF(vabd, _vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19309 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19310 nUF(vmax, _vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19311 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19312 nUF(vmin, _vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19313 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
5287ad62
JB
19314 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
19315 back to neon_dyadic_if_su. */
21d799b5
NC
19316 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19317 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19318 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19319 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19320 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19321 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
19322 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19323 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 19324 /* Comparison. Type I8 I16 I32 F32. */
21d799b5
NC
19325 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
19326 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
5287ad62 19327 /* As above, D registers only. */
21d799b5
NC
19328 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
19329 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
5287ad62 19330 /* Int and float variants, signedness unimportant. */
21d799b5
NC
19331 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19332 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19333 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
5287ad62 19334 /* Add/sub take types I8 I16 I32 I64 F32. */
21d799b5
NC
19335 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
19336 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
19337 /* vtst takes sizes 8, 16, 32. */
19338 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
19339 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
19340 /* VMUL takes I8 I16 I32 F32 P8. */
21d799b5 19341 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62 19342 /* VQD{R}MULH takes S16 S32. */
21d799b5
NC
19343 nUF(vqdmulh, _vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19344 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
19345 nUF(vqrdmulh, _vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19346 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
5287ad62
JB
19347 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19348 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
19349 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19350 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
92559b5b
PB
19351 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19352 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
19353 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19354 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
5287ad62
JB
19355 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19356 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19357 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19358 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19359
19360 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 19361 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
19362 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
19363
19364 /* Data processing with two registers and a shift amount. */
19365 /* Right shifts, and variants with rounding.
19366 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
19367 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19368 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19369 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19370 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19371 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19372 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19373 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19374 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19375 /* Shift and insert. Sizes accepted 8 16 32 64. */
19376 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
19377 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
19378 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
19379 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
19380 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
19381 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
19382 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
19383 /* Right shift immediate, saturating & narrowing, with rounding variants.
19384 Types accepted S16 S32 S64 U16 U32 U64. */
19385 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19386 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19387 /* As above, unsigned. Types accepted S16 S32 S64. */
19388 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19389 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19390 /* Right shift narrowing. Types accepted I16 I32 I64. */
19391 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19392 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19393 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
21d799b5 19394 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
5287ad62 19395 /* CVT with optional immediate for fixed-point variant. */
21d799b5 19396 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 19397
4316f0d2
DG
19398 nUF(vmvn, _vmvn, 2, (RNDQ, RNDQ_Ibig), neon_mvn),
19399 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
5287ad62
JB
19400
19401 /* Data processing, three registers of different lengths. */
19402 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
19403 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
19404 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
19405 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
19406 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
19407 /* If not scalar, fall back to neon_dyadic_long.
19408 Vector types as above, scalar types S16 S32 U16 U32. */
21d799b5
NC
19409 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
19410 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
5287ad62
JB
19411 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
19412 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19413 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19414 /* Dyadic, narrowing insns. Types I16 I32 I64. */
19415 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19416 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19417 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19418 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19419 /* Saturating doubling multiplies. Types S16 S32. */
21d799b5
NC
19420 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19421 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19422 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
5287ad62
JB
19423 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
19424 S16 S32 U16 U32. */
21d799b5 19425 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
5287ad62
JB
19426
19427 /* Extract. Size 8. */
3b8d421e
PB
19428 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
19429 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
5287ad62
JB
19430
19431 /* Two registers, miscellaneous. */
19432 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
19433 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
19434 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
19435 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
19436 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
19437 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
19438 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
19439 /* Vector replicate. Sizes 8 16 32. */
21d799b5
NC
19440 nCE(vdup, _vdup, 2, (RNDQ, RR_RNSC), neon_dup),
19441 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
5287ad62
JB
19442 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
19443 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
19444 /* VMOVN. Types I16 I32 I64. */
21d799b5 19445 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
5287ad62 19446 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
21d799b5 19447 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
5287ad62 19448 /* VQMOVUN. Types S16 S32 S64. */
21d799b5 19449 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
5287ad62
JB
19450 /* VZIP / VUZP. Sizes 8 16 32. */
19451 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
19452 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
19453 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
19454 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
19455 /* VQABS / VQNEG. Types S8 S16 S32. */
19456 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19457 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
19458 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19459 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
19460 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
19461 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
19462 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
19463 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
19464 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
19465 /* Reciprocal estimates. Types U32 F32. */
19466 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
19467 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
19468 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
19469 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
19470 /* VCLS. Types S8 S16 S32. */
19471 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
19472 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
19473 /* VCLZ. Types I8 I16 I32. */
19474 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
19475 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
19476 /* VCNT. Size 8. */
19477 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
19478 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
19479 /* Two address, untyped. */
19480 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
19481 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
19482 /* VTRN. Sizes 8 16 32. */
21d799b5
NC
19483 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
19484 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
5287ad62
JB
19485
19486 /* Table lookup. Size 8. */
19487 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19488 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19489
c921be7d
NC
19490#undef THUMB_VARIANT
19491#define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
19492#undef ARM_VARIANT
19493#define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
19494
5287ad62 19495 /* Neon element/structure load/store. */
21d799b5
NC
19496 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19497 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19498 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19499 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19500 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19501 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19502 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
19503 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
5287ad62 19504
c921be7d 19505#undef THUMB_VARIANT
62f3b8c8
PB
19506#define THUMB_VARIANT &fpu_vfp_ext_v3xd
19507#undef ARM_VARIANT
19508#define ARM_VARIANT &fpu_vfp_ext_v3xd
19509 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
19510 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19511 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19512 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19513 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19514 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19515 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19516 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19517 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19518
19519#undef THUMB_VARIANT
c921be7d
NC
19520#define THUMB_VARIANT & fpu_vfp_ext_v3
19521#undef ARM_VARIANT
19522#define ARM_VARIANT & fpu_vfp_ext_v3
19523
21d799b5 19524 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
21d799b5 19525 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19526 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19527 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19528 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19529 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19530 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19531 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19532 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 19533
62f3b8c8
PB
19534#undef ARM_VARIANT
19535#define ARM_VARIANT &fpu_vfp_ext_fma
19536#undef THUMB_VARIANT
19537#define THUMB_VARIANT &fpu_vfp_ext_fma
19538 /* Mnemonics shared by Neon and VFP. These are included in the
19539 VFP FMA variant; NEON and VFP FMA always includes the NEON
19540 FMA instructions. */
19541 nCEF(vfma, _vfma, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19542 nCEF(vfms, _vfms, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19543 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
19544 the v form should always be used. */
19545 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19546 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19547 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19548 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19549 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19550 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19551
5287ad62 19552#undef THUMB_VARIANT
c921be7d
NC
19553#undef ARM_VARIANT
19554#define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
19555
21d799b5
NC
19556 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19557 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19558 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19559 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19560 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19561 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19562 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
19563 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205 19564
c921be7d
NC
19565#undef ARM_VARIANT
19566#define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
19567
21d799b5
NC
19568 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
19569 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
19570 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
19571 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
19572 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
19573 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
19574 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
19575 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
19576 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
19577 cCE("textrmub", e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19578 cCE("textrmuh", e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19579 cCE("textrmuw", e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19580 cCE("textrmsb", e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19581 cCE("textrmsh", e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19582 cCE("textrmsw", e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19583 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19584 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19585 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19586 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
19587 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
19588 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19589 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19590 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19591 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19592 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19593 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19594 cCE("tmovmskb", e100030, 2, (RR, RIWR), rd_rn),
19595 cCE("tmovmskh", e500030, 2, (RR, RIWR), rd_rn),
19596 cCE("tmovmskw", e900030, 2, (RR, RIWR), rd_rn),
19597 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
19598 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
19599 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
19600 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
19601 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
19602 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
19603 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
19604 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
19605 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19606 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19607 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19608 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19609 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19610 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19611 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19612 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19613 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19614 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
19615 cCE("walignr0", e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19616 cCE("walignr1", e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19617 cCE("walignr2", ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19618 cCE("walignr3", eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19619 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19620 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19621 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19622 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19623 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19624 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19625 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19626 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19627 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19628 cCE("wcmpgtub", e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19629 cCE("wcmpgtuh", e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19630 cCE("wcmpgtuw", e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19631 cCE("wcmpgtsb", e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19632 cCE("wcmpgtsh", e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19633 cCE("wcmpgtsw", eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19634 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19635 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19636 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
19637 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
19638 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19639 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19640 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19641 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19642 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19643 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19644 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19645 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19646 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19647 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19648 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19649 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19650 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19651 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19652 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19653 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19654 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19655 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19656 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
19657 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19658 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19659 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19660 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19661 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19662 cCE("wpackhss", e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19663 cCE("wpackhus", e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19664 cCE("wpackwss", eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19665 cCE("wpackwus", e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19666 cCE("wpackdss", ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19667 cCE("wpackdus", ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19668 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19669 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19670 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19671 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19672 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19673 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19674 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19675 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19676 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19677 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19678 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
19679 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19680 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19681 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19682 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19683 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19684 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19685 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19686 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19687 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19688 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19689 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19690 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19691 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19692 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19693 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19694 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19695 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19696 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19697 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19698 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19699 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
19700 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
19701 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19702 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19703 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19704 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19705 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19706 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19707 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19708 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19709 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19710 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
19711 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
19712 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
19713 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
19714 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
19715 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
19716 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19717 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19718 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19719 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
19720 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
19721 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
19722 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
19723 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
19724 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
19725 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19726 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19727 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19728 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19729 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205 19730
c921be7d
NC
19731#undef ARM_VARIANT
19732#define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
19733
21d799b5
NC
19734 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
19735 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
19736 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
19737 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
19738 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
19739 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
19740 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19741 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19742 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19743 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19744 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19745 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19746 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19747 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19748 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19749 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19750 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19751 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19752 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19753 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19754 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
19755 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19756 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19757 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19758 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19759 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19760 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19761 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19762 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19763 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19764 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19765 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19766 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19767 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19768 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19769 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19770 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19771 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19772 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19773 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19774 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19775 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19776 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19777 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19778 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19779 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19780 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19781 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19782 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19783 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19784 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19785 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19786 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19787 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19788 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19789 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19790 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
2d447fca 19791
c921be7d
NC
19792#undef ARM_VARIANT
19793#define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
19794
21d799b5
NC
19795 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
19796 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
19797 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
19798 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
19799 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
19800 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
19801 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
19802 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
19803 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
19804 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
19805 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
19806 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
19807 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
19808 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
19809 cCE("cfmv64lr", e000510, 2, (RMDX, RR), rn_rd),
19810 cCE("cfmvr64l", e100510, 2, (RR, RMDX), rd_rn),
19811 cCE("cfmv64hr", e000530, 2, (RMDX, RR), rn_rd),
19812 cCE("cfmvr64h", e100530, 2, (RR, RMDX), rd_rn),
19813 cCE("cfmval32", e200440, 2, (RMAX, RMFX), rd_rn),
19814 cCE("cfmv32al", e100440, 2, (RMFX, RMAX), rd_rn),
19815 cCE("cfmvam32", e200460, 2, (RMAX, RMFX), rd_rn),
19816 cCE("cfmv32am", e100460, 2, (RMFX, RMAX), rd_rn),
19817 cCE("cfmvah32", e200480, 2, (RMAX, RMFX), rd_rn),
19818 cCE("cfmv32ah", e100480, 2, (RMFX, RMAX), rd_rn),
19819 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
19820 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
19821 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
19822 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
19823 cCE("cfmvsc32", e2004e0, 2, (RMDS, RMDX), mav_dspsc),
19824 cCE("cfmv32sc", e1004e0, 2, (RMDX, RMDS), rd),
19825 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
19826 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
19827 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
19828 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
19829 cCE("cfcvt32s", e000480, 2, (RMF, RMFX), rd_rn),
19830 cCE("cfcvt32d", e0004a0, 2, (RMD, RMFX), rd_rn),
19831 cCE("cfcvt64s", e0004c0, 2, (RMF, RMDX), rd_rn),
19832 cCE("cfcvt64d", e0004e0, 2, (RMD, RMDX), rd_rn),
19833 cCE("cfcvts32", e100580, 2, (RMFX, RMF), rd_rn),
19834 cCE("cfcvtd32", e1005a0, 2, (RMFX, RMD), rd_rn),
19835 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
19836 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
19837 cCE("cfrshl32", e000550, 3, (RMFX, RMFX, RR), mav_triple),
19838 cCE("cfrshl64", e000570, 3, (RMDX, RMDX, RR), mav_triple),
19839 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
19840 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
19841 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
19842 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
19843 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
19844 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
19845 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
19846 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
19847 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
19848 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
19849 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
19850 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
19851 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
19852 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
19853 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
19854 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
19855 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
19856 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
19857 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
19858 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
19859 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19860 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19861 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19862 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19863 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19864 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19865 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19866 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19867 cCE("cfmadd32", e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
19868 cCE("cfmsub32", e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
19869 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
19870 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
c19d1205
ZW
19871};
19872#undef ARM_VARIANT
19873#undef THUMB_VARIANT
19874#undef TCE
c19d1205
ZW
19875#undef TUE
19876#undef TUF
19877#undef TCC
8f06b2d8 19878#undef cCE
e3cb604e
PB
19879#undef cCL
19880#undef C3E
c19d1205
ZW
19881#undef CE
19882#undef CM
19883#undef UE
19884#undef UF
19885#undef UT
5287ad62
JB
19886#undef NUF
19887#undef nUF
19888#undef NCE
19889#undef nCE
c19d1205
ZW
19890#undef OPS0
19891#undef OPS1
19892#undef OPS2
19893#undef OPS3
19894#undef OPS4
19895#undef OPS5
19896#undef OPS6
19897#undef do_0
19898\f
19899/* MD interface: bits in the object file. */
bfae80f2 19900
c19d1205
ZW
19901/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
19902 for use in the a.out file, and stores them in the array pointed to by buf.
19903 This knows about the endian-ness of the target machine and does
19904 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
19905 2 (short) and 4 (long) Floating numbers are put out as a series of
19906 LITTLENUMS (shorts, here at least). */
b99bd4ef 19907
c19d1205
ZW
19908void
19909md_number_to_chars (char * buf, valueT val, int n)
19910{
19911 if (target_big_endian)
19912 number_to_chars_bigendian (buf, val, n);
19913 else
19914 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
19915}
19916
c19d1205
ZW
19917static valueT
19918md_chars_to_number (char * buf, int n)
bfae80f2 19919{
c19d1205
ZW
19920 valueT result = 0;
19921 unsigned char * where = (unsigned char *) buf;
bfae80f2 19922
c19d1205 19923 if (target_big_endian)
b99bd4ef 19924 {
c19d1205
ZW
19925 while (n--)
19926 {
19927 result <<= 8;
19928 result |= (*where++ & 255);
19929 }
b99bd4ef 19930 }
c19d1205 19931 else
b99bd4ef 19932 {
c19d1205
ZW
19933 while (n--)
19934 {
19935 result <<= 8;
19936 result |= (where[n] & 255);
19937 }
bfae80f2 19938 }
b99bd4ef 19939
c19d1205 19940 return result;
bfae80f2 19941}
b99bd4ef 19942
c19d1205 19943/* MD interface: Sections. */
b99bd4ef 19944
fa94de6b
RM
19945/* Calculate the maximum variable size (i.e., excluding fr_fix)
19946 that an rs_machine_dependent frag may reach. */
19947
19948unsigned int
19949arm_frag_max_var (fragS *fragp)
19950{
19951 /* We only use rs_machine_dependent for variable-size Thumb instructions,
19952 which are either THUMB_SIZE (2) or INSN_SIZE (4).
19953
19954 Note that we generate relaxable instructions even for cases that don't
19955 really need it, like an immediate that's a trivial constant. So we're
19956 overestimating the instruction size for some of those cases. Rather
19957 than putting more intelligence here, it would probably be better to
19958 avoid generating a relaxation frag in the first place when it can be
19959 determined up front that a short instruction will suffice. */
19960
19961 gas_assert (fragp->fr_type == rs_machine_dependent);
19962 return INSN_SIZE;
19963}
19964
0110f2b8
PB
19965/* Estimate the size of a frag before relaxing. Assume everything fits in
19966 2 bytes. */
19967
c19d1205 19968int
0110f2b8 19969md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
19970 segT segtype ATTRIBUTE_UNUSED)
19971{
0110f2b8
PB
19972 fragp->fr_var = 2;
19973 return 2;
19974}
19975
19976/* Convert a machine dependent frag. */
19977
19978void
19979md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
19980{
19981 unsigned long insn;
19982 unsigned long old_op;
19983 char *buf;
19984 expressionS exp;
19985 fixS *fixp;
19986 int reloc_type;
19987 int pc_rel;
19988 int opcode;
19989
19990 buf = fragp->fr_literal + fragp->fr_fix;
19991
19992 old_op = bfd_get_16(abfd, buf);
5f4273c7
NC
19993 if (fragp->fr_symbol)
19994 {
0110f2b8
PB
19995 exp.X_op = O_symbol;
19996 exp.X_add_symbol = fragp->fr_symbol;
5f4273c7
NC
19997 }
19998 else
19999 {
0110f2b8 20000 exp.X_op = O_constant;
5f4273c7 20001 }
0110f2b8
PB
20002 exp.X_add_number = fragp->fr_offset;
20003 opcode = fragp->fr_subtype;
20004 switch (opcode)
20005 {
20006 case T_MNEM_ldr_pc:
20007 case T_MNEM_ldr_pc2:
20008 case T_MNEM_ldr_sp:
20009 case T_MNEM_str_sp:
20010 case T_MNEM_ldr:
20011 case T_MNEM_ldrb:
20012 case T_MNEM_ldrh:
20013 case T_MNEM_str:
20014 case T_MNEM_strb:
20015 case T_MNEM_strh:
20016 if (fragp->fr_var == 4)
20017 {
5f4273c7 20018 insn = THUMB_OP32 (opcode);
0110f2b8
PB
20019 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
20020 {
20021 insn |= (old_op & 0x700) << 4;
20022 }
20023 else
20024 {
20025 insn |= (old_op & 7) << 12;
20026 insn |= (old_op & 0x38) << 13;
20027 }
20028 insn |= 0x00000c00;
20029 put_thumb32_insn (buf, insn);
20030 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
20031 }
20032 else
20033 {
20034 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
20035 }
20036 pc_rel = (opcode == T_MNEM_ldr_pc2);
20037 break;
20038 case T_MNEM_adr:
20039 if (fragp->fr_var == 4)
20040 {
20041 insn = THUMB_OP32 (opcode);
20042 insn |= (old_op & 0xf0) << 4;
20043 put_thumb32_insn (buf, insn);
20044 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
20045 }
20046 else
20047 {
20048 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20049 exp.X_add_number -= 4;
20050 }
20051 pc_rel = 1;
20052 break;
20053 case T_MNEM_mov:
20054 case T_MNEM_movs:
20055 case T_MNEM_cmp:
20056 case T_MNEM_cmn:
20057 if (fragp->fr_var == 4)
20058 {
20059 int r0off = (opcode == T_MNEM_mov
20060 || opcode == T_MNEM_movs) ? 0 : 8;
20061 insn = THUMB_OP32 (opcode);
20062 insn = (insn & 0xe1ffffff) | 0x10000000;
20063 insn |= (old_op & 0x700) << r0off;
20064 put_thumb32_insn (buf, insn);
20065 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
20066 }
20067 else
20068 {
20069 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
20070 }
20071 pc_rel = 0;
20072 break;
20073 case T_MNEM_b:
20074 if (fragp->fr_var == 4)
20075 {
20076 insn = THUMB_OP32(opcode);
20077 put_thumb32_insn (buf, insn);
20078 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
20079 }
20080 else
20081 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
20082 pc_rel = 1;
20083 break;
20084 case T_MNEM_bcond:
20085 if (fragp->fr_var == 4)
20086 {
20087 insn = THUMB_OP32(opcode);
20088 insn |= (old_op & 0xf00) << 14;
20089 put_thumb32_insn (buf, insn);
20090 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
20091 }
20092 else
20093 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
20094 pc_rel = 1;
20095 break;
20096 case T_MNEM_add_sp:
20097 case T_MNEM_add_pc:
20098 case T_MNEM_inc_sp:
20099 case T_MNEM_dec_sp:
20100 if (fragp->fr_var == 4)
20101 {
20102 /* ??? Choose between add and addw. */
20103 insn = THUMB_OP32 (opcode);
20104 insn |= (old_op & 0xf0) << 4;
20105 put_thumb32_insn (buf, insn);
16805f35
PB
20106 if (opcode == T_MNEM_add_pc)
20107 reloc_type = BFD_RELOC_ARM_T32_IMM12;
20108 else
20109 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
20110 }
20111 else
20112 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20113 pc_rel = 0;
20114 break;
20115
20116 case T_MNEM_addi:
20117 case T_MNEM_addis:
20118 case T_MNEM_subi:
20119 case T_MNEM_subis:
20120 if (fragp->fr_var == 4)
20121 {
20122 insn = THUMB_OP32 (opcode);
20123 insn |= (old_op & 0xf0) << 4;
20124 insn |= (old_op & 0xf) << 16;
20125 put_thumb32_insn (buf, insn);
16805f35
PB
20126 if (insn & (1 << 20))
20127 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
20128 else
20129 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
20130 }
20131 else
20132 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20133 pc_rel = 0;
20134 break;
20135 default:
5f4273c7 20136 abort ();
0110f2b8
PB
20137 }
20138 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
21d799b5 20139 (enum bfd_reloc_code_real) reloc_type);
0110f2b8
PB
20140 fixp->fx_file = fragp->fr_file;
20141 fixp->fx_line = fragp->fr_line;
20142 fragp->fr_fix += fragp->fr_var;
20143}
20144
20145/* Return the size of a relaxable immediate operand instruction.
20146 SHIFT and SIZE specify the form of the allowable immediate. */
20147static int
20148relax_immediate (fragS *fragp, int size, int shift)
20149{
20150 offsetT offset;
20151 offsetT mask;
20152 offsetT low;
20153
20154 /* ??? Should be able to do better than this. */
20155 if (fragp->fr_symbol)
20156 return 4;
20157
20158 low = (1 << shift) - 1;
20159 mask = (1 << (shift + size)) - (1 << shift);
20160 offset = fragp->fr_offset;
20161 /* Force misaligned offsets to 32-bit variant. */
20162 if (offset & low)
5e77afaa 20163 return 4;
0110f2b8
PB
20164 if (offset & ~mask)
20165 return 4;
20166 return 2;
20167}
20168
5e77afaa
PB
20169/* Get the address of a symbol during relaxation. */
20170static addressT
5f4273c7 20171relaxed_symbol_addr (fragS *fragp, long stretch)
5e77afaa
PB
20172{
20173 fragS *sym_frag;
20174 addressT addr;
20175 symbolS *sym;
20176
20177 sym = fragp->fr_symbol;
20178 sym_frag = symbol_get_frag (sym);
20179 know (S_GET_SEGMENT (sym) != absolute_section
20180 || sym_frag == &zero_address_frag);
20181 addr = S_GET_VALUE (sym) + fragp->fr_offset;
20182
20183 /* If frag has yet to be reached on this pass, assume it will
20184 move by STRETCH just as we did. If this is not so, it will
20185 be because some frag between grows, and that will force
20186 another pass. */
20187
20188 if (stretch != 0
20189 && sym_frag->relax_marker != fragp->relax_marker)
4396b686
PB
20190 {
20191 fragS *f;
20192
20193 /* Adjust stretch for any alignment frag. Note that if have
20194 been expanding the earlier code, the symbol may be
20195 defined in what appears to be an earlier frag. FIXME:
20196 This doesn't handle the fr_subtype field, which specifies
20197 a maximum number of bytes to skip when doing an
20198 alignment. */
20199 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
20200 {
20201 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
20202 {
20203 if (stretch < 0)
20204 stretch = - ((- stretch)
20205 & ~ ((1 << (int) f->fr_offset) - 1));
20206 else
20207 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
20208 if (stretch == 0)
20209 break;
20210 }
20211 }
20212 if (f != NULL)
20213 addr += stretch;
20214 }
5e77afaa
PB
20215
20216 return addr;
20217}
20218
0110f2b8
PB
20219/* Return the size of a relaxable adr pseudo-instruction or PC-relative
20220 load. */
20221static int
5e77afaa 20222relax_adr (fragS *fragp, asection *sec, long stretch)
0110f2b8
PB
20223{
20224 addressT addr;
20225 offsetT val;
20226
20227 /* Assume worst case for symbols not known to be in the same section. */
974da60d
NC
20228 if (fragp->fr_symbol == NULL
20229 || !S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20230 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20231 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20232 return 4;
20233
5f4273c7 20234 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20235 addr = fragp->fr_address + fragp->fr_fix;
20236 addr = (addr + 4) & ~3;
5e77afaa 20237 /* Force misaligned targets to 32-bit variant. */
0110f2b8 20238 if (val & 3)
5e77afaa 20239 return 4;
0110f2b8
PB
20240 val -= addr;
20241 if (val < 0 || val > 1020)
20242 return 4;
20243 return 2;
20244}
20245
20246/* Return the size of a relaxable add/sub immediate instruction. */
20247static int
20248relax_addsub (fragS *fragp, asection *sec)
20249{
20250 char *buf;
20251 int op;
20252
20253 buf = fragp->fr_literal + fragp->fr_fix;
20254 op = bfd_get_16(sec->owner, buf);
20255 if ((op & 0xf) == ((op >> 4) & 0xf))
20256 return relax_immediate (fragp, 8, 0);
20257 else
20258 return relax_immediate (fragp, 3, 0);
20259}
20260
20261
20262/* Return the size of a relaxable branch instruction. BITS is the
20263 size of the offset field in the narrow instruction. */
20264
20265static int
5e77afaa 20266relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
0110f2b8
PB
20267{
20268 addressT addr;
20269 offsetT val;
20270 offsetT limit;
20271
20272 /* Assume worst case for symbols not known to be in the same section. */
5f4273c7 20273 if (!S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20274 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20275 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20276 return 4;
20277
267bf995
RR
20278#ifdef OBJ_ELF
20279 if (S_IS_DEFINED (fragp->fr_symbol)
20280 && ARM_IS_FUNC (fragp->fr_symbol))
20281 return 4;
0d9b4b55
NC
20282
20283 /* PR 12532. Global symbols with default visibility might
20284 be preempted, so do not relax relocations to them. */
20285 if ((ELF_ST_VISIBILITY (S_GET_OTHER (fragp->fr_symbol)) == STV_DEFAULT)
20286 && (! S_IS_LOCAL (fragp->fr_symbol)))
20287 return 4;
267bf995
RR
20288#endif
20289
5f4273c7 20290 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20291 addr = fragp->fr_address + fragp->fr_fix + 4;
20292 val -= addr;
20293
20294 /* Offset is a signed value *2 */
20295 limit = 1 << bits;
20296 if (val >= limit || val < -limit)
20297 return 4;
20298 return 2;
20299}
20300
20301
20302/* Relax a machine dependent frag. This returns the amount by which
20303 the current size of the frag should change. */
20304
20305int
5e77afaa 20306arm_relax_frag (asection *sec, fragS *fragp, long stretch)
0110f2b8
PB
20307{
20308 int oldsize;
20309 int newsize;
20310
20311 oldsize = fragp->fr_var;
20312 switch (fragp->fr_subtype)
20313 {
20314 case T_MNEM_ldr_pc2:
5f4273c7 20315 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20316 break;
20317 case T_MNEM_ldr_pc:
20318 case T_MNEM_ldr_sp:
20319 case T_MNEM_str_sp:
5f4273c7 20320 newsize = relax_immediate (fragp, 8, 2);
0110f2b8
PB
20321 break;
20322 case T_MNEM_ldr:
20323 case T_MNEM_str:
5f4273c7 20324 newsize = relax_immediate (fragp, 5, 2);
0110f2b8
PB
20325 break;
20326 case T_MNEM_ldrh:
20327 case T_MNEM_strh:
5f4273c7 20328 newsize = relax_immediate (fragp, 5, 1);
0110f2b8
PB
20329 break;
20330 case T_MNEM_ldrb:
20331 case T_MNEM_strb:
5f4273c7 20332 newsize = relax_immediate (fragp, 5, 0);
0110f2b8
PB
20333 break;
20334 case T_MNEM_adr:
5f4273c7 20335 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20336 break;
20337 case T_MNEM_mov:
20338 case T_MNEM_movs:
20339 case T_MNEM_cmp:
20340 case T_MNEM_cmn:
5f4273c7 20341 newsize = relax_immediate (fragp, 8, 0);
0110f2b8
PB
20342 break;
20343 case T_MNEM_b:
5f4273c7 20344 newsize = relax_branch (fragp, sec, 11, stretch);
0110f2b8
PB
20345 break;
20346 case T_MNEM_bcond:
5f4273c7 20347 newsize = relax_branch (fragp, sec, 8, stretch);
0110f2b8
PB
20348 break;
20349 case T_MNEM_add_sp:
20350 case T_MNEM_add_pc:
20351 newsize = relax_immediate (fragp, 8, 2);
20352 break;
20353 case T_MNEM_inc_sp:
20354 case T_MNEM_dec_sp:
20355 newsize = relax_immediate (fragp, 7, 2);
20356 break;
20357 case T_MNEM_addi:
20358 case T_MNEM_addis:
20359 case T_MNEM_subi:
20360 case T_MNEM_subis:
20361 newsize = relax_addsub (fragp, sec);
20362 break;
20363 default:
5f4273c7 20364 abort ();
0110f2b8 20365 }
5e77afaa
PB
20366
20367 fragp->fr_var = newsize;
20368 /* Freeze wide instructions that are at or before the same location as
20369 in the previous pass. This avoids infinite loops.
5f4273c7
NC
20370 Don't freeze them unconditionally because targets may be artificially
20371 misaligned by the expansion of preceding frags. */
5e77afaa 20372 if (stretch <= 0 && newsize > 2)
0110f2b8 20373 {
0110f2b8 20374 md_convert_frag (sec->owner, sec, fragp);
5f4273c7 20375 frag_wane (fragp);
0110f2b8 20376 }
5e77afaa 20377
0110f2b8 20378 return newsize - oldsize;
c19d1205 20379}
b99bd4ef 20380
c19d1205 20381/* Round up a section size to the appropriate boundary. */
b99bd4ef 20382
c19d1205
ZW
20383valueT
20384md_section_align (segT segment ATTRIBUTE_UNUSED,
20385 valueT size)
20386{
f0927246
NC
20387#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
20388 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
20389 {
20390 /* For a.out, force the section size to be aligned. If we don't do
20391 this, BFD will align it for us, but it will not write out the
20392 final bytes of the section. This may be a bug in BFD, but it is
20393 easier to fix it here since that is how the other a.out targets
20394 work. */
20395 int align;
20396
20397 align = bfd_get_section_alignment (stdoutput, segment);
20398 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
20399 }
c19d1205 20400#endif
f0927246
NC
20401
20402 return size;
bfae80f2 20403}
b99bd4ef 20404
c19d1205
ZW
20405/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
20406 of an rs_align_code fragment. */
20407
20408void
20409arm_handle_align (fragS * fragP)
bfae80f2 20410{
e7495e45
NS
20411 static char const arm_noop[2][2][4] =
20412 {
20413 { /* ARMv1 */
20414 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
20415 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
20416 },
20417 { /* ARMv6k */
20418 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
20419 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
20420 },
20421 };
20422 static char const thumb_noop[2][2][2] =
20423 {
20424 { /* Thumb-1 */
20425 {0xc0, 0x46}, /* LE */
20426 {0x46, 0xc0}, /* BE */
20427 },
20428 { /* Thumb-2 */
20429 {0x00, 0xbf}, /* LE */
20430 {0xbf, 0x00} /* BE */
20431 }
20432 };
20433 static char const wide_thumb_noop[2][4] =
20434 { /* Wide Thumb-2 */
20435 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
20436 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
20437 };
c921be7d 20438
e7495e45 20439 unsigned bytes, fix, noop_size;
c19d1205
ZW
20440 char * p;
20441 const char * noop;
e7495e45 20442 const char *narrow_noop = NULL;
cd000bff
DJ
20443#ifdef OBJ_ELF
20444 enum mstate state;
20445#endif
bfae80f2 20446
c19d1205 20447 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
20448 return;
20449
c19d1205
ZW
20450 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
20451 p = fragP->fr_literal + fragP->fr_fix;
20452 fix = 0;
bfae80f2 20453
c19d1205
ZW
20454 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
20455 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 20456
cd000bff 20457 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
8dc2430f 20458
cd000bff 20459 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
a737bd4d 20460 {
e7495e45
NS
20461 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
20462 {
20463 narrow_noop = thumb_noop[1][target_big_endian];
20464 noop = wide_thumb_noop[target_big_endian];
20465 }
c19d1205 20466 else
e7495e45
NS
20467 noop = thumb_noop[0][target_big_endian];
20468 noop_size = 2;
cd000bff
DJ
20469#ifdef OBJ_ELF
20470 state = MAP_THUMB;
20471#endif
7ed4c4c5
NC
20472 }
20473 else
20474 {
e7495e45
NS
20475 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k) != 0]
20476 [target_big_endian];
20477 noop_size = 4;
cd000bff
DJ
20478#ifdef OBJ_ELF
20479 state = MAP_ARM;
20480#endif
7ed4c4c5 20481 }
c921be7d 20482
e7495e45 20483 fragP->fr_var = noop_size;
c921be7d 20484
c19d1205 20485 if (bytes & (noop_size - 1))
7ed4c4c5 20486 {
c19d1205 20487 fix = bytes & (noop_size - 1);
cd000bff
DJ
20488#ifdef OBJ_ELF
20489 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
20490#endif
c19d1205
ZW
20491 memset (p, 0, fix);
20492 p += fix;
20493 bytes -= fix;
a737bd4d 20494 }
a737bd4d 20495
e7495e45
NS
20496 if (narrow_noop)
20497 {
20498 if (bytes & noop_size)
20499 {
20500 /* Insert a narrow noop. */
20501 memcpy (p, narrow_noop, noop_size);
20502 p += noop_size;
20503 bytes -= noop_size;
20504 fix += noop_size;
20505 }
20506
20507 /* Use wide noops for the remainder */
20508 noop_size = 4;
20509 }
20510
c19d1205 20511 while (bytes >= noop_size)
a737bd4d 20512 {
c19d1205
ZW
20513 memcpy (p, noop, noop_size);
20514 p += noop_size;
20515 bytes -= noop_size;
20516 fix += noop_size;
a737bd4d
NC
20517 }
20518
c19d1205 20519 fragP->fr_fix += fix;
a737bd4d
NC
20520}
20521
c19d1205
ZW
20522/* Called from md_do_align. Used to create an alignment
20523 frag in a code section. */
20524
20525void
20526arm_frag_align_code (int n, int max)
bfae80f2 20527{
c19d1205 20528 char * p;
7ed4c4c5 20529
c19d1205 20530 /* We assume that there will never be a requirement
6ec8e702 20531 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
c19d1205 20532 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
6ec8e702
NC
20533 {
20534 char err_msg[128];
20535
fa94de6b 20536 sprintf (err_msg,
6ec8e702
NC
20537 _("alignments greater than %d bytes not supported in .text sections."),
20538 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
20203fb9 20539 as_fatal ("%s", err_msg);
6ec8e702 20540 }
bfae80f2 20541
c19d1205
ZW
20542 p = frag_var (rs_align_code,
20543 MAX_MEM_FOR_RS_ALIGN_CODE,
20544 1,
20545 (relax_substateT) max,
20546 (symbolS *) NULL,
20547 (offsetT) n,
20548 (char *) NULL);
20549 *p = 0;
20550}
bfae80f2 20551
8dc2430f
NC
20552/* Perform target specific initialisation of a frag.
20553 Note - despite the name this initialisation is not done when the frag
20554 is created, but only when its type is assigned. A frag can be created
20555 and used a long time before its type is set, so beware of assuming that
20556 this initialisationis performed first. */
bfae80f2 20557
cd000bff
DJ
20558#ifndef OBJ_ELF
20559void
20560arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
20561{
20562 /* Record whether this frag is in an ARM or a THUMB area. */
2e98972e 20563 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
cd000bff
DJ
20564}
20565
20566#else /* OBJ_ELF is defined. */
c19d1205 20567void
cd000bff 20568arm_init_frag (fragS * fragP, int max_chars)
c19d1205 20569{
8dc2430f
NC
20570 /* If the current ARM vs THUMB mode has not already
20571 been recorded into this frag then do so now. */
cd000bff
DJ
20572 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
20573 {
20574 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
20575
20576 /* Record a mapping symbol for alignment frags. We will delete this
20577 later if the alignment ends up empty. */
20578 switch (fragP->fr_type)
20579 {
20580 case rs_align:
20581 case rs_align_test:
20582 case rs_fill:
20583 mapping_state_2 (MAP_DATA, max_chars);
20584 break;
20585 case rs_align_code:
20586 mapping_state_2 (thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
20587 break;
20588 default:
20589 break;
20590 }
20591 }
bfae80f2
RE
20592}
20593
c19d1205
ZW
20594/* When we change sections we need to issue a new mapping symbol. */
20595
20596void
20597arm_elf_change_section (void)
bfae80f2 20598{
c19d1205
ZW
20599 /* Link an unlinked unwind index table section to the .text section. */
20600 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
20601 && elf_linked_to_section (now_seg) == NULL)
20602 elf_linked_to_section (now_seg) = text_section;
bfae80f2
RE
20603}
20604
c19d1205
ZW
20605int
20606arm_elf_section_type (const char * str, size_t len)
e45d0630 20607{
c19d1205
ZW
20608 if (len == 5 && strncmp (str, "exidx", 5) == 0)
20609 return SHT_ARM_EXIDX;
e45d0630 20610
c19d1205
ZW
20611 return -1;
20612}
20613\f
20614/* Code to deal with unwinding tables. */
e45d0630 20615
c19d1205 20616static void add_unwind_adjustsp (offsetT);
e45d0630 20617
5f4273c7 20618/* Generate any deferred unwind frame offset. */
e45d0630 20619
bfae80f2 20620static void
c19d1205 20621flush_pending_unwind (void)
bfae80f2 20622{
c19d1205 20623 offsetT offset;
bfae80f2 20624
c19d1205
ZW
20625 offset = unwind.pending_offset;
20626 unwind.pending_offset = 0;
20627 if (offset != 0)
20628 add_unwind_adjustsp (offset);
bfae80f2
RE
20629}
20630
c19d1205
ZW
20631/* Add an opcode to this list for this function. Two-byte opcodes should
20632 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
20633 order. */
20634
bfae80f2 20635static void
c19d1205 20636add_unwind_opcode (valueT op, int length)
bfae80f2 20637{
c19d1205
ZW
20638 /* Add any deferred stack adjustment. */
20639 if (unwind.pending_offset)
20640 flush_pending_unwind ();
bfae80f2 20641
c19d1205 20642 unwind.sp_restored = 0;
bfae80f2 20643
c19d1205 20644 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 20645 {
c19d1205
ZW
20646 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
20647 if (unwind.opcodes)
21d799b5
NC
20648 unwind.opcodes = (unsigned char *) xrealloc (unwind.opcodes,
20649 unwind.opcode_alloc);
c19d1205 20650 else
21d799b5 20651 unwind.opcodes = (unsigned char *) xmalloc (unwind.opcode_alloc);
bfae80f2 20652 }
c19d1205 20653 while (length > 0)
bfae80f2 20654 {
c19d1205
ZW
20655 length--;
20656 unwind.opcodes[unwind.opcode_count] = op & 0xff;
20657 op >>= 8;
20658 unwind.opcode_count++;
bfae80f2 20659 }
bfae80f2
RE
20660}
20661
c19d1205
ZW
20662/* Add unwind opcodes to adjust the stack pointer. */
20663
bfae80f2 20664static void
c19d1205 20665add_unwind_adjustsp (offsetT offset)
bfae80f2 20666{
c19d1205 20667 valueT op;
bfae80f2 20668
c19d1205 20669 if (offset > 0x200)
bfae80f2 20670 {
c19d1205
ZW
20671 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
20672 char bytes[5];
20673 int n;
20674 valueT o;
bfae80f2 20675
c19d1205
ZW
20676 /* Long form: 0xb2, uleb128. */
20677 /* This might not fit in a word so add the individual bytes,
20678 remembering the list is built in reverse order. */
20679 o = (valueT) ((offset - 0x204) >> 2);
20680 if (o == 0)
20681 add_unwind_opcode (0, 1);
bfae80f2 20682
c19d1205
ZW
20683 /* Calculate the uleb128 encoding of the offset. */
20684 n = 0;
20685 while (o)
20686 {
20687 bytes[n] = o & 0x7f;
20688 o >>= 7;
20689 if (o)
20690 bytes[n] |= 0x80;
20691 n++;
20692 }
20693 /* Add the insn. */
20694 for (; n; n--)
20695 add_unwind_opcode (bytes[n - 1], 1);
20696 add_unwind_opcode (0xb2, 1);
20697 }
20698 else if (offset > 0x100)
bfae80f2 20699 {
c19d1205
ZW
20700 /* Two short opcodes. */
20701 add_unwind_opcode (0x3f, 1);
20702 op = (offset - 0x104) >> 2;
20703 add_unwind_opcode (op, 1);
bfae80f2 20704 }
c19d1205
ZW
20705 else if (offset > 0)
20706 {
20707 /* Short opcode. */
20708 op = (offset - 4) >> 2;
20709 add_unwind_opcode (op, 1);
20710 }
20711 else if (offset < 0)
bfae80f2 20712 {
c19d1205
ZW
20713 offset = -offset;
20714 while (offset > 0x100)
bfae80f2 20715 {
c19d1205
ZW
20716 add_unwind_opcode (0x7f, 1);
20717 offset -= 0x100;
bfae80f2 20718 }
c19d1205
ZW
20719 op = ((offset - 4) >> 2) | 0x40;
20720 add_unwind_opcode (op, 1);
bfae80f2 20721 }
bfae80f2
RE
20722}
20723
c19d1205
ZW
20724/* Finish the list of unwind opcodes for this function. */
20725static void
20726finish_unwind_opcodes (void)
bfae80f2 20727{
c19d1205 20728 valueT op;
bfae80f2 20729
c19d1205 20730 if (unwind.fp_used)
bfae80f2 20731 {
708587a4 20732 /* Adjust sp as necessary. */
c19d1205
ZW
20733 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
20734 flush_pending_unwind ();
bfae80f2 20735
c19d1205
ZW
20736 /* After restoring sp from the frame pointer. */
20737 op = 0x90 | unwind.fp_reg;
20738 add_unwind_opcode (op, 1);
20739 }
20740 else
20741 flush_pending_unwind ();
bfae80f2
RE
20742}
20743
bfae80f2 20744
c19d1205
ZW
20745/* Start an exception table entry. If idx is nonzero this is an index table
20746 entry. */
bfae80f2
RE
20747
20748static void
c19d1205 20749start_unwind_section (const segT text_seg, int idx)
bfae80f2 20750{
c19d1205
ZW
20751 const char * text_name;
20752 const char * prefix;
20753 const char * prefix_once;
20754 const char * group_name;
20755 size_t prefix_len;
20756 size_t text_len;
20757 char * sec_name;
20758 size_t sec_name_len;
20759 int type;
20760 int flags;
20761 int linkonce;
bfae80f2 20762
c19d1205 20763 if (idx)
bfae80f2 20764 {
c19d1205
ZW
20765 prefix = ELF_STRING_ARM_unwind;
20766 prefix_once = ELF_STRING_ARM_unwind_once;
20767 type = SHT_ARM_EXIDX;
bfae80f2 20768 }
c19d1205 20769 else
bfae80f2 20770 {
c19d1205
ZW
20771 prefix = ELF_STRING_ARM_unwind_info;
20772 prefix_once = ELF_STRING_ARM_unwind_info_once;
20773 type = SHT_PROGBITS;
bfae80f2
RE
20774 }
20775
c19d1205
ZW
20776 text_name = segment_name (text_seg);
20777 if (streq (text_name, ".text"))
20778 text_name = "";
20779
20780 if (strncmp (text_name, ".gnu.linkonce.t.",
20781 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 20782 {
c19d1205
ZW
20783 prefix = prefix_once;
20784 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
20785 }
20786
c19d1205
ZW
20787 prefix_len = strlen (prefix);
20788 text_len = strlen (text_name);
20789 sec_name_len = prefix_len + text_len;
21d799b5 20790 sec_name = (char *) xmalloc (sec_name_len + 1);
c19d1205
ZW
20791 memcpy (sec_name, prefix, prefix_len);
20792 memcpy (sec_name + prefix_len, text_name, text_len);
20793 sec_name[prefix_len + text_len] = '\0';
bfae80f2 20794
c19d1205
ZW
20795 flags = SHF_ALLOC;
20796 linkonce = 0;
20797 group_name = 0;
bfae80f2 20798
c19d1205
ZW
20799 /* Handle COMDAT group. */
20800 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 20801 {
c19d1205
ZW
20802 group_name = elf_group_name (text_seg);
20803 if (group_name == NULL)
20804 {
bd3ba5d1 20805 as_bad (_("Group section `%s' has no group signature"),
c19d1205
ZW
20806 segment_name (text_seg));
20807 ignore_rest_of_line ();
20808 return;
20809 }
20810 flags |= SHF_GROUP;
20811 linkonce = 1;
bfae80f2
RE
20812 }
20813
c19d1205 20814 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
bfae80f2 20815
5f4273c7 20816 /* Set the section link for index tables. */
c19d1205
ZW
20817 if (idx)
20818 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
20819}
20820
bfae80f2 20821
c19d1205
ZW
20822/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
20823 personality routine data. Returns zero, or the index table value for
20824 and inline entry. */
20825
20826static valueT
20827create_unwind_entry (int have_data)
bfae80f2 20828{
c19d1205
ZW
20829 int size;
20830 addressT where;
20831 char *ptr;
20832 /* The current word of data. */
20833 valueT data;
20834 /* The number of bytes left in this word. */
20835 int n;
bfae80f2 20836
c19d1205 20837 finish_unwind_opcodes ();
bfae80f2 20838
c19d1205
ZW
20839 /* Remember the current text section. */
20840 unwind.saved_seg = now_seg;
20841 unwind.saved_subseg = now_subseg;
bfae80f2 20842
c19d1205 20843 start_unwind_section (now_seg, 0);
bfae80f2 20844
c19d1205 20845 if (unwind.personality_routine == NULL)
bfae80f2 20846 {
c19d1205
ZW
20847 if (unwind.personality_index == -2)
20848 {
20849 if (have_data)
5f4273c7 20850 as_bad (_("handlerdata in cantunwind frame"));
c19d1205
ZW
20851 return 1; /* EXIDX_CANTUNWIND. */
20852 }
bfae80f2 20853
c19d1205
ZW
20854 /* Use a default personality routine if none is specified. */
20855 if (unwind.personality_index == -1)
20856 {
20857 if (unwind.opcode_count > 3)
20858 unwind.personality_index = 1;
20859 else
20860 unwind.personality_index = 0;
20861 }
bfae80f2 20862
c19d1205
ZW
20863 /* Space for the personality routine entry. */
20864 if (unwind.personality_index == 0)
20865 {
20866 if (unwind.opcode_count > 3)
20867 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 20868
c19d1205
ZW
20869 if (!have_data)
20870 {
20871 /* All the data is inline in the index table. */
20872 data = 0x80;
20873 n = 3;
20874 while (unwind.opcode_count > 0)
20875 {
20876 unwind.opcode_count--;
20877 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20878 n--;
20879 }
bfae80f2 20880
c19d1205
ZW
20881 /* Pad with "finish" opcodes. */
20882 while (n--)
20883 data = (data << 8) | 0xb0;
bfae80f2 20884
c19d1205
ZW
20885 return data;
20886 }
20887 size = 0;
20888 }
20889 else
20890 /* We get two opcodes "free" in the first word. */
20891 size = unwind.opcode_count - 2;
20892 }
20893 else
5011093d
NC
20894 {
20895 gas_assert (unwind.personality_index == -1);
20896
20897 /* An extra byte is required for the opcode count. */
20898 size = unwind.opcode_count + 1;
20899 }
bfae80f2 20900
c19d1205
ZW
20901 size = (size + 3) >> 2;
20902 if (size > 0xff)
20903 as_bad (_("too many unwind opcodes"));
bfae80f2 20904
c19d1205
ZW
20905 frag_align (2, 0, 0);
20906 record_alignment (now_seg, 2);
20907 unwind.table_entry = expr_build_dot ();
20908
20909 /* Allocate the table entry. */
20910 ptr = frag_more ((size << 2) + 4);
74929e7b
NC
20911 /* PR 13449: Zero the table entries in case some of them are not used. */
20912 memset (ptr, 0, (size << 2) + 4);
c19d1205 20913 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 20914
c19d1205 20915 switch (unwind.personality_index)
bfae80f2 20916 {
c19d1205
ZW
20917 case -1:
20918 /* ??? Should this be a PLT generating relocation? */
20919 /* Custom personality routine. */
20920 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
20921 BFD_RELOC_ARM_PREL31);
bfae80f2 20922
c19d1205
ZW
20923 where += 4;
20924 ptr += 4;
bfae80f2 20925
c19d1205 20926 /* Set the first byte to the number of additional words. */
5011093d 20927 data = size > 0 ? size - 1 : 0;
c19d1205
ZW
20928 n = 3;
20929 break;
bfae80f2 20930
c19d1205
ZW
20931 /* ABI defined personality routines. */
20932 case 0:
20933 /* Three opcodes bytes are packed into the first word. */
20934 data = 0x80;
20935 n = 3;
20936 break;
bfae80f2 20937
c19d1205
ZW
20938 case 1:
20939 case 2:
20940 /* The size and first two opcode bytes go in the first word. */
20941 data = ((0x80 + unwind.personality_index) << 8) | size;
20942 n = 2;
20943 break;
bfae80f2 20944
c19d1205
ZW
20945 default:
20946 /* Should never happen. */
20947 abort ();
20948 }
bfae80f2 20949
c19d1205
ZW
20950 /* Pack the opcodes into words (MSB first), reversing the list at the same
20951 time. */
20952 while (unwind.opcode_count > 0)
20953 {
20954 if (n == 0)
20955 {
20956 md_number_to_chars (ptr, data, 4);
20957 ptr += 4;
20958 n = 4;
20959 data = 0;
20960 }
20961 unwind.opcode_count--;
20962 n--;
20963 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20964 }
20965
20966 /* Finish off the last word. */
20967 if (n < 4)
20968 {
20969 /* Pad with "finish" opcodes. */
20970 while (n--)
20971 data = (data << 8) | 0xb0;
20972
20973 md_number_to_chars (ptr, data, 4);
20974 }
20975
20976 if (!have_data)
20977 {
20978 /* Add an empty descriptor if there is no user-specified data. */
20979 ptr = frag_more (4);
20980 md_number_to_chars (ptr, 0, 4);
20981 }
20982
20983 return 0;
bfae80f2
RE
20984}
20985
f0927246
NC
20986
20987/* Initialize the DWARF-2 unwind information for this procedure. */
20988
20989void
20990tc_arm_frame_initial_instructions (void)
20991{
20992 cfi_add_CFA_def_cfa (REG_SP, 0);
20993}
20994#endif /* OBJ_ELF */
20995
c19d1205
ZW
20996/* Convert REGNAME to a DWARF-2 register number. */
20997
20998int
1df69f4f 20999tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 21000{
1df69f4f 21001 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
c19d1205
ZW
21002
21003 if (reg == FAIL)
21004 return -1;
21005
21006 return reg;
bfae80f2
RE
21007}
21008
f0927246 21009#ifdef TE_PE
c19d1205 21010void
f0927246 21011tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 21012{
91d6fa6a 21013 expressionS exp;
bfae80f2 21014
91d6fa6a
NC
21015 exp.X_op = O_secrel;
21016 exp.X_add_symbol = symbol;
21017 exp.X_add_number = 0;
21018 emit_expr (&exp, size);
f0927246
NC
21019}
21020#endif
bfae80f2 21021
c19d1205 21022/* MD interface: Symbol and relocation handling. */
bfae80f2 21023
2fc8bdac
ZW
21024/* Return the address within the segment that a PC-relative fixup is
21025 relative to. For ARM, PC-relative fixups applied to instructions
21026 are generally relative to the location of the fixup plus 8 bytes.
21027 Thumb branches are offset by 4, and Thumb loads relative to PC
21028 require special handling. */
bfae80f2 21029
c19d1205 21030long
2fc8bdac 21031md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 21032{
2fc8bdac
ZW
21033 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
21034
21035 /* If this is pc-relative and we are going to emit a relocation
21036 then we just want to put out any pipeline compensation that the linker
53baae48
NC
21037 will need. Otherwise we want to use the calculated base.
21038 For WinCE we skip the bias for externals as well, since this
21039 is how the MS ARM-CE assembler behaves and we want to be compatible. */
5f4273c7 21040 if (fixP->fx_pcrel
2fc8bdac 21041 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
21042 || (arm_force_relocation (fixP)
21043#ifdef TE_WINCE
21044 && !S_IS_EXTERNAL (fixP->fx_addsy)
21045#endif
21046 )))
2fc8bdac 21047 base = 0;
bfae80f2 21048
267bf995 21049
c19d1205 21050 switch (fixP->fx_r_type)
bfae80f2 21051 {
2fc8bdac
ZW
21052 /* PC relative addressing on the Thumb is slightly odd as the
21053 bottom two bits of the PC are forced to zero for the
21054 calculation. This happens *after* application of the
21055 pipeline offset. However, Thumb adrl already adjusts for
21056 this, so we need not do it again. */
c19d1205 21057 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 21058 return base & ~3;
c19d1205
ZW
21059
21060 case BFD_RELOC_ARM_THUMB_OFFSET:
21061 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 21062 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 21063 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 21064 return (base + 4) & ~3;
c19d1205 21065
2fc8bdac
ZW
21066 /* Thumb branches are simply offset by +4. */
21067 case BFD_RELOC_THUMB_PCREL_BRANCH7:
21068 case BFD_RELOC_THUMB_PCREL_BRANCH9:
21069 case BFD_RELOC_THUMB_PCREL_BRANCH12:
21070 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac 21071 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac 21072 return base + 4;
bfae80f2 21073
267bf995 21074 case BFD_RELOC_THUMB_PCREL_BRANCH23:
486499d0
CL
21075 if (fixP->fx_addsy
21076 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21077 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21078 && ARM_IS_FUNC (fixP->fx_addsy)
21079 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21080 base = fixP->fx_where + fixP->fx_frag->fr_address;
21081 return base + 4;
21082
00adf2d4
JB
21083 /* BLX is like branches above, but forces the low two bits of PC to
21084 zero. */
486499d0
CL
21085 case BFD_RELOC_THUMB_PCREL_BLX:
21086 if (fixP->fx_addsy
21087 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21088 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21089 && THUMB_IS_FUNC (fixP->fx_addsy)
21090 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21091 base = fixP->fx_where + fixP->fx_frag->fr_address;
00adf2d4
JB
21092 return (base + 4) & ~3;
21093
2fc8bdac
ZW
21094 /* ARM mode branches are offset by +8. However, the Windows CE
21095 loader expects the relocation not to take this into account. */
267bf995 21096 case BFD_RELOC_ARM_PCREL_BLX:
486499d0
CL
21097 if (fixP->fx_addsy
21098 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21099 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21100 && ARM_IS_FUNC (fixP->fx_addsy)
21101 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21102 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21103 return base + 8;
267bf995 21104
486499d0
CL
21105 case BFD_RELOC_ARM_PCREL_CALL:
21106 if (fixP->fx_addsy
21107 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21108 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21109 && THUMB_IS_FUNC (fixP->fx_addsy)
21110 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21111 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21112 return base + 8;
267bf995 21113
2fc8bdac 21114 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c 21115 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 21116 case BFD_RELOC_ARM_PLT32:
c19d1205 21117#ifdef TE_WINCE
5f4273c7 21118 /* When handling fixups immediately, because we have already
53baae48
NC
21119 discovered the value of a symbol, or the address of the frag involved
21120 we must account for the offset by +8, as the OS loader will never see the reloc.
21121 see fixup_segment() in write.c
21122 The S_IS_EXTERNAL test handles the case of global symbols.
21123 Those need the calculated base, not just the pipe compensation the linker will need. */
21124 if (fixP->fx_pcrel
21125 && fixP->fx_addsy != NULL
21126 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21127 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
21128 return base + 8;
2fc8bdac 21129 return base;
c19d1205 21130#else
2fc8bdac 21131 return base + 8;
c19d1205 21132#endif
2fc8bdac 21133
267bf995 21134
2fc8bdac
ZW
21135 /* ARM mode loads relative to PC are also offset by +8. Unlike
21136 branches, the Windows CE loader *does* expect the relocation
21137 to take this into account. */
21138 case BFD_RELOC_ARM_OFFSET_IMM:
21139 case BFD_RELOC_ARM_OFFSET_IMM8:
21140 case BFD_RELOC_ARM_HWLITERAL:
21141 case BFD_RELOC_ARM_LITERAL:
21142 case BFD_RELOC_ARM_CP_OFF_IMM:
21143 return base + 8;
21144
21145
21146 /* Other PC-relative relocations are un-offset. */
21147 default:
21148 return base;
21149 }
bfae80f2
RE
21150}
21151
c19d1205
ZW
21152/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
21153 Otherwise we have no need to default values of symbols. */
21154
21155symbolS *
21156md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
bfae80f2 21157{
c19d1205
ZW
21158#ifdef OBJ_ELF
21159 if (name[0] == '_' && name[1] == 'G'
21160 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
21161 {
21162 if (!GOT_symbol)
21163 {
21164 if (symbol_find (name))
bd3ba5d1 21165 as_bad (_("GOT already in the symbol table"));
bfae80f2 21166
c19d1205
ZW
21167 GOT_symbol = symbol_new (name, undefined_section,
21168 (valueT) 0, & zero_address_frag);
21169 }
bfae80f2 21170
c19d1205 21171 return GOT_symbol;
bfae80f2 21172 }
c19d1205 21173#endif
bfae80f2 21174
c921be7d 21175 return NULL;
bfae80f2
RE
21176}
21177
55cf6793 21178/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
21179 computed as two separate immediate values, added together. We
21180 already know that this value cannot be computed by just one ARM
21181 instruction. */
21182
21183static unsigned int
21184validate_immediate_twopart (unsigned int val,
21185 unsigned int * highpart)
bfae80f2 21186{
c19d1205
ZW
21187 unsigned int a;
21188 unsigned int i;
bfae80f2 21189
c19d1205
ZW
21190 for (i = 0; i < 32; i += 2)
21191 if (((a = rotate_left (val, i)) & 0xff) != 0)
21192 {
21193 if (a & 0xff00)
21194 {
21195 if (a & ~ 0xffff)
21196 continue;
21197 * highpart = (a >> 8) | ((i + 24) << 7);
21198 }
21199 else if (a & 0xff0000)
21200 {
21201 if (a & 0xff000000)
21202 continue;
21203 * highpart = (a >> 16) | ((i + 16) << 7);
21204 }
21205 else
21206 {
9c2799c2 21207 gas_assert (a & 0xff000000);
c19d1205
ZW
21208 * highpart = (a >> 24) | ((i + 8) << 7);
21209 }
bfae80f2 21210
c19d1205
ZW
21211 return (a & 0xff) | (i << 7);
21212 }
bfae80f2 21213
c19d1205 21214 return FAIL;
bfae80f2
RE
21215}
21216
c19d1205
ZW
21217static int
21218validate_offset_imm (unsigned int val, int hwse)
21219{
21220 if ((hwse && val > 255) || val > 4095)
21221 return FAIL;
21222 return val;
21223}
bfae80f2 21224
55cf6793 21225/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
21226 negative immediate constant by altering the instruction. A bit of
21227 a hack really.
21228 MOV <-> MVN
21229 AND <-> BIC
21230 ADC <-> SBC
21231 by inverting the second operand, and
21232 ADD <-> SUB
21233 CMP <-> CMN
21234 by negating the second operand. */
bfae80f2 21235
c19d1205
ZW
21236static int
21237negate_data_op (unsigned long * instruction,
21238 unsigned long value)
bfae80f2 21239{
c19d1205
ZW
21240 int op, new_inst;
21241 unsigned long negated, inverted;
bfae80f2 21242
c19d1205
ZW
21243 negated = encode_arm_immediate (-value);
21244 inverted = encode_arm_immediate (~value);
bfae80f2 21245
c19d1205
ZW
21246 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
21247 switch (op)
bfae80f2 21248 {
c19d1205
ZW
21249 /* First negates. */
21250 case OPCODE_SUB: /* ADD <-> SUB */
21251 new_inst = OPCODE_ADD;
21252 value = negated;
21253 break;
bfae80f2 21254
c19d1205
ZW
21255 case OPCODE_ADD:
21256 new_inst = OPCODE_SUB;
21257 value = negated;
21258 break;
bfae80f2 21259
c19d1205
ZW
21260 case OPCODE_CMP: /* CMP <-> CMN */
21261 new_inst = OPCODE_CMN;
21262 value = negated;
21263 break;
bfae80f2 21264
c19d1205
ZW
21265 case OPCODE_CMN:
21266 new_inst = OPCODE_CMP;
21267 value = negated;
21268 break;
bfae80f2 21269
c19d1205
ZW
21270 /* Now Inverted ops. */
21271 case OPCODE_MOV: /* MOV <-> MVN */
21272 new_inst = OPCODE_MVN;
21273 value = inverted;
21274 break;
bfae80f2 21275
c19d1205
ZW
21276 case OPCODE_MVN:
21277 new_inst = OPCODE_MOV;
21278 value = inverted;
21279 break;
bfae80f2 21280
c19d1205
ZW
21281 case OPCODE_AND: /* AND <-> BIC */
21282 new_inst = OPCODE_BIC;
21283 value = inverted;
21284 break;
bfae80f2 21285
c19d1205
ZW
21286 case OPCODE_BIC:
21287 new_inst = OPCODE_AND;
21288 value = inverted;
21289 break;
bfae80f2 21290
c19d1205
ZW
21291 case OPCODE_ADC: /* ADC <-> SBC */
21292 new_inst = OPCODE_SBC;
21293 value = inverted;
21294 break;
bfae80f2 21295
c19d1205
ZW
21296 case OPCODE_SBC:
21297 new_inst = OPCODE_ADC;
21298 value = inverted;
21299 break;
bfae80f2 21300
c19d1205
ZW
21301 /* We cannot do anything. */
21302 default:
21303 return FAIL;
b99bd4ef
NC
21304 }
21305
c19d1205
ZW
21306 if (value == (unsigned) FAIL)
21307 return FAIL;
21308
21309 *instruction &= OPCODE_MASK;
21310 *instruction |= new_inst << DATA_OP_SHIFT;
21311 return value;
b99bd4ef
NC
21312}
21313
ef8d22e6
PB
21314/* Like negate_data_op, but for Thumb-2. */
21315
21316static unsigned int
16dd5e42 21317thumb32_negate_data_op (offsetT *instruction, unsigned int value)
ef8d22e6
PB
21318{
21319 int op, new_inst;
21320 int rd;
16dd5e42 21321 unsigned int negated, inverted;
ef8d22e6
PB
21322
21323 negated = encode_thumb32_immediate (-value);
21324 inverted = encode_thumb32_immediate (~value);
21325
21326 rd = (*instruction >> 8) & 0xf;
21327 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
21328 switch (op)
21329 {
21330 /* ADD <-> SUB. Includes CMP <-> CMN. */
21331 case T2_OPCODE_SUB:
21332 new_inst = T2_OPCODE_ADD;
21333 value = negated;
21334 break;
21335
21336 case T2_OPCODE_ADD:
21337 new_inst = T2_OPCODE_SUB;
21338 value = negated;
21339 break;
21340
21341 /* ORR <-> ORN. Includes MOV <-> MVN. */
21342 case T2_OPCODE_ORR:
21343 new_inst = T2_OPCODE_ORN;
21344 value = inverted;
21345 break;
21346
21347 case T2_OPCODE_ORN:
21348 new_inst = T2_OPCODE_ORR;
21349 value = inverted;
21350 break;
21351
21352 /* AND <-> BIC. TST has no inverted equivalent. */
21353 case T2_OPCODE_AND:
21354 new_inst = T2_OPCODE_BIC;
21355 if (rd == 15)
21356 value = FAIL;
21357 else
21358 value = inverted;
21359 break;
21360
21361 case T2_OPCODE_BIC:
21362 new_inst = T2_OPCODE_AND;
21363 value = inverted;
21364 break;
21365
21366 /* ADC <-> SBC */
21367 case T2_OPCODE_ADC:
21368 new_inst = T2_OPCODE_SBC;
21369 value = inverted;
21370 break;
21371
21372 case T2_OPCODE_SBC:
21373 new_inst = T2_OPCODE_ADC;
21374 value = inverted;
21375 break;
21376
21377 /* We cannot do anything. */
21378 default:
21379 return FAIL;
21380 }
21381
16dd5e42 21382 if (value == (unsigned int)FAIL)
ef8d22e6
PB
21383 return FAIL;
21384
21385 *instruction &= T2_OPCODE_MASK;
21386 *instruction |= new_inst << T2_DATA_OP_SHIFT;
21387 return value;
21388}
21389
8f06b2d8
PB
21390/* Read a 32-bit thumb instruction from buf. */
21391static unsigned long
21392get_thumb32_insn (char * buf)
21393{
21394 unsigned long insn;
21395 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
21396 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21397
21398 return insn;
21399}
21400
a8bc6c78
PB
21401
21402/* We usually want to set the low bit on the address of thumb function
21403 symbols. In particular .word foo - . should have the low bit set.
21404 Generic code tries to fold the difference of two symbols to
21405 a constant. Prevent this and force a relocation when the first symbols
21406 is a thumb function. */
c921be7d
NC
21407
21408bfd_boolean
a8bc6c78
PB
21409arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
21410{
21411 if (op == O_subtract
21412 && l->X_op == O_symbol
21413 && r->X_op == O_symbol
21414 && THUMB_IS_FUNC (l->X_add_symbol))
21415 {
21416 l->X_op = O_subtract;
21417 l->X_op_symbol = r->X_add_symbol;
21418 l->X_add_number -= r->X_add_number;
c921be7d 21419 return TRUE;
a8bc6c78 21420 }
c921be7d 21421
a8bc6c78 21422 /* Process as normal. */
c921be7d 21423 return FALSE;
a8bc6c78
PB
21424}
21425
4a42ebbc
RR
21426/* Encode Thumb2 unconditional branches and calls. The encoding
21427 for the 2 are identical for the immediate values. */
21428
21429static void
21430encode_thumb2_b_bl_offset (char * buf, offsetT value)
21431{
21432#define T2I1I2MASK ((1 << 13) | (1 << 11))
21433 offsetT newval;
21434 offsetT newval2;
21435 addressT S, I1, I2, lo, hi;
21436
21437 S = (value >> 24) & 0x01;
21438 I1 = (value >> 23) & 0x01;
21439 I2 = (value >> 22) & 0x01;
21440 hi = (value >> 12) & 0x3ff;
fa94de6b 21441 lo = (value >> 1) & 0x7ff;
4a42ebbc
RR
21442 newval = md_chars_to_number (buf, THUMB_SIZE);
21443 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21444 newval |= (S << 10) | hi;
21445 newval2 &= ~T2I1I2MASK;
21446 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
21447 md_number_to_chars (buf, newval, THUMB_SIZE);
21448 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
21449}
21450
c19d1205 21451void
55cf6793 21452md_apply_fix (fixS * fixP,
c19d1205
ZW
21453 valueT * valP,
21454 segT seg)
21455{
21456 offsetT value = * valP;
21457 offsetT newval;
21458 unsigned int newimm;
21459 unsigned long temp;
21460 int sign;
21461 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 21462
9c2799c2 21463 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 21464
c19d1205 21465 /* Note whether this will delete the relocation. */
4962c51a 21466
c19d1205
ZW
21467 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
21468 fixP->fx_done = 1;
b99bd4ef 21469
adbaf948 21470 /* On a 64-bit host, silently truncate 'value' to 32 bits for
5f4273c7 21471 consistency with the behaviour on 32-bit hosts. Remember value
adbaf948
ZW
21472 for emit_reloc. */
21473 value &= 0xffffffff;
21474 value ^= 0x80000000;
5f4273c7 21475 value -= 0x80000000;
adbaf948
ZW
21476
21477 *valP = value;
c19d1205 21478 fixP->fx_addnumber = value;
b99bd4ef 21479
adbaf948
ZW
21480 /* Same treatment for fixP->fx_offset. */
21481 fixP->fx_offset &= 0xffffffff;
21482 fixP->fx_offset ^= 0x80000000;
21483 fixP->fx_offset -= 0x80000000;
21484
c19d1205 21485 switch (fixP->fx_r_type)
b99bd4ef 21486 {
c19d1205
ZW
21487 case BFD_RELOC_NONE:
21488 /* This will need to go in the object file. */
21489 fixP->fx_done = 0;
21490 break;
b99bd4ef 21491
c19d1205
ZW
21492 case BFD_RELOC_ARM_IMMEDIATE:
21493 /* We claim that this fixup has been processed here,
21494 even if in fact we generate an error because we do
21495 not have a reloc for it, so tc_gen_reloc will reject it. */
21496 fixP->fx_done = 1;
b99bd4ef 21497
77db8e2e 21498 if (fixP->fx_addsy)
b99bd4ef 21499 {
77db8e2e 21500 const char *msg = 0;
b99bd4ef 21501
77db8e2e
NC
21502 if (! S_IS_DEFINED (fixP->fx_addsy))
21503 msg = _("undefined symbol %s used as an immediate value");
21504 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21505 msg = _("symbol %s is in a different section");
21506 else if (S_IS_WEAK (fixP->fx_addsy))
21507 msg = _("symbol %s is weak and may be overridden later");
21508
21509 if (msg)
21510 {
21511 as_bad_where (fixP->fx_file, fixP->fx_line,
21512 msg, S_GET_NAME (fixP->fx_addsy));
21513 break;
21514 }
42e5fcbf
AS
21515 }
21516
c19d1205
ZW
21517 temp = md_chars_to_number (buf, INSN_SIZE);
21518
5e73442d
SL
21519 /* If the offset is negative, we should use encoding A2 for ADR. */
21520 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
21521 newimm = negate_data_op (&temp, value);
21522 else
21523 {
21524 newimm = encode_arm_immediate (value);
21525
21526 /* If the instruction will fail, see if we can fix things up by
21527 changing the opcode. */
21528 if (newimm == (unsigned int) FAIL)
21529 newimm = negate_data_op (&temp, value);
21530 }
21531
21532 if (newimm == (unsigned int) FAIL)
b99bd4ef 21533 {
c19d1205
ZW
21534 as_bad_where (fixP->fx_file, fixP->fx_line,
21535 _("invalid constant (%lx) after fixup"),
21536 (unsigned long) value);
21537 break;
b99bd4ef 21538 }
b99bd4ef 21539
c19d1205
ZW
21540 newimm |= (temp & 0xfffff000);
21541 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
21542 break;
b99bd4ef 21543
c19d1205
ZW
21544 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
21545 {
21546 unsigned int highpart = 0;
21547 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 21548
77db8e2e 21549 if (fixP->fx_addsy)
42e5fcbf 21550 {
77db8e2e 21551 const char *msg = 0;
42e5fcbf 21552
77db8e2e
NC
21553 if (! S_IS_DEFINED (fixP->fx_addsy))
21554 msg = _("undefined symbol %s used as an immediate value");
21555 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21556 msg = _("symbol %s is in a different section");
21557 else if (S_IS_WEAK (fixP->fx_addsy))
21558 msg = _("symbol %s is weak and may be overridden later");
42e5fcbf 21559
77db8e2e
NC
21560 if (msg)
21561 {
21562 as_bad_where (fixP->fx_file, fixP->fx_line,
21563 msg, S_GET_NAME (fixP->fx_addsy));
21564 break;
21565 }
21566 }
fa94de6b 21567
c19d1205
ZW
21568 newimm = encode_arm_immediate (value);
21569 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 21570
c19d1205
ZW
21571 /* If the instruction will fail, see if we can fix things up by
21572 changing the opcode. */
21573 if (newimm == (unsigned int) FAIL
21574 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
21575 {
21576 /* No ? OK - try using two ADD instructions to generate
21577 the value. */
21578 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 21579
c19d1205
ZW
21580 /* Yes - then make sure that the second instruction is
21581 also an add. */
21582 if (newimm != (unsigned int) FAIL)
21583 newinsn = temp;
21584 /* Still No ? Try using a negated value. */
21585 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
21586 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
21587 /* Otherwise - give up. */
21588 else
21589 {
21590 as_bad_where (fixP->fx_file, fixP->fx_line,
21591 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
21592 (long) value);
21593 break;
21594 }
b99bd4ef 21595
c19d1205
ZW
21596 /* Replace the first operand in the 2nd instruction (which
21597 is the PC) with the destination register. We have
21598 already added in the PC in the first instruction and we
21599 do not want to do it again. */
21600 newinsn &= ~ 0xf0000;
21601 newinsn |= ((newinsn & 0x0f000) << 4);
21602 }
b99bd4ef 21603
c19d1205
ZW
21604 newimm |= (temp & 0xfffff000);
21605 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 21606
c19d1205
ZW
21607 highpart |= (newinsn & 0xfffff000);
21608 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
21609 }
21610 break;
b99bd4ef 21611
c19d1205 21612 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
21613 if (!fixP->fx_done && seg->use_rela_p)
21614 value = 0;
21615
c19d1205 21616 case BFD_RELOC_ARM_LITERAL:
26d97720 21617 sign = value > 0;
b99bd4ef 21618
c19d1205
ZW
21619 if (value < 0)
21620 value = - value;
b99bd4ef 21621
c19d1205 21622 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 21623 {
c19d1205
ZW
21624 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
21625 as_bad_where (fixP->fx_file, fixP->fx_line,
21626 _("invalid literal constant: pool needs to be closer"));
21627 else
21628 as_bad_where (fixP->fx_file, fixP->fx_line,
21629 _("bad immediate value for offset (%ld)"),
21630 (long) value);
21631 break;
f03698e6
RE
21632 }
21633
c19d1205 21634 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
21635 if (value == 0)
21636 newval &= 0xfffff000;
21637 else
21638 {
21639 newval &= 0xff7ff000;
21640 newval |= value | (sign ? INDEX_UP : 0);
21641 }
c19d1205
ZW
21642 md_number_to_chars (buf, newval, INSN_SIZE);
21643 break;
b99bd4ef 21644
c19d1205
ZW
21645 case BFD_RELOC_ARM_OFFSET_IMM8:
21646 case BFD_RELOC_ARM_HWLITERAL:
26d97720 21647 sign = value > 0;
b99bd4ef 21648
c19d1205
ZW
21649 if (value < 0)
21650 value = - value;
b99bd4ef 21651
c19d1205 21652 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 21653 {
c19d1205
ZW
21654 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
21655 as_bad_where (fixP->fx_file, fixP->fx_line,
21656 _("invalid literal constant: pool needs to be closer"));
21657 else
427d0db6
RM
21658 as_bad_where (fixP->fx_file, fixP->fx_line,
21659 _("bad immediate value for 8-bit offset (%ld)"),
21660 (long) value);
c19d1205 21661 break;
b99bd4ef
NC
21662 }
21663
c19d1205 21664 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
21665 if (value == 0)
21666 newval &= 0xfffff0f0;
21667 else
21668 {
21669 newval &= 0xff7ff0f0;
21670 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
21671 }
c19d1205
ZW
21672 md_number_to_chars (buf, newval, INSN_SIZE);
21673 break;
b99bd4ef 21674
c19d1205
ZW
21675 case BFD_RELOC_ARM_T32_OFFSET_U8:
21676 if (value < 0 || value > 1020 || value % 4 != 0)
21677 as_bad_where (fixP->fx_file, fixP->fx_line,
21678 _("bad immediate value for offset (%ld)"), (long) value);
21679 value /= 4;
b99bd4ef 21680
c19d1205 21681 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
21682 newval |= value;
21683 md_number_to_chars (buf+2, newval, THUMB_SIZE);
21684 break;
b99bd4ef 21685
c19d1205
ZW
21686 case BFD_RELOC_ARM_T32_OFFSET_IMM:
21687 /* This is a complicated relocation used for all varieties of Thumb32
21688 load/store instruction with immediate offset:
21689
21690 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
21691 *4, optional writeback(W)
21692 (doubleword load/store)
21693
21694 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
21695 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
21696 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
21697 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
21698 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
21699
21700 Uppercase letters indicate bits that are already encoded at
21701 this point. Lowercase letters are our problem. For the
21702 second block of instructions, the secondary opcode nybble
21703 (bits 8..11) is present, and bit 23 is zero, even if this is
21704 a PC-relative operation. */
21705 newval = md_chars_to_number (buf, THUMB_SIZE);
21706 newval <<= 16;
21707 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 21708
c19d1205 21709 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 21710 {
c19d1205
ZW
21711 /* Doubleword load/store: 8-bit offset, scaled by 4. */
21712 if (value >= 0)
21713 newval |= (1 << 23);
21714 else
21715 value = -value;
21716 if (value % 4 != 0)
21717 {
21718 as_bad_where (fixP->fx_file, fixP->fx_line,
21719 _("offset not a multiple of 4"));
21720 break;
21721 }
21722 value /= 4;
216d22bc 21723 if (value > 0xff)
c19d1205
ZW
21724 {
21725 as_bad_where (fixP->fx_file, fixP->fx_line,
21726 _("offset out of range"));
21727 break;
21728 }
21729 newval &= ~0xff;
b99bd4ef 21730 }
c19d1205 21731 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 21732 {
c19d1205
ZW
21733 /* PC-relative, 12-bit offset. */
21734 if (value >= 0)
21735 newval |= (1 << 23);
21736 else
21737 value = -value;
216d22bc 21738 if (value > 0xfff)
c19d1205
ZW
21739 {
21740 as_bad_where (fixP->fx_file, fixP->fx_line,
21741 _("offset out of range"));
21742 break;
21743 }
21744 newval &= ~0xfff;
b99bd4ef 21745 }
c19d1205 21746 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 21747 {
c19d1205
ZW
21748 /* Writeback: 8-bit, +/- offset. */
21749 if (value >= 0)
21750 newval |= (1 << 9);
21751 else
21752 value = -value;
216d22bc 21753 if (value > 0xff)
c19d1205
ZW
21754 {
21755 as_bad_where (fixP->fx_file, fixP->fx_line,
21756 _("offset out of range"));
21757 break;
21758 }
21759 newval &= ~0xff;
b99bd4ef 21760 }
c19d1205 21761 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 21762 {
c19d1205 21763 /* T-instruction: positive 8-bit offset. */
216d22bc 21764 if (value < 0 || value > 0xff)
b99bd4ef 21765 {
c19d1205
ZW
21766 as_bad_where (fixP->fx_file, fixP->fx_line,
21767 _("offset out of range"));
21768 break;
b99bd4ef 21769 }
c19d1205
ZW
21770 newval &= ~0xff;
21771 newval |= value;
b99bd4ef
NC
21772 }
21773 else
b99bd4ef 21774 {
c19d1205
ZW
21775 /* Positive 12-bit or negative 8-bit offset. */
21776 int limit;
21777 if (value >= 0)
b99bd4ef 21778 {
c19d1205
ZW
21779 newval |= (1 << 23);
21780 limit = 0xfff;
21781 }
21782 else
21783 {
21784 value = -value;
21785 limit = 0xff;
21786 }
21787 if (value > limit)
21788 {
21789 as_bad_where (fixP->fx_file, fixP->fx_line,
21790 _("offset out of range"));
21791 break;
b99bd4ef 21792 }
c19d1205 21793 newval &= ~limit;
b99bd4ef 21794 }
b99bd4ef 21795
c19d1205
ZW
21796 newval |= value;
21797 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
21798 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
21799 break;
404ff6b5 21800
c19d1205
ZW
21801 case BFD_RELOC_ARM_SHIFT_IMM:
21802 newval = md_chars_to_number (buf, INSN_SIZE);
21803 if (((unsigned long) value) > 32
21804 || (value == 32
21805 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
21806 {
21807 as_bad_where (fixP->fx_file, fixP->fx_line,
21808 _("shift expression is too large"));
21809 break;
21810 }
404ff6b5 21811
c19d1205
ZW
21812 if (value == 0)
21813 /* Shifts of zero must be done as lsl. */
21814 newval &= ~0x60;
21815 else if (value == 32)
21816 value = 0;
21817 newval &= 0xfffff07f;
21818 newval |= (value & 0x1f) << 7;
21819 md_number_to_chars (buf, newval, INSN_SIZE);
21820 break;
404ff6b5 21821
c19d1205 21822 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 21823 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 21824 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 21825 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
21826 /* We claim that this fixup has been processed here,
21827 even if in fact we generate an error because we do
21828 not have a reloc for it, so tc_gen_reloc will reject it. */
21829 fixP->fx_done = 1;
404ff6b5 21830
c19d1205
ZW
21831 if (fixP->fx_addsy
21832 && ! S_IS_DEFINED (fixP->fx_addsy))
21833 {
21834 as_bad_where (fixP->fx_file, fixP->fx_line,
21835 _("undefined symbol %s used as an immediate value"),
21836 S_GET_NAME (fixP->fx_addsy));
21837 break;
21838 }
404ff6b5 21839
c19d1205
ZW
21840 newval = md_chars_to_number (buf, THUMB_SIZE);
21841 newval <<= 16;
21842 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 21843
16805f35
PB
21844 newimm = FAIL;
21845 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
21846 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
21847 {
21848 newimm = encode_thumb32_immediate (value);
21849 if (newimm == (unsigned int) FAIL)
21850 newimm = thumb32_negate_data_op (&newval, value);
21851 }
16805f35
PB
21852 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
21853 && newimm == (unsigned int) FAIL)
92e90b6e 21854 {
16805f35
PB
21855 /* Turn add/sum into addw/subw. */
21856 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
21857 newval = (newval & 0xfeffffff) | 0x02000000;
40f246e3
NC
21858 /* No flat 12-bit imm encoding for addsw/subsw. */
21859 if ((newval & 0x00100000) == 0)
e9f89963 21860 {
40f246e3
NC
21861 /* 12 bit immediate for addw/subw. */
21862 if (value < 0)
21863 {
21864 value = -value;
21865 newval ^= 0x00a00000;
21866 }
21867 if (value > 0xfff)
21868 newimm = (unsigned int) FAIL;
21869 else
21870 newimm = value;
e9f89963 21871 }
92e90b6e 21872 }
cc8a6dd0 21873
c19d1205 21874 if (newimm == (unsigned int)FAIL)
3631a3c8 21875 {
c19d1205
ZW
21876 as_bad_where (fixP->fx_file, fixP->fx_line,
21877 _("invalid constant (%lx) after fixup"),
21878 (unsigned long) value);
21879 break;
3631a3c8
NC
21880 }
21881
c19d1205
ZW
21882 newval |= (newimm & 0x800) << 15;
21883 newval |= (newimm & 0x700) << 4;
21884 newval |= (newimm & 0x0ff);
cc8a6dd0 21885
c19d1205
ZW
21886 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
21887 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
21888 break;
a737bd4d 21889
3eb17e6b 21890 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
21891 if (((unsigned long) value) > 0xffff)
21892 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 21893 _("invalid smc expression"));
2fc8bdac 21894 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21895 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21896 md_number_to_chars (buf, newval, INSN_SIZE);
21897 break;
a737bd4d 21898
90ec0d68
MGD
21899 case BFD_RELOC_ARM_HVC:
21900 if (((unsigned long) value) > 0xffff)
21901 as_bad_where (fixP->fx_file, fixP->fx_line,
21902 _("invalid hvc expression"));
21903 newval = md_chars_to_number (buf, INSN_SIZE);
21904 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21905 md_number_to_chars (buf, newval, INSN_SIZE);
21906 break;
21907
c19d1205 21908 case BFD_RELOC_ARM_SWI:
adbaf948 21909 if (fixP->tc_fix_data != 0)
c19d1205
ZW
21910 {
21911 if (((unsigned long) value) > 0xff)
21912 as_bad_where (fixP->fx_file, fixP->fx_line,
21913 _("invalid swi expression"));
2fc8bdac 21914 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
21915 newval |= value;
21916 md_number_to_chars (buf, newval, THUMB_SIZE);
21917 }
21918 else
21919 {
21920 if (((unsigned long) value) > 0x00ffffff)
21921 as_bad_where (fixP->fx_file, fixP->fx_line,
21922 _("invalid swi expression"));
2fc8bdac 21923 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21924 newval |= value;
21925 md_number_to_chars (buf, newval, INSN_SIZE);
21926 }
21927 break;
a737bd4d 21928
c19d1205
ZW
21929 case BFD_RELOC_ARM_MULTI:
21930 if (((unsigned long) value) > 0xffff)
21931 as_bad_where (fixP->fx_file, fixP->fx_line,
21932 _("invalid expression in load/store multiple"));
21933 newval = value | md_chars_to_number (buf, INSN_SIZE);
21934 md_number_to_chars (buf, newval, INSN_SIZE);
21935 break;
a737bd4d 21936
c19d1205 21937#ifdef OBJ_ELF
39b41c9c 21938 case BFD_RELOC_ARM_PCREL_CALL:
267bf995
RR
21939
21940 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21941 && fixP->fx_addsy
34e77a92 21942 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21943 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21944 && THUMB_IS_FUNC (fixP->fx_addsy))
21945 /* Flip the bl to blx. This is a simple flip
21946 bit here because we generate PCREL_CALL for
21947 unconditional bls. */
21948 {
21949 newval = md_chars_to_number (buf, INSN_SIZE);
21950 newval = newval | 0x10000000;
21951 md_number_to_chars (buf, newval, INSN_SIZE);
21952 temp = 1;
21953 fixP->fx_done = 1;
21954 }
39b41c9c
PB
21955 else
21956 temp = 3;
21957 goto arm_branch_common;
21958
21959 case BFD_RELOC_ARM_PCREL_JUMP:
267bf995
RR
21960 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21961 && fixP->fx_addsy
34e77a92 21962 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21963 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21964 && THUMB_IS_FUNC (fixP->fx_addsy))
21965 {
21966 /* This would map to a bl<cond>, b<cond>,
21967 b<always> to a Thumb function. We
21968 need to force a relocation for this particular
21969 case. */
21970 newval = md_chars_to_number (buf, INSN_SIZE);
21971 fixP->fx_done = 0;
21972 }
21973
2fc8bdac 21974 case BFD_RELOC_ARM_PLT32:
c19d1205 21975#endif
39b41c9c
PB
21976 case BFD_RELOC_ARM_PCREL_BRANCH:
21977 temp = 3;
21978 goto arm_branch_common;
a737bd4d 21979
39b41c9c 21980 case BFD_RELOC_ARM_PCREL_BLX:
267bf995 21981
39b41c9c 21982 temp = 1;
267bf995
RR
21983 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21984 && fixP->fx_addsy
34e77a92 21985 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21986 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21987 && ARM_IS_FUNC (fixP->fx_addsy))
21988 {
21989 /* Flip the blx to a bl and warn. */
21990 const char *name = S_GET_NAME (fixP->fx_addsy);
21991 newval = 0xeb000000;
21992 as_warn_where (fixP->fx_file, fixP->fx_line,
21993 _("blx to '%s' an ARM ISA state function changed to bl"),
21994 name);
21995 md_number_to_chars (buf, newval, INSN_SIZE);
21996 temp = 3;
21997 fixP->fx_done = 1;
21998 }
21999
22000#ifdef OBJ_ELF
22001 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
22002 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
22003#endif
22004
39b41c9c 22005 arm_branch_common:
c19d1205 22006 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
22007 instruction, in a 24 bit, signed field. Bits 26 through 32 either
22008 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
22009 also be be clear. */
22010 if (value & temp)
c19d1205 22011 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
22012 _("misaligned branch destination"));
22013 if ((value & (offsetT)0xfe000000) != (offsetT)0
22014 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
08f10d51 22015 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22016
2fc8bdac 22017 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 22018 {
2fc8bdac
ZW
22019 newval = md_chars_to_number (buf, INSN_SIZE);
22020 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
22021 /* Set the H bit on BLX instructions. */
22022 if (temp == 1)
22023 {
22024 if (value & 2)
22025 newval |= 0x01000000;
22026 else
22027 newval &= ~0x01000000;
22028 }
2fc8bdac 22029 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 22030 }
c19d1205 22031 break;
a737bd4d 22032
25fe350b
MS
22033 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
22034 /* CBZ can only branch forward. */
a737bd4d 22035
738755b0
MS
22036 /* Attempts to use CBZ to branch to the next instruction
22037 (which, strictly speaking, are prohibited) will be turned into
22038 no-ops.
22039
22040 FIXME: It may be better to remove the instruction completely and
22041 perform relaxation. */
22042 if (value == -2)
2fc8bdac
ZW
22043 {
22044 newval = md_chars_to_number (buf, THUMB_SIZE);
738755b0 22045 newval = 0xbf00; /* NOP encoding T1 */
2fc8bdac
ZW
22046 md_number_to_chars (buf, newval, THUMB_SIZE);
22047 }
738755b0
MS
22048 else
22049 {
22050 if (value & ~0x7e)
08f10d51 22051 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
738755b0
MS
22052
22053 if (fixP->fx_done || !seg->use_rela_p)
22054 {
22055 newval = md_chars_to_number (buf, THUMB_SIZE);
22056 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
22057 md_number_to_chars (buf, newval, THUMB_SIZE);
22058 }
22059 }
c19d1205 22060 break;
a737bd4d 22061
c19d1205 22062 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac 22063 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
08f10d51 22064 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22065
2fc8bdac
ZW
22066 if (fixP->fx_done || !seg->use_rela_p)
22067 {
22068 newval = md_chars_to_number (buf, THUMB_SIZE);
22069 newval |= (value & 0x1ff) >> 1;
22070 md_number_to_chars (buf, newval, THUMB_SIZE);
22071 }
c19d1205 22072 break;
a737bd4d 22073
c19d1205 22074 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac 22075 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
08f10d51 22076 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22077
2fc8bdac
ZW
22078 if (fixP->fx_done || !seg->use_rela_p)
22079 {
22080 newval = md_chars_to_number (buf, THUMB_SIZE);
22081 newval |= (value & 0xfff) >> 1;
22082 md_number_to_chars (buf, newval, THUMB_SIZE);
22083 }
c19d1205 22084 break;
a737bd4d 22085
c19d1205 22086 case BFD_RELOC_THUMB_PCREL_BRANCH20:
267bf995
RR
22087 if (fixP->fx_addsy
22088 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22089 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22090 && ARM_IS_FUNC (fixP->fx_addsy)
22091 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22092 {
22093 /* Force a relocation for a branch 20 bits wide. */
22094 fixP->fx_done = 0;
22095 }
08f10d51 22096 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
2fc8bdac
ZW
22097 as_bad_where (fixP->fx_file, fixP->fx_line,
22098 _("conditional branch out of range"));
404ff6b5 22099
2fc8bdac
ZW
22100 if (fixP->fx_done || !seg->use_rela_p)
22101 {
22102 offsetT newval2;
22103 addressT S, J1, J2, lo, hi;
404ff6b5 22104
2fc8bdac
ZW
22105 S = (value & 0x00100000) >> 20;
22106 J2 = (value & 0x00080000) >> 19;
22107 J1 = (value & 0x00040000) >> 18;
22108 hi = (value & 0x0003f000) >> 12;
22109 lo = (value & 0x00000ffe) >> 1;
6c43fab6 22110
2fc8bdac
ZW
22111 newval = md_chars_to_number (buf, THUMB_SIZE);
22112 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22113 newval |= (S << 10) | hi;
22114 newval2 |= (J1 << 13) | (J2 << 11) | lo;
22115 md_number_to_chars (buf, newval, THUMB_SIZE);
22116 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
22117 }
c19d1205 22118 break;
6c43fab6 22119
c19d1205 22120 case BFD_RELOC_THUMB_PCREL_BLX:
267bf995
RR
22121 /* If there is a blx from a thumb state function to
22122 another thumb function flip this to a bl and warn
22123 about it. */
22124
22125 if (fixP->fx_addsy
34e77a92 22126 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22127 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22128 && THUMB_IS_FUNC (fixP->fx_addsy))
22129 {
22130 const char *name = S_GET_NAME (fixP->fx_addsy);
22131 as_warn_where (fixP->fx_file, fixP->fx_line,
22132 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
22133 name);
22134 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22135 newval = newval | 0x1000;
22136 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22137 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22138 fixP->fx_done = 1;
22139 }
22140
22141
22142 goto thumb_bl_common;
22143
c19d1205 22144 case BFD_RELOC_THUMB_PCREL_BRANCH23:
267bf995
RR
22145 /* A bl from Thumb state ISA to an internal ARM state function
22146 is converted to a blx. */
22147 if (fixP->fx_addsy
22148 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22149 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22150 && ARM_IS_FUNC (fixP->fx_addsy)
22151 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22152 {
22153 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22154 newval = newval & ~0x1000;
22155 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22156 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
22157 fixP->fx_done = 1;
22158 }
22159
22160 thumb_bl_common:
22161
2fc8bdac
ZW
22162 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22163 /* For a BLX instruction, make sure that the relocation is rounded up
22164 to a word boundary. This follows the semantics of the instruction
22165 which specifies that bit 1 of the target address will come from bit
22166 1 of the base address. */
d406f3e4
JB
22167 value = (value + 3) & ~ 3;
22168
22169#ifdef OBJ_ELF
22170 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
22171 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22172 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22173#endif
404ff6b5 22174
2b2f5df9
NC
22175 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
22176 {
22177 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2)))
22178 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
22179 else if ((value & ~0x1ffffff)
22180 && ((value & ~0x1ffffff) != ~0x1ffffff))
22181 as_bad_where (fixP->fx_file, fixP->fx_line,
22182 _("Thumb2 branch out of range"));
22183 }
4a42ebbc
RR
22184
22185 if (fixP->fx_done || !seg->use_rela_p)
22186 encode_thumb2_b_bl_offset (buf, value);
22187
c19d1205 22188 break;
404ff6b5 22189
c19d1205 22190 case BFD_RELOC_THUMB_PCREL_BRANCH25:
08f10d51
NC
22191 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
22192 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
6c43fab6 22193
2fc8bdac 22194 if (fixP->fx_done || !seg->use_rela_p)
4a42ebbc 22195 encode_thumb2_b_bl_offset (buf, value);
6c43fab6 22196
2fc8bdac 22197 break;
a737bd4d 22198
2fc8bdac
ZW
22199 case BFD_RELOC_8:
22200 if (fixP->fx_done || !seg->use_rela_p)
22201 md_number_to_chars (buf, value, 1);
c19d1205 22202 break;
a737bd4d 22203
c19d1205 22204 case BFD_RELOC_16:
2fc8bdac 22205 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 22206 md_number_to_chars (buf, value, 2);
c19d1205 22207 break;
a737bd4d 22208
c19d1205 22209#ifdef OBJ_ELF
0855e32b
NS
22210 case BFD_RELOC_ARM_TLS_CALL:
22211 case BFD_RELOC_ARM_THM_TLS_CALL:
22212 case BFD_RELOC_ARM_TLS_DESCSEQ:
22213 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
22214 S_SET_THREAD_LOCAL (fixP->fx_addsy);
22215 break;
22216
22217 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22218 case BFD_RELOC_ARM_TLS_GD32:
22219 case BFD_RELOC_ARM_TLS_LE32:
22220 case BFD_RELOC_ARM_TLS_IE32:
22221 case BFD_RELOC_ARM_TLS_LDM32:
22222 case BFD_RELOC_ARM_TLS_LDO32:
22223 S_SET_THREAD_LOCAL (fixP->fx_addsy);
22224 /* fall through */
6c43fab6 22225
c19d1205
ZW
22226 case BFD_RELOC_ARM_GOT32:
22227 case BFD_RELOC_ARM_GOTOFF:
2fc8bdac
ZW
22228 if (fixP->fx_done || !seg->use_rela_p)
22229 md_number_to_chars (buf, 0, 4);
c19d1205 22230 break;
b43420e6
NC
22231
22232 case BFD_RELOC_ARM_GOT_PREL:
22233 if (fixP->fx_done || !seg->use_rela_p)
22234 md_number_to_chars (buf, value, 4);
22235 break;
22236
9a6f4e97
NS
22237 case BFD_RELOC_ARM_TARGET2:
22238 /* TARGET2 is not partial-inplace, so we need to write the
22239 addend here for REL targets, because it won't be written out
22240 during reloc processing later. */
22241 if (fixP->fx_done || !seg->use_rela_p)
22242 md_number_to_chars (buf, fixP->fx_offset, 4);
22243 break;
c19d1205 22244#endif
6c43fab6 22245
c19d1205
ZW
22246 case BFD_RELOC_RVA:
22247 case BFD_RELOC_32:
22248 case BFD_RELOC_ARM_TARGET1:
22249 case BFD_RELOC_ARM_ROSEGREL32:
22250 case BFD_RELOC_ARM_SBREL32:
22251 case BFD_RELOC_32_PCREL:
f0927246
NC
22252#ifdef TE_PE
22253 case BFD_RELOC_32_SECREL:
22254#endif
2fc8bdac 22255 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
22256#ifdef TE_WINCE
22257 /* For WinCE we only do this for pcrel fixups. */
22258 if (fixP->fx_done || fixP->fx_pcrel)
22259#endif
22260 md_number_to_chars (buf, value, 4);
c19d1205 22261 break;
6c43fab6 22262
c19d1205
ZW
22263#ifdef OBJ_ELF
22264 case BFD_RELOC_ARM_PREL31:
2fc8bdac 22265 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
22266 {
22267 newval = md_chars_to_number (buf, 4) & 0x80000000;
22268 if ((value ^ (value >> 1)) & 0x40000000)
22269 {
22270 as_bad_where (fixP->fx_file, fixP->fx_line,
22271 _("rel31 relocation overflow"));
22272 }
22273 newval |= value & 0x7fffffff;
22274 md_number_to_chars (buf, newval, 4);
22275 }
22276 break;
c19d1205 22277#endif
a737bd4d 22278
c19d1205 22279 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 22280 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
c19d1205
ZW
22281 if (value < -1023 || value > 1023 || (value & 3))
22282 as_bad_where (fixP->fx_file, fixP->fx_line,
22283 _("co-processor offset out of range"));
22284 cp_off_common:
26d97720 22285 sign = value > 0;
c19d1205
ZW
22286 if (value < 0)
22287 value = -value;
8f06b2d8
PB
22288 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22289 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22290 newval = md_chars_to_number (buf, INSN_SIZE);
22291 else
22292 newval = get_thumb32_insn (buf);
26d97720
NS
22293 if (value == 0)
22294 newval &= 0xffffff00;
22295 else
22296 {
22297 newval &= 0xff7fff00;
22298 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
22299 }
8f06b2d8
PB
22300 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22301 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22302 md_number_to_chars (buf, newval, INSN_SIZE);
22303 else
22304 put_thumb32_insn (buf, newval);
c19d1205 22305 break;
a737bd4d 22306
c19d1205 22307 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 22308 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
22309 if (value < -255 || value > 255)
22310 as_bad_where (fixP->fx_file, fixP->fx_line,
22311 _("co-processor offset out of range"));
df7849c5 22312 value *= 4;
c19d1205 22313 goto cp_off_common;
6c43fab6 22314
c19d1205
ZW
22315 case BFD_RELOC_ARM_THUMB_OFFSET:
22316 newval = md_chars_to_number (buf, THUMB_SIZE);
22317 /* Exactly what ranges, and where the offset is inserted depends
22318 on the type of instruction, we can establish this from the
22319 top 4 bits. */
22320 switch (newval >> 12)
22321 {
22322 case 4: /* PC load. */
22323 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
22324 forced to zero for these loads; md_pcrel_from has already
22325 compensated for this. */
22326 if (value & 3)
22327 as_bad_where (fixP->fx_file, fixP->fx_line,
22328 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
22329 (((unsigned long) fixP->fx_frag->fr_address
22330 + (unsigned long) fixP->fx_where) & ~3)
22331 + (unsigned long) value);
a737bd4d 22332
c19d1205
ZW
22333 if (value & ~0x3fc)
22334 as_bad_where (fixP->fx_file, fixP->fx_line,
22335 _("invalid offset, value too big (0x%08lX)"),
22336 (long) value);
a737bd4d 22337
c19d1205
ZW
22338 newval |= value >> 2;
22339 break;
a737bd4d 22340
c19d1205
ZW
22341 case 9: /* SP load/store. */
22342 if (value & ~0x3fc)
22343 as_bad_where (fixP->fx_file, fixP->fx_line,
22344 _("invalid offset, value too big (0x%08lX)"),
22345 (long) value);
22346 newval |= value >> 2;
22347 break;
6c43fab6 22348
c19d1205
ZW
22349 case 6: /* Word load/store. */
22350 if (value & ~0x7c)
22351 as_bad_where (fixP->fx_file, fixP->fx_line,
22352 _("invalid offset, value too big (0x%08lX)"),
22353 (long) value);
22354 newval |= value << 4; /* 6 - 2. */
22355 break;
a737bd4d 22356
c19d1205
ZW
22357 case 7: /* Byte load/store. */
22358 if (value & ~0x1f)
22359 as_bad_where (fixP->fx_file, fixP->fx_line,
22360 _("invalid offset, value too big (0x%08lX)"),
22361 (long) value);
22362 newval |= value << 6;
22363 break;
a737bd4d 22364
c19d1205
ZW
22365 case 8: /* Halfword load/store. */
22366 if (value & ~0x3e)
22367 as_bad_where (fixP->fx_file, fixP->fx_line,
22368 _("invalid offset, value too big (0x%08lX)"),
22369 (long) value);
22370 newval |= value << 5; /* 6 - 1. */
22371 break;
a737bd4d 22372
c19d1205
ZW
22373 default:
22374 as_bad_where (fixP->fx_file, fixP->fx_line,
22375 "Unable to process relocation for thumb opcode: %lx",
22376 (unsigned long) newval);
22377 break;
22378 }
22379 md_number_to_chars (buf, newval, THUMB_SIZE);
22380 break;
a737bd4d 22381
c19d1205
ZW
22382 case BFD_RELOC_ARM_THUMB_ADD:
22383 /* This is a complicated relocation, since we use it for all of
22384 the following immediate relocations:
a737bd4d 22385
c19d1205
ZW
22386 3bit ADD/SUB
22387 8bit ADD/SUB
22388 9bit ADD/SUB SP word-aligned
22389 10bit ADD PC/SP word-aligned
a737bd4d 22390
c19d1205
ZW
22391 The type of instruction being processed is encoded in the
22392 instruction field:
a737bd4d 22393
c19d1205
ZW
22394 0x8000 SUB
22395 0x00F0 Rd
22396 0x000F Rs
22397 */
22398 newval = md_chars_to_number (buf, THUMB_SIZE);
22399 {
22400 int rd = (newval >> 4) & 0xf;
22401 int rs = newval & 0xf;
22402 int subtract = !!(newval & 0x8000);
a737bd4d 22403
c19d1205
ZW
22404 /* Check for HI regs, only very restricted cases allowed:
22405 Adjusting SP, and using PC or SP to get an address. */
22406 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
22407 || (rs > 7 && rs != REG_SP && rs != REG_PC))
22408 as_bad_where (fixP->fx_file, fixP->fx_line,
22409 _("invalid Hi register with immediate"));
a737bd4d 22410
c19d1205
ZW
22411 /* If value is negative, choose the opposite instruction. */
22412 if (value < 0)
22413 {
22414 value = -value;
22415 subtract = !subtract;
22416 if (value < 0)
22417 as_bad_where (fixP->fx_file, fixP->fx_line,
22418 _("immediate value out of range"));
22419 }
a737bd4d 22420
c19d1205
ZW
22421 if (rd == REG_SP)
22422 {
22423 if (value & ~0x1fc)
22424 as_bad_where (fixP->fx_file, fixP->fx_line,
22425 _("invalid immediate for stack address calculation"));
22426 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
22427 newval |= value >> 2;
22428 }
22429 else if (rs == REG_PC || rs == REG_SP)
22430 {
22431 if (subtract || value & ~0x3fc)
22432 as_bad_where (fixP->fx_file, fixP->fx_line,
22433 _("invalid immediate for address calculation (value = 0x%08lX)"),
22434 (unsigned long) value);
22435 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
22436 newval |= rd << 8;
22437 newval |= value >> 2;
22438 }
22439 else if (rs == rd)
22440 {
22441 if (value & ~0xff)
22442 as_bad_where (fixP->fx_file, fixP->fx_line,
22443 _("immediate value out of range"));
22444 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
22445 newval |= (rd << 8) | value;
22446 }
22447 else
22448 {
22449 if (value & ~0x7)
22450 as_bad_where (fixP->fx_file, fixP->fx_line,
22451 _("immediate value out of range"));
22452 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
22453 newval |= rd | (rs << 3) | (value << 6);
22454 }
22455 }
22456 md_number_to_chars (buf, newval, THUMB_SIZE);
22457 break;
a737bd4d 22458
c19d1205
ZW
22459 case BFD_RELOC_ARM_THUMB_IMM:
22460 newval = md_chars_to_number (buf, THUMB_SIZE);
22461 if (value < 0 || value > 255)
22462 as_bad_where (fixP->fx_file, fixP->fx_line,
4e6e072b 22463 _("invalid immediate: %ld is out of range"),
c19d1205
ZW
22464 (long) value);
22465 newval |= value;
22466 md_number_to_chars (buf, newval, THUMB_SIZE);
22467 break;
a737bd4d 22468
c19d1205
ZW
22469 case BFD_RELOC_ARM_THUMB_SHIFT:
22470 /* 5bit shift value (0..32). LSL cannot take 32. */
22471 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
22472 temp = newval & 0xf800;
22473 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
22474 as_bad_where (fixP->fx_file, fixP->fx_line,
22475 _("invalid shift value: %ld"), (long) value);
22476 /* Shifts of zero must be encoded as LSL. */
22477 if (value == 0)
22478 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
22479 /* Shifts of 32 are encoded as zero. */
22480 else if (value == 32)
22481 value = 0;
22482 newval |= value << 6;
22483 md_number_to_chars (buf, newval, THUMB_SIZE);
22484 break;
a737bd4d 22485
c19d1205
ZW
22486 case BFD_RELOC_VTABLE_INHERIT:
22487 case BFD_RELOC_VTABLE_ENTRY:
22488 fixP->fx_done = 0;
22489 return;
6c43fab6 22490
b6895b4f
PB
22491 case BFD_RELOC_ARM_MOVW:
22492 case BFD_RELOC_ARM_MOVT:
22493 case BFD_RELOC_ARM_THUMB_MOVW:
22494 case BFD_RELOC_ARM_THUMB_MOVT:
22495 if (fixP->fx_done || !seg->use_rela_p)
22496 {
22497 /* REL format relocations are limited to a 16-bit addend. */
22498 if (!fixP->fx_done)
22499 {
39623e12 22500 if (value < -0x8000 || value > 0x7fff)
b6895b4f 22501 as_bad_where (fixP->fx_file, fixP->fx_line,
ff5075ca 22502 _("offset out of range"));
b6895b4f
PB
22503 }
22504 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
22505 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22506 {
22507 value >>= 16;
22508 }
22509
22510 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
22511 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22512 {
22513 newval = get_thumb32_insn (buf);
22514 newval &= 0xfbf08f00;
22515 newval |= (value & 0xf000) << 4;
22516 newval |= (value & 0x0800) << 15;
22517 newval |= (value & 0x0700) << 4;
22518 newval |= (value & 0x00ff);
22519 put_thumb32_insn (buf, newval);
22520 }
22521 else
22522 {
22523 newval = md_chars_to_number (buf, 4);
22524 newval &= 0xfff0f000;
22525 newval |= value & 0x0fff;
22526 newval |= (value & 0xf000) << 4;
22527 md_number_to_chars (buf, newval, 4);
22528 }
22529 }
22530 return;
22531
4962c51a
MS
22532 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22533 case BFD_RELOC_ARM_ALU_PC_G0:
22534 case BFD_RELOC_ARM_ALU_PC_G1_NC:
22535 case BFD_RELOC_ARM_ALU_PC_G1:
22536 case BFD_RELOC_ARM_ALU_PC_G2:
22537 case BFD_RELOC_ARM_ALU_SB_G0_NC:
22538 case BFD_RELOC_ARM_ALU_SB_G0:
22539 case BFD_RELOC_ARM_ALU_SB_G1_NC:
22540 case BFD_RELOC_ARM_ALU_SB_G1:
22541 case BFD_RELOC_ARM_ALU_SB_G2:
9c2799c2 22542 gas_assert (!fixP->fx_done);
4962c51a
MS
22543 if (!seg->use_rela_p)
22544 {
22545 bfd_vma insn;
22546 bfd_vma encoded_addend;
22547 bfd_vma addend_abs = abs (value);
22548
22549 /* Check that the absolute value of the addend can be
22550 expressed as an 8-bit constant plus a rotation. */
22551 encoded_addend = encode_arm_immediate (addend_abs);
22552 if (encoded_addend == (unsigned int) FAIL)
22553 as_bad_where (fixP->fx_file, fixP->fx_line,
22554 _("the offset 0x%08lX is not representable"),
495bde8e 22555 (unsigned long) addend_abs);
4962c51a
MS
22556
22557 /* Extract the instruction. */
22558 insn = md_chars_to_number (buf, INSN_SIZE);
22559
22560 /* If the addend is positive, use an ADD instruction.
22561 Otherwise use a SUB. Take care not to destroy the S bit. */
22562 insn &= 0xff1fffff;
22563 if (value < 0)
22564 insn |= 1 << 22;
22565 else
22566 insn |= 1 << 23;
22567
22568 /* Place the encoded addend into the first 12 bits of the
22569 instruction. */
22570 insn &= 0xfffff000;
22571 insn |= encoded_addend;
5f4273c7
NC
22572
22573 /* Update the instruction. */
4962c51a
MS
22574 md_number_to_chars (buf, insn, INSN_SIZE);
22575 }
22576 break;
22577
22578 case BFD_RELOC_ARM_LDR_PC_G0:
22579 case BFD_RELOC_ARM_LDR_PC_G1:
22580 case BFD_RELOC_ARM_LDR_PC_G2:
22581 case BFD_RELOC_ARM_LDR_SB_G0:
22582 case BFD_RELOC_ARM_LDR_SB_G1:
22583 case BFD_RELOC_ARM_LDR_SB_G2:
9c2799c2 22584 gas_assert (!fixP->fx_done);
4962c51a
MS
22585 if (!seg->use_rela_p)
22586 {
22587 bfd_vma insn;
22588 bfd_vma addend_abs = abs (value);
22589
22590 /* Check that the absolute value of the addend can be
22591 encoded in 12 bits. */
22592 if (addend_abs >= 0x1000)
22593 as_bad_where (fixP->fx_file, fixP->fx_line,
22594 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
495bde8e 22595 (unsigned long) addend_abs);
4962c51a
MS
22596
22597 /* Extract the instruction. */
22598 insn = md_chars_to_number (buf, INSN_SIZE);
22599
22600 /* If the addend is negative, clear bit 23 of the instruction.
22601 Otherwise set it. */
22602 if (value < 0)
22603 insn &= ~(1 << 23);
22604 else
22605 insn |= 1 << 23;
22606
22607 /* Place the absolute value of the addend into the first 12 bits
22608 of the instruction. */
22609 insn &= 0xfffff000;
22610 insn |= addend_abs;
5f4273c7
NC
22611
22612 /* Update the instruction. */
4962c51a
MS
22613 md_number_to_chars (buf, insn, INSN_SIZE);
22614 }
22615 break;
22616
22617 case BFD_RELOC_ARM_LDRS_PC_G0:
22618 case BFD_RELOC_ARM_LDRS_PC_G1:
22619 case BFD_RELOC_ARM_LDRS_PC_G2:
22620 case BFD_RELOC_ARM_LDRS_SB_G0:
22621 case BFD_RELOC_ARM_LDRS_SB_G1:
22622 case BFD_RELOC_ARM_LDRS_SB_G2:
9c2799c2 22623 gas_assert (!fixP->fx_done);
4962c51a
MS
22624 if (!seg->use_rela_p)
22625 {
22626 bfd_vma insn;
22627 bfd_vma addend_abs = abs (value);
22628
22629 /* Check that the absolute value of the addend can be
22630 encoded in 8 bits. */
22631 if (addend_abs >= 0x100)
22632 as_bad_where (fixP->fx_file, fixP->fx_line,
22633 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
495bde8e 22634 (unsigned long) addend_abs);
4962c51a
MS
22635
22636 /* Extract the instruction. */
22637 insn = md_chars_to_number (buf, INSN_SIZE);
22638
22639 /* If the addend is negative, clear bit 23 of the instruction.
22640 Otherwise set it. */
22641 if (value < 0)
22642 insn &= ~(1 << 23);
22643 else
22644 insn |= 1 << 23;
22645
22646 /* Place the first four bits of the absolute value of the addend
22647 into the first 4 bits of the instruction, and the remaining
22648 four into bits 8 .. 11. */
22649 insn &= 0xfffff0f0;
22650 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
5f4273c7
NC
22651
22652 /* Update the instruction. */
4962c51a
MS
22653 md_number_to_chars (buf, insn, INSN_SIZE);
22654 }
22655 break;
22656
22657 case BFD_RELOC_ARM_LDC_PC_G0:
22658 case BFD_RELOC_ARM_LDC_PC_G1:
22659 case BFD_RELOC_ARM_LDC_PC_G2:
22660 case BFD_RELOC_ARM_LDC_SB_G0:
22661 case BFD_RELOC_ARM_LDC_SB_G1:
22662 case BFD_RELOC_ARM_LDC_SB_G2:
9c2799c2 22663 gas_assert (!fixP->fx_done);
4962c51a
MS
22664 if (!seg->use_rela_p)
22665 {
22666 bfd_vma insn;
22667 bfd_vma addend_abs = abs (value);
22668
22669 /* Check that the absolute value of the addend is a multiple of
22670 four and, when divided by four, fits in 8 bits. */
22671 if (addend_abs & 0x3)
22672 as_bad_where (fixP->fx_file, fixP->fx_line,
22673 _("bad offset 0x%08lX (must be word-aligned)"),
495bde8e 22674 (unsigned long) addend_abs);
4962c51a
MS
22675
22676 if ((addend_abs >> 2) > 0xff)
22677 as_bad_where (fixP->fx_file, fixP->fx_line,
22678 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
495bde8e 22679 (unsigned long) addend_abs);
4962c51a
MS
22680
22681 /* Extract the instruction. */
22682 insn = md_chars_to_number (buf, INSN_SIZE);
22683
22684 /* If the addend is negative, clear bit 23 of the instruction.
22685 Otherwise set it. */
22686 if (value < 0)
22687 insn &= ~(1 << 23);
22688 else
22689 insn |= 1 << 23;
22690
22691 /* Place the addend (divided by four) into the first eight
22692 bits of the instruction. */
22693 insn &= 0xfffffff0;
22694 insn |= addend_abs >> 2;
5f4273c7
NC
22695
22696 /* Update the instruction. */
4962c51a
MS
22697 md_number_to_chars (buf, insn, INSN_SIZE);
22698 }
22699 break;
22700
845b51d6
PB
22701 case BFD_RELOC_ARM_V4BX:
22702 /* This will need to go in the object file. */
22703 fixP->fx_done = 0;
22704 break;
22705
c19d1205
ZW
22706 case BFD_RELOC_UNUSED:
22707 default:
22708 as_bad_where (fixP->fx_file, fixP->fx_line,
22709 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
22710 }
6c43fab6
RE
22711}
22712
c19d1205
ZW
22713/* Translate internal representation of relocation info to BFD target
22714 format. */
a737bd4d 22715
c19d1205 22716arelent *
00a97672 22717tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 22718{
c19d1205
ZW
22719 arelent * reloc;
22720 bfd_reloc_code_real_type code;
a737bd4d 22721
21d799b5 22722 reloc = (arelent *) xmalloc (sizeof (arelent));
a737bd4d 22723
21d799b5 22724 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
c19d1205
ZW
22725 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
22726 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 22727
2fc8bdac 22728 if (fixp->fx_pcrel)
00a97672
RS
22729 {
22730 if (section->use_rela_p)
22731 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
22732 else
22733 fixp->fx_offset = reloc->address;
22734 }
c19d1205 22735 reloc->addend = fixp->fx_offset;
a737bd4d 22736
c19d1205 22737 switch (fixp->fx_r_type)
a737bd4d 22738 {
c19d1205
ZW
22739 case BFD_RELOC_8:
22740 if (fixp->fx_pcrel)
22741 {
22742 code = BFD_RELOC_8_PCREL;
22743 break;
22744 }
a737bd4d 22745
c19d1205
ZW
22746 case BFD_RELOC_16:
22747 if (fixp->fx_pcrel)
22748 {
22749 code = BFD_RELOC_16_PCREL;
22750 break;
22751 }
6c43fab6 22752
c19d1205
ZW
22753 case BFD_RELOC_32:
22754 if (fixp->fx_pcrel)
22755 {
22756 code = BFD_RELOC_32_PCREL;
22757 break;
22758 }
a737bd4d 22759
b6895b4f
PB
22760 case BFD_RELOC_ARM_MOVW:
22761 if (fixp->fx_pcrel)
22762 {
22763 code = BFD_RELOC_ARM_MOVW_PCREL;
22764 break;
22765 }
22766
22767 case BFD_RELOC_ARM_MOVT:
22768 if (fixp->fx_pcrel)
22769 {
22770 code = BFD_RELOC_ARM_MOVT_PCREL;
22771 break;
22772 }
22773
22774 case BFD_RELOC_ARM_THUMB_MOVW:
22775 if (fixp->fx_pcrel)
22776 {
22777 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
22778 break;
22779 }
22780
22781 case BFD_RELOC_ARM_THUMB_MOVT:
22782 if (fixp->fx_pcrel)
22783 {
22784 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
22785 break;
22786 }
22787
c19d1205
ZW
22788 case BFD_RELOC_NONE:
22789 case BFD_RELOC_ARM_PCREL_BRANCH:
22790 case BFD_RELOC_ARM_PCREL_BLX:
22791 case BFD_RELOC_RVA:
22792 case BFD_RELOC_THUMB_PCREL_BRANCH7:
22793 case BFD_RELOC_THUMB_PCREL_BRANCH9:
22794 case BFD_RELOC_THUMB_PCREL_BRANCH12:
22795 case BFD_RELOC_THUMB_PCREL_BRANCH20:
22796 case BFD_RELOC_THUMB_PCREL_BRANCH23:
22797 case BFD_RELOC_THUMB_PCREL_BRANCH25:
c19d1205
ZW
22798 case BFD_RELOC_VTABLE_ENTRY:
22799 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
22800#ifdef TE_PE
22801 case BFD_RELOC_32_SECREL:
22802#endif
c19d1205
ZW
22803 code = fixp->fx_r_type;
22804 break;
a737bd4d 22805
00adf2d4
JB
22806 case BFD_RELOC_THUMB_PCREL_BLX:
22807#ifdef OBJ_ELF
22808 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
22809 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
22810 else
22811#endif
22812 code = BFD_RELOC_THUMB_PCREL_BLX;
22813 break;
22814
c19d1205
ZW
22815 case BFD_RELOC_ARM_LITERAL:
22816 case BFD_RELOC_ARM_HWLITERAL:
22817 /* If this is called then the a literal has
22818 been referenced across a section boundary. */
22819 as_bad_where (fixp->fx_file, fixp->fx_line,
22820 _("literal referenced across section boundary"));
22821 return NULL;
a737bd4d 22822
c19d1205 22823#ifdef OBJ_ELF
0855e32b
NS
22824 case BFD_RELOC_ARM_TLS_CALL:
22825 case BFD_RELOC_ARM_THM_TLS_CALL:
22826 case BFD_RELOC_ARM_TLS_DESCSEQ:
22827 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
c19d1205
ZW
22828 case BFD_RELOC_ARM_GOT32:
22829 case BFD_RELOC_ARM_GOTOFF:
b43420e6 22830 case BFD_RELOC_ARM_GOT_PREL:
c19d1205
ZW
22831 case BFD_RELOC_ARM_PLT32:
22832 case BFD_RELOC_ARM_TARGET1:
22833 case BFD_RELOC_ARM_ROSEGREL32:
22834 case BFD_RELOC_ARM_SBREL32:
22835 case BFD_RELOC_ARM_PREL31:
22836 case BFD_RELOC_ARM_TARGET2:
22837 case BFD_RELOC_ARM_TLS_LE32:
22838 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
22839 case BFD_RELOC_ARM_PCREL_CALL:
22840 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
22841 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22842 case BFD_RELOC_ARM_ALU_PC_G0:
22843 case BFD_RELOC_ARM_ALU_PC_G1_NC:
22844 case BFD_RELOC_ARM_ALU_PC_G1:
22845 case BFD_RELOC_ARM_ALU_PC_G2:
22846 case BFD_RELOC_ARM_LDR_PC_G0:
22847 case BFD_RELOC_ARM_LDR_PC_G1:
22848 case BFD_RELOC_ARM_LDR_PC_G2:
22849 case BFD_RELOC_ARM_LDRS_PC_G0:
22850 case BFD_RELOC_ARM_LDRS_PC_G1:
22851 case BFD_RELOC_ARM_LDRS_PC_G2:
22852 case BFD_RELOC_ARM_LDC_PC_G0:
22853 case BFD_RELOC_ARM_LDC_PC_G1:
22854 case BFD_RELOC_ARM_LDC_PC_G2:
22855 case BFD_RELOC_ARM_ALU_SB_G0_NC:
22856 case BFD_RELOC_ARM_ALU_SB_G0:
22857 case BFD_RELOC_ARM_ALU_SB_G1_NC:
22858 case BFD_RELOC_ARM_ALU_SB_G1:
22859 case BFD_RELOC_ARM_ALU_SB_G2:
22860 case BFD_RELOC_ARM_LDR_SB_G0:
22861 case BFD_RELOC_ARM_LDR_SB_G1:
22862 case BFD_RELOC_ARM_LDR_SB_G2:
22863 case BFD_RELOC_ARM_LDRS_SB_G0:
22864 case BFD_RELOC_ARM_LDRS_SB_G1:
22865 case BFD_RELOC_ARM_LDRS_SB_G2:
22866 case BFD_RELOC_ARM_LDC_SB_G0:
22867 case BFD_RELOC_ARM_LDC_SB_G1:
22868 case BFD_RELOC_ARM_LDC_SB_G2:
845b51d6 22869 case BFD_RELOC_ARM_V4BX:
c19d1205
ZW
22870 code = fixp->fx_r_type;
22871 break;
a737bd4d 22872
0855e32b 22873 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22874 case BFD_RELOC_ARM_TLS_GD32:
22875 case BFD_RELOC_ARM_TLS_IE32:
22876 case BFD_RELOC_ARM_TLS_LDM32:
22877 /* BFD will include the symbol's address in the addend.
22878 But we don't want that, so subtract it out again here. */
22879 if (!S_IS_COMMON (fixp->fx_addsy))
22880 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
22881 code = fixp->fx_r_type;
22882 break;
22883#endif
a737bd4d 22884
c19d1205
ZW
22885 case BFD_RELOC_ARM_IMMEDIATE:
22886 as_bad_where (fixp->fx_file, fixp->fx_line,
22887 _("internal relocation (type: IMMEDIATE) not fixed up"));
22888 return NULL;
a737bd4d 22889
c19d1205
ZW
22890 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
22891 as_bad_where (fixp->fx_file, fixp->fx_line,
22892 _("ADRL used for a symbol not defined in the same file"));
22893 return NULL;
a737bd4d 22894
c19d1205 22895 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
22896 if (section->use_rela_p)
22897 {
22898 code = fixp->fx_r_type;
22899 break;
22900 }
22901
c19d1205
ZW
22902 if (fixp->fx_addsy != NULL
22903 && !S_IS_DEFINED (fixp->fx_addsy)
22904 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 22905 {
c19d1205
ZW
22906 as_bad_where (fixp->fx_file, fixp->fx_line,
22907 _("undefined local label `%s'"),
22908 S_GET_NAME (fixp->fx_addsy));
22909 return NULL;
a737bd4d
NC
22910 }
22911
c19d1205
ZW
22912 as_bad_where (fixp->fx_file, fixp->fx_line,
22913 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
22914 return NULL;
a737bd4d 22915
c19d1205
ZW
22916 default:
22917 {
22918 char * type;
6c43fab6 22919
c19d1205
ZW
22920 switch (fixp->fx_r_type)
22921 {
22922 case BFD_RELOC_NONE: type = "NONE"; break;
22923 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
22924 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 22925 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
22926 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
22927 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
22928 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
db187cb9 22929 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
8f06b2d8 22930 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
22931 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
22932 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
22933 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
22934 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
22935 default: type = _("<unknown>"); break;
22936 }
22937 as_bad_where (fixp->fx_file, fixp->fx_line,
22938 _("cannot represent %s relocation in this object file format"),
22939 type);
22940 return NULL;
22941 }
a737bd4d 22942 }
6c43fab6 22943
c19d1205
ZW
22944#ifdef OBJ_ELF
22945 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
22946 && GOT_symbol
22947 && fixp->fx_addsy == GOT_symbol)
22948 {
22949 code = BFD_RELOC_ARM_GOTPC;
22950 reloc->addend = fixp->fx_offset = reloc->address;
22951 }
22952#endif
6c43fab6 22953
c19d1205 22954 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 22955
c19d1205
ZW
22956 if (reloc->howto == NULL)
22957 {
22958 as_bad_where (fixp->fx_file, fixp->fx_line,
22959 _("cannot represent %s relocation in this object file format"),
22960 bfd_get_reloc_code_name (code));
22961 return NULL;
22962 }
6c43fab6 22963
c19d1205
ZW
22964 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
22965 vtable entry to be used in the relocation's section offset. */
22966 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
22967 reloc->address = fixp->fx_offset;
6c43fab6 22968
c19d1205 22969 return reloc;
6c43fab6
RE
22970}
22971
c19d1205 22972/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 22973
c19d1205
ZW
22974void
22975cons_fix_new_arm (fragS * frag,
22976 int where,
22977 int size,
22978 expressionS * exp)
6c43fab6 22979{
c19d1205
ZW
22980 bfd_reloc_code_real_type type;
22981 int pcrel = 0;
6c43fab6 22982
c19d1205
ZW
22983 /* Pick a reloc.
22984 FIXME: @@ Should look at CPU word size. */
22985 switch (size)
22986 {
22987 case 1:
22988 type = BFD_RELOC_8;
22989 break;
22990 case 2:
22991 type = BFD_RELOC_16;
22992 break;
22993 case 4:
22994 default:
22995 type = BFD_RELOC_32;
22996 break;
22997 case 8:
22998 type = BFD_RELOC_64;
22999 break;
23000 }
6c43fab6 23001
f0927246
NC
23002#ifdef TE_PE
23003 if (exp->X_op == O_secrel)
23004 {
23005 exp->X_op = O_symbol;
23006 type = BFD_RELOC_32_SECREL;
23007 }
23008#endif
23009
c19d1205
ZW
23010 fix_new_exp (frag, where, (int) size, exp, pcrel, type);
23011}
6c43fab6 23012
4343666d 23013#if defined (OBJ_COFF)
c19d1205
ZW
23014void
23015arm_validate_fix (fixS * fixP)
6c43fab6 23016{
c19d1205
ZW
23017 /* If the destination of the branch is a defined symbol which does not have
23018 the THUMB_FUNC attribute, then we must be calling a function which has
23019 the (interfacearm) attribute. We look for the Thumb entry point to that
23020 function and change the branch to refer to that function instead. */
23021 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
23022 && fixP->fx_addsy != NULL
23023 && S_IS_DEFINED (fixP->fx_addsy)
23024 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 23025 {
c19d1205 23026 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 23027 }
c19d1205
ZW
23028}
23029#endif
6c43fab6 23030
267bf995 23031
c19d1205
ZW
23032int
23033arm_force_relocation (struct fix * fixp)
23034{
23035#if defined (OBJ_COFF) && defined (TE_PE)
23036 if (fixp->fx_r_type == BFD_RELOC_RVA)
23037 return 1;
23038#endif
6c43fab6 23039
267bf995
RR
23040 /* In case we have a call or a branch to a function in ARM ISA mode from
23041 a thumb function or vice-versa force the relocation. These relocations
23042 are cleared off for some cores that might have blx and simple transformations
23043 are possible. */
23044
23045#ifdef OBJ_ELF
23046 switch (fixp->fx_r_type)
23047 {
23048 case BFD_RELOC_ARM_PCREL_JUMP:
23049 case BFD_RELOC_ARM_PCREL_CALL:
23050 case BFD_RELOC_THUMB_PCREL_BLX:
23051 if (THUMB_IS_FUNC (fixp->fx_addsy))
23052 return 1;
23053 break;
23054
23055 case BFD_RELOC_ARM_PCREL_BLX:
23056 case BFD_RELOC_THUMB_PCREL_BRANCH25:
23057 case BFD_RELOC_THUMB_PCREL_BRANCH20:
23058 case BFD_RELOC_THUMB_PCREL_BRANCH23:
23059 if (ARM_IS_FUNC (fixp->fx_addsy))
23060 return 1;
23061 break;
23062
23063 default:
23064 break;
23065 }
23066#endif
23067
b5884301
PB
23068 /* Resolve these relocations even if the symbol is extern or weak.
23069 Technically this is probably wrong due to symbol preemption.
23070 In practice these relocations do not have enough range to be useful
23071 at dynamic link time, and some code (e.g. in the Linux kernel)
23072 expects these references to be resolved. */
c19d1205
ZW
23073 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
23074 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
b5884301 23075 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
0110f2b8 23076 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
b5884301
PB
23077 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
23078 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
23079 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
16805f35 23080 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
23081 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
23082 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
b5884301
PB
23083 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
23084 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
23085 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
23086 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
c19d1205 23087 return 0;
a737bd4d 23088
4962c51a
MS
23089 /* Always leave these relocations for the linker. */
23090 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23091 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23092 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
23093 return 1;
23094
f0291e4c
PB
23095 /* Always generate relocations against function symbols. */
23096 if (fixp->fx_r_type == BFD_RELOC_32
23097 && fixp->fx_addsy
23098 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
23099 return 1;
23100
c19d1205 23101 return generic_force_reloc (fixp);
404ff6b5
AH
23102}
23103
0ffdc86c 23104#if defined (OBJ_ELF) || defined (OBJ_COFF)
e28387c3
PB
23105/* Relocations against function names must be left unadjusted,
23106 so that the linker can use this information to generate interworking
23107 stubs. The MIPS version of this function
c19d1205
ZW
23108 also prevents relocations that are mips-16 specific, but I do not
23109 know why it does this.
404ff6b5 23110
c19d1205
ZW
23111 FIXME:
23112 There is one other problem that ought to be addressed here, but
23113 which currently is not: Taking the address of a label (rather
23114 than a function) and then later jumping to that address. Such
23115 addresses also ought to have their bottom bit set (assuming that
23116 they reside in Thumb code), but at the moment they will not. */
404ff6b5 23117
c19d1205
ZW
23118bfd_boolean
23119arm_fix_adjustable (fixS * fixP)
404ff6b5 23120{
c19d1205
ZW
23121 if (fixP->fx_addsy == NULL)
23122 return 1;
404ff6b5 23123
e28387c3
PB
23124 /* Preserve relocations against symbols with function type. */
23125 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
c921be7d 23126 return FALSE;
e28387c3 23127
c19d1205
ZW
23128 if (THUMB_IS_FUNC (fixP->fx_addsy)
23129 && fixP->fx_subsy == NULL)
c921be7d 23130 return FALSE;
a737bd4d 23131
c19d1205
ZW
23132 /* We need the symbol name for the VTABLE entries. */
23133 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
23134 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
c921be7d 23135 return FALSE;
404ff6b5 23136
c19d1205
ZW
23137 /* Don't allow symbols to be discarded on GOT related relocs. */
23138 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
23139 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
23140 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
23141 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
23142 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
23143 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
23144 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
23145 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
0855e32b
NS
23146 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
23147 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
23148 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
23149 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
23150 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
c19d1205 23151 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
c921be7d 23152 return FALSE;
a737bd4d 23153
4962c51a
MS
23154 /* Similarly for group relocations. */
23155 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23156 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23157 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
c921be7d 23158 return FALSE;
4962c51a 23159
79947c54
CD
23160 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
23161 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
23162 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
23163 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
23164 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
23165 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
23166 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
23167 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
23168 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
c921be7d 23169 return FALSE;
79947c54 23170
c921be7d 23171 return TRUE;
a737bd4d 23172}
0ffdc86c
NC
23173#endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
23174
23175#ifdef OBJ_ELF
404ff6b5 23176
c19d1205
ZW
23177const char *
23178elf32_arm_target_format (void)
404ff6b5 23179{
c19d1205
ZW
23180#ifdef TE_SYMBIAN
23181 return (target_big_endian
23182 ? "elf32-bigarm-symbian"
23183 : "elf32-littlearm-symbian");
23184#elif defined (TE_VXWORKS)
23185 return (target_big_endian
23186 ? "elf32-bigarm-vxworks"
23187 : "elf32-littlearm-vxworks");
b38cadfb
NC
23188#elif defined (TE_NACL)
23189 return (target_big_endian
23190 ? "elf32-bigarm-nacl"
23191 : "elf32-littlearm-nacl");
c19d1205
ZW
23192#else
23193 if (target_big_endian)
23194 return "elf32-bigarm";
23195 else
23196 return "elf32-littlearm";
23197#endif
404ff6b5
AH
23198}
23199
c19d1205
ZW
23200void
23201armelf_frob_symbol (symbolS * symp,
23202 int * puntp)
404ff6b5 23203{
c19d1205
ZW
23204 elf_frob_symbol (symp, puntp);
23205}
23206#endif
404ff6b5 23207
c19d1205 23208/* MD interface: Finalization. */
a737bd4d 23209
c19d1205
ZW
23210void
23211arm_cleanup (void)
23212{
23213 literal_pool * pool;
a737bd4d 23214
e07e6e58
NC
23215 /* Ensure that all the IT blocks are properly closed. */
23216 check_it_blocks_finished ();
23217
c19d1205
ZW
23218 for (pool = list_of_pools; pool; pool = pool->next)
23219 {
5f4273c7 23220 /* Put it at the end of the relevant section. */
c19d1205
ZW
23221 subseg_set (pool->section, pool->sub_section);
23222#ifdef OBJ_ELF
23223 arm_elf_change_section ();
23224#endif
23225 s_ltorg (0);
23226 }
404ff6b5
AH
23227}
23228
cd000bff
DJ
23229#ifdef OBJ_ELF
23230/* Remove any excess mapping symbols generated for alignment frags in
23231 SEC. We may have created a mapping symbol before a zero byte
23232 alignment; remove it if there's a mapping symbol after the
23233 alignment. */
23234static void
23235check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
23236 void *dummy ATTRIBUTE_UNUSED)
23237{
23238 segment_info_type *seginfo = seg_info (sec);
23239 fragS *fragp;
23240
23241 if (seginfo == NULL || seginfo->frchainP == NULL)
23242 return;
23243
23244 for (fragp = seginfo->frchainP->frch_root;
23245 fragp != NULL;
23246 fragp = fragp->fr_next)
23247 {
23248 symbolS *sym = fragp->tc_frag_data.last_map;
23249 fragS *next = fragp->fr_next;
23250
23251 /* Variable-sized frags have been converted to fixed size by
23252 this point. But if this was variable-sized to start with,
23253 there will be a fixed-size frag after it. So don't handle
23254 next == NULL. */
23255 if (sym == NULL || next == NULL)
23256 continue;
23257
23258 if (S_GET_VALUE (sym) < next->fr_address)
23259 /* Not at the end of this frag. */
23260 continue;
23261 know (S_GET_VALUE (sym) == next->fr_address);
23262
23263 do
23264 {
23265 if (next->tc_frag_data.first_map != NULL)
23266 {
23267 /* Next frag starts with a mapping symbol. Discard this
23268 one. */
23269 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23270 break;
23271 }
23272
23273 if (next->fr_next == NULL)
23274 {
23275 /* This mapping symbol is at the end of the section. Discard
23276 it. */
23277 know (next->fr_fix == 0 && next->fr_var == 0);
23278 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23279 break;
23280 }
23281
23282 /* As long as we have empty frags without any mapping symbols,
23283 keep looking. */
23284 /* If the next frag is non-empty and does not start with a
23285 mapping symbol, then this mapping symbol is required. */
23286 if (next->fr_address != next->fr_next->fr_address)
23287 break;
23288
23289 next = next->fr_next;
23290 }
23291 while (next != NULL);
23292 }
23293}
23294#endif
23295
c19d1205
ZW
23296/* Adjust the symbol table. This marks Thumb symbols as distinct from
23297 ARM ones. */
404ff6b5 23298
c19d1205
ZW
23299void
23300arm_adjust_symtab (void)
404ff6b5 23301{
c19d1205
ZW
23302#ifdef OBJ_COFF
23303 symbolS * sym;
404ff6b5 23304
c19d1205
ZW
23305 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
23306 {
23307 if (ARM_IS_THUMB (sym))
23308 {
23309 if (THUMB_IS_FUNC (sym))
23310 {
23311 /* Mark the symbol as a Thumb function. */
23312 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
23313 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
23314 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 23315
c19d1205
ZW
23316 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
23317 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
23318 else
23319 as_bad (_("%s: unexpected function type: %d"),
23320 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
23321 }
23322 else switch (S_GET_STORAGE_CLASS (sym))
23323 {
23324 case C_EXT:
23325 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
23326 break;
23327 case C_STAT:
23328 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
23329 break;
23330 case C_LABEL:
23331 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
23332 break;
23333 default:
23334 /* Do nothing. */
23335 break;
23336 }
23337 }
a737bd4d 23338
c19d1205
ZW
23339 if (ARM_IS_INTERWORK (sym))
23340 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 23341 }
c19d1205
ZW
23342#endif
23343#ifdef OBJ_ELF
23344 symbolS * sym;
23345 char bind;
404ff6b5 23346
c19d1205 23347 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 23348 {
c19d1205
ZW
23349 if (ARM_IS_THUMB (sym))
23350 {
23351 elf_symbol_type * elf_sym;
404ff6b5 23352
c19d1205
ZW
23353 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
23354 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 23355
b0796911
PB
23356 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
23357 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
23358 {
23359 /* If it's a .thumb_func, declare it as so,
23360 otherwise tag label as .code 16. */
23361 if (THUMB_IS_FUNC (sym))
35fc36a8
RS
23362 elf_sym->internal_elf_sym.st_target_internal
23363 = ST_BRANCH_TO_THUMB;
3ba67470 23364 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
c19d1205
ZW
23365 elf_sym->internal_elf_sym.st_info =
23366 ELF_ST_INFO (bind, STT_ARM_16BIT);
23367 }
23368 }
23369 }
cd000bff
DJ
23370
23371 /* Remove any overlapping mapping symbols generated by alignment frags. */
23372 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
709001e9
MM
23373 /* Now do generic ELF adjustments. */
23374 elf_adjust_symtab ();
c19d1205 23375#endif
404ff6b5
AH
23376}
23377
c19d1205 23378/* MD interface: Initialization. */
404ff6b5 23379
a737bd4d 23380static void
c19d1205 23381set_constant_flonums (void)
a737bd4d 23382{
c19d1205 23383 int i;
404ff6b5 23384
c19d1205
ZW
23385 for (i = 0; i < NUM_FLOAT_VALS; i++)
23386 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
23387 abort ();
a737bd4d 23388}
404ff6b5 23389
3e9e4fcf
JB
23390/* Auto-select Thumb mode if it's the only available instruction set for the
23391 given architecture. */
23392
23393static void
23394autoselect_thumb_from_cpu_variant (void)
23395{
23396 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
23397 opcode_select (16);
23398}
23399
c19d1205
ZW
23400void
23401md_begin (void)
a737bd4d 23402{
c19d1205
ZW
23403 unsigned mach;
23404 unsigned int i;
404ff6b5 23405
c19d1205
ZW
23406 if ( (arm_ops_hsh = hash_new ()) == NULL
23407 || (arm_cond_hsh = hash_new ()) == NULL
23408 || (arm_shift_hsh = hash_new ()) == NULL
23409 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 23410 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 23411 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
23412 || (arm_reloc_hsh = hash_new ()) == NULL
23413 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
23414 as_fatal (_("virtual memory exhausted"));
23415
23416 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
d3ce72d0 23417 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
c19d1205 23418 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
d3ce72d0 23419 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
c19d1205 23420 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
5a49b8ac 23421 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
c19d1205 23422 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 23423 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
62b3e311 23424 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
d3ce72d0
NC
23425 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
23426 (void *) (v7m_psrs + i));
c19d1205 23427 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
5a49b8ac 23428 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
62b3e311
PB
23429 for (i = 0;
23430 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
23431 i++)
d3ce72d0 23432 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
5a49b8ac 23433 (void *) (barrier_opt_names + i));
c19d1205 23434#ifdef OBJ_ELF
3da1d841
NC
23435 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
23436 {
23437 struct reloc_entry * entry = reloc_names + i;
23438
23439 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
23440 /* This makes encode_branch() use the EABI versions of this relocation. */
23441 entry->reloc = BFD_RELOC_UNUSED;
23442
23443 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
23444 }
c19d1205
ZW
23445#endif
23446
23447 set_constant_flonums ();
404ff6b5 23448
c19d1205
ZW
23449 /* Set the cpu variant based on the command-line options. We prefer
23450 -mcpu= over -march= if both are set (as for GCC); and we prefer
23451 -mfpu= over any other way of setting the floating point unit.
23452 Use of legacy options with new options are faulted. */
e74cfd16 23453 if (legacy_cpu)
404ff6b5 23454 {
e74cfd16 23455 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
23456 as_bad (_("use of old and new-style options to set CPU type"));
23457
23458 mcpu_cpu_opt = legacy_cpu;
404ff6b5 23459 }
e74cfd16 23460 else if (!mcpu_cpu_opt)
c19d1205 23461 mcpu_cpu_opt = march_cpu_opt;
404ff6b5 23462
e74cfd16 23463 if (legacy_fpu)
c19d1205 23464 {
e74cfd16 23465 if (mfpu_opt)
c19d1205 23466 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
23467
23468 mfpu_opt = legacy_fpu;
23469 }
e74cfd16 23470 else if (!mfpu_opt)
03b1477f 23471 {
45eb4c1b
NS
23472#if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
23473 || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
23474 /* Some environments specify a default FPU. If they don't, infer it
23475 from the processor. */
e74cfd16 23476 if (mcpu_fpu_opt)
03b1477f
RE
23477 mfpu_opt = mcpu_fpu_opt;
23478 else
23479 mfpu_opt = march_fpu_opt;
39c2da32 23480#else
e74cfd16 23481 mfpu_opt = &fpu_default;
39c2da32 23482#endif
03b1477f
RE
23483 }
23484
e74cfd16 23485 if (!mfpu_opt)
03b1477f 23486 {
493cb6ef 23487 if (mcpu_cpu_opt != NULL)
e74cfd16 23488 mfpu_opt = &fpu_default;
493cb6ef 23489 else if (mcpu_fpu_opt != NULL && ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
e74cfd16 23490 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 23491 else
e74cfd16 23492 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
23493 }
23494
ee065d83 23495#ifdef CPU_DEFAULT
e74cfd16 23496 if (!mcpu_cpu_opt)
ee065d83 23497 {
e74cfd16
PB
23498 mcpu_cpu_opt = &cpu_default;
23499 selected_cpu = cpu_default;
ee065d83 23500 }
e74cfd16
PB
23501#else
23502 if (mcpu_cpu_opt)
23503 selected_cpu = *mcpu_cpu_opt;
ee065d83 23504 else
e74cfd16 23505 mcpu_cpu_opt = &arm_arch_any;
ee065d83 23506#endif
03b1477f 23507
e74cfd16 23508 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
03b1477f 23509
3e9e4fcf
JB
23510 autoselect_thumb_from_cpu_variant ();
23511
e74cfd16 23512 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 23513
f17c130b 23514#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 23515 {
7cc69913
NC
23516 unsigned int flags = 0;
23517
23518#if defined OBJ_ELF
23519 flags = meabi_flags;
d507cf36
PB
23520
23521 switch (meabi_flags)
33a392fb 23522 {
d507cf36 23523 case EF_ARM_EABI_UNKNOWN:
7cc69913 23524#endif
d507cf36
PB
23525 /* Set the flags in the private structure. */
23526 if (uses_apcs_26) flags |= F_APCS26;
23527 if (support_interwork) flags |= F_INTERWORK;
23528 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 23529 if (pic_code) flags |= F_PIC;
e74cfd16 23530 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
23531 flags |= F_SOFT_FLOAT;
23532
d507cf36
PB
23533 switch (mfloat_abi_opt)
23534 {
23535 case ARM_FLOAT_ABI_SOFT:
23536 case ARM_FLOAT_ABI_SOFTFP:
23537 flags |= F_SOFT_FLOAT;
23538 break;
33a392fb 23539
d507cf36
PB
23540 case ARM_FLOAT_ABI_HARD:
23541 if (flags & F_SOFT_FLOAT)
23542 as_bad (_("hard-float conflicts with specified fpu"));
23543 break;
23544 }
03b1477f 23545
e74cfd16
PB
23546 /* Using pure-endian doubles (even if soft-float). */
23547 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 23548 flags |= F_VFP_FLOAT;
f17c130b 23549
fde78edd 23550#if defined OBJ_ELF
e74cfd16 23551 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 23552 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
23553 break;
23554
8cb51566 23555 case EF_ARM_EABI_VER4:
3a4a14e9 23556 case EF_ARM_EABI_VER5:
c19d1205 23557 /* No additional flags to set. */
d507cf36
PB
23558 break;
23559
23560 default:
23561 abort ();
23562 }
7cc69913 23563#endif
b99bd4ef
NC
23564 bfd_set_private_flags (stdoutput, flags);
23565
23566 /* We have run out flags in the COFF header to encode the
23567 status of ATPCS support, so instead we create a dummy,
c19d1205 23568 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
23569 if (atpcs)
23570 {
23571 asection * sec;
23572
23573 sec = bfd_make_section (stdoutput, ".arm.atpcs");
23574
23575 if (sec != NULL)
23576 {
23577 bfd_set_section_flags
23578 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
23579 bfd_set_section_size (stdoutput, sec, 0);
23580 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
23581 }
23582 }
7cc69913 23583 }
f17c130b 23584#endif
b99bd4ef
NC
23585
23586 /* Record the CPU type as well. */
2d447fca
JM
23587 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
23588 mach = bfd_mach_arm_iWMMXt2;
23589 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 23590 mach = bfd_mach_arm_iWMMXt;
e74cfd16 23591 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 23592 mach = bfd_mach_arm_XScale;
e74cfd16 23593 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 23594 mach = bfd_mach_arm_ep9312;
e74cfd16 23595 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 23596 mach = bfd_mach_arm_5TE;
e74cfd16 23597 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 23598 {
e74cfd16 23599 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
23600 mach = bfd_mach_arm_5T;
23601 else
23602 mach = bfd_mach_arm_5;
23603 }
e74cfd16 23604 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 23605 {
e74cfd16 23606 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
23607 mach = bfd_mach_arm_4T;
23608 else
23609 mach = bfd_mach_arm_4;
23610 }
e74cfd16 23611 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 23612 mach = bfd_mach_arm_3M;
e74cfd16
PB
23613 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
23614 mach = bfd_mach_arm_3;
23615 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
23616 mach = bfd_mach_arm_2a;
23617 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
23618 mach = bfd_mach_arm_2;
23619 else
23620 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
23621
23622 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
23623}
23624
c19d1205 23625/* Command line processing. */
b99bd4ef 23626
c19d1205
ZW
23627/* md_parse_option
23628 Invocation line includes a switch not recognized by the base assembler.
23629 See if it's a processor-specific option.
b99bd4ef 23630
c19d1205
ZW
23631 This routine is somewhat complicated by the need for backwards
23632 compatibility (since older releases of gcc can't be changed).
23633 The new options try to make the interface as compatible as
23634 possible with GCC.
b99bd4ef 23635
c19d1205 23636 New options (supported) are:
b99bd4ef 23637
c19d1205
ZW
23638 -mcpu=<cpu name> Assemble for selected processor
23639 -march=<architecture name> Assemble for selected architecture
23640 -mfpu=<fpu architecture> Assemble for selected FPU.
23641 -EB/-mbig-endian Big-endian
23642 -EL/-mlittle-endian Little-endian
23643 -k Generate PIC code
23644 -mthumb Start in Thumb mode
23645 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 23646
278df34e 23647 -m[no-]warn-deprecated Warn about deprecated features
267bf995 23648
c19d1205 23649 For now we will also provide support for:
b99bd4ef 23650
c19d1205
ZW
23651 -mapcs-32 32-bit Program counter
23652 -mapcs-26 26-bit Program counter
23653 -macps-float Floats passed in FP registers
23654 -mapcs-reentrant Reentrant code
23655 -matpcs
23656 (sometime these will probably be replaced with -mapcs=<list of options>
23657 and -matpcs=<list of options>)
b99bd4ef 23658
c19d1205
ZW
23659 The remaining options are only supported for back-wards compatibility.
23660 Cpu variants, the arm part is optional:
23661 -m[arm]1 Currently not supported.
23662 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
23663 -m[arm]3 Arm 3 processor
23664 -m[arm]6[xx], Arm 6 processors
23665 -m[arm]7[xx][t][[d]m] Arm 7 processors
23666 -m[arm]8[10] Arm 8 processors
23667 -m[arm]9[20][tdmi] Arm 9 processors
23668 -mstrongarm[110[0]] StrongARM processors
23669 -mxscale XScale processors
23670 -m[arm]v[2345[t[e]]] Arm architectures
23671 -mall All (except the ARM1)
23672 FP variants:
23673 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
23674 -mfpe-old (No float load/store multiples)
23675 -mvfpxd VFP Single precision
23676 -mvfp All VFP
23677 -mno-fpu Disable all floating point instructions
b99bd4ef 23678
c19d1205
ZW
23679 The following CPU names are recognized:
23680 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
23681 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
23682 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
23683 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
23684 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
23685 arm10t arm10e, arm1020t, arm1020e, arm10200e,
23686 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 23687
c19d1205 23688 */
b99bd4ef 23689
c19d1205 23690const char * md_shortopts = "m:k";
b99bd4ef 23691
c19d1205
ZW
23692#ifdef ARM_BI_ENDIAN
23693#define OPTION_EB (OPTION_MD_BASE + 0)
23694#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 23695#else
c19d1205
ZW
23696#if TARGET_BYTES_BIG_ENDIAN
23697#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 23698#else
c19d1205
ZW
23699#define OPTION_EL (OPTION_MD_BASE + 1)
23700#endif
b99bd4ef 23701#endif
845b51d6 23702#define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
b99bd4ef 23703
c19d1205 23704struct option md_longopts[] =
b99bd4ef 23705{
c19d1205
ZW
23706#ifdef OPTION_EB
23707 {"EB", no_argument, NULL, OPTION_EB},
23708#endif
23709#ifdef OPTION_EL
23710 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 23711#endif
845b51d6 23712 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
c19d1205
ZW
23713 {NULL, no_argument, NULL, 0}
23714};
b99bd4ef 23715
c19d1205 23716size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 23717
c19d1205 23718struct arm_option_table
b99bd4ef 23719{
c19d1205
ZW
23720 char *option; /* Option name to match. */
23721 char *help; /* Help information. */
23722 int *var; /* Variable to change. */
23723 int value; /* What to change it to. */
23724 char *deprecated; /* If non-null, print this message. */
23725};
b99bd4ef 23726
c19d1205
ZW
23727struct arm_option_table arm_opts[] =
23728{
23729 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
23730 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
23731 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
23732 &support_interwork, 1, NULL},
23733 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
23734 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
23735 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
23736 1, NULL},
23737 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
23738 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
23739 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
23740 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
23741 NULL},
b99bd4ef 23742
c19d1205
ZW
23743 /* These are recognized by the assembler, but have no affect on code. */
23744 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
23745 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
278df34e
NS
23746
23747 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
23748 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
23749 &warn_on_deprecated, 0, NULL},
e74cfd16
PB
23750 {NULL, NULL, NULL, 0, NULL}
23751};
23752
23753struct arm_legacy_option_table
23754{
23755 char *option; /* Option name to match. */
23756 const arm_feature_set **var; /* Variable to change. */
23757 const arm_feature_set value; /* What to change it to. */
23758 char *deprecated; /* If non-null, print this message. */
23759};
b99bd4ef 23760
e74cfd16
PB
23761const struct arm_legacy_option_table arm_legacy_opts[] =
23762{
c19d1205
ZW
23763 /* DON'T add any new processors to this list -- we want the whole list
23764 to go away... Add them to the processors table instead. */
e74cfd16
PB
23765 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
23766 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
23767 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
23768 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
23769 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
23770 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
23771 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
23772 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
23773 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
23774 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
23775 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
23776 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
23777 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
23778 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
23779 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
23780 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
23781 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
23782 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
23783 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
23784 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
23785 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
23786 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
23787 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
23788 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
23789 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
23790 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
23791 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
23792 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
23793 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
23794 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
23795 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
23796 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
23797 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
23798 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
23799 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
23800 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
23801 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
23802 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
23803 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
23804 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
23805 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
23806 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
23807 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
23808 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
23809 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
23810 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
23811 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23812 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23813 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23814 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23815 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
23816 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
23817 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
23818 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
23819 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
23820 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
23821 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
23822 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
23823 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
23824 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
23825 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
23826 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
23827 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
23828 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
23829 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
23830 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
23831 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
23832 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
23833 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
23834 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23835 N_("use -mcpu=strongarm110")},
e74cfd16 23836 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23837 N_("use -mcpu=strongarm1100")},
e74cfd16 23838 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23839 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
23840 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
23841 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
23842 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 23843
c19d1205 23844 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
23845 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
23846 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
23847 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
23848 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
23849 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
23850 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
23851 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
23852 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
23853 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
23854 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
23855 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
23856 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
23857 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
23858 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
23859 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
23860 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
23861 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
23862 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 23863
c19d1205 23864 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
23865 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
23866 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
23867 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
23868 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 23869 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 23870
e74cfd16 23871 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 23872};
7ed4c4c5 23873
c19d1205 23874struct arm_cpu_option_table
7ed4c4c5 23875{
c19d1205 23876 char *name;
f3bad469 23877 size_t name_len;
e74cfd16 23878 const arm_feature_set value;
c19d1205
ZW
23879 /* For some CPUs we assume an FPU unless the user explicitly sets
23880 -mfpu=... */
e74cfd16 23881 const arm_feature_set default_fpu;
ee065d83
PB
23882 /* The canonical name of the CPU, or NULL to use NAME converted to upper
23883 case. */
23884 const char *canonical_name;
c19d1205 23885};
7ed4c4c5 23886
c19d1205
ZW
23887/* This list should, at a minimum, contain all the cpu names
23888 recognized by GCC. */
f3bad469 23889#define ARM_CPU_OPT(N, V, DF, CN) { N, sizeof (N) - 1, V, DF, CN }
e74cfd16 23890static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 23891{
f3bad469
MGD
23892 ARM_CPU_OPT ("all", ARM_ANY, FPU_ARCH_FPA, NULL),
23893 ARM_CPU_OPT ("arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL),
23894 ARM_CPU_OPT ("arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL),
23895 ARM_CPU_OPT ("arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
23896 ARM_CPU_OPT ("arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
23897 ARM_CPU_OPT ("arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23898 ARM_CPU_OPT ("arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23899 ARM_CPU_OPT ("arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23900 ARM_CPU_OPT ("arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23901 ARM_CPU_OPT ("arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23902 ARM_CPU_OPT ("arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23903 ARM_CPU_OPT ("arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23904 ARM_CPU_OPT ("arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23905 ARM_CPU_OPT ("arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23906 ARM_CPU_OPT ("arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23907 ARM_CPU_OPT ("arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23908 ARM_CPU_OPT ("arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23909 ARM_CPU_OPT ("arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23910 ARM_CPU_OPT ("arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23911 ARM_CPU_OPT ("arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23912 ARM_CPU_OPT ("arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23913 ARM_CPU_OPT ("arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23914 ARM_CPU_OPT ("arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23915 ARM_CPU_OPT ("arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23916 ARM_CPU_OPT ("arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23917 ARM_CPU_OPT ("arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23918 ARM_CPU_OPT ("arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23919 ARM_CPU_OPT ("arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23920 ARM_CPU_OPT ("arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23921 ARM_CPU_OPT ("arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23922 ARM_CPU_OPT ("arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23923 ARM_CPU_OPT ("arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23924 ARM_CPU_OPT ("arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23925 ARM_CPU_OPT ("strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23926 ARM_CPU_OPT ("strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23927 ARM_CPU_OPT ("strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23928 ARM_CPU_OPT ("strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23929 ARM_CPU_OPT ("strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23930 ARM_CPU_OPT ("arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23931 ARM_CPU_OPT ("arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"),
23932 ARM_CPU_OPT ("arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23933 ARM_CPU_OPT ("arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23934 ARM_CPU_OPT ("arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23935 ARM_CPU_OPT ("arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23936 ARM_CPU_OPT ("fa526", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23937 ARM_CPU_OPT ("fa626", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
c19d1205
ZW
23938 /* For V5 or later processors we default to using VFP; but the user
23939 should really set the FPU type explicitly. */
f3bad469
MGD
23940 ARM_CPU_OPT ("arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23941 ARM_CPU_OPT ("arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23942 ARM_CPU_OPT ("arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23943 ARM_CPU_OPT ("arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23944 ARM_CPU_OPT ("arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23945 ARM_CPU_OPT ("arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23946 ARM_CPU_OPT ("arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"),
23947 ARM_CPU_OPT ("arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23948 ARM_CPU_OPT ("arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23949 ARM_CPU_OPT ("arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"),
23950 ARM_CPU_OPT ("arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23951 ARM_CPU_OPT ("arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23952 ARM_CPU_OPT ("arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23953 ARM_CPU_OPT ("arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23954 ARM_CPU_OPT ("arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23955 ARM_CPU_OPT ("arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"),
23956 ARM_CPU_OPT ("arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23957 ARM_CPU_OPT ("arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23958 ARM_CPU_OPT ("arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23959 ARM_CPU_OPT ("arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2,
23960 "ARM1026EJ-S"),
23961 ARM_CPU_OPT ("arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23962 ARM_CPU_OPT ("fa606te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23963 ARM_CPU_OPT ("fa616te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23964 ARM_CPU_OPT ("fa626te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23965 ARM_CPU_OPT ("fmp626", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23966 ARM_CPU_OPT ("fa726te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23967 ARM_CPU_OPT ("arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"),
23968 ARM_CPU_OPT ("arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL),
23969 ARM_CPU_OPT ("arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2,
23970 "ARM1136JF-S"),
23971 ARM_CPU_OPT ("arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL),
23972 ARM_CPU_OPT ("mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, "MPCore"),
23973 ARM_CPU_OPT ("mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, "MPCore"),
23974 ARM_CPU_OPT ("arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL),
23975 ARM_CPU_OPT ("arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL),
23976 ARM_CPU_OPT ("arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL),
23977 ARM_CPU_OPT ("arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL),
23978 ARM_CPU_OPT ("cortex-a5", ARM_ARCH_V7A_MP_SEC,
23979 FPU_NONE, "Cortex-A5"),
23980 ARM_CPU_OPT ("cortex-a7", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23981 FPU_ARCH_NEON_VFP_V4,
23982 "Cortex-A7"),
23983 ARM_CPU_OPT ("cortex-a8", ARM_ARCH_V7A_SEC,
23984 ARM_FEATURE (0, FPU_VFP_V3
5287ad62 23985 | FPU_NEON_EXT_V1),
f3bad469
MGD
23986 "Cortex-A8"),
23987 ARM_CPU_OPT ("cortex-a9", ARM_ARCH_V7A_MP_SEC,
23988 ARM_FEATURE (0, FPU_VFP_V3
15290f0a 23989 | FPU_NEON_EXT_V1),
f3bad469
MGD
23990 "Cortex-A9"),
23991 ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23992 FPU_ARCH_NEON_VFP_V4,
23993 "Cortex-A15"),
92eb40d9
RR
23994 ARM_CPU_OPT ("cortex-a53", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
23995 "Cortex-A53"),
23996 ARM_CPU_OPT ("cortex-a57", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
23997 "Cortex-A57"),
f3bad469
MGD
23998 ARM_CPU_OPT ("cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"),
23999 ARM_CPU_OPT ("cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16,
24000 "Cortex-R4F"),
24001 ARM_CPU_OPT ("cortex-r5", ARM_ARCH_V7R_IDIV,
24002 FPU_NONE, "Cortex-R5"),
70a8bc5b 24003 ARM_CPU_OPT ("cortex-r7", ARM_ARCH_V7R_IDIV,
24004 FPU_ARCH_VFP_V3D16,
24005 "Cortex-R7"),
f3bad469
MGD
24006 ARM_CPU_OPT ("cortex-m4", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M4"),
24007 ARM_CPU_OPT ("cortex-m3", ARM_ARCH_V7M, FPU_NONE, "Cortex-M3"),
24008 ARM_CPU_OPT ("cortex-m1", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M1"),
24009 ARM_CPU_OPT ("cortex-m0", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0"),
ce32bd10 24010 ARM_CPU_OPT ("cortex-m0plus", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0+"),
c19d1205 24011 /* ??? XSCALE is really an architecture. */
f3bad469 24012 ARM_CPU_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 24013 /* ??? iwmmxt is not a processor. */
f3bad469
MGD
24014 ARM_CPU_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL),
24015 ARM_CPU_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP_V2, NULL),
24016 ARM_CPU_OPT ("i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 24017 /* Maverick */
f3bad469 24018 ARM_CPU_OPT ("ep9312", ARM_FEATURE (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
da4339ed
NC
24019 FPU_ARCH_MAVERICK, "ARM920T"),
24020 /* Marvell processors. */
4a81b02a 24021 ARM_CPU_OPT ("marvell-pj4", ARM_FEATURE (ARM_AEXT_V7A | ARM_EXT_MP | ARM_EXT_SEC, 0),
da4339ed
NC
24022 FPU_ARCH_VFP_V3D16, NULL),
24023
f3bad469 24024 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
c19d1205 24025};
f3bad469 24026#undef ARM_CPU_OPT
7ed4c4c5 24027
c19d1205 24028struct arm_arch_option_table
7ed4c4c5 24029{
c19d1205 24030 char *name;
f3bad469 24031 size_t name_len;
e74cfd16
PB
24032 const arm_feature_set value;
24033 const arm_feature_set default_fpu;
c19d1205 24034};
7ed4c4c5 24035
c19d1205
ZW
24036/* This list should, at a minimum, contain all the architecture names
24037 recognized by GCC. */
f3bad469 24038#define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF }
e74cfd16 24039static const struct arm_arch_option_table arm_archs[] =
c19d1205 24040{
f3bad469
MGD
24041 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
24042 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
24043 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
24044 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
24045 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
24046 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
24047 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
24048 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
24049 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
24050 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
24051 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
24052 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
24053 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
24054 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
24055 ARM_ARCH_OPT ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP),
24056 ARM_ARCH_OPT ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP),
24057 ARM_ARCH_OPT ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP),
24058 ARM_ARCH_OPT ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP),
24059 ARM_ARCH_OPT ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP),
24060 ARM_ARCH_OPT ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP),
24061 ARM_ARCH_OPT ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP),
24062 ARM_ARCH_OPT ("armv6zk", ARM_ARCH_V6ZK, FPU_ARCH_VFP),
24063 ARM_ARCH_OPT ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP),
24064 ARM_ARCH_OPT ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP),
24065 ARM_ARCH_OPT ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP),
24066 ARM_ARCH_OPT ("armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP),
24067 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
24068 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
24069 ARM_ARCH_OPT ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP),
c450d570
PB
24070 /* The official spelling of the ARMv7 profile variants is the dashed form.
24071 Accept the non-dashed form for compatibility with old toolchains. */
f3bad469
MGD
24072 ARM_ARCH_OPT ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP),
24073 ARM_ARCH_OPT ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP),
24074 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
24075 ARM_ARCH_OPT ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP),
24076 ARM_ARCH_OPT ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP),
24077 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
24078 ARM_ARCH_OPT ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP),
bca38921 24079 ARM_ARCH_OPT ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP),
f3bad469
MGD
24080 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
24081 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
24082 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP),
24083 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
c19d1205 24084};
f3bad469 24085#undef ARM_ARCH_OPT
7ed4c4c5 24086
69133863
MGD
24087/* ISA extensions in the co-processor and main instruction set space. */
24088struct arm_option_extension_value_table
c19d1205
ZW
24089{
24090 char *name;
f3bad469 24091 size_t name_len;
e74cfd16 24092 const arm_feature_set value;
69133863 24093 const arm_feature_set allowed_archs;
c19d1205 24094};
7ed4c4c5 24095
69133863
MGD
24096/* The following table must be in alphabetical order with a NULL last entry.
24097 */
f3bad469 24098#define ARM_EXT_OPT(N, V, AA) { N, sizeof (N) - 1, V, AA }
69133863 24099static const struct arm_option_extension_value_table arm_extensions[] =
c19d1205 24100{
dd5181d5 24101 ARM_EXT_OPT ("crc", ARCH_CRC_ARMV8, ARM_FEATURE (ARM_EXT_V8, 0)),
bca38921
MGD
24102 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
24103 ARM_FEATURE (ARM_EXT_V8, 0)),
24104 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8,
24105 ARM_FEATURE (ARM_EXT_V8, 0)),
f3bad469
MGD
24106 ARM_EXT_OPT ("idiv", ARM_FEATURE (ARM_EXT_ADIV | ARM_EXT_DIV, 0),
24107 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
24108 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE (0, ARM_CEXT_IWMMXT), ARM_ANY),
24109 ARM_EXT_OPT ("iwmmxt2",
24110 ARM_FEATURE (0, ARM_CEXT_IWMMXT2), ARM_ANY),
24111 ARM_EXT_OPT ("maverick",
24112 ARM_FEATURE (0, ARM_CEXT_MAVERICK), ARM_ANY),
24113 ARM_EXT_OPT ("mp", ARM_FEATURE (ARM_EXT_MP, 0),
24114 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
bca38921
MGD
24115 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
24116 ARM_FEATURE (ARM_EXT_V8, 0)),
f3bad469
MGD
24117 ARM_EXT_OPT ("os", ARM_FEATURE (ARM_EXT_OS, 0),
24118 ARM_FEATURE (ARM_EXT_V6M, 0)),
24119 ARM_EXT_OPT ("sec", ARM_FEATURE (ARM_EXT_SEC, 0),
24120 ARM_FEATURE (ARM_EXT_V6K | ARM_EXT_V7A, 0)),
24121 ARM_EXT_OPT ("virt", ARM_FEATURE (ARM_EXT_VIRT | ARM_EXT_ADIV
24122 | ARM_EXT_DIV, 0),
24123 ARM_FEATURE (ARM_EXT_V7A, 0)),
24124 ARM_EXT_OPT ("xscale",ARM_FEATURE (0, ARM_CEXT_XSCALE), ARM_ANY),
24125 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
69133863 24126};
f3bad469 24127#undef ARM_EXT_OPT
69133863
MGD
24128
24129/* ISA floating-point and Advanced SIMD extensions. */
24130struct arm_option_fpu_value_table
24131{
24132 char *name;
24133 const arm_feature_set value;
c19d1205 24134};
7ed4c4c5 24135
c19d1205
ZW
24136/* This list should, at a minimum, contain all the fpu names
24137 recognized by GCC. */
69133863 24138static const struct arm_option_fpu_value_table arm_fpus[] =
c19d1205
ZW
24139{
24140 {"softfpa", FPU_NONE},
24141 {"fpe", FPU_ARCH_FPE},
24142 {"fpe2", FPU_ARCH_FPE},
24143 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
24144 {"fpa", FPU_ARCH_FPA},
24145 {"fpa10", FPU_ARCH_FPA},
24146 {"fpa11", FPU_ARCH_FPA},
24147 {"arm7500fe", FPU_ARCH_FPA},
24148 {"softvfp", FPU_ARCH_VFP},
24149 {"softvfp+vfp", FPU_ARCH_VFP_V2},
24150 {"vfp", FPU_ARCH_VFP_V2},
24151 {"vfp9", FPU_ARCH_VFP_V2},
b1cc4aeb 24152 {"vfp3", FPU_ARCH_VFP_V3}, /* For backwards compatbility. */
c19d1205
ZW
24153 {"vfp10", FPU_ARCH_VFP_V2},
24154 {"vfp10-r0", FPU_ARCH_VFP_V1},
24155 {"vfpxd", FPU_ARCH_VFP_V1xD},
b1cc4aeb
PB
24156 {"vfpv2", FPU_ARCH_VFP_V2},
24157 {"vfpv3", FPU_ARCH_VFP_V3},
62f3b8c8 24158 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
b1cc4aeb 24159 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
62f3b8c8
PB
24160 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
24161 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
24162 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
c19d1205
ZW
24163 {"arm1020t", FPU_ARCH_VFP_V1},
24164 {"arm1020e", FPU_ARCH_VFP_V2},
24165 {"arm1136jfs", FPU_ARCH_VFP_V2},
24166 {"arm1136jf-s", FPU_ARCH_VFP_V2},
24167 {"maverick", FPU_ARCH_MAVERICK},
5287ad62 24168 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
8e79c3df 24169 {"neon-fp16", FPU_ARCH_NEON_FP16},
62f3b8c8
PB
24170 {"vfpv4", FPU_ARCH_VFP_V4},
24171 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
ada65aa3 24172 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
62f3b8c8 24173 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
bca38921
MGD
24174 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
24175 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
24176 {"crypto-neon-fp-armv8",
24177 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
e74cfd16
PB
24178 {NULL, ARM_ARCH_NONE}
24179};
24180
24181struct arm_option_value_table
24182{
24183 char *name;
24184 long value;
c19d1205 24185};
7ed4c4c5 24186
e74cfd16 24187static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
24188{
24189 {"hard", ARM_FLOAT_ABI_HARD},
24190 {"softfp", ARM_FLOAT_ABI_SOFTFP},
24191 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 24192 {NULL, 0}
c19d1205 24193};
7ed4c4c5 24194
c19d1205 24195#ifdef OBJ_ELF
3a4a14e9 24196/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 24197static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
24198{
24199 {"gnu", EF_ARM_EABI_UNKNOWN},
24200 {"4", EF_ARM_EABI_VER4},
3a4a14e9 24201 {"5", EF_ARM_EABI_VER5},
e74cfd16 24202 {NULL, 0}
c19d1205
ZW
24203};
24204#endif
7ed4c4c5 24205
c19d1205
ZW
24206struct arm_long_option_table
24207{
24208 char * option; /* Substring to match. */
24209 char * help; /* Help information. */
24210 int (* func) (char * subopt); /* Function to decode sub-option. */
24211 char * deprecated; /* If non-null, print this message. */
24212};
7ed4c4c5 24213
c921be7d 24214static bfd_boolean
f3bad469 24215arm_parse_extension (char *str, const arm_feature_set **opt_p)
7ed4c4c5 24216{
21d799b5
NC
24217 arm_feature_set *ext_set = (arm_feature_set *)
24218 xmalloc (sizeof (arm_feature_set));
e74cfd16 24219
69133863 24220 /* We insist on extensions being specified in alphabetical order, and with
fa94de6b
RM
24221 extensions being added before being removed. We achieve this by having
24222 the global ARM_EXTENSIONS table in alphabetical order, and using the
69133863 24223 ADDING_VALUE variable to indicate whether we are adding an extension (1)
fa94de6b 24224 or removing it (0) and only allowing it to change in the order
69133863
MGD
24225 -1 -> 1 -> 0. */
24226 const struct arm_option_extension_value_table * opt = NULL;
24227 int adding_value = -1;
24228
e74cfd16
PB
24229 /* Copy the feature set, so that we can modify it. */
24230 *ext_set = **opt_p;
24231 *opt_p = ext_set;
24232
c19d1205 24233 while (str != NULL && *str != 0)
7ed4c4c5 24234 {
f3bad469
MGD
24235 char *ext;
24236 size_t len;
7ed4c4c5 24237
c19d1205
ZW
24238 if (*str != '+')
24239 {
24240 as_bad (_("invalid architectural extension"));
c921be7d 24241 return FALSE;
c19d1205 24242 }
7ed4c4c5 24243
c19d1205
ZW
24244 str++;
24245 ext = strchr (str, '+');
7ed4c4c5 24246
c19d1205 24247 if (ext != NULL)
f3bad469 24248 len = ext - str;
c19d1205 24249 else
f3bad469 24250 len = strlen (str);
7ed4c4c5 24251
f3bad469 24252 if (len >= 2 && strncmp (str, "no", 2) == 0)
69133863
MGD
24253 {
24254 if (adding_value != 0)
24255 {
24256 adding_value = 0;
24257 opt = arm_extensions;
24258 }
24259
f3bad469 24260 len -= 2;
69133863
MGD
24261 str += 2;
24262 }
f3bad469 24263 else if (len > 0)
69133863
MGD
24264 {
24265 if (adding_value == -1)
24266 {
24267 adding_value = 1;
24268 opt = arm_extensions;
24269 }
24270 else if (adding_value != 1)
24271 {
24272 as_bad (_("must specify extensions to add before specifying "
24273 "those to remove"));
24274 return FALSE;
24275 }
24276 }
24277
f3bad469 24278 if (len == 0)
c19d1205
ZW
24279 {
24280 as_bad (_("missing architectural extension"));
c921be7d 24281 return FALSE;
c19d1205 24282 }
7ed4c4c5 24283
69133863
MGD
24284 gas_assert (adding_value != -1);
24285 gas_assert (opt != NULL);
24286
24287 /* Scan over the options table trying to find an exact match. */
24288 for (; opt->name != NULL; opt++)
f3bad469 24289 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24290 {
69133863
MGD
24291 /* Check we can apply the extension to this architecture. */
24292 if (!ARM_CPU_HAS_FEATURE (*ext_set, opt->allowed_archs))
24293 {
24294 as_bad (_("extension does not apply to the base architecture"));
24295 return FALSE;
24296 }
24297
24298 /* Add or remove the extension. */
24299 if (adding_value)
24300 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value);
24301 else
24302 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->value);
24303
c19d1205
ZW
24304 break;
24305 }
7ed4c4c5 24306
c19d1205
ZW
24307 if (opt->name == NULL)
24308 {
69133863
MGD
24309 /* Did we fail to find an extension because it wasn't specified in
24310 alphabetical order, or because it does not exist? */
24311
24312 for (opt = arm_extensions; opt->name != NULL; opt++)
f3bad469 24313 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
69133863
MGD
24314 break;
24315
24316 if (opt->name == NULL)
24317 as_bad (_("unknown architectural extension `%s'"), str);
24318 else
24319 as_bad (_("architectural extensions must be specified in "
24320 "alphabetical order"));
24321
c921be7d 24322 return FALSE;
c19d1205 24323 }
69133863
MGD
24324 else
24325 {
24326 /* We should skip the extension we've just matched the next time
24327 round. */
24328 opt++;
24329 }
7ed4c4c5 24330
c19d1205
ZW
24331 str = ext;
24332 };
7ed4c4c5 24333
c921be7d 24334 return TRUE;
c19d1205 24335}
7ed4c4c5 24336
c921be7d 24337static bfd_boolean
f3bad469 24338arm_parse_cpu (char *str)
7ed4c4c5 24339{
f3bad469
MGD
24340 const struct arm_cpu_option_table *opt;
24341 char *ext = strchr (str, '+');
24342 size_t len;
7ed4c4c5 24343
c19d1205 24344 if (ext != NULL)
f3bad469 24345 len = ext - str;
7ed4c4c5 24346 else
f3bad469 24347 len = strlen (str);
7ed4c4c5 24348
f3bad469 24349 if (len == 0)
7ed4c4c5 24350 {
c19d1205 24351 as_bad (_("missing cpu name `%s'"), str);
c921be7d 24352 return FALSE;
7ed4c4c5
NC
24353 }
24354
c19d1205 24355 for (opt = arm_cpus; opt->name != NULL; opt++)
f3bad469 24356 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24357 {
e74cfd16
PB
24358 mcpu_cpu_opt = &opt->value;
24359 mcpu_fpu_opt = &opt->default_fpu;
ee065d83 24360 if (opt->canonical_name)
5f4273c7 24361 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24362 else
24363 {
f3bad469 24364 size_t i;
c921be7d 24365
f3bad469 24366 for (i = 0; i < len; i++)
ee065d83
PB
24367 selected_cpu_name[i] = TOUPPER (opt->name[i]);
24368 selected_cpu_name[i] = 0;
24369 }
7ed4c4c5 24370
c19d1205
ZW
24371 if (ext != NULL)
24372 return arm_parse_extension (ext, &mcpu_cpu_opt);
7ed4c4c5 24373
c921be7d 24374 return TRUE;
c19d1205 24375 }
7ed4c4c5 24376
c19d1205 24377 as_bad (_("unknown cpu `%s'"), str);
c921be7d 24378 return FALSE;
7ed4c4c5
NC
24379}
24380
c921be7d 24381static bfd_boolean
f3bad469 24382arm_parse_arch (char *str)
7ed4c4c5 24383{
e74cfd16 24384 const struct arm_arch_option_table *opt;
c19d1205 24385 char *ext = strchr (str, '+');
f3bad469 24386 size_t len;
7ed4c4c5 24387
c19d1205 24388 if (ext != NULL)
f3bad469 24389 len = ext - str;
7ed4c4c5 24390 else
f3bad469 24391 len = strlen (str);
7ed4c4c5 24392
f3bad469 24393 if (len == 0)
7ed4c4c5 24394 {
c19d1205 24395 as_bad (_("missing architecture name `%s'"), str);
c921be7d 24396 return FALSE;
7ed4c4c5
NC
24397 }
24398
c19d1205 24399 for (opt = arm_archs; opt->name != NULL; opt++)
f3bad469 24400 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24401 {
e74cfd16
PB
24402 march_cpu_opt = &opt->value;
24403 march_fpu_opt = &opt->default_fpu;
5f4273c7 24404 strcpy (selected_cpu_name, opt->name);
7ed4c4c5 24405
c19d1205
ZW
24406 if (ext != NULL)
24407 return arm_parse_extension (ext, &march_cpu_opt);
7ed4c4c5 24408
c921be7d 24409 return TRUE;
c19d1205
ZW
24410 }
24411
24412 as_bad (_("unknown architecture `%s'\n"), str);
c921be7d 24413 return FALSE;
7ed4c4c5 24414}
eb043451 24415
c921be7d 24416static bfd_boolean
c19d1205
ZW
24417arm_parse_fpu (char * str)
24418{
69133863 24419 const struct arm_option_fpu_value_table * opt;
b99bd4ef 24420
c19d1205
ZW
24421 for (opt = arm_fpus; opt->name != NULL; opt++)
24422 if (streq (opt->name, str))
24423 {
e74cfd16 24424 mfpu_opt = &opt->value;
c921be7d 24425 return TRUE;
c19d1205 24426 }
b99bd4ef 24427
c19d1205 24428 as_bad (_("unknown floating point format `%s'\n"), str);
c921be7d 24429 return FALSE;
c19d1205
ZW
24430}
24431
c921be7d 24432static bfd_boolean
c19d1205 24433arm_parse_float_abi (char * str)
b99bd4ef 24434{
e74cfd16 24435 const struct arm_option_value_table * opt;
b99bd4ef 24436
c19d1205
ZW
24437 for (opt = arm_float_abis; opt->name != NULL; opt++)
24438 if (streq (opt->name, str))
24439 {
24440 mfloat_abi_opt = opt->value;
c921be7d 24441 return TRUE;
c19d1205 24442 }
cc8a6dd0 24443
c19d1205 24444 as_bad (_("unknown floating point abi `%s'\n"), str);
c921be7d 24445 return FALSE;
c19d1205 24446}
b99bd4ef 24447
c19d1205 24448#ifdef OBJ_ELF
c921be7d 24449static bfd_boolean
c19d1205
ZW
24450arm_parse_eabi (char * str)
24451{
e74cfd16 24452 const struct arm_option_value_table *opt;
cc8a6dd0 24453
c19d1205
ZW
24454 for (opt = arm_eabis; opt->name != NULL; opt++)
24455 if (streq (opt->name, str))
24456 {
24457 meabi_flags = opt->value;
c921be7d 24458 return TRUE;
c19d1205
ZW
24459 }
24460 as_bad (_("unknown EABI `%s'\n"), str);
c921be7d 24461 return FALSE;
c19d1205
ZW
24462}
24463#endif
cc8a6dd0 24464
c921be7d 24465static bfd_boolean
e07e6e58
NC
24466arm_parse_it_mode (char * str)
24467{
c921be7d 24468 bfd_boolean ret = TRUE;
e07e6e58
NC
24469
24470 if (streq ("arm", str))
24471 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
24472 else if (streq ("thumb", str))
24473 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
24474 else if (streq ("always", str))
24475 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
24476 else if (streq ("never", str))
24477 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
24478 else
24479 {
24480 as_bad (_("unknown implicit IT mode `%s', should be "\
24481 "arm, thumb, always, or never."), str);
c921be7d 24482 ret = FALSE;
e07e6e58
NC
24483 }
24484
24485 return ret;
24486}
24487
c19d1205
ZW
24488struct arm_long_option_table arm_long_opts[] =
24489{
24490 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
24491 arm_parse_cpu, NULL},
24492 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
24493 arm_parse_arch, NULL},
24494 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
24495 arm_parse_fpu, NULL},
24496 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
24497 arm_parse_float_abi, NULL},
24498#ifdef OBJ_ELF
7fac0536 24499 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
c19d1205
ZW
24500 arm_parse_eabi, NULL},
24501#endif
e07e6e58
NC
24502 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
24503 arm_parse_it_mode, NULL},
c19d1205
ZW
24504 {NULL, NULL, 0, NULL}
24505};
cc8a6dd0 24506
c19d1205
ZW
24507int
24508md_parse_option (int c, char * arg)
24509{
24510 struct arm_option_table *opt;
e74cfd16 24511 const struct arm_legacy_option_table *fopt;
c19d1205 24512 struct arm_long_option_table *lopt;
b99bd4ef 24513
c19d1205 24514 switch (c)
b99bd4ef 24515 {
c19d1205
ZW
24516#ifdef OPTION_EB
24517 case OPTION_EB:
24518 target_big_endian = 1;
24519 break;
24520#endif
cc8a6dd0 24521
c19d1205
ZW
24522#ifdef OPTION_EL
24523 case OPTION_EL:
24524 target_big_endian = 0;
24525 break;
24526#endif
b99bd4ef 24527
845b51d6
PB
24528 case OPTION_FIX_V4BX:
24529 fix_v4bx = TRUE;
24530 break;
24531
c19d1205
ZW
24532 case 'a':
24533 /* Listing option. Just ignore these, we don't support additional
24534 ones. */
24535 return 0;
b99bd4ef 24536
c19d1205
ZW
24537 default:
24538 for (opt = arm_opts; opt->option != NULL; opt++)
24539 {
24540 if (c == opt->option[0]
24541 && ((arg == NULL && opt->option[1] == 0)
24542 || streq (arg, opt->option + 1)))
24543 {
c19d1205 24544 /* If the option is deprecated, tell the user. */
278df34e 24545 if (warn_on_deprecated && opt->deprecated != NULL)
c19d1205
ZW
24546 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
24547 arg ? arg : "", _(opt->deprecated));
b99bd4ef 24548
c19d1205
ZW
24549 if (opt->var != NULL)
24550 *opt->var = opt->value;
cc8a6dd0 24551
c19d1205
ZW
24552 return 1;
24553 }
24554 }
b99bd4ef 24555
e74cfd16
PB
24556 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
24557 {
24558 if (c == fopt->option[0]
24559 && ((arg == NULL && fopt->option[1] == 0)
24560 || streq (arg, fopt->option + 1)))
24561 {
e74cfd16 24562 /* If the option is deprecated, tell the user. */
278df34e 24563 if (warn_on_deprecated && fopt->deprecated != NULL)
e74cfd16
PB
24564 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
24565 arg ? arg : "", _(fopt->deprecated));
e74cfd16
PB
24566
24567 if (fopt->var != NULL)
24568 *fopt->var = &fopt->value;
24569
24570 return 1;
24571 }
24572 }
24573
c19d1205
ZW
24574 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
24575 {
24576 /* These options are expected to have an argument. */
24577 if (c == lopt->option[0]
24578 && arg != NULL
24579 && strncmp (arg, lopt->option + 1,
24580 strlen (lopt->option + 1)) == 0)
24581 {
c19d1205 24582 /* If the option is deprecated, tell the user. */
278df34e 24583 if (warn_on_deprecated && lopt->deprecated != NULL)
c19d1205
ZW
24584 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
24585 _(lopt->deprecated));
b99bd4ef 24586
c19d1205
ZW
24587 /* Call the sup-option parser. */
24588 return lopt->func (arg + strlen (lopt->option) - 1);
24589 }
24590 }
a737bd4d 24591
c19d1205
ZW
24592 return 0;
24593 }
a394c00f 24594
c19d1205
ZW
24595 return 1;
24596}
a394c00f 24597
c19d1205
ZW
24598void
24599md_show_usage (FILE * fp)
a394c00f 24600{
c19d1205
ZW
24601 struct arm_option_table *opt;
24602 struct arm_long_option_table *lopt;
a394c00f 24603
c19d1205 24604 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 24605
c19d1205
ZW
24606 for (opt = arm_opts; opt->option != NULL; opt++)
24607 if (opt->help != NULL)
24608 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 24609
c19d1205
ZW
24610 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
24611 if (lopt->help != NULL)
24612 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 24613
c19d1205
ZW
24614#ifdef OPTION_EB
24615 fprintf (fp, _("\
24616 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
24617#endif
24618
c19d1205
ZW
24619#ifdef OPTION_EL
24620 fprintf (fp, _("\
24621 -EL assemble code for a little-endian cpu\n"));
a737bd4d 24622#endif
845b51d6
PB
24623
24624 fprintf (fp, _("\
24625 --fix-v4bx Allow BX in ARMv4 code\n"));
c19d1205 24626}
ee065d83
PB
24627
24628
24629#ifdef OBJ_ELF
62b3e311
PB
24630typedef struct
24631{
24632 int val;
24633 arm_feature_set flags;
24634} cpu_arch_ver_table;
24635
24636/* Mapping from CPU features to EABI CPU arch values. Table must be sorted
24637 least features first. */
24638static const cpu_arch_ver_table cpu_arch_ver[] =
24639{
24640 {1, ARM_ARCH_V4},
24641 {2, ARM_ARCH_V4T},
24642 {3, ARM_ARCH_V5},
ee3c0378 24643 {3, ARM_ARCH_V5T},
62b3e311
PB
24644 {4, ARM_ARCH_V5TE},
24645 {5, ARM_ARCH_V5TEJ},
24646 {6, ARM_ARCH_V6},
7e806470 24647 {9, ARM_ARCH_V6K},
f4c65163 24648 {7, ARM_ARCH_V6Z},
91e22acd 24649 {11, ARM_ARCH_V6M},
b2a5fbdc 24650 {12, ARM_ARCH_V6SM},
7e806470 24651 {8, ARM_ARCH_V6T2},
bca38921 24652 {10, ARM_ARCH_V7A_IDIV_MP_SEC_VIRT},
62b3e311
PB
24653 {10, ARM_ARCH_V7R},
24654 {10, ARM_ARCH_V7M},
bca38921 24655 {14, ARM_ARCH_V8A},
62b3e311
PB
24656 {0, ARM_ARCH_NONE}
24657};
24658
ee3c0378
AS
24659/* Set an attribute if it has not already been set by the user. */
24660static void
24661aeabi_set_attribute_int (int tag, int value)
24662{
24663 if (tag < 1
24664 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
24665 || !attributes_set_explicitly[tag])
24666 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
24667}
24668
24669static void
24670aeabi_set_attribute_string (int tag, const char *value)
24671{
24672 if (tag < 1
24673 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
24674 || !attributes_set_explicitly[tag])
24675 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
24676}
24677
ee065d83
PB
24678/* Set the public EABI object attributes. */
24679static void
24680aeabi_set_public_attributes (void)
24681{
24682 int arch;
69239280 24683 char profile;
90ec0d68 24684 int virt_sec = 0;
bca38921 24685 int fp16_optional = 0;
e74cfd16 24686 arm_feature_set flags;
62b3e311
PB
24687 arm_feature_set tmp;
24688 const cpu_arch_ver_table *p;
ee065d83
PB
24689
24690 /* Choose the architecture based on the capabilities of the requested cpu
24691 (if any) and/or the instructions actually used. */
e74cfd16
PB
24692 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
24693 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
24694 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
ddd7f988
RE
24695
24696 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
24697 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
24698
24699 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
24700 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
24701
24702 /* Allow the user to override the reported architecture. */
7a1d4c38
PB
24703 if (object_arch)
24704 {
24705 ARM_CLEAR_FEATURE (flags, flags, arm_arch_any);
24706 ARM_MERGE_FEATURE_SETS (flags, flags, *object_arch);
24707 }
24708
251665fc
MGD
24709 /* We need to make sure that the attributes do not identify us as v6S-M
24710 when the only v6S-M feature in use is the Operating System Extensions. */
24711 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_os))
24712 if (!ARM_CPU_HAS_FEATURE (flags, arm_arch_v6m_only))
24713 ARM_CLEAR_FEATURE (flags, flags, arm_ext_os);
24714
62b3e311
PB
24715 tmp = flags;
24716 arch = 0;
24717 for (p = cpu_arch_ver; p->val; p++)
24718 {
24719 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
24720 {
24721 arch = p->val;
24722 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
24723 }
24724 }
ee065d83 24725
9e3c6df6
PB
24726 /* The table lookup above finds the last architecture to contribute
24727 a new feature. Unfortunately, Tag13 is a subset of the union of
24728 v6T2 and v7-M, so it is never seen as contributing a new feature.
24729 We can not search for the last entry which is entirely used,
24730 because if no CPU is specified we build up only those flags
24731 actually used. Perhaps we should separate out the specified
24732 and implicit cases. Avoid taking this path for -march=all by
24733 checking for contradictory v7-A / v7-M features. */
24734 if (arch == 10
24735 && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
24736 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m)
24737 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v6_dsp))
24738 arch = 13;
24739
ee065d83
PB
24740 /* Tag_CPU_name. */
24741 if (selected_cpu_name[0])
24742 {
91d6fa6a 24743 char *q;
ee065d83 24744
91d6fa6a
NC
24745 q = selected_cpu_name;
24746 if (strncmp (q, "armv", 4) == 0)
ee065d83
PB
24747 {
24748 int i;
5f4273c7 24749
91d6fa6a
NC
24750 q += 4;
24751 for (i = 0; q[i]; i++)
24752 q[i] = TOUPPER (q[i]);
ee065d83 24753 }
91d6fa6a 24754 aeabi_set_attribute_string (Tag_CPU_name, q);
ee065d83 24755 }
62f3b8c8 24756
ee065d83 24757 /* Tag_CPU_arch. */
ee3c0378 24758 aeabi_set_attribute_int (Tag_CPU_arch, arch);
62f3b8c8 24759
62b3e311
PB
24760 /* Tag_CPU_arch_profile. */
24761 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
69239280 24762 profile = 'A';
62b3e311 24763 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
69239280 24764 profile = 'R';
7e806470 24765 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_m))
69239280
MGD
24766 profile = 'M';
24767 else
24768 profile = '\0';
24769
24770 if (profile != '\0')
24771 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
62f3b8c8 24772
ee065d83 24773 /* Tag_ARM_ISA_use. */
ee3c0378
AS
24774 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
24775 || arch == 0)
24776 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
62f3b8c8 24777
ee065d83 24778 /* Tag_THUMB_ISA_use. */
ee3c0378
AS
24779 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
24780 || arch == 0)
24781 aeabi_set_attribute_int (Tag_THUMB_ISA_use,
24782 ARM_CPU_HAS_FEATURE (flags, arm_arch_t2) ? 2 : 1);
62f3b8c8 24783
ee065d83 24784 /* Tag_VFP_arch. */
bca38921
MGD
24785 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8))
24786 aeabi_set_attribute_int (Tag_VFP_arch, 7);
24787 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
62f3b8c8
PB
24788 aeabi_set_attribute_int (Tag_VFP_arch,
24789 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
24790 ? 5 : 6);
24791 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
bca38921
MGD
24792 {
24793 fp16_optional = 1;
24794 aeabi_set_attribute_int (Tag_VFP_arch, 3);
24795 }
ada65aa3 24796 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
bca38921
MGD
24797 {
24798 aeabi_set_attribute_int (Tag_VFP_arch, 4);
24799 fp16_optional = 1;
24800 }
ee3c0378
AS
24801 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
24802 aeabi_set_attribute_int (Tag_VFP_arch, 2);
24803 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
24804 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
24805 aeabi_set_attribute_int (Tag_VFP_arch, 1);
62f3b8c8 24806
4547cb56
NC
24807 /* Tag_ABI_HardFP_use. */
24808 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
24809 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
24810 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
24811
ee065d83 24812 /* Tag_WMMX_arch. */
ee3c0378
AS
24813 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
24814 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
24815 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
24816 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
62f3b8c8 24817
ee3c0378 24818 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
bca38921
MGD
24819 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
24820 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
24821 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
24822 {
24823 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
24824 {
24825 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
24826 }
24827 else
24828 {
24829 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
24830 fp16_optional = 1;
24831 }
24832 }
fa94de6b 24833
ee3c0378 24834 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
bca38921 24835 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
ee3c0378 24836 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
4547cb56 24837
69239280
MGD
24838 /* Tag_DIV_use.
24839
24840 We set Tag_DIV_use to two when integer divide instructions have been used
24841 in ARM state, or when Thumb integer divide instructions have been used,
24842 but we have no architecture profile set, nor have we any ARM instructions.
24843
bca38921
MGD
24844 For ARMv8 we set the tag to 0 as integer divide is implied by the base
24845 architecture.
24846
69239280 24847 For new architectures we will have to check these tests. */
bca38921
MGD
24848 gas_assert (arch <= TAG_CPU_ARCH_V8);
24849 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8))
24850 aeabi_set_attribute_int (Tag_DIV_use, 0);
24851 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
24852 || (profile == '\0'
24853 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
24854 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
eea54501 24855 aeabi_set_attribute_int (Tag_DIV_use, 2);
60e5ef9f
MGD
24856
24857 /* Tag_MP_extension_use. */
24858 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
24859 aeabi_set_attribute_int (Tag_MPextension_use, 1);
f4c65163
MGD
24860
24861 /* Tag Virtualization_use. */
24862 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
90ec0d68
MGD
24863 virt_sec |= 1;
24864 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
24865 virt_sec |= 2;
24866 if (virt_sec != 0)
24867 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
ee065d83
PB
24868}
24869
104d59d1 24870/* Add the default contents for the .ARM.attributes section. */
ee065d83
PB
24871void
24872arm_md_end (void)
24873{
ee065d83
PB
24874 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
24875 return;
24876
24877 aeabi_set_public_attributes ();
ee065d83 24878}
8463be01 24879#endif /* OBJ_ELF */
ee065d83
PB
24880
24881
24882/* Parse a .cpu directive. */
24883
24884static void
24885s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
24886{
e74cfd16 24887 const struct arm_cpu_option_table *opt;
ee065d83
PB
24888 char *name;
24889 char saved_char;
24890
24891 name = input_line_pointer;
5f4273c7 24892 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24893 input_line_pointer++;
24894 saved_char = *input_line_pointer;
24895 *input_line_pointer = 0;
24896
24897 /* Skip the first "all" entry. */
24898 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
24899 if (streq (opt->name, name))
24900 {
e74cfd16
PB
24901 mcpu_cpu_opt = &opt->value;
24902 selected_cpu = opt->value;
ee065d83 24903 if (opt->canonical_name)
5f4273c7 24904 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24905 else
24906 {
24907 int i;
24908 for (i = 0; opt->name[i]; i++)
24909 selected_cpu_name[i] = TOUPPER (opt->name[i]);
f3bad469 24910
ee065d83
PB
24911 selected_cpu_name[i] = 0;
24912 }
e74cfd16 24913 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24914 *input_line_pointer = saved_char;
24915 demand_empty_rest_of_line ();
24916 return;
24917 }
24918 as_bad (_("unknown cpu `%s'"), name);
24919 *input_line_pointer = saved_char;
24920 ignore_rest_of_line ();
24921}
24922
24923
24924/* Parse a .arch directive. */
24925
24926static void
24927s_arm_arch (int ignored ATTRIBUTE_UNUSED)
24928{
e74cfd16 24929 const struct arm_arch_option_table *opt;
ee065d83
PB
24930 char saved_char;
24931 char *name;
24932
24933 name = input_line_pointer;
5f4273c7 24934 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24935 input_line_pointer++;
24936 saved_char = *input_line_pointer;
24937 *input_line_pointer = 0;
24938
24939 /* Skip the first "all" entry. */
24940 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24941 if (streq (opt->name, name))
24942 {
e74cfd16
PB
24943 mcpu_cpu_opt = &opt->value;
24944 selected_cpu = opt->value;
5f4273c7 24945 strcpy (selected_cpu_name, opt->name);
e74cfd16 24946 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24947 *input_line_pointer = saved_char;
24948 demand_empty_rest_of_line ();
24949 return;
24950 }
24951
24952 as_bad (_("unknown architecture `%s'\n"), name);
24953 *input_line_pointer = saved_char;
24954 ignore_rest_of_line ();
24955}
24956
24957
7a1d4c38
PB
24958/* Parse a .object_arch directive. */
24959
24960static void
24961s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
24962{
24963 const struct arm_arch_option_table *opt;
24964 char saved_char;
24965 char *name;
24966
24967 name = input_line_pointer;
5f4273c7 24968 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
7a1d4c38
PB
24969 input_line_pointer++;
24970 saved_char = *input_line_pointer;
24971 *input_line_pointer = 0;
24972
24973 /* Skip the first "all" entry. */
24974 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24975 if (streq (opt->name, name))
24976 {
24977 object_arch = &opt->value;
24978 *input_line_pointer = saved_char;
24979 demand_empty_rest_of_line ();
24980 return;
24981 }
24982
24983 as_bad (_("unknown architecture `%s'\n"), name);
24984 *input_line_pointer = saved_char;
24985 ignore_rest_of_line ();
24986}
24987
69133863
MGD
24988/* Parse a .arch_extension directive. */
24989
24990static void
24991s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
24992{
24993 const struct arm_option_extension_value_table *opt;
24994 char saved_char;
24995 char *name;
24996 int adding_value = 1;
24997
24998 name = input_line_pointer;
24999 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
25000 input_line_pointer++;
25001 saved_char = *input_line_pointer;
25002 *input_line_pointer = 0;
25003
25004 if (strlen (name) >= 2
25005 && strncmp (name, "no", 2) == 0)
25006 {
25007 adding_value = 0;
25008 name += 2;
25009 }
25010
25011 for (opt = arm_extensions; opt->name != NULL; opt++)
25012 if (streq (opt->name, name))
25013 {
25014 if (!ARM_CPU_HAS_FEATURE (*mcpu_cpu_opt, opt->allowed_archs))
25015 {
25016 as_bad (_("architectural extension `%s' is not allowed for the "
25017 "current base architecture"), name);
25018 break;
25019 }
25020
25021 if (adding_value)
25022 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu, opt->value);
25023 else
25024 ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->value);
25025
25026 mcpu_cpu_opt = &selected_cpu;
25027 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
25028 *input_line_pointer = saved_char;
25029 demand_empty_rest_of_line ();
25030 return;
25031 }
25032
25033 if (opt->name == NULL)
25034 as_bad (_("unknown architecture `%s'\n"), name);
25035
25036 *input_line_pointer = saved_char;
25037 ignore_rest_of_line ();
25038}
25039
ee065d83
PB
25040/* Parse a .fpu directive. */
25041
25042static void
25043s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
25044{
69133863 25045 const struct arm_option_fpu_value_table *opt;
ee065d83
PB
25046 char saved_char;
25047 char *name;
25048
25049 name = input_line_pointer;
5f4273c7 25050 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
25051 input_line_pointer++;
25052 saved_char = *input_line_pointer;
25053 *input_line_pointer = 0;
5f4273c7 25054
ee065d83
PB
25055 for (opt = arm_fpus; opt->name != NULL; opt++)
25056 if (streq (opt->name, name))
25057 {
e74cfd16
PB
25058 mfpu_opt = &opt->value;
25059 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
25060 *input_line_pointer = saved_char;
25061 demand_empty_rest_of_line ();
25062 return;
25063 }
25064
25065 as_bad (_("unknown floating point format `%s'\n"), name);
25066 *input_line_pointer = saved_char;
25067 ignore_rest_of_line ();
25068}
ee065d83 25069
794ba86a 25070/* Copy symbol information. */
f31fef98 25071
794ba86a
DJ
25072void
25073arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
25074{
25075 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
25076}
e04befd0 25077
f31fef98 25078#ifdef OBJ_ELF
e04befd0
AS
25079/* Given a symbolic attribute NAME, return the proper integer value.
25080 Returns -1 if the attribute is not known. */
f31fef98 25081
e04befd0
AS
25082int
25083arm_convert_symbolic_attribute (const char *name)
25084{
f31fef98
NC
25085 static const struct
25086 {
25087 const char * name;
25088 const int tag;
25089 }
25090 attribute_table[] =
25091 {
25092 /* When you modify this table you should
25093 also modify the list in doc/c-arm.texi. */
e04befd0 25094#define T(tag) {#tag, tag}
f31fef98
NC
25095 T (Tag_CPU_raw_name),
25096 T (Tag_CPU_name),
25097 T (Tag_CPU_arch),
25098 T (Tag_CPU_arch_profile),
25099 T (Tag_ARM_ISA_use),
25100 T (Tag_THUMB_ISA_use),
75375b3e 25101 T (Tag_FP_arch),
f31fef98
NC
25102 T (Tag_VFP_arch),
25103 T (Tag_WMMX_arch),
25104 T (Tag_Advanced_SIMD_arch),
25105 T (Tag_PCS_config),
25106 T (Tag_ABI_PCS_R9_use),
25107 T (Tag_ABI_PCS_RW_data),
25108 T (Tag_ABI_PCS_RO_data),
25109 T (Tag_ABI_PCS_GOT_use),
25110 T (Tag_ABI_PCS_wchar_t),
25111 T (Tag_ABI_FP_rounding),
25112 T (Tag_ABI_FP_denormal),
25113 T (Tag_ABI_FP_exceptions),
25114 T (Tag_ABI_FP_user_exceptions),
25115 T (Tag_ABI_FP_number_model),
75375b3e 25116 T (Tag_ABI_align_needed),
f31fef98 25117 T (Tag_ABI_align8_needed),
75375b3e 25118 T (Tag_ABI_align_preserved),
f31fef98
NC
25119 T (Tag_ABI_align8_preserved),
25120 T (Tag_ABI_enum_size),
25121 T (Tag_ABI_HardFP_use),
25122 T (Tag_ABI_VFP_args),
25123 T (Tag_ABI_WMMX_args),
25124 T (Tag_ABI_optimization_goals),
25125 T (Tag_ABI_FP_optimization_goals),
25126 T (Tag_compatibility),
25127 T (Tag_CPU_unaligned_access),
75375b3e 25128 T (Tag_FP_HP_extension),
f31fef98
NC
25129 T (Tag_VFP_HP_extension),
25130 T (Tag_ABI_FP_16bit_format),
cd21e546
MGD
25131 T (Tag_MPextension_use),
25132 T (Tag_DIV_use),
f31fef98
NC
25133 T (Tag_nodefaults),
25134 T (Tag_also_compatible_with),
25135 T (Tag_conformance),
25136 T (Tag_T2EE_use),
25137 T (Tag_Virtualization_use),
cd21e546 25138 /* We deliberately do not include Tag_MPextension_use_legacy. */
e04befd0 25139#undef T
f31fef98 25140 };
e04befd0
AS
25141 unsigned int i;
25142
25143 if (name == NULL)
25144 return -1;
25145
f31fef98 25146 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
c921be7d 25147 if (streq (name, attribute_table[i].name))
e04befd0
AS
25148 return attribute_table[i].tag;
25149
25150 return -1;
25151}
267bf995
RR
25152
25153
25154/* Apply sym value for relocations only in the case that
25155 they are for local symbols and you have the respective
25156 architectural feature for blx and simple switches. */
25157int
25158arm_apply_sym_value (struct fix * fixP)
25159{
25160 if (fixP->fx_addsy
25161 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
34e77a92 25162 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
267bf995
RR
25163 {
25164 switch (fixP->fx_r_type)
25165 {
25166 case BFD_RELOC_ARM_PCREL_BLX:
25167 case BFD_RELOC_THUMB_PCREL_BRANCH23:
25168 if (ARM_IS_FUNC (fixP->fx_addsy))
25169 return 1;
25170 break;
25171
25172 case BFD_RELOC_ARM_PCREL_CALL:
25173 case BFD_RELOC_THUMB_PCREL_BLX:
25174 if (THUMB_IS_FUNC (fixP->fx_addsy))
25175 return 1;
25176 break;
25177
25178 default:
25179 break;
25180 }
25181
25182 }
25183 return 0;
25184}
f31fef98 25185#endif /* OBJ_ELF */
This page took 2.862235 seconds and 4 git commands to generate.