* ld.texinfo: Replace @ with @@ when it is part of the text.
[deliverable/binutils-gdb.git] / gas / config / tc-arm.c
CommitLineData
b99bd4ef 1/* tc-arm.c -- Assemble for the ARM
f17c130b 2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
fa94de6b 3 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
b99bd4ef
NC
4 Free Software Foundation, Inc.
5 Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
6 Modified by David Taylor (dtaylor@armltd.co.uk)
22d9c8c5 7 Cirrus coprocessor mods by Aldy Hernandez (aldyh@redhat.com)
34920d91
NC
8 Cirrus coprocessor fixes by Petko Manolov (petkan@nucleusys.com)
9 Cirrus coprocessor fixes by Vladimir Ivanov (vladitx@nucleusys.com)
b99bd4ef
NC
10
11 This file is part of GAS, the GNU Assembler.
12
13 GAS is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
ec2655a6 15 the Free Software Foundation; either version 3, or (at your option)
b99bd4ef
NC
16 any later version.
17
18 GAS is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
c19d1205 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b99bd4ef
NC
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with GAS; see the file COPYING. If not, write to the Free
699d2810
NC
25 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
26 02110-1301, USA. */
b99bd4ef 27
42a68e18 28#include "as.h"
5287ad62 29#include <limits.h>
037e8744 30#include <stdarg.h>
c19d1205 31#define NO_RELOC 0
3882b010 32#include "safe-ctype.h"
b99bd4ef
NC
33#include "subsegs.h"
34#include "obstack.h"
3da1d841 35#include "libiberty.h"
f263249b
RE
36#include "opcode/arm.h"
37
b99bd4ef
NC
38#ifdef OBJ_ELF
39#include "elf/arm.h"
a394c00f 40#include "dw2gencfi.h"
b99bd4ef
NC
41#endif
42
f0927246
NC
43#include "dwarf2dbg.h"
44
7ed4c4c5
NC
45#ifdef OBJ_ELF
46/* Must be at least the size of the largest unwind opcode (currently two). */
47#define ARM_OPCODE_CHUNK_SIZE 8
48
49/* This structure holds the unwinding state. */
50
51static struct
52{
c19d1205
ZW
53 symbolS * proc_start;
54 symbolS * table_entry;
55 symbolS * personality_routine;
56 int personality_index;
7ed4c4c5 57 /* The segment containing the function. */
c19d1205
ZW
58 segT saved_seg;
59 subsegT saved_subseg;
7ed4c4c5
NC
60 /* Opcodes generated from this function. */
61 unsigned char * opcodes;
c19d1205
ZW
62 int opcode_count;
63 int opcode_alloc;
7ed4c4c5 64 /* The number of bytes pushed to the stack. */
c19d1205 65 offsetT frame_size;
7ed4c4c5
NC
66 /* We don't add stack adjustment opcodes immediately so that we can merge
67 multiple adjustments. We can also omit the final adjustment
68 when using a frame pointer. */
c19d1205 69 offsetT pending_offset;
7ed4c4c5 70 /* These two fields are set by both unwind_movsp and unwind_setfp. They
c19d1205
ZW
71 hold the reg+offset to use when restoring sp from a frame pointer. */
72 offsetT fp_offset;
73 int fp_reg;
7ed4c4c5 74 /* Nonzero if an unwind_setfp directive has been seen. */
c19d1205 75 unsigned fp_used:1;
7ed4c4c5 76 /* Nonzero if the last opcode restores sp from fp_reg. */
c19d1205 77 unsigned sp_restored:1;
7ed4c4c5
NC
78} unwind;
79
8b1ad454
NC
80#endif /* OBJ_ELF */
81
4962c51a
MS
82/* Results from operand parsing worker functions. */
83
84typedef enum
85{
86 PARSE_OPERAND_SUCCESS,
87 PARSE_OPERAND_FAIL,
88 PARSE_OPERAND_FAIL_NO_BACKTRACK
89} parse_operand_result;
90
33a392fb
PB
91enum arm_float_abi
92{
93 ARM_FLOAT_ABI_HARD,
94 ARM_FLOAT_ABI_SOFTFP,
95 ARM_FLOAT_ABI_SOFT
96};
97
c19d1205 98/* Types of processor to assemble for. */
b99bd4ef 99#ifndef CPU_DEFAULT
8a59fff3 100/* The code that was here used to select a default CPU depending on compiler
fa94de6b 101 pre-defines which were only present when doing native builds, thus
8a59fff3
MGD
102 changing gas' default behaviour depending upon the build host.
103
104 If you have a target that requires a default CPU option then the you
105 should define CPU_DEFAULT here. */
b99bd4ef
NC
106#endif
107
108#ifndef FPU_DEFAULT
c820d418
MM
109# ifdef TE_LINUX
110# define FPU_DEFAULT FPU_ARCH_FPA
111# elif defined (TE_NetBSD)
112# ifdef OBJ_ELF
113# define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, but VFP order. */
114# else
115 /* Legacy a.out format. */
116# define FPU_DEFAULT FPU_ARCH_FPA /* Soft-float, but FPA order. */
117# endif
4e7fd91e
PB
118# elif defined (TE_VXWORKS)
119# define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, VFP order. */
c820d418
MM
120# else
121 /* For backwards compatibility, default to FPA. */
122# define FPU_DEFAULT FPU_ARCH_FPA
123# endif
124#endif /* ifndef FPU_DEFAULT */
b99bd4ef 125
c19d1205 126#define streq(a, b) (strcmp (a, b) == 0)
b99bd4ef 127
e74cfd16
PB
128static arm_feature_set cpu_variant;
129static arm_feature_set arm_arch_used;
130static arm_feature_set thumb_arch_used;
b99bd4ef 131
b99bd4ef 132/* Flags stored in private area of BFD structure. */
c19d1205
ZW
133static int uses_apcs_26 = FALSE;
134static int atpcs = FALSE;
b34976b6
AM
135static int support_interwork = FALSE;
136static int uses_apcs_float = FALSE;
c19d1205 137static int pic_code = FALSE;
845b51d6 138static int fix_v4bx = FALSE;
278df34e
NS
139/* Warn on using deprecated features. */
140static int warn_on_deprecated = TRUE;
141
03b1477f
RE
142
143/* Variables that we set while parsing command-line options. Once all
144 options have been read we re-process these values to set the real
145 assembly flags. */
e74cfd16
PB
146static const arm_feature_set *legacy_cpu = NULL;
147static const arm_feature_set *legacy_fpu = NULL;
148
149static const arm_feature_set *mcpu_cpu_opt = NULL;
150static const arm_feature_set *mcpu_fpu_opt = NULL;
151static const arm_feature_set *march_cpu_opt = NULL;
152static const arm_feature_set *march_fpu_opt = NULL;
153static const arm_feature_set *mfpu_opt = NULL;
7a1d4c38 154static const arm_feature_set *object_arch = NULL;
e74cfd16
PB
155
156/* Constants for known architecture features. */
157static const arm_feature_set fpu_default = FPU_DEFAULT;
158static const arm_feature_set fpu_arch_vfp_v1 = FPU_ARCH_VFP_V1;
159static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
5287ad62
JB
160static const arm_feature_set fpu_arch_vfp_v3 = FPU_ARCH_VFP_V3;
161static const arm_feature_set fpu_arch_neon_v1 = FPU_ARCH_NEON_V1;
e74cfd16
PB
162static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
163static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
164static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
165static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
166
167#ifdef CPU_DEFAULT
168static const arm_feature_set cpu_default = CPU_DEFAULT;
169#endif
170
171static const arm_feature_set arm_ext_v1 = ARM_FEATURE (ARM_EXT_V1, 0);
172static const arm_feature_set arm_ext_v2 = ARM_FEATURE (ARM_EXT_V1, 0);
173static const arm_feature_set arm_ext_v2s = ARM_FEATURE (ARM_EXT_V2S, 0);
174static const arm_feature_set arm_ext_v3 = ARM_FEATURE (ARM_EXT_V3, 0);
175static const arm_feature_set arm_ext_v3m = ARM_FEATURE (ARM_EXT_V3M, 0);
176static const arm_feature_set arm_ext_v4 = ARM_FEATURE (ARM_EXT_V4, 0);
177static const arm_feature_set arm_ext_v4t = ARM_FEATURE (ARM_EXT_V4T, 0);
178static const arm_feature_set arm_ext_v5 = ARM_FEATURE (ARM_EXT_V5, 0);
179static const arm_feature_set arm_ext_v4t_5 =
180 ARM_FEATURE (ARM_EXT_V4T | ARM_EXT_V5, 0);
181static const arm_feature_set arm_ext_v5t = ARM_FEATURE (ARM_EXT_V5T, 0);
182static const arm_feature_set arm_ext_v5e = ARM_FEATURE (ARM_EXT_V5E, 0);
183static const arm_feature_set arm_ext_v5exp = ARM_FEATURE (ARM_EXT_V5ExP, 0);
184static const arm_feature_set arm_ext_v5j = ARM_FEATURE (ARM_EXT_V5J, 0);
185static const arm_feature_set arm_ext_v6 = ARM_FEATURE (ARM_EXT_V6, 0);
186static const arm_feature_set arm_ext_v6k = ARM_FEATURE (ARM_EXT_V6K, 0);
e74cfd16 187static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE (ARM_EXT_V6T2, 0);
b2a5fbdc 188static const arm_feature_set arm_ext_v6m = ARM_FEATURE (ARM_EXT_V6M, 0);
62b3e311 189static const arm_feature_set arm_ext_v6_notm = ARM_FEATURE (ARM_EXT_V6_NOTM, 0);
9e3c6df6 190static const arm_feature_set arm_ext_v6_dsp = ARM_FEATURE (ARM_EXT_V6_DSP, 0);
7e806470
PB
191static const arm_feature_set arm_ext_barrier = ARM_FEATURE (ARM_EXT_BARRIER, 0);
192static const arm_feature_set arm_ext_msr = ARM_FEATURE (ARM_EXT_THUMB_MSR, 0);
62b3e311
PB
193static const arm_feature_set arm_ext_div = ARM_FEATURE (ARM_EXT_DIV, 0);
194static const arm_feature_set arm_ext_v7 = ARM_FEATURE (ARM_EXT_V7, 0);
195static const arm_feature_set arm_ext_v7a = ARM_FEATURE (ARM_EXT_V7A, 0);
196static const arm_feature_set arm_ext_v7r = ARM_FEATURE (ARM_EXT_V7R, 0);
9e3c6df6 197static const arm_feature_set arm_ext_v7m = ARM_FEATURE (ARM_EXT_V7M, 0);
bca38921 198static const arm_feature_set arm_ext_v8 = ARM_FEATURE (ARM_EXT_V8, 0);
7e806470 199static const arm_feature_set arm_ext_m =
b2a5fbdc 200 ARM_FEATURE (ARM_EXT_V6M | ARM_EXT_OS | ARM_EXT_V7M, 0);
60e5ef9f 201static const arm_feature_set arm_ext_mp = ARM_FEATURE (ARM_EXT_MP, 0);
f4c65163 202static const arm_feature_set arm_ext_sec = ARM_FEATURE (ARM_EXT_SEC, 0);
b2a5fbdc 203static const arm_feature_set arm_ext_os = ARM_FEATURE (ARM_EXT_OS, 0);
eea54501 204static const arm_feature_set arm_ext_adiv = ARM_FEATURE (ARM_EXT_ADIV, 0);
90ec0d68 205static const arm_feature_set arm_ext_virt = ARM_FEATURE (ARM_EXT_VIRT, 0);
e74cfd16
PB
206
207static const arm_feature_set arm_arch_any = ARM_ANY;
208static const arm_feature_set arm_arch_full = ARM_FEATURE (-1, -1);
209static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
210static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
251665fc 211static const arm_feature_set arm_arch_v6m_only = ARM_ARCH_V6M_ONLY;
e74cfd16 212
2d447fca
JM
213static const arm_feature_set arm_cext_iwmmxt2 =
214 ARM_FEATURE (0, ARM_CEXT_IWMMXT2);
e74cfd16
PB
215static const arm_feature_set arm_cext_iwmmxt =
216 ARM_FEATURE (0, ARM_CEXT_IWMMXT);
217static const arm_feature_set arm_cext_xscale =
218 ARM_FEATURE (0, ARM_CEXT_XSCALE);
219static const arm_feature_set arm_cext_maverick =
220 ARM_FEATURE (0, ARM_CEXT_MAVERICK);
221static const arm_feature_set fpu_fpa_ext_v1 = ARM_FEATURE (0, FPU_FPA_EXT_V1);
222static const arm_feature_set fpu_fpa_ext_v2 = ARM_FEATURE (0, FPU_FPA_EXT_V2);
223static const arm_feature_set fpu_vfp_ext_v1xd =
224 ARM_FEATURE (0, FPU_VFP_EXT_V1xD);
225static const arm_feature_set fpu_vfp_ext_v1 = ARM_FEATURE (0, FPU_VFP_EXT_V1);
226static const arm_feature_set fpu_vfp_ext_v2 = ARM_FEATURE (0, FPU_VFP_EXT_V2);
62f3b8c8 227static const arm_feature_set fpu_vfp_ext_v3xd = ARM_FEATURE (0, FPU_VFP_EXT_V3xD);
5287ad62 228static const arm_feature_set fpu_vfp_ext_v3 = ARM_FEATURE (0, FPU_VFP_EXT_V3);
b1cc4aeb
PB
229static const arm_feature_set fpu_vfp_ext_d32 =
230 ARM_FEATURE (0, FPU_VFP_EXT_D32);
5287ad62
JB
231static const arm_feature_set fpu_neon_ext_v1 = ARM_FEATURE (0, FPU_NEON_EXT_V1);
232static const arm_feature_set fpu_vfp_v3_or_neon_ext =
233 ARM_FEATURE (0, FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
62f3b8c8
PB
234static const arm_feature_set fpu_vfp_fp16 = ARM_FEATURE (0, FPU_VFP_EXT_FP16);
235static const arm_feature_set fpu_neon_ext_fma = ARM_FEATURE (0, FPU_NEON_EXT_FMA);
236static const arm_feature_set fpu_vfp_ext_fma = ARM_FEATURE (0, FPU_VFP_EXT_FMA);
bca38921
MGD
237static const arm_feature_set fpu_vfp_ext_armv8 =
238 ARM_FEATURE (0, FPU_VFP_EXT_ARMV8);
239static const arm_feature_set fpu_neon_ext_armv8 =
240 ARM_FEATURE (0, FPU_NEON_EXT_ARMV8);
241static const arm_feature_set fpu_crypto_ext_armv8 =
242 ARM_FEATURE (0, FPU_CRYPTO_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")
c19d1205 753
c921be7d
NC
754static struct hash_control * arm_ops_hsh;
755static struct hash_control * arm_cond_hsh;
756static struct hash_control * arm_shift_hsh;
757static struct hash_control * arm_psr_hsh;
758static struct hash_control * arm_v7m_psr_hsh;
759static struct hash_control * arm_reg_hsh;
760static struct hash_control * arm_reloc_hsh;
761static struct hash_control * arm_barrier_opt_hsh;
b99bd4ef 762
b99bd4ef
NC
763/* Stuff needed to resolve the label ambiguity
764 As:
765 ...
766 label: <insn>
767 may differ from:
768 ...
769 label:
5f4273c7 770 <insn> */
b99bd4ef
NC
771
772symbolS * last_label_seen;
b34976b6 773static int label_is_thumb_function_name = FALSE;
e07e6e58 774
3d0c9500
NC
775/* Literal pool structure. Held on a per-section
776 and per-sub-section basis. */
a737bd4d 777
c19d1205 778#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 779typedef struct literal_pool
b99bd4ef 780{
c921be7d
NC
781 expressionS literals [MAX_LITERAL_POOL_SIZE];
782 unsigned int next_free_entry;
783 unsigned int id;
784 symbolS * symbol;
785 segT section;
786 subsegT sub_section;
a8040cf2
NC
787#ifdef OBJ_ELF
788 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
789#endif
c921be7d 790 struct literal_pool * next;
3d0c9500 791} literal_pool;
b99bd4ef 792
3d0c9500
NC
793/* Pointer to a linked list of literal pools. */
794literal_pool * list_of_pools = NULL;
e27ec89e 795
e07e6e58
NC
796#ifdef OBJ_ELF
797# define now_it seg_info (now_seg)->tc_segment_info_data.current_it
798#else
799static struct current_it now_it;
800#endif
801
802static inline int
803now_it_compatible (int cond)
804{
805 return (cond & ~1) == (now_it.cc & ~1);
806}
807
808static inline int
809conditional_insn (void)
810{
811 return inst.cond != COND_ALWAYS;
812}
813
814static int in_it_block (void);
815
816static int handle_it_state (void);
817
818static void force_automatic_it_block_close (void);
819
c921be7d
NC
820static void it_fsm_post_encode (void);
821
e07e6e58
NC
822#define set_it_insn_type(type) \
823 do \
824 { \
825 inst.it_insn_type = type; \
826 if (handle_it_state () == FAIL) \
827 return; \
828 } \
829 while (0)
830
c921be7d
NC
831#define set_it_insn_type_nonvoid(type, failret) \
832 do \
833 { \
834 inst.it_insn_type = type; \
835 if (handle_it_state () == FAIL) \
836 return failret; \
837 } \
838 while(0)
839
e07e6e58
NC
840#define set_it_insn_type_last() \
841 do \
842 { \
843 if (inst.cond == COND_ALWAYS) \
844 set_it_insn_type (IF_INSIDE_IT_LAST_INSN); \
845 else \
846 set_it_insn_type (INSIDE_IT_LAST_INSN); \
847 } \
848 while (0)
849
c19d1205 850/* Pure syntax. */
b99bd4ef 851
c19d1205
ZW
852/* This array holds the chars that always start a comment. If the
853 pre-processor is disabled, these aren't very useful. */
854const char comment_chars[] = "@";
3d0c9500 855
c19d1205
ZW
856/* This array holds the chars that only start a comment at the beginning of
857 a line. If the line seems to have the form '# 123 filename'
858 .line and .file directives will appear in the pre-processed output. */
859/* Note that input_file.c hand checks for '#' at the beginning of the
860 first line of the input file. This is because the compiler outputs
861 #NO_APP at the beginning of its output. */
862/* Also note that comments like this one will always work. */
863const char line_comment_chars[] = "#";
3d0c9500 864
c19d1205 865const char line_separator_chars[] = ";";
b99bd4ef 866
c19d1205
ZW
867/* Chars that can be used to separate mant
868 from exp in floating point numbers. */
869const char EXP_CHARS[] = "eE";
3d0c9500 870
c19d1205
ZW
871/* Chars that mean this number is a floating point constant. */
872/* As in 0f12.456 */
873/* or 0d1.2345e12 */
b99bd4ef 874
c19d1205 875const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 876
c19d1205
ZW
877/* Prefix characters that indicate the start of an immediate
878 value. */
879#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 880
c19d1205
ZW
881/* Separator character handling. */
882
883#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
884
885static inline int
886skip_past_char (char ** str, char c)
887{
888 if (**str == c)
889 {
890 (*str)++;
891 return SUCCESS;
3d0c9500 892 }
c19d1205
ZW
893 else
894 return FAIL;
895}
c921be7d 896
c19d1205 897#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 898
c19d1205
ZW
899/* Arithmetic expressions (possibly involving symbols). */
900
901/* Return TRUE if anything in the expression is a bignum. */
902
903static int
904walk_no_bignums (symbolS * sp)
905{
906 if (symbol_get_value_expression (sp)->X_op == O_big)
907 return 1;
908
909 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 910 {
c19d1205
ZW
911 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
912 || (symbol_get_value_expression (sp)->X_op_symbol
913 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
914 }
915
c19d1205 916 return 0;
3d0c9500
NC
917}
918
c19d1205
ZW
919static int in_my_get_expression = 0;
920
921/* Third argument to my_get_expression. */
922#define GE_NO_PREFIX 0
923#define GE_IMM_PREFIX 1
924#define GE_OPT_PREFIX 2
5287ad62
JB
925/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
926 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
927#define GE_OPT_PREFIX_BIG 3
a737bd4d 928
b99bd4ef 929static int
c19d1205 930my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 931{
c19d1205
ZW
932 char * save_in;
933 segT seg;
b99bd4ef 934
c19d1205
ZW
935 /* In unified syntax, all prefixes are optional. */
936 if (unified_syntax)
5287ad62
JB
937 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
938 : GE_OPT_PREFIX;
b99bd4ef 939
c19d1205 940 switch (prefix_mode)
b99bd4ef 941 {
c19d1205
ZW
942 case GE_NO_PREFIX: break;
943 case GE_IMM_PREFIX:
944 if (!is_immediate_prefix (**str))
945 {
946 inst.error = _("immediate expression requires a # prefix");
947 return FAIL;
948 }
949 (*str)++;
950 break;
951 case GE_OPT_PREFIX:
5287ad62 952 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
953 if (is_immediate_prefix (**str))
954 (*str)++;
955 break;
956 default: abort ();
957 }
b99bd4ef 958
c19d1205 959 memset (ep, 0, sizeof (expressionS));
b99bd4ef 960
c19d1205
ZW
961 save_in = input_line_pointer;
962 input_line_pointer = *str;
963 in_my_get_expression = 1;
964 seg = expression (ep);
965 in_my_get_expression = 0;
966
f86adc07 967 if (ep->X_op == O_illegal || ep->X_op == O_absent)
b99bd4ef 968 {
f86adc07 969 /* We found a bad or missing expression in md_operand(). */
c19d1205
ZW
970 *str = input_line_pointer;
971 input_line_pointer = save_in;
972 if (inst.error == NULL)
f86adc07
NS
973 inst.error = (ep->X_op == O_absent
974 ? _("missing expression") :_("bad expression"));
c19d1205
ZW
975 return 1;
976 }
b99bd4ef 977
c19d1205
ZW
978#ifdef OBJ_AOUT
979 if (seg != absolute_section
980 && seg != text_section
981 && seg != data_section
982 && seg != bss_section
983 && seg != undefined_section)
984 {
985 inst.error = _("bad segment");
986 *str = input_line_pointer;
987 input_line_pointer = save_in;
988 return 1;
b99bd4ef 989 }
87975d2a
AM
990#else
991 (void) seg;
c19d1205 992#endif
b99bd4ef 993
c19d1205
ZW
994 /* Get rid of any bignums now, so that we don't generate an error for which
995 we can't establish a line number later on. Big numbers are never valid
996 in instructions, which is where this routine is always called. */
5287ad62
JB
997 if (prefix_mode != GE_OPT_PREFIX_BIG
998 && (ep->X_op == O_big
999 || (ep->X_add_symbol
1000 && (walk_no_bignums (ep->X_add_symbol)
1001 || (ep->X_op_symbol
1002 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
1003 {
1004 inst.error = _("invalid constant");
1005 *str = input_line_pointer;
1006 input_line_pointer = save_in;
1007 return 1;
1008 }
b99bd4ef 1009
c19d1205
ZW
1010 *str = input_line_pointer;
1011 input_line_pointer = save_in;
1012 return 0;
b99bd4ef
NC
1013}
1014
c19d1205
ZW
1015/* Turn a string in input_line_pointer into a floating point constant
1016 of type TYPE, and store the appropriate bytes in *LITP. The number
1017 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1018 returned, or NULL on OK.
b99bd4ef 1019
c19d1205
ZW
1020 Note that fp constants aren't represent in the normal way on the ARM.
1021 In big endian mode, things are as expected. However, in little endian
1022 mode fp constants are big-endian word-wise, and little-endian byte-wise
1023 within the words. For example, (double) 1.1 in big endian mode is
1024 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1025 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 1026
c19d1205 1027 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 1028
c19d1205
ZW
1029char *
1030md_atof (int type, char * litP, int * sizeP)
1031{
1032 int prec;
1033 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1034 char *t;
1035 int i;
b99bd4ef 1036
c19d1205
ZW
1037 switch (type)
1038 {
1039 case 'f':
1040 case 'F':
1041 case 's':
1042 case 'S':
1043 prec = 2;
1044 break;
b99bd4ef 1045
c19d1205
ZW
1046 case 'd':
1047 case 'D':
1048 case 'r':
1049 case 'R':
1050 prec = 4;
1051 break;
b99bd4ef 1052
c19d1205
ZW
1053 case 'x':
1054 case 'X':
499ac353 1055 prec = 5;
c19d1205 1056 break;
b99bd4ef 1057
c19d1205
ZW
1058 case 'p':
1059 case 'P':
499ac353 1060 prec = 5;
c19d1205 1061 break;
a737bd4d 1062
c19d1205
ZW
1063 default:
1064 *sizeP = 0;
499ac353 1065 return _("Unrecognized or unsupported floating point constant");
c19d1205 1066 }
b99bd4ef 1067
c19d1205
ZW
1068 t = atof_ieee (input_line_pointer, type, words);
1069 if (t)
1070 input_line_pointer = t;
499ac353 1071 *sizeP = prec * sizeof (LITTLENUM_TYPE);
b99bd4ef 1072
c19d1205
ZW
1073 if (target_big_endian)
1074 {
1075 for (i = 0; i < prec; i++)
1076 {
499ac353
NC
1077 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1078 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1079 }
1080 }
1081 else
1082 {
e74cfd16 1083 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
1084 for (i = prec - 1; i >= 0; i--)
1085 {
499ac353
NC
1086 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1087 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1088 }
1089 else
1090 /* For a 4 byte float the order of elements in `words' is 1 0.
1091 For an 8 byte float the order is 1 0 3 2. */
1092 for (i = 0; i < prec; i += 2)
1093 {
499ac353
NC
1094 md_number_to_chars (litP, (valueT) words[i + 1],
1095 sizeof (LITTLENUM_TYPE));
1096 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1097 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1098 litP += 2 * sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1099 }
1100 }
b99bd4ef 1101
499ac353 1102 return NULL;
c19d1205 1103}
b99bd4ef 1104
c19d1205
ZW
1105/* We handle all bad expressions here, so that we can report the faulty
1106 instruction in the error message. */
1107void
91d6fa6a 1108md_operand (expressionS * exp)
c19d1205
ZW
1109{
1110 if (in_my_get_expression)
91d6fa6a 1111 exp->X_op = O_illegal;
b99bd4ef
NC
1112}
1113
c19d1205 1114/* Immediate values. */
b99bd4ef 1115
c19d1205
ZW
1116/* Generic immediate-value read function for use in directives.
1117 Accepts anything that 'expression' can fold to a constant.
1118 *val receives the number. */
1119#ifdef OBJ_ELF
1120static int
1121immediate_for_directive (int *val)
b99bd4ef 1122{
c19d1205
ZW
1123 expressionS exp;
1124 exp.X_op = O_illegal;
b99bd4ef 1125
c19d1205
ZW
1126 if (is_immediate_prefix (*input_line_pointer))
1127 {
1128 input_line_pointer++;
1129 expression (&exp);
1130 }
b99bd4ef 1131
c19d1205
ZW
1132 if (exp.X_op != O_constant)
1133 {
1134 as_bad (_("expected #constant"));
1135 ignore_rest_of_line ();
1136 return FAIL;
1137 }
1138 *val = exp.X_add_number;
1139 return SUCCESS;
b99bd4ef 1140}
c19d1205 1141#endif
b99bd4ef 1142
c19d1205 1143/* Register parsing. */
b99bd4ef 1144
c19d1205
ZW
1145/* Generic register parser. CCP points to what should be the
1146 beginning of a register name. If it is indeed a valid register
1147 name, advance CCP over it and return the reg_entry structure;
1148 otherwise return NULL. Does not issue diagnostics. */
1149
1150static struct reg_entry *
1151arm_reg_parse_multi (char **ccp)
b99bd4ef 1152{
c19d1205
ZW
1153 char *start = *ccp;
1154 char *p;
1155 struct reg_entry *reg;
b99bd4ef 1156
c19d1205
ZW
1157#ifdef REGISTER_PREFIX
1158 if (*start != REGISTER_PREFIX)
01cfc07f 1159 return NULL;
c19d1205
ZW
1160 start++;
1161#endif
1162#ifdef OPTIONAL_REGISTER_PREFIX
1163 if (*start == OPTIONAL_REGISTER_PREFIX)
1164 start++;
1165#endif
b99bd4ef 1166
c19d1205
ZW
1167 p = start;
1168 if (!ISALPHA (*p) || !is_name_beginner (*p))
1169 return NULL;
b99bd4ef 1170
c19d1205
ZW
1171 do
1172 p++;
1173 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1174
1175 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1176
1177 if (!reg)
1178 return NULL;
1179
1180 *ccp = p;
1181 return reg;
b99bd4ef
NC
1182}
1183
1184static int
dcbf9037
JB
1185arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
1186 enum arm_reg_type type)
b99bd4ef 1187{
c19d1205
ZW
1188 /* Alternative syntaxes are accepted for a few register classes. */
1189 switch (type)
1190 {
1191 case REG_TYPE_MVF:
1192 case REG_TYPE_MVD:
1193 case REG_TYPE_MVFX:
1194 case REG_TYPE_MVDX:
1195 /* Generic coprocessor register names are allowed for these. */
79134647 1196 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1197 return reg->number;
1198 break;
69b97547 1199
c19d1205
ZW
1200 case REG_TYPE_CP:
1201 /* For backward compatibility, a bare number is valid here. */
1202 {
1203 unsigned long processor = strtoul (start, ccp, 10);
1204 if (*ccp != start && processor <= 15)
1205 return processor;
1206 }
6057a28f 1207
c19d1205
ZW
1208 case REG_TYPE_MMXWC:
1209 /* WC includes WCG. ??? I'm not sure this is true for all
1210 instructions that take WC registers. */
79134647 1211 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1212 return reg->number;
6057a28f 1213 break;
c19d1205 1214
6057a28f 1215 default:
c19d1205 1216 break;
6057a28f
NC
1217 }
1218
dcbf9037
JB
1219 return FAIL;
1220}
1221
1222/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1223 return value is the register number or FAIL. */
1224
1225static int
1226arm_reg_parse (char **ccp, enum arm_reg_type type)
1227{
1228 char *start = *ccp;
1229 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1230 int ret;
1231
1232 /* Do not allow a scalar (reg+index) to parse as a register. */
1233 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1234 return FAIL;
1235
1236 if (reg && reg->type == type)
1237 return reg->number;
1238
1239 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1240 return ret;
1241
c19d1205
ZW
1242 *ccp = start;
1243 return FAIL;
1244}
69b97547 1245
dcbf9037
JB
1246/* Parse a Neon type specifier. *STR should point at the leading '.'
1247 character. Does no verification at this stage that the type fits the opcode
1248 properly. E.g.,
1249
1250 .i32.i32.s16
1251 .s32.f32
1252 .u16
1253
1254 Can all be legally parsed by this function.
1255
1256 Fills in neon_type struct pointer with parsed information, and updates STR
1257 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1258 type, FAIL if not. */
1259
1260static int
1261parse_neon_type (struct neon_type *type, char **str)
1262{
1263 char *ptr = *str;
1264
1265 if (type)
1266 type->elems = 0;
1267
1268 while (type->elems < NEON_MAX_TYPE_ELS)
1269 {
1270 enum neon_el_type thistype = NT_untyped;
1271 unsigned thissize = -1u;
1272
1273 if (*ptr != '.')
1274 break;
1275
1276 ptr++;
1277
1278 /* Just a size without an explicit type. */
1279 if (ISDIGIT (*ptr))
1280 goto parsesize;
1281
1282 switch (TOLOWER (*ptr))
1283 {
1284 case 'i': thistype = NT_integer; break;
1285 case 'f': thistype = NT_float; break;
1286 case 'p': thistype = NT_poly; break;
1287 case 's': thistype = NT_signed; break;
1288 case 'u': thistype = NT_unsigned; break;
037e8744
JB
1289 case 'd':
1290 thistype = NT_float;
1291 thissize = 64;
1292 ptr++;
1293 goto done;
dcbf9037
JB
1294 default:
1295 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1296 return FAIL;
1297 }
1298
1299 ptr++;
1300
1301 /* .f is an abbreviation for .f32. */
1302 if (thistype == NT_float && !ISDIGIT (*ptr))
1303 thissize = 32;
1304 else
1305 {
1306 parsesize:
1307 thissize = strtoul (ptr, &ptr, 10);
1308
1309 if (thissize != 8 && thissize != 16 && thissize != 32
1310 && thissize != 64)
1311 {
1312 as_bad (_("bad size %d in type specifier"), thissize);
1313 return FAIL;
1314 }
1315 }
1316
037e8744 1317 done:
dcbf9037
JB
1318 if (type)
1319 {
1320 type->el[type->elems].type = thistype;
1321 type->el[type->elems].size = thissize;
1322 type->elems++;
1323 }
1324 }
1325
1326 /* Empty/missing type is not a successful parse. */
1327 if (type->elems == 0)
1328 return FAIL;
1329
1330 *str = ptr;
1331
1332 return SUCCESS;
1333}
1334
1335/* Errors may be set multiple times during parsing or bit encoding
1336 (particularly in the Neon bits), but usually the earliest error which is set
1337 will be the most meaningful. Avoid overwriting it with later (cascading)
1338 errors by calling this function. */
1339
1340static void
1341first_error (const char *err)
1342{
1343 if (!inst.error)
1344 inst.error = err;
1345}
1346
1347/* Parse a single type, e.g. ".s32", leading period included. */
1348static int
1349parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1350{
1351 char *str = *ccp;
1352 struct neon_type optype;
1353
1354 if (*str == '.')
1355 {
1356 if (parse_neon_type (&optype, &str) == SUCCESS)
1357 {
1358 if (optype.elems == 1)
1359 *vectype = optype.el[0];
1360 else
1361 {
1362 first_error (_("only one type should be specified for operand"));
1363 return FAIL;
1364 }
1365 }
1366 else
1367 {
1368 first_error (_("vector type expected"));
1369 return FAIL;
1370 }
1371 }
1372 else
1373 return FAIL;
5f4273c7 1374
dcbf9037 1375 *ccp = str;
5f4273c7 1376
dcbf9037
JB
1377 return SUCCESS;
1378}
1379
1380/* Special meanings for indices (which have a range of 0-7), which will fit into
1381 a 4-bit integer. */
1382
1383#define NEON_ALL_LANES 15
1384#define NEON_INTERLEAVE_LANES 14
1385
1386/* Parse either a register or a scalar, with an optional type. Return the
1387 register number, and optionally fill in the actual type of the register
1388 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1389 type/index information in *TYPEINFO. */
1390
1391static int
1392parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
1393 enum arm_reg_type *rtype,
1394 struct neon_typed_alias *typeinfo)
1395{
1396 char *str = *ccp;
1397 struct reg_entry *reg = arm_reg_parse_multi (&str);
1398 struct neon_typed_alias atype;
1399 struct neon_type_el parsetype;
1400
1401 atype.defined = 0;
1402 atype.index = -1;
1403 atype.eltype.type = NT_invtype;
1404 atype.eltype.size = -1;
1405
1406 /* Try alternate syntax for some types of register. Note these are mutually
1407 exclusive with the Neon syntax extensions. */
1408 if (reg == NULL)
1409 {
1410 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1411 if (altreg != FAIL)
1412 *ccp = str;
1413 if (typeinfo)
1414 *typeinfo = atype;
1415 return altreg;
1416 }
1417
037e8744
JB
1418 /* Undo polymorphism when a set of register types may be accepted. */
1419 if ((type == REG_TYPE_NDQ
1420 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1421 || (type == REG_TYPE_VFSD
1422 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1423 || (type == REG_TYPE_NSDQ
1424 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
f512f76f
NC
1425 || reg->type == REG_TYPE_NQ))
1426 || (type == REG_TYPE_MMXWC
1427 && (reg->type == REG_TYPE_MMXWCG)))
21d799b5 1428 type = (enum arm_reg_type) reg->type;
dcbf9037
JB
1429
1430 if (type != reg->type)
1431 return FAIL;
1432
1433 if (reg->neon)
1434 atype = *reg->neon;
5f4273c7 1435
dcbf9037
JB
1436 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1437 {
1438 if ((atype.defined & NTA_HASTYPE) != 0)
1439 {
1440 first_error (_("can't redefine type for operand"));
1441 return FAIL;
1442 }
1443 atype.defined |= NTA_HASTYPE;
1444 atype.eltype = parsetype;
1445 }
5f4273c7 1446
dcbf9037
JB
1447 if (skip_past_char (&str, '[') == SUCCESS)
1448 {
1449 if (type != REG_TYPE_VFD)
1450 {
1451 first_error (_("only D registers may be indexed"));
1452 return FAIL;
1453 }
5f4273c7 1454
dcbf9037
JB
1455 if ((atype.defined & NTA_HASINDEX) != 0)
1456 {
1457 first_error (_("can't change index for operand"));
1458 return FAIL;
1459 }
1460
1461 atype.defined |= NTA_HASINDEX;
1462
1463 if (skip_past_char (&str, ']') == SUCCESS)
1464 atype.index = NEON_ALL_LANES;
1465 else
1466 {
1467 expressionS exp;
1468
1469 my_get_expression (&exp, &str, GE_NO_PREFIX);
1470
1471 if (exp.X_op != O_constant)
1472 {
1473 first_error (_("constant expression required"));
1474 return FAIL;
1475 }
1476
1477 if (skip_past_char (&str, ']') == FAIL)
1478 return FAIL;
1479
1480 atype.index = exp.X_add_number;
1481 }
1482 }
5f4273c7 1483
dcbf9037
JB
1484 if (typeinfo)
1485 *typeinfo = atype;
5f4273c7 1486
dcbf9037
JB
1487 if (rtype)
1488 *rtype = type;
5f4273c7 1489
dcbf9037 1490 *ccp = str;
5f4273c7 1491
dcbf9037
JB
1492 return reg->number;
1493}
1494
1495/* Like arm_reg_parse, but allow allow the following extra features:
1496 - If RTYPE is non-zero, return the (possibly restricted) type of the
1497 register (e.g. Neon double or quad reg when either has been requested).
1498 - If this is a Neon vector type with additional type information, fill
1499 in the struct pointed to by VECTYPE (if non-NULL).
5f4273c7 1500 This function will fault on encountering a scalar. */
dcbf9037
JB
1501
1502static int
1503arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
1504 enum arm_reg_type *rtype, struct neon_type_el *vectype)
1505{
1506 struct neon_typed_alias atype;
1507 char *str = *ccp;
1508 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1509
1510 if (reg == FAIL)
1511 return FAIL;
1512
0855e32b
NS
1513 /* Do not allow regname(... to parse as a register. */
1514 if (*str == '(')
1515 return FAIL;
1516
dcbf9037
JB
1517 /* Do not allow a scalar (reg+index) to parse as a register. */
1518 if ((atype.defined & NTA_HASINDEX) != 0)
1519 {
1520 first_error (_("register operand expected, but got scalar"));
1521 return FAIL;
1522 }
1523
1524 if (vectype)
1525 *vectype = atype.eltype;
1526
1527 *ccp = str;
1528
1529 return reg;
1530}
1531
1532#define NEON_SCALAR_REG(X) ((X) >> 4)
1533#define NEON_SCALAR_INDEX(X) ((X) & 15)
1534
5287ad62
JB
1535/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1536 have enough information to be able to do a good job bounds-checking. So, we
1537 just do easy checks here, and do further checks later. */
1538
1539static int
dcbf9037 1540parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1541{
dcbf9037 1542 int reg;
5287ad62 1543 char *str = *ccp;
dcbf9037 1544 struct neon_typed_alias atype;
5f4273c7 1545
dcbf9037 1546 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5f4273c7 1547
dcbf9037 1548 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62 1549 return FAIL;
5f4273c7 1550
dcbf9037 1551 if (atype.index == NEON_ALL_LANES)
5287ad62 1552 {
dcbf9037 1553 first_error (_("scalar must have an index"));
5287ad62
JB
1554 return FAIL;
1555 }
dcbf9037 1556 else if (atype.index >= 64 / elsize)
5287ad62 1557 {
dcbf9037 1558 first_error (_("scalar index out of range"));
5287ad62
JB
1559 return FAIL;
1560 }
5f4273c7 1561
dcbf9037
JB
1562 if (type)
1563 *type = atype.eltype;
5f4273c7 1564
5287ad62 1565 *ccp = str;
5f4273c7 1566
dcbf9037 1567 return reg * 16 + atype.index;
5287ad62
JB
1568}
1569
c19d1205 1570/* Parse an ARM register list. Returns the bitmask, or FAIL. */
e07e6e58 1571
c19d1205
ZW
1572static long
1573parse_reg_list (char ** strp)
1574{
1575 char * str = * strp;
1576 long range = 0;
1577 int another_range;
a737bd4d 1578
c19d1205
ZW
1579 /* We come back here if we get ranges concatenated by '+' or '|'. */
1580 do
6057a28f 1581 {
c19d1205 1582 another_range = 0;
a737bd4d 1583
c19d1205
ZW
1584 if (*str == '{')
1585 {
1586 int in_range = 0;
1587 int cur_reg = -1;
a737bd4d 1588
c19d1205
ZW
1589 str++;
1590 do
1591 {
1592 int reg;
6057a28f 1593
dcbf9037 1594 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1595 {
dcbf9037 1596 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1597 return FAIL;
1598 }
a737bd4d 1599
c19d1205
ZW
1600 if (in_range)
1601 {
1602 int i;
a737bd4d 1603
c19d1205
ZW
1604 if (reg <= cur_reg)
1605 {
dcbf9037 1606 first_error (_("bad range in register list"));
c19d1205
ZW
1607 return FAIL;
1608 }
40a18ebd 1609
c19d1205
ZW
1610 for (i = cur_reg + 1; i < reg; i++)
1611 {
1612 if (range & (1 << i))
1613 as_tsktsk
1614 (_("Warning: duplicated register (r%d) in register list"),
1615 i);
1616 else
1617 range |= 1 << i;
1618 }
1619 in_range = 0;
1620 }
a737bd4d 1621
c19d1205
ZW
1622 if (range & (1 << reg))
1623 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1624 reg);
1625 else if (reg <= cur_reg)
1626 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1627
c19d1205
ZW
1628 range |= 1 << reg;
1629 cur_reg = reg;
1630 }
1631 while (skip_past_comma (&str) != FAIL
1632 || (in_range = 1, *str++ == '-'));
1633 str--;
a737bd4d 1634
c19d1205
ZW
1635 if (*str++ != '}')
1636 {
dcbf9037 1637 first_error (_("missing `}'"));
c19d1205
ZW
1638 return FAIL;
1639 }
1640 }
1641 else
1642 {
91d6fa6a 1643 expressionS exp;
40a18ebd 1644
91d6fa6a 1645 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
c19d1205 1646 return FAIL;
40a18ebd 1647
91d6fa6a 1648 if (exp.X_op == O_constant)
c19d1205 1649 {
91d6fa6a
NC
1650 if (exp.X_add_number
1651 != (exp.X_add_number & 0x0000ffff))
c19d1205
ZW
1652 {
1653 inst.error = _("invalid register mask");
1654 return FAIL;
1655 }
a737bd4d 1656
91d6fa6a 1657 if ((range & exp.X_add_number) != 0)
c19d1205 1658 {
91d6fa6a 1659 int regno = range & exp.X_add_number;
a737bd4d 1660
c19d1205
ZW
1661 regno &= -regno;
1662 regno = (1 << regno) - 1;
1663 as_tsktsk
1664 (_("Warning: duplicated register (r%d) in register list"),
1665 regno);
1666 }
a737bd4d 1667
91d6fa6a 1668 range |= exp.X_add_number;
c19d1205
ZW
1669 }
1670 else
1671 {
1672 if (inst.reloc.type != 0)
1673 {
1674 inst.error = _("expression too complex");
1675 return FAIL;
1676 }
a737bd4d 1677
91d6fa6a 1678 memcpy (&inst.reloc.exp, &exp, sizeof (expressionS));
c19d1205
ZW
1679 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1680 inst.reloc.pc_rel = 0;
1681 }
1682 }
a737bd4d 1683
c19d1205
ZW
1684 if (*str == '|' || *str == '+')
1685 {
1686 str++;
1687 another_range = 1;
1688 }
a737bd4d 1689 }
c19d1205 1690 while (another_range);
a737bd4d 1691
c19d1205
ZW
1692 *strp = str;
1693 return range;
a737bd4d
NC
1694}
1695
5287ad62
JB
1696/* Types of registers in a list. */
1697
1698enum reg_list_els
1699{
1700 REGLIST_VFP_S,
1701 REGLIST_VFP_D,
1702 REGLIST_NEON_D
1703};
1704
c19d1205
ZW
1705/* Parse a VFP register list. If the string is invalid return FAIL.
1706 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1707 register. Parses registers of type ETYPE.
1708 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1709 - Q registers can be used to specify pairs of D registers
1710 - { } can be omitted from around a singleton register list
1711 FIXME: This is not implemented, as it would require backtracking in
1712 some cases, e.g.:
1713 vtbl.8 d3,d4,d5
1714 This could be done (the meaning isn't really ambiguous), but doesn't
1715 fit in well with the current parsing framework.
dcbf9037
JB
1716 - 32 D registers may be used (also true for VFPv3).
1717 FIXME: Types are ignored in these register lists, which is probably a
1718 bug. */
6057a28f 1719
c19d1205 1720static int
037e8744 1721parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1722{
037e8744 1723 char *str = *ccp;
c19d1205
ZW
1724 int base_reg;
1725 int new_base;
21d799b5 1726 enum arm_reg_type regtype = (enum arm_reg_type) 0;
5287ad62 1727 int max_regs = 0;
c19d1205
ZW
1728 int count = 0;
1729 int warned = 0;
1730 unsigned long mask = 0;
a737bd4d 1731 int i;
6057a28f 1732
037e8744 1733 if (*str != '{')
5287ad62
JB
1734 {
1735 inst.error = _("expecting {");
1736 return FAIL;
1737 }
6057a28f 1738
037e8744 1739 str++;
6057a28f 1740
5287ad62 1741 switch (etype)
c19d1205 1742 {
5287ad62 1743 case REGLIST_VFP_S:
c19d1205
ZW
1744 regtype = REG_TYPE_VFS;
1745 max_regs = 32;
5287ad62 1746 break;
5f4273c7 1747
5287ad62
JB
1748 case REGLIST_VFP_D:
1749 regtype = REG_TYPE_VFD;
b7fc2769 1750 break;
5f4273c7 1751
b7fc2769
JB
1752 case REGLIST_NEON_D:
1753 regtype = REG_TYPE_NDQ;
1754 break;
1755 }
1756
1757 if (etype != REGLIST_VFP_S)
1758 {
b1cc4aeb
PB
1759 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
1760 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
5287ad62
JB
1761 {
1762 max_regs = 32;
1763 if (thumb_mode)
1764 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
b1cc4aeb 1765 fpu_vfp_ext_d32);
5287ad62
JB
1766 else
1767 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
b1cc4aeb 1768 fpu_vfp_ext_d32);
5287ad62
JB
1769 }
1770 else
1771 max_regs = 16;
c19d1205 1772 }
6057a28f 1773
c19d1205 1774 base_reg = max_regs;
a737bd4d 1775
c19d1205
ZW
1776 do
1777 {
5287ad62 1778 int setmask = 1, addregs = 1;
dcbf9037 1779
037e8744 1780 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1781
c19d1205 1782 if (new_base == FAIL)
a737bd4d 1783 {
dcbf9037 1784 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1785 return FAIL;
1786 }
5f4273c7 1787
b7fc2769
JB
1788 if (new_base >= max_regs)
1789 {
1790 first_error (_("register out of range in list"));
1791 return FAIL;
1792 }
5f4273c7 1793
5287ad62
JB
1794 /* Note: a value of 2 * n is returned for the register Q<n>. */
1795 if (regtype == REG_TYPE_NQ)
1796 {
1797 setmask = 3;
1798 addregs = 2;
1799 }
1800
c19d1205
ZW
1801 if (new_base < base_reg)
1802 base_reg = new_base;
a737bd4d 1803
5287ad62 1804 if (mask & (setmask << new_base))
c19d1205 1805 {
dcbf9037 1806 first_error (_("invalid register list"));
c19d1205 1807 return FAIL;
a737bd4d 1808 }
a737bd4d 1809
c19d1205
ZW
1810 if ((mask >> new_base) != 0 && ! warned)
1811 {
1812 as_tsktsk (_("register list not in ascending order"));
1813 warned = 1;
1814 }
0bbf2aa4 1815
5287ad62
JB
1816 mask |= setmask << new_base;
1817 count += addregs;
0bbf2aa4 1818
037e8744 1819 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1820 {
1821 int high_range;
0bbf2aa4 1822
037e8744 1823 str++;
0bbf2aa4 1824
037e8744 1825 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
dcbf9037 1826 == FAIL)
c19d1205
ZW
1827 {
1828 inst.error = gettext (reg_expected_msgs[regtype]);
1829 return FAIL;
1830 }
0bbf2aa4 1831
b7fc2769
JB
1832 if (high_range >= max_regs)
1833 {
1834 first_error (_("register out of range in list"));
1835 return FAIL;
1836 }
1837
5287ad62
JB
1838 if (regtype == REG_TYPE_NQ)
1839 high_range = high_range + 1;
1840
c19d1205
ZW
1841 if (high_range <= new_base)
1842 {
1843 inst.error = _("register range not in ascending order");
1844 return FAIL;
1845 }
0bbf2aa4 1846
5287ad62 1847 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1848 {
5287ad62 1849 if (mask & (setmask << new_base))
0bbf2aa4 1850 {
c19d1205
ZW
1851 inst.error = _("invalid register list");
1852 return FAIL;
0bbf2aa4 1853 }
c19d1205 1854
5287ad62
JB
1855 mask |= setmask << new_base;
1856 count += addregs;
0bbf2aa4 1857 }
0bbf2aa4 1858 }
0bbf2aa4 1859 }
037e8744 1860 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1861
037e8744 1862 str++;
0bbf2aa4 1863
c19d1205
ZW
1864 /* Sanity check -- should have raised a parse error above. */
1865 if (count == 0 || count > max_regs)
1866 abort ();
1867
1868 *pbase = base_reg;
1869
1870 /* Final test -- the registers must be consecutive. */
1871 mask >>= base_reg;
1872 for (i = 0; i < count; i++)
1873 {
1874 if ((mask & (1u << i)) == 0)
1875 {
1876 inst.error = _("non-contiguous register range");
1877 return FAIL;
1878 }
1879 }
1880
037e8744
JB
1881 *ccp = str;
1882
c19d1205 1883 return count;
b99bd4ef
NC
1884}
1885
dcbf9037
JB
1886/* True if two alias types are the same. */
1887
c921be7d 1888static bfd_boolean
dcbf9037
JB
1889neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1890{
1891 if (!a && !b)
c921be7d 1892 return TRUE;
5f4273c7 1893
dcbf9037 1894 if (!a || !b)
c921be7d 1895 return FALSE;
dcbf9037
JB
1896
1897 if (a->defined != b->defined)
c921be7d 1898 return FALSE;
5f4273c7 1899
dcbf9037
JB
1900 if ((a->defined & NTA_HASTYPE) != 0
1901 && (a->eltype.type != b->eltype.type
1902 || a->eltype.size != b->eltype.size))
c921be7d 1903 return FALSE;
dcbf9037
JB
1904
1905 if ((a->defined & NTA_HASINDEX) != 0
1906 && (a->index != b->index))
c921be7d 1907 return FALSE;
5f4273c7 1908
c921be7d 1909 return TRUE;
dcbf9037
JB
1910}
1911
5287ad62
JB
1912/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1913 The base register is put in *PBASE.
dcbf9037 1914 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1915 the return value.
1916 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1917 Bits [6:5] encode the list length (minus one).
1918 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1919
5287ad62 1920#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1921#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1922#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1923
1924static int
dcbf9037
JB
1925parse_neon_el_struct_list (char **str, unsigned *pbase,
1926 struct neon_type_el *eltype)
5287ad62
JB
1927{
1928 char *ptr = *str;
1929 int base_reg = -1;
1930 int reg_incr = -1;
1931 int count = 0;
1932 int lane = -1;
1933 int leading_brace = 0;
1934 enum arm_reg_type rtype = REG_TYPE_NDQ;
20203fb9
NC
1935 const char *const incr_error = _("register stride must be 1 or 2");
1936 const char *const type_error = _("mismatched element/structure types in list");
dcbf9037 1937 struct neon_typed_alias firsttype;
5f4273c7 1938
5287ad62
JB
1939 if (skip_past_char (&ptr, '{') == SUCCESS)
1940 leading_brace = 1;
5f4273c7 1941
5287ad62
JB
1942 do
1943 {
dcbf9037
JB
1944 struct neon_typed_alias atype;
1945 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
1946
5287ad62
JB
1947 if (getreg == FAIL)
1948 {
dcbf9037 1949 first_error (_(reg_expected_msgs[rtype]));
5287ad62
JB
1950 return FAIL;
1951 }
5f4273c7 1952
5287ad62
JB
1953 if (base_reg == -1)
1954 {
1955 base_reg = getreg;
1956 if (rtype == REG_TYPE_NQ)
1957 {
1958 reg_incr = 1;
5287ad62 1959 }
dcbf9037 1960 firsttype = atype;
5287ad62
JB
1961 }
1962 else if (reg_incr == -1)
1963 {
1964 reg_incr = getreg - base_reg;
1965 if (reg_incr < 1 || reg_incr > 2)
1966 {
dcbf9037 1967 first_error (_(incr_error));
5287ad62
JB
1968 return FAIL;
1969 }
1970 }
1971 else if (getreg != base_reg + reg_incr * count)
1972 {
dcbf9037
JB
1973 first_error (_(incr_error));
1974 return FAIL;
1975 }
1976
c921be7d 1977 if (! neon_alias_types_same (&atype, &firsttype))
dcbf9037
JB
1978 {
1979 first_error (_(type_error));
5287ad62
JB
1980 return FAIL;
1981 }
5f4273c7 1982
5287ad62
JB
1983 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
1984 modes. */
1985 if (ptr[0] == '-')
1986 {
dcbf9037 1987 struct neon_typed_alias htype;
5287ad62
JB
1988 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
1989 if (lane == -1)
1990 lane = NEON_INTERLEAVE_LANES;
1991 else if (lane != NEON_INTERLEAVE_LANES)
1992 {
dcbf9037 1993 first_error (_(type_error));
5287ad62
JB
1994 return FAIL;
1995 }
1996 if (reg_incr == -1)
1997 reg_incr = 1;
1998 else if (reg_incr != 1)
1999 {
dcbf9037 2000 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
5287ad62
JB
2001 return FAIL;
2002 }
2003 ptr++;
dcbf9037 2004 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
5287ad62
JB
2005 if (hireg == FAIL)
2006 {
dcbf9037
JB
2007 first_error (_(reg_expected_msgs[rtype]));
2008 return FAIL;
2009 }
c921be7d 2010 if (! neon_alias_types_same (&htype, &firsttype))
dcbf9037
JB
2011 {
2012 first_error (_(type_error));
5287ad62
JB
2013 return FAIL;
2014 }
2015 count += hireg + dregs - getreg;
2016 continue;
2017 }
5f4273c7 2018
5287ad62
JB
2019 /* If we're using Q registers, we can't use [] or [n] syntax. */
2020 if (rtype == REG_TYPE_NQ)
2021 {
2022 count += 2;
2023 continue;
2024 }
5f4273c7 2025
dcbf9037 2026 if ((atype.defined & NTA_HASINDEX) != 0)
5287ad62 2027 {
dcbf9037
JB
2028 if (lane == -1)
2029 lane = atype.index;
2030 else if (lane != atype.index)
5287ad62 2031 {
dcbf9037
JB
2032 first_error (_(type_error));
2033 return FAIL;
5287ad62
JB
2034 }
2035 }
2036 else if (lane == -1)
2037 lane = NEON_INTERLEAVE_LANES;
2038 else if (lane != NEON_INTERLEAVE_LANES)
2039 {
dcbf9037 2040 first_error (_(type_error));
5287ad62
JB
2041 return FAIL;
2042 }
2043 count++;
2044 }
2045 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
5f4273c7 2046
5287ad62
JB
2047 /* No lane set by [x]. We must be interleaving structures. */
2048 if (lane == -1)
2049 lane = NEON_INTERLEAVE_LANES;
5f4273c7 2050
5287ad62
JB
2051 /* Sanity check. */
2052 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
2053 || (count > 1 && reg_incr == -1))
2054 {
dcbf9037 2055 first_error (_("error parsing element/structure list"));
5287ad62
JB
2056 return FAIL;
2057 }
2058
2059 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2060 {
dcbf9037 2061 first_error (_("expected }"));
5287ad62
JB
2062 return FAIL;
2063 }
5f4273c7 2064
5287ad62
JB
2065 if (reg_incr == -1)
2066 reg_incr = 1;
2067
dcbf9037
JB
2068 if (eltype)
2069 *eltype = firsttype.eltype;
2070
5287ad62
JB
2071 *pbase = base_reg;
2072 *str = ptr;
5f4273c7 2073
5287ad62
JB
2074 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2075}
2076
c19d1205
ZW
2077/* Parse an explicit relocation suffix on an expression. This is
2078 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2079 arm_reloc_hsh contains no entries, so this function can only
2080 succeed if there is no () after the word. Returns -1 on error,
2081 BFD_RELOC_UNUSED if there wasn't any suffix. */
3da1d841 2082
c19d1205
ZW
2083static int
2084parse_reloc (char **str)
b99bd4ef 2085{
c19d1205
ZW
2086 struct reloc_entry *r;
2087 char *p, *q;
b99bd4ef 2088
c19d1205
ZW
2089 if (**str != '(')
2090 return BFD_RELOC_UNUSED;
b99bd4ef 2091
c19d1205
ZW
2092 p = *str + 1;
2093 q = p;
2094
2095 while (*q && *q != ')' && *q != ',')
2096 q++;
2097 if (*q != ')')
2098 return -1;
2099
21d799b5
NC
2100 if ((r = (struct reloc_entry *)
2101 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
c19d1205
ZW
2102 return -1;
2103
2104 *str = q + 1;
2105 return r->reloc;
b99bd4ef
NC
2106}
2107
c19d1205
ZW
2108/* Directives: register aliases. */
2109
dcbf9037 2110static struct reg_entry *
90ec0d68 2111insert_reg_alias (char *str, unsigned number, int type)
b99bd4ef 2112{
d3ce72d0 2113 struct reg_entry *new_reg;
c19d1205 2114 const char *name;
b99bd4ef 2115
d3ce72d0 2116 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
c19d1205 2117 {
d3ce72d0 2118 if (new_reg->builtin)
c19d1205 2119 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 2120
c19d1205
ZW
2121 /* Only warn about a redefinition if it's not defined as the
2122 same register. */
d3ce72d0 2123 else if (new_reg->number != number || new_reg->type != type)
c19d1205 2124 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 2125
d929913e 2126 return NULL;
c19d1205 2127 }
b99bd4ef 2128
c19d1205 2129 name = xstrdup (str);
d3ce72d0 2130 new_reg = (struct reg_entry *) xmalloc (sizeof (struct reg_entry));
b99bd4ef 2131
d3ce72d0
NC
2132 new_reg->name = name;
2133 new_reg->number = number;
2134 new_reg->type = type;
2135 new_reg->builtin = FALSE;
2136 new_reg->neon = NULL;
b99bd4ef 2137
d3ce72d0 2138 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
c19d1205 2139 abort ();
5f4273c7 2140
d3ce72d0 2141 return new_reg;
dcbf9037
JB
2142}
2143
2144static void
2145insert_neon_reg_alias (char *str, int number, int type,
2146 struct neon_typed_alias *atype)
2147{
2148 struct reg_entry *reg = insert_reg_alias (str, number, type);
5f4273c7 2149
dcbf9037
JB
2150 if (!reg)
2151 {
2152 first_error (_("attempt to redefine typed alias"));
2153 return;
2154 }
5f4273c7 2155
dcbf9037
JB
2156 if (atype)
2157 {
21d799b5
NC
2158 reg->neon = (struct neon_typed_alias *)
2159 xmalloc (sizeof (struct neon_typed_alias));
dcbf9037
JB
2160 *reg->neon = *atype;
2161 }
c19d1205 2162}
b99bd4ef 2163
c19d1205 2164/* Look for the .req directive. This is of the form:
b99bd4ef 2165
c19d1205 2166 new_register_name .req existing_register_name
b99bd4ef 2167
c19d1205 2168 If we find one, or if it looks sufficiently like one that we want to
d929913e 2169 handle any error here, return TRUE. Otherwise return FALSE. */
b99bd4ef 2170
d929913e 2171static bfd_boolean
c19d1205
ZW
2172create_register_alias (char * newname, char *p)
2173{
2174 struct reg_entry *old;
2175 char *oldname, *nbuf;
2176 size_t nlen;
b99bd4ef 2177
c19d1205
ZW
2178 /* The input scrubber ensures that whitespace after the mnemonic is
2179 collapsed to single spaces. */
2180 oldname = p;
2181 if (strncmp (oldname, " .req ", 6) != 0)
d929913e 2182 return FALSE;
b99bd4ef 2183
c19d1205
ZW
2184 oldname += 6;
2185 if (*oldname == '\0')
d929913e 2186 return FALSE;
b99bd4ef 2187
21d799b5 2188 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
c19d1205 2189 if (!old)
b99bd4ef 2190 {
c19d1205 2191 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
d929913e 2192 return TRUE;
b99bd4ef
NC
2193 }
2194
c19d1205
ZW
2195 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2196 the desired alias name, and p points to its end. If not, then
2197 the desired alias name is in the global original_case_string. */
2198#ifdef TC_CASE_SENSITIVE
2199 nlen = p - newname;
2200#else
2201 newname = original_case_string;
2202 nlen = strlen (newname);
2203#endif
b99bd4ef 2204
21d799b5 2205 nbuf = (char *) alloca (nlen + 1);
c19d1205
ZW
2206 memcpy (nbuf, newname, nlen);
2207 nbuf[nlen] = '\0';
b99bd4ef 2208
c19d1205
ZW
2209 /* Create aliases under the new name as stated; an all-lowercase
2210 version of the new name; and an all-uppercase version of the new
2211 name. */
d929913e
NC
2212 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2213 {
2214 for (p = nbuf; *p; p++)
2215 *p = TOUPPER (*p);
c19d1205 2216
d929913e
NC
2217 if (strncmp (nbuf, newname, nlen))
2218 {
2219 /* If this attempt to create an additional alias fails, do not bother
2220 trying to create the all-lower case alias. We will fail and issue
2221 a second, duplicate error message. This situation arises when the
2222 programmer does something like:
2223 foo .req r0
2224 Foo .req r1
2225 The second .req creates the "Foo" alias but then fails to create
5f4273c7 2226 the artificial FOO alias because it has already been created by the
d929913e
NC
2227 first .req. */
2228 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
2229 return TRUE;
2230 }
c19d1205 2231
d929913e
NC
2232 for (p = nbuf; *p; p++)
2233 *p = TOLOWER (*p);
c19d1205 2234
d929913e
NC
2235 if (strncmp (nbuf, newname, nlen))
2236 insert_reg_alias (nbuf, old->number, old->type);
2237 }
c19d1205 2238
d929913e 2239 return TRUE;
b99bd4ef
NC
2240}
2241
dcbf9037
JB
2242/* Create a Neon typed/indexed register alias using directives, e.g.:
2243 X .dn d5.s32[1]
2244 Y .qn 6.s16
2245 Z .dn d7
2246 T .dn Z[0]
2247 These typed registers can be used instead of the types specified after the
2248 Neon mnemonic, so long as all operands given have types. Types can also be
2249 specified directly, e.g.:
5f4273c7 2250 vadd d0.s32, d1.s32, d2.s32 */
dcbf9037 2251
c921be7d 2252static bfd_boolean
dcbf9037
JB
2253create_neon_reg_alias (char *newname, char *p)
2254{
2255 enum arm_reg_type basetype;
2256 struct reg_entry *basereg;
2257 struct reg_entry mybasereg;
2258 struct neon_type ntype;
2259 struct neon_typed_alias typeinfo;
12d6b0b7 2260 char *namebuf, *nameend ATTRIBUTE_UNUSED;
dcbf9037 2261 int namelen;
5f4273c7 2262
dcbf9037
JB
2263 typeinfo.defined = 0;
2264 typeinfo.eltype.type = NT_invtype;
2265 typeinfo.eltype.size = -1;
2266 typeinfo.index = -1;
5f4273c7 2267
dcbf9037 2268 nameend = p;
5f4273c7 2269
dcbf9037
JB
2270 if (strncmp (p, " .dn ", 5) == 0)
2271 basetype = REG_TYPE_VFD;
2272 else if (strncmp (p, " .qn ", 5) == 0)
2273 basetype = REG_TYPE_NQ;
2274 else
c921be7d 2275 return FALSE;
5f4273c7 2276
dcbf9037 2277 p += 5;
5f4273c7 2278
dcbf9037 2279 if (*p == '\0')
c921be7d 2280 return FALSE;
5f4273c7 2281
dcbf9037
JB
2282 basereg = arm_reg_parse_multi (&p);
2283
2284 if (basereg && basereg->type != basetype)
2285 {
2286 as_bad (_("bad type for register"));
c921be7d 2287 return FALSE;
dcbf9037
JB
2288 }
2289
2290 if (basereg == NULL)
2291 {
2292 expressionS exp;
2293 /* Try parsing as an integer. */
2294 my_get_expression (&exp, &p, GE_NO_PREFIX);
2295 if (exp.X_op != O_constant)
2296 {
2297 as_bad (_("expression must be constant"));
c921be7d 2298 return FALSE;
dcbf9037
JB
2299 }
2300 basereg = &mybasereg;
2301 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
2302 : exp.X_add_number;
2303 basereg->neon = 0;
2304 }
2305
2306 if (basereg->neon)
2307 typeinfo = *basereg->neon;
2308
2309 if (parse_neon_type (&ntype, &p) == SUCCESS)
2310 {
2311 /* We got a type. */
2312 if (typeinfo.defined & NTA_HASTYPE)
2313 {
2314 as_bad (_("can't redefine the type of a register alias"));
c921be7d 2315 return FALSE;
dcbf9037 2316 }
5f4273c7 2317
dcbf9037
JB
2318 typeinfo.defined |= NTA_HASTYPE;
2319 if (ntype.elems != 1)
2320 {
2321 as_bad (_("you must specify a single type only"));
c921be7d 2322 return FALSE;
dcbf9037
JB
2323 }
2324 typeinfo.eltype = ntype.el[0];
2325 }
5f4273c7 2326
dcbf9037
JB
2327 if (skip_past_char (&p, '[') == SUCCESS)
2328 {
2329 expressionS exp;
2330 /* We got a scalar index. */
5f4273c7 2331
dcbf9037
JB
2332 if (typeinfo.defined & NTA_HASINDEX)
2333 {
2334 as_bad (_("can't redefine the index of a scalar alias"));
c921be7d 2335 return FALSE;
dcbf9037 2336 }
5f4273c7 2337
dcbf9037 2338 my_get_expression (&exp, &p, GE_NO_PREFIX);
5f4273c7 2339
dcbf9037
JB
2340 if (exp.X_op != O_constant)
2341 {
2342 as_bad (_("scalar index must be constant"));
c921be7d 2343 return FALSE;
dcbf9037 2344 }
5f4273c7 2345
dcbf9037
JB
2346 typeinfo.defined |= NTA_HASINDEX;
2347 typeinfo.index = exp.X_add_number;
5f4273c7 2348
dcbf9037
JB
2349 if (skip_past_char (&p, ']') == FAIL)
2350 {
2351 as_bad (_("expecting ]"));
c921be7d 2352 return FALSE;
dcbf9037
JB
2353 }
2354 }
2355
15735687
NS
2356 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2357 the desired alias name, and p points to its end. If not, then
2358 the desired alias name is in the global original_case_string. */
2359#ifdef TC_CASE_SENSITIVE
dcbf9037 2360 namelen = nameend - newname;
15735687
NS
2361#else
2362 newname = original_case_string;
2363 namelen = strlen (newname);
2364#endif
2365
21d799b5 2366 namebuf = (char *) alloca (namelen + 1);
dcbf9037
JB
2367 strncpy (namebuf, newname, namelen);
2368 namebuf[namelen] = '\0';
5f4273c7 2369
dcbf9037
JB
2370 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2371 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2372
dcbf9037
JB
2373 /* Insert name in all uppercase. */
2374 for (p = namebuf; *p; p++)
2375 *p = TOUPPER (*p);
5f4273c7 2376
dcbf9037
JB
2377 if (strncmp (namebuf, newname, namelen))
2378 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2379 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2380
dcbf9037
JB
2381 /* Insert name in all lowercase. */
2382 for (p = namebuf; *p; p++)
2383 *p = TOLOWER (*p);
5f4273c7 2384
dcbf9037
JB
2385 if (strncmp (namebuf, newname, namelen))
2386 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2387 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2388
c921be7d 2389 return TRUE;
dcbf9037
JB
2390}
2391
c19d1205
ZW
2392/* Should never be called, as .req goes between the alias and the
2393 register name, not at the beginning of the line. */
c921be7d 2394
b99bd4ef 2395static void
c19d1205 2396s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2397{
c19d1205
ZW
2398 as_bad (_("invalid syntax for .req directive"));
2399}
b99bd4ef 2400
dcbf9037
JB
2401static void
2402s_dn (int a ATTRIBUTE_UNUSED)
2403{
2404 as_bad (_("invalid syntax for .dn directive"));
2405}
2406
2407static void
2408s_qn (int a ATTRIBUTE_UNUSED)
2409{
2410 as_bad (_("invalid syntax for .qn directive"));
2411}
2412
c19d1205
ZW
2413/* The .unreq directive deletes an alias which was previously defined
2414 by .req. For example:
b99bd4ef 2415
c19d1205
ZW
2416 my_alias .req r11
2417 .unreq my_alias */
b99bd4ef
NC
2418
2419static void
c19d1205 2420s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2421{
c19d1205
ZW
2422 char * name;
2423 char saved_char;
b99bd4ef 2424
c19d1205
ZW
2425 name = input_line_pointer;
2426
2427 while (*input_line_pointer != 0
2428 && *input_line_pointer != ' '
2429 && *input_line_pointer != '\n')
2430 ++input_line_pointer;
2431
2432 saved_char = *input_line_pointer;
2433 *input_line_pointer = 0;
2434
2435 if (!*name)
2436 as_bad (_("invalid syntax for .unreq directive"));
2437 else
2438 {
21d799b5
NC
2439 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
2440 name);
c19d1205
ZW
2441
2442 if (!reg)
2443 as_bad (_("unknown register alias '%s'"), name);
2444 else if (reg->builtin)
a1727c1a 2445 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
c19d1205
ZW
2446 name);
2447 else
2448 {
d929913e
NC
2449 char * p;
2450 char * nbuf;
2451
db0bc284 2452 hash_delete (arm_reg_hsh, name, FALSE);
c19d1205 2453 free ((char *) reg->name);
dcbf9037
JB
2454 if (reg->neon)
2455 free (reg->neon);
c19d1205 2456 free (reg);
d929913e
NC
2457
2458 /* Also locate the all upper case and all lower case versions.
2459 Do not complain if we cannot find one or the other as it
2460 was probably deleted above. */
5f4273c7 2461
d929913e
NC
2462 nbuf = strdup (name);
2463 for (p = nbuf; *p; p++)
2464 *p = TOUPPER (*p);
21d799b5 2465 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2466 if (reg)
2467 {
db0bc284 2468 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2469 free ((char *) reg->name);
2470 if (reg->neon)
2471 free (reg->neon);
2472 free (reg);
2473 }
2474
2475 for (p = nbuf; *p; p++)
2476 *p = TOLOWER (*p);
21d799b5 2477 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2478 if (reg)
2479 {
db0bc284 2480 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2481 free ((char *) reg->name);
2482 if (reg->neon)
2483 free (reg->neon);
2484 free (reg);
2485 }
2486
2487 free (nbuf);
c19d1205
ZW
2488 }
2489 }
b99bd4ef 2490
c19d1205 2491 *input_line_pointer = saved_char;
b99bd4ef
NC
2492 demand_empty_rest_of_line ();
2493}
2494
c19d1205
ZW
2495/* Directives: Instruction set selection. */
2496
2497#ifdef OBJ_ELF
2498/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2499 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2500 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2501 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2502
cd000bff
DJ
2503/* Create a new mapping symbol for the transition to STATE. */
2504
2505static void
2506make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
b99bd4ef 2507{
a737bd4d 2508 symbolS * symbolP;
c19d1205
ZW
2509 const char * symname;
2510 int type;
b99bd4ef 2511
c19d1205 2512 switch (state)
b99bd4ef 2513 {
c19d1205
ZW
2514 case MAP_DATA:
2515 symname = "$d";
2516 type = BSF_NO_FLAGS;
2517 break;
2518 case MAP_ARM:
2519 symname = "$a";
2520 type = BSF_NO_FLAGS;
2521 break;
2522 case MAP_THUMB:
2523 symname = "$t";
2524 type = BSF_NO_FLAGS;
2525 break;
c19d1205
ZW
2526 default:
2527 abort ();
2528 }
2529
cd000bff 2530 symbolP = symbol_new (symname, now_seg, value, frag);
c19d1205
ZW
2531 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2532
2533 switch (state)
2534 {
2535 case MAP_ARM:
2536 THUMB_SET_FUNC (symbolP, 0);
2537 ARM_SET_THUMB (symbolP, 0);
2538 ARM_SET_INTERWORK (symbolP, support_interwork);
2539 break;
2540
2541 case MAP_THUMB:
2542 THUMB_SET_FUNC (symbolP, 1);
2543 ARM_SET_THUMB (symbolP, 1);
2544 ARM_SET_INTERWORK (symbolP, support_interwork);
2545 break;
2546
2547 case MAP_DATA:
2548 default:
cd000bff
DJ
2549 break;
2550 }
2551
2552 /* Save the mapping symbols for future reference. Also check that
2553 we do not place two mapping symbols at the same offset within a
2554 frag. We'll handle overlap between frags in
2de7820f
JZ
2555 check_mapping_symbols.
2556
2557 If .fill or other data filling directive generates zero sized data,
2558 the mapping symbol for the following code will have the same value
2559 as the one generated for the data filling directive. In this case,
2560 we replace the old symbol with the new one at the same address. */
cd000bff
DJ
2561 if (value == 0)
2562 {
2de7820f
JZ
2563 if (frag->tc_frag_data.first_map != NULL)
2564 {
2565 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2566 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2567 }
cd000bff
DJ
2568 frag->tc_frag_data.first_map = symbolP;
2569 }
2570 if (frag->tc_frag_data.last_map != NULL)
0f020cef
JZ
2571 {
2572 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
0f020cef
JZ
2573 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2574 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2575 }
cd000bff
DJ
2576 frag->tc_frag_data.last_map = symbolP;
2577}
2578
2579/* We must sometimes convert a region marked as code to data during
2580 code alignment, if an odd number of bytes have to be padded. The
2581 code mapping symbol is pushed to an aligned address. */
2582
2583static void
2584insert_data_mapping_symbol (enum mstate state,
2585 valueT value, fragS *frag, offsetT bytes)
2586{
2587 /* If there was already a mapping symbol, remove it. */
2588 if (frag->tc_frag_data.last_map != NULL
2589 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2590 {
2591 symbolS *symp = frag->tc_frag_data.last_map;
2592
2593 if (value == 0)
2594 {
2595 know (frag->tc_frag_data.first_map == symp);
2596 frag->tc_frag_data.first_map = NULL;
2597 }
2598 frag->tc_frag_data.last_map = NULL;
2599 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
c19d1205 2600 }
cd000bff
DJ
2601
2602 make_mapping_symbol (MAP_DATA, value, frag);
2603 make_mapping_symbol (state, value + bytes, frag);
2604}
2605
2606static void mapping_state_2 (enum mstate state, int max_chars);
2607
2608/* Set the mapping state to STATE. Only call this when about to
2609 emit some STATE bytes to the file. */
2610
2611void
2612mapping_state (enum mstate state)
2613{
940b5ce0
DJ
2614 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2615
cd000bff
DJ
2616#define TRANSITION(from, to) (mapstate == (from) && state == (to))
2617
2618 if (mapstate == state)
2619 /* The mapping symbol has already been emitted.
2620 There is nothing else to do. */
2621 return;
49c62a33
NC
2622
2623 if (state == MAP_ARM || state == MAP_THUMB)
2624 /* PR gas/12931
2625 All ARM instructions require 4-byte alignment.
2626 (Almost) all Thumb instructions require 2-byte alignment.
2627
2628 When emitting instructions into any section, mark the section
2629 appropriately.
2630
2631 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2632 but themselves require 2-byte alignment; this applies to some
2633 PC- relative forms. However, these cases will invovle implicit
2634 literal pool generation or an explicit .align >=2, both of
2635 which will cause the section to me marked with sufficient
2636 alignment. Thus, we don't handle those cases here. */
2637 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2638
2639 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
cd000bff
DJ
2640 /* This case will be evaluated later in the next else. */
2641 return;
2642 else if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
2643 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
2644 {
2645 /* Only add the symbol if the offset is > 0:
2646 if we're at the first frag, check it's size > 0;
2647 if we're not at the first frag, then for sure
2648 the offset is > 0. */
2649 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
2650 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
2651
2652 if (add_symbol)
2653 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
2654 }
2655
2656 mapping_state_2 (state, 0);
2657#undef TRANSITION
2658}
2659
2660/* Same as mapping_state, but MAX_CHARS bytes have already been
2661 allocated. Put the mapping symbol that far back. */
2662
2663static void
2664mapping_state_2 (enum mstate state, int max_chars)
2665{
940b5ce0
DJ
2666 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2667
2668 if (!SEG_NORMAL (now_seg))
2669 return;
2670
cd000bff
DJ
2671 if (mapstate == state)
2672 /* The mapping symbol has already been emitted.
2673 There is nothing else to do. */
2674 return;
2675
cd000bff
DJ
2676 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2677 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
c19d1205
ZW
2678}
2679#else
d3106081
NS
2680#define mapping_state(x) ((void)0)
2681#define mapping_state_2(x, y) ((void)0)
c19d1205
ZW
2682#endif
2683
2684/* Find the real, Thumb encoded start of a Thumb function. */
2685
4343666d 2686#ifdef OBJ_COFF
c19d1205
ZW
2687static symbolS *
2688find_real_start (symbolS * symbolP)
2689{
2690 char * real_start;
2691 const char * name = S_GET_NAME (symbolP);
2692 symbolS * new_target;
2693
2694 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2695#define STUB_NAME ".real_start_of"
2696
2697 if (name == NULL)
2698 abort ();
2699
37f6032b
ZW
2700 /* The compiler may generate BL instructions to local labels because
2701 it needs to perform a branch to a far away location. These labels
2702 do not have a corresponding ".real_start_of" label. We check
2703 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2704 the ".real_start_of" convention for nonlocal branches. */
2705 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2706 return symbolP;
2707
37f6032b 2708 real_start = ACONCAT ((STUB_NAME, name, NULL));
c19d1205
ZW
2709 new_target = symbol_find (real_start);
2710
2711 if (new_target == NULL)
2712 {
bd3ba5d1 2713 as_warn (_("Failed to find real start of function: %s\n"), name);
c19d1205
ZW
2714 new_target = symbolP;
2715 }
2716
c19d1205
ZW
2717 return new_target;
2718}
4343666d 2719#endif
c19d1205
ZW
2720
2721static void
2722opcode_select (int width)
2723{
2724 switch (width)
2725 {
2726 case 16:
2727 if (! thumb_mode)
2728 {
e74cfd16 2729 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2730 as_bad (_("selected processor does not support THUMB opcodes"));
2731
2732 thumb_mode = 1;
2733 /* No need to force the alignment, since we will have been
2734 coming from ARM mode, which is word-aligned. */
2735 record_alignment (now_seg, 1);
2736 }
c19d1205
ZW
2737 break;
2738
2739 case 32:
2740 if (thumb_mode)
2741 {
e74cfd16 2742 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2743 as_bad (_("selected processor does not support ARM opcodes"));
2744
2745 thumb_mode = 0;
2746
2747 if (!need_pass_2)
2748 frag_align (2, 0, 0);
2749
2750 record_alignment (now_seg, 1);
2751 }
c19d1205
ZW
2752 break;
2753
2754 default:
2755 as_bad (_("invalid instruction size selected (%d)"), width);
2756 }
2757}
2758
2759static void
2760s_arm (int ignore ATTRIBUTE_UNUSED)
2761{
2762 opcode_select (32);
2763 demand_empty_rest_of_line ();
2764}
2765
2766static void
2767s_thumb (int ignore ATTRIBUTE_UNUSED)
2768{
2769 opcode_select (16);
2770 demand_empty_rest_of_line ();
2771}
2772
2773static void
2774s_code (int unused ATTRIBUTE_UNUSED)
2775{
2776 int temp;
2777
2778 temp = get_absolute_expression ();
2779 switch (temp)
2780 {
2781 case 16:
2782 case 32:
2783 opcode_select (temp);
2784 break;
2785
2786 default:
2787 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2788 }
2789}
2790
2791static void
2792s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2793{
2794 /* If we are not already in thumb mode go into it, EVEN if
2795 the target processor does not support thumb instructions.
2796 This is used by gcc/config/arm/lib1funcs.asm for example
2797 to compile interworking support functions even if the
2798 target processor should not support interworking. */
2799 if (! thumb_mode)
2800 {
2801 thumb_mode = 2;
2802 record_alignment (now_seg, 1);
2803 }
2804
2805 demand_empty_rest_of_line ();
2806}
2807
2808static void
2809s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2810{
2811 s_thumb (0);
2812
2813 /* The following label is the name/address of the start of a Thumb function.
2814 We need to know this for the interworking support. */
2815 label_is_thumb_function_name = TRUE;
2816}
2817
2818/* Perform a .set directive, but also mark the alias as
2819 being a thumb function. */
2820
2821static void
2822s_thumb_set (int equiv)
2823{
2824 /* XXX the following is a duplicate of the code for s_set() in read.c
2825 We cannot just call that code as we need to get at the symbol that
2826 is created. */
2827 char * name;
2828 char delim;
2829 char * end_name;
2830 symbolS * symbolP;
2831
2832 /* Especial apologies for the random logic:
2833 This just grew, and could be parsed much more simply!
2834 Dean - in haste. */
2835 name = input_line_pointer;
2836 delim = get_symbol_end ();
2837 end_name = input_line_pointer;
2838 *end_name = delim;
2839
2840 if (*input_line_pointer != ',')
2841 {
2842 *end_name = 0;
2843 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2844 *end_name = delim;
2845 ignore_rest_of_line ();
2846 return;
2847 }
2848
2849 input_line_pointer++;
2850 *end_name = 0;
2851
2852 if (name[0] == '.' && name[1] == '\0')
2853 {
2854 /* XXX - this should not happen to .thumb_set. */
2855 abort ();
2856 }
2857
2858 if ((symbolP = symbol_find (name)) == NULL
2859 && (symbolP = md_undefined_symbol (name)) == NULL)
2860 {
2861#ifndef NO_LISTING
2862 /* When doing symbol listings, play games with dummy fragments living
2863 outside the normal fragment chain to record the file and line info
c19d1205 2864 for this symbol. */
b99bd4ef
NC
2865 if (listing & LISTING_SYMBOLS)
2866 {
2867 extern struct list_info_struct * listing_tail;
21d799b5 2868 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
b99bd4ef
NC
2869
2870 memset (dummy_frag, 0, sizeof (fragS));
2871 dummy_frag->fr_type = rs_fill;
2872 dummy_frag->line = listing_tail;
2873 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2874 dummy_frag->fr_symbol = symbolP;
2875 }
2876 else
2877#endif
2878 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2879
2880#ifdef OBJ_COFF
2881 /* "set" symbols are local unless otherwise specified. */
2882 SF_SET_LOCAL (symbolP);
2883#endif /* OBJ_COFF */
2884 } /* Make a new symbol. */
2885
2886 symbol_table_insert (symbolP);
2887
2888 * end_name = delim;
2889
2890 if (equiv
2891 && S_IS_DEFINED (symbolP)
2892 && S_GET_SEGMENT (symbolP) != reg_section)
2893 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2894
2895 pseudo_set (symbolP);
2896
2897 demand_empty_rest_of_line ();
2898
c19d1205 2899 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2900
2901 THUMB_SET_FUNC (symbolP, 1);
2902 ARM_SET_THUMB (symbolP, 1);
2903#if defined OBJ_ELF || defined OBJ_COFF
2904 ARM_SET_INTERWORK (symbolP, support_interwork);
2905#endif
2906}
2907
c19d1205 2908/* Directives: Mode selection. */
b99bd4ef 2909
c19d1205
ZW
2910/* .syntax [unified|divided] - choose the new unified syntax
2911 (same for Arm and Thumb encoding, modulo slight differences in what
2912 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2913static void
c19d1205 2914s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2915{
c19d1205
ZW
2916 char *name, delim;
2917
2918 name = input_line_pointer;
2919 delim = get_symbol_end ();
2920
2921 if (!strcasecmp (name, "unified"))
2922 unified_syntax = TRUE;
2923 else if (!strcasecmp (name, "divided"))
2924 unified_syntax = FALSE;
2925 else
2926 {
2927 as_bad (_("unrecognized syntax mode \"%s\""), name);
2928 return;
2929 }
2930 *input_line_pointer = delim;
b99bd4ef
NC
2931 demand_empty_rest_of_line ();
2932}
2933
c19d1205
ZW
2934/* Directives: sectioning and alignment. */
2935
2936/* Same as s_align_ptwo but align 0 => align 2. */
2937
b99bd4ef 2938static void
c19d1205 2939s_align (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2940{
a737bd4d 2941 int temp;
dce323d1 2942 bfd_boolean fill_p;
c19d1205
ZW
2943 long temp_fill;
2944 long max_alignment = 15;
b99bd4ef
NC
2945
2946 temp = get_absolute_expression ();
c19d1205
ZW
2947 if (temp > max_alignment)
2948 as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
2949 else if (temp < 0)
b99bd4ef 2950 {
c19d1205
ZW
2951 as_bad (_("alignment negative. 0 assumed."));
2952 temp = 0;
2953 }
b99bd4ef 2954
c19d1205
ZW
2955 if (*input_line_pointer == ',')
2956 {
2957 input_line_pointer++;
2958 temp_fill = get_absolute_expression ();
dce323d1 2959 fill_p = TRUE;
b99bd4ef 2960 }
c19d1205 2961 else
dce323d1
PB
2962 {
2963 fill_p = FALSE;
2964 temp_fill = 0;
2965 }
b99bd4ef 2966
c19d1205
ZW
2967 if (!temp)
2968 temp = 2;
b99bd4ef 2969
c19d1205
ZW
2970 /* Only make a frag if we HAVE to. */
2971 if (temp && !need_pass_2)
dce323d1
PB
2972 {
2973 if (!fill_p && subseg_text_p (now_seg))
2974 frag_align_code (temp, 0);
2975 else
2976 frag_align (temp, (int) temp_fill, 0);
2977 }
c19d1205
ZW
2978 demand_empty_rest_of_line ();
2979
2980 record_alignment (now_seg, temp);
b99bd4ef
NC
2981}
2982
c19d1205
ZW
2983static void
2984s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 2985{
c19d1205
ZW
2986 /* We don't support putting frags in the BSS segment, we fake it by
2987 marking in_bss, then looking at s_skip for clues. */
2988 subseg_set (bss_section, 0);
2989 demand_empty_rest_of_line ();
cd000bff
DJ
2990
2991#ifdef md_elf_section_change_hook
2992 md_elf_section_change_hook ();
2993#endif
c19d1205 2994}
b99bd4ef 2995
c19d1205
ZW
2996static void
2997s_even (int ignore ATTRIBUTE_UNUSED)
2998{
2999 /* Never make frag if expect extra pass. */
3000 if (!need_pass_2)
3001 frag_align (1, 0, 0);
b99bd4ef 3002
c19d1205 3003 record_alignment (now_seg, 1);
b99bd4ef 3004
c19d1205 3005 demand_empty_rest_of_line ();
b99bd4ef
NC
3006}
3007
c19d1205 3008/* Directives: Literal pools. */
a737bd4d 3009
c19d1205
ZW
3010static literal_pool *
3011find_literal_pool (void)
a737bd4d 3012{
c19d1205 3013 literal_pool * pool;
a737bd4d 3014
c19d1205 3015 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 3016 {
c19d1205
ZW
3017 if (pool->section == now_seg
3018 && pool->sub_section == now_subseg)
3019 break;
a737bd4d
NC
3020 }
3021
c19d1205 3022 return pool;
a737bd4d
NC
3023}
3024
c19d1205
ZW
3025static literal_pool *
3026find_or_make_literal_pool (void)
a737bd4d 3027{
c19d1205
ZW
3028 /* Next literal pool ID number. */
3029 static unsigned int latest_pool_num = 1;
3030 literal_pool * pool;
a737bd4d 3031
c19d1205 3032 pool = find_literal_pool ();
a737bd4d 3033
c19d1205 3034 if (pool == NULL)
a737bd4d 3035 {
c19d1205 3036 /* Create a new pool. */
21d799b5 3037 pool = (literal_pool *) xmalloc (sizeof (* pool));
c19d1205
ZW
3038 if (! pool)
3039 return NULL;
a737bd4d 3040
c19d1205
ZW
3041 pool->next_free_entry = 0;
3042 pool->section = now_seg;
3043 pool->sub_section = now_subseg;
3044 pool->next = list_of_pools;
3045 pool->symbol = NULL;
3046
3047 /* Add it to the list. */
3048 list_of_pools = pool;
a737bd4d 3049 }
a737bd4d 3050
c19d1205
ZW
3051 /* New pools, and emptied pools, will have a NULL symbol. */
3052 if (pool->symbol == NULL)
a737bd4d 3053 {
c19d1205
ZW
3054 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3055 (valueT) 0, &zero_address_frag);
3056 pool->id = latest_pool_num ++;
a737bd4d
NC
3057 }
3058
c19d1205
ZW
3059 /* Done. */
3060 return pool;
a737bd4d
NC
3061}
3062
c19d1205 3063/* Add the literal in the global 'inst'
5f4273c7 3064 structure to the relevant literal pool. */
b99bd4ef
NC
3065
3066static int
c19d1205 3067add_to_lit_pool (void)
b99bd4ef 3068{
c19d1205
ZW
3069 literal_pool * pool;
3070 unsigned int entry;
b99bd4ef 3071
c19d1205
ZW
3072 pool = find_or_make_literal_pool ();
3073
3074 /* Check if this literal value is already in the pool. */
3075 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 3076 {
c19d1205
ZW
3077 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3078 && (inst.reloc.exp.X_op == O_constant)
3079 && (pool->literals[entry].X_add_number
3080 == inst.reloc.exp.X_add_number)
3081 && (pool->literals[entry].X_unsigned
3082 == inst.reloc.exp.X_unsigned))
3083 break;
3084
3085 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3086 && (inst.reloc.exp.X_op == O_symbol)
3087 && (pool->literals[entry].X_add_number
3088 == inst.reloc.exp.X_add_number)
3089 && (pool->literals[entry].X_add_symbol
3090 == inst.reloc.exp.X_add_symbol)
3091 && (pool->literals[entry].X_op_symbol
3092 == inst.reloc.exp.X_op_symbol))
3093 break;
b99bd4ef
NC
3094 }
3095
c19d1205
ZW
3096 /* Do we need to create a new entry? */
3097 if (entry == pool->next_free_entry)
3098 {
3099 if (entry >= MAX_LITERAL_POOL_SIZE)
3100 {
3101 inst.error = _("literal pool overflow");
3102 return FAIL;
3103 }
3104
3105 pool->literals[entry] = inst.reloc.exp;
a8040cf2
NC
3106#ifdef OBJ_ELF
3107 /* PR ld/12974: Record the location of the first source line to reference
3108 this entry in the literal pool. If it turns out during linking that the
3109 symbol does not exist we will be able to give an accurate line number for
3110 the (first use of the) missing reference. */
3111 if (debug_type == DEBUG_DWARF2)
3112 dwarf2_where (pool->locs + entry);
3113#endif
c19d1205
ZW
3114 pool->next_free_entry += 1;
3115 }
b99bd4ef 3116
c19d1205
ZW
3117 inst.reloc.exp.X_op = O_symbol;
3118 inst.reloc.exp.X_add_number = ((int) entry) * 4;
3119 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 3120
c19d1205 3121 return SUCCESS;
b99bd4ef
NC
3122}
3123
c19d1205
ZW
3124/* Can't use symbol_new here, so have to create a symbol and then at
3125 a later date assign it a value. Thats what these functions do. */
e16bb312 3126
c19d1205
ZW
3127static void
3128symbol_locate (symbolS * symbolP,
3129 const char * name, /* It is copied, the caller can modify. */
3130 segT segment, /* Segment identifier (SEG_<something>). */
3131 valueT valu, /* Symbol value. */
3132 fragS * frag) /* Associated fragment. */
3133{
3134 unsigned int name_length;
3135 char * preserved_copy_of_name;
e16bb312 3136
c19d1205
ZW
3137 name_length = strlen (name) + 1; /* +1 for \0. */
3138 obstack_grow (&notes, name, name_length);
21d799b5 3139 preserved_copy_of_name = (char *) obstack_finish (&notes);
e16bb312 3140
c19d1205
ZW
3141#ifdef tc_canonicalize_symbol_name
3142 preserved_copy_of_name =
3143 tc_canonicalize_symbol_name (preserved_copy_of_name);
3144#endif
b99bd4ef 3145
c19d1205 3146 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 3147
c19d1205
ZW
3148 S_SET_SEGMENT (symbolP, segment);
3149 S_SET_VALUE (symbolP, valu);
3150 symbol_clear_list_pointers (symbolP);
b99bd4ef 3151
c19d1205 3152 symbol_set_frag (symbolP, frag);
b99bd4ef 3153
c19d1205
ZW
3154 /* Link to end of symbol chain. */
3155 {
3156 extern int symbol_table_frozen;
b99bd4ef 3157
c19d1205
ZW
3158 if (symbol_table_frozen)
3159 abort ();
3160 }
b99bd4ef 3161
c19d1205 3162 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 3163
c19d1205 3164 obj_symbol_new_hook (symbolP);
b99bd4ef 3165
c19d1205
ZW
3166#ifdef tc_symbol_new_hook
3167 tc_symbol_new_hook (symbolP);
3168#endif
3169
3170#ifdef DEBUG_SYMS
3171 verify_symbol_chain (symbol_rootP, symbol_lastP);
3172#endif /* DEBUG_SYMS */
b99bd4ef
NC
3173}
3174
b99bd4ef 3175
c19d1205
ZW
3176static void
3177s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3178{
c19d1205
ZW
3179 unsigned int entry;
3180 literal_pool * pool;
3181 char sym_name[20];
b99bd4ef 3182
c19d1205
ZW
3183 pool = find_literal_pool ();
3184 if (pool == NULL
3185 || pool->symbol == NULL
3186 || pool->next_free_entry == 0)
3187 return;
b99bd4ef 3188
c19d1205 3189 mapping_state (MAP_DATA);
b99bd4ef 3190
c19d1205
ZW
3191 /* Align pool as you have word accesses.
3192 Only make a frag if we have to. */
3193 if (!need_pass_2)
3194 frag_align (2, 0, 0);
b99bd4ef 3195
c19d1205 3196 record_alignment (now_seg, 2);
b99bd4ef 3197
c19d1205 3198 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 3199
c19d1205
ZW
3200 symbol_locate (pool->symbol, sym_name, now_seg,
3201 (valueT) frag_now_fix (), frag_now);
3202 symbol_table_insert (pool->symbol);
b99bd4ef 3203
c19d1205 3204 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 3205
c19d1205
ZW
3206#if defined OBJ_COFF || defined OBJ_ELF
3207 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3208#endif
6c43fab6 3209
c19d1205 3210 for (entry = 0; entry < pool->next_free_entry; entry ++)
a8040cf2
NC
3211 {
3212#ifdef OBJ_ELF
3213 if (debug_type == DEBUG_DWARF2)
3214 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3215#endif
3216 /* First output the expression in the instruction to the pool. */
3217 emit_expr (&(pool->literals[entry]), 4); /* .word */
3218 }
b99bd4ef 3219
c19d1205
ZW
3220 /* Mark the pool as empty. */
3221 pool->next_free_entry = 0;
3222 pool->symbol = NULL;
b99bd4ef
NC
3223}
3224
c19d1205
ZW
3225#ifdef OBJ_ELF
3226/* Forward declarations for functions below, in the MD interface
3227 section. */
3228static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3229static valueT create_unwind_entry (int);
3230static void start_unwind_section (const segT, int);
3231static void add_unwind_opcode (valueT, int);
3232static void flush_pending_unwind (void);
b99bd4ef 3233
c19d1205 3234/* Directives: Data. */
b99bd4ef 3235
c19d1205
ZW
3236static void
3237s_arm_elf_cons (int nbytes)
3238{
3239 expressionS exp;
b99bd4ef 3240
c19d1205
ZW
3241#ifdef md_flush_pending_output
3242 md_flush_pending_output ();
3243#endif
b99bd4ef 3244
c19d1205 3245 if (is_it_end_of_statement ())
b99bd4ef 3246 {
c19d1205
ZW
3247 demand_empty_rest_of_line ();
3248 return;
b99bd4ef
NC
3249 }
3250
c19d1205
ZW
3251#ifdef md_cons_align
3252 md_cons_align (nbytes);
3253#endif
b99bd4ef 3254
c19d1205
ZW
3255 mapping_state (MAP_DATA);
3256 do
b99bd4ef 3257 {
c19d1205
ZW
3258 int reloc;
3259 char *base = input_line_pointer;
b99bd4ef 3260
c19d1205 3261 expression (& exp);
b99bd4ef 3262
c19d1205
ZW
3263 if (exp.X_op != O_symbol)
3264 emit_expr (&exp, (unsigned int) nbytes);
3265 else
3266 {
3267 char *before_reloc = input_line_pointer;
3268 reloc = parse_reloc (&input_line_pointer);
3269 if (reloc == -1)
3270 {
3271 as_bad (_("unrecognized relocation suffix"));
3272 ignore_rest_of_line ();
3273 return;
3274 }
3275 else if (reloc == BFD_RELOC_UNUSED)
3276 emit_expr (&exp, (unsigned int) nbytes);
3277 else
3278 {
21d799b5
NC
3279 reloc_howto_type *howto = (reloc_howto_type *)
3280 bfd_reloc_type_lookup (stdoutput,
3281 (bfd_reloc_code_real_type) reloc);
c19d1205 3282 int size = bfd_get_reloc_size (howto);
b99bd4ef 3283
2fc8bdac
ZW
3284 if (reloc == BFD_RELOC_ARM_PLT32)
3285 {
3286 as_bad (_("(plt) is only valid on branch targets"));
3287 reloc = BFD_RELOC_UNUSED;
3288 size = 0;
3289 }
3290
c19d1205 3291 if (size > nbytes)
2fc8bdac 3292 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
3293 howto->name, nbytes);
3294 else
3295 {
3296 /* We've parsed an expression stopping at O_symbol.
3297 But there may be more expression left now that we
3298 have parsed the relocation marker. Parse it again.
3299 XXX Surely there is a cleaner way to do this. */
3300 char *p = input_line_pointer;
3301 int offset;
21d799b5 3302 char *save_buf = (char *) alloca (input_line_pointer - base);
c19d1205
ZW
3303 memcpy (save_buf, base, input_line_pointer - base);
3304 memmove (base + (input_line_pointer - before_reloc),
3305 base, before_reloc - base);
3306
3307 input_line_pointer = base + (input_line_pointer-before_reloc);
3308 expression (&exp);
3309 memcpy (base, save_buf, p - base);
3310
3311 offset = nbytes - size;
3312 p = frag_more ((int) nbytes);
3313 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
21d799b5 3314 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
c19d1205
ZW
3315 }
3316 }
3317 }
b99bd4ef 3318 }
c19d1205 3319 while (*input_line_pointer++ == ',');
b99bd4ef 3320
c19d1205
ZW
3321 /* Put terminator back into stream. */
3322 input_line_pointer --;
3323 demand_empty_rest_of_line ();
b99bd4ef
NC
3324}
3325
c921be7d
NC
3326/* Emit an expression containing a 32-bit thumb instruction.
3327 Implementation based on put_thumb32_insn. */
3328
3329static void
3330emit_thumb32_expr (expressionS * exp)
3331{
3332 expressionS exp_high = *exp;
3333
3334 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3335 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3336 exp->X_add_number &= 0xffff;
3337 emit_expr (exp, (unsigned int) THUMB_SIZE);
3338}
3339
3340/* Guess the instruction size based on the opcode. */
3341
3342static int
3343thumb_insn_size (int opcode)
3344{
3345 if ((unsigned int) opcode < 0xe800u)
3346 return 2;
3347 else if ((unsigned int) opcode >= 0xe8000000u)
3348 return 4;
3349 else
3350 return 0;
3351}
3352
3353static bfd_boolean
3354emit_insn (expressionS *exp, int nbytes)
3355{
3356 int size = 0;
3357
3358 if (exp->X_op == O_constant)
3359 {
3360 size = nbytes;
3361
3362 if (size == 0)
3363 size = thumb_insn_size (exp->X_add_number);
3364
3365 if (size != 0)
3366 {
3367 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3368 {
3369 as_bad (_(".inst.n operand too big. "\
3370 "Use .inst.w instead"));
3371 size = 0;
3372 }
3373 else
3374 {
3375 if (now_it.state == AUTOMATIC_IT_BLOCK)
3376 set_it_insn_type_nonvoid (OUTSIDE_IT_INSN, 0);
3377 else
3378 set_it_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3379
3380 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3381 emit_thumb32_expr (exp);
3382 else
3383 emit_expr (exp, (unsigned int) size);
3384
3385 it_fsm_post_encode ();
3386 }
3387 }
3388 else
3389 as_bad (_("cannot determine Thumb instruction size. " \
3390 "Use .inst.n/.inst.w instead"));
3391 }
3392 else
3393 as_bad (_("constant expression required"));
3394
3395 return (size != 0);
3396}
3397
3398/* Like s_arm_elf_cons but do not use md_cons_align and
3399 set the mapping state to MAP_ARM/MAP_THUMB. */
3400
3401static void
3402s_arm_elf_inst (int nbytes)
3403{
3404 if (is_it_end_of_statement ())
3405 {
3406 demand_empty_rest_of_line ();
3407 return;
3408 }
3409
3410 /* Calling mapping_state () here will not change ARM/THUMB,
3411 but will ensure not to be in DATA state. */
3412
3413 if (thumb_mode)
3414 mapping_state (MAP_THUMB);
3415 else
3416 {
3417 if (nbytes != 0)
3418 {
3419 as_bad (_("width suffixes are invalid in ARM mode"));
3420 ignore_rest_of_line ();
3421 return;
3422 }
3423
3424 nbytes = 4;
3425
3426 mapping_state (MAP_ARM);
3427 }
3428
3429 do
3430 {
3431 expressionS exp;
3432
3433 expression (& exp);
3434
3435 if (! emit_insn (& exp, nbytes))
3436 {
3437 ignore_rest_of_line ();
3438 return;
3439 }
3440 }
3441 while (*input_line_pointer++ == ',');
3442
3443 /* Put terminator back into stream. */
3444 input_line_pointer --;
3445 demand_empty_rest_of_line ();
3446}
b99bd4ef 3447
c19d1205 3448/* Parse a .rel31 directive. */
b99bd4ef 3449
c19d1205
ZW
3450static void
3451s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3452{
3453 expressionS exp;
3454 char *p;
3455 valueT highbit;
b99bd4ef 3456
c19d1205
ZW
3457 highbit = 0;
3458 if (*input_line_pointer == '1')
3459 highbit = 0x80000000;
3460 else if (*input_line_pointer != '0')
3461 as_bad (_("expected 0 or 1"));
b99bd4ef 3462
c19d1205
ZW
3463 input_line_pointer++;
3464 if (*input_line_pointer != ',')
3465 as_bad (_("missing comma"));
3466 input_line_pointer++;
b99bd4ef 3467
c19d1205
ZW
3468#ifdef md_flush_pending_output
3469 md_flush_pending_output ();
3470#endif
b99bd4ef 3471
c19d1205
ZW
3472#ifdef md_cons_align
3473 md_cons_align (4);
3474#endif
b99bd4ef 3475
c19d1205 3476 mapping_state (MAP_DATA);
b99bd4ef 3477
c19d1205 3478 expression (&exp);
b99bd4ef 3479
c19d1205
ZW
3480 p = frag_more (4);
3481 md_number_to_chars (p, highbit, 4);
3482 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
3483 BFD_RELOC_ARM_PREL31);
b99bd4ef 3484
c19d1205 3485 demand_empty_rest_of_line ();
b99bd4ef
NC
3486}
3487
c19d1205 3488/* Directives: AEABI stack-unwind tables. */
b99bd4ef 3489
c19d1205 3490/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3491
c19d1205
ZW
3492static void
3493s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3494{
3495 demand_empty_rest_of_line ();
921e5f0a
PB
3496 if (unwind.proc_start)
3497 {
c921be7d 3498 as_bad (_("duplicate .fnstart directive"));
921e5f0a
PB
3499 return;
3500 }
3501
c19d1205
ZW
3502 /* Mark the start of the function. */
3503 unwind.proc_start = expr_build_dot ();
b99bd4ef 3504
c19d1205
ZW
3505 /* Reset the rest of the unwind info. */
3506 unwind.opcode_count = 0;
3507 unwind.table_entry = NULL;
3508 unwind.personality_routine = NULL;
3509 unwind.personality_index = -1;
3510 unwind.frame_size = 0;
3511 unwind.fp_offset = 0;
fdfde340 3512 unwind.fp_reg = REG_SP;
c19d1205
ZW
3513 unwind.fp_used = 0;
3514 unwind.sp_restored = 0;
3515}
b99bd4ef 3516
b99bd4ef 3517
c19d1205
ZW
3518/* Parse a handlerdata directive. Creates the exception handling table entry
3519 for the function. */
b99bd4ef 3520
c19d1205
ZW
3521static void
3522s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3523{
3524 demand_empty_rest_of_line ();
921e5f0a 3525 if (!unwind.proc_start)
c921be7d 3526 as_bad (MISSING_FNSTART);
921e5f0a 3527
c19d1205 3528 if (unwind.table_entry)
6decc662 3529 as_bad (_("duplicate .handlerdata directive"));
f02232aa 3530
c19d1205
ZW
3531 create_unwind_entry (1);
3532}
a737bd4d 3533
c19d1205 3534/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3535
c19d1205
ZW
3536static void
3537s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3538{
3539 long where;
3540 char *ptr;
3541 valueT val;
940b5ce0 3542 unsigned int marked_pr_dependency;
f02232aa 3543
c19d1205 3544 demand_empty_rest_of_line ();
f02232aa 3545
921e5f0a
PB
3546 if (!unwind.proc_start)
3547 {
c921be7d 3548 as_bad (_(".fnend directive without .fnstart"));
921e5f0a
PB
3549 return;
3550 }
3551
c19d1205
ZW
3552 /* Add eh table entry. */
3553 if (unwind.table_entry == NULL)
3554 val = create_unwind_entry (0);
3555 else
3556 val = 0;
f02232aa 3557
c19d1205
ZW
3558 /* Add index table entry. This is two words. */
3559 start_unwind_section (unwind.saved_seg, 1);
3560 frag_align (2, 0, 0);
3561 record_alignment (now_seg, 2);
b99bd4ef 3562
c19d1205 3563 ptr = frag_more (8);
5011093d 3564 memset (ptr, 0, 8);
c19d1205 3565 where = frag_now_fix () - 8;
f02232aa 3566
c19d1205
ZW
3567 /* Self relative offset of the function start. */
3568 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3569 BFD_RELOC_ARM_PREL31);
f02232aa 3570
c19d1205
ZW
3571 /* Indicate dependency on EHABI-defined personality routines to the
3572 linker, if it hasn't been done already. */
940b5ce0
DJ
3573 marked_pr_dependency
3574 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
c19d1205
ZW
3575 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3576 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3577 {
5f4273c7
NC
3578 static const char *const name[] =
3579 {
3580 "__aeabi_unwind_cpp_pr0",
3581 "__aeabi_unwind_cpp_pr1",
3582 "__aeabi_unwind_cpp_pr2"
3583 };
c19d1205
ZW
3584 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3585 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
c19d1205 3586 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
940b5ce0 3587 |= 1 << unwind.personality_index;
c19d1205 3588 }
f02232aa 3589
c19d1205
ZW
3590 if (val)
3591 /* Inline exception table entry. */
3592 md_number_to_chars (ptr + 4, val, 4);
3593 else
3594 /* Self relative offset of the table entry. */
3595 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3596 BFD_RELOC_ARM_PREL31);
f02232aa 3597
c19d1205
ZW
3598 /* Restore the original section. */
3599 subseg_set (unwind.saved_seg, unwind.saved_subseg);
921e5f0a
PB
3600
3601 unwind.proc_start = NULL;
c19d1205 3602}
f02232aa 3603
f02232aa 3604
c19d1205 3605/* Parse an unwind_cantunwind directive. */
b99bd4ef 3606
c19d1205
ZW
3607static void
3608s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3609{
3610 demand_empty_rest_of_line ();
921e5f0a 3611 if (!unwind.proc_start)
c921be7d 3612 as_bad (MISSING_FNSTART);
921e5f0a 3613
c19d1205
ZW
3614 if (unwind.personality_routine || unwind.personality_index != -1)
3615 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3616
c19d1205
ZW
3617 unwind.personality_index = -2;
3618}
b99bd4ef 3619
b99bd4ef 3620
c19d1205 3621/* Parse a personalityindex directive. */
b99bd4ef 3622
c19d1205
ZW
3623static void
3624s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3625{
3626 expressionS exp;
b99bd4ef 3627
921e5f0a 3628 if (!unwind.proc_start)
c921be7d 3629 as_bad (MISSING_FNSTART);
921e5f0a 3630
c19d1205
ZW
3631 if (unwind.personality_routine || unwind.personality_index != -1)
3632 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3633
c19d1205 3634 expression (&exp);
b99bd4ef 3635
c19d1205
ZW
3636 if (exp.X_op != O_constant
3637 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3638 {
c19d1205
ZW
3639 as_bad (_("bad personality routine number"));
3640 ignore_rest_of_line ();
3641 return;
b99bd4ef
NC
3642 }
3643
c19d1205 3644 unwind.personality_index = exp.X_add_number;
b99bd4ef 3645
c19d1205
ZW
3646 demand_empty_rest_of_line ();
3647}
e16bb312 3648
e16bb312 3649
c19d1205 3650/* Parse a personality directive. */
e16bb312 3651
c19d1205
ZW
3652static void
3653s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3654{
3655 char *name, *p, c;
a737bd4d 3656
921e5f0a 3657 if (!unwind.proc_start)
c921be7d 3658 as_bad (MISSING_FNSTART);
921e5f0a 3659
c19d1205
ZW
3660 if (unwind.personality_routine || unwind.personality_index != -1)
3661 as_bad (_("duplicate .personality directive"));
a737bd4d 3662
c19d1205
ZW
3663 name = input_line_pointer;
3664 c = get_symbol_end ();
3665 p = input_line_pointer;
3666 unwind.personality_routine = symbol_find_or_make (name);
3667 *p = c;
3668 demand_empty_rest_of_line ();
3669}
e16bb312 3670
e16bb312 3671
c19d1205 3672/* Parse a directive saving core registers. */
e16bb312 3673
c19d1205
ZW
3674static void
3675s_arm_unwind_save_core (void)
e16bb312 3676{
c19d1205
ZW
3677 valueT op;
3678 long range;
3679 int n;
e16bb312 3680
c19d1205
ZW
3681 range = parse_reg_list (&input_line_pointer);
3682 if (range == FAIL)
e16bb312 3683 {
c19d1205
ZW
3684 as_bad (_("expected register list"));
3685 ignore_rest_of_line ();
3686 return;
3687 }
e16bb312 3688
c19d1205 3689 demand_empty_rest_of_line ();
e16bb312 3690
c19d1205
ZW
3691 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3692 into .unwind_save {..., sp...}. We aren't bothered about the value of
3693 ip because it is clobbered by calls. */
3694 if (unwind.sp_restored && unwind.fp_reg == 12
3695 && (range & 0x3000) == 0x1000)
3696 {
3697 unwind.opcode_count--;
3698 unwind.sp_restored = 0;
3699 range = (range | 0x2000) & ~0x1000;
3700 unwind.pending_offset = 0;
3701 }
e16bb312 3702
01ae4198
DJ
3703 /* Pop r4-r15. */
3704 if (range & 0xfff0)
c19d1205 3705 {
01ae4198
DJ
3706 /* See if we can use the short opcodes. These pop a block of up to 8
3707 registers starting with r4, plus maybe r14. */
3708 for (n = 0; n < 8; n++)
3709 {
3710 /* Break at the first non-saved register. */
3711 if ((range & (1 << (n + 4))) == 0)
3712 break;
3713 }
3714 /* See if there are any other bits set. */
3715 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3716 {
3717 /* Use the long form. */
3718 op = 0x8000 | ((range >> 4) & 0xfff);
3719 add_unwind_opcode (op, 2);
3720 }
0dd132b6 3721 else
01ae4198
DJ
3722 {
3723 /* Use the short form. */
3724 if (range & 0x4000)
3725 op = 0xa8; /* Pop r14. */
3726 else
3727 op = 0xa0; /* Do not pop r14. */
3728 op |= (n - 1);
3729 add_unwind_opcode (op, 1);
3730 }
c19d1205 3731 }
0dd132b6 3732
c19d1205
ZW
3733 /* Pop r0-r3. */
3734 if (range & 0xf)
3735 {
3736 op = 0xb100 | (range & 0xf);
3737 add_unwind_opcode (op, 2);
0dd132b6
NC
3738 }
3739
c19d1205
ZW
3740 /* Record the number of bytes pushed. */
3741 for (n = 0; n < 16; n++)
3742 {
3743 if (range & (1 << n))
3744 unwind.frame_size += 4;
3745 }
0dd132b6
NC
3746}
3747
c19d1205
ZW
3748
3749/* Parse a directive saving FPA registers. */
b99bd4ef
NC
3750
3751static void
c19d1205 3752s_arm_unwind_save_fpa (int reg)
b99bd4ef 3753{
c19d1205
ZW
3754 expressionS exp;
3755 int num_regs;
3756 valueT op;
b99bd4ef 3757
c19d1205
ZW
3758 /* Get Number of registers to transfer. */
3759 if (skip_past_comma (&input_line_pointer) != FAIL)
3760 expression (&exp);
3761 else
3762 exp.X_op = O_illegal;
b99bd4ef 3763
c19d1205 3764 if (exp.X_op != O_constant)
b99bd4ef 3765 {
c19d1205
ZW
3766 as_bad (_("expected , <constant>"));
3767 ignore_rest_of_line ();
b99bd4ef
NC
3768 return;
3769 }
3770
c19d1205
ZW
3771 num_regs = exp.X_add_number;
3772
3773 if (num_regs < 1 || num_regs > 4)
b99bd4ef 3774 {
c19d1205
ZW
3775 as_bad (_("number of registers must be in the range [1:4]"));
3776 ignore_rest_of_line ();
b99bd4ef
NC
3777 return;
3778 }
3779
c19d1205 3780 demand_empty_rest_of_line ();
b99bd4ef 3781
c19d1205
ZW
3782 if (reg == 4)
3783 {
3784 /* Short form. */
3785 op = 0xb4 | (num_regs - 1);
3786 add_unwind_opcode (op, 1);
3787 }
b99bd4ef
NC
3788 else
3789 {
c19d1205
ZW
3790 /* Long form. */
3791 op = 0xc800 | (reg << 4) | (num_regs - 1);
3792 add_unwind_opcode (op, 2);
b99bd4ef 3793 }
c19d1205 3794 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
3795}
3796
c19d1205 3797
fa073d69
MS
3798/* Parse a directive saving VFP registers for ARMv6 and above. */
3799
3800static void
3801s_arm_unwind_save_vfp_armv6 (void)
3802{
3803 int count;
3804 unsigned int start;
3805 valueT op;
3806 int num_vfpv3_regs = 0;
3807 int num_regs_below_16;
3808
3809 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
3810 if (count == FAIL)
3811 {
3812 as_bad (_("expected register list"));
3813 ignore_rest_of_line ();
3814 return;
3815 }
3816
3817 demand_empty_rest_of_line ();
3818
3819 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
3820 than FSTMX/FLDMX-style ones). */
3821
3822 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
3823 if (start >= 16)
3824 num_vfpv3_regs = count;
3825 else if (start + count > 16)
3826 num_vfpv3_regs = start + count - 16;
3827
3828 if (num_vfpv3_regs > 0)
3829 {
3830 int start_offset = start > 16 ? start - 16 : 0;
3831 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
3832 add_unwind_opcode (op, 2);
3833 }
3834
3835 /* Generate opcode for registers numbered in the range 0 .. 15. */
3836 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
9c2799c2 3837 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
fa073d69
MS
3838 if (num_regs_below_16 > 0)
3839 {
3840 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
3841 add_unwind_opcode (op, 2);
3842 }
3843
3844 unwind.frame_size += count * 8;
3845}
3846
3847
3848/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
3849
3850static void
c19d1205 3851s_arm_unwind_save_vfp (void)
b99bd4ef 3852{
c19d1205 3853 int count;
ca3f61f7 3854 unsigned int reg;
c19d1205 3855 valueT op;
b99bd4ef 3856
5287ad62 3857 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 3858 if (count == FAIL)
b99bd4ef 3859 {
c19d1205
ZW
3860 as_bad (_("expected register list"));
3861 ignore_rest_of_line ();
b99bd4ef
NC
3862 return;
3863 }
3864
c19d1205 3865 demand_empty_rest_of_line ();
b99bd4ef 3866
c19d1205 3867 if (reg == 8)
b99bd4ef 3868 {
c19d1205
ZW
3869 /* Short form. */
3870 op = 0xb8 | (count - 1);
3871 add_unwind_opcode (op, 1);
b99bd4ef 3872 }
c19d1205 3873 else
b99bd4ef 3874 {
c19d1205
ZW
3875 /* Long form. */
3876 op = 0xb300 | (reg << 4) | (count - 1);
3877 add_unwind_opcode (op, 2);
b99bd4ef 3878 }
c19d1205
ZW
3879 unwind.frame_size += count * 8 + 4;
3880}
b99bd4ef 3881
b99bd4ef 3882
c19d1205
ZW
3883/* Parse a directive saving iWMMXt data registers. */
3884
3885static void
3886s_arm_unwind_save_mmxwr (void)
3887{
3888 int reg;
3889 int hi_reg;
3890 int i;
3891 unsigned mask = 0;
3892 valueT op;
b99bd4ef 3893
c19d1205
ZW
3894 if (*input_line_pointer == '{')
3895 input_line_pointer++;
b99bd4ef 3896
c19d1205 3897 do
b99bd4ef 3898 {
dcbf9037 3899 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 3900
c19d1205 3901 if (reg == FAIL)
b99bd4ef 3902 {
9b7132d3 3903 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205 3904 goto error;
b99bd4ef
NC
3905 }
3906
c19d1205
ZW
3907 if (mask >> reg)
3908 as_tsktsk (_("register list not in ascending order"));
3909 mask |= 1 << reg;
b99bd4ef 3910
c19d1205
ZW
3911 if (*input_line_pointer == '-')
3912 {
3913 input_line_pointer++;
dcbf9037 3914 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
3915 if (hi_reg == FAIL)
3916 {
9b7132d3 3917 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205
ZW
3918 goto error;
3919 }
3920 else if (reg >= hi_reg)
3921 {
3922 as_bad (_("bad register range"));
3923 goto error;
3924 }
3925 for (; reg < hi_reg; reg++)
3926 mask |= 1 << reg;
3927 }
3928 }
3929 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 3930
c19d1205
ZW
3931 if (*input_line_pointer == '}')
3932 input_line_pointer++;
b99bd4ef 3933
c19d1205 3934 demand_empty_rest_of_line ();
b99bd4ef 3935
708587a4 3936 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
3937 the list. */
3938 flush_pending_unwind ();
b99bd4ef 3939
c19d1205 3940 for (i = 0; i < 16; i++)
b99bd4ef 3941 {
c19d1205
ZW
3942 if (mask & (1 << i))
3943 unwind.frame_size += 8;
b99bd4ef
NC
3944 }
3945
c19d1205
ZW
3946 /* Attempt to combine with a previous opcode. We do this because gcc
3947 likes to output separate unwind directives for a single block of
3948 registers. */
3949 if (unwind.opcode_count > 0)
b99bd4ef 3950 {
c19d1205
ZW
3951 i = unwind.opcodes[unwind.opcode_count - 1];
3952 if ((i & 0xf8) == 0xc0)
3953 {
3954 i &= 7;
3955 /* Only merge if the blocks are contiguous. */
3956 if (i < 6)
3957 {
3958 if ((mask & 0xfe00) == (1 << 9))
3959 {
3960 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
3961 unwind.opcode_count--;
3962 }
3963 }
3964 else if (i == 6 && unwind.opcode_count >= 2)
3965 {
3966 i = unwind.opcodes[unwind.opcode_count - 2];
3967 reg = i >> 4;
3968 i &= 0xf;
b99bd4ef 3969
c19d1205
ZW
3970 op = 0xffff << (reg - 1);
3971 if (reg > 0
87a1fd79 3972 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
3973 {
3974 op = (1 << (reg + i + 1)) - 1;
3975 op &= ~((1 << reg) - 1);
3976 mask |= op;
3977 unwind.opcode_count -= 2;
3978 }
3979 }
3980 }
b99bd4ef
NC
3981 }
3982
c19d1205
ZW
3983 hi_reg = 15;
3984 /* We want to generate opcodes in the order the registers have been
3985 saved, ie. descending order. */
3986 for (reg = 15; reg >= -1; reg--)
b99bd4ef 3987 {
c19d1205
ZW
3988 /* Save registers in blocks. */
3989 if (reg < 0
3990 || !(mask & (1 << reg)))
3991 {
3992 /* We found an unsaved reg. Generate opcodes to save the
5f4273c7 3993 preceding block. */
c19d1205
ZW
3994 if (reg != hi_reg)
3995 {
3996 if (reg == 9)
3997 {
3998 /* Short form. */
3999 op = 0xc0 | (hi_reg - 10);
4000 add_unwind_opcode (op, 1);
4001 }
4002 else
4003 {
4004 /* Long form. */
4005 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4006 add_unwind_opcode (op, 2);
4007 }
4008 }
4009 hi_reg = reg - 1;
4010 }
b99bd4ef
NC
4011 }
4012
c19d1205
ZW
4013 return;
4014error:
4015 ignore_rest_of_line ();
b99bd4ef
NC
4016}
4017
4018static void
c19d1205 4019s_arm_unwind_save_mmxwcg (void)
b99bd4ef 4020{
c19d1205
ZW
4021 int reg;
4022 int hi_reg;
4023 unsigned mask = 0;
4024 valueT op;
b99bd4ef 4025
c19d1205
ZW
4026 if (*input_line_pointer == '{')
4027 input_line_pointer++;
b99bd4ef 4028
c19d1205 4029 do
b99bd4ef 4030 {
dcbf9037 4031 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 4032
c19d1205
ZW
4033 if (reg == FAIL)
4034 {
9b7132d3 4035 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4036 goto error;
4037 }
b99bd4ef 4038
c19d1205
ZW
4039 reg -= 8;
4040 if (mask >> reg)
4041 as_tsktsk (_("register list not in ascending order"));
4042 mask |= 1 << reg;
b99bd4ef 4043
c19d1205
ZW
4044 if (*input_line_pointer == '-')
4045 {
4046 input_line_pointer++;
dcbf9037 4047 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
4048 if (hi_reg == FAIL)
4049 {
9b7132d3 4050 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4051 goto error;
4052 }
4053 else if (reg >= hi_reg)
4054 {
4055 as_bad (_("bad register range"));
4056 goto error;
4057 }
4058 for (; reg < hi_reg; reg++)
4059 mask |= 1 << reg;
4060 }
b99bd4ef 4061 }
c19d1205 4062 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4063
c19d1205
ZW
4064 if (*input_line_pointer == '}')
4065 input_line_pointer++;
b99bd4ef 4066
c19d1205
ZW
4067 demand_empty_rest_of_line ();
4068
708587a4 4069 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4070 the list. */
4071 flush_pending_unwind ();
b99bd4ef 4072
c19d1205 4073 for (reg = 0; reg < 16; reg++)
b99bd4ef 4074 {
c19d1205
ZW
4075 if (mask & (1 << reg))
4076 unwind.frame_size += 4;
b99bd4ef 4077 }
c19d1205
ZW
4078 op = 0xc700 | mask;
4079 add_unwind_opcode (op, 2);
4080 return;
4081error:
4082 ignore_rest_of_line ();
b99bd4ef
NC
4083}
4084
c19d1205 4085
fa073d69
MS
4086/* Parse an unwind_save directive.
4087 If the argument is non-zero, this is a .vsave directive. */
c19d1205 4088
b99bd4ef 4089static void
fa073d69 4090s_arm_unwind_save (int arch_v6)
b99bd4ef 4091{
c19d1205
ZW
4092 char *peek;
4093 struct reg_entry *reg;
4094 bfd_boolean had_brace = FALSE;
b99bd4ef 4095
921e5f0a 4096 if (!unwind.proc_start)
c921be7d 4097 as_bad (MISSING_FNSTART);
921e5f0a 4098
c19d1205
ZW
4099 /* Figure out what sort of save we have. */
4100 peek = input_line_pointer;
b99bd4ef 4101
c19d1205 4102 if (*peek == '{')
b99bd4ef 4103 {
c19d1205
ZW
4104 had_brace = TRUE;
4105 peek++;
b99bd4ef
NC
4106 }
4107
c19d1205 4108 reg = arm_reg_parse_multi (&peek);
b99bd4ef 4109
c19d1205 4110 if (!reg)
b99bd4ef 4111 {
c19d1205
ZW
4112 as_bad (_("register expected"));
4113 ignore_rest_of_line ();
b99bd4ef
NC
4114 return;
4115 }
4116
c19d1205 4117 switch (reg->type)
b99bd4ef 4118 {
c19d1205
ZW
4119 case REG_TYPE_FN:
4120 if (had_brace)
4121 {
4122 as_bad (_("FPA .unwind_save does not take a register list"));
4123 ignore_rest_of_line ();
4124 return;
4125 }
93ac2687 4126 input_line_pointer = peek;
c19d1205 4127 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 4128 return;
c19d1205
ZW
4129
4130 case REG_TYPE_RN: s_arm_unwind_save_core (); return;
fa073d69
MS
4131 case REG_TYPE_VFD:
4132 if (arch_v6)
4133 s_arm_unwind_save_vfp_armv6 ();
4134 else
4135 s_arm_unwind_save_vfp ();
4136 return;
c19d1205
ZW
4137 case REG_TYPE_MMXWR: s_arm_unwind_save_mmxwr (); return;
4138 case REG_TYPE_MMXWCG: s_arm_unwind_save_mmxwcg (); return;
4139
4140 default:
4141 as_bad (_(".unwind_save does not support this kind of register"));
4142 ignore_rest_of_line ();
b99bd4ef 4143 }
c19d1205 4144}
b99bd4ef 4145
b99bd4ef 4146
c19d1205
ZW
4147/* Parse an unwind_movsp directive. */
4148
4149static void
4150s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4151{
4152 int reg;
4153 valueT op;
4fa3602b 4154 int offset;
c19d1205 4155
921e5f0a 4156 if (!unwind.proc_start)
c921be7d 4157 as_bad (MISSING_FNSTART);
921e5f0a 4158
dcbf9037 4159 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 4160 if (reg == FAIL)
b99bd4ef 4161 {
9b7132d3 4162 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
c19d1205 4163 ignore_rest_of_line ();
b99bd4ef
NC
4164 return;
4165 }
4fa3602b
PB
4166
4167 /* Optional constant. */
4168 if (skip_past_comma (&input_line_pointer) != FAIL)
4169 {
4170 if (immediate_for_directive (&offset) == FAIL)
4171 return;
4172 }
4173 else
4174 offset = 0;
4175
c19d1205 4176 demand_empty_rest_of_line ();
b99bd4ef 4177
c19d1205 4178 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 4179 {
c19d1205 4180 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
4181 return;
4182 }
4183
c19d1205
ZW
4184 if (unwind.fp_reg != REG_SP)
4185 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 4186
c19d1205
ZW
4187 /* Generate opcode to restore the value. */
4188 op = 0x90 | reg;
4189 add_unwind_opcode (op, 1);
4190
4191 /* Record the information for later. */
4192 unwind.fp_reg = reg;
4fa3602b 4193 unwind.fp_offset = unwind.frame_size - offset;
c19d1205 4194 unwind.sp_restored = 1;
b05fe5cf
ZW
4195}
4196
c19d1205
ZW
4197/* Parse an unwind_pad directive. */
4198
b05fe5cf 4199static void
c19d1205 4200s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 4201{
c19d1205 4202 int offset;
b05fe5cf 4203
921e5f0a 4204 if (!unwind.proc_start)
c921be7d 4205 as_bad (MISSING_FNSTART);
921e5f0a 4206
c19d1205
ZW
4207 if (immediate_for_directive (&offset) == FAIL)
4208 return;
b99bd4ef 4209
c19d1205
ZW
4210 if (offset & 3)
4211 {
4212 as_bad (_("stack increment must be multiple of 4"));
4213 ignore_rest_of_line ();
4214 return;
4215 }
b99bd4ef 4216
c19d1205
ZW
4217 /* Don't generate any opcodes, just record the details for later. */
4218 unwind.frame_size += offset;
4219 unwind.pending_offset += offset;
4220
4221 demand_empty_rest_of_line ();
4222}
4223
4224/* Parse an unwind_setfp directive. */
4225
4226static void
4227s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 4228{
c19d1205
ZW
4229 int sp_reg;
4230 int fp_reg;
4231 int offset;
4232
921e5f0a 4233 if (!unwind.proc_start)
c921be7d 4234 as_bad (MISSING_FNSTART);
921e5f0a 4235
dcbf9037 4236 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
4237 if (skip_past_comma (&input_line_pointer) == FAIL)
4238 sp_reg = FAIL;
4239 else
dcbf9037 4240 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 4241
c19d1205
ZW
4242 if (fp_reg == FAIL || sp_reg == FAIL)
4243 {
4244 as_bad (_("expected <reg>, <reg>"));
4245 ignore_rest_of_line ();
4246 return;
4247 }
b99bd4ef 4248
c19d1205
ZW
4249 /* Optional constant. */
4250 if (skip_past_comma (&input_line_pointer) != FAIL)
4251 {
4252 if (immediate_for_directive (&offset) == FAIL)
4253 return;
4254 }
4255 else
4256 offset = 0;
a737bd4d 4257
c19d1205 4258 demand_empty_rest_of_line ();
a737bd4d 4259
fdfde340 4260 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
a737bd4d 4261 {
c19d1205
ZW
4262 as_bad (_("register must be either sp or set by a previous"
4263 "unwind_movsp directive"));
4264 return;
a737bd4d
NC
4265 }
4266
c19d1205
ZW
4267 /* Don't generate any opcodes, just record the information for later. */
4268 unwind.fp_reg = fp_reg;
4269 unwind.fp_used = 1;
fdfde340 4270 if (sp_reg == REG_SP)
c19d1205
ZW
4271 unwind.fp_offset = unwind.frame_size - offset;
4272 else
4273 unwind.fp_offset -= offset;
a737bd4d
NC
4274}
4275
c19d1205
ZW
4276/* Parse an unwind_raw directive. */
4277
4278static void
4279s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 4280{
c19d1205 4281 expressionS exp;
708587a4 4282 /* This is an arbitrary limit. */
c19d1205
ZW
4283 unsigned char op[16];
4284 int count;
a737bd4d 4285
921e5f0a 4286 if (!unwind.proc_start)
c921be7d 4287 as_bad (MISSING_FNSTART);
921e5f0a 4288
c19d1205
ZW
4289 expression (&exp);
4290 if (exp.X_op == O_constant
4291 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 4292 {
c19d1205
ZW
4293 unwind.frame_size += exp.X_add_number;
4294 expression (&exp);
4295 }
4296 else
4297 exp.X_op = O_illegal;
a737bd4d 4298
c19d1205
ZW
4299 if (exp.X_op != O_constant)
4300 {
4301 as_bad (_("expected <offset>, <opcode>"));
4302 ignore_rest_of_line ();
4303 return;
4304 }
a737bd4d 4305
c19d1205 4306 count = 0;
a737bd4d 4307
c19d1205
ZW
4308 /* Parse the opcode. */
4309 for (;;)
4310 {
4311 if (count >= 16)
4312 {
4313 as_bad (_("unwind opcode too long"));
4314 ignore_rest_of_line ();
a737bd4d 4315 }
c19d1205 4316 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 4317 {
c19d1205
ZW
4318 as_bad (_("invalid unwind opcode"));
4319 ignore_rest_of_line ();
4320 return;
a737bd4d 4321 }
c19d1205 4322 op[count++] = exp.X_add_number;
a737bd4d 4323
c19d1205
ZW
4324 /* Parse the next byte. */
4325 if (skip_past_comma (&input_line_pointer) == FAIL)
4326 break;
a737bd4d 4327
c19d1205
ZW
4328 expression (&exp);
4329 }
b99bd4ef 4330
c19d1205
ZW
4331 /* Add the opcode bytes in reverse order. */
4332 while (count--)
4333 add_unwind_opcode (op[count], 1);
b99bd4ef 4334
c19d1205 4335 demand_empty_rest_of_line ();
b99bd4ef 4336}
ee065d83
PB
4337
4338
4339/* Parse a .eabi_attribute directive. */
4340
4341static void
4342s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4343{
0420f52b 4344 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
ee3c0378
AS
4345
4346 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4347 attributes_set_explicitly[tag] = 1;
ee065d83
PB
4348}
4349
0855e32b
NS
4350/* Emit a tls fix for the symbol. */
4351
4352static void
4353s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4354{
4355 char *p;
4356 expressionS exp;
4357#ifdef md_flush_pending_output
4358 md_flush_pending_output ();
4359#endif
4360
4361#ifdef md_cons_align
4362 md_cons_align (4);
4363#endif
4364
4365 /* Since we're just labelling the code, there's no need to define a
4366 mapping symbol. */
4367 expression (&exp);
4368 p = obstack_next_free (&frchain_now->frch_obstack);
4369 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4370 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4371 : BFD_RELOC_ARM_TLS_DESCSEQ);
4372}
cdf9ccec 4373#endif /* OBJ_ELF */
0855e32b 4374
ee065d83 4375static void s_arm_arch (int);
7a1d4c38 4376static void s_arm_object_arch (int);
ee065d83
PB
4377static void s_arm_cpu (int);
4378static void s_arm_fpu (int);
69133863 4379static void s_arm_arch_extension (int);
b99bd4ef 4380
f0927246
NC
4381#ifdef TE_PE
4382
4383static void
5f4273c7 4384pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
f0927246
NC
4385{
4386 expressionS exp;
4387
4388 do
4389 {
4390 expression (&exp);
4391 if (exp.X_op == O_symbol)
4392 exp.X_op = O_secrel;
4393
4394 emit_expr (&exp, 4);
4395 }
4396 while (*input_line_pointer++ == ',');
4397
4398 input_line_pointer--;
4399 demand_empty_rest_of_line ();
4400}
4401#endif /* TE_PE */
4402
c19d1205
ZW
4403/* This table describes all the machine specific pseudo-ops the assembler
4404 has to support. The fields are:
4405 pseudo-op name without dot
4406 function to call to execute this pseudo-op
4407 Integer arg to pass to the function. */
b99bd4ef 4408
c19d1205 4409const pseudo_typeS md_pseudo_table[] =
b99bd4ef 4410{
c19d1205
ZW
4411 /* Never called because '.req' does not start a line. */
4412 { "req", s_req, 0 },
dcbf9037
JB
4413 /* Following two are likewise never called. */
4414 { "dn", s_dn, 0 },
4415 { "qn", s_qn, 0 },
c19d1205
ZW
4416 { "unreq", s_unreq, 0 },
4417 { "bss", s_bss, 0 },
4418 { "align", s_align, 0 },
4419 { "arm", s_arm, 0 },
4420 { "thumb", s_thumb, 0 },
4421 { "code", s_code, 0 },
4422 { "force_thumb", s_force_thumb, 0 },
4423 { "thumb_func", s_thumb_func, 0 },
4424 { "thumb_set", s_thumb_set, 0 },
4425 { "even", s_even, 0 },
4426 { "ltorg", s_ltorg, 0 },
4427 { "pool", s_ltorg, 0 },
4428 { "syntax", s_syntax, 0 },
8463be01
PB
4429 { "cpu", s_arm_cpu, 0 },
4430 { "arch", s_arm_arch, 0 },
7a1d4c38 4431 { "object_arch", s_arm_object_arch, 0 },
8463be01 4432 { "fpu", s_arm_fpu, 0 },
69133863 4433 { "arch_extension", s_arm_arch_extension, 0 },
c19d1205 4434#ifdef OBJ_ELF
c921be7d
NC
4435 { "word", s_arm_elf_cons, 4 },
4436 { "long", s_arm_elf_cons, 4 },
4437 { "inst.n", s_arm_elf_inst, 2 },
4438 { "inst.w", s_arm_elf_inst, 4 },
4439 { "inst", s_arm_elf_inst, 0 },
4440 { "rel31", s_arm_rel31, 0 },
c19d1205
ZW
4441 { "fnstart", s_arm_unwind_fnstart, 0 },
4442 { "fnend", s_arm_unwind_fnend, 0 },
4443 { "cantunwind", s_arm_unwind_cantunwind, 0 },
4444 { "personality", s_arm_unwind_personality, 0 },
4445 { "personalityindex", s_arm_unwind_personalityindex, 0 },
4446 { "handlerdata", s_arm_unwind_handlerdata, 0 },
4447 { "save", s_arm_unwind_save, 0 },
fa073d69 4448 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
4449 { "movsp", s_arm_unwind_movsp, 0 },
4450 { "pad", s_arm_unwind_pad, 0 },
4451 { "setfp", s_arm_unwind_setfp, 0 },
4452 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 4453 { "eabi_attribute", s_arm_eabi_attribute, 0 },
0855e32b 4454 { "tlsdescseq", s_arm_tls_descseq, 0 },
c19d1205
ZW
4455#else
4456 { "word", cons, 4},
f0927246
NC
4457
4458 /* These are used for dwarf. */
4459 {"2byte", cons, 2},
4460 {"4byte", cons, 4},
4461 {"8byte", cons, 8},
4462 /* These are used for dwarf2. */
4463 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
4464 { "loc", dwarf2_directive_loc, 0 },
4465 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
4466#endif
4467 { "extend", float_cons, 'x' },
4468 { "ldouble", float_cons, 'x' },
4469 { "packed", float_cons, 'p' },
f0927246
NC
4470#ifdef TE_PE
4471 {"secrel32", pe_directive_secrel, 0},
4472#endif
c19d1205
ZW
4473 { 0, 0, 0 }
4474};
4475\f
4476/* Parser functions used exclusively in instruction operands. */
b99bd4ef 4477
c19d1205
ZW
4478/* Generic immediate-value read function for use in insn parsing.
4479 STR points to the beginning of the immediate (the leading #);
4480 VAL receives the value; if the value is outside [MIN, MAX]
4481 issue an error. PREFIX_OPT is true if the immediate prefix is
4482 optional. */
b99bd4ef 4483
c19d1205
ZW
4484static int
4485parse_immediate (char **str, int *val, int min, int max,
4486 bfd_boolean prefix_opt)
4487{
4488 expressionS exp;
4489 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
4490 if (exp.X_op != O_constant)
b99bd4ef 4491 {
c19d1205
ZW
4492 inst.error = _("constant expression required");
4493 return FAIL;
4494 }
b99bd4ef 4495
c19d1205
ZW
4496 if (exp.X_add_number < min || exp.X_add_number > max)
4497 {
4498 inst.error = _("immediate value out of range");
4499 return FAIL;
4500 }
b99bd4ef 4501
c19d1205
ZW
4502 *val = exp.X_add_number;
4503 return SUCCESS;
4504}
b99bd4ef 4505
5287ad62 4506/* Less-generic immediate-value read function with the possibility of loading a
036dc3f7 4507 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5287ad62
JB
4508 instructions. Puts the result directly in inst.operands[i]. */
4509
4510static int
4511parse_big_immediate (char **str, int i)
4512{
4513 expressionS exp;
4514 char *ptr = *str;
4515
4516 my_get_expression (&exp, &ptr, GE_OPT_PREFIX_BIG);
4517
4518 if (exp.X_op == O_constant)
036dc3f7
PB
4519 {
4520 inst.operands[i].imm = exp.X_add_number & 0xffffffff;
4521 /* If we're on a 64-bit host, then a 64-bit number can be returned using
4522 O_constant. We have to be careful not to break compilation for
4523 32-bit X_add_number, though. */
58ad575f 4524 if ((exp.X_add_number & ~(offsetT)(0xffffffffU)) != 0)
036dc3f7
PB
4525 {
4526 /* X >> 32 is illegal if sizeof (exp.X_add_number) == 4. */
4527 inst.operands[i].reg = ((exp.X_add_number >> 16) >> 16) & 0xffffffff;
4528 inst.operands[i].regisimm = 1;
4529 }
4530 }
5287ad62 4531 else if (exp.X_op == O_big
95b75c01 4532 && LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 32)
5287ad62
JB
4533 {
4534 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
95b75c01 4535
5287ad62
JB
4536 /* Bignums have their least significant bits in
4537 generic_bignum[0]. Make sure we put 32 bits in imm and
4538 32 bits in reg, in a (hopefully) portable way. */
9c2799c2 4539 gas_assert (parts != 0);
95b75c01
NC
4540
4541 /* Make sure that the number is not too big.
4542 PR 11972: Bignums can now be sign-extended to the
4543 size of a .octa so check that the out of range bits
4544 are all zero or all one. */
4545 if (LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 64)
4546 {
4547 LITTLENUM_TYPE m = -1;
4548
4549 if (generic_bignum[parts * 2] != 0
4550 && generic_bignum[parts * 2] != m)
4551 return FAIL;
4552
4553 for (j = parts * 2 + 1; j < (unsigned) exp.X_add_number; j++)
4554 if (generic_bignum[j] != generic_bignum[j-1])
4555 return FAIL;
4556 }
4557
5287ad62
JB
4558 inst.operands[i].imm = 0;
4559 for (j = 0; j < parts; j++, idx++)
4560 inst.operands[i].imm |= generic_bignum[idx]
4561 << (LITTLENUM_NUMBER_OF_BITS * j);
4562 inst.operands[i].reg = 0;
4563 for (j = 0; j < parts; j++, idx++)
4564 inst.operands[i].reg |= generic_bignum[idx]
4565 << (LITTLENUM_NUMBER_OF_BITS * j);
4566 inst.operands[i].regisimm = 1;
4567 }
4568 else
4569 return FAIL;
5f4273c7 4570
5287ad62
JB
4571 *str = ptr;
4572
4573 return SUCCESS;
4574}
4575
c19d1205
ZW
4576/* Returns the pseudo-register number of an FPA immediate constant,
4577 or FAIL if there isn't a valid constant here. */
b99bd4ef 4578
c19d1205
ZW
4579static int
4580parse_fpa_immediate (char ** str)
4581{
4582 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4583 char * save_in;
4584 expressionS exp;
4585 int i;
4586 int j;
b99bd4ef 4587
c19d1205
ZW
4588 /* First try and match exact strings, this is to guarantee
4589 that some formats will work even for cross assembly. */
b99bd4ef 4590
c19d1205
ZW
4591 for (i = 0; fp_const[i]; i++)
4592 {
4593 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4594 {
c19d1205 4595 char *start = *str;
b99bd4ef 4596
c19d1205
ZW
4597 *str += strlen (fp_const[i]);
4598 if (is_end_of_line[(unsigned char) **str])
4599 return i + 8;
4600 *str = start;
4601 }
4602 }
b99bd4ef 4603
c19d1205
ZW
4604 /* Just because we didn't get a match doesn't mean that the constant
4605 isn't valid, just that it is in a format that we don't
4606 automatically recognize. Try parsing it with the standard
4607 expression routines. */
b99bd4ef 4608
c19d1205 4609 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4610
c19d1205
ZW
4611 /* Look for a raw floating point number. */
4612 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4613 && is_end_of_line[(unsigned char) *save_in])
4614 {
4615 for (i = 0; i < NUM_FLOAT_VALS; i++)
4616 {
4617 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4618 {
c19d1205
ZW
4619 if (words[j] != fp_values[i][j])
4620 break;
b99bd4ef
NC
4621 }
4622
c19d1205 4623 if (j == MAX_LITTLENUMS)
b99bd4ef 4624 {
c19d1205
ZW
4625 *str = save_in;
4626 return i + 8;
b99bd4ef
NC
4627 }
4628 }
4629 }
b99bd4ef 4630
c19d1205
ZW
4631 /* Try and parse a more complex expression, this will probably fail
4632 unless the code uses a floating point prefix (eg "0f"). */
4633 save_in = input_line_pointer;
4634 input_line_pointer = *str;
4635 if (expression (&exp) == absolute_section
4636 && exp.X_op == O_big
4637 && exp.X_add_number < 0)
4638 {
4639 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4640 Ditto for 15. */
4641 if (gen_to_words (words, 5, (long) 15) == 0)
4642 {
4643 for (i = 0; i < NUM_FLOAT_VALS; i++)
4644 {
4645 for (j = 0; j < MAX_LITTLENUMS; j++)
4646 {
4647 if (words[j] != fp_values[i][j])
4648 break;
4649 }
b99bd4ef 4650
c19d1205
ZW
4651 if (j == MAX_LITTLENUMS)
4652 {
4653 *str = input_line_pointer;
4654 input_line_pointer = save_in;
4655 return i + 8;
4656 }
4657 }
4658 }
b99bd4ef
NC
4659 }
4660
c19d1205
ZW
4661 *str = input_line_pointer;
4662 input_line_pointer = save_in;
4663 inst.error = _("invalid FPA immediate expression");
4664 return FAIL;
b99bd4ef
NC
4665}
4666
136da414
JB
4667/* Returns 1 if a number has "quarter-precision" float format
4668 0baBbbbbbc defgh000 00000000 00000000. */
4669
4670static int
4671is_quarter_float (unsigned imm)
4672{
4673 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4674 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4675}
4676
4677/* Parse an 8-bit "quarter-precision" floating point number of the form:
4678 0baBbbbbbc defgh000 00000000 00000000.
c96612cc
JB
4679 The zero and minus-zero cases need special handling, since they can't be
4680 encoded in the "quarter-precision" float format, but can nonetheless be
4681 loaded as integer constants. */
136da414
JB
4682
4683static unsigned
4684parse_qfloat_immediate (char **ccp, int *immed)
4685{
4686 char *str = *ccp;
c96612cc 4687 char *fpnum;
136da414 4688 LITTLENUM_TYPE words[MAX_LITTLENUMS];
c96612cc 4689 int found_fpchar = 0;
5f4273c7 4690
136da414 4691 skip_past_char (&str, '#');
5f4273c7 4692
c96612cc
JB
4693 /* We must not accidentally parse an integer as a floating-point number. Make
4694 sure that the value we parse is not an integer by checking for special
4695 characters '.' or 'e'.
4696 FIXME: This is a horrible hack, but doing better is tricky because type
4697 information isn't in a very usable state at parse time. */
4698 fpnum = str;
4699 skip_whitespace (fpnum);
4700
4701 if (strncmp (fpnum, "0x", 2) == 0)
4702 return FAIL;
4703 else
4704 {
4705 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
4706 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
4707 {
4708 found_fpchar = 1;
4709 break;
4710 }
4711
4712 if (!found_fpchar)
4713 return FAIL;
4714 }
5f4273c7 4715
136da414
JB
4716 if ((str = atof_ieee (str, 's', words)) != NULL)
4717 {
4718 unsigned fpword = 0;
4719 int i;
5f4273c7 4720
136da414
JB
4721 /* Our FP word must be 32 bits (single-precision FP). */
4722 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
4723 {
4724 fpword <<= LITTLENUM_NUMBER_OF_BITS;
4725 fpword |= words[i];
4726 }
5f4273c7 4727
c96612cc 4728 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
136da414
JB
4729 *immed = fpword;
4730 else
4731 return FAIL;
4732
4733 *ccp = str;
5f4273c7 4734
136da414
JB
4735 return SUCCESS;
4736 }
5f4273c7 4737
136da414
JB
4738 return FAIL;
4739}
4740
c19d1205
ZW
4741/* Shift operands. */
4742enum shift_kind
b99bd4ef 4743{
c19d1205
ZW
4744 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
4745};
b99bd4ef 4746
c19d1205
ZW
4747struct asm_shift_name
4748{
4749 const char *name;
4750 enum shift_kind kind;
4751};
b99bd4ef 4752
c19d1205
ZW
4753/* Third argument to parse_shift. */
4754enum parse_shift_mode
4755{
4756 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
4757 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
4758 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
4759 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
4760 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
4761};
b99bd4ef 4762
c19d1205
ZW
4763/* Parse a <shift> specifier on an ARM data processing instruction.
4764 This has three forms:
b99bd4ef 4765
c19d1205
ZW
4766 (LSL|LSR|ASL|ASR|ROR) Rs
4767 (LSL|LSR|ASL|ASR|ROR) #imm
4768 RRX
b99bd4ef 4769
c19d1205
ZW
4770 Note that ASL is assimilated to LSL in the instruction encoding, and
4771 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 4772
c19d1205
ZW
4773static int
4774parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 4775{
c19d1205
ZW
4776 const struct asm_shift_name *shift_name;
4777 enum shift_kind shift;
4778 char *s = *str;
4779 char *p = s;
4780 int reg;
b99bd4ef 4781
c19d1205
ZW
4782 for (p = *str; ISALPHA (*p); p++)
4783 ;
b99bd4ef 4784
c19d1205 4785 if (p == *str)
b99bd4ef 4786 {
c19d1205
ZW
4787 inst.error = _("shift expression expected");
4788 return FAIL;
b99bd4ef
NC
4789 }
4790
21d799b5
NC
4791 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
4792 p - *str);
c19d1205
ZW
4793
4794 if (shift_name == NULL)
b99bd4ef 4795 {
c19d1205
ZW
4796 inst.error = _("shift expression expected");
4797 return FAIL;
b99bd4ef
NC
4798 }
4799
c19d1205 4800 shift = shift_name->kind;
b99bd4ef 4801
c19d1205
ZW
4802 switch (mode)
4803 {
4804 case NO_SHIFT_RESTRICT:
4805 case SHIFT_IMMEDIATE: break;
b99bd4ef 4806
c19d1205
ZW
4807 case SHIFT_LSL_OR_ASR_IMMEDIATE:
4808 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
4809 {
4810 inst.error = _("'LSL' or 'ASR' required");
4811 return FAIL;
4812 }
4813 break;
b99bd4ef 4814
c19d1205
ZW
4815 case SHIFT_LSL_IMMEDIATE:
4816 if (shift != SHIFT_LSL)
4817 {
4818 inst.error = _("'LSL' required");
4819 return FAIL;
4820 }
4821 break;
b99bd4ef 4822
c19d1205
ZW
4823 case SHIFT_ASR_IMMEDIATE:
4824 if (shift != SHIFT_ASR)
4825 {
4826 inst.error = _("'ASR' required");
4827 return FAIL;
4828 }
4829 break;
b99bd4ef 4830
c19d1205
ZW
4831 default: abort ();
4832 }
b99bd4ef 4833
c19d1205
ZW
4834 if (shift != SHIFT_RRX)
4835 {
4836 /* Whitespace can appear here if the next thing is a bare digit. */
4837 skip_whitespace (p);
b99bd4ef 4838
c19d1205 4839 if (mode == NO_SHIFT_RESTRICT
dcbf9037 4840 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4841 {
4842 inst.operands[i].imm = reg;
4843 inst.operands[i].immisreg = 1;
4844 }
4845 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4846 return FAIL;
4847 }
4848 inst.operands[i].shift_kind = shift;
4849 inst.operands[i].shifted = 1;
4850 *str = p;
4851 return SUCCESS;
b99bd4ef
NC
4852}
4853
c19d1205 4854/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 4855
c19d1205
ZW
4856 #<immediate>
4857 #<immediate>, <rotate>
4858 <Rm>
4859 <Rm>, <shift>
b99bd4ef 4860
c19d1205
ZW
4861 where <shift> is defined by parse_shift above, and <rotate> is a
4862 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 4863 is deferred to md_apply_fix. */
b99bd4ef 4864
c19d1205
ZW
4865static int
4866parse_shifter_operand (char **str, int i)
4867{
4868 int value;
91d6fa6a 4869 expressionS exp;
b99bd4ef 4870
dcbf9037 4871 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4872 {
4873 inst.operands[i].reg = value;
4874 inst.operands[i].isreg = 1;
b99bd4ef 4875
c19d1205
ZW
4876 /* parse_shift will override this if appropriate */
4877 inst.reloc.exp.X_op = O_constant;
4878 inst.reloc.exp.X_add_number = 0;
b99bd4ef 4879
c19d1205
ZW
4880 if (skip_past_comma (str) == FAIL)
4881 return SUCCESS;
b99bd4ef 4882
c19d1205
ZW
4883 /* Shift operation on register. */
4884 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
4885 }
4886
c19d1205
ZW
4887 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
4888 return FAIL;
b99bd4ef 4889
c19d1205 4890 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 4891 {
c19d1205 4892 /* #x, y -- ie explicit rotation by Y. */
91d6fa6a 4893 if (my_get_expression (&exp, str, GE_NO_PREFIX))
c19d1205 4894 return FAIL;
b99bd4ef 4895
91d6fa6a 4896 if (exp.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
c19d1205
ZW
4897 {
4898 inst.error = _("constant expression expected");
4899 return FAIL;
4900 }
b99bd4ef 4901
91d6fa6a 4902 value = exp.X_add_number;
c19d1205
ZW
4903 if (value < 0 || value > 30 || value % 2 != 0)
4904 {
4905 inst.error = _("invalid rotation");
4906 return FAIL;
4907 }
4908 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
4909 {
4910 inst.error = _("invalid constant");
4911 return FAIL;
4912 }
09d92015 4913
a415b1cd
JB
4914 /* Encode as specified. */
4915 inst.operands[i].imm = inst.reloc.exp.X_add_number | value << 7;
4916 return SUCCESS;
09d92015
MM
4917 }
4918
c19d1205
ZW
4919 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
4920 inst.reloc.pc_rel = 0;
4921 return SUCCESS;
09d92015
MM
4922}
4923
4962c51a
MS
4924/* Group relocation information. Each entry in the table contains the
4925 textual name of the relocation as may appear in assembler source
4926 and must end with a colon.
4927 Along with this textual name are the relocation codes to be used if
4928 the corresponding instruction is an ALU instruction (ADD or SUB only),
4929 an LDR, an LDRS, or an LDC. */
4930
4931struct group_reloc_table_entry
4932{
4933 const char *name;
4934 int alu_code;
4935 int ldr_code;
4936 int ldrs_code;
4937 int ldc_code;
4938};
4939
4940typedef enum
4941{
4942 /* Varieties of non-ALU group relocation. */
4943
4944 GROUP_LDR,
4945 GROUP_LDRS,
4946 GROUP_LDC
4947} group_reloc_type;
4948
4949static struct group_reloc_table_entry group_reloc_table[] =
4950 { /* Program counter relative: */
4951 { "pc_g0_nc",
4952 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
4953 0, /* LDR */
4954 0, /* LDRS */
4955 0 }, /* LDC */
4956 { "pc_g0",
4957 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
4958 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
4959 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
4960 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
4961 { "pc_g1_nc",
4962 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
4963 0, /* LDR */
4964 0, /* LDRS */
4965 0 }, /* LDC */
4966 { "pc_g1",
4967 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
4968 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
4969 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
4970 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
4971 { "pc_g2",
4972 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
4973 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
4974 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
4975 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
4976 /* Section base relative */
4977 { "sb_g0_nc",
4978 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
4979 0, /* LDR */
4980 0, /* LDRS */
4981 0 }, /* LDC */
4982 { "sb_g0",
4983 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
4984 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
4985 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
4986 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
4987 { "sb_g1_nc",
4988 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
4989 0, /* LDR */
4990 0, /* LDRS */
4991 0 }, /* LDC */
4992 { "sb_g1",
4993 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
4994 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
4995 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
4996 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
4997 { "sb_g2",
4998 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
4999 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5000 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
5001 BFD_RELOC_ARM_LDC_SB_G2 } }; /* LDC */
5002
5003/* Given the address of a pointer pointing to the textual name of a group
5004 relocation as may appear in assembler source, attempt to find its details
5005 in group_reloc_table. The pointer will be updated to the character after
5006 the trailing colon. On failure, FAIL will be returned; SUCCESS
5007 otherwise. On success, *entry will be updated to point at the relevant
5008 group_reloc_table entry. */
5009
5010static int
5011find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5012{
5013 unsigned int i;
5014 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5015 {
5016 int length = strlen (group_reloc_table[i].name);
5017
5f4273c7
NC
5018 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5019 && (*str)[length] == ':')
4962c51a
MS
5020 {
5021 *out = &group_reloc_table[i];
5022 *str += (length + 1);
5023 return SUCCESS;
5024 }
5025 }
5026
5027 return FAIL;
5028}
5029
5030/* Parse a <shifter_operand> for an ARM data processing instruction
5031 (as for parse_shifter_operand) where group relocations are allowed:
5032
5033 #<immediate>
5034 #<immediate>, <rotate>
5035 #:<group_reloc>:<expression>
5036 <Rm>
5037 <Rm>, <shift>
5038
5039 where <group_reloc> is one of the strings defined in group_reloc_table.
5040 The hashes are optional.
5041
5042 Everything else is as for parse_shifter_operand. */
5043
5044static parse_operand_result
5045parse_shifter_operand_group_reloc (char **str, int i)
5046{
5047 /* Determine if we have the sequence of characters #: or just :
5048 coming next. If we do, then we check for a group relocation.
5049 If we don't, punt the whole lot to parse_shifter_operand. */
5050
5051 if (((*str)[0] == '#' && (*str)[1] == ':')
5052 || (*str)[0] == ':')
5053 {
5054 struct group_reloc_table_entry *entry;
5055
5056 if ((*str)[0] == '#')
5057 (*str) += 2;
5058 else
5059 (*str)++;
5060
5061 /* Try to parse a group relocation. Anything else is an error. */
5062 if (find_group_reloc_table_entry (str, &entry) == FAIL)
5063 {
5064 inst.error = _("unknown group relocation");
5065 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5066 }
5067
5068 /* We now have the group relocation table entry corresponding to
5069 the name in the assembler source. Next, we parse the expression. */
5070 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
5071 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5072
5073 /* Record the relocation type (always the ALU variant here). */
21d799b5 5074 inst.reloc.type = (bfd_reloc_code_real_type) entry->alu_code;
9c2799c2 5075 gas_assert (inst.reloc.type != 0);
4962c51a
MS
5076
5077 return PARSE_OPERAND_SUCCESS;
5078 }
5079 else
5080 return parse_shifter_operand (str, i) == SUCCESS
5081 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
5082
5083 /* Never reached. */
5084}
5085
8e560766
MGD
5086/* Parse a Neon alignment expression. Information is written to
5087 inst.operands[i]. We assume the initial ':' has been skipped.
fa94de6b 5088
8e560766
MGD
5089 align .imm = align << 8, .immisalign=1, .preind=0 */
5090static parse_operand_result
5091parse_neon_alignment (char **str, int i)
5092{
5093 char *p = *str;
5094 expressionS exp;
5095
5096 my_get_expression (&exp, &p, GE_NO_PREFIX);
5097
5098 if (exp.X_op != O_constant)
5099 {
5100 inst.error = _("alignment must be constant");
5101 return PARSE_OPERAND_FAIL;
5102 }
5103
5104 inst.operands[i].imm = exp.X_add_number << 8;
5105 inst.operands[i].immisalign = 1;
5106 /* Alignments are not pre-indexes. */
5107 inst.operands[i].preind = 0;
5108
5109 *str = p;
5110 return PARSE_OPERAND_SUCCESS;
5111}
5112
c19d1205
ZW
5113/* Parse all forms of an ARM address expression. Information is written
5114 to inst.operands[i] and/or inst.reloc.
09d92015 5115
c19d1205 5116 Preindexed addressing (.preind=1):
09d92015 5117
c19d1205
ZW
5118 [Rn, #offset] .reg=Rn .reloc.exp=offset
5119 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5120 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5121 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5122
c19d1205 5123 These three may have a trailing ! which causes .writeback to be set also.
09d92015 5124
c19d1205 5125 Postindexed addressing (.postind=1, .writeback=1):
09d92015 5126
c19d1205
ZW
5127 [Rn], #offset .reg=Rn .reloc.exp=offset
5128 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5129 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5130 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5131
c19d1205 5132 Unindexed addressing (.preind=0, .postind=0):
09d92015 5133
c19d1205 5134 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 5135
c19d1205 5136 Other:
09d92015 5137
c19d1205
ZW
5138 [Rn]{!} shorthand for [Rn,#0]{!}
5139 =immediate .isreg=0 .reloc.exp=immediate
5140 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 5141
c19d1205
ZW
5142 It is the caller's responsibility to check for addressing modes not
5143 supported by the instruction, and to set inst.reloc.type. */
5144
4962c51a
MS
5145static parse_operand_result
5146parse_address_main (char **str, int i, int group_relocations,
5147 group_reloc_type group_type)
09d92015 5148{
c19d1205
ZW
5149 char *p = *str;
5150 int reg;
09d92015 5151
c19d1205 5152 if (skip_past_char (&p, '[') == FAIL)
09d92015 5153 {
c19d1205
ZW
5154 if (skip_past_char (&p, '=') == FAIL)
5155 {
974da60d 5156 /* Bare address - translate to PC-relative offset. */
c19d1205
ZW
5157 inst.reloc.pc_rel = 1;
5158 inst.operands[i].reg = REG_PC;
5159 inst.operands[i].isreg = 1;
5160 inst.operands[i].preind = 1;
5161 }
974da60d 5162 /* Otherwise a load-constant pseudo op, no special treatment needed here. */
09d92015 5163
c19d1205 5164 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4962c51a 5165 return PARSE_OPERAND_FAIL;
09d92015 5166
c19d1205 5167 *str = p;
4962c51a 5168 return PARSE_OPERAND_SUCCESS;
09d92015
MM
5169 }
5170
dcbf9037 5171 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 5172 {
c19d1205 5173 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 5174 return PARSE_OPERAND_FAIL;
09d92015 5175 }
c19d1205
ZW
5176 inst.operands[i].reg = reg;
5177 inst.operands[i].isreg = 1;
09d92015 5178
c19d1205 5179 if (skip_past_comma (&p) == SUCCESS)
09d92015 5180 {
c19d1205 5181 inst.operands[i].preind = 1;
09d92015 5182
c19d1205
ZW
5183 if (*p == '+') p++;
5184 else if (*p == '-') p++, inst.operands[i].negative = 1;
5185
dcbf9037 5186 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 5187 {
c19d1205
ZW
5188 inst.operands[i].imm = reg;
5189 inst.operands[i].immisreg = 1;
5190
5191 if (skip_past_comma (&p) == SUCCESS)
5192 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5193 return PARSE_OPERAND_FAIL;
c19d1205 5194 }
5287ad62 5195 else if (skip_past_char (&p, ':') == SUCCESS)
8e560766
MGD
5196 {
5197 /* FIXME: '@' should be used here, but it's filtered out by generic
5198 code before we get to see it here. This may be subject to
5199 change. */
5200 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5201
8e560766
MGD
5202 if (result != PARSE_OPERAND_SUCCESS)
5203 return result;
5204 }
c19d1205
ZW
5205 else
5206 {
5207 if (inst.operands[i].negative)
5208 {
5209 inst.operands[i].negative = 0;
5210 p--;
5211 }
4962c51a 5212
5f4273c7
NC
5213 if (group_relocations
5214 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4962c51a
MS
5215 {
5216 struct group_reloc_table_entry *entry;
5217
5218 /* Skip over the #: or : sequence. */
5219 if (*p == '#')
5220 p += 2;
5221 else
5222 p++;
5223
5224 /* Try to parse a group relocation. Anything else is an
5225 error. */
5226 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5227 {
5228 inst.error = _("unknown group relocation");
5229 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5230 }
5231
5232 /* We now have the group relocation table entry corresponding to
5233 the name in the assembler source. Next, we parse the
5234 expression. */
5235 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5236 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5237
5238 /* Record the relocation type. */
5239 switch (group_type)
5240 {
5241 case GROUP_LDR:
21d799b5 5242 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldr_code;
4962c51a
MS
5243 break;
5244
5245 case GROUP_LDRS:
21d799b5 5246 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldrs_code;
4962c51a
MS
5247 break;
5248
5249 case GROUP_LDC:
21d799b5 5250 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldc_code;
4962c51a
MS
5251 break;
5252
5253 default:
9c2799c2 5254 gas_assert (0);
4962c51a
MS
5255 }
5256
5257 if (inst.reloc.type == 0)
5258 {
5259 inst.error = _("this group relocation is not allowed on this instruction");
5260 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5261 }
5262 }
5263 else
26d97720
NS
5264 {
5265 char *q = p;
5266 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5267 return PARSE_OPERAND_FAIL;
5268 /* If the offset is 0, find out if it's a +0 or -0. */
5269 if (inst.reloc.exp.X_op == O_constant
5270 && inst.reloc.exp.X_add_number == 0)
5271 {
5272 skip_whitespace (q);
5273 if (*q == '#')
5274 {
5275 q++;
5276 skip_whitespace (q);
5277 }
5278 if (*q == '-')
5279 inst.operands[i].negative = 1;
5280 }
5281 }
09d92015
MM
5282 }
5283 }
8e560766
MGD
5284 else if (skip_past_char (&p, ':') == SUCCESS)
5285 {
5286 /* FIXME: '@' should be used here, but it's filtered out by generic code
5287 before we get to see it here. This may be subject to change. */
5288 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5289
8e560766
MGD
5290 if (result != PARSE_OPERAND_SUCCESS)
5291 return result;
5292 }
09d92015 5293
517bb291
NC
5294 /* PR gas/14987: Allow for whitespace before the closing bracket. */
5295 skip_whitespace (p);
5296
c19d1205 5297 if (skip_past_char (&p, ']') == FAIL)
09d92015 5298 {
c19d1205 5299 inst.error = _("']' expected");
4962c51a 5300 return PARSE_OPERAND_FAIL;
09d92015
MM
5301 }
5302
c19d1205
ZW
5303 if (skip_past_char (&p, '!') == SUCCESS)
5304 inst.operands[i].writeback = 1;
09d92015 5305
c19d1205 5306 else if (skip_past_comma (&p) == SUCCESS)
09d92015 5307 {
c19d1205
ZW
5308 if (skip_past_char (&p, '{') == SUCCESS)
5309 {
5310 /* [Rn], {expr} - unindexed, with option */
5311 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 5312 0, 255, TRUE) == FAIL)
4962c51a 5313 return PARSE_OPERAND_FAIL;
09d92015 5314
c19d1205
ZW
5315 if (skip_past_char (&p, '}') == FAIL)
5316 {
5317 inst.error = _("'}' expected at end of 'option' field");
4962c51a 5318 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5319 }
5320 if (inst.operands[i].preind)
5321 {
5322 inst.error = _("cannot combine index with option");
4962c51a 5323 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5324 }
5325 *str = p;
4962c51a 5326 return PARSE_OPERAND_SUCCESS;
09d92015 5327 }
c19d1205
ZW
5328 else
5329 {
5330 inst.operands[i].postind = 1;
5331 inst.operands[i].writeback = 1;
09d92015 5332
c19d1205
ZW
5333 if (inst.operands[i].preind)
5334 {
5335 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 5336 return PARSE_OPERAND_FAIL;
c19d1205 5337 }
09d92015 5338
c19d1205
ZW
5339 if (*p == '+') p++;
5340 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 5341
dcbf9037 5342 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 5343 {
5287ad62
JB
5344 /* We might be using the immediate for alignment already. If we
5345 are, OR the register number into the low-order bits. */
5346 if (inst.operands[i].immisalign)
5347 inst.operands[i].imm |= reg;
5348 else
5349 inst.operands[i].imm = reg;
c19d1205 5350 inst.operands[i].immisreg = 1;
a737bd4d 5351
c19d1205
ZW
5352 if (skip_past_comma (&p) == SUCCESS)
5353 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5354 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5355 }
5356 else
5357 {
26d97720 5358 char *q = p;
c19d1205
ZW
5359 if (inst.operands[i].negative)
5360 {
5361 inst.operands[i].negative = 0;
5362 p--;
5363 }
5364 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 5365 return PARSE_OPERAND_FAIL;
26d97720
NS
5366 /* If the offset is 0, find out if it's a +0 or -0. */
5367 if (inst.reloc.exp.X_op == O_constant
5368 && inst.reloc.exp.X_add_number == 0)
5369 {
5370 skip_whitespace (q);
5371 if (*q == '#')
5372 {
5373 q++;
5374 skip_whitespace (q);
5375 }
5376 if (*q == '-')
5377 inst.operands[i].negative = 1;
5378 }
c19d1205
ZW
5379 }
5380 }
a737bd4d
NC
5381 }
5382
c19d1205
ZW
5383 /* If at this point neither .preind nor .postind is set, we have a
5384 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
5385 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
5386 {
5387 inst.operands[i].preind = 1;
5388 inst.reloc.exp.X_op = O_constant;
5389 inst.reloc.exp.X_add_number = 0;
5390 }
5391 *str = p;
4962c51a
MS
5392 return PARSE_OPERAND_SUCCESS;
5393}
5394
5395static int
5396parse_address (char **str, int i)
5397{
21d799b5 5398 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
4962c51a
MS
5399 ? SUCCESS : FAIL;
5400}
5401
5402static parse_operand_result
5403parse_address_group_reloc (char **str, int i, group_reloc_type type)
5404{
5405 return parse_address_main (str, i, 1, type);
a737bd4d
NC
5406}
5407
b6895b4f
PB
5408/* Parse an operand for a MOVW or MOVT instruction. */
5409static int
5410parse_half (char **str)
5411{
5412 char * p;
5f4273c7 5413
b6895b4f
PB
5414 p = *str;
5415 skip_past_char (&p, '#');
5f4273c7 5416 if (strncasecmp (p, ":lower16:", 9) == 0)
b6895b4f
PB
5417 inst.reloc.type = BFD_RELOC_ARM_MOVW;
5418 else if (strncasecmp (p, ":upper16:", 9) == 0)
5419 inst.reloc.type = BFD_RELOC_ARM_MOVT;
5420
5421 if (inst.reloc.type != BFD_RELOC_UNUSED)
5422 {
5423 p += 9;
5f4273c7 5424 skip_whitespace (p);
b6895b4f
PB
5425 }
5426
5427 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5428 return FAIL;
5429
5430 if (inst.reloc.type == BFD_RELOC_UNUSED)
5431 {
5432 if (inst.reloc.exp.X_op != O_constant)
5433 {
5434 inst.error = _("constant expression expected");
5435 return FAIL;
5436 }
5437 if (inst.reloc.exp.X_add_number < 0
5438 || inst.reloc.exp.X_add_number > 0xffff)
5439 {
5440 inst.error = _("immediate value out of range");
5441 return FAIL;
5442 }
5443 }
5444 *str = p;
5445 return SUCCESS;
5446}
5447
c19d1205 5448/* Miscellaneous. */
a737bd4d 5449
c19d1205
ZW
5450/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
5451 or a bitmask suitable to be or-ed into the ARM msr instruction. */
5452static int
d2cd1205 5453parse_psr (char **str, bfd_boolean lhs)
09d92015 5454{
c19d1205
ZW
5455 char *p;
5456 unsigned long psr_field;
62b3e311
PB
5457 const struct asm_psr *psr;
5458 char *start;
d2cd1205 5459 bfd_boolean is_apsr = FALSE;
ac7f631b 5460 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
09d92015 5461
a4482bb6
NC
5462 /* PR gas/12698: If the user has specified -march=all then m_profile will
5463 be TRUE, but we want to ignore it in this case as we are building for any
5464 CPU type, including non-m variants. */
5465 if (selected_cpu.core == arm_arch_any.core)
5466 m_profile = FALSE;
5467
c19d1205
ZW
5468 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
5469 feature for ease of use and backwards compatibility. */
5470 p = *str;
62b3e311 5471 if (strncasecmp (p, "SPSR", 4) == 0)
d2cd1205
JB
5472 {
5473 if (m_profile)
5474 goto unsupported_psr;
fa94de6b 5475
d2cd1205
JB
5476 psr_field = SPSR_BIT;
5477 }
5478 else if (strncasecmp (p, "CPSR", 4) == 0)
5479 {
5480 if (m_profile)
5481 goto unsupported_psr;
5482
5483 psr_field = 0;
5484 }
5485 else if (strncasecmp (p, "APSR", 4) == 0)
5486 {
5487 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
5488 and ARMv7-R architecture CPUs. */
5489 is_apsr = TRUE;
5490 psr_field = 0;
5491 }
5492 else if (m_profile)
62b3e311
PB
5493 {
5494 start = p;
5495 do
5496 p++;
5497 while (ISALNUM (*p) || *p == '_');
5498
d2cd1205
JB
5499 if (strncasecmp (start, "iapsr", 5) == 0
5500 || strncasecmp (start, "eapsr", 5) == 0
5501 || strncasecmp (start, "xpsr", 4) == 0
5502 || strncasecmp (start, "psr", 3) == 0)
5503 p = start + strcspn (start, "rR") + 1;
5504
21d799b5
NC
5505 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
5506 p - start);
d2cd1205 5507
62b3e311
PB
5508 if (!psr)
5509 return FAIL;
09d92015 5510
d2cd1205
JB
5511 /* If APSR is being written, a bitfield may be specified. Note that
5512 APSR itself is handled above. */
5513 if (psr->field <= 3)
5514 {
5515 psr_field = psr->field;
5516 is_apsr = TRUE;
5517 goto check_suffix;
5518 }
5519
62b3e311 5520 *str = p;
d2cd1205
JB
5521 /* M-profile MSR instructions have the mask field set to "10", except
5522 *PSR variants which modify APSR, which may use a different mask (and
5523 have been handled already). Do that by setting the PSR_f field
5524 here. */
5525 return psr->field | (lhs ? PSR_f : 0);
62b3e311 5526 }
d2cd1205
JB
5527 else
5528 goto unsupported_psr;
09d92015 5529
62b3e311 5530 p += 4;
d2cd1205 5531check_suffix:
c19d1205
ZW
5532 if (*p == '_')
5533 {
5534 /* A suffix follows. */
c19d1205
ZW
5535 p++;
5536 start = p;
a737bd4d 5537
c19d1205
ZW
5538 do
5539 p++;
5540 while (ISALNUM (*p) || *p == '_');
a737bd4d 5541
d2cd1205
JB
5542 if (is_apsr)
5543 {
5544 /* APSR uses a notation for bits, rather than fields. */
5545 unsigned int nzcvq_bits = 0;
5546 unsigned int g_bit = 0;
5547 char *bit;
fa94de6b 5548
d2cd1205
JB
5549 for (bit = start; bit != p; bit++)
5550 {
5551 switch (TOLOWER (*bit))
5552 {
5553 case 'n':
5554 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
5555 break;
5556
5557 case 'z':
5558 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
5559 break;
5560
5561 case 'c':
5562 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
5563 break;
5564
5565 case 'v':
5566 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
5567 break;
fa94de6b 5568
d2cd1205
JB
5569 case 'q':
5570 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
5571 break;
fa94de6b 5572
d2cd1205
JB
5573 case 'g':
5574 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
5575 break;
fa94de6b 5576
d2cd1205
JB
5577 default:
5578 inst.error = _("unexpected bit specified after APSR");
5579 return FAIL;
5580 }
5581 }
fa94de6b 5582
d2cd1205
JB
5583 if (nzcvq_bits == 0x1f)
5584 psr_field |= PSR_f;
fa94de6b 5585
d2cd1205
JB
5586 if (g_bit == 0x1)
5587 {
5588 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
5589 {
5590 inst.error = _("selected processor does not "
5591 "support DSP extension");
5592 return FAIL;
5593 }
5594
5595 psr_field |= PSR_s;
5596 }
fa94de6b 5597
d2cd1205
JB
5598 if ((nzcvq_bits & 0x20) != 0
5599 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
5600 || (g_bit & 0x2) != 0)
5601 {
5602 inst.error = _("bad bitmask specified after APSR");
5603 return FAIL;
5604 }
5605 }
5606 else
5607 {
5608 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
5609 p - start);
5610 if (!psr)
5611 goto error;
a737bd4d 5612
d2cd1205
JB
5613 psr_field |= psr->field;
5614 }
a737bd4d 5615 }
c19d1205 5616 else
a737bd4d 5617 {
c19d1205
ZW
5618 if (ISALNUM (*p))
5619 goto error; /* Garbage after "[CS]PSR". */
5620
d2cd1205
JB
5621 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
5622 is deprecated, but allow it anyway. */
5623 if (is_apsr && lhs)
5624 {
5625 psr_field |= PSR_f;
5626 as_tsktsk (_("writing to APSR without specifying a bitmask is "
5627 "deprecated"));
5628 }
5629 else if (!m_profile)
5630 /* These bits are never right for M-profile devices: don't set them
5631 (only code paths which read/write APSR reach here). */
5632 psr_field |= (PSR_c | PSR_f);
a737bd4d 5633 }
c19d1205
ZW
5634 *str = p;
5635 return psr_field;
a737bd4d 5636
d2cd1205
JB
5637 unsupported_psr:
5638 inst.error = _("selected processor does not support requested special "
5639 "purpose register");
5640 return FAIL;
5641
c19d1205
ZW
5642 error:
5643 inst.error = _("flag for {c}psr instruction expected");
5644 return FAIL;
a737bd4d
NC
5645}
5646
c19d1205
ZW
5647/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
5648 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 5649
c19d1205
ZW
5650static int
5651parse_cps_flags (char **str)
a737bd4d 5652{
c19d1205
ZW
5653 int val = 0;
5654 int saw_a_flag = 0;
5655 char *s = *str;
a737bd4d 5656
c19d1205
ZW
5657 for (;;)
5658 switch (*s++)
5659 {
5660 case '\0': case ',':
5661 goto done;
a737bd4d 5662
c19d1205
ZW
5663 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
5664 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
5665 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 5666
c19d1205
ZW
5667 default:
5668 inst.error = _("unrecognized CPS flag");
5669 return FAIL;
5670 }
a737bd4d 5671
c19d1205
ZW
5672 done:
5673 if (saw_a_flag == 0)
a737bd4d 5674 {
c19d1205
ZW
5675 inst.error = _("missing CPS flags");
5676 return FAIL;
a737bd4d 5677 }
a737bd4d 5678
c19d1205
ZW
5679 *str = s - 1;
5680 return val;
a737bd4d
NC
5681}
5682
c19d1205
ZW
5683/* Parse an endian specifier ("BE" or "LE", case insensitive);
5684 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
5685
5686static int
c19d1205 5687parse_endian_specifier (char **str)
a737bd4d 5688{
c19d1205
ZW
5689 int little_endian;
5690 char *s = *str;
a737bd4d 5691
c19d1205
ZW
5692 if (strncasecmp (s, "BE", 2))
5693 little_endian = 0;
5694 else if (strncasecmp (s, "LE", 2))
5695 little_endian = 1;
5696 else
a737bd4d 5697 {
c19d1205 5698 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5699 return FAIL;
5700 }
5701
c19d1205 5702 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 5703 {
c19d1205 5704 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5705 return FAIL;
5706 }
5707
c19d1205
ZW
5708 *str = s + 2;
5709 return little_endian;
5710}
a737bd4d 5711
c19d1205
ZW
5712/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
5713 value suitable for poking into the rotate field of an sxt or sxta
5714 instruction, or FAIL on error. */
5715
5716static int
5717parse_ror (char **str)
5718{
5719 int rot;
5720 char *s = *str;
5721
5722 if (strncasecmp (s, "ROR", 3) == 0)
5723 s += 3;
5724 else
a737bd4d 5725 {
c19d1205 5726 inst.error = _("missing rotation field after comma");
a737bd4d
NC
5727 return FAIL;
5728 }
c19d1205
ZW
5729
5730 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
5731 return FAIL;
5732
5733 switch (rot)
a737bd4d 5734 {
c19d1205
ZW
5735 case 0: *str = s; return 0x0;
5736 case 8: *str = s; return 0x1;
5737 case 16: *str = s; return 0x2;
5738 case 24: *str = s; return 0x3;
5739
5740 default:
5741 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
5742 return FAIL;
5743 }
c19d1205 5744}
a737bd4d 5745
c19d1205
ZW
5746/* Parse a conditional code (from conds[] below). The value returned is in the
5747 range 0 .. 14, or FAIL. */
5748static int
5749parse_cond (char **str)
5750{
c462b453 5751 char *q;
c19d1205 5752 const struct asm_cond *c;
c462b453
PB
5753 int n;
5754 /* Condition codes are always 2 characters, so matching up to
5755 3 characters is sufficient. */
5756 char cond[3];
a737bd4d 5757
c462b453
PB
5758 q = *str;
5759 n = 0;
5760 while (ISALPHA (*q) && n < 3)
5761 {
e07e6e58 5762 cond[n] = TOLOWER (*q);
c462b453
PB
5763 q++;
5764 n++;
5765 }
a737bd4d 5766
21d799b5 5767 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
c19d1205 5768 if (!c)
a737bd4d 5769 {
c19d1205 5770 inst.error = _("condition required");
a737bd4d
NC
5771 return FAIL;
5772 }
5773
c19d1205
ZW
5774 *str = q;
5775 return c->value;
5776}
5777
e797f7e0
MGD
5778/* If the given feature available in the selected CPU, mark it as used.
5779 Returns TRUE iff feature is available. */
5780static bfd_boolean
5781mark_feature_used (const arm_feature_set *feature)
5782{
5783 /* Ensure the option is valid on the current architecture. */
5784 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
5785 return FALSE;
5786
5787 /* Add the appropriate architecture feature for the barrier option used.
5788 */
5789 if (thumb_mode)
5790 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
5791 else
5792 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
5793
5794 return TRUE;
5795}
5796
62b3e311
PB
5797/* Parse an option for a barrier instruction. Returns the encoding for the
5798 option, or FAIL. */
5799static int
5800parse_barrier (char **str)
5801{
5802 char *p, *q;
5803 const struct asm_barrier_opt *o;
5804
5805 p = q = *str;
5806 while (ISALPHA (*q))
5807 q++;
5808
21d799b5
NC
5809 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
5810 q - p);
62b3e311
PB
5811 if (!o)
5812 return FAIL;
5813
e797f7e0
MGD
5814 if (!mark_feature_used (&o->arch))
5815 return FAIL;
5816
62b3e311
PB
5817 *str = q;
5818 return o->value;
5819}
5820
92e90b6e
PB
5821/* Parse the operands of a table branch instruction. Similar to a memory
5822 operand. */
5823static int
5824parse_tb (char **str)
5825{
5826 char * p = *str;
5827 int reg;
5828
5829 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
5830 {
5831 inst.error = _("'[' expected");
5832 return FAIL;
5833 }
92e90b6e 5834
dcbf9037 5835 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5836 {
5837 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5838 return FAIL;
5839 }
5840 inst.operands[0].reg = reg;
5841
5842 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
5843 {
5844 inst.error = _("',' expected");
5845 return FAIL;
5846 }
5f4273c7 5847
dcbf9037 5848 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5849 {
5850 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5851 return FAIL;
5852 }
5853 inst.operands[0].imm = reg;
5854
5855 if (skip_past_comma (&p) == SUCCESS)
5856 {
5857 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
5858 return FAIL;
5859 if (inst.reloc.exp.X_add_number != 1)
5860 {
5861 inst.error = _("invalid shift");
5862 return FAIL;
5863 }
5864 inst.operands[0].shifted = 1;
5865 }
5866
5867 if (skip_past_char (&p, ']') == FAIL)
5868 {
5869 inst.error = _("']' expected");
5870 return FAIL;
5871 }
5872 *str = p;
5873 return SUCCESS;
5874}
5875
5287ad62
JB
5876/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
5877 information on the types the operands can take and how they are encoded.
037e8744
JB
5878 Up to four operands may be read; this function handles setting the
5879 ".present" field for each read operand itself.
5287ad62
JB
5880 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
5881 else returns FAIL. */
5882
5883static int
5884parse_neon_mov (char **str, int *which_operand)
5885{
5886 int i = *which_operand, val;
5887 enum arm_reg_type rtype;
5888 char *ptr = *str;
dcbf9037 5889 struct neon_type_el optype;
5f4273c7 5890
dcbf9037 5891 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
5892 {
5893 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
5894 inst.operands[i].reg = val;
5895 inst.operands[i].isscalar = 1;
dcbf9037 5896 inst.operands[i].vectype = optype;
5287ad62
JB
5897 inst.operands[i++].present = 1;
5898
5899 if (skip_past_comma (&ptr) == FAIL)
5900 goto wanted_comma;
5f4273c7 5901
dcbf9037 5902 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5287ad62 5903 goto wanted_arm;
5f4273c7 5904
5287ad62
JB
5905 inst.operands[i].reg = val;
5906 inst.operands[i].isreg = 1;
5907 inst.operands[i].present = 1;
5908 }
037e8744 5909 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
dcbf9037 5910 != FAIL)
5287ad62
JB
5911 {
5912 /* Cases 0, 1, 2, 3, 5 (D only). */
5913 if (skip_past_comma (&ptr) == FAIL)
5914 goto wanted_comma;
5f4273c7 5915
5287ad62
JB
5916 inst.operands[i].reg = val;
5917 inst.operands[i].isreg = 1;
5918 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5919 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5920 inst.operands[i].isvec = 1;
dcbf9037 5921 inst.operands[i].vectype = optype;
5287ad62
JB
5922 inst.operands[i++].present = 1;
5923
dcbf9037 5924 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62 5925 {
037e8744
JB
5926 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
5927 Case 13: VMOV <Sd>, <Rm> */
5287ad62
JB
5928 inst.operands[i].reg = val;
5929 inst.operands[i].isreg = 1;
037e8744 5930 inst.operands[i].present = 1;
5287ad62
JB
5931
5932 if (rtype == REG_TYPE_NQ)
5933 {
dcbf9037 5934 first_error (_("can't use Neon quad register here"));
5287ad62
JB
5935 return FAIL;
5936 }
037e8744
JB
5937 else if (rtype != REG_TYPE_VFS)
5938 {
5939 i++;
5940 if (skip_past_comma (&ptr) == FAIL)
5941 goto wanted_comma;
5942 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5943 goto wanted_arm;
5944 inst.operands[i].reg = val;
5945 inst.operands[i].isreg = 1;
5946 inst.operands[i].present = 1;
5947 }
5287ad62 5948 }
037e8744
JB
5949 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
5950 &optype)) != FAIL)
5287ad62
JB
5951 {
5952 /* Case 0: VMOV<c><q> <Qd>, <Qm>
037e8744
JB
5953 Case 1: VMOV<c><q> <Dd>, <Dm>
5954 Case 8: VMOV.F32 <Sd>, <Sm>
5955 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
5287ad62
JB
5956
5957 inst.operands[i].reg = val;
5958 inst.operands[i].isreg = 1;
5959 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5960 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5961 inst.operands[i].isvec = 1;
dcbf9037 5962 inst.operands[i].vectype = optype;
5287ad62 5963 inst.operands[i].present = 1;
5f4273c7 5964
037e8744
JB
5965 if (skip_past_comma (&ptr) == SUCCESS)
5966 {
5967 /* Case 15. */
5968 i++;
5969
5970 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5971 goto wanted_arm;
5972
5973 inst.operands[i].reg = val;
5974 inst.operands[i].isreg = 1;
5975 inst.operands[i++].present = 1;
5f4273c7 5976
037e8744
JB
5977 if (skip_past_comma (&ptr) == FAIL)
5978 goto wanted_comma;
5f4273c7 5979
037e8744
JB
5980 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5981 goto wanted_arm;
5f4273c7 5982
037e8744
JB
5983 inst.operands[i].reg = val;
5984 inst.operands[i].isreg = 1;
1b11b49f 5985 inst.operands[i].present = 1;
037e8744 5986 }
5287ad62 5987 }
4641781c
PB
5988 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
5989 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
5990 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
5991 Case 10: VMOV.F32 <Sd>, #<imm>
5992 Case 11: VMOV.F64 <Dd>, #<imm> */
5993 inst.operands[i].immisfloat = 1;
5994 else if (parse_big_immediate (&ptr, i) == SUCCESS)
5995 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
5996 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
5997 ;
5287ad62
JB
5998 else
5999 {
dcbf9037 6000 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
5287ad62
JB
6001 return FAIL;
6002 }
6003 }
dcbf9037 6004 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6005 {
6006 /* Cases 6, 7. */
6007 inst.operands[i].reg = val;
6008 inst.operands[i].isreg = 1;
6009 inst.operands[i++].present = 1;
5f4273c7 6010
5287ad62
JB
6011 if (skip_past_comma (&ptr) == FAIL)
6012 goto wanted_comma;
5f4273c7 6013
dcbf9037 6014 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
6015 {
6016 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6017 inst.operands[i].reg = val;
6018 inst.operands[i].isscalar = 1;
6019 inst.operands[i].present = 1;
dcbf9037 6020 inst.operands[i].vectype = optype;
5287ad62 6021 }
dcbf9037 6022 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6023 {
6024 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6025 inst.operands[i].reg = val;
6026 inst.operands[i].isreg = 1;
6027 inst.operands[i++].present = 1;
5f4273c7 6028
5287ad62
JB
6029 if (skip_past_comma (&ptr) == FAIL)
6030 goto wanted_comma;
5f4273c7 6031
037e8744 6032 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
dcbf9037 6033 == FAIL)
5287ad62 6034 {
037e8744 6035 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
5287ad62
JB
6036 return FAIL;
6037 }
6038
6039 inst.operands[i].reg = val;
6040 inst.operands[i].isreg = 1;
037e8744
JB
6041 inst.operands[i].isvec = 1;
6042 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
dcbf9037 6043 inst.operands[i].vectype = optype;
5287ad62 6044 inst.operands[i].present = 1;
5f4273c7 6045
037e8744
JB
6046 if (rtype == REG_TYPE_VFS)
6047 {
6048 /* Case 14. */
6049 i++;
6050 if (skip_past_comma (&ptr) == FAIL)
6051 goto wanted_comma;
6052 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6053 &optype)) == FAIL)
6054 {
6055 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6056 return FAIL;
6057 }
6058 inst.operands[i].reg = val;
6059 inst.operands[i].isreg = 1;
6060 inst.operands[i].isvec = 1;
6061 inst.operands[i].issingle = 1;
6062 inst.operands[i].vectype = optype;
6063 inst.operands[i].present = 1;
6064 }
6065 }
6066 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
6067 != FAIL)
6068 {
6069 /* Case 13. */
6070 inst.operands[i].reg = val;
6071 inst.operands[i].isreg = 1;
6072 inst.operands[i].isvec = 1;
6073 inst.operands[i].issingle = 1;
6074 inst.operands[i].vectype = optype;
1b11b49f 6075 inst.operands[i].present = 1;
5287ad62
JB
6076 }
6077 }
6078 else
6079 {
dcbf9037 6080 first_error (_("parse error"));
5287ad62
JB
6081 return FAIL;
6082 }
6083
6084 /* Successfully parsed the operands. Update args. */
6085 *which_operand = i;
6086 *str = ptr;
6087 return SUCCESS;
6088
5f4273c7 6089 wanted_comma:
dcbf9037 6090 first_error (_("expected comma"));
5287ad62 6091 return FAIL;
5f4273c7
NC
6092
6093 wanted_arm:
dcbf9037 6094 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 6095 return FAIL;
5287ad62
JB
6096}
6097
5be8be5d
DG
6098/* Use this macro when the operand constraints are different
6099 for ARM and THUMB (e.g. ldrd). */
6100#define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6101 ((arm_operand) | ((thumb_operand) << 16))
6102
c19d1205
ZW
6103/* Matcher codes for parse_operands. */
6104enum operand_parse_code
6105{
6106 OP_stop, /* end of line */
6107
6108 OP_RR, /* ARM register */
6109 OP_RRnpc, /* ARM register, not r15 */
5be8be5d 6110 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
c19d1205 6111 OP_RRnpcb, /* ARM register, not r15, in square brackets */
fa94de6b 6112 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
55881a11 6113 optional trailing ! */
c19d1205
ZW
6114 OP_RRw, /* ARM register, not r15, optional trailing ! */
6115 OP_RCP, /* Coprocessor number */
6116 OP_RCN, /* Coprocessor register */
6117 OP_RF, /* FPA register */
6118 OP_RVS, /* VFP single precision register */
5287ad62
JB
6119 OP_RVD, /* VFP double precision register (0..15) */
6120 OP_RND, /* Neon double precision register (0..31) */
6121 OP_RNQ, /* Neon quad precision register */
037e8744 6122 OP_RVSD, /* VFP single or double precision register */
5287ad62 6123 OP_RNDQ, /* Neon double or quad precision register */
037e8744 6124 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 6125 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
6126 OP_RVC, /* VFP control register */
6127 OP_RMF, /* Maverick F register */
6128 OP_RMD, /* Maverick D register */
6129 OP_RMFX, /* Maverick FX register */
6130 OP_RMDX, /* Maverick DX register */
6131 OP_RMAX, /* Maverick AX register */
6132 OP_RMDS, /* Maverick DSPSC register */
6133 OP_RIWR, /* iWMMXt wR register */
6134 OP_RIWC, /* iWMMXt wC register */
6135 OP_RIWG, /* iWMMXt wCG register */
6136 OP_RXA, /* XScale accumulator register */
6137
6138 OP_REGLST, /* ARM register list */
6139 OP_VRSLST, /* VFP single-precision register list */
6140 OP_VRDLST, /* VFP double-precision register list */
037e8744 6141 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
6142 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
6143 OP_NSTRLST, /* Neon element/structure list */
6144
5287ad62 6145 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 6146 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
5287ad62 6147 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 6148 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
6149 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
6150 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
6151 OP_VMOV, /* Neon VMOV operands. */
4316f0d2 6152 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
5287ad62 6153 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
2d447fca 6154 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
5287ad62
JB
6155
6156 OP_I0, /* immediate zero */
c19d1205
ZW
6157 OP_I7, /* immediate value 0 .. 7 */
6158 OP_I15, /* 0 .. 15 */
6159 OP_I16, /* 1 .. 16 */
5287ad62 6160 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
6161 OP_I31, /* 0 .. 31 */
6162 OP_I31w, /* 0 .. 31, optional trailing ! */
6163 OP_I32, /* 1 .. 32 */
5287ad62
JB
6164 OP_I32z, /* 0 .. 32 */
6165 OP_I63, /* 0 .. 63 */
c19d1205 6166 OP_I63s, /* -64 .. 63 */
5287ad62
JB
6167 OP_I64, /* 1 .. 64 */
6168 OP_I64z, /* 0 .. 64 */
c19d1205 6169 OP_I255, /* 0 .. 255 */
c19d1205
ZW
6170
6171 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
6172 OP_I7b, /* 0 .. 7 */
6173 OP_I15b, /* 0 .. 15 */
6174 OP_I31b, /* 0 .. 31 */
6175
6176 OP_SH, /* shifter operand */
4962c51a 6177 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 6178 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
6179 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
6180 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
6181 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
6182 OP_EXP, /* arbitrary expression */
6183 OP_EXPi, /* same, with optional immediate prefix */
6184 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 6185 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c19d1205
ZW
6186
6187 OP_CPSF, /* CPS flags */
6188 OP_ENDI, /* Endianness specifier */
d2cd1205
JB
6189 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
6190 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
c19d1205 6191 OP_COND, /* conditional code */
92e90b6e 6192 OP_TB, /* Table branch. */
c19d1205 6193
037e8744
JB
6194 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
6195
c19d1205
ZW
6196 OP_RRnpc_I0, /* ARM register or literal 0 */
6197 OP_RR_EXr, /* ARM register or expression with opt. reloc suff. */
6198 OP_RR_EXi, /* ARM register or expression with imm prefix */
6199 OP_RF_IF, /* FPA register or immediate */
6200 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 6201 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
6202
6203 /* Optional operands. */
6204 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
6205 OP_oI31b, /* 0 .. 31 */
5287ad62 6206 OP_oI32b, /* 1 .. 32 */
5f1af56b 6207 OP_oI32z, /* 0 .. 32 */
c19d1205
ZW
6208 OP_oIffffb, /* 0 .. 65535 */
6209 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
6210
6211 OP_oRR, /* ARM register */
6212 OP_oRRnpc, /* ARM register, not the PC */
5be8be5d 6213 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
b6702015 6214 OP_oRRw, /* ARM register, not r15, optional trailing ! */
5287ad62
JB
6215 OP_oRND, /* Optional Neon double precision register */
6216 OP_oRNQ, /* Optional Neon quad precision register */
6217 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 6218 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
6219 OP_oSHll, /* LSL immediate */
6220 OP_oSHar, /* ASR immediate */
6221 OP_oSHllar, /* LSL or ASR immediate */
6222 OP_oROR, /* ROR 0/8/16/24 */
52e7f43d 6223 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
c19d1205 6224
5be8be5d
DG
6225 /* Some pre-defined mixed (ARM/THUMB) operands. */
6226 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
6227 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
6228 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
6229
c19d1205
ZW
6230 OP_FIRST_OPTIONAL = OP_oI7b
6231};
a737bd4d 6232
c19d1205
ZW
6233/* Generic instruction operand parser. This does no encoding and no
6234 semantic validation; it merely squirrels values away in the inst
6235 structure. Returns SUCCESS or FAIL depending on whether the
6236 specified grammar matched. */
6237static int
5be8be5d 6238parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
c19d1205 6239{
5be8be5d 6240 unsigned const int *upat = pattern;
c19d1205
ZW
6241 char *backtrack_pos = 0;
6242 const char *backtrack_error = 0;
99aad254 6243 int i, val = 0, backtrack_index = 0;
5287ad62 6244 enum arm_reg_type rtype;
4962c51a 6245 parse_operand_result result;
5be8be5d 6246 unsigned int op_parse_code;
c19d1205 6247
e07e6e58
NC
6248#define po_char_or_fail(chr) \
6249 do \
6250 { \
6251 if (skip_past_char (&str, chr) == FAIL) \
6252 goto bad_args; \
6253 } \
6254 while (0)
c19d1205 6255
e07e6e58
NC
6256#define po_reg_or_fail(regtype) \
6257 do \
dcbf9037 6258 { \
e07e6e58
NC
6259 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6260 & inst.operands[i].vectype); \
6261 if (val == FAIL) \
6262 { \
6263 first_error (_(reg_expected_msgs[regtype])); \
6264 goto failure; \
6265 } \
6266 inst.operands[i].reg = val; \
6267 inst.operands[i].isreg = 1; \
6268 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6269 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6270 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
6271 || rtype == REG_TYPE_VFD \
6272 || rtype == REG_TYPE_NQ); \
dcbf9037 6273 } \
e07e6e58
NC
6274 while (0)
6275
6276#define po_reg_or_goto(regtype, label) \
6277 do \
6278 { \
6279 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6280 & inst.operands[i].vectype); \
6281 if (val == FAIL) \
6282 goto label; \
dcbf9037 6283 \
e07e6e58
NC
6284 inst.operands[i].reg = val; \
6285 inst.operands[i].isreg = 1; \
6286 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6287 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6288 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
6289 || rtype == REG_TYPE_VFD \
6290 || rtype == REG_TYPE_NQ); \
6291 } \
6292 while (0)
6293
6294#define po_imm_or_fail(min, max, popt) \
6295 do \
6296 { \
6297 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
6298 goto failure; \
6299 inst.operands[i].imm = val; \
6300 } \
6301 while (0)
6302
6303#define po_scalar_or_goto(elsz, label) \
6304 do \
6305 { \
6306 val = parse_scalar (& str, elsz, & inst.operands[i].vectype); \
6307 if (val == FAIL) \
6308 goto label; \
6309 inst.operands[i].reg = val; \
6310 inst.operands[i].isscalar = 1; \
6311 } \
6312 while (0)
6313
6314#define po_misc_or_fail(expr) \
6315 do \
6316 { \
6317 if (expr) \
6318 goto failure; \
6319 } \
6320 while (0)
6321
6322#define po_misc_or_fail_no_backtrack(expr) \
6323 do \
6324 { \
6325 result = expr; \
6326 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
6327 backtrack_pos = 0; \
6328 if (result != PARSE_OPERAND_SUCCESS) \
6329 goto failure; \
6330 } \
6331 while (0)
4962c51a 6332
52e7f43d
RE
6333#define po_barrier_or_imm(str) \
6334 do \
6335 { \
6336 val = parse_barrier (&str); \
6337 if (val == FAIL) \
6338 { \
6339 if (ISALPHA (*str)) \
6340 goto failure; \
6341 else \
6342 goto immediate; \
6343 } \
6344 else \
6345 { \
6346 if ((inst.instruction & 0xf0) == 0x60 \
6347 && val != 0xf) \
6348 { \
6349 /* ISB can only take SY as an option. */ \
6350 inst.error = _("invalid barrier type"); \
6351 goto failure; \
6352 } \
6353 } \
6354 } \
6355 while (0)
6356
c19d1205
ZW
6357 skip_whitespace (str);
6358
6359 for (i = 0; upat[i] != OP_stop; i++)
6360 {
5be8be5d
DG
6361 op_parse_code = upat[i];
6362 if (op_parse_code >= 1<<16)
6363 op_parse_code = thumb ? (op_parse_code >> 16)
6364 : (op_parse_code & ((1<<16)-1));
6365
6366 if (op_parse_code >= OP_FIRST_OPTIONAL)
c19d1205
ZW
6367 {
6368 /* Remember where we are in case we need to backtrack. */
9c2799c2 6369 gas_assert (!backtrack_pos);
c19d1205
ZW
6370 backtrack_pos = str;
6371 backtrack_error = inst.error;
6372 backtrack_index = i;
6373 }
6374
b6702015 6375 if (i > 0 && (i > 1 || inst.operands[0].present))
c19d1205
ZW
6376 po_char_or_fail (',');
6377
5be8be5d 6378 switch (op_parse_code)
c19d1205
ZW
6379 {
6380 /* Registers */
6381 case OP_oRRnpc:
5be8be5d 6382 case OP_oRRnpcsp:
c19d1205 6383 case OP_RRnpc:
5be8be5d 6384 case OP_RRnpcsp:
c19d1205
ZW
6385 case OP_oRR:
6386 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
6387 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
6388 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
6389 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
6390 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
6391 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
5287ad62
JB
6392 case OP_oRND:
6393 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
cd2cf30b
PB
6394 case OP_RVC:
6395 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
6396 break;
6397 /* Also accept generic coprocessor regs for unknown registers. */
6398 coproc_reg:
6399 po_reg_or_fail (REG_TYPE_CN);
6400 break;
c19d1205
ZW
6401 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
6402 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
6403 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
6404 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
6405 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
6406 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
6407 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
6408 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
6409 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
6410 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
5287ad62
JB
6411 case OP_oRNQ:
6412 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
6413 case OP_oRNDQ:
6414 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
037e8744
JB
6415 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
6416 case OP_oRNSDQ:
6417 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
5287ad62
JB
6418
6419 /* Neon scalar. Using an element size of 8 means that some invalid
6420 scalars are accepted here, so deal with those in later code. */
6421 case OP_RNSC: po_scalar_or_goto (8, failure); break;
6422
5287ad62
JB
6423 case OP_RNDQ_I0:
6424 {
6425 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
6426 break;
6427 try_imm0:
6428 po_imm_or_fail (0, 0, TRUE);
6429 }
6430 break;
6431
037e8744
JB
6432 case OP_RVSD_I0:
6433 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
6434 break;
6435
5287ad62
JB
6436 case OP_RR_RNSC:
6437 {
6438 po_scalar_or_goto (8, try_rr);
6439 break;
6440 try_rr:
6441 po_reg_or_fail (REG_TYPE_RN);
6442 }
6443 break;
6444
037e8744
JB
6445 case OP_RNSDQ_RNSC:
6446 {
6447 po_scalar_or_goto (8, try_nsdq);
6448 break;
6449 try_nsdq:
6450 po_reg_or_fail (REG_TYPE_NSDQ);
6451 }
6452 break;
6453
5287ad62
JB
6454 case OP_RNDQ_RNSC:
6455 {
6456 po_scalar_or_goto (8, try_ndq);
6457 break;
6458 try_ndq:
6459 po_reg_or_fail (REG_TYPE_NDQ);
6460 }
6461 break;
6462
6463 case OP_RND_RNSC:
6464 {
6465 po_scalar_or_goto (8, try_vfd);
6466 break;
6467 try_vfd:
6468 po_reg_or_fail (REG_TYPE_VFD);
6469 }
6470 break;
6471
6472 case OP_VMOV:
6473 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
6474 not careful then bad things might happen. */
6475 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
6476 break;
6477
4316f0d2 6478 case OP_RNDQ_Ibig:
5287ad62 6479 {
4316f0d2 6480 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
5287ad62 6481 break;
4316f0d2 6482 try_immbig:
5287ad62
JB
6483 /* There's a possibility of getting a 64-bit immediate here, so
6484 we need special handling. */
6485 if (parse_big_immediate (&str, i) == FAIL)
6486 {
6487 inst.error = _("immediate value is out of range");
6488 goto failure;
6489 }
6490 }
6491 break;
6492
6493 case OP_RNDQ_I63b:
6494 {
6495 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
6496 break;
6497 try_shimm:
6498 po_imm_or_fail (0, 63, TRUE);
6499 }
6500 break;
c19d1205
ZW
6501
6502 case OP_RRnpcb:
6503 po_char_or_fail ('[');
6504 po_reg_or_fail (REG_TYPE_RN);
6505 po_char_or_fail (']');
6506 break;
a737bd4d 6507
55881a11 6508 case OP_RRnpctw:
c19d1205 6509 case OP_RRw:
b6702015 6510 case OP_oRRw:
c19d1205
ZW
6511 po_reg_or_fail (REG_TYPE_RN);
6512 if (skip_past_char (&str, '!') == SUCCESS)
6513 inst.operands[i].writeback = 1;
6514 break;
6515
6516 /* Immediates */
6517 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
6518 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
6519 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
5287ad62 6520 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
6521 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
6522 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
5287ad62 6523 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 6524 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
5287ad62
JB
6525 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
6526 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
6527 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 6528 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
6529
6530 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
6531 case OP_oI7b:
6532 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
6533 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
6534 case OP_oI31b:
6535 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
5287ad62 6536 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
5f1af56b 6537 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
c19d1205
ZW
6538 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
6539
6540 /* Immediate variants */
6541 case OP_oI255c:
6542 po_char_or_fail ('{');
6543 po_imm_or_fail (0, 255, TRUE);
6544 po_char_or_fail ('}');
6545 break;
6546
6547 case OP_I31w:
6548 /* The expression parser chokes on a trailing !, so we have
6549 to find it first and zap it. */
6550 {
6551 char *s = str;
6552 while (*s && *s != ',')
6553 s++;
6554 if (s[-1] == '!')
6555 {
6556 s[-1] = '\0';
6557 inst.operands[i].writeback = 1;
6558 }
6559 po_imm_or_fail (0, 31, TRUE);
6560 if (str == s - 1)
6561 str = s;
6562 }
6563 break;
6564
6565 /* Expressions */
6566 case OP_EXPi: EXPi:
6567 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6568 GE_OPT_PREFIX));
6569 break;
6570
6571 case OP_EXP:
6572 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6573 GE_NO_PREFIX));
6574 break;
6575
6576 case OP_EXPr: EXPr:
6577 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6578 GE_NO_PREFIX));
6579 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 6580 {
c19d1205
ZW
6581 val = parse_reloc (&str);
6582 if (val == -1)
6583 {
6584 inst.error = _("unrecognized relocation suffix");
6585 goto failure;
6586 }
6587 else if (val != BFD_RELOC_UNUSED)
6588 {
6589 inst.operands[i].imm = val;
6590 inst.operands[i].hasreloc = 1;
6591 }
a737bd4d 6592 }
c19d1205 6593 break;
a737bd4d 6594
b6895b4f
PB
6595 /* Operand for MOVW or MOVT. */
6596 case OP_HALF:
6597 po_misc_or_fail (parse_half (&str));
6598 break;
6599
e07e6e58 6600 /* Register or expression. */
c19d1205
ZW
6601 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
6602 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 6603
e07e6e58 6604 /* Register or immediate. */
c19d1205
ZW
6605 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
6606 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 6607
c19d1205
ZW
6608 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
6609 IF:
6610 if (!is_immediate_prefix (*str))
6611 goto bad_args;
6612 str++;
6613 val = parse_fpa_immediate (&str);
6614 if (val == FAIL)
6615 goto failure;
6616 /* FPA immediates are encoded as registers 8-15.
6617 parse_fpa_immediate has already applied the offset. */
6618 inst.operands[i].reg = val;
6619 inst.operands[i].isreg = 1;
6620 break;
09d92015 6621
2d447fca
JM
6622 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
6623 I32z: po_imm_or_fail (0, 32, FALSE); break;
6624
e07e6e58 6625 /* Two kinds of register. */
c19d1205
ZW
6626 case OP_RIWR_RIWC:
6627 {
6628 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
6629 if (!rege
6630 || (rege->type != REG_TYPE_MMXWR
6631 && rege->type != REG_TYPE_MMXWC
6632 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
6633 {
6634 inst.error = _("iWMMXt data or control register expected");
6635 goto failure;
6636 }
6637 inst.operands[i].reg = rege->number;
6638 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
6639 }
6640 break;
09d92015 6641
41adaa5c
JM
6642 case OP_RIWC_RIWG:
6643 {
6644 struct reg_entry *rege = arm_reg_parse_multi (&str);
6645 if (!rege
6646 || (rege->type != REG_TYPE_MMXWC
6647 && rege->type != REG_TYPE_MMXWCG))
6648 {
6649 inst.error = _("iWMMXt control register expected");
6650 goto failure;
6651 }
6652 inst.operands[i].reg = rege->number;
6653 inst.operands[i].isreg = 1;
6654 }
6655 break;
6656
c19d1205
ZW
6657 /* Misc */
6658 case OP_CPSF: val = parse_cps_flags (&str); break;
6659 case OP_ENDI: val = parse_endian_specifier (&str); break;
6660 case OP_oROR: val = parse_ror (&str); break;
c19d1205 6661 case OP_COND: val = parse_cond (&str); break;
52e7f43d
RE
6662 case OP_oBARRIER_I15:
6663 po_barrier_or_imm (str); break;
6664 immediate:
6665 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
6666 goto failure;
6667 break;
c19d1205 6668
fa94de6b 6669 case OP_wPSR:
d2cd1205 6670 case OP_rPSR:
90ec0d68
MGD
6671 po_reg_or_goto (REG_TYPE_RNB, try_psr);
6672 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
6673 {
6674 inst.error = _("Banked registers are not available with this "
6675 "architecture.");
6676 goto failure;
6677 }
6678 break;
d2cd1205
JB
6679 try_psr:
6680 val = parse_psr (&str, op_parse_code == OP_wPSR);
6681 break;
037e8744
JB
6682
6683 case OP_APSR_RR:
6684 po_reg_or_goto (REG_TYPE_RN, try_apsr);
6685 break;
6686 try_apsr:
6687 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
6688 instruction). */
6689 if (strncasecmp (str, "APSR_", 5) == 0)
6690 {
6691 unsigned found = 0;
6692 str += 5;
6693 while (found < 15)
6694 switch (*str++)
6695 {
6696 case 'c': found = (found & 1) ? 16 : found | 1; break;
6697 case 'n': found = (found & 2) ? 16 : found | 2; break;
6698 case 'z': found = (found & 4) ? 16 : found | 4; break;
6699 case 'v': found = (found & 8) ? 16 : found | 8; break;
6700 default: found = 16;
6701 }
6702 if (found != 15)
6703 goto failure;
6704 inst.operands[i].isvec = 1;
f7c21dc7
NC
6705 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
6706 inst.operands[i].reg = REG_PC;
037e8744
JB
6707 }
6708 else
6709 goto failure;
6710 break;
6711
92e90b6e
PB
6712 case OP_TB:
6713 po_misc_or_fail (parse_tb (&str));
6714 break;
6715
e07e6e58 6716 /* Register lists. */
c19d1205
ZW
6717 case OP_REGLST:
6718 val = parse_reg_list (&str);
6719 if (*str == '^')
6720 {
6721 inst.operands[1].writeback = 1;
6722 str++;
6723 }
6724 break;
09d92015 6725
c19d1205 6726 case OP_VRSLST:
5287ad62 6727 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 6728 break;
09d92015 6729
c19d1205 6730 case OP_VRDLST:
5287ad62 6731 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 6732 break;
a737bd4d 6733
037e8744
JB
6734 case OP_VRSDLST:
6735 /* Allow Q registers too. */
6736 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6737 REGLIST_NEON_D);
6738 if (val == FAIL)
6739 {
6740 inst.error = NULL;
6741 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6742 REGLIST_VFP_S);
6743 inst.operands[i].issingle = 1;
6744 }
6745 break;
6746
5287ad62
JB
6747 case OP_NRDLST:
6748 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6749 REGLIST_NEON_D);
6750 break;
6751
6752 case OP_NSTRLST:
dcbf9037
JB
6753 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
6754 &inst.operands[i].vectype);
5287ad62
JB
6755 break;
6756
c19d1205
ZW
6757 /* Addressing modes */
6758 case OP_ADDR:
6759 po_misc_or_fail (parse_address (&str, i));
6760 break;
09d92015 6761
4962c51a
MS
6762 case OP_ADDRGLDR:
6763 po_misc_or_fail_no_backtrack (
6764 parse_address_group_reloc (&str, i, GROUP_LDR));
6765 break;
6766
6767 case OP_ADDRGLDRS:
6768 po_misc_or_fail_no_backtrack (
6769 parse_address_group_reloc (&str, i, GROUP_LDRS));
6770 break;
6771
6772 case OP_ADDRGLDC:
6773 po_misc_or_fail_no_backtrack (
6774 parse_address_group_reloc (&str, i, GROUP_LDC));
6775 break;
6776
c19d1205
ZW
6777 case OP_SH:
6778 po_misc_or_fail (parse_shifter_operand (&str, i));
6779 break;
09d92015 6780
4962c51a
MS
6781 case OP_SHG:
6782 po_misc_or_fail_no_backtrack (
6783 parse_shifter_operand_group_reloc (&str, i));
6784 break;
6785
c19d1205
ZW
6786 case OP_oSHll:
6787 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
6788 break;
09d92015 6789
c19d1205
ZW
6790 case OP_oSHar:
6791 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
6792 break;
09d92015 6793
c19d1205
ZW
6794 case OP_oSHllar:
6795 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
6796 break;
09d92015 6797
c19d1205 6798 default:
5be8be5d 6799 as_fatal (_("unhandled operand code %d"), op_parse_code);
c19d1205 6800 }
09d92015 6801
c19d1205
ZW
6802 /* Various value-based sanity checks and shared operations. We
6803 do not signal immediate failures for the register constraints;
6804 this allows a syntax error to take precedence. */
5be8be5d 6805 switch (op_parse_code)
c19d1205
ZW
6806 {
6807 case OP_oRRnpc:
6808 case OP_RRnpc:
6809 case OP_RRnpcb:
6810 case OP_RRw:
b6702015 6811 case OP_oRRw:
c19d1205
ZW
6812 case OP_RRnpc_I0:
6813 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
6814 inst.error = BAD_PC;
6815 break;
09d92015 6816
5be8be5d
DG
6817 case OP_oRRnpcsp:
6818 case OP_RRnpcsp:
6819 if (inst.operands[i].isreg)
6820 {
6821 if (inst.operands[i].reg == REG_PC)
6822 inst.error = BAD_PC;
6823 else if (inst.operands[i].reg == REG_SP)
6824 inst.error = BAD_SP;
6825 }
6826 break;
6827
55881a11 6828 case OP_RRnpctw:
fa94de6b
RM
6829 if (inst.operands[i].isreg
6830 && inst.operands[i].reg == REG_PC
55881a11
MGD
6831 && (inst.operands[i].writeback || thumb))
6832 inst.error = BAD_PC;
6833 break;
6834
c19d1205
ZW
6835 case OP_CPSF:
6836 case OP_ENDI:
6837 case OP_oROR:
d2cd1205
JB
6838 case OP_wPSR:
6839 case OP_rPSR:
c19d1205 6840 case OP_COND:
52e7f43d 6841 case OP_oBARRIER_I15:
c19d1205
ZW
6842 case OP_REGLST:
6843 case OP_VRSLST:
6844 case OP_VRDLST:
037e8744 6845 case OP_VRSDLST:
5287ad62
JB
6846 case OP_NRDLST:
6847 case OP_NSTRLST:
c19d1205
ZW
6848 if (val == FAIL)
6849 goto failure;
6850 inst.operands[i].imm = val;
6851 break;
a737bd4d 6852
c19d1205
ZW
6853 default:
6854 break;
6855 }
09d92015 6856
c19d1205
ZW
6857 /* If we get here, this operand was successfully parsed. */
6858 inst.operands[i].present = 1;
6859 continue;
09d92015 6860
c19d1205 6861 bad_args:
09d92015 6862 inst.error = BAD_ARGS;
c19d1205
ZW
6863
6864 failure:
6865 if (!backtrack_pos)
d252fdde
PB
6866 {
6867 /* The parse routine should already have set inst.error, but set a
5f4273c7 6868 default here just in case. */
d252fdde
PB
6869 if (!inst.error)
6870 inst.error = _("syntax error");
6871 return FAIL;
6872 }
c19d1205
ZW
6873
6874 /* Do not backtrack over a trailing optional argument that
6875 absorbed some text. We will only fail again, with the
6876 'garbage following instruction' error message, which is
6877 probably less helpful than the current one. */
6878 if (backtrack_index == i && backtrack_pos != str
6879 && upat[i+1] == OP_stop)
d252fdde
PB
6880 {
6881 if (!inst.error)
6882 inst.error = _("syntax error");
6883 return FAIL;
6884 }
c19d1205
ZW
6885
6886 /* Try again, skipping the optional argument at backtrack_pos. */
6887 str = backtrack_pos;
6888 inst.error = backtrack_error;
6889 inst.operands[backtrack_index].present = 0;
6890 i = backtrack_index;
6891 backtrack_pos = 0;
09d92015 6892 }
09d92015 6893
c19d1205
ZW
6894 /* Check that we have parsed all the arguments. */
6895 if (*str != '\0' && !inst.error)
6896 inst.error = _("garbage following instruction");
09d92015 6897
c19d1205 6898 return inst.error ? FAIL : SUCCESS;
09d92015
MM
6899}
6900
c19d1205
ZW
6901#undef po_char_or_fail
6902#undef po_reg_or_fail
6903#undef po_reg_or_goto
6904#undef po_imm_or_fail
5287ad62 6905#undef po_scalar_or_fail
52e7f43d 6906#undef po_barrier_or_imm
e07e6e58 6907
c19d1205 6908/* Shorthand macro for instruction encoding functions issuing errors. */
e07e6e58
NC
6909#define constraint(expr, err) \
6910 do \
c19d1205 6911 { \
e07e6e58
NC
6912 if (expr) \
6913 { \
6914 inst.error = err; \
6915 return; \
6916 } \
c19d1205 6917 } \
e07e6e58 6918 while (0)
c19d1205 6919
fdfde340
JM
6920/* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
6921 instructions are unpredictable if these registers are used. This
6922 is the BadReg predicate in ARM's Thumb-2 documentation. */
6923#define reject_bad_reg(reg) \
6924 do \
6925 if (reg == REG_SP || reg == REG_PC) \
6926 { \
6927 inst.error = (reg == REG_SP) ? BAD_SP : BAD_PC; \
6928 return; \
6929 } \
6930 while (0)
6931
94206790
MM
6932/* If REG is R13 (the stack pointer), warn that its use is
6933 deprecated. */
6934#define warn_deprecated_sp(reg) \
6935 do \
6936 if (warn_on_deprecated && reg == REG_SP) \
6937 as_warn (_("use of r13 is deprecated")); \
6938 while (0)
6939
c19d1205
ZW
6940/* Functions for operand encoding. ARM, then Thumb. */
6941
6942#define rotate_left(v, n) (v << n | v >> (32 - n))
6943
6944/* If VAL can be encoded in the immediate field of an ARM instruction,
6945 return the encoded form. Otherwise, return FAIL. */
6946
6947static unsigned int
6948encode_arm_immediate (unsigned int val)
09d92015 6949{
c19d1205
ZW
6950 unsigned int a, i;
6951
6952 for (i = 0; i < 32; i += 2)
6953 if ((a = rotate_left (val, i)) <= 0xff)
6954 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
6955
6956 return FAIL;
09d92015
MM
6957}
6958
c19d1205
ZW
6959/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
6960 return the encoded form. Otherwise, return FAIL. */
6961static unsigned int
6962encode_thumb32_immediate (unsigned int val)
09d92015 6963{
c19d1205 6964 unsigned int a, i;
09d92015 6965
9c3c69f2 6966 if (val <= 0xff)
c19d1205 6967 return val;
a737bd4d 6968
9c3c69f2 6969 for (i = 1; i <= 24; i++)
09d92015 6970 {
9c3c69f2
PB
6971 a = val >> i;
6972 if ((val & ~(0xff << i)) == 0)
6973 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 6974 }
a737bd4d 6975
c19d1205
ZW
6976 a = val & 0xff;
6977 if (val == ((a << 16) | a))
6978 return 0x100 | a;
6979 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
6980 return 0x300 | a;
09d92015 6981
c19d1205
ZW
6982 a = val & 0xff00;
6983 if (val == ((a << 16) | a))
6984 return 0x200 | (a >> 8);
a737bd4d 6985
c19d1205 6986 return FAIL;
09d92015 6987}
5287ad62 6988/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
6989
6990static void
5287ad62
JB
6991encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
6992{
6993 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
6994 && reg > 15)
6995 {
b1cc4aeb 6996 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
5287ad62
JB
6997 {
6998 if (thumb_mode)
6999 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
b1cc4aeb 7000 fpu_vfp_ext_d32);
5287ad62
JB
7001 else
7002 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
b1cc4aeb 7003 fpu_vfp_ext_d32);
5287ad62
JB
7004 }
7005 else
7006 {
dcbf9037 7007 first_error (_("D register out of range for selected VFP version"));
5287ad62
JB
7008 return;
7009 }
7010 }
7011
c19d1205 7012 switch (pos)
09d92015 7013 {
c19d1205
ZW
7014 case VFP_REG_Sd:
7015 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
7016 break;
7017
7018 case VFP_REG_Sn:
7019 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
7020 break;
7021
7022 case VFP_REG_Sm:
7023 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
7024 break;
7025
5287ad62
JB
7026 case VFP_REG_Dd:
7027 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
7028 break;
5f4273c7 7029
5287ad62
JB
7030 case VFP_REG_Dn:
7031 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
7032 break;
5f4273c7 7033
5287ad62
JB
7034 case VFP_REG_Dm:
7035 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
7036 break;
7037
c19d1205
ZW
7038 default:
7039 abort ();
09d92015 7040 }
09d92015
MM
7041}
7042
c19d1205 7043/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 7044 if any, is handled by md_apply_fix. */
09d92015 7045static void
c19d1205 7046encode_arm_shift (int i)
09d92015 7047{
c19d1205
ZW
7048 if (inst.operands[i].shift_kind == SHIFT_RRX)
7049 inst.instruction |= SHIFT_ROR << 5;
7050 else
09d92015 7051 {
c19d1205
ZW
7052 inst.instruction |= inst.operands[i].shift_kind << 5;
7053 if (inst.operands[i].immisreg)
7054 {
7055 inst.instruction |= SHIFT_BY_REG;
7056 inst.instruction |= inst.operands[i].imm << 8;
7057 }
7058 else
7059 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 7060 }
c19d1205 7061}
09d92015 7062
c19d1205
ZW
7063static void
7064encode_arm_shifter_operand (int i)
7065{
7066 if (inst.operands[i].isreg)
09d92015 7067 {
c19d1205
ZW
7068 inst.instruction |= inst.operands[i].reg;
7069 encode_arm_shift (i);
09d92015 7070 }
c19d1205 7071 else
a415b1cd
JB
7072 {
7073 inst.instruction |= INST_IMMEDIATE;
7074 if (inst.reloc.type != BFD_RELOC_ARM_IMMEDIATE)
7075 inst.instruction |= inst.operands[i].imm;
7076 }
09d92015
MM
7077}
7078
c19d1205 7079/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 7080static void
c19d1205 7081encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 7082{
2b2f5df9
NC
7083 /* PR 14260:
7084 Generate an error if the operand is not a register. */
7085 constraint (!inst.operands[i].isreg,
7086 _("Instruction does not support =N addresses"));
7087
c19d1205 7088 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7089
c19d1205 7090 if (inst.operands[i].preind)
09d92015 7091 {
c19d1205
ZW
7092 if (is_t)
7093 {
7094 inst.error = _("instruction does not accept preindexed addressing");
7095 return;
7096 }
7097 inst.instruction |= PRE_INDEX;
7098 if (inst.operands[i].writeback)
7099 inst.instruction |= WRITE_BACK;
09d92015 7100
c19d1205
ZW
7101 }
7102 else if (inst.operands[i].postind)
7103 {
9c2799c2 7104 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
7105 if (is_t)
7106 inst.instruction |= WRITE_BACK;
7107 }
7108 else /* unindexed - only for coprocessor */
09d92015 7109 {
c19d1205 7110 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
7111 return;
7112 }
7113
c19d1205
ZW
7114 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
7115 && (((inst.instruction & 0x000f0000) >> 16)
7116 == ((inst.instruction & 0x0000f000) >> 12)))
7117 as_warn ((inst.instruction & LOAD_BIT)
7118 ? _("destination register same as write-back base")
7119 : _("source register same as write-back base"));
09d92015
MM
7120}
7121
c19d1205
ZW
7122/* inst.operands[i] was set up by parse_address. Encode it into an
7123 ARM-format mode 2 load or store instruction. If is_t is true,
7124 reject forms that cannot be used with a T instruction (i.e. not
7125 post-indexed). */
a737bd4d 7126static void
c19d1205 7127encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 7128{
5be8be5d
DG
7129 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
7130
c19d1205 7131 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7132
c19d1205 7133 if (inst.operands[i].immisreg)
09d92015 7134 {
5be8be5d
DG
7135 constraint ((inst.operands[i].imm == REG_PC
7136 || (is_pc && inst.operands[i].writeback)),
7137 BAD_PC_ADDRESSING);
c19d1205
ZW
7138 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
7139 inst.instruction |= inst.operands[i].imm;
7140 if (!inst.operands[i].negative)
7141 inst.instruction |= INDEX_UP;
7142 if (inst.operands[i].shifted)
7143 {
7144 if (inst.operands[i].shift_kind == SHIFT_RRX)
7145 inst.instruction |= SHIFT_ROR << 5;
7146 else
7147 {
7148 inst.instruction |= inst.operands[i].shift_kind << 5;
7149 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7150 }
7151 }
09d92015 7152 }
c19d1205 7153 else /* immediate offset in inst.reloc */
09d92015 7154 {
5be8be5d
DG
7155 if (is_pc && !inst.reloc.pc_rel)
7156 {
7157 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
23a10334
JZ
7158
7159 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
7160 cannot use PC in addressing.
7161 PC cannot be used in writeback addressing, either. */
7162 constraint ((is_t || inst.operands[i].writeback),
5be8be5d 7163 BAD_PC_ADDRESSING);
23a10334 7164
dc5ec521 7165 /* Use of PC in str is deprecated for ARMv7. */
23a10334
JZ
7166 if (warn_on_deprecated
7167 && !is_load
7168 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
7169 as_warn (_("use of PC in this instruction is deprecated"));
5be8be5d
DG
7170 }
7171
c19d1205 7172 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7173 {
7174 /* Prefer + for zero encoded value. */
7175 if (!inst.operands[i].negative)
7176 inst.instruction |= INDEX_UP;
7177 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
7178 }
09d92015 7179 }
09d92015
MM
7180}
7181
c19d1205
ZW
7182/* inst.operands[i] was set up by parse_address. Encode it into an
7183 ARM-format mode 3 load or store instruction. Reject forms that
7184 cannot be used with such instructions. If is_t is true, reject
7185 forms that cannot be used with a T instruction (i.e. not
7186 post-indexed). */
7187static void
7188encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 7189{
c19d1205 7190 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 7191 {
c19d1205
ZW
7192 inst.error = _("instruction does not accept scaled register index");
7193 return;
09d92015 7194 }
a737bd4d 7195
c19d1205 7196 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7197
c19d1205
ZW
7198 if (inst.operands[i].immisreg)
7199 {
5be8be5d
DG
7200 constraint ((inst.operands[i].imm == REG_PC
7201 || inst.operands[i].reg == REG_PC),
7202 BAD_PC_ADDRESSING);
c19d1205
ZW
7203 inst.instruction |= inst.operands[i].imm;
7204 if (!inst.operands[i].negative)
7205 inst.instruction |= INDEX_UP;
7206 }
7207 else /* immediate offset in inst.reloc */
7208 {
5be8be5d
DG
7209 constraint ((inst.operands[i].reg == REG_PC && !inst.reloc.pc_rel
7210 && inst.operands[i].writeback),
7211 BAD_PC_WRITEBACK);
c19d1205
ZW
7212 inst.instruction |= HWOFFSET_IMM;
7213 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7214 {
7215 /* Prefer + for zero encoded value. */
7216 if (!inst.operands[i].negative)
7217 inst.instruction |= INDEX_UP;
7218
7219 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
7220 }
c19d1205 7221 }
a737bd4d
NC
7222}
7223
c19d1205
ZW
7224/* inst.operands[i] was set up by parse_address. Encode it into an
7225 ARM-format instruction. Reject all forms which cannot be encoded
7226 into a coprocessor load/store instruction. If wb_ok is false,
7227 reject use of writeback; if unind_ok is false, reject use of
7228 unindexed addressing. If reloc_override is not 0, use it instead
4962c51a
MS
7229 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
7230 (in which case it is preserved). */
09d92015 7231
c19d1205
ZW
7232static int
7233encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
09d92015 7234{
c19d1205 7235 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7236
9c2799c2 7237 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
09d92015 7238
c19d1205 7239 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
09d92015 7240 {
9c2799c2 7241 gas_assert (!inst.operands[i].writeback);
c19d1205
ZW
7242 if (!unind_ok)
7243 {
7244 inst.error = _("instruction does not support unindexed addressing");
7245 return FAIL;
7246 }
7247 inst.instruction |= inst.operands[i].imm;
7248 inst.instruction |= INDEX_UP;
7249 return SUCCESS;
09d92015 7250 }
a737bd4d 7251
c19d1205
ZW
7252 if (inst.operands[i].preind)
7253 inst.instruction |= PRE_INDEX;
a737bd4d 7254
c19d1205 7255 if (inst.operands[i].writeback)
09d92015 7256 {
c19d1205
ZW
7257 if (inst.operands[i].reg == REG_PC)
7258 {
7259 inst.error = _("pc may not be used with write-back");
7260 return FAIL;
7261 }
7262 if (!wb_ok)
7263 {
7264 inst.error = _("instruction does not support writeback");
7265 return FAIL;
7266 }
7267 inst.instruction |= WRITE_BACK;
09d92015 7268 }
a737bd4d 7269
c19d1205 7270 if (reloc_override)
21d799b5 7271 inst.reloc.type = (bfd_reloc_code_real_type) reloc_override;
4962c51a
MS
7272 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
7273 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
7274 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
7275 {
7276 if (thumb_mode)
7277 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
7278 else
7279 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
7280 }
7281
26d97720
NS
7282 /* Prefer + for zero encoded value. */
7283 if (!inst.operands[i].negative)
7284 inst.instruction |= INDEX_UP;
7285
c19d1205
ZW
7286 return SUCCESS;
7287}
a737bd4d 7288
c19d1205
ZW
7289/* inst.reloc.exp describes an "=expr" load pseudo-operation.
7290 Determine whether it can be performed with a move instruction; if
7291 it can, convert inst.instruction to that move instruction and
c921be7d
NC
7292 return TRUE; if it can't, convert inst.instruction to a literal-pool
7293 load and return FALSE. If this is not a valid thing to do in the
7294 current context, set inst.error and return TRUE.
a737bd4d 7295
c19d1205
ZW
7296 inst.operands[i] describes the destination register. */
7297
c921be7d 7298static bfd_boolean
c19d1205
ZW
7299move_or_literal_pool (int i, bfd_boolean thumb_p, bfd_boolean mode_3)
7300{
53365c0d
PB
7301 unsigned long tbit;
7302
7303 if (thumb_p)
7304 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
7305 else
7306 tbit = LOAD_BIT;
7307
7308 if ((inst.instruction & tbit) == 0)
09d92015 7309 {
c19d1205 7310 inst.error = _("invalid pseudo operation");
c921be7d 7311 return TRUE;
09d92015 7312 }
c19d1205 7313 if (inst.reloc.exp.X_op != O_constant && inst.reloc.exp.X_op != O_symbol)
09d92015
MM
7314 {
7315 inst.error = _("constant expression expected");
c921be7d 7316 return TRUE;
09d92015 7317 }
c19d1205 7318 if (inst.reloc.exp.X_op == O_constant)
09d92015 7319 {
c19d1205
ZW
7320 if (thumb_p)
7321 {
53365c0d 7322 if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
c19d1205
ZW
7323 {
7324 /* This can be done with a mov(1) instruction. */
7325 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
7326 inst.instruction |= inst.reloc.exp.X_add_number;
c921be7d 7327 return TRUE;
c19d1205
ZW
7328 }
7329 }
7330 else
7331 {
7332 int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
7333 if (value != FAIL)
7334 {
7335 /* This can be done with a mov instruction. */
7336 inst.instruction &= LITERAL_MASK;
7337 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
7338 inst.instruction |= value & 0xfff;
c921be7d 7339 return TRUE;
c19d1205 7340 }
09d92015 7341
c19d1205
ZW
7342 value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
7343 if (value != FAIL)
7344 {
7345 /* This can be done with a mvn instruction. */
7346 inst.instruction &= LITERAL_MASK;
7347 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
7348 inst.instruction |= value & 0xfff;
c921be7d 7349 return TRUE;
c19d1205
ZW
7350 }
7351 }
09d92015
MM
7352 }
7353
c19d1205
ZW
7354 if (add_to_lit_pool () == FAIL)
7355 {
7356 inst.error = _("literal pool insertion failed");
c921be7d 7357 return TRUE;
c19d1205
ZW
7358 }
7359 inst.operands[1].reg = REG_PC;
7360 inst.operands[1].isreg = 1;
7361 inst.operands[1].preind = 1;
7362 inst.reloc.pc_rel = 1;
7363 inst.reloc.type = (thumb_p
7364 ? BFD_RELOC_ARM_THUMB_OFFSET
7365 : (mode_3
7366 ? BFD_RELOC_ARM_HWLITERAL
7367 : BFD_RELOC_ARM_LITERAL));
c921be7d 7368 return FALSE;
09d92015
MM
7369}
7370
5f4273c7 7371/* Functions for instruction encoding, sorted by sub-architecture.
c19d1205
ZW
7372 First some generics; their names are taken from the conventional
7373 bit positions for register arguments in ARM format instructions. */
09d92015 7374
a737bd4d 7375static void
c19d1205 7376do_noargs (void)
09d92015 7377{
c19d1205 7378}
a737bd4d 7379
c19d1205
ZW
7380static void
7381do_rd (void)
7382{
7383 inst.instruction |= inst.operands[0].reg << 12;
7384}
a737bd4d 7385
c19d1205
ZW
7386static void
7387do_rd_rm (void)
7388{
7389 inst.instruction |= inst.operands[0].reg << 12;
7390 inst.instruction |= inst.operands[1].reg;
7391}
09d92015 7392
9eb6c0f1
MGD
7393static void
7394do_rm_rn (void)
7395{
7396 inst.instruction |= inst.operands[0].reg;
7397 inst.instruction |= inst.operands[1].reg << 16;
7398}
7399
c19d1205
ZW
7400static void
7401do_rd_rn (void)
7402{
7403 inst.instruction |= inst.operands[0].reg << 12;
7404 inst.instruction |= inst.operands[1].reg << 16;
7405}
a737bd4d 7406
c19d1205
ZW
7407static void
7408do_rn_rd (void)
7409{
7410 inst.instruction |= inst.operands[0].reg << 16;
7411 inst.instruction |= inst.operands[1].reg << 12;
7412}
09d92015 7413
59d09be6
MGD
7414static bfd_boolean
7415check_obsolete (const arm_feature_set *feature, const char *msg)
7416{
7417 if (ARM_CPU_IS_ANY (cpu_variant))
7418 {
7419 as_warn ("%s", msg);
7420 return TRUE;
7421 }
7422 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
7423 {
7424 as_bad ("%s", msg);
7425 return TRUE;
7426 }
7427
7428 return FALSE;
7429}
7430
c19d1205
ZW
7431static void
7432do_rd_rm_rn (void)
7433{
9a64e435 7434 unsigned Rn = inst.operands[2].reg;
708587a4 7435 /* Enforce restrictions on SWP instruction. */
9a64e435 7436 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
56adecf4
DG
7437 {
7438 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
7439 _("Rn must not overlap other operands"));
7440
59d09be6
MGD
7441 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
7442 */
7443 if (!check_obsolete (&arm_ext_v8,
7444 _("swp{b} use is obsoleted for ARMv8 and later"))
7445 && warn_on_deprecated
7446 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
7447 as_warn (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
56adecf4 7448 }
59d09be6 7449
c19d1205
ZW
7450 inst.instruction |= inst.operands[0].reg << 12;
7451 inst.instruction |= inst.operands[1].reg;
9a64e435 7452 inst.instruction |= Rn << 16;
c19d1205 7453}
09d92015 7454
c19d1205
ZW
7455static void
7456do_rd_rn_rm (void)
7457{
7458 inst.instruction |= inst.operands[0].reg << 12;
7459 inst.instruction |= inst.operands[1].reg << 16;
7460 inst.instruction |= inst.operands[2].reg;
7461}
a737bd4d 7462
c19d1205
ZW
7463static void
7464do_rm_rd_rn (void)
7465{
5be8be5d
DG
7466 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
7467 constraint (((inst.reloc.exp.X_op != O_constant
7468 && inst.reloc.exp.X_op != O_illegal)
7469 || inst.reloc.exp.X_add_number != 0),
7470 BAD_ADDR_MODE);
c19d1205
ZW
7471 inst.instruction |= inst.operands[0].reg;
7472 inst.instruction |= inst.operands[1].reg << 12;
7473 inst.instruction |= inst.operands[2].reg << 16;
7474}
09d92015 7475
c19d1205
ZW
7476static void
7477do_imm0 (void)
7478{
7479 inst.instruction |= inst.operands[0].imm;
7480}
09d92015 7481
c19d1205
ZW
7482static void
7483do_rd_cpaddr (void)
7484{
7485 inst.instruction |= inst.operands[0].reg << 12;
7486 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 7487}
a737bd4d 7488
c19d1205
ZW
7489/* ARM instructions, in alphabetical order by function name (except
7490 that wrapper functions appear immediately after the function they
7491 wrap). */
09d92015 7492
c19d1205
ZW
7493/* This is a pseudo-op of the form "adr rd, label" to be converted
7494 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
7495
7496static void
c19d1205 7497do_adr (void)
09d92015 7498{
c19d1205 7499 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7500
c19d1205
ZW
7501 /* Frag hacking will turn this into a sub instruction if the offset turns
7502 out to be negative. */
7503 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 7504 inst.reloc.pc_rel = 1;
2fc8bdac 7505 inst.reloc.exp.X_add_number -= 8;
c19d1205 7506}
b99bd4ef 7507
c19d1205
ZW
7508/* This is a pseudo-op of the form "adrl rd, label" to be converted
7509 into a relative address of the form:
7510 add rd, pc, #low(label-.-8)"
7511 add rd, rd, #high(label-.-8)" */
b99bd4ef 7512
c19d1205
ZW
7513static void
7514do_adrl (void)
7515{
7516 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7517
c19d1205
ZW
7518 /* Frag hacking will turn this into a sub instruction if the offset turns
7519 out to be negative. */
7520 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
7521 inst.reloc.pc_rel = 1;
7522 inst.size = INSN_SIZE * 2;
2fc8bdac 7523 inst.reloc.exp.X_add_number -= 8;
b99bd4ef
NC
7524}
7525
b99bd4ef 7526static void
c19d1205 7527do_arit (void)
b99bd4ef 7528{
c19d1205
ZW
7529 if (!inst.operands[1].present)
7530 inst.operands[1].reg = inst.operands[0].reg;
7531 inst.instruction |= inst.operands[0].reg << 12;
7532 inst.instruction |= inst.operands[1].reg << 16;
7533 encode_arm_shifter_operand (2);
7534}
b99bd4ef 7535
62b3e311
PB
7536static void
7537do_barrier (void)
7538{
7539 if (inst.operands[0].present)
7540 {
7541 constraint ((inst.instruction & 0xf0) != 0x40
52e7f43d
RE
7542 && inst.operands[0].imm > 0xf
7543 && inst.operands[0].imm < 0x0,
bd3ba5d1 7544 _("bad barrier type"));
62b3e311
PB
7545 inst.instruction |= inst.operands[0].imm;
7546 }
7547 else
7548 inst.instruction |= 0xf;
7549}
7550
c19d1205
ZW
7551static void
7552do_bfc (void)
7553{
7554 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
7555 constraint (msb > 32, _("bit-field extends past end of register"));
7556 /* The instruction encoding stores the LSB and MSB,
7557 not the LSB and width. */
7558 inst.instruction |= inst.operands[0].reg << 12;
7559 inst.instruction |= inst.operands[1].imm << 7;
7560 inst.instruction |= (msb - 1) << 16;
7561}
b99bd4ef 7562
c19d1205
ZW
7563static void
7564do_bfi (void)
7565{
7566 unsigned int msb;
b99bd4ef 7567
c19d1205
ZW
7568 /* #0 in second position is alternative syntax for bfc, which is
7569 the same instruction but with REG_PC in the Rm field. */
7570 if (!inst.operands[1].isreg)
7571 inst.operands[1].reg = REG_PC;
b99bd4ef 7572
c19d1205
ZW
7573 msb = inst.operands[2].imm + inst.operands[3].imm;
7574 constraint (msb > 32, _("bit-field extends past end of register"));
7575 /* The instruction encoding stores the LSB and MSB,
7576 not the LSB and width. */
7577 inst.instruction |= inst.operands[0].reg << 12;
7578 inst.instruction |= inst.operands[1].reg;
7579 inst.instruction |= inst.operands[2].imm << 7;
7580 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
7581}
7582
b99bd4ef 7583static void
c19d1205 7584do_bfx (void)
b99bd4ef 7585{
c19d1205
ZW
7586 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
7587 _("bit-field extends past end of register"));
7588 inst.instruction |= inst.operands[0].reg << 12;
7589 inst.instruction |= inst.operands[1].reg;
7590 inst.instruction |= inst.operands[2].imm << 7;
7591 inst.instruction |= (inst.operands[3].imm - 1) << 16;
7592}
09d92015 7593
c19d1205
ZW
7594/* ARM V5 breakpoint instruction (argument parse)
7595 BKPT <16 bit unsigned immediate>
7596 Instruction is not conditional.
7597 The bit pattern given in insns[] has the COND_ALWAYS condition,
7598 and it is an error if the caller tried to override that. */
b99bd4ef 7599
c19d1205
ZW
7600static void
7601do_bkpt (void)
7602{
7603 /* Top 12 of 16 bits to bits 19:8. */
7604 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 7605
c19d1205
ZW
7606 /* Bottom 4 of 16 bits to bits 3:0. */
7607 inst.instruction |= inst.operands[0].imm & 0xf;
7608}
09d92015 7609
c19d1205
ZW
7610static void
7611encode_branch (int default_reloc)
7612{
7613 if (inst.operands[0].hasreloc)
7614 {
0855e32b
NS
7615 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
7616 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
7617 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
7618 inst.reloc.type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
7619 ? BFD_RELOC_ARM_PLT32
7620 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
c19d1205 7621 }
b99bd4ef 7622 else
9ae92b05 7623 inst.reloc.type = (bfd_reloc_code_real_type) default_reloc;
2fc8bdac 7624 inst.reloc.pc_rel = 1;
b99bd4ef
NC
7625}
7626
b99bd4ef 7627static void
c19d1205 7628do_branch (void)
b99bd4ef 7629{
39b41c9c
PB
7630#ifdef OBJ_ELF
7631 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7632 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7633 else
7634#endif
7635 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
7636}
7637
7638static void
7639do_bl (void)
7640{
7641#ifdef OBJ_ELF
7642 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7643 {
7644 if (inst.cond == COND_ALWAYS)
7645 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
7646 else
7647 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7648 }
7649 else
7650#endif
7651 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 7652}
b99bd4ef 7653
c19d1205
ZW
7654/* ARM V5 branch-link-exchange instruction (argument parse)
7655 BLX <target_addr> ie BLX(1)
7656 BLX{<condition>} <Rm> ie BLX(2)
7657 Unfortunately, there are two different opcodes for this mnemonic.
7658 So, the insns[].value is not used, and the code here zaps values
7659 into inst.instruction.
7660 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 7661
c19d1205
ZW
7662static void
7663do_blx (void)
7664{
7665 if (inst.operands[0].isreg)
b99bd4ef 7666 {
c19d1205
ZW
7667 /* Arg is a register; the opcode provided by insns[] is correct.
7668 It is not illegal to do "blx pc", just useless. */
7669 if (inst.operands[0].reg == REG_PC)
7670 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 7671
c19d1205
ZW
7672 inst.instruction |= inst.operands[0].reg;
7673 }
7674 else
b99bd4ef 7675 {
c19d1205 7676 /* Arg is an address; this instruction cannot be executed
267bf995
RR
7677 conditionally, and the opcode must be adjusted.
7678 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
7679 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
c19d1205 7680 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 7681 inst.instruction = 0xfa000000;
267bf995 7682 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 7683 }
c19d1205
ZW
7684}
7685
7686static void
7687do_bx (void)
7688{
845b51d6
PB
7689 bfd_boolean want_reloc;
7690
c19d1205
ZW
7691 if (inst.operands[0].reg == REG_PC)
7692 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 7693
c19d1205 7694 inst.instruction |= inst.operands[0].reg;
845b51d6
PB
7695 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
7696 it is for ARMv4t or earlier. */
7697 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
7698 if (object_arch && !ARM_CPU_HAS_FEATURE (*object_arch, arm_ext_v5))
7699 want_reloc = TRUE;
7700
5ad34203 7701#ifdef OBJ_ELF
845b51d6 7702 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
5ad34203 7703#endif
584206db 7704 want_reloc = FALSE;
845b51d6
PB
7705
7706 if (want_reloc)
7707 inst.reloc.type = BFD_RELOC_ARM_V4BX;
09d92015
MM
7708}
7709
c19d1205
ZW
7710
7711/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
7712
7713static void
c19d1205 7714do_bxj (void)
a737bd4d 7715{
c19d1205
ZW
7716 if (inst.operands[0].reg == REG_PC)
7717 as_tsktsk (_("use of r15 in bxj is not really useful"));
7718
7719 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
7720}
7721
c19d1205
ZW
7722/* Co-processor data operation:
7723 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
7724 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
7725static void
7726do_cdp (void)
7727{
7728 inst.instruction |= inst.operands[0].reg << 8;
7729 inst.instruction |= inst.operands[1].imm << 20;
7730 inst.instruction |= inst.operands[2].reg << 12;
7731 inst.instruction |= inst.operands[3].reg << 16;
7732 inst.instruction |= inst.operands[4].reg;
7733 inst.instruction |= inst.operands[5].imm << 5;
7734}
a737bd4d
NC
7735
7736static void
c19d1205 7737do_cmp (void)
a737bd4d 7738{
c19d1205
ZW
7739 inst.instruction |= inst.operands[0].reg << 16;
7740 encode_arm_shifter_operand (1);
a737bd4d
NC
7741}
7742
c19d1205
ZW
7743/* Transfer between coprocessor and ARM registers.
7744 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
7745 MRC2
7746 MCR{cond}
7747 MCR2
7748
7749 No special properties. */
09d92015 7750
dcbd0d71
MGD
7751struct deprecated_coproc_regs_s
7752{
7753 unsigned cp;
7754 int opc1;
7755 unsigned crn;
7756 unsigned crm;
7757 int opc2;
7758 arm_feature_set deprecated;
7759 arm_feature_set obsoleted;
7760 const char *dep_msg;
7761 const char *obs_msg;
7762};
7763
7764#define DEPR_ACCESS_V8 \
7765 N_("This coprocessor register access is deprecated in ARMv8")
7766
7767/* Table of all deprecated coprocessor registers. */
7768static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
7769{
7770 {15, 0, 7, 10, 5, /* CP15DMB. */
7771 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7772 DEPR_ACCESS_V8, NULL},
7773 {15, 0, 7, 10, 4, /* CP15DSB. */
7774 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7775 DEPR_ACCESS_V8, NULL},
7776 {15, 0, 7, 5, 4, /* CP15ISB. */
7777 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7778 DEPR_ACCESS_V8, NULL},
7779 {14, 6, 1, 0, 0, /* TEEHBR. */
7780 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7781 DEPR_ACCESS_V8, NULL},
7782 {14, 6, 0, 0, 0, /* TEECR. */
7783 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7784 DEPR_ACCESS_V8, NULL},
7785};
7786
7787#undef DEPR_ACCESS_V8
7788
7789static const size_t deprecated_coproc_reg_count =
7790 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
7791
09d92015 7792static void
c19d1205 7793do_co_reg (void)
09d92015 7794{
fdfde340 7795 unsigned Rd;
dcbd0d71 7796 size_t i;
fdfde340
JM
7797
7798 Rd = inst.operands[2].reg;
7799 if (thumb_mode)
7800 {
7801 if (inst.instruction == 0xee000010
7802 || inst.instruction == 0xfe000010)
7803 /* MCR, MCR2 */
7804 reject_bad_reg (Rd);
7805 else
7806 /* MRC, MRC2 */
7807 constraint (Rd == REG_SP, BAD_SP);
7808 }
7809 else
7810 {
7811 /* MCR */
7812 if (inst.instruction == 0xe000010)
7813 constraint (Rd == REG_PC, BAD_PC);
7814 }
7815
dcbd0d71
MGD
7816 for (i = 0; i < deprecated_coproc_reg_count; ++i)
7817 {
7818 const struct deprecated_coproc_regs_s *r =
7819 deprecated_coproc_regs + i;
7820
7821 if (inst.operands[0].reg == r->cp
7822 && inst.operands[1].imm == r->opc1
7823 && inst.operands[3].reg == r->crn
7824 && inst.operands[4].reg == r->crm
7825 && inst.operands[5].imm == r->opc2)
7826 {
7827 if (!check_obsolete (&r->obsoleted, r->obs_msg)
7828 && warn_on_deprecated
7829 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
7830 as_warn ("%s", r->dep_msg);
7831 }
7832 }
fdfde340 7833
c19d1205
ZW
7834 inst.instruction |= inst.operands[0].reg << 8;
7835 inst.instruction |= inst.operands[1].imm << 21;
fdfde340 7836 inst.instruction |= Rd << 12;
c19d1205
ZW
7837 inst.instruction |= inst.operands[3].reg << 16;
7838 inst.instruction |= inst.operands[4].reg;
7839 inst.instruction |= inst.operands[5].imm << 5;
7840}
09d92015 7841
c19d1205
ZW
7842/* Transfer between coprocessor register and pair of ARM registers.
7843 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
7844 MCRR2
7845 MRRC{cond}
7846 MRRC2
b99bd4ef 7847
c19d1205 7848 Two XScale instructions are special cases of these:
09d92015 7849
c19d1205
ZW
7850 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
7851 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 7852
5f4273c7 7853 Result unpredictable if Rd or Rn is R15. */
a737bd4d 7854
c19d1205
ZW
7855static void
7856do_co_reg2c (void)
7857{
fdfde340
JM
7858 unsigned Rd, Rn;
7859
7860 Rd = inst.operands[2].reg;
7861 Rn = inst.operands[3].reg;
7862
7863 if (thumb_mode)
7864 {
7865 reject_bad_reg (Rd);
7866 reject_bad_reg (Rn);
7867 }
7868 else
7869 {
7870 constraint (Rd == REG_PC, BAD_PC);
7871 constraint (Rn == REG_PC, BAD_PC);
7872 }
7873
c19d1205
ZW
7874 inst.instruction |= inst.operands[0].reg << 8;
7875 inst.instruction |= inst.operands[1].imm << 4;
fdfde340
JM
7876 inst.instruction |= Rd << 12;
7877 inst.instruction |= Rn << 16;
c19d1205 7878 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
7879}
7880
c19d1205
ZW
7881static void
7882do_cpsi (void)
7883{
7884 inst.instruction |= inst.operands[0].imm << 6;
a028a6f5
PB
7885 if (inst.operands[1].present)
7886 {
7887 inst.instruction |= CPSI_MMOD;
7888 inst.instruction |= inst.operands[1].imm;
7889 }
c19d1205 7890}
b99bd4ef 7891
62b3e311
PB
7892static void
7893do_dbg (void)
7894{
7895 inst.instruction |= inst.operands[0].imm;
7896}
7897
eea54501
MGD
7898static void
7899do_div (void)
7900{
7901 unsigned Rd, Rn, Rm;
7902
7903 Rd = inst.operands[0].reg;
7904 Rn = (inst.operands[1].present
7905 ? inst.operands[1].reg : Rd);
7906 Rm = inst.operands[2].reg;
7907
7908 constraint ((Rd == REG_PC), BAD_PC);
7909 constraint ((Rn == REG_PC), BAD_PC);
7910 constraint ((Rm == REG_PC), BAD_PC);
7911
7912 inst.instruction |= Rd << 16;
7913 inst.instruction |= Rn << 0;
7914 inst.instruction |= Rm << 8;
7915}
7916
b99bd4ef 7917static void
c19d1205 7918do_it (void)
b99bd4ef 7919{
c19d1205 7920 /* There is no IT instruction in ARM mode. We
e07e6e58
NC
7921 process it to do the validation as if in
7922 thumb mode, just in case the code gets
7923 assembled for thumb using the unified syntax. */
7924
c19d1205 7925 inst.size = 0;
e07e6e58
NC
7926 if (unified_syntax)
7927 {
7928 set_it_insn_type (IT_INSN);
7929 now_it.mask = (inst.instruction & 0xf) | 0x10;
7930 now_it.cc = inst.operands[0].imm;
7931 }
09d92015 7932}
b99bd4ef 7933
6530b175
NC
7934/* If there is only one register in the register list,
7935 then return its register number. Otherwise return -1. */
7936static int
7937only_one_reg_in_list (int range)
7938{
7939 int i = ffs (range) - 1;
7940 return (i > 15 || range != (1 << i)) ? -1 : i;
7941}
7942
09d92015 7943static void
6530b175 7944encode_ldmstm(int from_push_pop_mnem)
ea6ef066 7945{
c19d1205
ZW
7946 int base_reg = inst.operands[0].reg;
7947 int range = inst.operands[1].imm;
6530b175 7948 int one_reg;
ea6ef066 7949
c19d1205
ZW
7950 inst.instruction |= base_reg << 16;
7951 inst.instruction |= range;
ea6ef066 7952
c19d1205
ZW
7953 if (inst.operands[1].writeback)
7954 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 7955
c19d1205 7956 if (inst.operands[0].writeback)
ea6ef066 7957 {
c19d1205
ZW
7958 inst.instruction |= WRITE_BACK;
7959 /* Check for unpredictable uses of writeback. */
7960 if (inst.instruction & LOAD_BIT)
09d92015 7961 {
c19d1205
ZW
7962 /* Not allowed in LDM type 2. */
7963 if ((inst.instruction & LDM_TYPE_2_OR_3)
7964 && ((range & (1 << REG_PC)) == 0))
7965 as_warn (_("writeback of base register is UNPREDICTABLE"));
7966 /* Only allowed if base reg not in list for other types. */
7967 else if (range & (1 << base_reg))
7968 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
7969 }
7970 else /* STM. */
7971 {
7972 /* Not allowed for type 2. */
7973 if (inst.instruction & LDM_TYPE_2_OR_3)
7974 as_warn (_("writeback of base register is UNPREDICTABLE"));
7975 /* Only allowed if base reg not in list, or first in list. */
7976 else if ((range & (1 << base_reg))
7977 && (range & ((1 << base_reg) - 1)))
7978 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 7979 }
ea6ef066 7980 }
6530b175
NC
7981
7982 /* If PUSH/POP has only one register, then use the A2 encoding. */
7983 one_reg = only_one_reg_in_list (range);
7984 if (from_push_pop_mnem && one_reg >= 0)
7985 {
7986 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
7987
7988 inst.instruction &= A_COND_MASK;
7989 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
7990 inst.instruction |= one_reg << 12;
7991 }
7992}
7993
7994static void
7995do_ldmstm (void)
7996{
7997 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
a737bd4d
NC
7998}
7999
c19d1205
ZW
8000/* ARMv5TE load-consecutive (argument parse)
8001 Mode is like LDRH.
8002
8003 LDRccD R, mode
8004 STRccD R, mode. */
8005
a737bd4d 8006static void
c19d1205 8007do_ldrd (void)
a737bd4d 8008{
c19d1205 8009 constraint (inst.operands[0].reg % 2 != 0,
c56791bb 8010 _("first transfer register must be even"));
c19d1205
ZW
8011 constraint (inst.operands[1].present
8012 && inst.operands[1].reg != inst.operands[0].reg + 1,
c56791bb 8013 _("can only transfer two consecutive registers"));
c19d1205
ZW
8014 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
8015 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 8016
c19d1205
ZW
8017 if (!inst.operands[1].present)
8018 inst.operands[1].reg = inst.operands[0].reg + 1;
5f4273c7 8019
c56791bb
RE
8020 /* encode_arm_addr_mode_3 will diagnose overlap between the base
8021 register and the first register written; we have to diagnose
8022 overlap between the base and the second register written here. */
ea6ef066 8023
c56791bb
RE
8024 if (inst.operands[2].reg == inst.operands[1].reg
8025 && (inst.operands[2].writeback || inst.operands[2].postind))
8026 as_warn (_("base register written back, and overlaps "
8027 "second transfer register"));
b05fe5cf 8028
c56791bb
RE
8029 if (!(inst.instruction & V4_STR_BIT))
8030 {
c19d1205 8031 /* For an index-register load, the index register must not overlap the
c56791bb
RE
8032 destination (even if not write-back). */
8033 if (inst.operands[2].immisreg
8034 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
8035 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
8036 as_warn (_("index register overlaps transfer register"));
b05fe5cf 8037 }
c19d1205
ZW
8038 inst.instruction |= inst.operands[0].reg << 12;
8039 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
8040}
8041
8042static void
c19d1205 8043do_ldrex (void)
b05fe5cf 8044{
c19d1205
ZW
8045 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
8046 || inst.operands[1].postind || inst.operands[1].writeback
8047 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
8048 || inst.operands[1].negative
8049 /* This can arise if the programmer has written
8050 strex rN, rM, foo
8051 or if they have mistakenly used a register name as the last
8052 operand, eg:
8053 strex rN, rM, rX
8054 It is very difficult to distinguish between these two cases
8055 because "rX" might actually be a label. ie the register
8056 name has been occluded by a symbol of the same name. So we
8057 just generate a general 'bad addressing mode' type error
8058 message and leave it up to the programmer to discover the
8059 true cause and fix their mistake. */
8060 || (inst.operands[1].reg == REG_PC),
8061 BAD_ADDR_MODE);
b05fe5cf 8062
c19d1205
ZW
8063 constraint (inst.reloc.exp.X_op != O_constant
8064 || inst.reloc.exp.X_add_number != 0,
8065 _("offset must be zero in ARM encoding"));
b05fe5cf 8066
5be8be5d
DG
8067 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
8068
c19d1205
ZW
8069 inst.instruction |= inst.operands[0].reg << 12;
8070 inst.instruction |= inst.operands[1].reg << 16;
8071 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
8072}
8073
8074static void
c19d1205 8075do_ldrexd (void)
b05fe5cf 8076{
c19d1205
ZW
8077 constraint (inst.operands[0].reg % 2 != 0,
8078 _("even register required"));
8079 constraint (inst.operands[1].present
8080 && inst.operands[1].reg != inst.operands[0].reg + 1,
8081 _("can only load two consecutive registers"));
8082 /* If op 1 were present and equal to PC, this function wouldn't
8083 have been called in the first place. */
8084 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 8085
c19d1205
ZW
8086 inst.instruction |= inst.operands[0].reg << 12;
8087 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
8088}
8089
1be5fd2e
NC
8090/* In both ARM and thumb state 'ldr pc, #imm' with an immediate
8091 which is not a multiple of four is UNPREDICTABLE. */
8092static void
8093check_ldr_r15_aligned (void)
8094{
8095 constraint (!(inst.operands[1].immisreg)
8096 && (inst.operands[0].reg == REG_PC
8097 && inst.operands[1].reg == REG_PC
8098 && (inst.reloc.exp.X_add_number & 0x3)),
8099 _("ldr to register 15 must be 4-byte alligned"));
8100}
8101
b05fe5cf 8102static void
c19d1205 8103do_ldst (void)
b05fe5cf 8104{
c19d1205
ZW
8105 inst.instruction |= inst.operands[0].reg << 12;
8106 if (!inst.operands[1].isreg)
8107 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/FALSE))
b05fe5cf 8108 return;
c19d1205 8109 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
1be5fd2e 8110 check_ldr_r15_aligned ();
b05fe5cf
ZW
8111}
8112
8113static void
c19d1205 8114do_ldstt (void)
b05fe5cf 8115{
c19d1205
ZW
8116 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8117 reject [Rn,...]. */
8118 if (inst.operands[1].preind)
b05fe5cf 8119 {
bd3ba5d1
NC
8120 constraint (inst.reloc.exp.X_op != O_constant
8121 || inst.reloc.exp.X_add_number != 0,
c19d1205 8122 _("this instruction requires a post-indexed address"));
b05fe5cf 8123
c19d1205
ZW
8124 inst.operands[1].preind = 0;
8125 inst.operands[1].postind = 1;
8126 inst.operands[1].writeback = 1;
b05fe5cf 8127 }
c19d1205
ZW
8128 inst.instruction |= inst.operands[0].reg << 12;
8129 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
8130}
b05fe5cf 8131
c19d1205 8132/* Halfword and signed-byte load/store operations. */
b05fe5cf 8133
c19d1205
ZW
8134static void
8135do_ldstv4 (void)
8136{
ff4a8d2b 8137 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205
ZW
8138 inst.instruction |= inst.operands[0].reg << 12;
8139 if (!inst.operands[1].isreg)
8140 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/TRUE))
b05fe5cf 8141 return;
c19d1205 8142 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
8143}
8144
8145static void
c19d1205 8146do_ldsttv4 (void)
b05fe5cf 8147{
c19d1205
ZW
8148 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8149 reject [Rn,...]. */
8150 if (inst.operands[1].preind)
b05fe5cf 8151 {
bd3ba5d1
NC
8152 constraint (inst.reloc.exp.X_op != O_constant
8153 || inst.reloc.exp.X_add_number != 0,
c19d1205 8154 _("this instruction requires a post-indexed address"));
b05fe5cf 8155
c19d1205
ZW
8156 inst.operands[1].preind = 0;
8157 inst.operands[1].postind = 1;
8158 inst.operands[1].writeback = 1;
b05fe5cf 8159 }
c19d1205
ZW
8160 inst.instruction |= inst.operands[0].reg << 12;
8161 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
8162}
b05fe5cf 8163
c19d1205
ZW
8164/* Co-processor register load/store.
8165 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
8166static void
8167do_lstc (void)
8168{
8169 inst.instruction |= inst.operands[0].reg << 8;
8170 inst.instruction |= inst.operands[1].reg << 12;
8171 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
8172}
8173
b05fe5cf 8174static void
c19d1205 8175do_mlas (void)
b05fe5cf 8176{
8fb9d7b9 8177 /* This restriction does not apply to mls (nor to mla in v6 or later). */
c19d1205 8178 if (inst.operands[0].reg == inst.operands[1].reg
8fb9d7b9 8179 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
c19d1205 8180 && !(inst.instruction & 0x00400000))
8fb9d7b9 8181 as_tsktsk (_("Rd and Rm should be different in mla"));
b05fe5cf 8182
c19d1205
ZW
8183 inst.instruction |= inst.operands[0].reg << 16;
8184 inst.instruction |= inst.operands[1].reg;
8185 inst.instruction |= inst.operands[2].reg << 8;
8186 inst.instruction |= inst.operands[3].reg << 12;
c19d1205 8187}
b05fe5cf 8188
c19d1205
ZW
8189static void
8190do_mov (void)
8191{
8192 inst.instruction |= inst.operands[0].reg << 12;
8193 encode_arm_shifter_operand (1);
8194}
b05fe5cf 8195
c19d1205
ZW
8196/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
8197static void
8198do_mov16 (void)
8199{
b6895b4f
PB
8200 bfd_vma imm;
8201 bfd_boolean top;
8202
8203 top = (inst.instruction & 0x00400000) != 0;
8204 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
8205 _(":lower16: not allowed this instruction"));
8206 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
8207 _(":upper16: not allowed instruction"));
c19d1205 8208 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
8209 if (inst.reloc.type == BFD_RELOC_UNUSED)
8210 {
8211 imm = inst.reloc.exp.X_add_number;
8212 /* The value is in two pieces: 0:11, 16:19. */
8213 inst.instruction |= (imm & 0x00000fff);
8214 inst.instruction |= (imm & 0x0000f000) << 4;
8215 }
b05fe5cf 8216}
b99bd4ef 8217
037e8744
JB
8218static void do_vfp_nsyn_opcode (const char *);
8219
8220static int
8221do_vfp_nsyn_mrs (void)
8222{
8223 if (inst.operands[0].isvec)
8224 {
8225 if (inst.operands[1].reg != 1)
8226 first_error (_("operand 1 must be FPSCR"));
8227 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
8228 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
8229 do_vfp_nsyn_opcode ("fmstat");
8230 }
8231 else if (inst.operands[1].isvec)
8232 do_vfp_nsyn_opcode ("fmrx");
8233 else
8234 return FAIL;
5f4273c7 8235
037e8744
JB
8236 return SUCCESS;
8237}
8238
8239static int
8240do_vfp_nsyn_msr (void)
8241{
8242 if (inst.operands[0].isvec)
8243 do_vfp_nsyn_opcode ("fmxr");
8244 else
8245 return FAIL;
8246
8247 return SUCCESS;
8248}
8249
f7c21dc7
NC
8250static void
8251do_vmrs (void)
8252{
8253 unsigned Rt = inst.operands[0].reg;
fa94de6b 8254
f7c21dc7
NC
8255 if (thumb_mode && inst.operands[0].reg == REG_SP)
8256 {
8257 inst.error = BAD_SP;
8258 return;
8259 }
8260
8261 /* APSR_ sets isvec. All other refs to PC are illegal. */
8262 if (!inst.operands[0].isvec && inst.operands[0].reg == REG_PC)
8263 {
8264 inst.error = BAD_PC;
8265 return;
8266 }
8267
7465e07a
NC
8268 switch (inst.operands[1].reg)
8269 {
8270 case 0: /* FPSID */
8271 case 1: /* FPSCR */
8272 case 6: /* MVFR1 */
8273 case 7: /* MVFR0 */
8274 case 8: /* FPEXC */
8275 inst.instruction |= (inst.operands[1].reg << 16);
8276 break;
8277 default:
8278 first_error (_("operand 1 must be a VFP extension System Register"));
8279 }
f7c21dc7
NC
8280
8281 inst.instruction |= (Rt << 12);
8282}
8283
8284static void
8285do_vmsr (void)
8286{
8287 unsigned Rt = inst.operands[1].reg;
fa94de6b 8288
f7c21dc7
NC
8289 if (thumb_mode)
8290 reject_bad_reg (Rt);
8291 else if (Rt == REG_PC)
8292 {
8293 inst.error = BAD_PC;
8294 return;
8295 }
8296
7465e07a
NC
8297 switch (inst.operands[0].reg)
8298 {
8299 case 0: /* FPSID */
8300 case 1: /* FPSCR */
8301 case 8: /* FPEXC */
8302 inst.instruction |= (inst.operands[0].reg << 16);
8303 break;
8304 default:
8305 first_error (_("operand 0 must be FPSID or FPSCR pr FPEXC"));
8306 }
f7c21dc7
NC
8307
8308 inst.instruction |= (Rt << 12);
8309}
8310
b99bd4ef 8311static void
c19d1205 8312do_mrs (void)
b99bd4ef 8313{
90ec0d68
MGD
8314 unsigned br;
8315
037e8744
JB
8316 if (do_vfp_nsyn_mrs () == SUCCESS)
8317 return;
8318
ff4a8d2b 8319 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205 8320 inst.instruction |= inst.operands[0].reg << 12;
90ec0d68
MGD
8321
8322 if (inst.operands[1].isreg)
8323 {
8324 br = inst.operands[1].reg;
8325 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf000))
8326 as_bad (_("bad register for mrs"));
8327 }
8328 else
8329 {
8330 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
8331 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
8332 != (PSR_c|PSR_f),
d2cd1205 8333 _("'APSR', 'CPSR' or 'SPSR' expected"));
90ec0d68
MGD
8334 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
8335 }
8336
8337 inst.instruction |= br;
c19d1205 8338}
b99bd4ef 8339
c19d1205
ZW
8340/* Two possible forms:
8341 "{C|S}PSR_<field>, Rm",
8342 "{C|S}PSR_f, #expression". */
b99bd4ef 8343
c19d1205
ZW
8344static void
8345do_msr (void)
8346{
037e8744
JB
8347 if (do_vfp_nsyn_msr () == SUCCESS)
8348 return;
8349
c19d1205
ZW
8350 inst.instruction |= inst.operands[0].imm;
8351 if (inst.operands[1].isreg)
8352 inst.instruction |= inst.operands[1].reg;
8353 else
b99bd4ef 8354 {
c19d1205
ZW
8355 inst.instruction |= INST_IMMEDIATE;
8356 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
8357 inst.reloc.pc_rel = 0;
b99bd4ef 8358 }
b99bd4ef
NC
8359}
8360
c19d1205
ZW
8361static void
8362do_mul (void)
a737bd4d 8363{
ff4a8d2b
NC
8364 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
8365
c19d1205
ZW
8366 if (!inst.operands[2].present)
8367 inst.operands[2].reg = inst.operands[0].reg;
8368 inst.instruction |= inst.operands[0].reg << 16;
8369 inst.instruction |= inst.operands[1].reg;
8370 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 8371
8fb9d7b9
MS
8372 if (inst.operands[0].reg == inst.operands[1].reg
8373 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
8374 as_tsktsk (_("Rd and Rm should be different in mul"));
a737bd4d
NC
8375}
8376
c19d1205
ZW
8377/* Long Multiply Parser
8378 UMULL RdLo, RdHi, Rm, Rs
8379 SMULL RdLo, RdHi, Rm, Rs
8380 UMLAL RdLo, RdHi, Rm, Rs
8381 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
8382
8383static void
c19d1205 8384do_mull (void)
b99bd4ef 8385{
c19d1205
ZW
8386 inst.instruction |= inst.operands[0].reg << 12;
8387 inst.instruction |= inst.operands[1].reg << 16;
8388 inst.instruction |= inst.operands[2].reg;
8389 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 8390
682b27ad
PB
8391 /* rdhi and rdlo must be different. */
8392 if (inst.operands[0].reg == inst.operands[1].reg)
8393 as_tsktsk (_("rdhi and rdlo must be different"));
8394
8395 /* rdhi, rdlo and rm must all be different before armv6. */
8396 if ((inst.operands[0].reg == inst.operands[2].reg
c19d1205 8397 || inst.operands[1].reg == inst.operands[2].reg)
682b27ad 8398 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
c19d1205
ZW
8399 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
8400}
b99bd4ef 8401
c19d1205
ZW
8402static void
8403do_nop (void)
8404{
e7495e45
NS
8405 if (inst.operands[0].present
8406 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
c19d1205
ZW
8407 {
8408 /* Architectural NOP hints are CPSR sets with no bits selected. */
8409 inst.instruction &= 0xf0000000;
e7495e45
NS
8410 inst.instruction |= 0x0320f000;
8411 if (inst.operands[0].present)
8412 inst.instruction |= inst.operands[0].imm;
c19d1205 8413 }
b99bd4ef
NC
8414}
8415
c19d1205
ZW
8416/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
8417 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
8418 Condition defaults to COND_ALWAYS.
8419 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
8420
8421static void
c19d1205 8422do_pkhbt (void)
b99bd4ef 8423{
c19d1205
ZW
8424 inst.instruction |= inst.operands[0].reg << 12;
8425 inst.instruction |= inst.operands[1].reg << 16;
8426 inst.instruction |= inst.operands[2].reg;
8427 if (inst.operands[3].present)
8428 encode_arm_shift (3);
8429}
b99bd4ef 8430
c19d1205 8431/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 8432
c19d1205
ZW
8433static void
8434do_pkhtb (void)
8435{
8436 if (!inst.operands[3].present)
b99bd4ef 8437 {
c19d1205
ZW
8438 /* If the shift specifier is omitted, turn the instruction
8439 into pkhbt rd, rm, rn. */
8440 inst.instruction &= 0xfff00010;
8441 inst.instruction |= inst.operands[0].reg << 12;
8442 inst.instruction |= inst.operands[1].reg;
8443 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
8444 }
8445 else
8446 {
c19d1205
ZW
8447 inst.instruction |= inst.operands[0].reg << 12;
8448 inst.instruction |= inst.operands[1].reg << 16;
8449 inst.instruction |= inst.operands[2].reg;
8450 encode_arm_shift (3);
b99bd4ef
NC
8451 }
8452}
8453
c19d1205 8454/* ARMv5TE: Preload-Cache
60e5ef9f 8455 MP Extensions: Preload for write
c19d1205 8456
60e5ef9f 8457 PLD(W) <addr_mode>
c19d1205
ZW
8458
8459 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
8460
8461static void
c19d1205 8462do_pld (void)
b99bd4ef 8463{
c19d1205
ZW
8464 constraint (!inst.operands[0].isreg,
8465 _("'[' expected after PLD mnemonic"));
8466 constraint (inst.operands[0].postind,
8467 _("post-indexed expression used in preload instruction"));
8468 constraint (inst.operands[0].writeback,
8469 _("writeback used in preload instruction"));
8470 constraint (!inst.operands[0].preind,
8471 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
8472 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8473}
b99bd4ef 8474
62b3e311
PB
8475/* ARMv7: PLI <addr_mode> */
8476static void
8477do_pli (void)
8478{
8479 constraint (!inst.operands[0].isreg,
8480 _("'[' expected after PLI mnemonic"));
8481 constraint (inst.operands[0].postind,
8482 _("post-indexed expression used in preload instruction"));
8483 constraint (inst.operands[0].writeback,
8484 _("writeback used in preload instruction"));
8485 constraint (!inst.operands[0].preind,
8486 _("unindexed addressing used in preload instruction"));
8487 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8488 inst.instruction &= ~PRE_INDEX;
8489}
8490
c19d1205
ZW
8491static void
8492do_push_pop (void)
8493{
8494 inst.operands[1] = inst.operands[0];
8495 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
8496 inst.operands[0].isreg = 1;
8497 inst.operands[0].writeback = 1;
8498 inst.operands[0].reg = REG_SP;
6530b175 8499 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
c19d1205 8500}
b99bd4ef 8501
c19d1205
ZW
8502/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
8503 word at the specified address and the following word
8504 respectively.
8505 Unconditionally executed.
8506 Error if Rn is R15. */
b99bd4ef 8507
c19d1205
ZW
8508static void
8509do_rfe (void)
8510{
8511 inst.instruction |= inst.operands[0].reg << 16;
8512 if (inst.operands[0].writeback)
8513 inst.instruction |= WRITE_BACK;
8514}
b99bd4ef 8515
c19d1205 8516/* ARM V6 ssat (argument parse). */
b99bd4ef 8517
c19d1205
ZW
8518static void
8519do_ssat (void)
8520{
8521 inst.instruction |= inst.operands[0].reg << 12;
8522 inst.instruction |= (inst.operands[1].imm - 1) << 16;
8523 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8524
c19d1205
ZW
8525 if (inst.operands[3].present)
8526 encode_arm_shift (3);
b99bd4ef
NC
8527}
8528
c19d1205 8529/* ARM V6 usat (argument parse). */
b99bd4ef
NC
8530
8531static void
c19d1205 8532do_usat (void)
b99bd4ef 8533{
c19d1205
ZW
8534 inst.instruction |= inst.operands[0].reg << 12;
8535 inst.instruction |= inst.operands[1].imm << 16;
8536 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8537
c19d1205
ZW
8538 if (inst.operands[3].present)
8539 encode_arm_shift (3);
b99bd4ef
NC
8540}
8541
c19d1205 8542/* ARM V6 ssat16 (argument parse). */
09d92015
MM
8543
8544static void
c19d1205 8545do_ssat16 (void)
09d92015 8546{
c19d1205
ZW
8547 inst.instruction |= inst.operands[0].reg << 12;
8548 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
8549 inst.instruction |= inst.operands[2].reg;
09d92015
MM
8550}
8551
c19d1205
ZW
8552static void
8553do_usat16 (void)
a737bd4d 8554{
c19d1205
ZW
8555 inst.instruction |= inst.operands[0].reg << 12;
8556 inst.instruction |= inst.operands[1].imm << 16;
8557 inst.instruction |= inst.operands[2].reg;
8558}
a737bd4d 8559
c19d1205
ZW
8560/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
8561 preserving the other bits.
a737bd4d 8562
c19d1205
ZW
8563 setend <endian_specifier>, where <endian_specifier> is either
8564 BE or LE. */
a737bd4d 8565
c19d1205
ZW
8566static void
8567do_setend (void)
8568{
12e37cbc
MGD
8569 if (warn_on_deprecated
8570 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
8571 as_warn (_("setend use is deprecated for ARMv8"));
8572
c19d1205
ZW
8573 if (inst.operands[0].imm)
8574 inst.instruction |= 0x200;
a737bd4d
NC
8575}
8576
8577static void
c19d1205 8578do_shift (void)
a737bd4d 8579{
c19d1205
ZW
8580 unsigned int Rm = (inst.operands[1].present
8581 ? inst.operands[1].reg
8582 : inst.operands[0].reg);
a737bd4d 8583
c19d1205
ZW
8584 inst.instruction |= inst.operands[0].reg << 12;
8585 inst.instruction |= Rm;
8586 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 8587 {
c19d1205
ZW
8588 inst.instruction |= inst.operands[2].reg << 8;
8589 inst.instruction |= SHIFT_BY_REG;
94342ec3
NC
8590 /* PR 12854: Error on extraneous shifts. */
8591 constraint (inst.operands[2].shifted,
8592 _("extraneous shift as part of operand to shift insn"));
a737bd4d
NC
8593 }
8594 else
c19d1205 8595 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
8596}
8597
09d92015 8598static void
3eb17e6b 8599do_smc (void)
09d92015 8600{
3eb17e6b 8601 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 8602 inst.reloc.pc_rel = 0;
09d92015
MM
8603}
8604
90ec0d68
MGD
8605static void
8606do_hvc (void)
8607{
8608 inst.reloc.type = BFD_RELOC_ARM_HVC;
8609 inst.reloc.pc_rel = 0;
8610}
8611
09d92015 8612static void
c19d1205 8613do_swi (void)
09d92015 8614{
c19d1205
ZW
8615 inst.reloc.type = BFD_RELOC_ARM_SWI;
8616 inst.reloc.pc_rel = 0;
09d92015
MM
8617}
8618
c19d1205
ZW
8619/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
8620 SMLAxy{cond} Rd,Rm,Rs,Rn
8621 SMLAWy{cond} Rd,Rm,Rs,Rn
8622 Error if any register is R15. */
e16bb312 8623
c19d1205
ZW
8624static void
8625do_smla (void)
e16bb312 8626{
c19d1205
ZW
8627 inst.instruction |= inst.operands[0].reg << 16;
8628 inst.instruction |= inst.operands[1].reg;
8629 inst.instruction |= inst.operands[2].reg << 8;
8630 inst.instruction |= inst.operands[3].reg << 12;
8631}
a737bd4d 8632
c19d1205
ZW
8633/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
8634 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
8635 Error if any register is R15.
8636 Warning if Rdlo == Rdhi. */
a737bd4d 8637
c19d1205
ZW
8638static void
8639do_smlal (void)
8640{
8641 inst.instruction |= inst.operands[0].reg << 12;
8642 inst.instruction |= inst.operands[1].reg << 16;
8643 inst.instruction |= inst.operands[2].reg;
8644 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 8645
c19d1205
ZW
8646 if (inst.operands[0].reg == inst.operands[1].reg)
8647 as_tsktsk (_("rdhi and rdlo must be different"));
8648}
a737bd4d 8649
c19d1205
ZW
8650/* ARM V5E (El Segundo) signed-multiply (argument parse)
8651 SMULxy{cond} Rd,Rm,Rs
8652 Error if any register is R15. */
a737bd4d 8653
c19d1205
ZW
8654static void
8655do_smul (void)
8656{
8657 inst.instruction |= inst.operands[0].reg << 16;
8658 inst.instruction |= inst.operands[1].reg;
8659 inst.instruction |= inst.operands[2].reg << 8;
8660}
a737bd4d 8661
b6702015
PB
8662/* ARM V6 srs (argument parse). The variable fields in the encoding are
8663 the same for both ARM and Thumb-2. */
a737bd4d 8664
c19d1205
ZW
8665static void
8666do_srs (void)
8667{
b6702015
PB
8668 int reg;
8669
8670 if (inst.operands[0].present)
8671 {
8672 reg = inst.operands[0].reg;
fdfde340 8673 constraint (reg != REG_SP, _("SRS base register must be r13"));
b6702015
PB
8674 }
8675 else
fdfde340 8676 reg = REG_SP;
b6702015
PB
8677
8678 inst.instruction |= reg << 16;
8679 inst.instruction |= inst.operands[1].imm;
8680 if (inst.operands[0].writeback || inst.operands[1].writeback)
c19d1205
ZW
8681 inst.instruction |= WRITE_BACK;
8682}
a737bd4d 8683
c19d1205 8684/* ARM V6 strex (argument parse). */
a737bd4d 8685
c19d1205
ZW
8686static void
8687do_strex (void)
8688{
8689 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8690 || inst.operands[2].postind || inst.operands[2].writeback
8691 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
8692 || inst.operands[2].negative
8693 /* See comment in do_ldrex(). */
8694 || (inst.operands[2].reg == REG_PC),
8695 BAD_ADDR_MODE);
a737bd4d 8696
c19d1205
ZW
8697 constraint (inst.operands[0].reg == inst.operands[1].reg
8698 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 8699
c19d1205
ZW
8700 constraint (inst.reloc.exp.X_op != O_constant
8701 || inst.reloc.exp.X_add_number != 0,
8702 _("offset must be zero in ARM encoding"));
a737bd4d 8703
c19d1205
ZW
8704 inst.instruction |= inst.operands[0].reg << 12;
8705 inst.instruction |= inst.operands[1].reg;
8706 inst.instruction |= inst.operands[2].reg << 16;
8707 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
8708}
8709
877807f8
NC
8710static void
8711do_t_strexbh (void)
8712{
8713 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8714 || inst.operands[2].postind || inst.operands[2].writeback
8715 || inst.operands[2].immisreg || inst.operands[2].shifted
8716 || inst.operands[2].negative,
8717 BAD_ADDR_MODE);
8718
8719 constraint (inst.operands[0].reg == inst.operands[1].reg
8720 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8721
8722 do_rm_rd_rn ();
8723}
8724
e16bb312 8725static void
c19d1205 8726do_strexd (void)
e16bb312 8727{
c19d1205
ZW
8728 constraint (inst.operands[1].reg % 2 != 0,
8729 _("even register required"));
8730 constraint (inst.operands[2].present
8731 && inst.operands[2].reg != inst.operands[1].reg + 1,
8732 _("can only store two consecutive registers"));
8733 /* If op 2 were present and equal to PC, this function wouldn't
8734 have been called in the first place. */
8735 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 8736
c19d1205
ZW
8737 constraint (inst.operands[0].reg == inst.operands[1].reg
8738 || inst.operands[0].reg == inst.operands[1].reg + 1
8739 || inst.operands[0].reg == inst.operands[3].reg,
8740 BAD_OVERLAP);
e16bb312 8741
c19d1205
ZW
8742 inst.instruction |= inst.operands[0].reg << 12;
8743 inst.instruction |= inst.operands[1].reg;
8744 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
8745}
8746
9eb6c0f1
MGD
8747/* ARM V8 STRL. */
8748static void
4b8c8c02 8749do_stlex (void)
9eb6c0f1
MGD
8750{
8751 constraint (inst.operands[0].reg == inst.operands[1].reg
8752 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8753
8754 do_rd_rm_rn ();
8755}
8756
8757static void
4b8c8c02 8758do_t_stlex (void)
9eb6c0f1
MGD
8759{
8760 constraint (inst.operands[0].reg == inst.operands[1].reg
8761 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8762
8763 do_rm_rd_rn ();
8764}
8765
c19d1205
ZW
8766/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
8767 extends it to 32-bits, and adds the result to a value in another
8768 register. You can specify a rotation by 0, 8, 16, or 24 bits
8769 before extracting the 16-bit value.
8770 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
8771 Condition defaults to COND_ALWAYS.
8772 Error if any register uses R15. */
8773
e16bb312 8774static void
c19d1205 8775do_sxtah (void)
e16bb312 8776{
c19d1205
ZW
8777 inst.instruction |= inst.operands[0].reg << 12;
8778 inst.instruction |= inst.operands[1].reg << 16;
8779 inst.instruction |= inst.operands[2].reg;
8780 inst.instruction |= inst.operands[3].imm << 10;
8781}
e16bb312 8782
c19d1205 8783/* ARM V6 SXTH.
e16bb312 8784
c19d1205
ZW
8785 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
8786 Condition defaults to COND_ALWAYS.
8787 Error if any register uses R15. */
e16bb312
NC
8788
8789static void
c19d1205 8790do_sxth (void)
e16bb312 8791{
c19d1205
ZW
8792 inst.instruction |= inst.operands[0].reg << 12;
8793 inst.instruction |= inst.operands[1].reg;
8794 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 8795}
c19d1205
ZW
8796\f
8797/* VFP instructions. In a logical order: SP variant first, monad
8798 before dyad, arithmetic then move then load/store. */
e16bb312
NC
8799
8800static void
c19d1205 8801do_vfp_sp_monadic (void)
e16bb312 8802{
5287ad62
JB
8803 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8804 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8805}
8806
8807static void
c19d1205 8808do_vfp_sp_dyadic (void)
e16bb312 8809{
5287ad62
JB
8810 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8811 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
8812 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8813}
8814
8815static void
c19d1205 8816do_vfp_sp_compare_z (void)
e16bb312 8817{
5287ad62 8818 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
8819}
8820
8821static void
c19d1205 8822do_vfp_dp_sp_cvt (void)
e16bb312 8823{
5287ad62
JB
8824 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8825 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8826}
8827
8828static void
c19d1205 8829do_vfp_sp_dp_cvt (void)
e16bb312 8830{
5287ad62
JB
8831 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8832 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
8833}
8834
8835static void
c19d1205 8836do_vfp_reg_from_sp (void)
e16bb312 8837{
c19d1205 8838 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 8839 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
8840}
8841
8842static void
c19d1205 8843do_vfp_reg2_from_sp2 (void)
e16bb312 8844{
c19d1205
ZW
8845 constraint (inst.operands[2].imm != 2,
8846 _("only two consecutive VFP SP registers allowed here"));
8847 inst.instruction |= inst.operands[0].reg << 12;
8848 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 8849 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8850}
8851
8852static void
c19d1205 8853do_vfp_sp_from_reg (void)
e16bb312 8854{
5287ad62 8855 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 8856 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
8857}
8858
8859static void
c19d1205 8860do_vfp_sp2_from_reg2 (void)
e16bb312 8861{
c19d1205
ZW
8862 constraint (inst.operands[0].imm != 2,
8863 _("only two consecutive VFP SP registers allowed here"));
5287ad62 8864 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
8865 inst.instruction |= inst.operands[1].reg << 12;
8866 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
8867}
8868
8869static void
c19d1205 8870do_vfp_sp_ldst (void)
e16bb312 8871{
5287ad62 8872 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 8873 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8874}
8875
8876static void
c19d1205 8877do_vfp_dp_ldst (void)
e16bb312 8878{
5287ad62 8879 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 8880 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8881}
8882
c19d1205 8883
e16bb312 8884static void
c19d1205 8885vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8886{
c19d1205
ZW
8887 if (inst.operands[0].writeback)
8888 inst.instruction |= WRITE_BACK;
8889 else
8890 constraint (ldstm_type != VFP_LDSTMIA,
8891 _("this addressing mode requires base-register writeback"));
8892 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8893 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 8894 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
8895}
8896
8897static void
c19d1205 8898vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8899{
c19d1205 8900 int count;
e16bb312 8901
c19d1205
ZW
8902 if (inst.operands[0].writeback)
8903 inst.instruction |= WRITE_BACK;
8904 else
8905 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
8906 _("this addressing mode requires base-register writeback"));
e16bb312 8907
c19d1205 8908 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8909 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 8910
c19d1205
ZW
8911 count = inst.operands[1].imm << 1;
8912 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
8913 count += 1;
e16bb312 8914
c19d1205 8915 inst.instruction |= count;
e16bb312
NC
8916}
8917
8918static void
c19d1205 8919do_vfp_sp_ldstmia (void)
e16bb312 8920{
c19d1205 8921 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8922}
8923
8924static void
c19d1205 8925do_vfp_sp_ldstmdb (void)
e16bb312 8926{
c19d1205 8927 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8928}
8929
8930static void
c19d1205 8931do_vfp_dp_ldstmia (void)
e16bb312 8932{
c19d1205 8933 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8934}
8935
8936static void
c19d1205 8937do_vfp_dp_ldstmdb (void)
e16bb312 8938{
c19d1205 8939 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8940}
8941
8942static void
c19d1205 8943do_vfp_xp_ldstmia (void)
e16bb312 8944{
c19d1205
ZW
8945 vfp_dp_ldstm (VFP_LDSTMIAX);
8946}
e16bb312 8947
c19d1205
ZW
8948static void
8949do_vfp_xp_ldstmdb (void)
8950{
8951 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 8952}
5287ad62
JB
8953
8954static void
8955do_vfp_dp_rd_rm (void)
8956{
8957 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8958 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
8959}
8960
8961static void
8962do_vfp_dp_rn_rd (void)
8963{
8964 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
8965 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8966}
8967
8968static void
8969do_vfp_dp_rd_rn (void)
8970{
8971 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8972 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8973}
8974
8975static void
8976do_vfp_dp_rd_rn_rm (void)
8977{
8978 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8979 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8980 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
8981}
8982
8983static void
8984do_vfp_dp_rd (void)
8985{
8986 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8987}
8988
8989static void
8990do_vfp_dp_rm_rd_rn (void)
8991{
8992 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
8993 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8994 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
8995}
8996
8997/* VFPv3 instructions. */
8998static void
8999do_vfp_sp_const (void)
9000{
9001 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
00249aaa
PB
9002 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9003 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9004}
9005
9006static void
9007do_vfp_dp_const (void)
9008{
9009 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
00249aaa
PB
9010 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9011 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9012}
9013
9014static void
9015vfp_conv (int srcsize)
9016{
5f1af56b
MGD
9017 int immbits = srcsize - inst.operands[1].imm;
9018
fa94de6b
RM
9019 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
9020 {
5f1af56b
MGD
9021 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
9022 i.e. immbits must be in range 0 - 16. */
9023 inst.error = _("immediate value out of range, expected range [0, 16]");
9024 return;
9025 }
fa94de6b 9026 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
5f1af56b
MGD
9027 {
9028 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
9029 i.e. immbits must be in range 0 - 31. */
9030 inst.error = _("immediate value out of range, expected range [1, 32]");
9031 return;
9032 }
9033
5287ad62
JB
9034 inst.instruction |= (immbits & 1) << 5;
9035 inst.instruction |= (immbits >> 1);
9036}
9037
9038static void
9039do_vfp_sp_conv_16 (void)
9040{
9041 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9042 vfp_conv (16);
9043}
9044
9045static void
9046do_vfp_dp_conv_16 (void)
9047{
9048 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9049 vfp_conv (16);
9050}
9051
9052static void
9053do_vfp_sp_conv_32 (void)
9054{
9055 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9056 vfp_conv (32);
9057}
9058
9059static void
9060do_vfp_dp_conv_32 (void)
9061{
9062 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9063 vfp_conv (32);
9064}
c19d1205
ZW
9065\f
9066/* FPA instructions. Also in a logical order. */
e16bb312 9067
c19d1205
ZW
9068static void
9069do_fpa_cmp (void)
9070{
9071 inst.instruction |= inst.operands[0].reg << 16;
9072 inst.instruction |= inst.operands[1].reg;
9073}
b99bd4ef
NC
9074
9075static void
c19d1205 9076do_fpa_ldmstm (void)
b99bd4ef 9077{
c19d1205
ZW
9078 inst.instruction |= inst.operands[0].reg << 12;
9079 switch (inst.operands[1].imm)
9080 {
9081 case 1: inst.instruction |= CP_T_X; break;
9082 case 2: inst.instruction |= CP_T_Y; break;
9083 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
9084 case 4: break;
9085 default: abort ();
9086 }
b99bd4ef 9087
c19d1205
ZW
9088 if (inst.instruction & (PRE_INDEX | INDEX_UP))
9089 {
9090 /* The instruction specified "ea" or "fd", so we can only accept
9091 [Rn]{!}. The instruction does not really support stacking or
9092 unstacking, so we have to emulate these by setting appropriate
9093 bits and offsets. */
9094 constraint (inst.reloc.exp.X_op != O_constant
9095 || inst.reloc.exp.X_add_number != 0,
9096 _("this instruction does not support indexing"));
b99bd4ef 9097
c19d1205
ZW
9098 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
9099 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 9100
c19d1205
ZW
9101 if (!(inst.instruction & INDEX_UP))
9102 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 9103
c19d1205
ZW
9104 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
9105 {
9106 inst.operands[2].preind = 0;
9107 inst.operands[2].postind = 1;
9108 }
9109 }
b99bd4ef 9110
c19d1205 9111 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 9112}
c19d1205
ZW
9113\f
9114/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 9115
c19d1205
ZW
9116static void
9117do_iwmmxt_tandorc (void)
9118{
9119 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
9120}
b99bd4ef 9121
c19d1205
ZW
9122static void
9123do_iwmmxt_textrc (void)
9124{
9125 inst.instruction |= inst.operands[0].reg << 12;
9126 inst.instruction |= inst.operands[1].imm;
9127}
b99bd4ef
NC
9128
9129static void
c19d1205 9130do_iwmmxt_textrm (void)
b99bd4ef 9131{
c19d1205
ZW
9132 inst.instruction |= inst.operands[0].reg << 12;
9133 inst.instruction |= inst.operands[1].reg << 16;
9134 inst.instruction |= inst.operands[2].imm;
9135}
b99bd4ef 9136
c19d1205
ZW
9137static void
9138do_iwmmxt_tinsr (void)
9139{
9140 inst.instruction |= inst.operands[0].reg << 16;
9141 inst.instruction |= inst.operands[1].reg << 12;
9142 inst.instruction |= inst.operands[2].imm;
9143}
b99bd4ef 9144
c19d1205
ZW
9145static void
9146do_iwmmxt_tmia (void)
9147{
9148 inst.instruction |= inst.operands[0].reg << 5;
9149 inst.instruction |= inst.operands[1].reg;
9150 inst.instruction |= inst.operands[2].reg << 12;
9151}
b99bd4ef 9152
c19d1205
ZW
9153static void
9154do_iwmmxt_waligni (void)
9155{
9156 inst.instruction |= inst.operands[0].reg << 12;
9157 inst.instruction |= inst.operands[1].reg << 16;
9158 inst.instruction |= inst.operands[2].reg;
9159 inst.instruction |= inst.operands[3].imm << 20;
9160}
b99bd4ef 9161
2d447fca
JM
9162static void
9163do_iwmmxt_wmerge (void)
9164{
9165 inst.instruction |= inst.operands[0].reg << 12;
9166 inst.instruction |= inst.operands[1].reg << 16;
9167 inst.instruction |= inst.operands[2].reg;
9168 inst.instruction |= inst.operands[3].imm << 21;
9169}
9170
c19d1205
ZW
9171static void
9172do_iwmmxt_wmov (void)
9173{
9174 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
9175 inst.instruction |= inst.operands[0].reg << 12;
9176 inst.instruction |= inst.operands[1].reg << 16;
9177 inst.instruction |= inst.operands[1].reg;
9178}
b99bd4ef 9179
c19d1205
ZW
9180static void
9181do_iwmmxt_wldstbh (void)
9182{
8f06b2d8 9183 int reloc;
c19d1205 9184 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
9185 if (thumb_mode)
9186 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
9187 else
9188 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
9189 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
9190}
9191
c19d1205
ZW
9192static void
9193do_iwmmxt_wldstw (void)
9194{
9195 /* RIWR_RIWC clears .isreg for a control register. */
9196 if (!inst.operands[0].isreg)
9197 {
9198 constraint (inst.cond != COND_ALWAYS, BAD_COND);
9199 inst.instruction |= 0xf0000000;
9200 }
b99bd4ef 9201
c19d1205
ZW
9202 inst.instruction |= inst.operands[0].reg << 12;
9203 encode_arm_cp_address (1, TRUE, TRUE, 0);
9204}
b99bd4ef
NC
9205
9206static void
c19d1205 9207do_iwmmxt_wldstd (void)
b99bd4ef 9208{
c19d1205 9209 inst.instruction |= inst.operands[0].reg << 12;
2d447fca
JM
9210 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
9211 && inst.operands[1].immisreg)
9212 {
9213 inst.instruction &= ~0x1a000ff;
9214 inst.instruction |= (0xf << 28);
9215 if (inst.operands[1].preind)
9216 inst.instruction |= PRE_INDEX;
9217 if (!inst.operands[1].negative)
9218 inst.instruction |= INDEX_UP;
9219 if (inst.operands[1].writeback)
9220 inst.instruction |= WRITE_BACK;
9221 inst.instruction |= inst.operands[1].reg << 16;
9222 inst.instruction |= inst.reloc.exp.X_add_number << 4;
9223 inst.instruction |= inst.operands[1].imm;
9224 }
9225 else
9226 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 9227}
b99bd4ef 9228
c19d1205
ZW
9229static void
9230do_iwmmxt_wshufh (void)
9231{
9232 inst.instruction |= inst.operands[0].reg << 12;
9233 inst.instruction |= inst.operands[1].reg << 16;
9234 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
9235 inst.instruction |= (inst.operands[2].imm & 0x0f);
9236}
b99bd4ef 9237
c19d1205
ZW
9238static void
9239do_iwmmxt_wzero (void)
9240{
9241 /* WZERO reg is an alias for WANDN reg, reg, reg. */
9242 inst.instruction |= inst.operands[0].reg;
9243 inst.instruction |= inst.operands[0].reg << 12;
9244 inst.instruction |= inst.operands[0].reg << 16;
9245}
2d447fca
JM
9246
9247static void
9248do_iwmmxt_wrwrwr_or_imm5 (void)
9249{
9250 if (inst.operands[2].isreg)
9251 do_rd_rn_rm ();
9252 else {
9253 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
9254 _("immediate operand requires iWMMXt2"));
9255 do_rd_rn ();
9256 if (inst.operands[2].imm == 0)
9257 {
9258 switch ((inst.instruction >> 20) & 0xf)
9259 {
9260 case 4:
9261 case 5:
9262 case 6:
5f4273c7 9263 case 7:
2d447fca
JM
9264 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
9265 inst.operands[2].imm = 16;
9266 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
9267 break;
9268 case 8:
9269 case 9:
9270 case 10:
9271 case 11:
9272 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
9273 inst.operands[2].imm = 32;
9274 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
9275 break;
9276 case 12:
9277 case 13:
9278 case 14:
9279 case 15:
9280 {
9281 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
9282 unsigned long wrn;
9283 wrn = (inst.instruction >> 16) & 0xf;
9284 inst.instruction &= 0xff0fff0f;
9285 inst.instruction |= wrn;
9286 /* Bail out here; the instruction is now assembled. */
9287 return;
9288 }
9289 }
9290 }
9291 /* Map 32 -> 0, etc. */
9292 inst.operands[2].imm &= 0x1f;
9293 inst.instruction |= (0xf << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
9294 }
9295}
c19d1205
ZW
9296\f
9297/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
9298 operations first, then control, shift, and load/store. */
b99bd4ef 9299
c19d1205 9300/* Insns like "foo X,Y,Z". */
b99bd4ef 9301
c19d1205
ZW
9302static void
9303do_mav_triple (void)
9304{
9305 inst.instruction |= inst.operands[0].reg << 16;
9306 inst.instruction |= inst.operands[1].reg;
9307 inst.instruction |= inst.operands[2].reg << 12;
9308}
b99bd4ef 9309
c19d1205
ZW
9310/* Insns like "foo W,X,Y,Z".
9311 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 9312
c19d1205
ZW
9313static void
9314do_mav_quad (void)
9315{
9316 inst.instruction |= inst.operands[0].reg << 5;
9317 inst.instruction |= inst.operands[1].reg << 12;
9318 inst.instruction |= inst.operands[2].reg << 16;
9319 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
9320}
9321
c19d1205
ZW
9322/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
9323static void
9324do_mav_dspsc (void)
a737bd4d 9325{
c19d1205
ZW
9326 inst.instruction |= inst.operands[1].reg << 12;
9327}
a737bd4d 9328
c19d1205
ZW
9329/* Maverick shift immediate instructions.
9330 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
9331 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 9332
c19d1205
ZW
9333static void
9334do_mav_shift (void)
9335{
9336 int imm = inst.operands[2].imm;
a737bd4d 9337
c19d1205
ZW
9338 inst.instruction |= inst.operands[0].reg << 12;
9339 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 9340
c19d1205
ZW
9341 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
9342 Bits 5-7 of the insn should have bits 4-6 of the immediate.
9343 Bit 4 should be 0. */
9344 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 9345
c19d1205
ZW
9346 inst.instruction |= imm;
9347}
9348\f
9349/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 9350
c19d1205
ZW
9351/* Xscale multiply-accumulate (argument parse)
9352 MIAcc acc0,Rm,Rs
9353 MIAPHcc acc0,Rm,Rs
9354 MIAxycc acc0,Rm,Rs. */
a737bd4d 9355
c19d1205
ZW
9356static void
9357do_xsc_mia (void)
9358{
9359 inst.instruction |= inst.operands[1].reg;
9360 inst.instruction |= inst.operands[2].reg << 12;
9361}
a737bd4d 9362
c19d1205 9363/* Xscale move-accumulator-register (argument parse)
a737bd4d 9364
c19d1205 9365 MARcc acc0,RdLo,RdHi. */
b99bd4ef 9366
c19d1205
ZW
9367static void
9368do_xsc_mar (void)
9369{
9370 inst.instruction |= inst.operands[1].reg << 12;
9371 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9372}
9373
c19d1205 9374/* Xscale move-register-accumulator (argument parse)
b99bd4ef 9375
c19d1205 9376 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
9377
9378static void
c19d1205 9379do_xsc_mra (void)
b99bd4ef 9380{
c19d1205
ZW
9381 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
9382 inst.instruction |= inst.operands[0].reg << 12;
9383 inst.instruction |= inst.operands[1].reg << 16;
9384}
9385\f
9386/* Encoding functions relevant only to Thumb. */
b99bd4ef 9387
c19d1205
ZW
9388/* inst.operands[i] is a shifted-register operand; encode
9389 it into inst.instruction in the format used by Thumb32. */
9390
9391static void
9392encode_thumb32_shifted_operand (int i)
9393{
9394 unsigned int value = inst.reloc.exp.X_add_number;
9395 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 9396
9c3c69f2
PB
9397 constraint (inst.operands[i].immisreg,
9398 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
9399 inst.instruction |= inst.operands[i].reg;
9400 if (shift == SHIFT_RRX)
9401 inst.instruction |= SHIFT_ROR << 4;
9402 else
b99bd4ef 9403 {
c19d1205
ZW
9404 constraint (inst.reloc.exp.X_op != O_constant,
9405 _("expression too complex"));
9406
9407 constraint (value > 32
9408 || (value == 32 && (shift == SHIFT_LSL
9409 || shift == SHIFT_ROR)),
9410 _("shift expression is too large"));
9411
9412 if (value == 0)
9413 shift = SHIFT_LSL;
9414 else if (value == 32)
9415 value = 0;
9416
9417 inst.instruction |= shift << 4;
9418 inst.instruction |= (value & 0x1c) << 10;
9419 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 9420 }
c19d1205 9421}
b99bd4ef 9422
b99bd4ef 9423
c19d1205
ZW
9424/* inst.operands[i] was set up by parse_address. Encode it into a
9425 Thumb32 format load or store instruction. Reject forms that cannot
9426 be used with such instructions. If is_t is true, reject forms that
9427 cannot be used with a T instruction; if is_d is true, reject forms
5be8be5d
DG
9428 that cannot be used with a D instruction. If it is a store insn,
9429 reject PC in Rn. */
b99bd4ef 9430
c19d1205
ZW
9431static void
9432encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
9433{
5be8be5d 9434 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
c19d1205
ZW
9435
9436 constraint (!inst.operands[i].isreg,
53365c0d 9437 _("Instruction does not support =N addresses"));
b99bd4ef 9438
c19d1205
ZW
9439 inst.instruction |= inst.operands[i].reg << 16;
9440 if (inst.operands[i].immisreg)
b99bd4ef 9441 {
5be8be5d 9442 constraint (is_pc, BAD_PC_ADDRESSING);
c19d1205
ZW
9443 constraint (is_t || is_d, _("cannot use register index with this instruction"));
9444 constraint (inst.operands[i].negative,
9445 _("Thumb does not support negative register indexing"));
9446 constraint (inst.operands[i].postind,
9447 _("Thumb does not support register post-indexing"));
9448 constraint (inst.operands[i].writeback,
9449 _("Thumb does not support register indexing with writeback"));
9450 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
9451 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 9452
f40d1643 9453 inst.instruction |= inst.operands[i].imm;
c19d1205 9454 if (inst.operands[i].shifted)
b99bd4ef 9455 {
c19d1205
ZW
9456 constraint (inst.reloc.exp.X_op != O_constant,
9457 _("expression too complex"));
9c3c69f2
PB
9458 constraint (inst.reloc.exp.X_add_number < 0
9459 || inst.reloc.exp.X_add_number > 3,
c19d1205 9460 _("shift out of range"));
9c3c69f2 9461 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
9462 }
9463 inst.reloc.type = BFD_RELOC_UNUSED;
9464 }
9465 else if (inst.operands[i].preind)
9466 {
5be8be5d 9467 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
f40d1643 9468 constraint (is_t && inst.operands[i].writeback,
c19d1205 9469 _("cannot use writeback with this instruction"));
5be8be5d
DG
9470 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0)
9471 && !inst.reloc.pc_rel, BAD_PC_ADDRESSING);
c19d1205
ZW
9472
9473 if (is_d)
9474 {
9475 inst.instruction |= 0x01000000;
9476 if (inst.operands[i].writeback)
9477 inst.instruction |= 0x00200000;
b99bd4ef 9478 }
c19d1205 9479 else
b99bd4ef 9480 {
c19d1205
ZW
9481 inst.instruction |= 0x00000c00;
9482 if (inst.operands[i].writeback)
9483 inst.instruction |= 0x00000100;
b99bd4ef 9484 }
c19d1205 9485 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 9486 }
c19d1205 9487 else if (inst.operands[i].postind)
b99bd4ef 9488 {
9c2799c2 9489 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
9490 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
9491 constraint (is_t, _("cannot use post-indexing with this instruction"));
9492
9493 if (is_d)
9494 inst.instruction |= 0x00200000;
9495 else
9496 inst.instruction |= 0x00000900;
9497 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
9498 }
9499 else /* unindexed - only for coprocessor */
9500 inst.error = _("instruction does not accept unindexed addressing");
9501}
9502
9503/* Table of Thumb instructions which exist in both 16- and 32-bit
9504 encodings (the latter only in post-V6T2 cores). The index is the
9505 value used in the insns table below. When there is more than one
9506 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
9507 holds variant (1).
9508 Also contains several pseudo-instructions used during relaxation. */
c19d1205 9509#define T16_32_TAB \
21d799b5
NC
9510 X(_adc, 4140, eb400000), \
9511 X(_adcs, 4140, eb500000), \
9512 X(_add, 1c00, eb000000), \
9513 X(_adds, 1c00, eb100000), \
9514 X(_addi, 0000, f1000000), \
9515 X(_addis, 0000, f1100000), \
9516 X(_add_pc,000f, f20f0000), \
9517 X(_add_sp,000d, f10d0000), \
9518 X(_adr, 000f, f20f0000), \
9519 X(_and, 4000, ea000000), \
9520 X(_ands, 4000, ea100000), \
9521 X(_asr, 1000, fa40f000), \
9522 X(_asrs, 1000, fa50f000), \
9523 X(_b, e000, f000b000), \
9524 X(_bcond, d000, f0008000), \
9525 X(_bic, 4380, ea200000), \
9526 X(_bics, 4380, ea300000), \
9527 X(_cmn, 42c0, eb100f00), \
9528 X(_cmp, 2800, ebb00f00), \
9529 X(_cpsie, b660, f3af8400), \
9530 X(_cpsid, b670, f3af8600), \
9531 X(_cpy, 4600, ea4f0000), \
9532 X(_dec_sp,80dd, f1ad0d00), \
9533 X(_eor, 4040, ea800000), \
9534 X(_eors, 4040, ea900000), \
9535 X(_inc_sp,00dd, f10d0d00), \
9536 X(_ldmia, c800, e8900000), \
9537 X(_ldr, 6800, f8500000), \
9538 X(_ldrb, 7800, f8100000), \
9539 X(_ldrh, 8800, f8300000), \
9540 X(_ldrsb, 5600, f9100000), \
9541 X(_ldrsh, 5e00, f9300000), \
9542 X(_ldr_pc,4800, f85f0000), \
9543 X(_ldr_pc2,4800, f85f0000), \
9544 X(_ldr_sp,9800, f85d0000), \
9545 X(_lsl, 0000, fa00f000), \
9546 X(_lsls, 0000, fa10f000), \
9547 X(_lsr, 0800, fa20f000), \
9548 X(_lsrs, 0800, fa30f000), \
9549 X(_mov, 2000, ea4f0000), \
9550 X(_movs, 2000, ea5f0000), \
9551 X(_mul, 4340, fb00f000), \
9552 X(_muls, 4340, ffffffff), /* no 32b muls */ \
9553 X(_mvn, 43c0, ea6f0000), \
9554 X(_mvns, 43c0, ea7f0000), \
9555 X(_neg, 4240, f1c00000), /* rsb #0 */ \
9556 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
9557 X(_orr, 4300, ea400000), \
9558 X(_orrs, 4300, ea500000), \
9559 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
9560 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
9561 X(_rev, ba00, fa90f080), \
9562 X(_rev16, ba40, fa90f090), \
9563 X(_revsh, bac0, fa90f0b0), \
9564 X(_ror, 41c0, fa60f000), \
9565 X(_rors, 41c0, fa70f000), \
9566 X(_sbc, 4180, eb600000), \
9567 X(_sbcs, 4180, eb700000), \
9568 X(_stmia, c000, e8800000), \
9569 X(_str, 6000, f8400000), \
9570 X(_strb, 7000, f8000000), \
9571 X(_strh, 8000, f8200000), \
9572 X(_str_sp,9000, f84d0000), \
9573 X(_sub, 1e00, eba00000), \
9574 X(_subs, 1e00, ebb00000), \
9575 X(_subi, 8000, f1a00000), \
9576 X(_subis, 8000, f1b00000), \
9577 X(_sxtb, b240, fa4ff080), \
9578 X(_sxth, b200, fa0ff080), \
9579 X(_tst, 4200, ea100f00), \
9580 X(_uxtb, b2c0, fa5ff080), \
9581 X(_uxth, b280, fa1ff080), \
9582 X(_nop, bf00, f3af8000), \
9583 X(_yield, bf10, f3af8001), \
9584 X(_wfe, bf20, f3af8002), \
9585 X(_wfi, bf30, f3af8003), \
53c4b28b
MGD
9586 X(_sev, bf40, f3af8004), \
9587 X(_sevl, bf50, f3af8005)
c19d1205
ZW
9588
9589/* To catch errors in encoding functions, the codes are all offset by
9590 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
9591 as 16-bit instructions. */
21d799b5 9592#define X(a,b,c) T_MNEM##a
c19d1205
ZW
9593enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
9594#undef X
9595
9596#define X(a,b,c) 0x##b
9597static const unsigned short thumb_op16[] = { T16_32_TAB };
9598#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
9599#undef X
9600
9601#define X(a,b,c) 0x##c
9602static const unsigned int thumb_op32[] = { T16_32_TAB };
c921be7d
NC
9603#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
9604#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
c19d1205
ZW
9605#undef X
9606#undef T16_32_TAB
9607
9608/* Thumb instruction encoders, in alphabetical order. */
9609
92e90b6e 9610/* ADDW or SUBW. */
c921be7d 9611
92e90b6e
PB
9612static void
9613do_t_add_sub_w (void)
9614{
9615 int Rd, Rn;
9616
9617 Rd = inst.operands[0].reg;
9618 Rn = inst.operands[1].reg;
9619
539d4391
NC
9620 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
9621 is the SP-{plus,minus}-immediate form of the instruction. */
9622 if (Rn == REG_SP)
9623 constraint (Rd == REG_PC, BAD_PC);
9624 else
9625 reject_bad_reg (Rd);
fdfde340 9626
92e90b6e
PB
9627 inst.instruction |= (Rn << 16) | (Rd << 8);
9628 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9629}
9630
c19d1205
ZW
9631/* Parse an add or subtract instruction. We get here with inst.instruction
9632 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
9633
9634static void
9635do_t_add_sub (void)
9636{
9637 int Rd, Rs, Rn;
9638
9639 Rd = inst.operands[0].reg;
9640 Rs = (inst.operands[1].present
9641 ? inst.operands[1].reg /* Rd, Rs, foo */
9642 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9643
e07e6e58
NC
9644 if (Rd == REG_PC)
9645 set_it_insn_type_last ();
9646
c19d1205
ZW
9647 if (unified_syntax)
9648 {
0110f2b8
PB
9649 bfd_boolean flags;
9650 bfd_boolean narrow;
9651 int opcode;
9652
9653 flags = (inst.instruction == T_MNEM_adds
9654 || inst.instruction == T_MNEM_subs);
9655 if (flags)
e07e6e58 9656 narrow = !in_it_block ();
0110f2b8 9657 else
e07e6e58 9658 narrow = in_it_block ();
c19d1205 9659 if (!inst.operands[2].isreg)
b99bd4ef 9660 {
16805f35
PB
9661 int add;
9662
fdfde340
JM
9663 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9664
16805f35
PB
9665 add = (inst.instruction == T_MNEM_add
9666 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
9667 opcode = 0;
9668 if (inst.size_req != 4)
9669 {
0110f2b8
PB
9670 /* Attempt to use a narrow opcode, with relaxation if
9671 appropriate. */
9672 if (Rd == REG_SP && Rs == REG_SP && !flags)
9673 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
9674 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
9675 opcode = T_MNEM_add_sp;
9676 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
9677 opcode = T_MNEM_add_pc;
9678 else if (Rd <= 7 && Rs <= 7 && narrow)
9679 {
9680 if (flags)
9681 opcode = add ? T_MNEM_addis : T_MNEM_subis;
9682 else
9683 opcode = add ? T_MNEM_addi : T_MNEM_subi;
9684 }
9685 if (opcode)
9686 {
9687 inst.instruction = THUMB_OP16(opcode);
9688 inst.instruction |= (Rd << 4) | Rs;
9689 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9690 if (inst.size_req != 2)
9691 inst.relax = opcode;
9692 }
9693 else
9694 constraint (inst.size_req == 2, BAD_HIREG);
9695 }
9696 if (inst.size_req == 4
9697 || (inst.size_req != 2 && !opcode))
9698 {
efd81785
PB
9699 if (Rd == REG_PC)
9700 {
fdfde340 9701 constraint (add, BAD_PC);
efd81785
PB
9702 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
9703 _("only SUBS PC, LR, #const allowed"));
9704 constraint (inst.reloc.exp.X_op != O_constant,
9705 _("expression too complex"));
9706 constraint (inst.reloc.exp.X_add_number < 0
9707 || inst.reloc.exp.X_add_number > 0xff,
9708 _("immediate value out of range"));
9709 inst.instruction = T2_SUBS_PC_LR
9710 | inst.reloc.exp.X_add_number;
9711 inst.reloc.type = BFD_RELOC_UNUSED;
9712 return;
9713 }
9714 else if (Rs == REG_PC)
16805f35
PB
9715 {
9716 /* Always use addw/subw. */
9717 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
9718 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9719 }
9720 else
9721 {
9722 inst.instruction = THUMB_OP32 (inst.instruction);
9723 inst.instruction = (inst.instruction & 0xe1ffffff)
9724 | 0x10000000;
9725 if (flags)
9726 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9727 else
9728 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
9729 }
dc4503c6
PB
9730 inst.instruction |= Rd << 8;
9731 inst.instruction |= Rs << 16;
0110f2b8 9732 }
b99bd4ef 9733 }
c19d1205
ZW
9734 else
9735 {
5f4cb198
NC
9736 unsigned int value = inst.reloc.exp.X_add_number;
9737 unsigned int shift = inst.operands[2].shift_kind;
9738
c19d1205
ZW
9739 Rn = inst.operands[2].reg;
9740 /* See if we can do this with a 16-bit instruction. */
9741 if (!inst.operands[2].shifted && inst.size_req != 4)
9742 {
e27ec89e
PB
9743 if (Rd > 7 || Rs > 7 || Rn > 7)
9744 narrow = FALSE;
9745
9746 if (narrow)
c19d1205 9747 {
e27ec89e
PB
9748 inst.instruction = ((inst.instruction == T_MNEM_adds
9749 || inst.instruction == T_MNEM_add)
c19d1205
ZW
9750 ? T_OPCODE_ADD_R3
9751 : T_OPCODE_SUB_R3);
9752 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
9753 return;
9754 }
b99bd4ef 9755
7e806470 9756 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
c19d1205 9757 {
7e806470
PB
9758 /* Thumb-1 cores (except v6-M) require at least one high
9759 register in a narrow non flag setting add. */
9760 if (Rd > 7 || Rn > 7
9761 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
9762 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
c19d1205 9763 {
7e806470
PB
9764 if (Rd == Rn)
9765 {
9766 Rn = Rs;
9767 Rs = Rd;
9768 }
c19d1205
ZW
9769 inst.instruction = T_OPCODE_ADD_HI;
9770 inst.instruction |= (Rd & 8) << 4;
9771 inst.instruction |= (Rd & 7);
9772 inst.instruction |= Rn << 3;
9773 return;
9774 }
c19d1205
ZW
9775 }
9776 }
c921be7d 9777
fdfde340
JM
9778 constraint (Rd == REG_PC, BAD_PC);
9779 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9780 constraint (Rs == REG_PC, BAD_PC);
9781 reject_bad_reg (Rn);
9782
c19d1205
ZW
9783 /* If we get here, it can't be done in 16 bits. */
9784 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
9785 _("shift must be constant"));
9786 inst.instruction = THUMB_OP32 (inst.instruction);
9787 inst.instruction |= Rd << 8;
9788 inst.instruction |= Rs << 16;
5f4cb198
NC
9789 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
9790 _("shift value over 3 not allowed in thumb mode"));
9791 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
9792 _("only LSL shift allowed in thumb mode"));
c19d1205
ZW
9793 encode_thumb32_shifted_operand (2);
9794 }
9795 }
9796 else
9797 {
9798 constraint (inst.instruction == T_MNEM_adds
9799 || inst.instruction == T_MNEM_subs,
9800 BAD_THUMB32);
b99bd4ef 9801
c19d1205 9802 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 9803 {
c19d1205
ZW
9804 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
9805 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
9806 BAD_HIREG);
9807
9808 inst.instruction = (inst.instruction == T_MNEM_add
9809 ? 0x0000 : 0x8000);
9810 inst.instruction |= (Rd << 4) | Rs;
9811 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
9812 return;
9813 }
9814
c19d1205
ZW
9815 Rn = inst.operands[2].reg;
9816 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 9817
c19d1205
ZW
9818 /* We now have Rd, Rs, and Rn set to registers. */
9819 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 9820 {
c19d1205
ZW
9821 /* Can't do this for SUB. */
9822 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
9823 inst.instruction = T_OPCODE_ADD_HI;
9824 inst.instruction |= (Rd & 8) << 4;
9825 inst.instruction |= (Rd & 7);
9826 if (Rs == Rd)
9827 inst.instruction |= Rn << 3;
9828 else if (Rn == Rd)
9829 inst.instruction |= Rs << 3;
9830 else
9831 constraint (1, _("dest must overlap one source register"));
9832 }
9833 else
9834 {
9835 inst.instruction = (inst.instruction == T_MNEM_add
9836 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
9837 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 9838 }
b99bd4ef 9839 }
b99bd4ef
NC
9840}
9841
c19d1205
ZW
9842static void
9843do_t_adr (void)
9844{
fdfde340
JM
9845 unsigned Rd;
9846
9847 Rd = inst.operands[0].reg;
9848 reject_bad_reg (Rd);
9849
9850 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
0110f2b8
PB
9851 {
9852 /* Defer to section relaxation. */
9853 inst.relax = inst.instruction;
9854 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 9855 inst.instruction |= Rd << 4;
0110f2b8
PB
9856 }
9857 else if (unified_syntax && inst.size_req != 2)
e9f89963 9858 {
0110f2b8 9859 /* Generate a 32-bit opcode. */
e9f89963 9860 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 9861 inst.instruction |= Rd << 8;
e9f89963
PB
9862 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
9863 inst.reloc.pc_rel = 1;
9864 }
9865 else
9866 {
0110f2b8 9867 /* Generate a 16-bit opcode. */
e9f89963
PB
9868 inst.instruction = THUMB_OP16 (inst.instruction);
9869 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9870 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
9871 inst.reloc.pc_rel = 1;
b99bd4ef 9872
fdfde340 9873 inst.instruction |= Rd << 4;
e9f89963 9874 }
c19d1205 9875}
b99bd4ef 9876
c19d1205
ZW
9877/* Arithmetic instructions for which there is just one 16-bit
9878 instruction encoding, and it allows only two low registers.
9879 For maximal compatibility with ARM syntax, we allow three register
9880 operands even when Thumb-32 instructions are not available, as long
9881 as the first two are identical. For instance, both "sbc r0,r1" and
9882 "sbc r0,r0,r1" are allowed. */
b99bd4ef 9883static void
c19d1205 9884do_t_arit3 (void)
b99bd4ef 9885{
c19d1205 9886 int Rd, Rs, Rn;
b99bd4ef 9887
c19d1205
ZW
9888 Rd = inst.operands[0].reg;
9889 Rs = (inst.operands[1].present
9890 ? inst.operands[1].reg /* Rd, Rs, foo */
9891 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9892 Rn = inst.operands[2].reg;
b99bd4ef 9893
fdfde340
JM
9894 reject_bad_reg (Rd);
9895 reject_bad_reg (Rs);
9896 if (inst.operands[2].isreg)
9897 reject_bad_reg (Rn);
9898
c19d1205 9899 if (unified_syntax)
b99bd4ef 9900 {
c19d1205
ZW
9901 if (!inst.operands[2].isreg)
9902 {
9903 /* For an immediate, we always generate a 32-bit opcode;
9904 section relaxation will shrink it later if possible. */
9905 inst.instruction = THUMB_OP32 (inst.instruction);
9906 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9907 inst.instruction |= Rd << 8;
9908 inst.instruction |= Rs << 16;
9909 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9910 }
9911 else
9912 {
e27ec89e
PB
9913 bfd_boolean narrow;
9914
c19d1205 9915 /* See if we can do this with a 16-bit instruction. */
e27ec89e 9916 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 9917 narrow = !in_it_block ();
e27ec89e 9918 else
e07e6e58 9919 narrow = in_it_block ();
e27ec89e
PB
9920
9921 if (Rd > 7 || Rn > 7 || Rs > 7)
9922 narrow = FALSE;
9923 if (inst.operands[2].shifted)
9924 narrow = FALSE;
9925 if (inst.size_req == 4)
9926 narrow = FALSE;
9927
9928 if (narrow
c19d1205
ZW
9929 && Rd == Rs)
9930 {
9931 inst.instruction = THUMB_OP16 (inst.instruction);
9932 inst.instruction |= Rd;
9933 inst.instruction |= Rn << 3;
9934 return;
9935 }
b99bd4ef 9936
c19d1205
ZW
9937 /* If we get here, it can't be done in 16 bits. */
9938 constraint (inst.operands[2].shifted
9939 && inst.operands[2].immisreg,
9940 _("shift must be constant"));
9941 inst.instruction = THUMB_OP32 (inst.instruction);
9942 inst.instruction |= Rd << 8;
9943 inst.instruction |= Rs << 16;
9944 encode_thumb32_shifted_operand (2);
9945 }
a737bd4d 9946 }
c19d1205 9947 else
b99bd4ef 9948 {
c19d1205
ZW
9949 /* On its face this is a lie - the instruction does set the
9950 flags. However, the only supported mnemonic in this mode
9951 says it doesn't. */
9952 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 9953
c19d1205
ZW
9954 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
9955 _("unshifted register required"));
9956 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
9957 constraint (Rd != Rs,
9958 _("dest and source1 must be the same register"));
a737bd4d 9959
c19d1205
ZW
9960 inst.instruction = THUMB_OP16 (inst.instruction);
9961 inst.instruction |= Rd;
9962 inst.instruction |= Rn << 3;
b99bd4ef 9963 }
a737bd4d 9964}
b99bd4ef 9965
c19d1205
ZW
9966/* Similarly, but for instructions where the arithmetic operation is
9967 commutative, so we can allow either of them to be different from
9968 the destination operand in a 16-bit instruction. For instance, all
9969 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
9970 accepted. */
9971static void
9972do_t_arit3c (void)
a737bd4d 9973{
c19d1205 9974 int Rd, Rs, Rn;
b99bd4ef 9975
c19d1205
ZW
9976 Rd = inst.operands[0].reg;
9977 Rs = (inst.operands[1].present
9978 ? inst.operands[1].reg /* Rd, Rs, foo */
9979 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9980 Rn = inst.operands[2].reg;
c921be7d 9981
fdfde340
JM
9982 reject_bad_reg (Rd);
9983 reject_bad_reg (Rs);
9984 if (inst.operands[2].isreg)
9985 reject_bad_reg (Rn);
a737bd4d 9986
c19d1205 9987 if (unified_syntax)
a737bd4d 9988 {
c19d1205 9989 if (!inst.operands[2].isreg)
b99bd4ef 9990 {
c19d1205
ZW
9991 /* For an immediate, we always generate a 32-bit opcode;
9992 section relaxation will shrink it later if possible. */
9993 inst.instruction = THUMB_OP32 (inst.instruction);
9994 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9995 inst.instruction |= Rd << 8;
9996 inst.instruction |= Rs << 16;
9997 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 9998 }
c19d1205 9999 else
a737bd4d 10000 {
e27ec89e
PB
10001 bfd_boolean narrow;
10002
c19d1205 10003 /* See if we can do this with a 16-bit instruction. */
e27ec89e 10004 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 10005 narrow = !in_it_block ();
e27ec89e 10006 else
e07e6e58 10007 narrow = in_it_block ();
e27ec89e
PB
10008
10009 if (Rd > 7 || Rn > 7 || Rs > 7)
10010 narrow = FALSE;
10011 if (inst.operands[2].shifted)
10012 narrow = FALSE;
10013 if (inst.size_req == 4)
10014 narrow = FALSE;
10015
10016 if (narrow)
a737bd4d 10017 {
c19d1205 10018 if (Rd == Rs)
a737bd4d 10019 {
c19d1205
ZW
10020 inst.instruction = THUMB_OP16 (inst.instruction);
10021 inst.instruction |= Rd;
10022 inst.instruction |= Rn << 3;
10023 return;
a737bd4d 10024 }
c19d1205 10025 if (Rd == Rn)
a737bd4d 10026 {
c19d1205
ZW
10027 inst.instruction = THUMB_OP16 (inst.instruction);
10028 inst.instruction |= Rd;
10029 inst.instruction |= Rs << 3;
10030 return;
a737bd4d
NC
10031 }
10032 }
c19d1205
ZW
10033
10034 /* If we get here, it can't be done in 16 bits. */
10035 constraint (inst.operands[2].shifted
10036 && inst.operands[2].immisreg,
10037 _("shift must be constant"));
10038 inst.instruction = THUMB_OP32 (inst.instruction);
10039 inst.instruction |= Rd << 8;
10040 inst.instruction |= Rs << 16;
10041 encode_thumb32_shifted_operand (2);
a737bd4d 10042 }
b99bd4ef 10043 }
c19d1205
ZW
10044 else
10045 {
10046 /* On its face this is a lie - the instruction does set the
10047 flags. However, the only supported mnemonic in this mode
10048 says it doesn't. */
10049 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10050
c19d1205
ZW
10051 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10052 _("unshifted register required"));
10053 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10054
10055 inst.instruction = THUMB_OP16 (inst.instruction);
10056 inst.instruction |= Rd;
10057
10058 if (Rd == Rs)
10059 inst.instruction |= Rn << 3;
10060 else if (Rd == Rn)
10061 inst.instruction |= Rs << 3;
10062 else
10063 constraint (1, _("dest must overlap one source register"));
10064 }
a737bd4d
NC
10065}
10066
62b3e311
PB
10067static void
10068do_t_barrier (void)
10069{
10070 if (inst.operands[0].present)
10071 {
10072 constraint ((inst.instruction & 0xf0) != 0x40
52e7f43d
RE
10073 && inst.operands[0].imm > 0xf
10074 && inst.operands[0].imm < 0x0,
bd3ba5d1 10075 _("bad barrier type"));
62b3e311
PB
10076 inst.instruction |= inst.operands[0].imm;
10077 }
10078 else
10079 inst.instruction |= 0xf;
10080}
10081
c19d1205
ZW
10082static void
10083do_t_bfc (void)
a737bd4d 10084{
fdfde340 10085 unsigned Rd;
c19d1205
ZW
10086 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
10087 constraint (msb > 32, _("bit-field extends past end of register"));
10088 /* The instruction encoding stores the LSB and MSB,
10089 not the LSB and width. */
fdfde340
JM
10090 Rd = inst.operands[0].reg;
10091 reject_bad_reg (Rd);
10092 inst.instruction |= Rd << 8;
c19d1205
ZW
10093 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
10094 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
10095 inst.instruction |= msb - 1;
b99bd4ef
NC
10096}
10097
c19d1205
ZW
10098static void
10099do_t_bfi (void)
b99bd4ef 10100{
fdfde340 10101 int Rd, Rn;
c19d1205 10102 unsigned int msb;
b99bd4ef 10103
fdfde340
JM
10104 Rd = inst.operands[0].reg;
10105 reject_bad_reg (Rd);
10106
c19d1205
ZW
10107 /* #0 in second position is alternative syntax for bfc, which is
10108 the same instruction but with REG_PC in the Rm field. */
10109 if (!inst.operands[1].isreg)
fdfde340
JM
10110 Rn = REG_PC;
10111 else
10112 {
10113 Rn = inst.operands[1].reg;
10114 reject_bad_reg (Rn);
10115 }
b99bd4ef 10116
c19d1205
ZW
10117 msb = inst.operands[2].imm + inst.operands[3].imm;
10118 constraint (msb > 32, _("bit-field extends past end of register"));
10119 /* The instruction encoding stores the LSB and MSB,
10120 not the LSB and width. */
fdfde340
JM
10121 inst.instruction |= Rd << 8;
10122 inst.instruction |= Rn << 16;
c19d1205
ZW
10123 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10124 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10125 inst.instruction |= msb - 1;
b99bd4ef
NC
10126}
10127
c19d1205
ZW
10128static void
10129do_t_bfx (void)
b99bd4ef 10130{
fdfde340
JM
10131 unsigned Rd, Rn;
10132
10133 Rd = inst.operands[0].reg;
10134 Rn = inst.operands[1].reg;
10135
10136 reject_bad_reg (Rd);
10137 reject_bad_reg (Rn);
10138
c19d1205
ZW
10139 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
10140 _("bit-field extends past end of register"));
fdfde340
JM
10141 inst.instruction |= Rd << 8;
10142 inst.instruction |= Rn << 16;
c19d1205
ZW
10143 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10144 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10145 inst.instruction |= inst.operands[3].imm - 1;
10146}
b99bd4ef 10147
c19d1205
ZW
10148/* ARM V5 Thumb BLX (argument parse)
10149 BLX <target_addr> which is BLX(1)
10150 BLX <Rm> which is BLX(2)
10151 Unfortunately, there are two different opcodes for this mnemonic.
10152 So, the insns[].value is not used, and the code here zaps values
10153 into inst.instruction.
b99bd4ef 10154
c19d1205
ZW
10155 ??? How to take advantage of the additional two bits of displacement
10156 available in Thumb32 mode? Need new relocation? */
b99bd4ef 10157
c19d1205
ZW
10158static void
10159do_t_blx (void)
10160{
e07e6e58
NC
10161 set_it_insn_type_last ();
10162
c19d1205 10163 if (inst.operands[0].isreg)
fdfde340
JM
10164 {
10165 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10166 /* We have a register, so this is BLX(2). */
10167 inst.instruction |= inst.operands[0].reg << 3;
10168 }
b99bd4ef
NC
10169 else
10170 {
c19d1205 10171 /* No register. This must be BLX(1). */
2fc8bdac 10172 inst.instruction = 0xf000e800;
0855e32b 10173 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
b99bd4ef
NC
10174 }
10175}
10176
c19d1205
ZW
10177static void
10178do_t_branch (void)
b99bd4ef 10179{
0110f2b8 10180 int opcode;
dfa9f0d5 10181 int cond;
9ae92b05 10182 int reloc;
dfa9f0d5 10183
e07e6e58
NC
10184 cond = inst.cond;
10185 set_it_insn_type (IF_INSIDE_IT_LAST_INSN);
10186
10187 if (in_it_block ())
dfa9f0d5
PB
10188 {
10189 /* Conditional branches inside IT blocks are encoded as unconditional
10190 branches. */
10191 cond = COND_ALWAYS;
dfa9f0d5
PB
10192 }
10193 else
10194 cond = inst.cond;
10195
10196 if (cond != COND_ALWAYS)
0110f2b8
PB
10197 opcode = T_MNEM_bcond;
10198 else
10199 opcode = inst.instruction;
10200
12d6b0b7
RS
10201 if (unified_syntax
10202 && (inst.size_req == 4
10960bfb
PB
10203 || (inst.size_req != 2
10204 && (inst.operands[0].hasreloc
10205 || inst.reloc.exp.X_op == O_constant))))
c19d1205 10206 {
0110f2b8 10207 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 10208 if (cond == COND_ALWAYS)
9ae92b05 10209 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
10210 else
10211 {
9c2799c2 10212 gas_assert (cond != 0xF);
dfa9f0d5 10213 inst.instruction |= cond << 22;
9ae92b05 10214 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
c19d1205
ZW
10215 }
10216 }
b99bd4ef
NC
10217 else
10218 {
0110f2b8 10219 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 10220 if (cond == COND_ALWAYS)
9ae92b05 10221 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
c19d1205 10222 else
b99bd4ef 10223 {
dfa9f0d5 10224 inst.instruction |= cond << 8;
9ae92b05 10225 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 10226 }
0110f2b8
PB
10227 /* Allow section relaxation. */
10228 if (unified_syntax && inst.size_req != 2)
10229 inst.relax = opcode;
b99bd4ef 10230 }
9ae92b05 10231 inst.reloc.type = reloc;
c19d1205 10232 inst.reloc.pc_rel = 1;
b99bd4ef
NC
10233}
10234
8884b720 10235/* Actually do the work for Thumb state bkpt and hlt. The only difference
bacebabc 10236 between the two is the maximum immediate allowed - which is passed in
8884b720 10237 RANGE. */
b99bd4ef 10238static void
8884b720 10239do_t_bkpt_hlt1 (int range)
b99bd4ef 10240{
dfa9f0d5
PB
10241 constraint (inst.cond != COND_ALWAYS,
10242 _("instruction is always unconditional"));
c19d1205 10243 if (inst.operands[0].present)
b99bd4ef 10244 {
8884b720 10245 constraint (inst.operands[0].imm > range,
c19d1205
ZW
10246 _("immediate value out of range"));
10247 inst.instruction |= inst.operands[0].imm;
b99bd4ef 10248 }
8884b720
MGD
10249
10250 set_it_insn_type (NEUTRAL_IT_INSN);
10251}
10252
10253static void
10254do_t_hlt (void)
10255{
10256 do_t_bkpt_hlt1 (63);
10257}
10258
10259static void
10260do_t_bkpt (void)
10261{
10262 do_t_bkpt_hlt1 (255);
b99bd4ef
NC
10263}
10264
10265static void
c19d1205 10266do_t_branch23 (void)
b99bd4ef 10267{
e07e6e58 10268 set_it_insn_type_last ();
0855e32b 10269 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
fa94de6b 10270
0855e32b
NS
10271 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
10272 this file. We used to simply ignore the PLT reloc type here --
10273 the branch encoding is now needed to deal with TLSCALL relocs.
10274 So if we see a PLT reloc now, put it back to how it used to be to
10275 keep the preexisting behaviour. */
10276 if (inst.reloc.type == BFD_RELOC_ARM_PLT32)
10277 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a 10278
4343666d 10279#if defined(OBJ_COFF)
c19d1205
ZW
10280 /* If the destination of the branch is a defined symbol which does not have
10281 the THUMB_FUNC attribute, then we must be calling a function which has
10282 the (interfacearm) attribute. We look for the Thumb entry point to that
10283 function and change the branch to refer to that function instead. */
10284 if ( inst.reloc.exp.X_op == O_symbol
10285 && inst.reloc.exp.X_add_symbol != NULL
10286 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
10287 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
10288 inst.reloc.exp.X_add_symbol =
10289 find_real_start (inst.reloc.exp.X_add_symbol);
4343666d 10290#endif
90e4755a
RE
10291}
10292
10293static void
c19d1205 10294do_t_bx (void)
90e4755a 10295{
e07e6e58 10296 set_it_insn_type_last ();
c19d1205
ZW
10297 inst.instruction |= inst.operands[0].reg << 3;
10298 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
10299 should cause the alignment to be checked once it is known. This is
10300 because BX PC only works if the instruction is word aligned. */
10301}
90e4755a 10302
c19d1205
ZW
10303static void
10304do_t_bxj (void)
10305{
fdfde340 10306 int Rm;
90e4755a 10307
e07e6e58 10308 set_it_insn_type_last ();
fdfde340
JM
10309 Rm = inst.operands[0].reg;
10310 reject_bad_reg (Rm);
10311 inst.instruction |= Rm << 16;
90e4755a
RE
10312}
10313
10314static void
c19d1205 10315do_t_clz (void)
90e4755a 10316{
fdfde340
JM
10317 unsigned Rd;
10318 unsigned Rm;
10319
10320 Rd = inst.operands[0].reg;
10321 Rm = inst.operands[1].reg;
10322
10323 reject_bad_reg (Rd);
10324 reject_bad_reg (Rm);
10325
10326 inst.instruction |= Rd << 8;
10327 inst.instruction |= Rm << 16;
10328 inst.instruction |= Rm;
c19d1205 10329}
90e4755a 10330
dfa9f0d5
PB
10331static void
10332do_t_cps (void)
10333{
e07e6e58 10334 set_it_insn_type (OUTSIDE_IT_INSN);
dfa9f0d5
PB
10335 inst.instruction |= inst.operands[0].imm;
10336}
10337
c19d1205
ZW
10338static void
10339do_t_cpsi (void)
10340{
e07e6e58 10341 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205 10342 if (unified_syntax
62b3e311
PB
10343 && (inst.operands[1].present || inst.size_req == 4)
10344 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 10345 {
c19d1205
ZW
10346 unsigned int imod = (inst.instruction & 0x0030) >> 4;
10347 inst.instruction = 0xf3af8000;
10348 inst.instruction |= imod << 9;
10349 inst.instruction |= inst.operands[0].imm << 5;
10350 if (inst.operands[1].present)
10351 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 10352 }
c19d1205 10353 else
90e4755a 10354 {
62b3e311
PB
10355 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
10356 && (inst.operands[0].imm & 4),
10357 _("selected processor does not support 'A' form "
10358 "of this instruction"));
10359 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
10360 _("Thumb does not support the 2-argument "
10361 "form of this instruction"));
10362 inst.instruction |= inst.operands[0].imm;
90e4755a 10363 }
90e4755a
RE
10364}
10365
c19d1205
ZW
10366/* THUMB CPY instruction (argument parse). */
10367
90e4755a 10368static void
c19d1205 10369do_t_cpy (void)
90e4755a 10370{
c19d1205 10371 if (inst.size_req == 4)
90e4755a 10372 {
c19d1205
ZW
10373 inst.instruction = THUMB_OP32 (T_MNEM_mov);
10374 inst.instruction |= inst.operands[0].reg << 8;
10375 inst.instruction |= inst.operands[1].reg;
90e4755a 10376 }
c19d1205 10377 else
90e4755a 10378 {
c19d1205
ZW
10379 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
10380 inst.instruction |= (inst.operands[0].reg & 0x7);
10381 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 10382 }
90e4755a
RE
10383}
10384
90e4755a 10385static void
25fe350b 10386do_t_cbz (void)
90e4755a 10387{
e07e6e58 10388 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
10389 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10390 inst.instruction |= inst.operands[0].reg;
10391 inst.reloc.pc_rel = 1;
10392 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
10393}
90e4755a 10394
62b3e311
PB
10395static void
10396do_t_dbg (void)
10397{
10398 inst.instruction |= inst.operands[0].imm;
10399}
10400
10401static void
10402do_t_div (void)
10403{
fdfde340
JM
10404 unsigned Rd, Rn, Rm;
10405
10406 Rd = inst.operands[0].reg;
10407 Rn = (inst.operands[1].present
10408 ? inst.operands[1].reg : Rd);
10409 Rm = inst.operands[2].reg;
10410
10411 reject_bad_reg (Rd);
10412 reject_bad_reg (Rn);
10413 reject_bad_reg (Rm);
10414
10415 inst.instruction |= Rd << 8;
10416 inst.instruction |= Rn << 16;
10417 inst.instruction |= Rm;
62b3e311
PB
10418}
10419
c19d1205
ZW
10420static void
10421do_t_hint (void)
10422{
10423 if (unified_syntax && inst.size_req == 4)
10424 inst.instruction = THUMB_OP32 (inst.instruction);
10425 else
10426 inst.instruction = THUMB_OP16 (inst.instruction);
10427}
90e4755a 10428
c19d1205
ZW
10429static void
10430do_t_it (void)
10431{
10432 unsigned int cond = inst.operands[0].imm;
e27ec89e 10433
e07e6e58
NC
10434 set_it_insn_type (IT_INSN);
10435 now_it.mask = (inst.instruction & 0xf) | 0x10;
10436 now_it.cc = cond;
5a01bb1d 10437 now_it.warn_deprecated = FALSE;
e27ec89e
PB
10438
10439 /* If the condition is a negative condition, invert the mask. */
c19d1205 10440 if ((cond & 0x1) == 0x0)
90e4755a 10441 {
c19d1205 10442 unsigned int mask = inst.instruction & 0x000f;
90e4755a 10443
c19d1205 10444 if ((mask & 0x7) == 0)
5a01bb1d
MGD
10445 {
10446 /* No conversion needed. */
10447 now_it.block_length = 1;
10448 }
c19d1205 10449 else if ((mask & 0x3) == 0)
5a01bb1d
MGD
10450 {
10451 mask ^= 0x8;
10452 now_it.block_length = 2;
10453 }
e27ec89e 10454 else if ((mask & 0x1) == 0)
5a01bb1d
MGD
10455 {
10456 mask ^= 0xC;
10457 now_it.block_length = 3;
10458 }
c19d1205 10459 else
5a01bb1d
MGD
10460 {
10461 mask ^= 0xE;
10462 now_it.block_length = 4;
10463 }
90e4755a 10464
e27ec89e
PB
10465 inst.instruction &= 0xfff0;
10466 inst.instruction |= mask;
c19d1205 10467 }
90e4755a 10468
c19d1205
ZW
10469 inst.instruction |= cond << 4;
10470}
90e4755a 10471
3c707909
PB
10472/* Helper function used for both push/pop and ldm/stm. */
10473static void
10474encode_thumb2_ldmstm (int base, unsigned mask, bfd_boolean writeback)
10475{
10476 bfd_boolean load;
10477
10478 load = (inst.instruction & (1 << 20)) != 0;
10479
10480 if (mask & (1 << 13))
10481 inst.error = _("SP not allowed in register list");
1e5b0379
NC
10482
10483 if ((mask & (1 << base)) != 0
10484 && writeback)
10485 inst.error = _("having the base register in the register list when "
10486 "using write back is UNPREDICTABLE");
10487
3c707909
PB
10488 if (load)
10489 {
e07e6e58
NC
10490 if (mask & (1 << 15))
10491 {
10492 if (mask & (1 << 14))
10493 inst.error = _("LR and PC should not both be in register list");
10494 else
10495 set_it_insn_type_last ();
10496 }
3c707909
PB
10497 }
10498 else
10499 {
10500 if (mask & (1 << 15))
10501 inst.error = _("PC not allowed in register list");
3c707909
PB
10502 }
10503
10504 if ((mask & (mask - 1)) == 0)
10505 {
10506 /* Single register transfers implemented as str/ldr. */
10507 if (writeback)
10508 {
10509 if (inst.instruction & (1 << 23))
10510 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
10511 else
10512 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
10513 }
10514 else
10515 {
10516 if (inst.instruction & (1 << 23))
10517 inst.instruction = 0x00800000; /* ia -> [base] */
10518 else
10519 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
10520 }
10521
10522 inst.instruction |= 0xf8400000;
10523 if (load)
10524 inst.instruction |= 0x00100000;
10525
5f4273c7 10526 mask = ffs (mask) - 1;
3c707909
PB
10527 mask <<= 12;
10528 }
10529 else if (writeback)
10530 inst.instruction |= WRITE_BACK;
10531
10532 inst.instruction |= mask;
10533 inst.instruction |= base << 16;
10534}
10535
c19d1205
ZW
10536static void
10537do_t_ldmstm (void)
10538{
10539 /* This really doesn't seem worth it. */
10540 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
10541 _("expression too complex"));
10542 constraint (inst.operands[1].writeback,
10543 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 10544
c19d1205
ZW
10545 if (unified_syntax)
10546 {
3c707909
PB
10547 bfd_boolean narrow;
10548 unsigned mask;
10549
10550 narrow = FALSE;
c19d1205
ZW
10551 /* See if we can use a 16-bit instruction. */
10552 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
10553 && inst.size_req != 4
3c707909 10554 && !(inst.operands[1].imm & ~0xff))
90e4755a 10555 {
3c707909 10556 mask = 1 << inst.operands[0].reg;
90e4755a 10557
eab4f823 10558 if (inst.operands[0].reg <= 7)
90e4755a 10559 {
3c707909 10560 if (inst.instruction == T_MNEM_stmia
eab4f823
MGD
10561 ? inst.operands[0].writeback
10562 : (inst.operands[0].writeback
10563 == !(inst.operands[1].imm & mask)))
10564 {
10565 if (inst.instruction == T_MNEM_stmia
10566 && (inst.operands[1].imm & mask)
10567 && (inst.operands[1].imm & (mask - 1)))
10568 as_warn (_("value stored for r%d is UNKNOWN"),
10569 inst.operands[0].reg);
3c707909 10570
eab4f823
MGD
10571 inst.instruction = THUMB_OP16 (inst.instruction);
10572 inst.instruction |= inst.operands[0].reg << 8;
10573 inst.instruction |= inst.operands[1].imm;
10574 narrow = TRUE;
10575 }
10576 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10577 {
10578 /* This means 1 register in reg list one of 3 situations:
10579 1. Instruction is stmia, but without writeback.
10580 2. lmdia without writeback, but with Rn not in
10581 reglist.
10582 3. ldmia with writeback, but with Rn in reglist.
10583 Case 3 is UNPREDICTABLE behaviour, so we handle
10584 case 1 and 2 which can be converted into a 16-bit
10585 str or ldr. The SP cases are handled below. */
10586 unsigned long opcode;
10587 /* First, record an error for Case 3. */
10588 if (inst.operands[1].imm & mask
10589 && inst.operands[0].writeback)
fa94de6b 10590 inst.error =
eab4f823
MGD
10591 _("having the base register in the register list when "
10592 "using write back is UNPREDICTABLE");
fa94de6b
RM
10593
10594 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
eab4f823
MGD
10595 : T_MNEM_ldr);
10596 inst.instruction = THUMB_OP16 (opcode);
10597 inst.instruction |= inst.operands[0].reg << 3;
10598 inst.instruction |= (ffs (inst.operands[1].imm)-1);
10599 narrow = TRUE;
10600 }
90e4755a 10601 }
eab4f823 10602 else if (inst.operands[0] .reg == REG_SP)
90e4755a 10603 {
eab4f823
MGD
10604 if (inst.operands[0].writeback)
10605 {
fa94de6b 10606 inst.instruction =
eab4f823
MGD
10607 THUMB_OP16 (inst.instruction == T_MNEM_stmia
10608 ? T_MNEM_push : T_MNEM_pop);
10609 inst.instruction |= inst.operands[1].imm;
10610 narrow = TRUE;
10611 }
10612 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10613 {
fa94de6b 10614 inst.instruction =
eab4f823
MGD
10615 THUMB_OP16 (inst.instruction == T_MNEM_stmia
10616 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
10617 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
10618 narrow = TRUE;
10619 }
90e4755a 10620 }
3c707909
PB
10621 }
10622
10623 if (!narrow)
10624 {
c19d1205
ZW
10625 if (inst.instruction < 0xffff)
10626 inst.instruction = THUMB_OP32 (inst.instruction);
3c707909 10627
5f4273c7
NC
10628 encode_thumb2_ldmstm (inst.operands[0].reg, inst.operands[1].imm,
10629 inst.operands[0].writeback);
90e4755a
RE
10630 }
10631 }
c19d1205 10632 else
90e4755a 10633 {
c19d1205
ZW
10634 constraint (inst.operands[0].reg > 7
10635 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
1198ca51
PB
10636 constraint (inst.instruction != T_MNEM_ldmia
10637 && inst.instruction != T_MNEM_stmia,
10638 _("Thumb-2 instruction only valid in unified syntax"));
c19d1205 10639 if (inst.instruction == T_MNEM_stmia)
f03698e6 10640 {
c19d1205
ZW
10641 if (!inst.operands[0].writeback)
10642 as_warn (_("this instruction will write back the base register"));
10643 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
10644 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
1e5b0379 10645 as_warn (_("value stored for r%d is UNKNOWN"),
c19d1205 10646 inst.operands[0].reg);
f03698e6 10647 }
c19d1205 10648 else
90e4755a 10649 {
c19d1205
ZW
10650 if (!inst.operands[0].writeback
10651 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
10652 as_warn (_("this instruction will write back the base register"));
10653 else if (inst.operands[0].writeback
10654 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
10655 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
10656 }
10657
c19d1205
ZW
10658 inst.instruction = THUMB_OP16 (inst.instruction);
10659 inst.instruction |= inst.operands[0].reg << 8;
10660 inst.instruction |= inst.operands[1].imm;
10661 }
10662}
e28cd48c 10663
c19d1205
ZW
10664static void
10665do_t_ldrex (void)
10666{
10667 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
10668 || inst.operands[1].postind || inst.operands[1].writeback
10669 || inst.operands[1].immisreg || inst.operands[1].shifted
10670 || inst.operands[1].negative,
01cfc07f 10671 BAD_ADDR_MODE);
e28cd48c 10672
5be8be5d
DG
10673 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
10674
c19d1205
ZW
10675 inst.instruction |= inst.operands[0].reg << 12;
10676 inst.instruction |= inst.operands[1].reg << 16;
10677 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
10678}
e28cd48c 10679
c19d1205
ZW
10680static void
10681do_t_ldrexd (void)
10682{
10683 if (!inst.operands[1].present)
1cac9012 10684 {
c19d1205
ZW
10685 constraint (inst.operands[0].reg == REG_LR,
10686 _("r14 not allowed as first register "
10687 "when second register is omitted"));
10688 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 10689 }
c19d1205
ZW
10690 constraint (inst.operands[0].reg == inst.operands[1].reg,
10691 BAD_OVERLAP);
b99bd4ef 10692
c19d1205
ZW
10693 inst.instruction |= inst.operands[0].reg << 12;
10694 inst.instruction |= inst.operands[1].reg << 8;
10695 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
10696}
10697
10698static void
c19d1205 10699do_t_ldst (void)
b99bd4ef 10700{
0110f2b8
PB
10701 unsigned long opcode;
10702 int Rn;
10703
e07e6e58
NC
10704 if (inst.operands[0].isreg
10705 && !inst.operands[0].preind
10706 && inst.operands[0].reg == REG_PC)
10707 set_it_insn_type_last ();
10708
0110f2b8 10709 opcode = inst.instruction;
c19d1205 10710 if (unified_syntax)
b99bd4ef 10711 {
53365c0d
PB
10712 if (!inst.operands[1].isreg)
10713 {
10714 if (opcode <= 0xffff)
10715 inst.instruction = THUMB_OP32 (opcode);
10716 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10717 return;
10718 }
0110f2b8
PB
10719 if (inst.operands[1].isreg
10720 && !inst.operands[1].writeback
c19d1205
ZW
10721 && !inst.operands[1].shifted && !inst.operands[1].postind
10722 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
10723 && opcode <= 0xffff
10724 && inst.size_req != 4)
c19d1205 10725 {
0110f2b8
PB
10726 /* Insn may have a 16-bit form. */
10727 Rn = inst.operands[1].reg;
10728 if (inst.operands[1].immisreg)
10729 {
10730 inst.instruction = THUMB_OP16 (opcode);
5f4273c7 10731 /* [Rn, Rik] */
0110f2b8
PB
10732 if (Rn <= 7 && inst.operands[1].imm <= 7)
10733 goto op16;
5be8be5d
DG
10734 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
10735 reject_bad_reg (inst.operands[1].imm);
0110f2b8
PB
10736 }
10737 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
10738 && opcode != T_MNEM_ldrsb)
10739 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
10740 || (Rn == REG_SP && opcode == T_MNEM_str))
10741 {
10742 /* [Rn, #const] */
10743 if (Rn > 7)
10744 {
10745 if (Rn == REG_PC)
10746 {
10747 if (inst.reloc.pc_rel)
10748 opcode = T_MNEM_ldr_pc2;
10749 else
10750 opcode = T_MNEM_ldr_pc;
10751 }
10752 else
10753 {
10754 if (opcode == T_MNEM_ldr)
10755 opcode = T_MNEM_ldr_sp;
10756 else
10757 opcode = T_MNEM_str_sp;
10758 }
10759 inst.instruction = inst.operands[0].reg << 8;
10760 }
10761 else
10762 {
10763 inst.instruction = inst.operands[0].reg;
10764 inst.instruction |= inst.operands[1].reg << 3;
10765 }
10766 inst.instruction |= THUMB_OP16 (opcode);
10767 if (inst.size_req == 2)
10768 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10769 else
10770 inst.relax = opcode;
10771 return;
10772 }
c19d1205 10773 }
0110f2b8 10774 /* Definitely a 32-bit variant. */
5be8be5d 10775
8d67f500
NC
10776 /* Warning for Erratum 752419. */
10777 if (opcode == T_MNEM_ldr
10778 && inst.operands[0].reg == REG_SP
10779 && inst.operands[1].writeback == 1
10780 && !inst.operands[1].immisreg)
10781 {
10782 if (no_cpu_selected ()
10783 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
10784 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
10785 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
10786 as_warn (_("This instruction may be unpredictable "
10787 "if executed on M-profile cores "
10788 "with interrupts enabled."));
10789 }
10790
5be8be5d 10791 /* Do some validations regarding addressing modes. */
1be5fd2e 10792 if (inst.operands[1].immisreg)
5be8be5d
DG
10793 reject_bad_reg (inst.operands[1].imm);
10794
1be5fd2e
NC
10795 constraint (inst.operands[1].writeback == 1
10796 && inst.operands[0].reg == inst.operands[1].reg,
10797 BAD_OVERLAP);
10798
0110f2b8 10799 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
10800 inst.instruction |= inst.operands[0].reg << 12;
10801 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
1be5fd2e 10802 check_ldr_r15_aligned ();
b99bd4ef
NC
10803 return;
10804 }
10805
c19d1205
ZW
10806 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10807
10808 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 10809 {
c19d1205
ZW
10810 /* Only [Rn,Rm] is acceptable. */
10811 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
10812 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
10813 || inst.operands[1].postind || inst.operands[1].shifted
10814 || inst.operands[1].negative,
10815 _("Thumb does not support this addressing mode"));
10816 inst.instruction = THUMB_OP16 (inst.instruction);
10817 goto op16;
b99bd4ef 10818 }
5f4273c7 10819
c19d1205
ZW
10820 inst.instruction = THUMB_OP16 (inst.instruction);
10821 if (!inst.operands[1].isreg)
10822 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10823 return;
b99bd4ef 10824
c19d1205
ZW
10825 constraint (!inst.operands[1].preind
10826 || inst.operands[1].shifted
10827 || inst.operands[1].writeback,
10828 _("Thumb does not support this addressing mode"));
10829 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 10830 {
c19d1205
ZW
10831 constraint (inst.instruction & 0x0600,
10832 _("byte or halfword not valid for base register"));
10833 constraint (inst.operands[1].reg == REG_PC
10834 && !(inst.instruction & THUMB_LOAD_BIT),
10835 _("r15 based store not allowed"));
10836 constraint (inst.operands[1].immisreg,
10837 _("invalid base register for register offset"));
b99bd4ef 10838
c19d1205
ZW
10839 if (inst.operands[1].reg == REG_PC)
10840 inst.instruction = T_OPCODE_LDR_PC;
10841 else if (inst.instruction & THUMB_LOAD_BIT)
10842 inst.instruction = T_OPCODE_LDR_SP;
10843 else
10844 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 10845
c19d1205
ZW
10846 inst.instruction |= inst.operands[0].reg << 8;
10847 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10848 return;
10849 }
90e4755a 10850
c19d1205
ZW
10851 constraint (inst.operands[1].reg > 7, BAD_HIREG);
10852 if (!inst.operands[1].immisreg)
10853 {
10854 /* Immediate offset. */
10855 inst.instruction |= inst.operands[0].reg;
10856 inst.instruction |= inst.operands[1].reg << 3;
10857 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10858 return;
10859 }
90e4755a 10860
c19d1205
ZW
10861 /* Register offset. */
10862 constraint (inst.operands[1].imm > 7, BAD_HIREG);
10863 constraint (inst.operands[1].negative,
10864 _("Thumb does not support this addressing mode"));
90e4755a 10865
c19d1205
ZW
10866 op16:
10867 switch (inst.instruction)
10868 {
10869 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
10870 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
10871 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
10872 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
10873 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
10874 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
10875 case 0x5600 /* ldrsb */:
10876 case 0x5e00 /* ldrsh */: break;
10877 default: abort ();
10878 }
90e4755a 10879
c19d1205
ZW
10880 inst.instruction |= inst.operands[0].reg;
10881 inst.instruction |= inst.operands[1].reg << 3;
10882 inst.instruction |= inst.operands[1].imm << 6;
10883}
90e4755a 10884
c19d1205
ZW
10885static void
10886do_t_ldstd (void)
10887{
10888 if (!inst.operands[1].present)
b99bd4ef 10889 {
c19d1205
ZW
10890 inst.operands[1].reg = inst.operands[0].reg + 1;
10891 constraint (inst.operands[0].reg == REG_LR,
10892 _("r14 not allowed here"));
bd340a04
MGD
10893 constraint (inst.operands[0].reg == REG_R12,
10894 _("r12 not allowed here"));
b99bd4ef 10895 }
bd340a04
MGD
10896
10897 if (inst.operands[2].writeback
10898 && (inst.operands[0].reg == inst.operands[2].reg
10899 || inst.operands[1].reg == inst.operands[2].reg))
10900 as_warn (_("base register written back, and overlaps "
10901 "one of transfer registers"));
10902
c19d1205
ZW
10903 inst.instruction |= inst.operands[0].reg << 12;
10904 inst.instruction |= inst.operands[1].reg << 8;
10905 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
b99bd4ef
NC
10906}
10907
c19d1205
ZW
10908static void
10909do_t_ldstt (void)
10910{
10911 inst.instruction |= inst.operands[0].reg << 12;
10912 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
10913}
a737bd4d 10914
b99bd4ef 10915static void
c19d1205 10916do_t_mla (void)
b99bd4ef 10917{
fdfde340 10918 unsigned Rd, Rn, Rm, Ra;
c921be7d 10919
fdfde340
JM
10920 Rd = inst.operands[0].reg;
10921 Rn = inst.operands[1].reg;
10922 Rm = inst.operands[2].reg;
10923 Ra = inst.operands[3].reg;
10924
10925 reject_bad_reg (Rd);
10926 reject_bad_reg (Rn);
10927 reject_bad_reg (Rm);
10928 reject_bad_reg (Ra);
10929
10930 inst.instruction |= Rd << 8;
10931 inst.instruction |= Rn << 16;
10932 inst.instruction |= Rm;
10933 inst.instruction |= Ra << 12;
c19d1205 10934}
b99bd4ef 10935
c19d1205
ZW
10936static void
10937do_t_mlal (void)
10938{
fdfde340
JM
10939 unsigned RdLo, RdHi, Rn, Rm;
10940
10941 RdLo = inst.operands[0].reg;
10942 RdHi = inst.operands[1].reg;
10943 Rn = inst.operands[2].reg;
10944 Rm = inst.operands[3].reg;
10945
10946 reject_bad_reg (RdLo);
10947 reject_bad_reg (RdHi);
10948 reject_bad_reg (Rn);
10949 reject_bad_reg (Rm);
10950
10951 inst.instruction |= RdLo << 12;
10952 inst.instruction |= RdHi << 8;
10953 inst.instruction |= Rn << 16;
10954 inst.instruction |= Rm;
c19d1205 10955}
b99bd4ef 10956
c19d1205
ZW
10957static void
10958do_t_mov_cmp (void)
10959{
fdfde340
JM
10960 unsigned Rn, Rm;
10961
10962 Rn = inst.operands[0].reg;
10963 Rm = inst.operands[1].reg;
10964
e07e6e58
NC
10965 if (Rn == REG_PC)
10966 set_it_insn_type_last ();
10967
c19d1205 10968 if (unified_syntax)
b99bd4ef 10969 {
c19d1205
ZW
10970 int r0off = (inst.instruction == T_MNEM_mov
10971 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 10972 unsigned long opcode;
3d388997
PB
10973 bfd_boolean narrow;
10974 bfd_boolean low_regs;
10975
fdfde340 10976 low_regs = (Rn <= 7 && Rm <= 7);
0110f2b8 10977 opcode = inst.instruction;
e07e6e58 10978 if (in_it_block ())
0110f2b8 10979 narrow = opcode != T_MNEM_movs;
3d388997 10980 else
0110f2b8 10981 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
10982 if (inst.size_req == 4
10983 || inst.operands[1].shifted)
10984 narrow = FALSE;
10985
efd81785
PB
10986 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
10987 if (opcode == T_MNEM_movs && inst.operands[1].isreg
10988 && !inst.operands[1].shifted
fdfde340
JM
10989 && Rn == REG_PC
10990 && Rm == REG_LR)
efd81785
PB
10991 {
10992 inst.instruction = T2_SUBS_PC_LR;
10993 return;
10994 }
10995
fdfde340
JM
10996 if (opcode == T_MNEM_cmp)
10997 {
10998 constraint (Rn == REG_PC, BAD_PC);
94206790
MM
10999 if (narrow)
11000 {
11001 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
11002 but valid. */
11003 warn_deprecated_sp (Rm);
11004 /* R15 was documented as a valid choice for Rm in ARMv6,
11005 but as UNPREDICTABLE in ARMv7. ARM's proprietary
11006 tools reject R15, so we do too. */
11007 constraint (Rm == REG_PC, BAD_PC);
11008 }
11009 else
11010 reject_bad_reg (Rm);
fdfde340
JM
11011 }
11012 else if (opcode == T_MNEM_mov
11013 || opcode == T_MNEM_movs)
11014 {
11015 if (inst.operands[1].isreg)
11016 {
11017 if (opcode == T_MNEM_movs)
11018 {
11019 reject_bad_reg (Rn);
11020 reject_bad_reg (Rm);
11021 }
76fa04a4
MGD
11022 else if (narrow)
11023 {
11024 /* This is mov.n. */
11025 if ((Rn == REG_SP || Rn == REG_PC)
11026 && (Rm == REG_SP || Rm == REG_PC))
11027 {
11028 as_warn (_("Use of r%u as a source register is "
11029 "deprecated when r%u is the destination "
11030 "register."), Rm, Rn);
11031 }
11032 }
11033 else
11034 {
11035 /* This is mov.w. */
11036 constraint (Rn == REG_PC, BAD_PC);
11037 constraint (Rm == REG_PC, BAD_PC);
11038 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
11039 }
fdfde340
JM
11040 }
11041 else
11042 reject_bad_reg (Rn);
11043 }
11044
c19d1205
ZW
11045 if (!inst.operands[1].isreg)
11046 {
0110f2b8 11047 /* Immediate operand. */
e07e6e58 11048 if (!in_it_block () && opcode == T_MNEM_mov)
0110f2b8
PB
11049 narrow = 0;
11050 if (low_regs && narrow)
11051 {
11052 inst.instruction = THUMB_OP16 (opcode);
fdfde340 11053 inst.instruction |= Rn << 8;
0110f2b8
PB
11054 if (inst.size_req == 2)
11055 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11056 else
11057 inst.relax = opcode;
11058 }
11059 else
11060 {
11061 inst.instruction = THUMB_OP32 (inst.instruction);
11062 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11063 inst.instruction |= Rn << r0off;
0110f2b8
PB
11064 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11065 }
c19d1205 11066 }
728ca7c9
PB
11067 else if (inst.operands[1].shifted && inst.operands[1].immisreg
11068 && (inst.instruction == T_MNEM_mov
11069 || inst.instruction == T_MNEM_movs))
11070 {
11071 /* Register shifts are encoded as separate shift instructions. */
11072 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
11073
e07e6e58 11074 if (in_it_block ())
728ca7c9
PB
11075 narrow = !flags;
11076 else
11077 narrow = flags;
11078
11079 if (inst.size_req == 4)
11080 narrow = FALSE;
11081
11082 if (!low_regs || inst.operands[1].imm > 7)
11083 narrow = FALSE;
11084
fdfde340 11085 if (Rn != Rm)
728ca7c9
PB
11086 narrow = FALSE;
11087
11088 switch (inst.operands[1].shift_kind)
11089 {
11090 case SHIFT_LSL:
11091 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
11092 break;
11093 case SHIFT_ASR:
11094 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
11095 break;
11096 case SHIFT_LSR:
11097 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
11098 break;
11099 case SHIFT_ROR:
11100 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
11101 break;
11102 default:
5f4273c7 11103 abort ();
728ca7c9
PB
11104 }
11105
11106 inst.instruction = opcode;
11107 if (narrow)
11108 {
fdfde340 11109 inst.instruction |= Rn;
728ca7c9
PB
11110 inst.instruction |= inst.operands[1].imm << 3;
11111 }
11112 else
11113 {
11114 if (flags)
11115 inst.instruction |= CONDS_BIT;
11116
fdfde340
JM
11117 inst.instruction |= Rn << 8;
11118 inst.instruction |= Rm << 16;
728ca7c9
PB
11119 inst.instruction |= inst.operands[1].imm;
11120 }
11121 }
3d388997 11122 else if (!narrow)
c19d1205 11123 {
728ca7c9
PB
11124 /* Some mov with immediate shift have narrow variants.
11125 Register shifts are handled above. */
11126 if (low_regs && inst.operands[1].shifted
11127 && (inst.instruction == T_MNEM_mov
11128 || inst.instruction == T_MNEM_movs))
11129 {
e07e6e58 11130 if (in_it_block ())
728ca7c9
PB
11131 narrow = (inst.instruction == T_MNEM_mov);
11132 else
11133 narrow = (inst.instruction == T_MNEM_movs);
11134 }
11135
11136 if (narrow)
11137 {
11138 switch (inst.operands[1].shift_kind)
11139 {
11140 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11141 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
11142 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11143 default: narrow = FALSE; break;
11144 }
11145 }
11146
11147 if (narrow)
11148 {
fdfde340
JM
11149 inst.instruction |= Rn;
11150 inst.instruction |= Rm << 3;
728ca7c9
PB
11151 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11152 }
11153 else
11154 {
11155 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11156 inst.instruction |= Rn << r0off;
728ca7c9
PB
11157 encode_thumb32_shifted_operand (1);
11158 }
c19d1205
ZW
11159 }
11160 else
11161 switch (inst.instruction)
11162 {
11163 case T_MNEM_mov:
837b3435 11164 /* In v4t or v5t a move of two lowregs produces unpredictable
c6400f8a
MGD
11165 results. Don't allow this. */
11166 if (low_regs)
11167 {
11168 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
11169 "MOV Rd, Rs with two low registers is not "
11170 "permitted on this architecture");
fa94de6b 11171 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
c6400f8a
MGD
11172 arm_ext_v6);
11173 }
11174
c19d1205 11175 inst.instruction = T_OPCODE_MOV_HR;
fdfde340
JM
11176 inst.instruction |= (Rn & 0x8) << 4;
11177 inst.instruction |= (Rn & 0x7);
11178 inst.instruction |= Rm << 3;
c19d1205 11179 break;
b99bd4ef 11180
c19d1205
ZW
11181 case T_MNEM_movs:
11182 /* We know we have low registers at this point.
941a8a52
MGD
11183 Generate LSLS Rd, Rs, #0. */
11184 inst.instruction = T_OPCODE_LSL_I;
fdfde340
JM
11185 inst.instruction |= Rn;
11186 inst.instruction |= Rm << 3;
c19d1205
ZW
11187 break;
11188
11189 case T_MNEM_cmp:
3d388997 11190 if (low_regs)
c19d1205
ZW
11191 {
11192 inst.instruction = T_OPCODE_CMP_LR;
fdfde340
JM
11193 inst.instruction |= Rn;
11194 inst.instruction |= Rm << 3;
c19d1205
ZW
11195 }
11196 else
11197 {
11198 inst.instruction = T_OPCODE_CMP_HR;
fdfde340
JM
11199 inst.instruction |= (Rn & 0x8) << 4;
11200 inst.instruction |= (Rn & 0x7);
11201 inst.instruction |= Rm << 3;
c19d1205
ZW
11202 }
11203 break;
11204 }
b99bd4ef
NC
11205 return;
11206 }
11207
c19d1205 11208 inst.instruction = THUMB_OP16 (inst.instruction);
539d4391
NC
11209
11210 /* PR 10443: Do not silently ignore shifted operands. */
11211 constraint (inst.operands[1].shifted,
11212 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
11213
c19d1205 11214 if (inst.operands[1].isreg)
b99bd4ef 11215 {
fdfde340 11216 if (Rn < 8 && Rm < 8)
b99bd4ef 11217 {
c19d1205
ZW
11218 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
11219 since a MOV instruction produces unpredictable results. */
11220 if (inst.instruction == T_OPCODE_MOV_I8)
11221 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 11222 else
c19d1205 11223 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 11224
fdfde340
JM
11225 inst.instruction |= Rn;
11226 inst.instruction |= Rm << 3;
b99bd4ef
NC
11227 }
11228 else
11229 {
c19d1205
ZW
11230 if (inst.instruction == T_OPCODE_MOV_I8)
11231 inst.instruction = T_OPCODE_MOV_HR;
11232 else
11233 inst.instruction = T_OPCODE_CMP_HR;
11234 do_t_cpy ();
b99bd4ef
NC
11235 }
11236 }
c19d1205 11237 else
b99bd4ef 11238 {
fdfde340 11239 constraint (Rn > 7,
c19d1205 11240 _("only lo regs allowed with immediate"));
fdfde340 11241 inst.instruction |= Rn << 8;
c19d1205
ZW
11242 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11243 }
11244}
b99bd4ef 11245
c19d1205
ZW
11246static void
11247do_t_mov16 (void)
11248{
fdfde340 11249 unsigned Rd;
b6895b4f
PB
11250 bfd_vma imm;
11251 bfd_boolean top;
11252
11253 top = (inst.instruction & 0x00800000) != 0;
11254 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
11255 {
11256 constraint (top, _(":lower16: not allowed this instruction"));
11257 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
11258 }
11259 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
11260 {
11261 constraint (!top, _(":upper16: not allowed this instruction"));
11262 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
11263 }
11264
fdfde340
JM
11265 Rd = inst.operands[0].reg;
11266 reject_bad_reg (Rd);
11267
11268 inst.instruction |= Rd << 8;
b6895b4f
PB
11269 if (inst.reloc.type == BFD_RELOC_UNUSED)
11270 {
11271 imm = inst.reloc.exp.X_add_number;
11272 inst.instruction |= (imm & 0xf000) << 4;
11273 inst.instruction |= (imm & 0x0800) << 15;
11274 inst.instruction |= (imm & 0x0700) << 4;
11275 inst.instruction |= (imm & 0x00ff);
11276 }
c19d1205 11277}
b99bd4ef 11278
c19d1205
ZW
11279static void
11280do_t_mvn_tst (void)
11281{
fdfde340 11282 unsigned Rn, Rm;
c921be7d 11283
fdfde340
JM
11284 Rn = inst.operands[0].reg;
11285 Rm = inst.operands[1].reg;
11286
11287 if (inst.instruction == T_MNEM_cmp
11288 || inst.instruction == T_MNEM_cmn)
11289 constraint (Rn == REG_PC, BAD_PC);
11290 else
11291 reject_bad_reg (Rn);
11292 reject_bad_reg (Rm);
11293
c19d1205
ZW
11294 if (unified_syntax)
11295 {
11296 int r0off = (inst.instruction == T_MNEM_mvn
11297 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
11298 bfd_boolean narrow;
11299
11300 if (inst.size_req == 4
11301 || inst.instruction > 0xffff
11302 || inst.operands[1].shifted
fdfde340 11303 || Rn > 7 || Rm > 7)
3d388997
PB
11304 narrow = FALSE;
11305 else if (inst.instruction == T_MNEM_cmn)
11306 narrow = TRUE;
11307 else if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11308 narrow = !in_it_block ();
3d388997 11309 else
e07e6e58 11310 narrow = in_it_block ();
3d388997 11311
c19d1205 11312 if (!inst.operands[1].isreg)
b99bd4ef 11313 {
c19d1205
ZW
11314 /* For an immediate, we always generate a 32-bit opcode;
11315 section relaxation will shrink it later if possible. */
11316 if (inst.instruction < 0xffff)
11317 inst.instruction = THUMB_OP32 (inst.instruction);
11318 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11319 inst.instruction |= Rn << r0off;
c19d1205 11320 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 11321 }
c19d1205 11322 else
b99bd4ef 11323 {
c19d1205 11324 /* See if we can do this with a 16-bit instruction. */
3d388997 11325 if (narrow)
b99bd4ef 11326 {
c19d1205 11327 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11328 inst.instruction |= Rn;
11329 inst.instruction |= Rm << 3;
b99bd4ef 11330 }
c19d1205 11331 else
b99bd4ef 11332 {
c19d1205
ZW
11333 constraint (inst.operands[1].shifted
11334 && inst.operands[1].immisreg,
11335 _("shift must be constant"));
11336 if (inst.instruction < 0xffff)
11337 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11338 inst.instruction |= Rn << r0off;
c19d1205 11339 encode_thumb32_shifted_operand (1);
b99bd4ef 11340 }
b99bd4ef
NC
11341 }
11342 }
11343 else
11344 {
c19d1205
ZW
11345 constraint (inst.instruction > 0xffff
11346 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
11347 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
11348 _("unshifted register required"));
fdfde340 11349 constraint (Rn > 7 || Rm > 7,
c19d1205 11350 BAD_HIREG);
b99bd4ef 11351
c19d1205 11352 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11353 inst.instruction |= Rn;
11354 inst.instruction |= Rm << 3;
b99bd4ef 11355 }
b99bd4ef
NC
11356}
11357
b05fe5cf 11358static void
c19d1205 11359do_t_mrs (void)
b05fe5cf 11360{
fdfde340 11361 unsigned Rd;
037e8744
JB
11362
11363 if (do_vfp_nsyn_mrs () == SUCCESS)
11364 return;
11365
90ec0d68
MGD
11366 Rd = inst.operands[0].reg;
11367 reject_bad_reg (Rd);
11368 inst.instruction |= Rd << 8;
11369
11370 if (inst.operands[1].isreg)
62b3e311 11371 {
90ec0d68
MGD
11372 unsigned br = inst.operands[1].reg;
11373 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
11374 as_bad (_("bad register for mrs"));
11375
11376 inst.instruction |= br & (0xf << 16);
11377 inst.instruction |= (br & 0x300) >> 4;
11378 inst.instruction |= (br & SPSR_BIT) >> 2;
62b3e311
PB
11379 }
11380 else
11381 {
90ec0d68 11382 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
5f4273c7 11383
d2cd1205 11384 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
1a43faaf
NC
11385 {
11386 /* PR gas/12698: The constraint is only applied for m_profile.
11387 If the user has specified -march=all, we want to ignore it as
11388 we are building for any CPU type, including non-m variants. */
11389 bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
11390 constraint ((flags != 0) && m_profile, _("selected processor does "
11391 "not support requested special purpose register"));
11392 }
90ec0d68 11393 else
d2cd1205
JB
11394 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
11395 devices). */
11396 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
11397 _("'APSR', 'CPSR' or 'SPSR' expected"));
fdfde340 11398
90ec0d68
MGD
11399 inst.instruction |= (flags & SPSR_BIT) >> 2;
11400 inst.instruction |= inst.operands[1].imm & 0xff;
11401 inst.instruction |= 0xf0000;
11402 }
c19d1205 11403}
b05fe5cf 11404
c19d1205
ZW
11405static void
11406do_t_msr (void)
11407{
62b3e311 11408 int flags;
fdfde340 11409 unsigned Rn;
62b3e311 11410
037e8744
JB
11411 if (do_vfp_nsyn_msr () == SUCCESS)
11412 return;
11413
c19d1205
ZW
11414 constraint (!inst.operands[1].isreg,
11415 _("Thumb encoding does not support an immediate here"));
90ec0d68
MGD
11416
11417 if (inst.operands[0].isreg)
11418 flags = (int)(inst.operands[0].reg);
11419 else
11420 flags = inst.operands[0].imm;
11421
d2cd1205 11422 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
62b3e311 11423 {
d2cd1205
JB
11424 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
11425
1a43faaf
NC
11426 /* PR gas/12698: The constraint is only applied for m_profile.
11427 If the user has specified -march=all, we want to ignore it as
11428 we are building for any CPU type, including non-m variants. */
11429 bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
11430 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11431 && (bits & ~(PSR_s | PSR_f)) != 0)
11432 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11433 && bits != PSR_f)) && m_profile,
11434 _("selected processor does not support requested special "
11435 "purpose register"));
62b3e311
PB
11436 }
11437 else
d2cd1205
JB
11438 constraint ((flags & 0xff) != 0, _("selected processor does not support "
11439 "requested special purpose register"));
c921be7d 11440
fdfde340
JM
11441 Rn = inst.operands[1].reg;
11442 reject_bad_reg (Rn);
11443
62b3e311 11444 inst.instruction |= (flags & SPSR_BIT) >> 2;
90ec0d68
MGD
11445 inst.instruction |= (flags & 0xf0000) >> 8;
11446 inst.instruction |= (flags & 0x300) >> 4;
62b3e311 11447 inst.instruction |= (flags & 0xff);
fdfde340 11448 inst.instruction |= Rn << 16;
c19d1205 11449}
b05fe5cf 11450
c19d1205
ZW
11451static void
11452do_t_mul (void)
11453{
17828f45 11454 bfd_boolean narrow;
fdfde340 11455 unsigned Rd, Rn, Rm;
17828f45 11456
c19d1205
ZW
11457 if (!inst.operands[2].present)
11458 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 11459
fdfde340
JM
11460 Rd = inst.operands[0].reg;
11461 Rn = inst.operands[1].reg;
11462 Rm = inst.operands[2].reg;
11463
17828f45 11464 if (unified_syntax)
b05fe5cf 11465 {
17828f45 11466 if (inst.size_req == 4
fdfde340
JM
11467 || (Rd != Rn
11468 && Rd != Rm)
11469 || Rn > 7
11470 || Rm > 7)
17828f45
JM
11471 narrow = FALSE;
11472 else if (inst.instruction == T_MNEM_muls)
e07e6e58 11473 narrow = !in_it_block ();
17828f45 11474 else
e07e6e58 11475 narrow = in_it_block ();
b05fe5cf 11476 }
c19d1205 11477 else
b05fe5cf 11478 {
17828f45 11479 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
fdfde340 11480 constraint (Rn > 7 || Rm > 7,
c19d1205 11481 BAD_HIREG);
17828f45
JM
11482 narrow = TRUE;
11483 }
b05fe5cf 11484
17828f45
JM
11485 if (narrow)
11486 {
11487 /* 16-bit MULS/Conditional MUL. */
c19d1205 11488 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 11489 inst.instruction |= Rd;
b05fe5cf 11490
fdfde340
JM
11491 if (Rd == Rn)
11492 inst.instruction |= Rm << 3;
11493 else if (Rd == Rm)
11494 inst.instruction |= Rn << 3;
c19d1205
ZW
11495 else
11496 constraint (1, _("dest must overlap one source register"));
11497 }
17828f45
JM
11498 else
11499 {
e07e6e58
NC
11500 constraint (inst.instruction != T_MNEM_mul,
11501 _("Thumb-2 MUL must not set flags"));
17828f45
JM
11502 /* 32-bit MUL. */
11503 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11504 inst.instruction |= Rd << 8;
11505 inst.instruction |= Rn << 16;
11506 inst.instruction |= Rm << 0;
11507
11508 reject_bad_reg (Rd);
11509 reject_bad_reg (Rn);
11510 reject_bad_reg (Rm);
17828f45 11511 }
c19d1205 11512}
b05fe5cf 11513
c19d1205
ZW
11514static void
11515do_t_mull (void)
11516{
fdfde340 11517 unsigned RdLo, RdHi, Rn, Rm;
b05fe5cf 11518
fdfde340
JM
11519 RdLo = inst.operands[0].reg;
11520 RdHi = inst.operands[1].reg;
11521 Rn = inst.operands[2].reg;
11522 Rm = inst.operands[3].reg;
11523
11524 reject_bad_reg (RdLo);
11525 reject_bad_reg (RdHi);
11526 reject_bad_reg (Rn);
11527 reject_bad_reg (Rm);
11528
11529 inst.instruction |= RdLo << 12;
11530 inst.instruction |= RdHi << 8;
11531 inst.instruction |= Rn << 16;
11532 inst.instruction |= Rm;
11533
11534 if (RdLo == RdHi)
c19d1205
ZW
11535 as_tsktsk (_("rdhi and rdlo must be different"));
11536}
b05fe5cf 11537
c19d1205
ZW
11538static void
11539do_t_nop (void)
11540{
e07e6e58
NC
11541 set_it_insn_type (NEUTRAL_IT_INSN);
11542
c19d1205
ZW
11543 if (unified_syntax)
11544 {
11545 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 11546 {
c19d1205
ZW
11547 inst.instruction = THUMB_OP32 (inst.instruction);
11548 inst.instruction |= inst.operands[0].imm;
11549 }
11550 else
11551 {
bc2d1808
NC
11552 /* PR9722: Check for Thumb2 availability before
11553 generating a thumb2 nop instruction. */
afa62d5e 11554 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
bc2d1808
NC
11555 {
11556 inst.instruction = THUMB_OP16 (inst.instruction);
11557 inst.instruction |= inst.operands[0].imm << 4;
11558 }
11559 else
11560 inst.instruction = 0x46c0;
c19d1205
ZW
11561 }
11562 }
11563 else
11564 {
11565 constraint (inst.operands[0].present,
11566 _("Thumb does not support NOP with hints"));
11567 inst.instruction = 0x46c0;
11568 }
11569}
b05fe5cf 11570
c19d1205
ZW
11571static void
11572do_t_neg (void)
11573{
11574 if (unified_syntax)
11575 {
3d388997
PB
11576 bfd_boolean narrow;
11577
11578 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11579 narrow = !in_it_block ();
3d388997 11580 else
e07e6e58 11581 narrow = in_it_block ();
3d388997
PB
11582 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11583 narrow = FALSE;
11584 if (inst.size_req == 4)
11585 narrow = FALSE;
11586
11587 if (!narrow)
c19d1205
ZW
11588 {
11589 inst.instruction = THUMB_OP32 (inst.instruction);
11590 inst.instruction |= inst.operands[0].reg << 8;
11591 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
11592 }
11593 else
11594 {
c19d1205
ZW
11595 inst.instruction = THUMB_OP16 (inst.instruction);
11596 inst.instruction |= inst.operands[0].reg;
11597 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
11598 }
11599 }
11600 else
11601 {
c19d1205
ZW
11602 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
11603 BAD_HIREG);
11604 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11605
11606 inst.instruction = THUMB_OP16 (inst.instruction);
11607 inst.instruction |= inst.operands[0].reg;
11608 inst.instruction |= inst.operands[1].reg << 3;
11609 }
11610}
11611
1c444d06
JM
11612static void
11613do_t_orn (void)
11614{
11615 unsigned Rd, Rn;
11616
11617 Rd = inst.operands[0].reg;
11618 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
11619
fdfde340
JM
11620 reject_bad_reg (Rd);
11621 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
11622 reject_bad_reg (Rn);
11623
1c444d06
JM
11624 inst.instruction |= Rd << 8;
11625 inst.instruction |= Rn << 16;
11626
11627 if (!inst.operands[2].isreg)
11628 {
11629 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11630 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11631 }
11632 else
11633 {
11634 unsigned Rm;
11635
11636 Rm = inst.operands[2].reg;
fdfde340 11637 reject_bad_reg (Rm);
1c444d06
JM
11638
11639 constraint (inst.operands[2].shifted
11640 && inst.operands[2].immisreg,
11641 _("shift must be constant"));
11642 encode_thumb32_shifted_operand (2);
11643 }
11644}
11645
c19d1205
ZW
11646static void
11647do_t_pkhbt (void)
11648{
fdfde340
JM
11649 unsigned Rd, Rn, Rm;
11650
11651 Rd = inst.operands[0].reg;
11652 Rn = inst.operands[1].reg;
11653 Rm = inst.operands[2].reg;
11654
11655 reject_bad_reg (Rd);
11656 reject_bad_reg (Rn);
11657 reject_bad_reg (Rm);
11658
11659 inst.instruction |= Rd << 8;
11660 inst.instruction |= Rn << 16;
11661 inst.instruction |= Rm;
c19d1205
ZW
11662 if (inst.operands[3].present)
11663 {
11664 unsigned int val = inst.reloc.exp.X_add_number;
11665 constraint (inst.reloc.exp.X_op != O_constant,
11666 _("expression too complex"));
11667 inst.instruction |= (val & 0x1c) << 10;
11668 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 11669 }
c19d1205 11670}
b05fe5cf 11671
c19d1205
ZW
11672static void
11673do_t_pkhtb (void)
11674{
11675 if (!inst.operands[3].present)
1ef52f49
NC
11676 {
11677 unsigned Rtmp;
11678
11679 inst.instruction &= ~0x00000020;
11680
11681 /* PR 10168. Swap the Rm and Rn registers. */
11682 Rtmp = inst.operands[1].reg;
11683 inst.operands[1].reg = inst.operands[2].reg;
11684 inst.operands[2].reg = Rtmp;
11685 }
c19d1205 11686 do_t_pkhbt ();
b05fe5cf
ZW
11687}
11688
c19d1205
ZW
11689static void
11690do_t_pld (void)
11691{
fdfde340
JM
11692 if (inst.operands[0].immisreg)
11693 reject_bad_reg (inst.operands[0].imm);
11694
c19d1205
ZW
11695 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
11696}
b05fe5cf 11697
c19d1205
ZW
11698static void
11699do_t_push_pop (void)
b99bd4ef 11700{
e9f89963 11701 unsigned mask;
5f4273c7 11702
c19d1205
ZW
11703 constraint (inst.operands[0].writeback,
11704 _("push/pop do not support {reglist}^"));
11705 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
11706 _("expression too complex"));
b99bd4ef 11707
e9f89963
PB
11708 mask = inst.operands[0].imm;
11709 if ((mask & ~0xff) == 0)
3c707909 11710 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
c19d1205 11711 else if ((inst.instruction == T_MNEM_push
e9f89963 11712 && (mask & ~0xff) == 1 << REG_LR)
c19d1205 11713 || (inst.instruction == T_MNEM_pop
e9f89963 11714 && (mask & ~0xff) == 1 << REG_PC))
b99bd4ef 11715 {
c19d1205
ZW
11716 inst.instruction = THUMB_OP16 (inst.instruction);
11717 inst.instruction |= THUMB_PP_PC_LR;
3c707909 11718 inst.instruction |= mask & 0xff;
c19d1205
ZW
11719 }
11720 else if (unified_syntax)
11721 {
3c707909 11722 inst.instruction = THUMB_OP32 (inst.instruction);
5f4273c7 11723 encode_thumb2_ldmstm (13, mask, TRUE);
c19d1205
ZW
11724 }
11725 else
11726 {
11727 inst.error = _("invalid register list to push/pop instruction");
11728 return;
11729 }
c19d1205 11730}
b99bd4ef 11731
c19d1205
ZW
11732static void
11733do_t_rbit (void)
11734{
fdfde340
JM
11735 unsigned Rd, Rm;
11736
11737 Rd = inst.operands[0].reg;
11738 Rm = inst.operands[1].reg;
11739
11740 reject_bad_reg (Rd);
11741 reject_bad_reg (Rm);
11742
11743 inst.instruction |= Rd << 8;
11744 inst.instruction |= Rm << 16;
11745 inst.instruction |= Rm;
c19d1205 11746}
b99bd4ef 11747
c19d1205
ZW
11748static void
11749do_t_rev (void)
11750{
fdfde340
JM
11751 unsigned Rd, Rm;
11752
11753 Rd = inst.operands[0].reg;
11754 Rm = inst.operands[1].reg;
11755
11756 reject_bad_reg (Rd);
11757 reject_bad_reg (Rm);
11758
11759 if (Rd <= 7 && Rm <= 7
c19d1205
ZW
11760 && inst.size_req != 4)
11761 {
11762 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11763 inst.instruction |= Rd;
11764 inst.instruction |= Rm << 3;
c19d1205
ZW
11765 }
11766 else if (unified_syntax)
11767 {
11768 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11769 inst.instruction |= Rd << 8;
11770 inst.instruction |= Rm << 16;
11771 inst.instruction |= Rm;
c19d1205
ZW
11772 }
11773 else
11774 inst.error = BAD_HIREG;
11775}
b99bd4ef 11776
1c444d06
JM
11777static void
11778do_t_rrx (void)
11779{
11780 unsigned Rd, Rm;
11781
11782 Rd = inst.operands[0].reg;
11783 Rm = inst.operands[1].reg;
11784
fdfde340
JM
11785 reject_bad_reg (Rd);
11786 reject_bad_reg (Rm);
c921be7d 11787
1c444d06
JM
11788 inst.instruction |= Rd << 8;
11789 inst.instruction |= Rm;
11790}
11791
c19d1205
ZW
11792static void
11793do_t_rsb (void)
11794{
fdfde340 11795 unsigned Rd, Rs;
b99bd4ef 11796
c19d1205
ZW
11797 Rd = inst.operands[0].reg;
11798 Rs = (inst.operands[1].present
11799 ? inst.operands[1].reg /* Rd, Rs, foo */
11800 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 11801
fdfde340
JM
11802 reject_bad_reg (Rd);
11803 reject_bad_reg (Rs);
11804 if (inst.operands[2].isreg)
11805 reject_bad_reg (inst.operands[2].reg);
11806
c19d1205
ZW
11807 inst.instruction |= Rd << 8;
11808 inst.instruction |= Rs << 16;
11809 if (!inst.operands[2].isreg)
11810 {
026d3abb
PB
11811 bfd_boolean narrow;
11812
11813 if ((inst.instruction & 0x00100000) != 0)
e07e6e58 11814 narrow = !in_it_block ();
026d3abb 11815 else
e07e6e58 11816 narrow = in_it_block ();
026d3abb
PB
11817
11818 if (Rd > 7 || Rs > 7)
11819 narrow = FALSE;
11820
11821 if (inst.size_req == 4 || !unified_syntax)
11822 narrow = FALSE;
11823
11824 if (inst.reloc.exp.X_op != O_constant
11825 || inst.reloc.exp.X_add_number != 0)
11826 narrow = FALSE;
11827
11828 /* Turn rsb #0 into 16-bit neg. We should probably do this via
11829 relaxation, but it doesn't seem worth the hassle. */
11830 if (narrow)
11831 {
11832 inst.reloc.type = BFD_RELOC_UNUSED;
11833 inst.instruction = THUMB_OP16 (T_MNEM_negs);
11834 inst.instruction |= Rs << 3;
11835 inst.instruction |= Rd;
11836 }
11837 else
11838 {
11839 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11840 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11841 }
c19d1205
ZW
11842 }
11843 else
11844 encode_thumb32_shifted_operand (2);
11845}
b99bd4ef 11846
c19d1205
ZW
11847static void
11848do_t_setend (void)
11849{
12e37cbc
MGD
11850 if (warn_on_deprecated
11851 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11852 as_warn (_("setend use is deprecated for ARMv8"));
11853
e07e6e58 11854 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
11855 if (inst.operands[0].imm)
11856 inst.instruction |= 0x8;
11857}
b99bd4ef 11858
c19d1205
ZW
11859static void
11860do_t_shift (void)
11861{
11862 if (!inst.operands[1].present)
11863 inst.operands[1].reg = inst.operands[0].reg;
11864
11865 if (unified_syntax)
11866 {
3d388997
PB
11867 bfd_boolean narrow;
11868 int shift_kind;
11869
11870 switch (inst.instruction)
11871 {
11872 case T_MNEM_asr:
11873 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
11874 case T_MNEM_lsl:
11875 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
11876 case T_MNEM_lsr:
11877 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
11878 case T_MNEM_ror:
11879 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
11880 default: abort ();
11881 }
11882
11883 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11884 narrow = !in_it_block ();
3d388997 11885 else
e07e6e58 11886 narrow = in_it_block ();
3d388997
PB
11887 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11888 narrow = FALSE;
11889 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
11890 narrow = FALSE;
11891 if (inst.operands[2].isreg
11892 && (inst.operands[1].reg != inst.operands[0].reg
11893 || inst.operands[2].reg > 7))
11894 narrow = FALSE;
11895 if (inst.size_req == 4)
11896 narrow = FALSE;
11897
fdfde340
JM
11898 reject_bad_reg (inst.operands[0].reg);
11899 reject_bad_reg (inst.operands[1].reg);
c921be7d 11900
3d388997 11901 if (!narrow)
c19d1205
ZW
11902 {
11903 if (inst.operands[2].isreg)
b99bd4ef 11904 {
fdfde340 11905 reject_bad_reg (inst.operands[2].reg);
c19d1205
ZW
11906 inst.instruction = THUMB_OP32 (inst.instruction);
11907 inst.instruction |= inst.operands[0].reg << 8;
11908 inst.instruction |= inst.operands[1].reg << 16;
11909 inst.instruction |= inst.operands[2].reg;
94342ec3
NC
11910
11911 /* PR 12854: Error on extraneous shifts. */
11912 constraint (inst.operands[2].shifted,
11913 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11914 }
11915 else
11916 {
11917 inst.operands[1].shifted = 1;
3d388997 11918 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
11919 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
11920 ? T_MNEM_movs : T_MNEM_mov);
11921 inst.instruction |= inst.operands[0].reg << 8;
11922 encode_thumb32_shifted_operand (1);
11923 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
11924 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
11925 }
11926 }
11927 else
11928 {
c19d1205 11929 if (inst.operands[2].isreg)
b99bd4ef 11930 {
3d388997 11931 switch (shift_kind)
b99bd4ef 11932 {
3d388997
PB
11933 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
11934 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
11935 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
11936 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 11937 default: abort ();
b99bd4ef 11938 }
5f4273c7 11939
c19d1205
ZW
11940 inst.instruction |= inst.operands[0].reg;
11941 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11942
11943 /* PR 12854: Error on extraneous shifts. */
11944 constraint (inst.operands[2].shifted,
11945 _("extraneous shift as part of operand to shift insn"));
b99bd4ef
NC
11946 }
11947 else
11948 {
3d388997 11949 switch (shift_kind)
b99bd4ef 11950 {
3d388997
PB
11951 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11952 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11953 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 11954 default: abort ();
b99bd4ef 11955 }
c19d1205
ZW
11956 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11957 inst.instruction |= inst.operands[0].reg;
11958 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
11959 }
11960 }
c19d1205
ZW
11961 }
11962 else
11963 {
11964 constraint (inst.operands[0].reg > 7
11965 || inst.operands[1].reg > 7, BAD_HIREG);
11966 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 11967
c19d1205
ZW
11968 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
11969 {
11970 constraint (inst.operands[2].reg > 7, BAD_HIREG);
11971 constraint (inst.operands[0].reg != inst.operands[1].reg,
11972 _("source1 and dest must be same register"));
b99bd4ef 11973
c19d1205
ZW
11974 switch (inst.instruction)
11975 {
11976 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
11977 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
11978 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
11979 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
11980 default: abort ();
11981 }
5f4273c7 11982
c19d1205
ZW
11983 inst.instruction |= inst.operands[0].reg;
11984 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11985
11986 /* PR 12854: Error on extraneous shifts. */
11987 constraint (inst.operands[2].shifted,
11988 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11989 }
11990 else
b99bd4ef 11991 {
c19d1205
ZW
11992 switch (inst.instruction)
11993 {
11994 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
11995 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
11996 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
11997 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
11998 default: abort ();
11999 }
12000 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12001 inst.instruction |= inst.operands[0].reg;
12002 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
12003 }
12004 }
b99bd4ef
NC
12005}
12006
12007static void
c19d1205 12008do_t_simd (void)
b99bd4ef 12009{
fdfde340
JM
12010 unsigned Rd, Rn, Rm;
12011
12012 Rd = inst.operands[0].reg;
12013 Rn = inst.operands[1].reg;
12014 Rm = inst.operands[2].reg;
12015
12016 reject_bad_reg (Rd);
12017 reject_bad_reg (Rn);
12018 reject_bad_reg (Rm);
12019
12020 inst.instruction |= Rd << 8;
12021 inst.instruction |= Rn << 16;
12022 inst.instruction |= Rm;
c19d1205 12023}
b99bd4ef 12024
03ee1b7f
NC
12025static void
12026do_t_simd2 (void)
12027{
12028 unsigned Rd, Rn, Rm;
12029
12030 Rd = inst.operands[0].reg;
12031 Rm = inst.operands[1].reg;
12032 Rn = inst.operands[2].reg;
12033
12034 reject_bad_reg (Rd);
12035 reject_bad_reg (Rn);
12036 reject_bad_reg (Rm);
12037
12038 inst.instruction |= Rd << 8;
12039 inst.instruction |= Rn << 16;
12040 inst.instruction |= Rm;
12041}
12042
c19d1205 12043static void
3eb17e6b 12044do_t_smc (void)
c19d1205
ZW
12045{
12046 unsigned int value = inst.reloc.exp.X_add_number;
f4c65163
MGD
12047 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
12048 _("SMC is not permitted on this architecture"));
c19d1205
ZW
12049 constraint (inst.reloc.exp.X_op != O_constant,
12050 _("expression too complex"));
12051 inst.reloc.type = BFD_RELOC_UNUSED;
12052 inst.instruction |= (value & 0xf000) >> 12;
12053 inst.instruction |= (value & 0x0ff0);
12054 inst.instruction |= (value & 0x000f) << 16;
12055}
b99bd4ef 12056
90ec0d68
MGD
12057static void
12058do_t_hvc (void)
12059{
12060 unsigned int value = inst.reloc.exp.X_add_number;
12061
12062 inst.reloc.type = BFD_RELOC_UNUSED;
12063 inst.instruction |= (value & 0x0fff);
12064 inst.instruction |= (value & 0xf000) << 4;
12065}
12066
c19d1205 12067static void
3a21c15a 12068do_t_ssat_usat (int bias)
c19d1205 12069{
fdfde340
JM
12070 unsigned Rd, Rn;
12071
12072 Rd = inst.operands[0].reg;
12073 Rn = inst.operands[2].reg;
12074
12075 reject_bad_reg (Rd);
12076 reject_bad_reg (Rn);
12077
12078 inst.instruction |= Rd << 8;
3a21c15a 12079 inst.instruction |= inst.operands[1].imm - bias;
fdfde340 12080 inst.instruction |= Rn << 16;
b99bd4ef 12081
c19d1205 12082 if (inst.operands[3].present)
b99bd4ef 12083 {
3a21c15a
NC
12084 offsetT shift_amount = inst.reloc.exp.X_add_number;
12085
12086 inst.reloc.type = BFD_RELOC_UNUSED;
12087
c19d1205
ZW
12088 constraint (inst.reloc.exp.X_op != O_constant,
12089 _("expression too complex"));
b99bd4ef 12090
3a21c15a 12091 if (shift_amount != 0)
6189168b 12092 {
3a21c15a
NC
12093 constraint (shift_amount > 31,
12094 _("shift expression is too large"));
12095
c19d1205 12096 if (inst.operands[3].shift_kind == SHIFT_ASR)
3a21c15a
NC
12097 inst.instruction |= 0x00200000; /* sh bit. */
12098
12099 inst.instruction |= (shift_amount & 0x1c) << 10;
12100 inst.instruction |= (shift_amount & 0x03) << 6;
6189168b
NC
12101 }
12102 }
b99bd4ef 12103}
c921be7d 12104
3a21c15a
NC
12105static void
12106do_t_ssat (void)
12107{
12108 do_t_ssat_usat (1);
12109}
b99bd4ef 12110
0dd132b6 12111static void
c19d1205 12112do_t_ssat16 (void)
0dd132b6 12113{
fdfde340
JM
12114 unsigned Rd, Rn;
12115
12116 Rd = inst.operands[0].reg;
12117 Rn = inst.operands[2].reg;
12118
12119 reject_bad_reg (Rd);
12120 reject_bad_reg (Rn);
12121
12122 inst.instruction |= Rd << 8;
c19d1205 12123 inst.instruction |= inst.operands[1].imm - 1;
fdfde340 12124 inst.instruction |= Rn << 16;
c19d1205 12125}
0dd132b6 12126
c19d1205
ZW
12127static void
12128do_t_strex (void)
12129{
12130 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
12131 || inst.operands[2].postind || inst.operands[2].writeback
12132 || inst.operands[2].immisreg || inst.operands[2].shifted
12133 || inst.operands[2].negative,
01cfc07f 12134 BAD_ADDR_MODE);
0dd132b6 12135
5be8be5d
DG
12136 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
12137
c19d1205
ZW
12138 inst.instruction |= inst.operands[0].reg << 8;
12139 inst.instruction |= inst.operands[1].reg << 12;
12140 inst.instruction |= inst.operands[2].reg << 16;
12141 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
12142}
12143
b99bd4ef 12144static void
c19d1205 12145do_t_strexd (void)
b99bd4ef 12146{
c19d1205
ZW
12147 if (!inst.operands[2].present)
12148 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 12149
c19d1205
ZW
12150 constraint (inst.operands[0].reg == inst.operands[1].reg
12151 || inst.operands[0].reg == inst.operands[2].reg
f8a8e9d6 12152 || inst.operands[0].reg == inst.operands[3].reg,
c19d1205 12153 BAD_OVERLAP);
b99bd4ef 12154
c19d1205
ZW
12155 inst.instruction |= inst.operands[0].reg;
12156 inst.instruction |= inst.operands[1].reg << 12;
12157 inst.instruction |= inst.operands[2].reg << 8;
12158 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
12159}
12160
12161static void
c19d1205 12162do_t_sxtah (void)
b99bd4ef 12163{
fdfde340
JM
12164 unsigned Rd, Rn, Rm;
12165
12166 Rd = inst.operands[0].reg;
12167 Rn = inst.operands[1].reg;
12168 Rm = inst.operands[2].reg;
12169
12170 reject_bad_reg (Rd);
12171 reject_bad_reg (Rn);
12172 reject_bad_reg (Rm);
12173
12174 inst.instruction |= Rd << 8;
12175 inst.instruction |= Rn << 16;
12176 inst.instruction |= Rm;
c19d1205
ZW
12177 inst.instruction |= inst.operands[3].imm << 4;
12178}
b99bd4ef 12179
c19d1205
ZW
12180static void
12181do_t_sxth (void)
12182{
fdfde340
JM
12183 unsigned Rd, Rm;
12184
12185 Rd = inst.operands[0].reg;
12186 Rm = inst.operands[1].reg;
12187
12188 reject_bad_reg (Rd);
12189 reject_bad_reg (Rm);
c921be7d
NC
12190
12191 if (inst.instruction <= 0xffff
12192 && inst.size_req != 4
fdfde340 12193 && Rd <= 7 && Rm <= 7
c19d1205 12194 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 12195 {
c19d1205 12196 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12197 inst.instruction |= Rd;
12198 inst.instruction |= Rm << 3;
b99bd4ef 12199 }
c19d1205 12200 else if (unified_syntax)
b99bd4ef 12201 {
c19d1205
ZW
12202 if (inst.instruction <= 0xffff)
12203 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12204 inst.instruction |= Rd << 8;
12205 inst.instruction |= Rm;
c19d1205 12206 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 12207 }
c19d1205 12208 else
b99bd4ef 12209 {
c19d1205
ZW
12210 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
12211 _("Thumb encoding does not support rotation"));
12212 constraint (1, BAD_HIREG);
b99bd4ef 12213 }
c19d1205 12214}
b99bd4ef 12215
c19d1205
ZW
12216static void
12217do_t_swi (void)
12218{
b2a5fbdc
MGD
12219 /* We have to do the following check manually as ARM_EXT_OS only applies
12220 to ARM_EXT_V6M. */
12221 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6m))
12222 {
ac7f631b
NC
12223 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_os)
12224 /* This only applies to the v6m howver, not later architectures. */
12225 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7))
b2a5fbdc
MGD
12226 as_bad (_("SVC is not permitted on this architecture"));
12227 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, arm_ext_os);
12228 }
12229
c19d1205
ZW
12230 inst.reloc.type = BFD_RELOC_ARM_SWI;
12231}
b99bd4ef 12232
92e90b6e
PB
12233static void
12234do_t_tb (void)
12235{
fdfde340 12236 unsigned Rn, Rm;
92e90b6e
PB
12237 int half;
12238
12239 half = (inst.instruction & 0x10) != 0;
e07e6e58 12240 set_it_insn_type_last ();
dfa9f0d5
PB
12241 constraint (inst.operands[0].immisreg,
12242 _("instruction requires register index"));
fdfde340
JM
12243
12244 Rn = inst.operands[0].reg;
12245 Rm = inst.operands[0].imm;
c921be7d 12246
fdfde340
JM
12247 constraint (Rn == REG_SP, BAD_SP);
12248 reject_bad_reg (Rm);
12249
92e90b6e
PB
12250 constraint (!half && inst.operands[0].shifted,
12251 _("instruction does not allow shifted index"));
fdfde340 12252 inst.instruction |= (Rn << 16) | Rm;
92e90b6e
PB
12253}
12254
c19d1205
ZW
12255static void
12256do_t_usat (void)
12257{
3a21c15a 12258 do_t_ssat_usat (0);
b99bd4ef
NC
12259}
12260
12261static void
c19d1205 12262do_t_usat16 (void)
b99bd4ef 12263{
fdfde340
JM
12264 unsigned Rd, Rn;
12265
12266 Rd = inst.operands[0].reg;
12267 Rn = inst.operands[2].reg;
12268
12269 reject_bad_reg (Rd);
12270 reject_bad_reg (Rn);
12271
12272 inst.instruction |= Rd << 8;
c19d1205 12273 inst.instruction |= inst.operands[1].imm;
fdfde340 12274 inst.instruction |= Rn << 16;
b99bd4ef 12275}
c19d1205 12276
5287ad62 12277/* Neon instruction encoder helpers. */
5f4273c7 12278
5287ad62 12279/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 12280
5287ad62
JB
12281/* An "invalid" code for the following tables. */
12282#define N_INV -1u
12283
12284struct neon_tab_entry
b99bd4ef 12285{
5287ad62
JB
12286 unsigned integer;
12287 unsigned float_or_poly;
12288 unsigned scalar_or_imm;
12289};
5f4273c7 12290
5287ad62
JB
12291/* Map overloaded Neon opcodes to their respective encodings. */
12292#define NEON_ENC_TAB \
12293 X(vabd, 0x0000700, 0x1200d00, N_INV), \
12294 X(vmax, 0x0000600, 0x0000f00, N_INV), \
12295 X(vmin, 0x0000610, 0x0200f00, N_INV), \
12296 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
12297 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
12298 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
12299 X(vadd, 0x0000800, 0x0000d00, N_INV), \
12300 X(vsub, 0x1000800, 0x0200d00, N_INV), \
12301 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
12302 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
12303 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
12304 /* Register variants of the following two instructions are encoded as
e07e6e58 12305 vcge / vcgt with the operands reversed. */ \
92559b5b
PB
12306 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
12307 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
62f3b8c8
PB
12308 X(vfma, N_INV, 0x0000c10, N_INV), \
12309 X(vfms, N_INV, 0x0200c10, N_INV), \
5287ad62
JB
12310 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
12311 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
12312 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
12313 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
12314 X(vmlal, 0x0800800, N_INV, 0x0800240), \
12315 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
12316 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
12317 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
12318 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
12319 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
12320 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
12321 X(vshl, 0x0000400, N_INV, 0x0800510), \
12322 X(vqshl, 0x0000410, N_INV, 0x0800710), \
12323 X(vand, 0x0000110, N_INV, 0x0800030), \
12324 X(vbic, 0x0100110, N_INV, 0x0800030), \
12325 X(veor, 0x1000110, N_INV, N_INV), \
12326 X(vorn, 0x0300110, N_INV, 0x0800010), \
12327 X(vorr, 0x0200110, N_INV, 0x0800010), \
12328 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
12329 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
12330 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
12331 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
12332 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
12333 X(vst1, 0x0000000, 0x0800000, N_INV), \
12334 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
12335 X(vst2, 0x0000100, 0x0800100, N_INV), \
12336 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
12337 X(vst3, 0x0000200, 0x0800200, N_INV), \
12338 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
12339 X(vst4, 0x0000300, 0x0800300, N_INV), \
12340 X(vmovn, 0x1b20200, N_INV, N_INV), \
12341 X(vtrn, 0x1b20080, N_INV, N_INV), \
12342 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
12343 X(vqmovun, 0x1b20240, N_INV, N_INV), \
12344 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
e6655fda
PB
12345 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
12346 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
62f3b8c8
PB
12347 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
12348 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
037e8744
JB
12349 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
12350 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
12351 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
33399f07
MGD
12352 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
12353 X(vseleq, 0xe000a00, N_INV, N_INV), \
12354 X(vselvs, 0xe100a00, N_INV, N_INV), \
12355 X(vselge, 0xe200a00, N_INV, N_INV), \
73924fbc
MGD
12356 X(vselgt, 0xe300a00, N_INV, N_INV), \
12357 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
7e8e6784 12358 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
30bdf752
MGD
12359 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
12360 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
91ff7894 12361 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
48adcd8e 12362 X(aes, 0x3b00300, N_INV, N_INV), \
3c9017d2
MGD
12363 X(sha3op, 0x2000c00, N_INV, N_INV), \
12364 X(sha1h, 0x3b902c0, N_INV, N_INV), \
12365 X(sha2op, 0x3ba0380, N_INV, N_INV)
5287ad62
JB
12366
12367enum neon_opc
12368{
12369#define X(OPC,I,F,S) N_MNEM_##OPC
12370NEON_ENC_TAB
12371#undef X
12372};
b99bd4ef 12373
5287ad62
JB
12374static const struct neon_tab_entry neon_enc_tab[] =
12375{
12376#define X(OPC,I,F,S) { (I), (F), (S) }
12377NEON_ENC_TAB
12378#undef X
12379};
b99bd4ef 12380
88714cb8
DG
12381/* Do not use these macros; instead, use NEON_ENCODE defined below. */
12382#define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12383#define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12384#define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12385#define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12386#define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12387#define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12388#define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12389#define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12390#define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12391#define NEON_ENC_SINGLE_(X) \
037e8744 12392 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
88714cb8 12393#define NEON_ENC_DOUBLE_(X) \
037e8744 12394 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
33399f07
MGD
12395#define NEON_ENC_FPV8_(X) \
12396 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
5287ad62 12397
88714cb8
DG
12398#define NEON_ENCODE(type, inst) \
12399 do \
12400 { \
12401 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
12402 inst.is_neon = 1; \
12403 } \
12404 while (0)
12405
12406#define check_neon_suffixes \
12407 do \
12408 { \
12409 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
12410 { \
12411 as_bad (_("invalid neon suffix for non neon instruction")); \
12412 return; \
12413 } \
12414 } \
12415 while (0)
12416
037e8744
JB
12417/* Define shapes for instruction operands. The following mnemonic characters
12418 are used in this table:
5287ad62 12419
037e8744 12420 F - VFP S<n> register
5287ad62
JB
12421 D - Neon D<n> register
12422 Q - Neon Q<n> register
12423 I - Immediate
12424 S - Scalar
12425 R - ARM register
12426 L - D<n> register list
5f4273c7 12427
037e8744
JB
12428 This table is used to generate various data:
12429 - enumerations of the form NS_DDR to be used as arguments to
12430 neon_select_shape.
12431 - a table classifying shapes into single, double, quad, mixed.
5f4273c7 12432 - a table used to drive neon_select_shape. */
b99bd4ef 12433
037e8744
JB
12434#define NEON_SHAPE_DEF \
12435 X(3, (D, D, D), DOUBLE), \
12436 X(3, (Q, Q, Q), QUAD), \
12437 X(3, (D, D, I), DOUBLE), \
12438 X(3, (Q, Q, I), QUAD), \
12439 X(3, (D, D, S), DOUBLE), \
12440 X(3, (Q, Q, S), QUAD), \
12441 X(2, (D, D), DOUBLE), \
12442 X(2, (Q, Q), QUAD), \
12443 X(2, (D, S), DOUBLE), \
12444 X(2, (Q, S), QUAD), \
12445 X(2, (D, R), DOUBLE), \
12446 X(2, (Q, R), QUAD), \
12447 X(2, (D, I), DOUBLE), \
12448 X(2, (Q, I), QUAD), \
12449 X(3, (D, L, D), DOUBLE), \
12450 X(2, (D, Q), MIXED), \
12451 X(2, (Q, D), MIXED), \
12452 X(3, (D, Q, I), MIXED), \
12453 X(3, (Q, D, I), MIXED), \
12454 X(3, (Q, D, D), MIXED), \
12455 X(3, (D, Q, Q), MIXED), \
12456 X(3, (Q, Q, D), MIXED), \
12457 X(3, (Q, D, S), MIXED), \
12458 X(3, (D, Q, S), MIXED), \
12459 X(4, (D, D, D, I), DOUBLE), \
12460 X(4, (Q, Q, Q, I), QUAD), \
12461 X(2, (F, F), SINGLE), \
12462 X(3, (F, F, F), SINGLE), \
12463 X(2, (F, I), SINGLE), \
12464 X(2, (F, D), MIXED), \
12465 X(2, (D, F), MIXED), \
12466 X(3, (F, F, I), MIXED), \
12467 X(4, (R, R, F, F), SINGLE), \
12468 X(4, (F, F, R, R), SINGLE), \
12469 X(3, (D, R, R), DOUBLE), \
12470 X(3, (R, R, D), DOUBLE), \
12471 X(2, (S, R), SINGLE), \
12472 X(2, (R, S), SINGLE), \
12473 X(2, (F, R), SINGLE), \
12474 X(2, (R, F), SINGLE)
12475
12476#define S2(A,B) NS_##A##B
12477#define S3(A,B,C) NS_##A##B##C
12478#define S4(A,B,C,D) NS_##A##B##C##D
12479
12480#define X(N, L, C) S##N L
12481
5287ad62
JB
12482enum neon_shape
12483{
037e8744
JB
12484 NEON_SHAPE_DEF,
12485 NS_NULL
5287ad62 12486};
b99bd4ef 12487
037e8744
JB
12488#undef X
12489#undef S2
12490#undef S3
12491#undef S4
12492
12493enum neon_shape_class
12494{
12495 SC_SINGLE,
12496 SC_DOUBLE,
12497 SC_QUAD,
12498 SC_MIXED
12499};
12500
12501#define X(N, L, C) SC_##C
12502
12503static enum neon_shape_class neon_shape_class[] =
12504{
12505 NEON_SHAPE_DEF
12506};
12507
12508#undef X
12509
12510enum neon_shape_el
12511{
12512 SE_F,
12513 SE_D,
12514 SE_Q,
12515 SE_I,
12516 SE_S,
12517 SE_R,
12518 SE_L
12519};
12520
12521/* Register widths of above. */
12522static unsigned neon_shape_el_size[] =
12523{
12524 32,
12525 64,
12526 128,
12527 0,
12528 32,
12529 32,
12530 0
12531};
12532
12533struct neon_shape_info
12534{
12535 unsigned els;
12536 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
12537};
12538
12539#define S2(A,B) { SE_##A, SE_##B }
12540#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
12541#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
12542
12543#define X(N, L, C) { N, S##N L }
12544
12545static struct neon_shape_info neon_shape_tab[] =
12546{
12547 NEON_SHAPE_DEF
12548};
12549
12550#undef X
12551#undef S2
12552#undef S3
12553#undef S4
12554
5287ad62
JB
12555/* Bit masks used in type checking given instructions.
12556 'N_EQK' means the type must be the same as (or based on in some way) the key
12557 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
12558 set, various other bits can be set as well in order to modify the meaning of
12559 the type constraint. */
12560
12561enum neon_type_mask
12562{
8e79c3df
CM
12563 N_S8 = 0x0000001,
12564 N_S16 = 0x0000002,
12565 N_S32 = 0x0000004,
12566 N_S64 = 0x0000008,
12567 N_U8 = 0x0000010,
12568 N_U16 = 0x0000020,
12569 N_U32 = 0x0000040,
12570 N_U64 = 0x0000080,
12571 N_I8 = 0x0000100,
12572 N_I16 = 0x0000200,
12573 N_I32 = 0x0000400,
12574 N_I64 = 0x0000800,
12575 N_8 = 0x0001000,
12576 N_16 = 0x0002000,
12577 N_32 = 0x0004000,
12578 N_64 = 0x0008000,
12579 N_P8 = 0x0010000,
12580 N_P16 = 0x0020000,
12581 N_F16 = 0x0040000,
12582 N_F32 = 0x0080000,
12583 N_F64 = 0x0100000,
4f51b4bd 12584 N_P64 = 0x0200000,
c921be7d
NC
12585 N_KEY = 0x1000000, /* Key element (main type specifier). */
12586 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
8e79c3df 12587 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
91ff7894 12588 N_UNT = 0x8000000, /* Must be explicitly untyped. */
c921be7d
NC
12589 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
12590 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
12591 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
12592 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
12593 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
12594 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
12595 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
5287ad62 12596 N_UTYP = 0,
4f51b4bd 12597 N_MAX_NONSPECIAL = N_P64
5287ad62
JB
12598};
12599
dcbf9037
JB
12600#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
12601
5287ad62
JB
12602#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
12603#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
12604#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
12605#define N_SUF_32 (N_SU_32 | N_F32)
12606#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
12607#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F32)
12608
12609/* Pass this as the first type argument to neon_check_type to ignore types
12610 altogether. */
12611#define N_IGNORE_TYPE (N_KEY | N_EQK)
12612
037e8744
JB
12613/* Select a "shape" for the current instruction (describing register types or
12614 sizes) from a list of alternatives. Return NS_NULL if the current instruction
12615 doesn't fit. For non-polymorphic shapes, checking is usually done as a
12616 function of operand parsing, so this function doesn't need to be called.
12617 Shapes should be listed in order of decreasing length. */
5287ad62
JB
12618
12619static enum neon_shape
037e8744 12620neon_select_shape (enum neon_shape shape, ...)
5287ad62 12621{
037e8744
JB
12622 va_list ap;
12623 enum neon_shape first_shape = shape;
5287ad62
JB
12624
12625 /* Fix missing optional operands. FIXME: we don't know at this point how
12626 many arguments we should have, so this makes the assumption that we have
12627 > 1. This is true of all current Neon opcodes, I think, but may not be
12628 true in the future. */
12629 if (!inst.operands[1].present)
12630 inst.operands[1] = inst.operands[0];
12631
037e8744 12632 va_start (ap, shape);
5f4273c7 12633
21d799b5 12634 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
037e8744
JB
12635 {
12636 unsigned j;
12637 int matches = 1;
12638
12639 for (j = 0; j < neon_shape_tab[shape].els; j++)
12640 {
12641 if (!inst.operands[j].present)
12642 {
12643 matches = 0;
12644 break;
12645 }
12646
12647 switch (neon_shape_tab[shape].el[j])
12648 {
12649 case SE_F:
12650 if (!(inst.operands[j].isreg
12651 && inst.operands[j].isvec
12652 && inst.operands[j].issingle
12653 && !inst.operands[j].isquad))
12654 matches = 0;
12655 break;
12656
12657 case SE_D:
12658 if (!(inst.operands[j].isreg
12659 && inst.operands[j].isvec
12660 && !inst.operands[j].isquad
12661 && !inst.operands[j].issingle))
12662 matches = 0;
12663 break;
12664
12665 case SE_R:
12666 if (!(inst.operands[j].isreg
12667 && !inst.operands[j].isvec))
12668 matches = 0;
12669 break;
12670
12671 case SE_Q:
12672 if (!(inst.operands[j].isreg
12673 && inst.operands[j].isvec
12674 && inst.operands[j].isquad
12675 && !inst.operands[j].issingle))
12676 matches = 0;
12677 break;
12678
12679 case SE_I:
12680 if (!(!inst.operands[j].isreg
12681 && !inst.operands[j].isscalar))
12682 matches = 0;
12683 break;
12684
12685 case SE_S:
12686 if (!(!inst.operands[j].isreg
12687 && inst.operands[j].isscalar))
12688 matches = 0;
12689 break;
12690
12691 case SE_L:
12692 break;
12693 }
3fde54a2
JZ
12694 if (!matches)
12695 break;
037e8744 12696 }
ad6cec43
MGD
12697 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
12698 /* We've matched all the entries in the shape table, and we don't
12699 have any left over operands which have not been matched. */
5287ad62 12700 break;
037e8744 12701 }
5f4273c7 12702
037e8744 12703 va_end (ap);
5287ad62 12704
037e8744
JB
12705 if (shape == NS_NULL && first_shape != NS_NULL)
12706 first_error (_("invalid instruction shape"));
5287ad62 12707
037e8744
JB
12708 return shape;
12709}
5287ad62 12710
037e8744
JB
12711/* True if SHAPE is predominantly a quadword operation (most of the time, this
12712 means the Q bit should be set). */
12713
12714static int
12715neon_quad (enum neon_shape shape)
12716{
12717 return neon_shape_class[shape] == SC_QUAD;
5287ad62 12718}
037e8744 12719
5287ad62
JB
12720static void
12721neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
12722 unsigned *g_size)
12723{
12724 /* Allow modification to be made to types which are constrained to be
12725 based on the key element, based on bits set alongside N_EQK. */
12726 if ((typebits & N_EQK) != 0)
12727 {
12728 if ((typebits & N_HLF) != 0)
12729 *g_size /= 2;
12730 else if ((typebits & N_DBL) != 0)
12731 *g_size *= 2;
12732 if ((typebits & N_SGN) != 0)
12733 *g_type = NT_signed;
12734 else if ((typebits & N_UNS) != 0)
12735 *g_type = NT_unsigned;
12736 else if ((typebits & N_INT) != 0)
12737 *g_type = NT_integer;
12738 else if ((typebits & N_FLT) != 0)
12739 *g_type = NT_float;
dcbf9037
JB
12740 else if ((typebits & N_SIZ) != 0)
12741 *g_type = NT_untyped;
5287ad62
JB
12742 }
12743}
5f4273c7 12744
5287ad62
JB
12745/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
12746 operand type, i.e. the single type specified in a Neon instruction when it
12747 is the only one given. */
12748
12749static struct neon_type_el
12750neon_type_promote (struct neon_type_el *key, unsigned thisarg)
12751{
12752 struct neon_type_el dest = *key;
5f4273c7 12753
9c2799c2 12754 gas_assert ((thisarg & N_EQK) != 0);
5f4273c7 12755
5287ad62
JB
12756 neon_modify_type_size (thisarg, &dest.type, &dest.size);
12757
12758 return dest;
12759}
12760
12761/* Convert Neon type and size into compact bitmask representation. */
12762
12763static enum neon_type_mask
12764type_chk_of_el_type (enum neon_el_type type, unsigned size)
12765{
12766 switch (type)
12767 {
12768 case NT_untyped:
12769 switch (size)
12770 {
12771 case 8: return N_8;
12772 case 16: return N_16;
12773 case 32: return N_32;
12774 case 64: return N_64;
12775 default: ;
12776 }
12777 break;
12778
12779 case NT_integer:
12780 switch (size)
12781 {
12782 case 8: return N_I8;
12783 case 16: return N_I16;
12784 case 32: return N_I32;
12785 case 64: return N_I64;
12786 default: ;
12787 }
12788 break;
12789
12790 case NT_float:
037e8744
JB
12791 switch (size)
12792 {
8e79c3df 12793 case 16: return N_F16;
037e8744
JB
12794 case 32: return N_F32;
12795 case 64: return N_F64;
12796 default: ;
12797 }
5287ad62
JB
12798 break;
12799
12800 case NT_poly:
12801 switch (size)
12802 {
12803 case 8: return N_P8;
12804 case 16: return N_P16;
4f51b4bd 12805 case 64: return N_P64;
5287ad62
JB
12806 default: ;
12807 }
12808 break;
12809
12810 case NT_signed:
12811 switch (size)
12812 {
12813 case 8: return N_S8;
12814 case 16: return N_S16;
12815 case 32: return N_S32;
12816 case 64: return N_S64;
12817 default: ;
12818 }
12819 break;
12820
12821 case NT_unsigned:
12822 switch (size)
12823 {
12824 case 8: return N_U8;
12825 case 16: return N_U16;
12826 case 32: return N_U32;
12827 case 64: return N_U64;
12828 default: ;
12829 }
12830 break;
12831
12832 default: ;
12833 }
5f4273c7 12834
5287ad62
JB
12835 return N_UTYP;
12836}
12837
12838/* Convert compact Neon bitmask type representation to a type and size. Only
12839 handles the case where a single bit is set in the mask. */
12840
dcbf9037 12841static int
5287ad62
JB
12842el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
12843 enum neon_type_mask mask)
12844{
dcbf9037
JB
12845 if ((mask & N_EQK) != 0)
12846 return FAIL;
12847
5287ad62
JB
12848 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
12849 *size = 8;
c70a8987 12850 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16)) != 0)
5287ad62 12851 *size = 16;
dcbf9037 12852 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 12853 *size = 32;
4f51b4bd 12854 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
5287ad62 12855 *size = 64;
dcbf9037
JB
12856 else
12857 return FAIL;
12858
5287ad62
JB
12859 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
12860 *type = NT_signed;
dcbf9037 12861 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 12862 *type = NT_unsigned;
dcbf9037 12863 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 12864 *type = NT_integer;
dcbf9037 12865 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 12866 *type = NT_untyped;
4f51b4bd 12867 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
5287ad62 12868 *type = NT_poly;
c70a8987 12869 else if ((mask & (N_F16 | N_F32 | N_F64)) != 0)
5287ad62 12870 *type = NT_float;
dcbf9037
JB
12871 else
12872 return FAIL;
5f4273c7 12873
dcbf9037 12874 return SUCCESS;
5287ad62
JB
12875}
12876
12877/* Modify a bitmask of allowed types. This is only needed for type
12878 relaxation. */
12879
12880static unsigned
12881modify_types_allowed (unsigned allowed, unsigned mods)
12882{
12883 unsigned size;
12884 enum neon_el_type type;
12885 unsigned destmask;
12886 int i;
5f4273c7 12887
5287ad62 12888 destmask = 0;
5f4273c7 12889
5287ad62
JB
12890 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
12891 {
21d799b5
NC
12892 if (el_type_of_type_chk (&type, &size,
12893 (enum neon_type_mask) (allowed & i)) == SUCCESS)
dcbf9037
JB
12894 {
12895 neon_modify_type_size (mods, &type, &size);
12896 destmask |= type_chk_of_el_type (type, size);
12897 }
5287ad62 12898 }
5f4273c7 12899
5287ad62
JB
12900 return destmask;
12901}
12902
12903/* Check type and return type classification.
12904 The manual states (paraphrase): If one datatype is given, it indicates the
12905 type given in:
12906 - the second operand, if there is one
12907 - the operand, if there is no second operand
12908 - the result, if there are no operands.
12909 This isn't quite good enough though, so we use a concept of a "key" datatype
12910 which is set on a per-instruction basis, which is the one which matters when
12911 only one data type is written.
12912 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 12913 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
12914
12915static struct neon_type_el
12916neon_check_type (unsigned els, enum neon_shape ns, ...)
12917{
12918 va_list ap;
12919 unsigned i, pass, key_el = 0;
12920 unsigned types[NEON_MAX_TYPE_ELS];
12921 enum neon_el_type k_type = NT_invtype;
12922 unsigned k_size = -1u;
12923 struct neon_type_el badtype = {NT_invtype, -1};
12924 unsigned key_allowed = 0;
12925
12926 /* Optional registers in Neon instructions are always (not) in operand 1.
12927 Fill in the missing operand here, if it was omitted. */
12928 if (els > 1 && !inst.operands[1].present)
12929 inst.operands[1] = inst.operands[0];
12930
12931 /* Suck up all the varargs. */
12932 va_start (ap, ns);
12933 for (i = 0; i < els; i++)
12934 {
12935 unsigned thisarg = va_arg (ap, unsigned);
12936 if (thisarg == N_IGNORE_TYPE)
12937 {
12938 va_end (ap);
12939 return badtype;
12940 }
12941 types[i] = thisarg;
12942 if ((thisarg & N_KEY) != 0)
12943 key_el = i;
12944 }
12945 va_end (ap);
12946
dcbf9037
JB
12947 if (inst.vectype.elems > 0)
12948 for (i = 0; i < els; i++)
12949 if (inst.operands[i].vectype.type != NT_invtype)
12950 {
12951 first_error (_("types specified in both the mnemonic and operands"));
12952 return badtype;
12953 }
12954
5287ad62
JB
12955 /* Duplicate inst.vectype elements here as necessary.
12956 FIXME: No idea if this is exactly the same as the ARM assembler,
12957 particularly when an insn takes one register and one non-register
12958 operand. */
12959 if (inst.vectype.elems == 1 && els > 1)
12960 {
12961 unsigned j;
12962 inst.vectype.elems = els;
12963 inst.vectype.el[key_el] = inst.vectype.el[0];
12964 for (j = 0; j < els; j++)
dcbf9037
JB
12965 if (j != key_el)
12966 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12967 types[j]);
12968 }
12969 else if (inst.vectype.elems == 0 && els > 0)
12970 {
12971 unsigned j;
12972 /* No types were given after the mnemonic, so look for types specified
12973 after each operand. We allow some flexibility here; as long as the
12974 "key" operand has a type, we can infer the others. */
12975 for (j = 0; j < els; j++)
12976 if (inst.operands[j].vectype.type != NT_invtype)
12977 inst.vectype.el[j] = inst.operands[j].vectype;
12978
12979 if (inst.operands[key_el].vectype.type != NT_invtype)
5287ad62 12980 {
dcbf9037
JB
12981 for (j = 0; j < els; j++)
12982 if (inst.operands[j].vectype.type == NT_invtype)
12983 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12984 types[j]);
12985 }
12986 else
12987 {
12988 first_error (_("operand types can't be inferred"));
12989 return badtype;
5287ad62
JB
12990 }
12991 }
12992 else if (inst.vectype.elems != els)
12993 {
dcbf9037 12994 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
12995 return badtype;
12996 }
12997
12998 for (pass = 0; pass < 2; pass++)
12999 {
13000 for (i = 0; i < els; i++)
13001 {
13002 unsigned thisarg = types[i];
13003 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
13004 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
13005 enum neon_el_type g_type = inst.vectype.el[i].type;
13006 unsigned g_size = inst.vectype.el[i].size;
13007
13008 /* Decay more-specific signed & unsigned types to sign-insensitive
13009 integer types if sign-specific variants are unavailable. */
13010 if ((g_type == NT_signed || g_type == NT_unsigned)
13011 && (types_allowed & N_SU_ALL) == 0)
13012 g_type = NT_integer;
13013
13014 /* If only untyped args are allowed, decay any more specific types to
13015 them. Some instructions only care about signs for some element
13016 sizes, so handle that properly. */
91ff7894
MGD
13017 if (((types_allowed & N_UNT) == 0)
13018 && ((g_size == 8 && (types_allowed & N_8) != 0)
13019 || (g_size == 16 && (types_allowed & N_16) != 0)
13020 || (g_size == 32 && (types_allowed & N_32) != 0)
13021 || (g_size == 64 && (types_allowed & N_64) != 0)))
5287ad62
JB
13022 g_type = NT_untyped;
13023
13024 if (pass == 0)
13025 {
13026 if ((thisarg & N_KEY) != 0)
13027 {
13028 k_type = g_type;
13029 k_size = g_size;
13030 key_allowed = thisarg & ~N_KEY;
13031 }
13032 }
13033 else
13034 {
037e8744
JB
13035 if ((thisarg & N_VFP) != 0)
13036 {
99b253c5
NC
13037 enum neon_shape_el regshape;
13038 unsigned regwidth, match;
13039
13040 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
13041 if (ns == NS_NULL)
13042 {
13043 first_error (_("invalid instruction shape"));
13044 return badtype;
13045 }
13046 regshape = neon_shape_tab[ns].el[i];
13047 regwidth = neon_shape_el_size[regshape];
037e8744
JB
13048
13049 /* In VFP mode, operands must match register widths. If we
13050 have a key operand, use its width, else use the width of
13051 the current operand. */
13052 if (k_size != -1u)
13053 match = k_size;
13054 else
13055 match = g_size;
13056
13057 if (regwidth != match)
13058 {
13059 first_error (_("operand size must match register width"));
13060 return badtype;
13061 }
13062 }
5f4273c7 13063
5287ad62
JB
13064 if ((thisarg & N_EQK) == 0)
13065 {
13066 unsigned given_type = type_chk_of_el_type (g_type, g_size);
13067
13068 if ((given_type & types_allowed) == 0)
13069 {
dcbf9037 13070 first_error (_("bad type in Neon instruction"));
5287ad62
JB
13071 return badtype;
13072 }
13073 }
13074 else
13075 {
13076 enum neon_el_type mod_k_type = k_type;
13077 unsigned mod_k_size = k_size;
13078 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
13079 if (g_type != mod_k_type || g_size != mod_k_size)
13080 {
dcbf9037 13081 first_error (_("inconsistent types in Neon instruction"));
5287ad62
JB
13082 return badtype;
13083 }
13084 }
13085 }
13086 }
13087 }
13088
13089 return inst.vectype.el[key_el];
13090}
13091
037e8744 13092/* Neon-style VFP instruction forwarding. */
5287ad62 13093
037e8744
JB
13094/* Thumb VFP instructions have 0xE in the condition field. */
13095
13096static void
13097do_vfp_cond_or_thumb (void)
5287ad62 13098{
88714cb8
DG
13099 inst.is_neon = 1;
13100
5287ad62 13101 if (thumb_mode)
037e8744 13102 inst.instruction |= 0xe0000000;
5287ad62 13103 else
037e8744 13104 inst.instruction |= inst.cond << 28;
5287ad62
JB
13105}
13106
037e8744
JB
13107/* Look up and encode a simple mnemonic, for use as a helper function for the
13108 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
13109 etc. It is assumed that operand parsing has already been done, and that the
13110 operands are in the form expected by the given opcode (this isn't necessarily
13111 the same as the form in which they were parsed, hence some massaging must
13112 take place before this function is called).
13113 Checks current arch version against that in the looked-up opcode. */
5287ad62 13114
037e8744
JB
13115static void
13116do_vfp_nsyn_opcode (const char *opname)
5287ad62 13117{
037e8744 13118 const struct asm_opcode *opcode;
5f4273c7 13119
21d799b5 13120 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
5287ad62 13121
037e8744
JB
13122 if (!opcode)
13123 abort ();
5287ad62 13124
037e8744
JB
13125 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
13126 thumb_mode ? *opcode->tvariant : *opcode->avariant),
13127 _(BAD_FPU));
5287ad62 13128
88714cb8
DG
13129 inst.is_neon = 1;
13130
037e8744
JB
13131 if (thumb_mode)
13132 {
13133 inst.instruction = opcode->tvalue;
13134 opcode->tencode ();
13135 }
13136 else
13137 {
13138 inst.instruction = (inst.cond << 28) | opcode->avalue;
13139 opcode->aencode ();
13140 }
13141}
5287ad62
JB
13142
13143static void
037e8744 13144do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 13145{
037e8744
JB
13146 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
13147
13148 if (rs == NS_FFF)
13149 {
13150 if (is_add)
13151 do_vfp_nsyn_opcode ("fadds");
13152 else
13153 do_vfp_nsyn_opcode ("fsubs");
13154 }
13155 else
13156 {
13157 if (is_add)
13158 do_vfp_nsyn_opcode ("faddd");
13159 else
13160 do_vfp_nsyn_opcode ("fsubd");
13161 }
13162}
13163
13164/* Check operand types to see if this is a VFP instruction, and if so call
13165 PFN (). */
13166
13167static int
13168try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
13169{
13170 enum neon_shape rs;
13171 struct neon_type_el et;
13172
13173 switch (args)
13174 {
13175 case 2:
13176 rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13177 et = neon_check_type (2, rs,
13178 N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
13179 break;
5f4273c7 13180
037e8744
JB
13181 case 3:
13182 rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13183 et = neon_check_type (3, rs,
13184 N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
13185 break;
13186
13187 default:
13188 abort ();
13189 }
13190
13191 if (et.type != NT_invtype)
13192 {
13193 pfn (rs);
13194 return SUCCESS;
13195 }
037e8744 13196
99b253c5 13197 inst.error = NULL;
037e8744
JB
13198 return FAIL;
13199}
13200
13201static void
13202do_vfp_nsyn_mla_mls (enum neon_shape rs)
13203{
13204 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
5f4273c7 13205
037e8744
JB
13206 if (rs == NS_FFF)
13207 {
13208 if (is_mla)
13209 do_vfp_nsyn_opcode ("fmacs");
13210 else
1ee69515 13211 do_vfp_nsyn_opcode ("fnmacs");
037e8744
JB
13212 }
13213 else
13214 {
13215 if (is_mla)
13216 do_vfp_nsyn_opcode ("fmacd");
13217 else
1ee69515 13218 do_vfp_nsyn_opcode ("fnmacd");
037e8744
JB
13219 }
13220}
13221
62f3b8c8
PB
13222static void
13223do_vfp_nsyn_fma_fms (enum neon_shape rs)
13224{
13225 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
13226
13227 if (rs == NS_FFF)
13228 {
13229 if (is_fma)
13230 do_vfp_nsyn_opcode ("ffmas");
13231 else
13232 do_vfp_nsyn_opcode ("ffnmas");
13233 }
13234 else
13235 {
13236 if (is_fma)
13237 do_vfp_nsyn_opcode ("ffmad");
13238 else
13239 do_vfp_nsyn_opcode ("ffnmad");
13240 }
13241}
13242
037e8744
JB
13243static void
13244do_vfp_nsyn_mul (enum neon_shape rs)
13245{
13246 if (rs == NS_FFF)
13247 do_vfp_nsyn_opcode ("fmuls");
13248 else
13249 do_vfp_nsyn_opcode ("fmuld");
13250}
13251
13252static void
13253do_vfp_nsyn_abs_neg (enum neon_shape rs)
13254{
13255 int is_neg = (inst.instruction & 0x80) != 0;
13256 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
13257
13258 if (rs == NS_FF)
13259 {
13260 if (is_neg)
13261 do_vfp_nsyn_opcode ("fnegs");
13262 else
13263 do_vfp_nsyn_opcode ("fabss");
13264 }
13265 else
13266 {
13267 if (is_neg)
13268 do_vfp_nsyn_opcode ("fnegd");
13269 else
13270 do_vfp_nsyn_opcode ("fabsd");
13271 }
13272}
13273
13274/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
13275 insns belong to Neon, and are handled elsewhere. */
13276
13277static void
13278do_vfp_nsyn_ldm_stm (int is_dbmode)
13279{
13280 int is_ldm = (inst.instruction & (1 << 20)) != 0;
13281 if (is_ldm)
13282 {
13283 if (is_dbmode)
13284 do_vfp_nsyn_opcode ("fldmdbs");
13285 else
13286 do_vfp_nsyn_opcode ("fldmias");
13287 }
13288 else
13289 {
13290 if (is_dbmode)
13291 do_vfp_nsyn_opcode ("fstmdbs");
13292 else
13293 do_vfp_nsyn_opcode ("fstmias");
13294 }
13295}
13296
037e8744
JB
13297static void
13298do_vfp_nsyn_sqrt (void)
13299{
13300 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13301 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13302
037e8744
JB
13303 if (rs == NS_FF)
13304 do_vfp_nsyn_opcode ("fsqrts");
13305 else
13306 do_vfp_nsyn_opcode ("fsqrtd");
13307}
13308
13309static void
13310do_vfp_nsyn_div (void)
13311{
13312 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13313 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13314 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13315
037e8744
JB
13316 if (rs == NS_FFF)
13317 do_vfp_nsyn_opcode ("fdivs");
13318 else
13319 do_vfp_nsyn_opcode ("fdivd");
13320}
13321
13322static void
13323do_vfp_nsyn_nmul (void)
13324{
13325 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13326 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13327 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13328
037e8744
JB
13329 if (rs == NS_FFF)
13330 {
88714cb8 13331 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13332 do_vfp_sp_dyadic ();
13333 }
13334 else
13335 {
88714cb8 13336 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13337 do_vfp_dp_rd_rn_rm ();
13338 }
13339 do_vfp_cond_or_thumb ();
13340}
13341
13342static void
13343do_vfp_nsyn_cmp (void)
13344{
13345 if (inst.operands[1].isreg)
13346 {
13347 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13348 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13349
037e8744
JB
13350 if (rs == NS_FF)
13351 {
88714cb8 13352 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13353 do_vfp_sp_monadic ();
13354 }
13355 else
13356 {
88714cb8 13357 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13358 do_vfp_dp_rd_rm ();
13359 }
13360 }
13361 else
13362 {
13363 enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
13364 neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
13365
13366 switch (inst.instruction & 0x0fffffff)
13367 {
13368 case N_MNEM_vcmp:
13369 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
13370 break;
13371 case N_MNEM_vcmpe:
13372 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
13373 break;
13374 default:
13375 abort ();
13376 }
5f4273c7 13377
037e8744
JB
13378 if (rs == NS_FI)
13379 {
88714cb8 13380 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13381 do_vfp_sp_compare_z ();
13382 }
13383 else
13384 {
88714cb8 13385 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13386 do_vfp_dp_rd ();
13387 }
13388 }
13389 do_vfp_cond_or_thumb ();
13390}
13391
13392static void
13393nsyn_insert_sp (void)
13394{
13395 inst.operands[1] = inst.operands[0];
13396 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
fdfde340 13397 inst.operands[0].reg = REG_SP;
037e8744
JB
13398 inst.operands[0].isreg = 1;
13399 inst.operands[0].writeback = 1;
13400 inst.operands[0].present = 1;
13401}
13402
13403static void
13404do_vfp_nsyn_push (void)
13405{
13406 nsyn_insert_sp ();
13407 if (inst.operands[1].issingle)
13408 do_vfp_nsyn_opcode ("fstmdbs");
13409 else
13410 do_vfp_nsyn_opcode ("fstmdbd");
13411}
13412
13413static void
13414do_vfp_nsyn_pop (void)
13415{
13416 nsyn_insert_sp ();
13417 if (inst.operands[1].issingle)
22b5b651 13418 do_vfp_nsyn_opcode ("fldmias");
037e8744 13419 else
22b5b651 13420 do_vfp_nsyn_opcode ("fldmiad");
037e8744
JB
13421}
13422
13423/* Fix up Neon data-processing instructions, ORing in the correct bits for
13424 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
13425
88714cb8
DG
13426static void
13427neon_dp_fixup (struct arm_it* insn)
037e8744 13428{
88714cb8
DG
13429 unsigned int i = insn->instruction;
13430 insn->is_neon = 1;
13431
037e8744
JB
13432 if (thumb_mode)
13433 {
13434 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
13435 if (i & (1 << 24))
13436 i |= 1 << 28;
5f4273c7 13437
037e8744 13438 i &= ~(1 << 24);
5f4273c7 13439
037e8744
JB
13440 i |= 0xef000000;
13441 }
13442 else
13443 i |= 0xf2000000;
5f4273c7 13444
88714cb8 13445 insn->instruction = i;
037e8744
JB
13446}
13447
13448/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
13449 (0, 1, 2, 3). */
13450
13451static unsigned
13452neon_logbits (unsigned x)
13453{
13454 return ffs (x) - 4;
13455}
13456
13457#define LOW4(R) ((R) & 0xf)
13458#define HI1(R) (((R) >> 4) & 1)
13459
13460/* Encode insns with bit pattern:
13461
13462 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
13463 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
5f4273c7 13464
037e8744
JB
13465 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
13466 different meaning for some instruction. */
13467
13468static void
13469neon_three_same (int isquad, int ubit, int size)
13470{
13471 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13472 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13473 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
13474 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
13475 inst.instruction |= LOW4 (inst.operands[2].reg);
13476 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
13477 inst.instruction |= (isquad != 0) << 6;
13478 inst.instruction |= (ubit != 0) << 24;
13479 if (size != -1)
13480 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 13481
88714cb8 13482 neon_dp_fixup (&inst);
037e8744
JB
13483}
13484
13485/* Encode instructions of the form:
13486
13487 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
13488 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
13489
13490 Don't write size if SIZE == -1. */
13491
13492static void
13493neon_two_same (int qbit, int ubit, int size)
13494{
13495 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13496 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13497 inst.instruction |= LOW4 (inst.operands[1].reg);
13498 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13499 inst.instruction |= (qbit != 0) << 6;
13500 inst.instruction |= (ubit != 0) << 24;
13501
13502 if (size != -1)
13503 inst.instruction |= neon_logbits (size) << 18;
13504
88714cb8 13505 neon_dp_fixup (&inst);
5287ad62
JB
13506}
13507
13508/* Neon instruction encoders, in approximate order of appearance. */
13509
13510static void
13511do_neon_dyadic_i_su (void)
13512{
037e8744 13513 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13514 struct neon_type_el et = neon_check_type (3, rs,
13515 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 13516 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13517}
13518
13519static void
13520do_neon_dyadic_i64_su (void)
13521{
037e8744 13522 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13523 struct neon_type_el et = neon_check_type (3, rs,
13524 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 13525 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13526}
13527
13528static void
13529neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
13530 unsigned immbits)
13531{
13532 unsigned size = et.size >> 3;
13533 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13534 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13535 inst.instruction |= LOW4 (inst.operands[1].reg);
13536 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13537 inst.instruction |= (isquad != 0) << 6;
13538 inst.instruction |= immbits << 16;
13539 inst.instruction |= (size >> 3) << 7;
13540 inst.instruction |= (size & 0x7) << 19;
13541 if (write_ubit)
13542 inst.instruction |= (uval != 0) << 24;
13543
88714cb8 13544 neon_dp_fixup (&inst);
5287ad62
JB
13545}
13546
13547static void
13548do_neon_shl_imm (void)
13549{
13550 if (!inst.operands[2].isreg)
13551 {
037e8744 13552 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13553 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
88714cb8 13554 NEON_ENCODE (IMMED, inst);
037e8744 13555 neon_imm_shift (FALSE, 0, neon_quad (rs), et, inst.operands[2].imm);
5287ad62
JB
13556 }
13557 else
13558 {
037e8744 13559 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13560 struct neon_type_el et = neon_check_type (3, rs,
13561 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13562 unsigned int tmp;
13563
13564 /* VSHL/VQSHL 3-register variants have syntax such as:
13565 vshl.xx Dd, Dm, Dn
13566 whereas other 3-register operations encoded by neon_three_same have
13567 syntax like:
13568 vadd.xx Dd, Dn, Dm
13569 (i.e. with Dn & Dm reversed). Swap operands[1].reg and operands[2].reg
13570 here. */
13571 tmp = inst.operands[2].reg;
13572 inst.operands[2].reg = inst.operands[1].reg;
13573 inst.operands[1].reg = tmp;
88714cb8 13574 NEON_ENCODE (INTEGER, inst);
037e8744 13575 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13576 }
13577}
13578
13579static void
13580do_neon_qshl_imm (void)
13581{
13582 if (!inst.operands[2].isreg)
13583 {
037e8744 13584 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13585 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
627907b7 13586
88714cb8 13587 NEON_ENCODE (IMMED, inst);
037e8744 13588 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
13589 inst.operands[2].imm);
13590 }
13591 else
13592 {
037e8744 13593 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13594 struct neon_type_el et = neon_check_type (3, rs,
13595 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13596 unsigned int tmp;
13597
13598 /* See note in do_neon_shl_imm. */
13599 tmp = inst.operands[2].reg;
13600 inst.operands[2].reg = inst.operands[1].reg;
13601 inst.operands[1].reg = tmp;
88714cb8 13602 NEON_ENCODE (INTEGER, inst);
037e8744 13603 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13604 }
13605}
13606
627907b7
JB
13607static void
13608do_neon_rshl (void)
13609{
13610 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
13611 struct neon_type_el et = neon_check_type (3, rs,
13612 N_EQK, N_EQK, N_SU_ALL | N_KEY);
13613 unsigned int tmp;
13614
13615 tmp = inst.operands[2].reg;
13616 inst.operands[2].reg = inst.operands[1].reg;
13617 inst.operands[1].reg = tmp;
13618 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
13619}
13620
5287ad62
JB
13621static int
13622neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
13623{
036dc3f7
PB
13624 /* Handle .I8 pseudo-instructions. */
13625 if (size == 8)
5287ad62 13626 {
5287ad62
JB
13627 /* Unfortunately, this will make everything apart from zero out-of-range.
13628 FIXME is this the intended semantics? There doesn't seem much point in
13629 accepting .I8 if so. */
13630 immediate |= immediate << 8;
13631 size = 16;
036dc3f7
PB
13632 }
13633
13634 if (size >= 32)
13635 {
13636 if (immediate == (immediate & 0x000000ff))
13637 {
13638 *immbits = immediate;
13639 return 0x1;
13640 }
13641 else if (immediate == (immediate & 0x0000ff00))
13642 {
13643 *immbits = immediate >> 8;
13644 return 0x3;
13645 }
13646 else if (immediate == (immediate & 0x00ff0000))
13647 {
13648 *immbits = immediate >> 16;
13649 return 0x5;
13650 }
13651 else if (immediate == (immediate & 0xff000000))
13652 {
13653 *immbits = immediate >> 24;
13654 return 0x7;
13655 }
13656 if ((immediate & 0xffff) != (immediate >> 16))
13657 goto bad_immediate;
13658 immediate &= 0xffff;
5287ad62
JB
13659 }
13660
13661 if (immediate == (immediate & 0x000000ff))
13662 {
13663 *immbits = immediate;
036dc3f7 13664 return 0x9;
5287ad62
JB
13665 }
13666 else if (immediate == (immediate & 0x0000ff00))
13667 {
13668 *immbits = immediate >> 8;
036dc3f7 13669 return 0xb;
5287ad62
JB
13670 }
13671
13672 bad_immediate:
dcbf9037 13673 first_error (_("immediate value out of range"));
5287ad62
JB
13674 return FAIL;
13675}
13676
13677/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
13678 A, B, C, D. */
13679
13680static int
13681neon_bits_same_in_bytes (unsigned imm)
13682{
13683 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
13684 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
13685 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
13686 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
13687}
13688
13689/* For immediate of above form, return 0bABCD. */
13690
13691static unsigned
13692neon_squash_bits (unsigned imm)
13693{
13694 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
13695 | ((imm & 0x01000000) >> 21);
13696}
13697
136da414 13698/* Compress quarter-float representation to 0b...000 abcdefgh. */
5287ad62
JB
13699
13700static unsigned
13701neon_qfloat_bits (unsigned imm)
13702{
136da414 13703 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
5287ad62
JB
13704}
13705
13706/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
13707 the instruction. *OP is passed as the initial value of the op field, and
13708 may be set to a different value depending on the constant (i.e.
13709 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
5f4273c7 13710 MVN). If the immediate looks like a repeated pattern then also
036dc3f7 13711 try smaller element sizes. */
5287ad62
JB
13712
13713static int
c96612cc
JB
13714neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
13715 unsigned *immbits, int *op, int size,
13716 enum neon_el_type type)
5287ad62 13717{
c96612cc
JB
13718 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
13719 float. */
13720 if (type == NT_float && !float_p)
13721 return FAIL;
13722
136da414
JB
13723 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
13724 {
13725 if (size != 32 || *op == 1)
13726 return FAIL;
13727 *immbits = neon_qfloat_bits (immlo);
13728 return 0xf;
13729 }
036dc3f7
PB
13730
13731 if (size == 64)
5287ad62 13732 {
036dc3f7
PB
13733 if (neon_bits_same_in_bytes (immhi)
13734 && neon_bits_same_in_bytes (immlo))
13735 {
13736 if (*op == 1)
13737 return FAIL;
13738 *immbits = (neon_squash_bits (immhi) << 4)
13739 | neon_squash_bits (immlo);
13740 *op = 1;
13741 return 0xe;
13742 }
13743
13744 if (immhi != immlo)
13745 return FAIL;
5287ad62 13746 }
036dc3f7
PB
13747
13748 if (size >= 32)
5287ad62 13749 {
036dc3f7
PB
13750 if (immlo == (immlo & 0x000000ff))
13751 {
13752 *immbits = immlo;
13753 return 0x0;
13754 }
13755 else if (immlo == (immlo & 0x0000ff00))
13756 {
13757 *immbits = immlo >> 8;
13758 return 0x2;
13759 }
13760 else if (immlo == (immlo & 0x00ff0000))
13761 {
13762 *immbits = immlo >> 16;
13763 return 0x4;
13764 }
13765 else if (immlo == (immlo & 0xff000000))
13766 {
13767 *immbits = immlo >> 24;
13768 return 0x6;
13769 }
13770 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
13771 {
13772 *immbits = (immlo >> 8) & 0xff;
13773 return 0xc;
13774 }
13775 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
13776 {
13777 *immbits = (immlo >> 16) & 0xff;
13778 return 0xd;
13779 }
13780
13781 if ((immlo & 0xffff) != (immlo >> 16))
13782 return FAIL;
13783 immlo &= 0xffff;
5287ad62 13784 }
036dc3f7
PB
13785
13786 if (size >= 16)
5287ad62 13787 {
036dc3f7
PB
13788 if (immlo == (immlo & 0x000000ff))
13789 {
13790 *immbits = immlo;
13791 return 0x8;
13792 }
13793 else if (immlo == (immlo & 0x0000ff00))
13794 {
13795 *immbits = immlo >> 8;
13796 return 0xa;
13797 }
13798
13799 if ((immlo & 0xff) != (immlo >> 8))
13800 return FAIL;
13801 immlo &= 0xff;
5287ad62 13802 }
036dc3f7
PB
13803
13804 if (immlo == (immlo & 0x000000ff))
5287ad62 13805 {
036dc3f7
PB
13806 /* Don't allow MVN with 8-bit immediate. */
13807 if (*op == 1)
13808 return FAIL;
13809 *immbits = immlo;
13810 return 0xe;
5287ad62 13811 }
5287ad62
JB
13812
13813 return FAIL;
13814}
13815
13816/* Write immediate bits [7:0] to the following locations:
13817
13818 |28/24|23 19|18 16|15 4|3 0|
13819 | 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|
13820
13821 This function is used by VMOV/VMVN/VORR/VBIC. */
13822
13823static void
13824neon_write_immbits (unsigned immbits)
13825{
13826 inst.instruction |= immbits & 0xf;
13827 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
13828 inst.instruction |= ((immbits >> 7) & 0x1) << 24;
13829}
13830
13831/* Invert low-order SIZE bits of XHI:XLO. */
13832
13833static void
13834neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
13835{
13836 unsigned immlo = xlo ? *xlo : 0;
13837 unsigned immhi = xhi ? *xhi : 0;
13838
13839 switch (size)
13840 {
13841 case 8:
13842 immlo = (~immlo) & 0xff;
13843 break;
13844
13845 case 16:
13846 immlo = (~immlo) & 0xffff;
13847 break;
13848
13849 case 64:
13850 immhi = (~immhi) & 0xffffffff;
13851 /* fall through. */
13852
13853 case 32:
13854 immlo = (~immlo) & 0xffffffff;
13855 break;
13856
13857 default:
13858 abort ();
13859 }
13860
13861 if (xlo)
13862 *xlo = immlo;
13863
13864 if (xhi)
13865 *xhi = immhi;
13866}
13867
13868static void
13869do_neon_logic (void)
13870{
13871 if (inst.operands[2].present && inst.operands[2].isreg)
13872 {
037e8744 13873 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13874 neon_check_type (3, rs, N_IGNORE_TYPE);
13875 /* U bit and size field were set as part of the bitmask. */
88714cb8 13876 NEON_ENCODE (INTEGER, inst);
037e8744 13877 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13878 }
13879 else
13880 {
4316f0d2
DG
13881 const int three_ops_form = (inst.operands[2].present
13882 && !inst.operands[2].isreg);
13883 const int immoperand = (three_ops_form ? 2 : 1);
13884 enum neon_shape rs = (three_ops_form
13885 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
13886 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
037e8744
JB
13887 struct neon_type_el et = neon_check_type (2, rs,
13888 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
21d799b5 13889 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
5287ad62
JB
13890 unsigned immbits;
13891 int cmode;
5f4273c7 13892
5287ad62
JB
13893 if (et.type == NT_invtype)
13894 return;
5f4273c7 13895
4316f0d2
DG
13896 if (three_ops_form)
13897 constraint (inst.operands[0].reg != inst.operands[1].reg,
13898 _("first and second operands shall be the same register"));
13899
88714cb8 13900 NEON_ENCODE (IMMED, inst);
5287ad62 13901
4316f0d2 13902 immbits = inst.operands[immoperand].imm;
036dc3f7
PB
13903 if (et.size == 64)
13904 {
13905 /* .i64 is a pseudo-op, so the immediate must be a repeating
13906 pattern. */
4316f0d2
DG
13907 if (immbits != (inst.operands[immoperand].regisimm ?
13908 inst.operands[immoperand].reg : 0))
036dc3f7
PB
13909 {
13910 /* Set immbits to an invalid constant. */
13911 immbits = 0xdeadbeef;
13912 }
13913 }
13914
5287ad62
JB
13915 switch (opcode)
13916 {
13917 case N_MNEM_vbic:
036dc3f7 13918 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
5287ad62 13919 break;
5f4273c7 13920
5287ad62 13921 case N_MNEM_vorr:
036dc3f7 13922 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
5287ad62 13923 break;
5f4273c7 13924
5287ad62
JB
13925 case N_MNEM_vand:
13926 /* Pseudo-instruction for VBIC. */
5287ad62
JB
13927 neon_invert_size (&immbits, 0, et.size);
13928 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13929 break;
5f4273c7 13930
5287ad62
JB
13931 case N_MNEM_vorn:
13932 /* Pseudo-instruction for VORR. */
5287ad62
JB
13933 neon_invert_size (&immbits, 0, et.size);
13934 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13935 break;
5f4273c7 13936
5287ad62
JB
13937 default:
13938 abort ();
13939 }
13940
13941 if (cmode == FAIL)
13942 return;
13943
037e8744 13944 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
13945 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13946 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13947 inst.instruction |= cmode << 8;
13948 neon_write_immbits (immbits);
5f4273c7 13949
88714cb8 13950 neon_dp_fixup (&inst);
5287ad62
JB
13951 }
13952}
13953
13954static void
13955do_neon_bitfield (void)
13956{
037e8744 13957 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 13958 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 13959 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13960}
13961
13962static void
dcbf9037
JB
13963neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
13964 unsigned destbits)
5287ad62 13965{
037e8744 13966 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037
JB
13967 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
13968 types | N_KEY);
5287ad62
JB
13969 if (et.type == NT_float)
13970 {
88714cb8 13971 NEON_ENCODE (FLOAT, inst);
037e8744 13972 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13973 }
13974 else
13975 {
88714cb8 13976 NEON_ENCODE (INTEGER, inst);
037e8744 13977 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
13978 }
13979}
13980
13981static void
13982do_neon_dyadic_if_su (void)
13983{
dcbf9037 13984 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13985}
13986
13987static void
13988do_neon_dyadic_if_su_d (void)
13989{
13990 /* This version only allow D registers, but that constraint is enforced during
13991 operand parsing so we don't need to do anything extra here. */
dcbf9037 13992 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13993}
13994
5287ad62
JB
13995static void
13996do_neon_dyadic_if_i_d (void)
13997{
428e3f1f
PB
13998 /* The "untyped" case can't happen. Do this to stop the "U" bit being
13999 affected if we specify unsigned args. */
14000 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
14001}
14002
037e8744
JB
14003enum vfp_or_neon_is_neon_bits
14004{
14005 NEON_CHECK_CC = 1,
73924fbc
MGD
14006 NEON_CHECK_ARCH = 2,
14007 NEON_CHECK_ARCH8 = 4
037e8744
JB
14008};
14009
14010/* Call this function if an instruction which may have belonged to the VFP or
14011 Neon instruction sets, but turned out to be a Neon instruction (due to the
14012 operand types involved, etc.). We have to check and/or fix-up a couple of
14013 things:
14014
14015 - Make sure the user hasn't attempted to make a Neon instruction
14016 conditional.
14017 - Alter the value in the condition code field if necessary.
14018 - Make sure that the arch supports Neon instructions.
14019
14020 Which of these operations take place depends on bits from enum
14021 vfp_or_neon_is_neon_bits.
14022
14023 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
14024 current instruction's condition is COND_ALWAYS, the condition field is
14025 changed to inst.uncond_value. This is necessary because instructions shared
14026 between VFP and Neon may be conditional for the VFP variants only, and the
14027 unconditional Neon version must have, e.g., 0xF in the condition field. */
14028
14029static int
14030vfp_or_neon_is_neon (unsigned check)
14031{
14032 /* Conditions are always legal in Thumb mode (IT blocks). */
14033 if (!thumb_mode && (check & NEON_CHECK_CC))
14034 {
14035 if (inst.cond != COND_ALWAYS)
14036 {
14037 first_error (_(BAD_COND));
14038 return FAIL;
14039 }
14040 if (inst.uncond_value != -1)
14041 inst.instruction |= inst.uncond_value << 28;
14042 }
5f4273c7 14043
037e8744 14044 if ((check & NEON_CHECK_ARCH)
73924fbc
MGD
14045 && !mark_feature_used (&fpu_neon_ext_v1))
14046 {
14047 first_error (_(BAD_FPU));
14048 return FAIL;
14049 }
14050
14051 if ((check & NEON_CHECK_ARCH8)
14052 && !mark_feature_used (&fpu_neon_ext_armv8))
037e8744
JB
14053 {
14054 first_error (_(BAD_FPU));
14055 return FAIL;
14056 }
5f4273c7 14057
037e8744
JB
14058 return SUCCESS;
14059}
14060
5287ad62
JB
14061static void
14062do_neon_addsub_if_i (void)
14063{
037e8744
JB
14064 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
14065 return;
14066
14067 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14068 return;
14069
5287ad62
JB
14070 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14071 affected if we specify unsigned args. */
dcbf9037 14072 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
14073}
14074
14075/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
14076 result to be:
14077 V<op> A,B (A is operand 0, B is operand 2)
14078 to mean:
14079 V<op> A,B,A
14080 not:
14081 V<op> A,B,B
14082 so handle that case specially. */
14083
14084static void
14085neon_exchange_operands (void)
14086{
14087 void *scratch = alloca (sizeof (inst.operands[0]));
14088 if (inst.operands[1].present)
14089 {
14090 /* Swap operands[1] and operands[2]. */
14091 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
14092 inst.operands[1] = inst.operands[2];
14093 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
14094 }
14095 else
14096 {
14097 inst.operands[1] = inst.operands[2];
14098 inst.operands[2] = inst.operands[0];
14099 }
14100}
14101
14102static void
14103neon_compare (unsigned regtypes, unsigned immtypes, int invert)
14104{
14105 if (inst.operands[2].isreg)
14106 {
14107 if (invert)
14108 neon_exchange_operands ();
dcbf9037 14109 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
14110 }
14111 else
14112 {
037e8744 14113 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037
JB
14114 struct neon_type_el et = neon_check_type (2, rs,
14115 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62 14116
88714cb8 14117 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14118 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14119 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14120 inst.instruction |= LOW4 (inst.operands[1].reg);
14121 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14122 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14123 inst.instruction |= (et.type == NT_float) << 10;
14124 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14125
88714cb8 14126 neon_dp_fixup (&inst);
5287ad62
JB
14127 }
14128}
14129
14130static void
14131do_neon_cmp (void)
14132{
14133 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
14134}
14135
14136static void
14137do_neon_cmp_inv (void)
14138{
14139 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
14140}
14141
14142static void
14143do_neon_ceq (void)
14144{
14145 neon_compare (N_IF_32, N_IF_32, FALSE);
14146}
14147
14148/* For multiply instructions, we have the possibility of 16-bit or 32-bit
14149 scalars, which are encoded in 5 bits, M : Rm.
14150 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
14151 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
14152 index in M. */
14153
14154static unsigned
14155neon_scalar_for_mul (unsigned scalar, unsigned elsize)
14156{
dcbf9037
JB
14157 unsigned regno = NEON_SCALAR_REG (scalar);
14158 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
14159
14160 switch (elsize)
14161 {
14162 case 16:
14163 if (regno > 7 || elno > 3)
14164 goto bad_scalar;
14165 return regno | (elno << 3);
5f4273c7 14166
5287ad62
JB
14167 case 32:
14168 if (regno > 15 || elno > 1)
14169 goto bad_scalar;
14170 return regno | (elno << 4);
14171
14172 default:
14173 bad_scalar:
dcbf9037 14174 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
14175 }
14176
14177 return 0;
14178}
14179
14180/* Encode multiply / multiply-accumulate scalar instructions. */
14181
14182static void
14183neon_mul_mac (struct neon_type_el et, int ubit)
14184{
dcbf9037
JB
14185 unsigned scalar;
14186
14187 /* Give a more helpful error message if we have an invalid type. */
14188 if (et.type == NT_invtype)
14189 return;
5f4273c7 14190
dcbf9037 14191 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
14192 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14193 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14194 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14195 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14196 inst.instruction |= LOW4 (scalar);
14197 inst.instruction |= HI1 (scalar) << 5;
14198 inst.instruction |= (et.type == NT_float) << 8;
14199 inst.instruction |= neon_logbits (et.size) << 20;
14200 inst.instruction |= (ubit != 0) << 24;
14201
88714cb8 14202 neon_dp_fixup (&inst);
5287ad62
JB
14203}
14204
14205static void
14206do_neon_mac_maybe_scalar (void)
14207{
037e8744
JB
14208 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
14209 return;
14210
14211 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14212 return;
14213
5287ad62
JB
14214 if (inst.operands[2].isscalar)
14215 {
037e8744 14216 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
14217 struct neon_type_el et = neon_check_type (3, rs,
14218 N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
88714cb8 14219 NEON_ENCODE (SCALAR, inst);
037e8744 14220 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14221 }
14222 else
428e3f1f
PB
14223 {
14224 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14225 affected if we specify unsigned args. */
14226 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14227 }
5287ad62
JB
14228}
14229
62f3b8c8
PB
14230static void
14231do_neon_fmac (void)
14232{
14233 if (try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
14234 return;
14235
14236 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14237 return;
14238
14239 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14240}
14241
5287ad62
JB
14242static void
14243do_neon_tst (void)
14244{
037e8744 14245 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14246 struct neon_type_el et = neon_check_type (3, rs,
14247 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 14248 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14249}
14250
14251/* VMUL with 3 registers allows the P8 type. The scalar version supports the
14252 same types as the MAC equivalents. The polynomial type for this instruction
14253 is encoded the same as the integer type. */
14254
14255static void
14256do_neon_mul (void)
14257{
037e8744
JB
14258 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
14259 return;
14260
14261 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14262 return;
14263
5287ad62
JB
14264 if (inst.operands[2].isscalar)
14265 do_neon_mac_maybe_scalar ();
14266 else
dcbf9037 14267 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
5287ad62
JB
14268}
14269
14270static void
14271do_neon_qdmulh (void)
14272{
14273 if (inst.operands[2].isscalar)
14274 {
037e8744 14275 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
14276 struct neon_type_el et = neon_check_type (3, rs,
14277 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14278 NEON_ENCODE (SCALAR, inst);
037e8744 14279 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14280 }
14281 else
14282 {
037e8744 14283 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14284 struct neon_type_el et = neon_check_type (3, rs,
14285 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14286 NEON_ENCODE (INTEGER, inst);
5287ad62 14287 /* The U bit (rounding) comes from bit mask. */
037e8744 14288 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14289 }
14290}
14291
14292static void
14293do_neon_fcmp_absolute (void)
14294{
037e8744 14295 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14296 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
14297 /* Size field comes from bit mask. */
037e8744 14298 neon_three_same (neon_quad (rs), 1, -1);
5287ad62
JB
14299}
14300
14301static void
14302do_neon_fcmp_absolute_inv (void)
14303{
14304 neon_exchange_operands ();
14305 do_neon_fcmp_absolute ();
14306}
14307
14308static void
14309do_neon_step (void)
14310{
037e8744 14311 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14312 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
037e8744 14313 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14314}
14315
14316static void
14317do_neon_abs_neg (void)
14318{
037e8744
JB
14319 enum neon_shape rs;
14320 struct neon_type_el et;
5f4273c7 14321
037e8744
JB
14322 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
14323 return;
14324
14325 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14326 return;
14327
14328 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
14329 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
5f4273c7 14330
5287ad62
JB
14331 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14332 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14333 inst.instruction |= LOW4 (inst.operands[1].reg);
14334 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14335 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14336 inst.instruction |= (et.type == NT_float) << 10;
14337 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14338
88714cb8 14339 neon_dp_fixup (&inst);
5287ad62
JB
14340}
14341
14342static void
14343do_neon_sli (void)
14344{
037e8744 14345 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14346 struct neon_type_el et = neon_check_type (2, rs,
14347 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14348 int imm = inst.operands[2].imm;
14349 constraint (imm < 0 || (unsigned)imm >= et.size,
14350 _("immediate out of range for insert"));
037e8744 14351 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14352}
14353
14354static void
14355do_neon_sri (void)
14356{
037e8744 14357 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14358 struct neon_type_el et = neon_check_type (2, rs,
14359 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14360 int imm = inst.operands[2].imm;
14361 constraint (imm < 1 || (unsigned)imm > et.size,
14362 _("immediate out of range for insert"));
037e8744 14363 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
14364}
14365
14366static void
14367do_neon_qshlu_imm (void)
14368{
037e8744 14369 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14370 struct neon_type_el et = neon_check_type (2, rs,
14371 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
14372 int imm = inst.operands[2].imm;
14373 constraint (imm < 0 || (unsigned)imm >= et.size,
14374 _("immediate out of range for shift"));
14375 /* Only encodes the 'U present' variant of the instruction.
14376 In this case, signed types have OP (bit 8) set to 0.
14377 Unsigned types have OP set to 1. */
14378 inst.instruction |= (et.type == NT_unsigned) << 8;
14379 /* The rest of the bits are the same as other immediate shifts. */
037e8744 14380 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14381}
14382
14383static void
14384do_neon_qmovn (void)
14385{
14386 struct neon_type_el et = neon_check_type (2, NS_DQ,
14387 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14388 /* Saturating move where operands can be signed or unsigned, and the
14389 destination has the same signedness. */
88714cb8 14390 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14391 if (et.type == NT_unsigned)
14392 inst.instruction |= 0xc0;
14393 else
14394 inst.instruction |= 0x80;
14395 neon_two_same (0, 1, et.size / 2);
14396}
14397
14398static void
14399do_neon_qmovun (void)
14400{
14401 struct neon_type_el et = neon_check_type (2, NS_DQ,
14402 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14403 /* Saturating move with unsigned results. Operands must be signed. */
88714cb8 14404 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14405 neon_two_same (0, 1, et.size / 2);
14406}
14407
14408static void
14409do_neon_rshift_sat_narrow (void)
14410{
14411 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14412 or unsigned. If operands are unsigned, results must also be unsigned. */
14413 struct neon_type_el et = neon_check_type (2, NS_DQI,
14414 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14415 int imm = inst.operands[2].imm;
14416 /* This gets the bounds check, size encoding and immediate bits calculation
14417 right. */
14418 et.size /= 2;
5f4273c7 14419
5287ad62
JB
14420 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
14421 VQMOVN.I<size> <Dd>, <Qm>. */
14422 if (imm == 0)
14423 {
14424 inst.operands[2].present = 0;
14425 inst.instruction = N_MNEM_vqmovn;
14426 do_neon_qmovn ();
14427 return;
14428 }
5f4273c7 14429
5287ad62
JB
14430 constraint (imm < 1 || (unsigned)imm > et.size,
14431 _("immediate out of range"));
14432 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
14433}
14434
14435static void
14436do_neon_rshift_sat_narrow_u (void)
14437{
14438 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14439 or unsigned. If operands are unsigned, results must also be unsigned. */
14440 struct neon_type_el et = neon_check_type (2, NS_DQI,
14441 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14442 int imm = inst.operands[2].imm;
14443 /* This gets the bounds check, size encoding and immediate bits calculation
14444 right. */
14445 et.size /= 2;
14446
14447 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
14448 VQMOVUN.I<size> <Dd>, <Qm>. */
14449 if (imm == 0)
14450 {
14451 inst.operands[2].present = 0;
14452 inst.instruction = N_MNEM_vqmovun;
14453 do_neon_qmovun ();
14454 return;
14455 }
14456
14457 constraint (imm < 1 || (unsigned)imm > et.size,
14458 _("immediate out of range"));
14459 /* FIXME: The manual is kind of unclear about what value U should have in
14460 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
14461 must be 1. */
14462 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
14463}
14464
14465static void
14466do_neon_movn (void)
14467{
14468 struct neon_type_el et = neon_check_type (2, NS_DQ,
14469 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
88714cb8 14470 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14471 neon_two_same (0, 1, et.size / 2);
14472}
14473
14474static void
14475do_neon_rshift_narrow (void)
14476{
14477 struct neon_type_el et = neon_check_type (2, NS_DQI,
14478 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
14479 int imm = inst.operands[2].imm;
14480 /* This gets the bounds check, size encoding and immediate bits calculation
14481 right. */
14482 et.size /= 2;
5f4273c7 14483
5287ad62
JB
14484 /* If immediate is zero then we are a pseudo-instruction for
14485 VMOVN.I<size> <Dd>, <Qm> */
14486 if (imm == 0)
14487 {
14488 inst.operands[2].present = 0;
14489 inst.instruction = N_MNEM_vmovn;
14490 do_neon_movn ();
14491 return;
14492 }
5f4273c7 14493
5287ad62
JB
14494 constraint (imm < 1 || (unsigned)imm > et.size,
14495 _("immediate out of range for narrowing operation"));
14496 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
14497}
14498
14499static void
14500do_neon_shll (void)
14501{
14502 /* FIXME: Type checking when lengthening. */
14503 struct neon_type_el et = neon_check_type (2, NS_QDI,
14504 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
14505 unsigned imm = inst.operands[2].imm;
14506
14507 if (imm == et.size)
14508 {
14509 /* Maximum shift variant. */
88714cb8 14510 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14511 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14512 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14513 inst.instruction |= LOW4 (inst.operands[1].reg);
14514 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14515 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14516
88714cb8 14517 neon_dp_fixup (&inst);
5287ad62
JB
14518 }
14519 else
14520 {
14521 /* A more-specific type check for non-max versions. */
14522 et = neon_check_type (2, NS_QDI,
14523 N_EQK | N_DBL, N_SU_32 | N_KEY);
88714cb8 14524 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14525 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
14526 }
14527}
14528
037e8744 14529/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
14530 the current instruction is. */
14531
6b9a8b67
MGD
14532#define CVT_FLAVOUR_VAR \
14533 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
14534 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
14535 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
14536 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
14537 /* Half-precision conversions. */ \
14538 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
14539 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
14540 /* VFP instructions. */ \
14541 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
14542 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
14543 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
14544 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
14545 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
14546 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
14547 /* VFP instructions with bitshift. */ \
14548 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
14549 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
14550 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
14551 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
14552 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
14553 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
14554 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
14555 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
14556
14557#define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
14558 neon_cvt_flavour_##C,
14559
14560/* The different types of conversions we can do. */
14561enum neon_cvt_flavour
14562{
14563 CVT_FLAVOUR_VAR
14564 neon_cvt_flavour_invalid,
14565 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
14566};
14567
14568#undef CVT_VAR
14569
14570static enum neon_cvt_flavour
14571get_neon_cvt_flavour (enum neon_shape rs)
5287ad62 14572{
6b9a8b67
MGD
14573#define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
14574 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
14575 if (et.type != NT_invtype) \
14576 { \
14577 inst.error = NULL; \
14578 return (neon_cvt_flavour_##C); \
5287ad62 14579 }
6b9a8b67 14580
5287ad62 14581 struct neon_type_el et;
037e8744
JB
14582 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
14583 || rs == NS_FF) ? N_VFP : 0;
14584 /* The instruction versions which take an immediate take one register
14585 argument, which is extended to the width of the full register. Thus the
14586 "source" and "destination" registers must have the same width. Hack that
14587 here by making the size equal to the key (wider, in this case) operand. */
14588 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5f4273c7 14589
6b9a8b67
MGD
14590 CVT_FLAVOUR_VAR;
14591
14592 return neon_cvt_flavour_invalid;
5287ad62
JB
14593#undef CVT_VAR
14594}
14595
7e8e6784
MGD
14596enum neon_cvt_mode
14597{
14598 neon_cvt_mode_a,
14599 neon_cvt_mode_n,
14600 neon_cvt_mode_p,
14601 neon_cvt_mode_m,
14602 neon_cvt_mode_z,
30bdf752
MGD
14603 neon_cvt_mode_x,
14604 neon_cvt_mode_r
7e8e6784
MGD
14605};
14606
037e8744
JB
14607/* Neon-syntax VFP conversions. */
14608
5287ad62 14609static void
6b9a8b67 14610do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
5287ad62 14611{
037e8744 14612 const char *opname = 0;
5f4273c7 14613
037e8744 14614 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
5287ad62 14615 {
037e8744
JB
14616 /* Conversions with immediate bitshift. */
14617 const char *enc[] =
14618 {
6b9a8b67
MGD
14619#define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
14620 CVT_FLAVOUR_VAR
14621 NULL
14622#undef CVT_VAR
037e8744
JB
14623 };
14624
6b9a8b67 14625 if (flavour < (int) ARRAY_SIZE (enc))
037e8744
JB
14626 {
14627 opname = enc[flavour];
14628 constraint (inst.operands[0].reg != inst.operands[1].reg,
14629 _("operands 0 and 1 must be the same register"));
14630 inst.operands[1] = inst.operands[2];
14631 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
14632 }
5287ad62
JB
14633 }
14634 else
14635 {
037e8744
JB
14636 /* Conversions without bitshift. */
14637 const char *enc[] =
14638 {
6b9a8b67
MGD
14639#define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
14640 CVT_FLAVOUR_VAR
14641 NULL
14642#undef CVT_VAR
037e8744
JB
14643 };
14644
6b9a8b67 14645 if (flavour < (int) ARRAY_SIZE (enc))
037e8744
JB
14646 opname = enc[flavour];
14647 }
14648
14649 if (opname)
14650 do_vfp_nsyn_opcode (opname);
14651}
14652
14653static void
14654do_vfp_nsyn_cvtz (void)
14655{
14656 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
6b9a8b67 14657 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744
JB
14658 const char *enc[] =
14659 {
6b9a8b67
MGD
14660#define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
14661 CVT_FLAVOUR_VAR
14662 NULL
14663#undef CVT_VAR
037e8744
JB
14664 };
14665
6b9a8b67 14666 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
037e8744
JB
14667 do_vfp_nsyn_opcode (enc[flavour]);
14668}
f31fef98 14669
037e8744 14670static void
bacebabc 14671do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
7e8e6784
MGD
14672 enum neon_cvt_mode mode)
14673{
14674 int sz, op;
14675 int rm;
14676
14677 set_it_insn_type (OUTSIDE_IT_INSN);
14678
14679 switch (flavour)
14680 {
14681 case neon_cvt_flavour_s32_f64:
14682 sz = 1;
14683 op = 0;
14684 break;
14685 case neon_cvt_flavour_s32_f32:
14686 sz = 0;
14687 op = 1;
14688 break;
14689 case neon_cvt_flavour_u32_f64:
14690 sz = 1;
14691 op = 0;
14692 break;
14693 case neon_cvt_flavour_u32_f32:
14694 sz = 0;
14695 op = 0;
14696 break;
14697 default:
14698 first_error (_("invalid instruction shape"));
14699 return;
14700 }
14701
14702 switch (mode)
14703 {
14704 case neon_cvt_mode_a: rm = 0; break;
14705 case neon_cvt_mode_n: rm = 1; break;
14706 case neon_cvt_mode_p: rm = 2; break;
14707 case neon_cvt_mode_m: rm = 3; break;
14708 default: first_error (_("invalid rounding mode")); return;
14709 }
14710
14711 NEON_ENCODE (FPV8, inst);
14712 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
14713 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
14714 inst.instruction |= sz << 8;
14715 inst.instruction |= op << 7;
14716 inst.instruction |= rm << 16;
14717 inst.instruction |= 0xf0000000;
14718 inst.is_neon = TRUE;
14719}
14720
14721static void
14722do_neon_cvt_1 (enum neon_cvt_mode mode)
037e8744
JB
14723{
14724 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
8e79c3df 14725 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ, NS_NULL);
6b9a8b67 14726 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744 14727
e3e535bc 14728 /* PR11109: Handle round-to-zero for VCVT conversions. */
7e8e6784 14729 if (mode == neon_cvt_mode_z
e3e535bc 14730 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
bacebabc
RM
14731 && (flavour == neon_cvt_flavour_s32_f32
14732 || flavour == neon_cvt_flavour_u32_f32
14733 || flavour == neon_cvt_flavour_s32_f64
6b9a8b67 14734 || flavour == neon_cvt_flavour_u32_f64)
e3e535bc
NC
14735 && (rs == NS_FD || rs == NS_FF))
14736 {
14737 do_vfp_nsyn_cvtz ();
14738 return;
14739 }
14740
037e8744 14741 /* VFP rather than Neon conversions. */
6b9a8b67 14742 if (flavour >= neon_cvt_flavour_first_fp)
037e8744 14743 {
7e8e6784
MGD
14744 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
14745 do_vfp_nsyn_cvt (rs, flavour);
14746 else
14747 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
14748
037e8744
JB
14749 return;
14750 }
14751
14752 switch (rs)
14753 {
14754 case NS_DDI:
14755 case NS_QQI:
14756 {
35997600
NC
14757 unsigned immbits;
14758 unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
14759
037e8744
JB
14760 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14761 return;
14762
14763 /* Fixed-point conversion with #0 immediate is encoded as an
14764 integer conversion. */
14765 if (inst.operands[2].present && inst.operands[2].imm == 0)
14766 goto int_encode;
35997600 14767 immbits = 32 - inst.operands[2].imm;
88714cb8 14768 NEON_ENCODE (IMMED, inst);
6b9a8b67 14769 if (flavour != neon_cvt_flavour_invalid)
037e8744
JB
14770 inst.instruction |= enctab[flavour];
14771 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14772 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14773 inst.instruction |= LOW4 (inst.operands[1].reg);
14774 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14775 inst.instruction |= neon_quad (rs) << 6;
14776 inst.instruction |= 1 << 21;
14777 inst.instruction |= immbits << 16;
14778
88714cb8 14779 neon_dp_fixup (&inst);
037e8744
JB
14780 }
14781 break;
14782
14783 case NS_DD:
14784 case NS_QQ:
7e8e6784
MGD
14785 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
14786 {
14787 NEON_ENCODE (FLOAT, inst);
14788 set_it_insn_type (OUTSIDE_IT_INSN);
14789
14790 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
14791 return;
14792
14793 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14794 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14795 inst.instruction |= LOW4 (inst.operands[1].reg);
14796 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14797 inst.instruction |= neon_quad (rs) << 6;
14798 inst.instruction |= (flavour == neon_cvt_flavour_u32_f32) << 7;
14799 inst.instruction |= mode << 8;
14800 if (thumb_mode)
14801 inst.instruction |= 0xfc000000;
14802 else
14803 inst.instruction |= 0xf0000000;
14804 }
14805 else
14806 {
037e8744 14807 int_encode:
7e8e6784
MGD
14808 {
14809 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
037e8744 14810
7e8e6784 14811 NEON_ENCODE (INTEGER, inst);
037e8744 14812
7e8e6784
MGD
14813 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14814 return;
037e8744 14815
7e8e6784
MGD
14816 if (flavour != neon_cvt_flavour_invalid)
14817 inst.instruction |= enctab[flavour];
037e8744 14818
7e8e6784
MGD
14819 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14820 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14821 inst.instruction |= LOW4 (inst.operands[1].reg);
14822 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14823 inst.instruction |= neon_quad (rs) << 6;
14824 inst.instruction |= 2 << 18;
037e8744 14825
7e8e6784
MGD
14826 neon_dp_fixup (&inst);
14827 }
14828 }
14829 break;
037e8744 14830
8e79c3df
CM
14831 /* Half-precision conversions for Advanced SIMD -- neon. */
14832 case NS_QD:
14833 case NS_DQ:
14834
14835 if ((rs == NS_DQ)
14836 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
14837 {
14838 as_bad (_("operand size must match register width"));
14839 break;
14840 }
14841
14842 if ((rs == NS_QD)
14843 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
14844 {
14845 as_bad (_("operand size must match register width"));
14846 break;
14847 }
14848
14849 if (rs == NS_DQ)
14850 inst.instruction = 0x3b60600;
14851 else
14852 inst.instruction = 0x3b60700;
14853
14854 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14855 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14856 inst.instruction |= LOW4 (inst.operands[1].reg);
14857 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
88714cb8 14858 neon_dp_fixup (&inst);
8e79c3df
CM
14859 break;
14860
037e8744
JB
14861 default:
14862 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
7e8e6784
MGD
14863 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
14864 do_vfp_nsyn_cvt (rs, flavour);
14865 else
14866 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
5287ad62 14867 }
5287ad62
JB
14868}
14869
e3e535bc
NC
14870static void
14871do_neon_cvtr (void)
14872{
7e8e6784 14873 do_neon_cvt_1 (neon_cvt_mode_x);
e3e535bc
NC
14874}
14875
14876static void
14877do_neon_cvt (void)
14878{
7e8e6784
MGD
14879 do_neon_cvt_1 (neon_cvt_mode_z);
14880}
14881
14882static void
14883do_neon_cvta (void)
14884{
14885 do_neon_cvt_1 (neon_cvt_mode_a);
14886}
14887
14888static void
14889do_neon_cvtn (void)
14890{
14891 do_neon_cvt_1 (neon_cvt_mode_n);
14892}
14893
14894static void
14895do_neon_cvtp (void)
14896{
14897 do_neon_cvt_1 (neon_cvt_mode_p);
14898}
14899
14900static void
14901do_neon_cvtm (void)
14902{
14903 do_neon_cvt_1 (neon_cvt_mode_m);
e3e535bc
NC
14904}
14905
8e79c3df 14906static void
c70a8987 14907do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
8e79c3df 14908{
c70a8987
MGD
14909 if (is_double)
14910 mark_feature_used (&fpu_vfp_ext_armv8);
8e79c3df 14911
c70a8987
MGD
14912 encode_arm_vfp_reg (inst.operands[0].reg,
14913 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
14914 encode_arm_vfp_reg (inst.operands[1].reg,
14915 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
14916 inst.instruction |= to ? 0x10000 : 0;
14917 inst.instruction |= t ? 0x80 : 0;
14918 inst.instruction |= is_double ? 0x100 : 0;
14919 do_vfp_cond_or_thumb ();
14920}
8e79c3df 14921
c70a8987
MGD
14922static void
14923do_neon_cvttb_1 (bfd_boolean t)
14924{
14925 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_DF, NS_NULL);
8e79c3df 14926
c70a8987
MGD
14927 if (rs == NS_NULL)
14928 return;
14929 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
14930 {
14931 inst.error = NULL;
14932 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
14933 }
14934 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
14935 {
14936 inst.error = NULL;
14937 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
14938 }
14939 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
14940 {
14941 inst.error = NULL;
14942 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
14943 }
14944 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
14945 {
14946 inst.error = NULL;
14947 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
14948 }
14949 else
14950 return;
14951}
14952
14953static void
14954do_neon_cvtb (void)
14955{
14956 do_neon_cvttb_1 (FALSE);
8e79c3df
CM
14957}
14958
14959
14960static void
14961do_neon_cvtt (void)
14962{
c70a8987 14963 do_neon_cvttb_1 (TRUE);
8e79c3df
CM
14964}
14965
5287ad62
JB
14966static void
14967neon_move_immediate (void)
14968{
037e8744
JB
14969 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
14970 struct neon_type_el et = neon_check_type (2, rs,
14971 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62 14972 unsigned immlo, immhi = 0, immbits;
c96612cc 14973 int op, cmode, float_p;
5287ad62 14974
037e8744
JB
14975 constraint (et.type == NT_invtype,
14976 _("operand size must be specified for immediate VMOV"));
14977
5287ad62
JB
14978 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
14979 op = (inst.instruction & (1 << 5)) != 0;
14980
14981 immlo = inst.operands[1].imm;
14982 if (inst.operands[1].regisimm)
14983 immhi = inst.operands[1].reg;
14984
14985 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
14986 _("immediate has bits set outside the operand size"));
14987
c96612cc
JB
14988 float_p = inst.operands[1].immisfloat;
14989
14990 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
136da414 14991 et.size, et.type)) == FAIL)
5287ad62
JB
14992 {
14993 /* Invert relevant bits only. */
14994 neon_invert_size (&immlo, &immhi, et.size);
14995 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
14996 with one or the other; those cases are caught by
14997 neon_cmode_for_move_imm. */
14998 op = !op;
c96612cc
JB
14999 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
15000 &op, et.size, et.type)) == FAIL)
5287ad62 15001 {
dcbf9037 15002 first_error (_("immediate out of range"));
5287ad62
JB
15003 return;
15004 }
15005 }
15006
15007 inst.instruction &= ~(1 << 5);
15008 inst.instruction |= op << 5;
15009
15010 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15011 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 15012 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15013 inst.instruction |= cmode << 8;
15014
15015 neon_write_immbits (immbits);
15016}
15017
15018static void
15019do_neon_mvn (void)
15020{
15021 if (inst.operands[1].isreg)
15022 {
037e8744 15023 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5f4273c7 15024
88714cb8 15025 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15026 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15027 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15028 inst.instruction |= LOW4 (inst.operands[1].reg);
15029 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 15030 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15031 }
15032 else
15033 {
88714cb8 15034 NEON_ENCODE (IMMED, inst);
5287ad62
JB
15035 neon_move_immediate ();
15036 }
15037
88714cb8 15038 neon_dp_fixup (&inst);
5287ad62
JB
15039}
15040
15041/* Encode instructions of form:
15042
15043 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
5f4273c7 15044 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
5287ad62
JB
15045
15046static void
15047neon_mixed_length (struct neon_type_el et, unsigned size)
15048{
15049 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15050 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15051 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15052 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15053 inst.instruction |= LOW4 (inst.operands[2].reg);
15054 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15055 inst.instruction |= (et.type == NT_unsigned) << 24;
15056 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 15057
88714cb8 15058 neon_dp_fixup (&inst);
5287ad62
JB
15059}
15060
15061static void
15062do_neon_dyadic_long (void)
15063{
15064 /* FIXME: Type checking for lengthening op. */
15065 struct neon_type_el et = neon_check_type (3, NS_QDD,
15066 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
15067 neon_mixed_length (et, et.size);
15068}
15069
15070static void
15071do_neon_abal (void)
15072{
15073 struct neon_type_el et = neon_check_type (3, NS_QDD,
15074 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
15075 neon_mixed_length (et, et.size);
15076}
15077
15078static void
15079neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
15080{
15081 if (inst.operands[2].isscalar)
15082 {
dcbf9037
JB
15083 struct neon_type_el et = neon_check_type (3, NS_QDS,
15084 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
88714cb8 15085 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15086 neon_mul_mac (et, et.type == NT_unsigned);
15087 }
15088 else
15089 {
15090 struct neon_type_el et = neon_check_type (3, NS_QDD,
15091 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
88714cb8 15092 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15093 neon_mixed_length (et, et.size);
15094 }
15095}
15096
15097static void
15098do_neon_mac_maybe_scalar_long (void)
15099{
15100 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
15101}
15102
15103static void
15104do_neon_dyadic_wide (void)
15105{
15106 struct neon_type_el et = neon_check_type (3, NS_QQD,
15107 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
15108 neon_mixed_length (et, et.size);
15109}
15110
15111static void
15112do_neon_dyadic_narrow (void)
15113{
15114 struct neon_type_el et = neon_check_type (3, NS_QDD,
15115 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
15116 /* Operand sign is unimportant, and the U bit is part of the opcode,
15117 so force the operand type to integer. */
15118 et.type = NT_integer;
5287ad62
JB
15119 neon_mixed_length (et, et.size / 2);
15120}
15121
15122static void
15123do_neon_mul_sat_scalar_long (void)
15124{
15125 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
15126}
15127
15128static void
15129do_neon_vmull (void)
15130{
15131 if (inst.operands[2].isscalar)
15132 do_neon_mac_maybe_scalar_long ();
15133 else
15134 {
15135 struct neon_type_el et = neon_check_type (3, NS_QDD,
4f51b4bd
MGD
15136 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
15137
5287ad62 15138 if (et.type == NT_poly)
88714cb8 15139 NEON_ENCODE (POLY, inst);
5287ad62 15140 else
88714cb8 15141 NEON_ENCODE (INTEGER, inst);
4f51b4bd
MGD
15142
15143 /* For polynomial encoding the U bit must be zero, and the size must
15144 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
15145 obviously, as 0b10). */
15146 if (et.size == 64)
15147 {
15148 /* Check we're on the correct architecture. */
15149 if (!mark_feature_used (&fpu_crypto_ext_armv8))
15150 inst.error =
15151 _("Instruction form not available on this architecture.");
15152
15153 et.size = 32;
15154 }
15155
5287ad62
JB
15156 neon_mixed_length (et, et.size);
15157 }
15158}
15159
15160static void
15161do_neon_ext (void)
15162{
037e8744 15163 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
15164 struct neon_type_el et = neon_check_type (3, rs,
15165 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15166 unsigned imm = (inst.operands[3].imm * et.size) / 8;
35997600
NC
15167
15168 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
15169 _("shift out of range"));
5287ad62
JB
15170 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15171 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15172 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15173 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15174 inst.instruction |= LOW4 (inst.operands[2].reg);
15175 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 15176 inst.instruction |= neon_quad (rs) << 6;
5287ad62 15177 inst.instruction |= imm << 8;
5f4273c7 15178
88714cb8 15179 neon_dp_fixup (&inst);
5287ad62
JB
15180}
15181
15182static void
15183do_neon_rev (void)
15184{
037e8744 15185 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15186 struct neon_type_el et = neon_check_type (2, rs,
15187 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15188 unsigned op = (inst.instruction >> 7) & 3;
15189 /* N (width of reversed regions) is encoded as part of the bitmask. We
15190 extract it here to check the elements to be reversed are smaller.
15191 Otherwise we'd get a reserved instruction. */
15192 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
9c2799c2 15193 gas_assert (elsize != 0);
5287ad62
JB
15194 constraint (et.size >= elsize,
15195 _("elements must be smaller than reversal region"));
037e8744 15196 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15197}
15198
15199static void
15200do_neon_dup (void)
15201{
15202 if (inst.operands[1].isscalar)
15203 {
037e8744 15204 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037
JB
15205 struct neon_type_el et = neon_check_type (2, rs,
15206 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 15207 unsigned sizebits = et.size >> 3;
dcbf9037 15208 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 15209 int logsize = neon_logbits (et.size);
dcbf9037 15210 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
15211
15212 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
15213 return;
15214
88714cb8 15215 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15216 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15217 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15218 inst.instruction |= LOW4 (dm);
15219 inst.instruction |= HI1 (dm) << 5;
037e8744 15220 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15221 inst.instruction |= x << 17;
15222 inst.instruction |= sizebits << 16;
5f4273c7 15223
88714cb8 15224 neon_dp_fixup (&inst);
5287ad62
JB
15225 }
15226 else
15227 {
037e8744
JB
15228 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
15229 struct neon_type_el et = neon_check_type (2, rs,
15230 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62 15231 /* Duplicate ARM register to lanes of vector. */
88714cb8 15232 NEON_ENCODE (ARMREG, inst);
5287ad62
JB
15233 switch (et.size)
15234 {
15235 case 8: inst.instruction |= 0x400000; break;
15236 case 16: inst.instruction |= 0x000020; break;
15237 case 32: inst.instruction |= 0x000000; break;
15238 default: break;
15239 }
15240 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15241 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
15242 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 15243 inst.instruction |= neon_quad (rs) << 21;
5287ad62
JB
15244 /* The encoding for this instruction is identical for the ARM and Thumb
15245 variants, except for the condition field. */
037e8744 15246 do_vfp_cond_or_thumb ();
5287ad62
JB
15247 }
15248}
15249
15250/* VMOV has particularly many variations. It can be one of:
15251 0. VMOV<c><q> <Qd>, <Qm>
15252 1. VMOV<c><q> <Dd>, <Dm>
15253 (Register operations, which are VORR with Rm = Rn.)
15254 2. VMOV<c><q>.<dt> <Qd>, #<imm>
15255 3. VMOV<c><q>.<dt> <Dd>, #<imm>
15256 (Immediate loads.)
15257 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
15258 (ARM register to scalar.)
15259 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
15260 (Two ARM registers to vector.)
15261 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
15262 (Scalar to ARM register.)
15263 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
15264 (Vector to two ARM registers.)
037e8744
JB
15265 8. VMOV.F32 <Sd>, <Sm>
15266 9. VMOV.F64 <Dd>, <Dm>
15267 (VFP register moves.)
15268 10. VMOV.F32 <Sd>, #imm
15269 11. VMOV.F64 <Dd>, #imm
15270 (VFP float immediate load.)
15271 12. VMOV <Rd>, <Sm>
15272 (VFP single to ARM reg.)
15273 13. VMOV <Sd>, <Rm>
15274 (ARM reg to VFP single.)
15275 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
15276 (Two ARM regs to two VFP singles.)
15277 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
15278 (Two VFP singles to two ARM regs.)
5f4273c7 15279
037e8744
JB
15280 These cases can be disambiguated using neon_select_shape, except cases 1/9
15281 and 3/11 which depend on the operand type too.
5f4273c7 15282
5287ad62 15283 All the encoded bits are hardcoded by this function.
5f4273c7 15284
b7fc2769
JB
15285 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
15286 Cases 5, 7 may be used with VFPv2 and above.
5f4273c7 15287
5287ad62 15288 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
5f4273c7 15289 can specify a type where it doesn't make sense to, and is ignored). */
5287ad62
JB
15290
15291static void
15292do_neon_mov (void)
15293{
037e8744
JB
15294 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
15295 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
15296 NS_NULL);
15297 struct neon_type_el et;
15298 const char *ldconst = 0;
5287ad62 15299
037e8744 15300 switch (rs)
5287ad62 15301 {
037e8744
JB
15302 case NS_DD: /* case 1/9. */
15303 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15304 /* It is not an error here if no type is given. */
15305 inst.error = NULL;
15306 if (et.type == NT_float && et.size == 64)
5287ad62 15307 {
037e8744
JB
15308 do_vfp_nsyn_opcode ("fcpyd");
15309 break;
5287ad62 15310 }
037e8744 15311 /* fall through. */
5287ad62 15312
037e8744
JB
15313 case NS_QQ: /* case 0/1. */
15314 {
15315 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15316 return;
15317 /* The architecture manual I have doesn't explicitly state which
15318 value the U bit should have for register->register moves, but
15319 the equivalent VORR instruction has U = 0, so do that. */
15320 inst.instruction = 0x0200110;
15321 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15322 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15323 inst.instruction |= LOW4 (inst.operands[1].reg);
15324 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15325 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15326 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15327 inst.instruction |= neon_quad (rs) << 6;
15328
88714cb8 15329 neon_dp_fixup (&inst);
037e8744
JB
15330 }
15331 break;
5f4273c7 15332
037e8744
JB
15333 case NS_DI: /* case 3/11. */
15334 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15335 inst.error = NULL;
15336 if (et.type == NT_float && et.size == 64)
5287ad62 15337 {
037e8744
JB
15338 /* case 11 (fconstd). */
15339 ldconst = "fconstd";
15340 goto encode_fconstd;
5287ad62 15341 }
037e8744
JB
15342 /* fall through. */
15343
15344 case NS_QI: /* case 2/3. */
15345 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15346 return;
15347 inst.instruction = 0x0800010;
15348 neon_move_immediate ();
88714cb8 15349 neon_dp_fixup (&inst);
5287ad62 15350 break;
5f4273c7 15351
037e8744
JB
15352 case NS_SR: /* case 4. */
15353 {
15354 unsigned bcdebits = 0;
91d6fa6a 15355 int logsize;
037e8744
JB
15356 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
15357 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
15358
91d6fa6a
NC
15359 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
15360 logsize = neon_logbits (et.size);
15361
037e8744
JB
15362 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15363 _(BAD_FPU));
15364 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15365 && et.size != 32, _(BAD_FPU));
15366 constraint (et.type == NT_invtype, _("bad type for scalar"));
15367 constraint (x >= 64 / et.size, _("scalar index out of range"));
15368
15369 switch (et.size)
15370 {
15371 case 8: bcdebits = 0x8; break;
15372 case 16: bcdebits = 0x1; break;
15373 case 32: bcdebits = 0x0; break;
15374 default: ;
15375 }
15376
15377 bcdebits |= x << logsize;
15378
15379 inst.instruction = 0xe000b10;
15380 do_vfp_cond_or_thumb ();
15381 inst.instruction |= LOW4 (dn) << 16;
15382 inst.instruction |= HI1 (dn) << 7;
15383 inst.instruction |= inst.operands[1].reg << 12;
15384 inst.instruction |= (bcdebits & 3) << 5;
15385 inst.instruction |= (bcdebits >> 2) << 21;
15386 }
15387 break;
5f4273c7 15388
037e8744 15389 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 15390 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
037e8744 15391 _(BAD_FPU));
b7fc2769 15392
037e8744
JB
15393 inst.instruction = 0xc400b10;
15394 do_vfp_cond_or_thumb ();
15395 inst.instruction |= LOW4 (inst.operands[0].reg);
15396 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
15397 inst.instruction |= inst.operands[1].reg << 12;
15398 inst.instruction |= inst.operands[2].reg << 16;
15399 break;
5f4273c7 15400
037e8744
JB
15401 case NS_RS: /* case 6. */
15402 {
91d6fa6a 15403 unsigned logsize;
037e8744
JB
15404 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
15405 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
15406 unsigned abcdebits = 0;
15407
91d6fa6a
NC
15408 et = neon_check_type (2, NS_NULL,
15409 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
15410 logsize = neon_logbits (et.size);
15411
037e8744
JB
15412 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15413 _(BAD_FPU));
15414 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15415 && et.size != 32, _(BAD_FPU));
15416 constraint (et.type == NT_invtype, _("bad type for scalar"));
15417 constraint (x >= 64 / et.size, _("scalar index out of range"));
15418
15419 switch (et.size)
15420 {
15421 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
15422 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
15423 case 32: abcdebits = 0x00; break;
15424 default: ;
15425 }
15426
15427 abcdebits |= x << logsize;
15428 inst.instruction = 0xe100b10;
15429 do_vfp_cond_or_thumb ();
15430 inst.instruction |= LOW4 (dn) << 16;
15431 inst.instruction |= HI1 (dn) << 7;
15432 inst.instruction |= inst.operands[0].reg << 12;
15433 inst.instruction |= (abcdebits & 3) << 5;
15434 inst.instruction |= (abcdebits >> 2) << 21;
15435 }
15436 break;
5f4273c7 15437
037e8744
JB
15438 case NS_RRD: /* case 7 (fmrrd). */
15439 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
15440 _(BAD_FPU));
15441
15442 inst.instruction = 0xc500b10;
15443 do_vfp_cond_or_thumb ();
15444 inst.instruction |= inst.operands[0].reg << 12;
15445 inst.instruction |= inst.operands[1].reg << 16;
15446 inst.instruction |= LOW4 (inst.operands[2].reg);
15447 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15448 break;
5f4273c7 15449
037e8744
JB
15450 case NS_FF: /* case 8 (fcpys). */
15451 do_vfp_nsyn_opcode ("fcpys");
15452 break;
5f4273c7 15453
037e8744
JB
15454 case NS_FI: /* case 10 (fconsts). */
15455 ldconst = "fconsts";
15456 encode_fconstd:
15457 if (is_quarter_float (inst.operands[1].imm))
5287ad62 15458 {
037e8744
JB
15459 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
15460 do_vfp_nsyn_opcode (ldconst);
5287ad62
JB
15461 }
15462 else
037e8744
JB
15463 first_error (_("immediate out of range"));
15464 break;
5f4273c7 15465
037e8744
JB
15466 case NS_RF: /* case 12 (fmrs). */
15467 do_vfp_nsyn_opcode ("fmrs");
15468 break;
5f4273c7 15469
037e8744
JB
15470 case NS_FR: /* case 13 (fmsr). */
15471 do_vfp_nsyn_opcode ("fmsr");
15472 break;
5f4273c7 15473
037e8744
JB
15474 /* The encoders for the fmrrs and fmsrr instructions expect three operands
15475 (one of which is a list), but we have parsed four. Do some fiddling to
15476 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
15477 expect. */
15478 case NS_RRFF: /* case 14 (fmrrs). */
15479 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
15480 _("VFP registers must be adjacent"));
15481 inst.operands[2].imm = 2;
15482 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15483 do_vfp_nsyn_opcode ("fmrrs");
15484 break;
5f4273c7 15485
037e8744
JB
15486 case NS_FFRR: /* case 15 (fmsrr). */
15487 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
15488 _("VFP registers must be adjacent"));
15489 inst.operands[1] = inst.operands[2];
15490 inst.operands[2] = inst.operands[3];
15491 inst.operands[0].imm = 2;
15492 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15493 do_vfp_nsyn_opcode ("fmsrr");
5287ad62 15494 break;
5f4273c7 15495
5287ad62
JB
15496 default:
15497 abort ();
15498 }
15499}
15500
15501static void
15502do_neon_rshift_round_imm (void)
15503{
037e8744 15504 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15505 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
15506 int imm = inst.operands[2].imm;
15507
15508 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
15509 if (imm == 0)
15510 {
15511 inst.operands[2].present = 0;
15512 do_neon_mov ();
15513 return;
15514 }
15515
15516 constraint (imm < 1 || (unsigned)imm > et.size,
15517 _("immediate out of range for shift"));
037e8744 15518 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
15519 et.size - imm);
15520}
15521
15522static void
15523do_neon_movl (void)
15524{
15525 struct neon_type_el et = neon_check_type (2, NS_QD,
15526 N_EQK | N_DBL, N_SU_32 | N_KEY);
15527 unsigned sizebits = et.size >> 3;
15528 inst.instruction |= sizebits << 19;
15529 neon_two_same (0, et.type == NT_unsigned, -1);
15530}
15531
15532static void
15533do_neon_trn (void)
15534{
037e8744 15535 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15536 struct neon_type_el et = neon_check_type (2, rs,
15537 N_EQK, N_8 | N_16 | N_32 | N_KEY);
88714cb8 15538 NEON_ENCODE (INTEGER, inst);
037e8744 15539 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15540}
15541
15542static void
15543do_neon_zip_uzp (void)
15544{
037e8744 15545 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15546 struct neon_type_el et = neon_check_type (2, rs,
15547 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15548 if (rs == NS_DD && et.size == 32)
15549 {
15550 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
15551 inst.instruction = N_MNEM_vtrn;
15552 do_neon_trn ();
15553 return;
15554 }
037e8744 15555 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15556}
15557
15558static void
15559do_neon_sat_abs_neg (void)
15560{
037e8744 15561 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15562 struct neon_type_el et = neon_check_type (2, rs,
15563 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15564 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15565}
15566
15567static void
15568do_neon_pair_long (void)
15569{
037e8744 15570 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15571 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
15572 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
15573 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 15574 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15575}
15576
15577static void
15578do_neon_recip_est (void)
15579{
037e8744 15580 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15581 struct neon_type_el et = neon_check_type (2, rs,
15582 N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
15583 inst.instruction |= (et.type == NT_float) << 8;
037e8744 15584 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15585}
15586
15587static void
15588do_neon_cls (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_clz (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,
15601 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 15602 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15603}
15604
15605static void
15606do_neon_cnt (void)
15607{
037e8744 15608 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15609 struct neon_type_el et = neon_check_type (2, rs,
15610 N_EQK | N_INT, N_8 | N_KEY);
037e8744 15611 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15612}
15613
15614static void
15615do_neon_swp (void)
15616{
037e8744
JB
15617 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
15618 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
15619}
15620
15621static void
15622do_neon_tbl_tbx (void)
15623{
15624 unsigned listlenbits;
dcbf9037 15625 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5f4273c7 15626
5287ad62
JB
15627 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
15628 {
dcbf9037 15629 first_error (_("bad list length for table lookup"));
5287ad62
JB
15630 return;
15631 }
5f4273c7 15632
5287ad62
JB
15633 listlenbits = inst.operands[1].imm - 1;
15634 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15635 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15636 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15637 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15638 inst.instruction |= LOW4 (inst.operands[2].reg);
15639 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15640 inst.instruction |= listlenbits << 8;
5f4273c7 15641
88714cb8 15642 neon_dp_fixup (&inst);
5287ad62
JB
15643}
15644
15645static void
15646do_neon_ldm_stm (void)
15647{
15648 /* P, U and L bits are part of bitmask. */
15649 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
15650 unsigned offsetbits = inst.operands[1].imm * 2;
15651
037e8744
JB
15652 if (inst.operands[1].issingle)
15653 {
15654 do_vfp_nsyn_ldm_stm (is_dbmode);
15655 return;
15656 }
15657
5287ad62
JB
15658 constraint (is_dbmode && !inst.operands[0].writeback,
15659 _("writeback (!) must be used for VLDMDB and VSTMDB"));
15660
15661 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
15662 _("register list must contain at least 1 and at most 16 "
15663 "registers"));
15664
15665 inst.instruction |= inst.operands[0].reg << 16;
15666 inst.instruction |= inst.operands[0].writeback << 21;
15667 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15668 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
15669
15670 inst.instruction |= offsetbits;
5f4273c7 15671
037e8744 15672 do_vfp_cond_or_thumb ();
5287ad62
JB
15673}
15674
15675static void
15676do_neon_ldr_str (void)
15677{
5287ad62 15678 int is_ldr = (inst.instruction & (1 << 20)) != 0;
5f4273c7 15679
6844b2c2
MGD
15680 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
15681 And is UNPREDICTABLE in thumb mode. */
fa94de6b 15682 if (!is_ldr
6844b2c2
MGD
15683 && inst.operands[1].reg == REG_PC
15684 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
15685 {
15686 if (!thumb_mode && warn_on_deprecated)
15687 as_warn (_("Use of PC here is deprecated"));
15688 else
15689 inst.error = _("Use of PC here is UNPREDICTABLE");
15690 }
15691
037e8744
JB
15692 if (inst.operands[0].issingle)
15693 {
cd2f129f
JB
15694 if (is_ldr)
15695 do_vfp_nsyn_opcode ("flds");
15696 else
15697 do_vfp_nsyn_opcode ("fsts");
5287ad62
JB
15698 }
15699 else
5287ad62 15700 {
cd2f129f
JB
15701 if (is_ldr)
15702 do_vfp_nsyn_opcode ("fldd");
5287ad62 15703 else
cd2f129f 15704 do_vfp_nsyn_opcode ("fstd");
5287ad62 15705 }
5287ad62
JB
15706}
15707
15708/* "interleave" version also handles non-interleaving register VLD1/VST1
15709 instructions. */
15710
15711static void
15712do_neon_ld_st_interleave (void)
15713{
037e8744 15714 struct neon_type_el et = neon_check_type (1, NS_NULL,
5287ad62
JB
15715 N_8 | N_16 | N_32 | N_64);
15716 unsigned alignbits = 0;
15717 unsigned idx;
15718 /* The bits in this table go:
15719 0: register stride of one (0) or two (1)
15720 1,2: register list length, minus one (1, 2, 3, 4).
15721 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
15722 We use -1 for invalid entries. */
15723 const int typetable[] =
15724 {
15725 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
15726 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
15727 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
15728 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
15729 };
15730 int typebits;
15731
dcbf9037
JB
15732 if (et.type == NT_invtype)
15733 return;
15734
5287ad62
JB
15735 if (inst.operands[1].immisalign)
15736 switch (inst.operands[1].imm >> 8)
15737 {
15738 case 64: alignbits = 1; break;
15739 case 128:
e23c0ad8
JZ
15740 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
15741 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
5287ad62
JB
15742 goto bad_alignment;
15743 alignbits = 2;
15744 break;
15745 case 256:
e23c0ad8 15746 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
5287ad62
JB
15747 goto bad_alignment;
15748 alignbits = 3;
15749 break;
15750 default:
15751 bad_alignment:
dcbf9037 15752 first_error (_("bad alignment"));
5287ad62
JB
15753 return;
15754 }
15755
15756 inst.instruction |= alignbits << 4;
15757 inst.instruction |= neon_logbits (et.size) << 6;
15758
15759 /* Bits [4:6] of the immediate in a list specifier encode register stride
15760 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
15761 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
15762 up the right value for "type" in a table based on this value and the given
15763 list style, then stick it back. */
15764 idx = ((inst.operands[0].imm >> 4) & 7)
15765 | (((inst.instruction >> 8) & 3) << 3);
15766
15767 typebits = typetable[idx];
5f4273c7 15768
5287ad62
JB
15769 constraint (typebits == -1, _("bad list type for instruction"));
15770
15771 inst.instruction &= ~0xf00;
15772 inst.instruction |= typebits << 8;
15773}
15774
15775/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
15776 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
15777 otherwise. The variable arguments are a list of pairs of legal (size, align)
15778 values, terminated with -1. */
15779
15780static int
15781neon_alignment_bit (int size, int align, int *do_align, ...)
15782{
15783 va_list ap;
15784 int result = FAIL, thissize, thisalign;
5f4273c7 15785
5287ad62
JB
15786 if (!inst.operands[1].immisalign)
15787 {
15788 *do_align = 0;
15789 return SUCCESS;
15790 }
5f4273c7 15791
5287ad62
JB
15792 va_start (ap, do_align);
15793
15794 do
15795 {
15796 thissize = va_arg (ap, int);
15797 if (thissize == -1)
15798 break;
15799 thisalign = va_arg (ap, int);
15800
15801 if (size == thissize && align == thisalign)
15802 result = SUCCESS;
15803 }
15804 while (result != SUCCESS);
15805
15806 va_end (ap);
15807
15808 if (result == SUCCESS)
15809 *do_align = 1;
15810 else
dcbf9037 15811 first_error (_("unsupported alignment for instruction"));
5f4273c7 15812
5287ad62
JB
15813 return result;
15814}
15815
15816static void
15817do_neon_ld_st_lane (void)
15818{
037e8744 15819 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15820 int align_good, do_align = 0;
15821 int logsize = neon_logbits (et.size);
15822 int align = inst.operands[1].imm >> 8;
15823 int n = (inst.instruction >> 8) & 3;
15824 int max_el = 64 / et.size;
5f4273c7 15825
dcbf9037
JB
15826 if (et.type == NT_invtype)
15827 return;
5f4273c7 15828
5287ad62
JB
15829 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
15830 _("bad list length"));
15831 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
15832 _("scalar index out of range"));
15833 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
15834 && et.size == 8,
15835 _("stride of 2 unavailable when element size is 8"));
5f4273c7 15836
5287ad62
JB
15837 switch (n)
15838 {
15839 case 0: /* VLD1 / VST1. */
15840 align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
15841 32, 32, -1);
15842 if (align_good == FAIL)
15843 return;
15844 if (do_align)
15845 {
15846 unsigned alignbits = 0;
15847 switch (et.size)
15848 {
15849 case 16: alignbits = 0x1; break;
15850 case 32: alignbits = 0x3; break;
15851 default: ;
15852 }
15853 inst.instruction |= alignbits << 4;
15854 }
15855 break;
15856
15857 case 1: /* VLD2 / VST2. */
15858 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
15859 32, 64, -1);
15860 if (align_good == FAIL)
15861 return;
15862 if (do_align)
15863 inst.instruction |= 1 << 4;
15864 break;
15865
15866 case 2: /* VLD3 / VST3. */
15867 constraint (inst.operands[1].immisalign,
15868 _("can't use alignment with this instruction"));
15869 break;
15870
15871 case 3: /* VLD4 / VST4. */
15872 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15873 16, 64, 32, 64, 32, 128, -1);
15874 if (align_good == FAIL)
15875 return;
15876 if (do_align)
15877 {
15878 unsigned alignbits = 0;
15879 switch (et.size)
15880 {
15881 case 8: alignbits = 0x1; break;
15882 case 16: alignbits = 0x1; break;
15883 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
15884 default: ;
15885 }
15886 inst.instruction |= alignbits << 4;
15887 }
15888 break;
15889
15890 default: ;
15891 }
15892
15893 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
15894 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15895 inst.instruction |= 1 << (4 + logsize);
5f4273c7 15896
5287ad62
JB
15897 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
15898 inst.instruction |= logsize << 10;
15899}
15900
15901/* Encode single n-element structure to all lanes VLD<n> instructions. */
15902
15903static void
15904do_neon_ld_dup (void)
15905{
037e8744 15906 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15907 int align_good, do_align = 0;
15908
dcbf9037
JB
15909 if (et.type == NT_invtype)
15910 return;
15911
5287ad62
JB
15912 switch ((inst.instruction >> 8) & 3)
15913 {
15914 case 0: /* VLD1. */
9c2799c2 15915 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
5287ad62
JB
15916 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
15917 &do_align, 16, 16, 32, 32, -1);
15918 if (align_good == FAIL)
15919 return;
15920 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
15921 {
15922 case 1: break;
15923 case 2: inst.instruction |= 1 << 5; break;
dcbf9037 15924 default: first_error (_("bad list length")); return;
5287ad62
JB
15925 }
15926 inst.instruction |= neon_logbits (et.size) << 6;
15927 break;
15928
15929 case 1: /* VLD2. */
15930 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
15931 &do_align, 8, 16, 16, 32, 32, 64, -1);
15932 if (align_good == FAIL)
15933 return;
15934 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
15935 _("bad list length"));
15936 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15937 inst.instruction |= 1 << 5;
15938 inst.instruction |= neon_logbits (et.size) << 6;
15939 break;
15940
15941 case 2: /* VLD3. */
15942 constraint (inst.operands[1].immisalign,
15943 _("can't use alignment with this instruction"));
15944 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
15945 _("bad list length"));
15946 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15947 inst.instruction |= 1 << 5;
15948 inst.instruction |= neon_logbits (et.size) << 6;
15949 break;
15950
15951 case 3: /* VLD4. */
15952 {
15953 int align = inst.operands[1].imm >> 8;
15954 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15955 16, 64, 32, 64, 32, 128, -1);
15956 if (align_good == FAIL)
15957 return;
15958 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
15959 _("bad list length"));
15960 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15961 inst.instruction |= 1 << 5;
15962 if (et.size == 32 && align == 128)
15963 inst.instruction |= 0x3 << 6;
15964 else
15965 inst.instruction |= neon_logbits (et.size) << 6;
15966 }
15967 break;
15968
15969 default: ;
15970 }
15971
15972 inst.instruction |= do_align << 4;
15973}
15974
15975/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
15976 apart from bits [11:4]. */
15977
15978static void
15979do_neon_ldx_stx (void)
15980{
b1a769ed
DG
15981 if (inst.operands[1].isreg)
15982 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
15983
5287ad62
JB
15984 switch (NEON_LANE (inst.operands[0].imm))
15985 {
15986 case NEON_INTERLEAVE_LANES:
88714cb8 15987 NEON_ENCODE (INTERLV, inst);
5287ad62
JB
15988 do_neon_ld_st_interleave ();
15989 break;
5f4273c7 15990
5287ad62 15991 case NEON_ALL_LANES:
88714cb8 15992 NEON_ENCODE (DUP, inst);
5287ad62
JB
15993 do_neon_ld_dup ();
15994 break;
5f4273c7 15995
5287ad62 15996 default:
88714cb8 15997 NEON_ENCODE (LANE, inst);
5287ad62
JB
15998 do_neon_ld_st_lane ();
15999 }
16000
16001 /* L bit comes from bit mask. */
16002 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16003 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16004 inst.instruction |= inst.operands[1].reg << 16;
5f4273c7 16005
5287ad62
JB
16006 if (inst.operands[1].postind)
16007 {
16008 int postreg = inst.operands[1].imm & 0xf;
16009 constraint (!inst.operands[1].immisreg,
16010 _("post-index must be a register"));
16011 constraint (postreg == 0xd || postreg == 0xf,
16012 _("bad register for post-index"));
16013 inst.instruction |= postreg;
16014 }
16015 else if (inst.operands[1].writeback)
16016 {
16017 inst.instruction |= 0xd;
16018 }
16019 else
5f4273c7
NC
16020 inst.instruction |= 0xf;
16021
5287ad62
JB
16022 if (thumb_mode)
16023 inst.instruction |= 0xf9000000;
16024 else
16025 inst.instruction |= 0xf4000000;
16026}
33399f07
MGD
16027
16028/* FP v8. */
16029static void
16030do_vfp_nsyn_fpv8 (enum neon_shape rs)
16031{
16032 NEON_ENCODE (FPV8, inst);
16033
16034 if (rs == NS_FFF)
16035 do_vfp_sp_dyadic ();
16036 else
16037 do_vfp_dp_rd_rn_rm ();
16038
16039 if (rs == NS_DDD)
16040 inst.instruction |= 0x100;
16041
16042 inst.instruction |= 0xf0000000;
16043}
16044
16045static void
16046do_vsel (void)
16047{
16048 set_it_insn_type (OUTSIDE_IT_INSN);
16049
16050 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
16051 first_error (_("invalid instruction shape"));
16052}
16053
73924fbc
MGD
16054static void
16055do_vmaxnm (void)
16056{
16057 set_it_insn_type (OUTSIDE_IT_INSN);
16058
16059 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
16060 return;
16061
16062 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16063 return;
16064
16065 neon_dyadic_misc (NT_untyped, N_F32, 0);
16066}
16067
30bdf752
MGD
16068static void
16069do_vrint_1 (enum neon_cvt_mode mode)
16070{
16071 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_QQ, NS_NULL);
16072 struct neon_type_el et;
16073
16074 if (rs == NS_NULL)
16075 return;
16076
16077 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
16078 if (et.type != NT_invtype)
16079 {
16080 /* VFP encodings. */
16081 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
16082 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
16083 set_it_insn_type (OUTSIDE_IT_INSN);
16084
16085 NEON_ENCODE (FPV8, inst);
16086 if (rs == NS_FF)
16087 do_vfp_sp_monadic ();
16088 else
16089 do_vfp_dp_rd_rm ();
16090
16091 switch (mode)
16092 {
16093 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
16094 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
16095 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
16096 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
16097 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
16098 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
16099 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
16100 default: abort ();
16101 }
16102
16103 inst.instruction |= (rs == NS_DD) << 8;
16104 do_vfp_cond_or_thumb ();
16105 }
16106 else
16107 {
16108 /* Neon encodings (or something broken...). */
16109 inst.error = NULL;
16110 et = neon_check_type (2, rs, N_EQK, N_F32 | N_KEY);
16111
16112 if (et.type == NT_invtype)
16113 return;
16114
16115 set_it_insn_type (OUTSIDE_IT_INSN);
16116 NEON_ENCODE (FLOAT, inst);
16117
16118 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16119 return;
16120
16121 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16122 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16123 inst.instruction |= LOW4 (inst.operands[1].reg);
16124 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16125 inst.instruction |= neon_quad (rs) << 6;
16126 switch (mode)
16127 {
16128 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
16129 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
16130 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
16131 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
16132 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
16133 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
16134 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
16135 default: abort ();
16136 }
16137
16138 if (thumb_mode)
16139 inst.instruction |= 0xfc000000;
16140 else
16141 inst.instruction |= 0xf0000000;
16142 }
16143}
16144
16145static void
16146do_vrintx (void)
16147{
16148 do_vrint_1 (neon_cvt_mode_x);
16149}
16150
16151static void
16152do_vrintz (void)
16153{
16154 do_vrint_1 (neon_cvt_mode_z);
16155}
16156
16157static void
16158do_vrintr (void)
16159{
16160 do_vrint_1 (neon_cvt_mode_r);
16161}
16162
16163static void
16164do_vrinta (void)
16165{
16166 do_vrint_1 (neon_cvt_mode_a);
16167}
16168
16169static void
16170do_vrintn (void)
16171{
16172 do_vrint_1 (neon_cvt_mode_n);
16173}
16174
16175static void
16176do_vrintp (void)
16177{
16178 do_vrint_1 (neon_cvt_mode_p);
16179}
16180
16181static void
16182do_vrintm (void)
16183{
16184 do_vrint_1 (neon_cvt_mode_m);
16185}
16186
91ff7894
MGD
16187/* Crypto v1 instructions. */
16188static void
16189do_crypto_2op_1 (unsigned elttype, int op)
16190{
16191 set_it_insn_type (OUTSIDE_IT_INSN);
16192
16193 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
16194 == NT_invtype)
16195 return;
16196
16197 inst.error = NULL;
16198
16199 NEON_ENCODE (INTEGER, inst);
16200 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16201 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16202 inst.instruction |= LOW4 (inst.operands[1].reg);
16203 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16204 if (op != -1)
16205 inst.instruction |= op << 6;
16206
16207 if (thumb_mode)
16208 inst.instruction |= 0xfc000000;
16209 else
16210 inst.instruction |= 0xf0000000;
16211}
16212
48adcd8e
MGD
16213static void
16214do_crypto_3op_1 (int u, int op)
16215{
16216 set_it_insn_type (OUTSIDE_IT_INSN);
16217
16218 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
16219 N_32 | N_UNT | N_KEY).type == NT_invtype)
16220 return;
16221
16222 inst.error = NULL;
16223
16224 NEON_ENCODE (INTEGER, inst);
16225 neon_three_same (1, u, 8 << op);
16226}
16227
91ff7894
MGD
16228static void
16229do_aese (void)
16230{
16231 do_crypto_2op_1 (N_8, 0);
16232}
16233
16234static void
16235do_aesd (void)
16236{
16237 do_crypto_2op_1 (N_8, 1);
16238}
16239
16240static void
16241do_aesmc (void)
16242{
16243 do_crypto_2op_1 (N_8, 2);
16244}
16245
16246static void
16247do_aesimc (void)
16248{
16249 do_crypto_2op_1 (N_8, 3);
16250}
16251
48adcd8e
MGD
16252static void
16253do_sha1c (void)
16254{
16255 do_crypto_3op_1 (0, 0);
16256}
16257
16258static void
16259do_sha1p (void)
16260{
16261 do_crypto_3op_1 (0, 1);
16262}
16263
16264static void
16265do_sha1m (void)
16266{
16267 do_crypto_3op_1 (0, 2);
16268}
16269
16270static void
16271do_sha1su0 (void)
16272{
16273 do_crypto_3op_1 (0, 3);
16274}
91ff7894 16275
48adcd8e
MGD
16276static void
16277do_sha256h (void)
16278{
16279 do_crypto_3op_1 (1, 0);
16280}
16281
16282static void
16283do_sha256h2 (void)
16284{
16285 do_crypto_3op_1 (1, 1);
16286}
16287
16288static void
16289do_sha256su1 (void)
16290{
16291 do_crypto_3op_1 (1, 2);
16292}
3c9017d2
MGD
16293
16294static void
16295do_sha1h (void)
16296{
16297 do_crypto_2op_1 (N_32, -1);
16298}
16299
16300static void
16301do_sha1su1 (void)
16302{
16303 do_crypto_2op_1 (N_32, 0);
16304}
16305
16306static void
16307do_sha256su0 (void)
16308{
16309 do_crypto_2op_1 (N_32, 1);
16310}
5287ad62
JB
16311\f
16312/* Overall per-instruction processing. */
16313
16314/* We need to be able to fix up arbitrary expressions in some statements.
16315 This is so that we can handle symbols that are an arbitrary distance from
16316 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
16317 which returns part of an address in a form which will be valid for
16318 a data instruction. We do this by pushing the expression into a symbol
16319 in the expr_section, and creating a fix for that. */
16320
16321static void
16322fix_new_arm (fragS * frag,
16323 int where,
16324 short int size,
16325 expressionS * exp,
16326 int pc_rel,
16327 int reloc)
16328{
16329 fixS * new_fix;
16330
16331 switch (exp->X_op)
16332 {
16333 case O_constant:
6e7ce2cd
PB
16334 if (pc_rel)
16335 {
16336 /* Create an absolute valued symbol, so we have something to
16337 refer to in the object file. Unfortunately for us, gas's
16338 generic expression parsing will already have folded out
16339 any use of .set foo/.type foo %function that may have
16340 been used to set type information of the target location,
16341 that's being specified symbolically. We have to presume
16342 the user knows what they are doing. */
16343 char name[16 + 8];
16344 symbolS *symbol;
16345
16346 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
16347
16348 symbol = symbol_find_or_make (name);
16349 S_SET_SEGMENT (symbol, absolute_section);
16350 symbol_set_frag (symbol, &zero_address_frag);
16351 S_SET_VALUE (symbol, exp->X_add_number);
16352 exp->X_op = O_symbol;
16353 exp->X_add_symbol = symbol;
16354 exp->X_add_number = 0;
16355 }
16356 /* FALLTHROUGH */
5287ad62
JB
16357 case O_symbol:
16358 case O_add:
16359 case O_subtract:
21d799b5
NC
16360 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
16361 (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16362 break;
16363
16364 default:
21d799b5
NC
16365 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
16366 pc_rel, (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16367 break;
16368 }
16369
16370 /* Mark whether the fix is to a THUMB instruction, or an ARM
16371 instruction. */
16372 new_fix->tc_fix_data = thumb_mode;
16373}
16374
16375/* Create a frg for an instruction requiring relaxation. */
16376static void
16377output_relax_insn (void)
16378{
16379 char * to;
16380 symbolS *sym;
0110f2b8
PB
16381 int offset;
16382
6e1cb1a6
PB
16383 /* The size of the instruction is unknown, so tie the debug info to the
16384 start of the instruction. */
16385 dwarf2_emit_insn (0);
6e1cb1a6 16386
0110f2b8
PB
16387 switch (inst.reloc.exp.X_op)
16388 {
16389 case O_symbol:
16390 sym = inst.reloc.exp.X_add_symbol;
16391 offset = inst.reloc.exp.X_add_number;
16392 break;
16393 case O_constant:
16394 sym = NULL;
16395 offset = inst.reloc.exp.X_add_number;
16396 break;
16397 default:
16398 sym = make_expr_symbol (&inst.reloc.exp);
16399 offset = 0;
16400 break;
16401 }
16402 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
16403 inst.relax, sym, offset, NULL/*offset, opcode*/);
16404 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
16405}
16406
16407/* Write a 32-bit thumb instruction to buf. */
16408static void
16409put_thumb32_insn (char * buf, unsigned long insn)
16410{
16411 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
16412 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
16413}
16414
b99bd4ef 16415static void
c19d1205 16416output_inst (const char * str)
b99bd4ef 16417{
c19d1205 16418 char * to = NULL;
b99bd4ef 16419
c19d1205 16420 if (inst.error)
b99bd4ef 16421 {
c19d1205 16422 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
16423 return;
16424 }
5f4273c7
NC
16425 if (inst.relax)
16426 {
16427 output_relax_insn ();
0110f2b8 16428 return;
5f4273c7 16429 }
c19d1205
ZW
16430 if (inst.size == 0)
16431 return;
b99bd4ef 16432
c19d1205 16433 to = frag_more (inst.size);
8dc2430f
NC
16434 /* PR 9814: Record the thumb mode into the current frag so that we know
16435 what type of NOP padding to use, if necessary. We override any previous
16436 setting so that if the mode has changed then the NOPS that we use will
16437 match the encoding of the last instruction in the frag. */
cd000bff 16438 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
c19d1205
ZW
16439
16440 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 16441 {
9c2799c2 16442 gas_assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 16443 put_thumb32_insn (to, inst.instruction);
b99bd4ef 16444 }
c19d1205 16445 else if (inst.size > INSN_SIZE)
b99bd4ef 16446 {
9c2799c2 16447 gas_assert (inst.size == (2 * INSN_SIZE));
c19d1205
ZW
16448 md_number_to_chars (to, inst.instruction, INSN_SIZE);
16449 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 16450 }
c19d1205
ZW
16451 else
16452 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 16453
c19d1205
ZW
16454 if (inst.reloc.type != BFD_RELOC_UNUSED)
16455 fix_new_arm (frag_now, to - frag_now->fr_literal,
16456 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
16457 inst.reloc.type);
b99bd4ef 16458
c19d1205 16459 dwarf2_emit_insn (inst.size);
c19d1205 16460}
b99bd4ef 16461
e07e6e58
NC
16462static char *
16463output_it_inst (int cond, int mask, char * to)
16464{
16465 unsigned long instruction = 0xbf00;
16466
16467 mask &= 0xf;
16468 instruction |= mask;
16469 instruction |= cond << 4;
16470
16471 if (to == NULL)
16472 {
16473 to = frag_more (2);
16474#ifdef OBJ_ELF
16475 dwarf2_emit_insn (2);
16476#endif
16477 }
16478
16479 md_number_to_chars (to, instruction, 2);
16480
16481 return to;
16482}
16483
c19d1205
ZW
16484/* Tag values used in struct asm_opcode's tag field. */
16485enum opcode_tag
16486{
16487 OT_unconditional, /* Instruction cannot be conditionalized.
16488 The ARM condition field is still 0xE. */
16489 OT_unconditionalF, /* Instruction cannot be conditionalized
16490 and carries 0xF in its ARM condition field. */
16491 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744
JB
16492 OT_csuffixF, /* Some forms of the instruction take a conditional
16493 suffix, others place 0xF where the condition field
16494 would be. */
c19d1205
ZW
16495 OT_cinfix3, /* Instruction takes a conditional infix,
16496 beginning at character index 3. (In
16497 unified mode, it becomes a suffix.) */
088fa78e
KH
16498 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
16499 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
16500 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
16501 character index 3, even in unified mode. Used for
16502 legacy instructions where suffix and infix forms
16503 may be ambiguous. */
c19d1205 16504 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 16505 suffix or an infix at character index 3. */
c19d1205
ZW
16506 OT_odd_infix_unc, /* This is the unconditional variant of an
16507 instruction that takes a conditional infix
16508 at an unusual position. In unified mode,
16509 this variant will accept a suffix. */
16510 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
16511 are the conditional variants of instructions that
16512 take conditional infixes in unusual positions.
16513 The infix appears at character index
16514 (tag - OT_odd_infix_0). These are not accepted
16515 in unified mode. */
16516};
b99bd4ef 16517
c19d1205
ZW
16518/* Subroutine of md_assemble, responsible for looking up the primary
16519 opcode from the mnemonic the user wrote. STR points to the
16520 beginning of the mnemonic.
16521
16522 This is not simply a hash table lookup, because of conditional
16523 variants. Most instructions have conditional variants, which are
16524 expressed with a _conditional affix_ to the mnemonic. If we were
16525 to encode each conditional variant as a literal string in the opcode
16526 table, it would have approximately 20,000 entries.
16527
16528 Most mnemonics take this affix as a suffix, and in unified syntax,
16529 'most' is upgraded to 'all'. However, in the divided syntax, some
16530 instructions take the affix as an infix, notably the s-variants of
16531 the arithmetic instructions. Of those instructions, all but six
16532 have the infix appear after the third character of the mnemonic.
16533
16534 Accordingly, the algorithm for looking up primary opcodes given
16535 an identifier is:
16536
16537 1. Look up the identifier in the opcode table.
16538 If we find a match, go to step U.
16539
16540 2. Look up the last two characters of the identifier in the
16541 conditions table. If we find a match, look up the first N-2
16542 characters of the identifier in the opcode table. If we
16543 find a match, go to step CE.
16544
16545 3. Look up the fourth and fifth characters of the identifier in
16546 the conditions table. If we find a match, extract those
16547 characters from the identifier, and look up the remaining
16548 characters in the opcode table. If we find a match, go
16549 to step CM.
16550
16551 4. Fail.
16552
16553 U. Examine the tag field of the opcode structure, in case this is
16554 one of the six instructions with its conditional infix in an
16555 unusual place. If it is, the tag tells us where to find the
16556 infix; look it up in the conditions table and set inst.cond
16557 accordingly. Otherwise, this is an unconditional instruction.
16558 Again set inst.cond accordingly. Return the opcode structure.
16559
16560 CE. Examine the tag field to make sure this is an instruction that
16561 should receive a conditional suffix. If it is not, fail.
16562 Otherwise, set inst.cond from the suffix we already looked up,
16563 and return the opcode structure.
16564
16565 CM. Examine the tag field to make sure this is an instruction that
16566 should receive a conditional infix after the third character.
16567 If it is not, fail. Otherwise, undo the edits to the current
16568 line of input and proceed as for case CE. */
16569
16570static const struct asm_opcode *
16571opcode_lookup (char **str)
16572{
16573 char *end, *base;
16574 char *affix;
16575 const struct asm_opcode *opcode;
16576 const struct asm_cond *cond;
e3cb604e 16577 char save[2];
c19d1205
ZW
16578
16579 /* Scan up to the end of the mnemonic, which must end in white space,
721a8186 16580 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
c19d1205 16581 for (base = end = *str; *end != '\0'; end++)
721a8186 16582 if (*end == ' ' || *end == '.')
c19d1205 16583 break;
b99bd4ef 16584
c19d1205 16585 if (end == base)
c921be7d 16586 return NULL;
b99bd4ef 16587
5287ad62 16588 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 16589 if (end[0] == '.')
b99bd4ef 16590 {
5287ad62 16591 int offset = 2;
5f4273c7 16592
267d2029
JB
16593 /* The .w and .n suffixes are only valid if the unified syntax is in
16594 use. */
16595 if (unified_syntax && end[1] == 'w')
c19d1205 16596 inst.size_req = 4;
267d2029 16597 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
16598 inst.size_req = 2;
16599 else
5287ad62
JB
16600 offset = 0;
16601
16602 inst.vectype.elems = 0;
16603
16604 *str = end + offset;
b99bd4ef 16605
5f4273c7 16606 if (end[offset] == '.')
5287ad62 16607 {
267d2029
JB
16608 /* See if we have a Neon type suffix (possible in either unified or
16609 non-unified ARM syntax mode). */
dcbf9037 16610 if (parse_neon_type (&inst.vectype, str) == FAIL)
c921be7d 16611 return NULL;
5287ad62
JB
16612 }
16613 else if (end[offset] != '\0' && end[offset] != ' ')
c921be7d 16614 return NULL;
b99bd4ef 16615 }
c19d1205
ZW
16616 else
16617 *str = end;
b99bd4ef 16618
c19d1205 16619 /* Look for unaffixed or special-case affixed mnemonic. */
21d799b5
NC
16620 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16621 end - base);
c19d1205 16622 if (opcode)
b99bd4ef 16623 {
c19d1205
ZW
16624 /* step U */
16625 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 16626 {
c19d1205
ZW
16627 inst.cond = COND_ALWAYS;
16628 return opcode;
b99bd4ef 16629 }
b99bd4ef 16630
278df34e 16631 if (warn_on_deprecated && unified_syntax)
c19d1205
ZW
16632 as_warn (_("conditional infixes are deprecated in unified syntax"));
16633 affix = base + (opcode->tag - OT_odd_infix_0);
21d799b5 16634 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
9c2799c2 16635 gas_assert (cond);
b99bd4ef 16636
c19d1205
ZW
16637 inst.cond = cond->value;
16638 return opcode;
16639 }
b99bd4ef 16640
c19d1205
ZW
16641 /* Cannot have a conditional suffix on a mnemonic of less than two
16642 characters. */
16643 if (end - base < 3)
c921be7d 16644 return NULL;
b99bd4ef 16645
c19d1205
ZW
16646 /* Look for suffixed mnemonic. */
16647 affix = end - 2;
21d799b5
NC
16648 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
16649 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16650 affix - base);
c19d1205
ZW
16651 if (opcode && cond)
16652 {
16653 /* step CE */
16654 switch (opcode->tag)
16655 {
e3cb604e
PB
16656 case OT_cinfix3_legacy:
16657 /* Ignore conditional suffixes matched on infix only mnemonics. */
16658 break;
16659
c19d1205 16660 case OT_cinfix3:
088fa78e 16661 case OT_cinfix3_deprecated:
c19d1205
ZW
16662 case OT_odd_infix_unc:
16663 if (!unified_syntax)
e3cb604e 16664 return 0;
c19d1205
ZW
16665 /* else fall through */
16666
16667 case OT_csuffix:
037e8744 16668 case OT_csuffixF:
c19d1205
ZW
16669 case OT_csuf_or_in3:
16670 inst.cond = cond->value;
16671 return opcode;
16672
16673 case OT_unconditional:
16674 case OT_unconditionalF:
dfa9f0d5 16675 if (thumb_mode)
c921be7d 16676 inst.cond = cond->value;
dfa9f0d5
PB
16677 else
16678 {
c921be7d 16679 /* Delayed diagnostic. */
dfa9f0d5
PB
16680 inst.error = BAD_COND;
16681 inst.cond = COND_ALWAYS;
16682 }
c19d1205 16683 return opcode;
b99bd4ef 16684
c19d1205 16685 default:
c921be7d 16686 return NULL;
c19d1205
ZW
16687 }
16688 }
b99bd4ef 16689
c19d1205
ZW
16690 /* Cannot have a usual-position infix on a mnemonic of less than
16691 six characters (five would be a suffix). */
16692 if (end - base < 6)
c921be7d 16693 return NULL;
b99bd4ef 16694
c19d1205
ZW
16695 /* Look for infixed mnemonic in the usual position. */
16696 affix = base + 3;
21d799b5 16697 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e 16698 if (!cond)
c921be7d 16699 return NULL;
e3cb604e
PB
16700
16701 memcpy (save, affix, 2);
16702 memmove (affix, affix + 2, (end - affix) - 2);
21d799b5
NC
16703 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16704 (end - base) - 2);
e3cb604e
PB
16705 memmove (affix + 2, affix, (end - affix) - 2);
16706 memcpy (affix, save, 2);
16707
088fa78e
KH
16708 if (opcode
16709 && (opcode->tag == OT_cinfix3
16710 || opcode->tag == OT_cinfix3_deprecated
16711 || opcode->tag == OT_csuf_or_in3
16712 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 16713 {
c921be7d 16714 /* Step CM. */
278df34e 16715 if (warn_on_deprecated && unified_syntax
088fa78e
KH
16716 && (opcode->tag == OT_cinfix3
16717 || opcode->tag == OT_cinfix3_deprecated))
c19d1205
ZW
16718 as_warn (_("conditional infixes are deprecated in unified syntax"));
16719
16720 inst.cond = cond->value;
16721 return opcode;
b99bd4ef
NC
16722 }
16723
c921be7d 16724 return NULL;
b99bd4ef
NC
16725}
16726
e07e6e58
NC
16727/* This function generates an initial IT instruction, leaving its block
16728 virtually open for the new instructions. Eventually,
16729 the mask will be updated by now_it_add_mask () each time
16730 a new instruction needs to be included in the IT block.
16731 Finally, the block is closed with close_automatic_it_block ().
16732 The block closure can be requested either from md_assemble (),
16733 a tencode (), or due to a label hook. */
16734
16735static void
16736new_automatic_it_block (int cond)
16737{
16738 now_it.state = AUTOMATIC_IT_BLOCK;
16739 now_it.mask = 0x18;
16740 now_it.cc = cond;
16741 now_it.block_length = 1;
cd000bff 16742 mapping_state (MAP_THUMB);
e07e6e58 16743 now_it.insn = output_it_inst (cond, now_it.mask, NULL);
5a01bb1d
MGD
16744 now_it.warn_deprecated = FALSE;
16745 now_it.insn_cond = TRUE;
e07e6e58
NC
16746}
16747
16748/* Close an automatic IT block.
16749 See comments in new_automatic_it_block (). */
16750
16751static void
16752close_automatic_it_block (void)
16753{
16754 now_it.mask = 0x10;
16755 now_it.block_length = 0;
16756}
16757
16758/* Update the mask of the current automatically-generated IT
16759 instruction. See comments in new_automatic_it_block (). */
16760
16761static void
16762now_it_add_mask (int cond)
16763{
16764#define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
16765#define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
16766 | ((bitvalue) << (nbit)))
e07e6e58 16767 const int resulting_bit = (cond & 1);
c921be7d 16768
e07e6e58
NC
16769 now_it.mask &= 0xf;
16770 now_it.mask = SET_BIT_VALUE (now_it.mask,
16771 resulting_bit,
16772 (5 - now_it.block_length));
16773 now_it.mask = SET_BIT_VALUE (now_it.mask,
16774 1,
16775 ((5 - now_it.block_length) - 1) );
16776 output_it_inst (now_it.cc, now_it.mask, now_it.insn);
16777
16778#undef CLEAR_BIT
16779#undef SET_BIT_VALUE
e07e6e58
NC
16780}
16781
16782/* The IT blocks handling machinery is accessed through the these functions:
16783 it_fsm_pre_encode () from md_assemble ()
16784 set_it_insn_type () optional, from the tencode functions
16785 set_it_insn_type_last () ditto
16786 in_it_block () ditto
16787 it_fsm_post_encode () from md_assemble ()
16788 force_automatic_it_block_close () from label habdling functions
16789
16790 Rationale:
16791 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
16792 initializing the IT insn type with a generic initial value depending
16793 on the inst.condition.
16794 2) During the tencode function, two things may happen:
16795 a) The tencode function overrides the IT insn type by
16796 calling either set_it_insn_type (type) or set_it_insn_type_last ().
16797 b) The tencode function queries the IT block state by
16798 calling in_it_block () (i.e. to determine narrow/not narrow mode).
16799
16800 Both set_it_insn_type and in_it_block run the internal FSM state
16801 handling function (handle_it_state), because: a) setting the IT insn
16802 type may incur in an invalid state (exiting the function),
16803 and b) querying the state requires the FSM to be updated.
16804 Specifically we want to avoid creating an IT block for conditional
16805 branches, so it_fsm_pre_encode is actually a guess and we can't
16806 determine whether an IT block is required until the tencode () routine
16807 has decided what type of instruction this actually it.
16808 Because of this, if set_it_insn_type and in_it_block have to be used,
16809 set_it_insn_type has to be called first.
16810
16811 set_it_insn_type_last () is a wrapper of set_it_insn_type (type), that
16812 determines the insn IT type depending on the inst.cond code.
16813 When a tencode () routine encodes an instruction that can be
16814 either outside an IT block, or, in the case of being inside, has to be
16815 the last one, set_it_insn_type_last () will determine the proper
16816 IT instruction type based on the inst.cond code. Otherwise,
16817 set_it_insn_type can be called for overriding that logic or
16818 for covering other cases.
16819
16820 Calling handle_it_state () may not transition the IT block state to
16821 OUTSIDE_IT_BLOCK immediatelly, since the (current) state could be
16822 still queried. Instead, if the FSM determines that the state should
16823 be transitioned to OUTSIDE_IT_BLOCK, a flag is marked to be closed
16824 after the tencode () function: that's what it_fsm_post_encode () does.
16825
16826 Since in_it_block () calls the state handling function to get an
16827 updated state, an error may occur (due to invalid insns combination).
16828 In that case, inst.error is set.
16829 Therefore, inst.error has to be checked after the execution of
16830 the tencode () routine.
16831
16832 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
16833 any pending state change (if any) that didn't take place in
16834 handle_it_state () as explained above. */
16835
16836static void
16837it_fsm_pre_encode (void)
16838{
16839 if (inst.cond != COND_ALWAYS)
16840 inst.it_insn_type = INSIDE_IT_INSN;
16841 else
16842 inst.it_insn_type = OUTSIDE_IT_INSN;
16843
16844 now_it.state_handled = 0;
16845}
16846
16847/* IT state FSM handling function. */
16848
16849static int
16850handle_it_state (void)
16851{
16852 now_it.state_handled = 1;
5a01bb1d 16853 now_it.insn_cond = FALSE;
e07e6e58
NC
16854
16855 switch (now_it.state)
16856 {
16857 case OUTSIDE_IT_BLOCK:
16858 switch (inst.it_insn_type)
16859 {
16860 case OUTSIDE_IT_INSN:
16861 break;
16862
16863 case INSIDE_IT_INSN:
16864 case INSIDE_IT_LAST_INSN:
16865 if (thumb_mode == 0)
16866 {
c921be7d 16867 if (unified_syntax
e07e6e58
NC
16868 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
16869 as_tsktsk (_("Warning: conditional outside an IT block"\
16870 " for Thumb."));
16871 }
16872 else
16873 {
16874 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
16875 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2))
16876 {
16877 /* Automatically generate the IT instruction. */
16878 new_automatic_it_block (inst.cond);
16879 if (inst.it_insn_type == INSIDE_IT_LAST_INSN)
16880 close_automatic_it_block ();
16881 }
16882 else
16883 {
16884 inst.error = BAD_OUT_IT;
16885 return FAIL;
16886 }
16887 }
16888 break;
16889
16890 case IF_INSIDE_IT_LAST_INSN:
16891 case NEUTRAL_IT_INSN:
16892 break;
16893
16894 case IT_INSN:
16895 now_it.state = MANUAL_IT_BLOCK;
16896 now_it.block_length = 0;
16897 break;
16898 }
16899 break;
16900
16901 case AUTOMATIC_IT_BLOCK:
16902 /* Three things may happen now:
16903 a) We should increment current it block size;
16904 b) We should close current it block (closing insn or 4 insns);
16905 c) We should close current it block and start a new one (due
16906 to incompatible conditions or
16907 4 insns-length block reached). */
16908
16909 switch (inst.it_insn_type)
16910 {
16911 case OUTSIDE_IT_INSN:
16912 /* The closure of the block shall happen immediatelly,
16913 so any in_it_block () call reports the block as closed. */
16914 force_automatic_it_block_close ();
16915 break;
16916
16917 case INSIDE_IT_INSN:
16918 case INSIDE_IT_LAST_INSN:
16919 case IF_INSIDE_IT_LAST_INSN:
16920 now_it.block_length++;
16921
16922 if (now_it.block_length > 4
16923 || !now_it_compatible (inst.cond))
16924 {
16925 force_automatic_it_block_close ();
16926 if (inst.it_insn_type != IF_INSIDE_IT_LAST_INSN)
16927 new_automatic_it_block (inst.cond);
16928 }
16929 else
16930 {
5a01bb1d 16931 now_it.insn_cond = TRUE;
e07e6e58
NC
16932 now_it_add_mask (inst.cond);
16933 }
16934
16935 if (now_it.state == AUTOMATIC_IT_BLOCK
16936 && (inst.it_insn_type == INSIDE_IT_LAST_INSN
16937 || inst.it_insn_type == IF_INSIDE_IT_LAST_INSN))
16938 close_automatic_it_block ();
16939 break;
16940
16941 case NEUTRAL_IT_INSN:
16942 now_it.block_length++;
5a01bb1d 16943 now_it.insn_cond = TRUE;
e07e6e58
NC
16944
16945 if (now_it.block_length > 4)
16946 force_automatic_it_block_close ();
16947 else
16948 now_it_add_mask (now_it.cc & 1);
16949 break;
16950
16951 case IT_INSN:
16952 close_automatic_it_block ();
16953 now_it.state = MANUAL_IT_BLOCK;
16954 break;
16955 }
16956 break;
16957
16958 case MANUAL_IT_BLOCK:
16959 {
16960 /* Check conditional suffixes. */
16961 const int cond = now_it.cc ^ ((now_it.mask >> 4) & 1) ^ 1;
16962 int is_last;
16963 now_it.mask <<= 1;
16964 now_it.mask &= 0x1f;
16965 is_last = (now_it.mask == 0x10);
5a01bb1d 16966 now_it.insn_cond = TRUE;
e07e6e58
NC
16967
16968 switch (inst.it_insn_type)
16969 {
16970 case OUTSIDE_IT_INSN:
16971 inst.error = BAD_NOT_IT;
16972 return FAIL;
16973
16974 case INSIDE_IT_INSN:
16975 if (cond != inst.cond)
16976 {
16977 inst.error = BAD_IT_COND;
16978 return FAIL;
16979 }
16980 break;
16981
16982 case INSIDE_IT_LAST_INSN:
16983 case IF_INSIDE_IT_LAST_INSN:
16984 if (cond != inst.cond)
16985 {
16986 inst.error = BAD_IT_COND;
16987 return FAIL;
16988 }
16989 if (!is_last)
16990 {
16991 inst.error = BAD_BRANCH;
16992 return FAIL;
16993 }
16994 break;
16995
16996 case NEUTRAL_IT_INSN:
16997 /* The BKPT instruction is unconditional even in an IT block. */
16998 break;
16999
17000 case IT_INSN:
17001 inst.error = BAD_IT_IT;
17002 return FAIL;
17003 }
17004 }
17005 break;
17006 }
17007
17008 return SUCCESS;
17009}
17010
5a01bb1d
MGD
17011struct depr_insn_mask
17012{
17013 unsigned long pattern;
17014 unsigned long mask;
17015 const char* description;
17016};
17017
17018/* List of 16-bit instruction patterns deprecated in an IT block in
17019 ARMv8. */
17020static const struct depr_insn_mask depr_it_insns[] = {
17021 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
17022 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
17023 { 0xa000, 0xb800, N_("ADR") },
17024 { 0x4800, 0xf800, N_("Literal loads") },
17025 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
17026 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
17027 { 0, 0, NULL }
17028};
17029
e07e6e58
NC
17030static void
17031it_fsm_post_encode (void)
17032{
17033 int is_last;
17034
17035 if (!now_it.state_handled)
17036 handle_it_state ();
17037
5a01bb1d
MGD
17038 if (now_it.insn_cond
17039 && !now_it.warn_deprecated
17040 && warn_on_deprecated
17041 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
17042 {
17043 if (inst.instruction >= 0x10000)
17044 {
17045 as_warn (_("it blocks containing wide Thumb instructions are "
17046 "deprecated in ARMv8"));
17047 now_it.warn_deprecated = TRUE;
17048 }
17049 else
17050 {
17051 const struct depr_insn_mask *p = depr_it_insns;
17052
17053 while (p->mask != 0)
17054 {
17055 if ((inst.instruction & p->mask) == p->pattern)
17056 {
17057 as_warn (_("it blocks containing 16-bit Thumb intsructions "
17058 "of the following class are deprecated in ARMv8: "
17059 "%s"), p->description);
17060 now_it.warn_deprecated = TRUE;
17061 break;
17062 }
17063
17064 ++p;
17065 }
17066 }
17067
17068 if (now_it.block_length > 1)
17069 {
17070 as_warn (_("it blocks of more than one conditional instruction are "
17071 "deprecated in ARMv8"));
17072 now_it.warn_deprecated = TRUE;
17073 }
17074 }
17075
e07e6e58
NC
17076 is_last = (now_it.mask == 0x10);
17077 if (is_last)
17078 {
17079 now_it.state = OUTSIDE_IT_BLOCK;
17080 now_it.mask = 0;
17081 }
17082}
17083
17084static void
17085force_automatic_it_block_close (void)
17086{
17087 if (now_it.state == AUTOMATIC_IT_BLOCK)
17088 {
17089 close_automatic_it_block ();
17090 now_it.state = OUTSIDE_IT_BLOCK;
17091 now_it.mask = 0;
17092 }
17093}
17094
17095static int
17096in_it_block (void)
17097{
17098 if (!now_it.state_handled)
17099 handle_it_state ();
17100
17101 return now_it.state != OUTSIDE_IT_BLOCK;
17102}
17103
c19d1205
ZW
17104void
17105md_assemble (char *str)
b99bd4ef 17106{
c19d1205
ZW
17107 char *p = str;
17108 const struct asm_opcode * opcode;
b99bd4ef 17109
c19d1205
ZW
17110 /* Align the previous label if needed. */
17111 if (last_label_seen != NULL)
b99bd4ef 17112 {
c19d1205
ZW
17113 symbol_set_frag (last_label_seen, frag_now);
17114 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
17115 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
17116 }
17117
c19d1205
ZW
17118 memset (&inst, '\0', sizeof (inst));
17119 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 17120
c19d1205
ZW
17121 opcode = opcode_lookup (&p);
17122 if (!opcode)
b99bd4ef 17123 {
c19d1205 17124 /* It wasn't an instruction, but it might be a register alias of
dcbf9037 17125 the form alias .req reg, or a Neon .dn/.qn directive. */
c921be7d
NC
17126 if (! create_register_alias (str, p)
17127 && ! create_neon_reg_alias (str, p))
c19d1205 17128 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 17129
b99bd4ef
NC
17130 return;
17131 }
17132
278df34e 17133 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
088fa78e
KH
17134 as_warn (_("s suffix on comparison instruction is deprecated"));
17135
037e8744
JB
17136 /* The value which unconditional instructions should have in place of the
17137 condition field. */
17138 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
17139
c19d1205 17140 if (thumb_mode)
b99bd4ef 17141 {
e74cfd16 17142 arm_feature_set variant;
8f06b2d8
PB
17143
17144 variant = cpu_variant;
17145 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
17146 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
17147 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 17148 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
17149 if (!opcode->tvariant
17150 || (thumb_mode == 1
17151 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 17152 {
bf3eeda7 17153 as_bad (_("selected processor does not support Thumb mode `%s'"), str);
b99bd4ef
NC
17154 return;
17155 }
c19d1205
ZW
17156 if (inst.cond != COND_ALWAYS && !unified_syntax
17157 && opcode->tencode != do_t_branch)
b99bd4ef 17158 {
c19d1205 17159 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
17160 return;
17161 }
17162
752d5da4 17163 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2))
076d447c 17164 {
7e806470 17165 if (opcode->tencode != do_t_blx && opcode->tencode != do_t_branch23
752d5da4
NC
17166 && !(ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_msr)
17167 || ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_barrier)))
17168 {
17169 /* Two things are addressed here.
17170 1) Implicit require narrow instructions on Thumb-1.
17171 This avoids relaxation accidentally introducing Thumb-2
17172 instructions.
17173 2) Reject wide instructions in non Thumb-2 cores. */
17174 if (inst.size_req == 0)
17175 inst.size_req = 2;
17176 else if (inst.size_req == 4)
17177 {
bf3eeda7 17178 as_bad (_("selected processor does not support Thumb-2 mode `%s'"), str);
752d5da4
NC
17179 return;
17180 }
17181 }
076d447c
PB
17182 }
17183
c19d1205
ZW
17184 inst.instruction = opcode->tvalue;
17185
5be8be5d 17186 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
e07e6e58
NC
17187 {
17188 /* Prepare the it_insn_type for those encodings that don't set
17189 it. */
17190 it_fsm_pre_encode ();
c19d1205 17191
e07e6e58
NC
17192 opcode->tencode ();
17193
17194 it_fsm_post_encode ();
17195 }
e27ec89e 17196
0110f2b8 17197 if (!(inst.error || inst.relax))
b99bd4ef 17198 {
9c2799c2 17199 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
c19d1205
ZW
17200 inst.size = (inst.instruction > 0xffff ? 4 : 2);
17201 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 17202 {
c19d1205 17203 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
17204 return;
17205 }
17206 }
076d447c
PB
17207
17208 /* Something has gone badly wrong if we try to relax a fixed size
17209 instruction. */
9c2799c2 17210 gas_assert (inst.size_req == 0 || !inst.relax);
076d447c 17211
e74cfd16
PB
17212 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17213 *opcode->tvariant);
ee065d83 17214 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
708587a4 17215 set those bits when Thumb-2 32-bit instructions are seen. ie.
7e806470 17216 anything other than bl/blx and v6-M instructions.
ee065d83 17217 This is overly pessimistic for relaxable instructions. */
7e806470
PB
17218 if (((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
17219 || inst.relax)
e07e6e58
NC
17220 && !(ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
17221 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier)))
e74cfd16
PB
17222 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17223 arm_ext_v6t2);
cd000bff 17224
88714cb8
DG
17225 check_neon_suffixes;
17226
cd000bff 17227 if (!inst.error)
c877a2f2
NC
17228 {
17229 mapping_state (MAP_THUMB);
17230 }
c19d1205 17231 }
3e9e4fcf 17232 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205 17233 {
845b51d6
PB
17234 bfd_boolean is_bx;
17235
17236 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
17237 is_bx = (opcode->aencode == do_bx);
17238
c19d1205 17239 /* Check that this instruction is supported for this CPU. */
845b51d6
PB
17240 if (!(is_bx && fix_v4bx)
17241 && !(opcode->avariant &&
17242 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
b99bd4ef 17243 {
bf3eeda7 17244 as_bad (_("selected processor does not support ARM mode `%s'"), str);
c19d1205 17245 return;
b99bd4ef 17246 }
c19d1205 17247 if (inst.size_req)
b99bd4ef 17248 {
c19d1205
ZW
17249 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
17250 return;
b99bd4ef
NC
17251 }
17252
c19d1205
ZW
17253 inst.instruction = opcode->avalue;
17254 if (opcode->tag == OT_unconditionalF)
17255 inst.instruction |= 0xF << 28;
17256 else
17257 inst.instruction |= inst.cond << 28;
17258 inst.size = INSN_SIZE;
5be8be5d 17259 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
e07e6e58
NC
17260 {
17261 it_fsm_pre_encode ();
17262 opcode->aencode ();
17263 it_fsm_post_encode ();
17264 }
ee065d83
PB
17265 /* Arm mode bx is marked as both v4T and v5 because it's still required
17266 on a hypothetical non-thumb v5 core. */
845b51d6 17267 if (is_bx)
e74cfd16 17268 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 17269 else
e74cfd16
PB
17270 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
17271 *opcode->avariant);
88714cb8
DG
17272
17273 check_neon_suffixes;
17274
cd000bff 17275 if (!inst.error)
c877a2f2
NC
17276 {
17277 mapping_state (MAP_ARM);
17278 }
b99bd4ef 17279 }
3e9e4fcf
JB
17280 else
17281 {
17282 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
17283 "-- `%s'"), str);
17284 return;
17285 }
c19d1205
ZW
17286 output_inst (str);
17287}
b99bd4ef 17288
e07e6e58
NC
17289static void
17290check_it_blocks_finished (void)
17291{
17292#ifdef OBJ_ELF
17293 asection *sect;
17294
17295 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
17296 if (seg_info (sect)->tc_segment_info_data.current_it.state
17297 == MANUAL_IT_BLOCK)
17298 {
17299 as_warn (_("section '%s' finished with an open IT block."),
17300 sect->name);
17301 }
17302#else
17303 if (now_it.state == MANUAL_IT_BLOCK)
17304 as_warn (_("file finished with an open IT block."));
17305#endif
17306}
17307
c19d1205
ZW
17308/* Various frobbings of labels and their addresses. */
17309
17310void
17311arm_start_line_hook (void)
17312{
17313 last_label_seen = NULL;
b99bd4ef
NC
17314}
17315
c19d1205
ZW
17316void
17317arm_frob_label (symbolS * sym)
b99bd4ef 17318{
c19d1205 17319 last_label_seen = sym;
b99bd4ef 17320
c19d1205 17321 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 17322
c19d1205
ZW
17323#if defined OBJ_COFF || defined OBJ_ELF
17324 ARM_SET_INTERWORK (sym, support_interwork);
17325#endif
b99bd4ef 17326
e07e6e58
NC
17327 force_automatic_it_block_close ();
17328
5f4273c7 17329 /* Note - do not allow local symbols (.Lxxx) to be labelled
c19d1205
ZW
17330 as Thumb functions. This is because these labels, whilst
17331 they exist inside Thumb code, are not the entry points for
17332 possible ARM->Thumb calls. Also, these labels can be used
17333 as part of a computed goto or switch statement. eg gcc
17334 can generate code that looks like this:
b99bd4ef 17335
c19d1205
ZW
17336 ldr r2, [pc, .Laaa]
17337 lsl r3, r3, #2
17338 ldr r2, [r3, r2]
17339 mov pc, r2
b99bd4ef 17340
c19d1205
ZW
17341 .Lbbb: .word .Lxxx
17342 .Lccc: .word .Lyyy
17343 ..etc...
17344 .Laaa: .word Lbbb
b99bd4ef 17345
c19d1205
ZW
17346 The first instruction loads the address of the jump table.
17347 The second instruction converts a table index into a byte offset.
17348 The third instruction gets the jump address out of the table.
17349 The fourth instruction performs the jump.
b99bd4ef 17350
c19d1205
ZW
17351 If the address stored at .Laaa is that of a symbol which has the
17352 Thumb_Func bit set, then the linker will arrange for this address
17353 to have the bottom bit set, which in turn would mean that the
17354 address computation performed by the third instruction would end
17355 up with the bottom bit set. Since the ARM is capable of unaligned
17356 word loads, the instruction would then load the incorrect address
17357 out of the jump table, and chaos would ensue. */
17358 if (label_is_thumb_function_name
17359 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
17360 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 17361 {
c19d1205
ZW
17362 /* When the address of a Thumb function is taken the bottom
17363 bit of that address should be set. This will allow
17364 interworking between Arm and Thumb functions to work
17365 correctly. */
b99bd4ef 17366
c19d1205 17367 THUMB_SET_FUNC (sym, 1);
b99bd4ef 17368
c19d1205 17369 label_is_thumb_function_name = FALSE;
b99bd4ef 17370 }
07a53e5c 17371
07a53e5c 17372 dwarf2_emit_label (sym);
b99bd4ef
NC
17373}
17374
c921be7d 17375bfd_boolean
c19d1205 17376arm_data_in_code (void)
b99bd4ef 17377{
c19d1205 17378 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 17379 {
c19d1205
ZW
17380 *input_line_pointer = '/';
17381 input_line_pointer += 5;
17382 *input_line_pointer = 0;
c921be7d 17383 return TRUE;
b99bd4ef
NC
17384 }
17385
c921be7d 17386 return FALSE;
b99bd4ef
NC
17387}
17388
c19d1205
ZW
17389char *
17390arm_canonicalize_symbol_name (char * name)
b99bd4ef 17391{
c19d1205 17392 int len;
b99bd4ef 17393
c19d1205
ZW
17394 if (thumb_mode && (len = strlen (name)) > 5
17395 && streq (name + len - 5, "/data"))
17396 *(name + len - 5) = 0;
b99bd4ef 17397
c19d1205 17398 return name;
b99bd4ef 17399}
c19d1205
ZW
17400\f
17401/* Table of all register names defined by default. The user can
17402 define additional names with .req. Note that all register names
17403 should appear in both upper and lowercase variants. Some registers
17404 also have mixed-case names. */
b99bd4ef 17405
dcbf9037 17406#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 17407#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 17408#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
17409#define REGSET(p,t) \
17410 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
17411 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
17412 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
17413 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
17414#define REGSETH(p,t) \
17415 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
17416 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
17417 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
17418 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
17419#define REGSET2(p,t) \
17420 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
17421 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
17422 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
17423 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
90ec0d68
MGD
17424#define SPLRBANK(base,bank,t) \
17425 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
17426 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
17427 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
17428 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
17429 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
17430 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
7ed4c4c5 17431
c19d1205 17432static const struct reg_entry reg_names[] =
7ed4c4c5 17433{
c19d1205
ZW
17434 /* ARM integer registers. */
17435 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 17436
c19d1205
ZW
17437 /* ATPCS synonyms. */
17438 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
17439 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
17440 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 17441
c19d1205
ZW
17442 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
17443 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
17444 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 17445
c19d1205
ZW
17446 /* Well-known aliases. */
17447 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
17448 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
17449
17450 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
17451 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
17452
17453 /* Coprocessor numbers. */
17454 REGSET(p, CP), REGSET(P, CP),
17455
17456 /* Coprocessor register numbers. The "cr" variants are for backward
17457 compatibility. */
17458 REGSET(c, CN), REGSET(C, CN),
17459 REGSET(cr, CN), REGSET(CR, CN),
17460
90ec0d68
MGD
17461 /* ARM banked registers. */
17462 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
17463 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
17464 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
17465 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
17466 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
17467 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
17468 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
17469
17470 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
17471 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
17472 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
17473 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
17474 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
17475 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(SP_fiq,512|(13<<16),RNB),
17476 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
17477 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
17478
17479 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
17480 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
17481 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
17482 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
17483 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
17484 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
17485 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
fa94de6b 17486 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
90ec0d68
MGD
17487 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
17488
c19d1205
ZW
17489 /* FPA registers. */
17490 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
17491 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
17492
17493 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
17494 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
17495
17496 /* VFP SP registers. */
5287ad62
JB
17497 REGSET(s,VFS), REGSET(S,VFS),
17498 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
17499
17500 /* VFP DP Registers. */
5287ad62
JB
17501 REGSET(d,VFD), REGSET(D,VFD),
17502 /* Extra Neon DP registers. */
17503 REGSETH(d,VFD), REGSETH(D,VFD),
17504
17505 /* Neon QP registers. */
17506 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
17507
17508 /* VFP control registers. */
17509 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
17510 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
cd2cf30b
PB
17511 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
17512 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
17513 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
17514 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
c19d1205
ZW
17515
17516 /* Maverick DSP coprocessor registers. */
17517 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
17518 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
17519
17520 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
17521 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
17522 REGDEF(dspsc,0,DSPSC),
17523
17524 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
17525 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
17526 REGDEF(DSPSC,0,DSPSC),
17527
17528 /* iWMMXt data registers - p0, c0-15. */
17529 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
17530
17531 /* iWMMXt control registers - p1, c0-3. */
17532 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
17533 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
17534 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
17535 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
17536
17537 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
17538 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
17539 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
17540 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
17541 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
17542
17543 /* XScale accumulator registers. */
17544 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
17545};
17546#undef REGDEF
17547#undef REGNUM
17548#undef REGSET
7ed4c4c5 17549
c19d1205
ZW
17550/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
17551 within psr_required_here. */
17552static const struct asm_psr psrs[] =
17553{
17554 /* Backward compatibility notation. Note that "all" is no longer
17555 truly all possible PSR bits. */
17556 {"all", PSR_c | PSR_f},
17557 {"flg", PSR_f},
17558 {"ctl", PSR_c},
17559
17560 /* Individual flags. */
17561 {"f", PSR_f},
17562 {"c", PSR_c},
17563 {"x", PSR_x},
17564 {"s", PSR_s},
59b42a0d 17565
c19d1205
ZW
17566 /* Combinations of flags. */
17567 {"fs", PSR_f | PSR_s},
17568 {"fx", PSR_f | PSR_x},
17569 {"fc", PSR_f | PSR_c},
17570 {"sf", PSR_s | PSR_f},
17571 {"sx", PSR_s | PSR_x},
17572 {"sc", PSR_s | PSR_c},
17573 {"xf", PSR_x | PSR_f},
17574 {"xs", PSR_x | PSR_s},
17575 {"xc", PSR_x | PSR_c},
17576 {"cf", PSR_c | PSR_f},
17577 {"cs", PSR_c | PSR_s},
17578 {"cx", PSR_c | PSR_x},
17579 {"fsx", PSR_f | PSR_s | PSR_x},
17580 {"fsc", PSR_f | PSR_s | PSR_c},
17581 {"fxs", PSR_f | PSR_x | PSR_s},
17582 {"fxc", PSR_f | PSR_x | PSR_c},
17583 {"fcs", PSR_f | PSR_c | PSR_s},
17584 {"fcx", PSR_f | PSR_c | PSR_x},
17585 {"sfx", PSR_s | PSR_f | PSR_x},
17586 {"sfc", PSR_s | PSR_f | PSR_c},
17587 {"sxf", PSR_s | PSR_x | PSR_f},
17588 {"sxc", PSR_s | PSR_x | PSR_c},
17589 {"scf", PSR_s | PSR_c | PSR_f},
17590 {"scx", PSR_s | PSR_c | PSR_x},
17591 {"xfs", PSR_x | PSR_f | PSR_s},
17592 {"xfc", PSR_x | PSR_f | PSR_c},
17593 {"xsf", PSR_x | PSR_s | PSR_f},
17594 {"xsc", PSR_x | PSR_s | PSR_c},
17595 {"xcf", PSR_x | PSR_c | PSR_f},
17596 {"xcs", PSR_x | PSR_c | PSR_s},
17597 {"cfs", PSR_c | PSR_f | PSR_s},
17598 {"cfx", PSR_c | PSR_f | PSR_x},
17599 {"csf", PSR_c | PSR_s | PSR_f},
17600 {"csx", PSR_c | PSR_s | PSR_x},
17601 {"cxf", PSR_c | PSR_x | PSR_f},
17602 {"cxs", PSR_c | PSR_x | PSR_s},
17603 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
17604 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
17605 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
17606 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
17607 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
17608 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
17609 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
17610 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
17611 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
17612 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
17613 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
17614 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
17615 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
17616 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
17617 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
17618 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
17619 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
17620 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
17621 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
17622 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
17623 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
17624 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
17625 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
17626 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
17627};
17628
62b3e311
PB
17629/* Table of V7M psr names. */
17630static const struct asm_psr v7m_psrs[] =
17631{
2b744c99
PB
17632 {"apsr", 0 }, {"APSR", 0 },
17633 {"iapsr", 1 }, {"IAPSR", 1 },
17634 {"eapsr", 2 }, {"EAPSR", 2 },
17635 {"psr", 3 }, {"PSR", 3 },
17636 {"xpsr", 3 }, {"XPSR", 3 }, {"xPSR", 3 },
17637 {"ipsr", 5 }, {"IPSR", 5 },
17638 {"epsr", 6 }, {"EPSR", 6 },
17639 {"iepsr", 7 }, {"IEPSR", 7 },
17640 {"msp", 8 }, {"MSP", 8 },
17641 {"psp", 9 }, {"PSP", 9 },
17642 {"primask", 16}, {"PRIMASK", 16},
17643 {"basepri", 17}, {"BASEPRI", 17},
00bbc0bd
NC
17644 {"basepri_max", 18}, {"BASEPRI_MAX", 18},
17645 {"basepri_max", 18}, {"BASEPRI_MASK", 18}, /* Typo, preserved for backwards compatibility. */
2b744c99
PB
17646 {"faultmask", 19}, {"FAULTMASK", 19},
17647 {"control", 20}, {"CONTROL", 20}
62b3e311
PB
17648};
17649
c19d1205
ZW
17650/* Table of all shift-in-operand names. */
17651static const struct asm_shift_name shift_names [] =
b99bd4ef 17652{
c19d1205
ZW
17653 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
17654 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
17655 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
17656 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
17657 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
17658 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
17659};
b99bd4ef 17660
c19d1205
ZW
17661/* Table of all explicit relocation names. */
17662#ifdef OBJ_ELF
17663static struct reloc_entry reloc_names[] =
17664{
17665 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
17666 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
17667 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
17668 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
17669 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
17670 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
17671 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
17672 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
17673 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
17674 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
b43420e6 17675 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
0855e32b
NS
17676 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
17677 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
17678 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
17679 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
17680 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
17681 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
17682 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ}
c19d1205
ZW
17683};
17684#endif
b99bd4ef 17685
c19d1205
ZW
17686/* Table of all conditional affixes. 0xF is not defined as a condition code. */
17687static const struct asm_cond conds[] =
17688{
17689 {"eq", 0x0},
17690 {"ne", 0x1},
17691 {"cs", 0x2}, {"hs", 0x2},
17692 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
17693 {"mi", 0x4},
17694 {"pl", 0x5},
17695 {"vs", 0x6},
17696 {"vc", 0x7},
17697 {"hi", 0x8},
17698 {"ls", 0x9},
17699 {"ge", 0xa},
17700 {"lt", 0xb},
17701 {"gt", 0xc},
17702 {"le", 0xd},
17703 {"al", 0xe}
17704};
bfae80f2 17705
e797f7e0
MGD
17706#define UL_BARRIER(L,U,CODE,FEAT) \
17707 { L, CODE, ARM_FEATURE (FEAT, 0) }, \
17708 { U, CODE, ARM_FEATURE (FEAT, 0) }
17709
62b3e311
PB
17710static struct asm_barrier_opt barrier_opt_names[] =
17711{
e797f7e0
MGD
17712 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
17713 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
17714 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
17715 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
17716 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
17717 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
17718 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
17719 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
17720 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
17721 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
17722 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
17723 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
17724 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
17725 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
17726 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
17727 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
62b3e311
PB
17728};
17729
e797f7e0
MGD
17730#undef UL_BARRIER
17731
c19d1205
ZW
17732/* Table of ARM-format instructions. */
17733
17734/* Macros for gluing together operand strings. N.B. In all cases
17735 other than OPS0, the trailing OP_stop comes from default
17736 zero-initialization of the unspecified elements of the array. */
17737#define OPS0() { OP_stop, }
17738#define OPS1(a) { OP_##a, }
17739#define OPS2(a,b) { OP_##a,OP_##b, }
17740#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
17741#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
17742#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
17743#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
17744
5be8be5d
DG
17745/* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
17746 This is useful when mixing operands for ARM and THUMB, i.e. using the
17747 MIX_ARM_THUMB_OPERANDS macro.
17748 In order to use these macros, prefix the number of operands with _
17749 e.g. _3. */
17750#define OPS_1(a) { a, }
17751#define OPS_2(a,b) { a,b, }
17752#define OPS_3(a,b,c) { a,b,c, }
17753#define OPS_4(a,b,c,d) { a,b,c,d, }
17754#define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
17755#define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
17756
c19d1205
ZW
17757/* These macros abstract out the exact format of the mnemonic table and
17758 save some repeated characters. */
17759
17760/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
17761#define TxCE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17762 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 17763 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17764
17765/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
17766 a T_MNEM_xyz enumerator. */
17767#define TCE(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17768 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17769#define tCE(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17770 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
17771
17772/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
17773 infix after the third character. */
17774#define TxC3(mnem, op, top, nops, ops, ae, te) \
21d799b5 17775 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 17776 THUMB_VARIANT, do_##ae, do_##te }
088fa78e 17777#define TxC3w(mnem, op, top, nops, ops, ae, te) \
21d799b5 17778 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
088fa78e 17779 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 17780#define TC3(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17781 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e 17782#define TC3w(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17783 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17784#define tC3(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17785 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
088fa78e 17786#define tC3w(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17787 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205 17788
c19d1205 17789/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
17790 field is still 0xE. Many of the Thumb variants can be executed
17791 conditionally, so this is checked separately. */
c19d1205 17792#define TUE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17793 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17794 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17795
17796/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
17797 condition code field. */
17798#define TUF(mnem, op, top, nops, ops, ae, te) \
21d799b5 17799 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17800 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17801
17802/* ARM-only variants of all the above. */
6a86118a 17803#define CE(mnem, op, nops, ops, ae) \
21d799b5 17804 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
6a86118a
NC
17805
17806#define C3(mnem, op, nops, ops, ae) \
17807 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17808
e3cb604e
PB
17809/* Legacy mnemonics that always have conditional infix after the third
17810 character. */
17811#define CL(mnem, op, nops, ops, ae) \
21d799b5 17812 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17813 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17814
8f06b2d8
PB
17815/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
17816#define cCE(mnem, op, nops, ops, ae) \
21d799b5 17817 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17818
e3cb604e
PB
17819/* Legacy coprocessor instructions where conditional infix and conditional
17820 suffix are ambiguous. For consistency this includes all FPA instructions,
17821 not just the potentially ambiguous ones. */
17822#define cCL(mnem, op, nops, ops, ae) \
21d799b5 17823 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17824 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
17825
17826/* Coprocessor, takes either a suffix or a position-3 infix
17827 (for an FPA corner case). */
17828#define C3E(mnem, op, nops, ops, ae) \
21d799b5 17829 { mnem, OPS##nops ops, OT_csuf_or_in3, \
e3cb604e 17830 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17831
6a86118a 17832#define xCM_(m1, m2, m3, op, nops, ops, ae) \
21d799b5
NC
17833 { m1 #m2 m3, OPS##nops ops, \
17834 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
6a86118a
NC
17835 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17836
17837#define CM(m1, m2, op, nops, ops, ae) \
e07e6e58
NC
17838 xCM_ (m1, , m2, op, nops, ops, ae), \
17839 xCM_ (m1, eq, m2, op, nops, ops, ae), \
17840 xCM_ (m1, ne, m2, op, nops, ops, ae), \
17841 xCM_ (m1, cs, m2, op, nops, ops, ae), \
17842 xCM_ (m1, hs, m2, op, nops, ops, ae), \
17843 xCM_ (m1, cc, m2, op, nops, ops, ae), \
17844 xCM_ (m1, ul, m2, op, nops, ops, ae), \
17845 xCM_ (m1, lo, m2, op, nops, ops, ae), \
17846 xCM_ (m1, mi, m2, op, nops, ops, ae), \
17847 xCM_ (m1, pl, m2, op, nops, ops, ae), \
17848 xCM_ (m1, vs, m2, op, nops, ops, ae), \
17849 xCM_ (m1, vc, m2, op, nops, ops, ae), \
17850 xCM_ (m1, hi, m2, op, nops, ops, ae), \
17851 xCM_ (m1, ls, m2, op, nops, ops, ae), \
17852 xCM_ (m1, ge, m2, op, nops, ops, ae), \
17853 xCM_ (m1, lt, m2, op, nops, ops, ae), \
17854 xCM_ (m1, gt, m2, op, nops, ops, ae), \
17855 xCM_ (m1, le, m2, op, nops, ops, ae), \
17856 xCM_ (m1, al, m2, op, nops, ops, ae)
6a86118a
NC
17857
17858#define UE(mnem, op, nops, ops, ae) \
17859 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17860
17861#define UF(mnem, op, nops, ops, ae) \
17862 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17863
5287ad62
JB
17864/* Neon data-processing. ARM versions are unconditional with cond=0xf.
17865 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
17866 use the same encoding function for each. */
17867#define NUF(mnem, op, nops, ops, enc) \
17868 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
17869 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17870
17871/* Neon data processing, version which indirects through neon_enc_tab for
17872 the various overloaded versions of opcodes. */
17873#define nUF(mnem, op, nops, ops, enc) \
21d799b5 17874 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17875 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17876
17877/* Neon insn with conditional suffix for the ARM version, non-overloaded
17878 version. */
037e8744
JB
17879#define NCE_tag(mnem, op, nops, ops, enc, tag) \
17880 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
17881 THUMB_VARIANT, do_##enc, do_##enc }
17882
037e8744 17883#define NCE(mnem, op, nops, ops, enc) \
e07e6e58 17884 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17885
17886#define NCEF(mnem, op, nops, ops, enc) \
e07e6e58 17887 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17888
5287ad62 17889/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744 17890#define nCE_tag(mnem, op, nops, ops, enc, tag) \
21d799b5 17891 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17892 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17893
037e8744 17894#define nCE(mnem, op, nops, ops, enc) \
e07e6e58 17895 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17896
17897#define nCEF(mnem, op, nops, ops, enc) \
e07e6e58 17898 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17899
c19d1205
ZW
17900#define do_0 0
17901
c19d1205 17902static const struct asm_opcode insns[] =
bfae80f2 17903{
e74cfd16
PB
17904#define ARM_VARIANT &arm_ext_v1 /* Core ARM Instructions. */
17905#define THUMB_VARIANT &arm_ext_v4t
21d799b5
NC
17906 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
17907 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
17908 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
17909 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
17910 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
17911 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
17912 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
17913 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
17914 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
17915 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
17916 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
17917 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
17918 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
17919 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
17920 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
17921 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
c19d1205
ZW
17922
17923 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
17924 for setting PSR flag bits. They are obsolete in V6 and do not
17925 have Thumb equivalents. */
21d799b5
NC
17926 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
17927 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
17928 CL("tstp", 110f000, 2, (RR, SH), cmp),
17929 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
17930 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
17931 CL("cmpp", 150f000, 2, (RR, SH), cmp),
17932 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
17933 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
17934 CL("cmnp", 170f000, 2, (RR, SH), cmp),
17935
17936 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
17937 tC3("movs", 1b00000, _movs, 2, (RR, SH), mov, t_mov_cmp),
17938 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
17939 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
17940
17941 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
5be8be5d
DG
17942 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
17943 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
17944 OP_RRnpc),
17945 OP_ADDRGLDR),ldst, t_ldst),
17946 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
21d799b5
NC
17947
17948 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17949 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17950 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17951 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17952 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17953 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17954
17955 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
17956 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
17957 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
17958 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 17959
c19d1205 17960 /* Pseudo ops. */
21d799b5 17961 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac 17962 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
21d799b5 17963 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
c19d1205
ZW
17964
17965 /* Thumb-compatibility pseudo ops. */
21d799b5
NC
17966 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
17967 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
17968 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
17969 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
17970 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
17971 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
17972 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
17973 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
17974 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
17975 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
17976 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
17977 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
c19d1205 17978
16a4cf17 17979 /* These may simplify to neg. */
21d799b5
NC
17980 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
17981 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
16a4cf17 17982
c921be7d
NC
17983#undef THUMB_VARIANT
17984#define THUMB_VARIANT & arm_ext_v6
17985
21d799b5 17986 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
17987
17988 /* V1 instructions with no Thumb analogue prior to V6T2. */
c921be7d
NC
17989#undef THUMB_VARIANT
17990#define THUMB_VARIANT & arm_ext_v6t2
17991
21d799b5
NC
17992 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
17993 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
17994 CL("teqp", 130f000, 2, (RR, SH), cmp),
c19d1205 17995
5be8be5d
DG
17996 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
17997 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
17998 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
17999 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
c19d1205 18000
21d799b5
NC
18001 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18002 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 18003
21d799b5
NC
18004 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18005 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
18006
18007 /* V1 instructions with no Thumb analogue at all. */
21d799b5 18008 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
c19d1205
ZW
18009 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
18010
18011 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
18012 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
18013 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
18014 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
18015 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
18016 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
18017 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
18018 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
18019
c921be7d
NC
18020#undef ARM_VARIANT
18021#define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
18022#undef THUMB_VARIANT
18023#define THUMB_VARIANT & arm_ext_v4t
18024
21d799b5
NC
18025 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
18026 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
c19d1205 18027
c921be7d
NC
18028#undef THUMB_VARIANT
18029#define THUMB_VARIANT & arm_ext_v6t2
18030
21d799b5 18031 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
c19d1205
ZW
18032 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
18033
18034 /* Generic coprocessor instructions. */
21d799b5
NC
18035 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18036 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18037 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18038 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18039 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18040 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
db472d6f 18041 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18042
c921be7d
NC
18043#undef ARM_VARIANT
18044#define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
18045
21d799b5 18046 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
c19d1205
ZW
18047 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
18048
c921be7d
NC
18049#undef ARM_VARIANT
18050#define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
18051#undef THUMB_VARIANT
18052#define THUMB_VARIANT & arm_ext_msr
18053
d2cd1205
JB
18054 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
18055 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
c19d1205 18056
c921be7d
NC
18057#undef ARM_VARIANT
18058#define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
18059#undef THUMB_VARIANT
18060#define THUMB_VARIANT & arm_ext_v6t2
18061
21d799b5
NC
18062 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18063 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18064 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18065 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18066 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18067 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18068 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18069 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
c19d1205 18070
c921be7d
NC
18071#undef ARM_VARIANT
18072#define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
18073#undef THUMB_VARIANT
18074#define THUMB_VARIANT & arm_ext_v4t
18075
5be8be5d
DG
18076 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18077 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18078 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18079 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
56c0a61f
RE
18080 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18081 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
c19d1205 18082
c921be7d
NC
18083#undef ARM_VARIANT
18084#define ARM_VARIANT & arm_ext_v4t_5
18085
c19d1205
ZW
18086 /* ARM Architecture 4T. */
18087 /* Note: bx (and blx) are required on V5, even if the processor does
18088 not support Thumb. */
21d799b5 18089 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
c19d1205 18090
c921be7d
NC
18091#undef ARM_VARIANT
18092#define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
18093#undef THUMB_VARIANT
18094#define THUMB_VARIANT & arm_ext_v5t
18095
c19d1205
ZW
18096 /* Note: blx has 2 variants; the .value coded here is for
18097 BLX(2). Only this variant has conditional execution. */
21d799b5
NC
18098 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
18099 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
c19d1205 18100
c921be7d
NC
18101#undef THUMB_VARIANT
18102#define THUMB_VARIANT & arm_ext_v6t2
18103
21d799b5
NC
18104 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
18105 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18106 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18107 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18108 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18109 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18110 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
18111 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18112
c921be7d
NC
18113#undef ARM_VARIANT
18114#define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
9e3c6df6
PB
18115#undef THUMB_VARIANT
18116#define THUMB_VARIANT &arm_ext_v5exp
c921be7d 18117
21d799b5
NC
18118 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18119 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18120 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18121 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18122
21d799b5
NC
18123 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18124 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18125
21d799b5
NC
18126 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18127 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18128 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18129 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
c19d1205 18130
21d799b5
NC
18131 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18132 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18133 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18134 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18135
21d799b5
NC
18136 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18137 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18138
03ee1b7f
NC
18139 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18140 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18141 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18142 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
c19d1205 18143
c921be7d
NC
18144#undef ARM_VARIANT
18145#define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
9e3c6df6
PB
18146#undef THUMB_VARIANT
18147#define THUMB_VARIANT &arm_ext_v6t2
c921be7d 18148
21d799b5 18149 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
5be8be5d
DG
18150 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
18151 ldrd, t_ldstd),
18152 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
18153 ADDRGLDRS), ldrd, t_ldstd),
c19d1205 18154
21d799b5
NC
18155 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18156 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
c19d1205 18157
c921be7d
NC
18158#undef ARM_VARIANT
18159#define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
18160
21d799b5 18161 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
c19d1205 18162
c921be7d
NC
18163#undef ARM_VARIANT
18164#define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
18165#undef THUMB_VARIANT
18166#define THUMB_VARIANT & arm_ext_v6
18167
21d799b5
NC
18168 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
18169 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
18170 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18171 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18172 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18173 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18174 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18175 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18176 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18177 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
c19d1205 18178
c921be7d
NC
18179#undef THUMB_VARIANT
18180#define THUMB_VARIANT & arm_ext_v6t2
18181
5be8be5d
DG
18182 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
18183 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
18184 strex, t_strex),
21d799b5
NC
18185 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18186 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311 18187
21d799b5
NC
18188 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
18189 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
62b3e311 18190
9e3c6df6 18191/* ARM V6 not included in V7M. */
c921be7d
NC
18192#undef THUMB_VARIANT
18193#define THUMB_VARIANT & arm_ext_v6_notm
9e3c6df6 18194 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6 18195 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
9e3c6df6
PB
18196 UF(rfeib, 9900a00, 1, (RRw), rfe),
18197 UF(rfeda, 8100a00, 1, (RRw), rfe),
18198 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18199 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6
RE
18200 UF(rfefa, 8100a00, 1, (RRw), rfe),
18201 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18202 UF(rfeed, 9900a00, 1, (RRw), rfe),
9e3c6df6 18203 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
d709e4e6
RE
18204 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
18205 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
9e3c6df6 18206 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
d709e4e6 18207 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
9e3c6df6 18208 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
d709e4e6 18209 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
9e3c6df6 18210 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
d709e4e6 18211 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
c921be7d 18212
9e3c6df6
PB
18213/* ARM V6 not included in V7M (eg. integer SIMD). */
18214#undef THUMB_VARIANT
18215#define THUMB_VARIANT & arm_ext_v6_dsp
21d799b5
NC
18216 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
18217 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
18218 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
18219 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18220 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18221 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18222 /* Old name for QASX. */
21d799b5
NC
18223 TCE("qaddsubx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18224 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18225 /* Old name for QSAX. */
21d799b5
NC
18226 TCE("qsubaddx", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18227 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18228 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18229 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18230 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18231 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18232 /* Old name for SASX. */
21d799b5
NC
18233 TCE("saddsubx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18234 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18235 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18236 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18237 /* Old name for SHASX. */
21d799b5
NC
18238 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18239 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18240 /* Old name for SHSAX. */
21d799b5
NC
18241 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18242 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18243 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18244 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18245 /* Old name for SSAX. */
21d799b5
NC
18246 TCE("ssubaddx", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18247 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18248 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18249 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18250 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18251 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18252 /* Old name for UASX. */
21d799b5
NC
18253 TCE("uaddsubx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18254 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18255 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18256 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18257 /* Old name for UHASX. */
21d799b5
NC
18258 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18259 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18260 /* Old name for UHSAX. */
21d799b5
NC
18261 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18262 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18263 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18264 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18265 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18266 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18267 /* Old name for UQASX. */
21d799b5
NC
18268 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18269 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18270 /* Old name for UQSAX. */
21d799b5
NC
18271 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18272 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18273 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18274 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18275 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18276 /* Old name for USAX. */
21d799b5
NC
18277 TCE("usubaddx", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18278 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18279 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18280 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18281 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18282 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18283 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18284 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18285 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18286 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18287 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18288 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18289 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18290 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18291 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18292 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18293 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18294 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18295 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18296 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18297 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18298 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18299 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18300 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18301 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18302 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18303 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18304 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18305 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
21d799b5
NC
18306 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
18307 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
18308 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18309 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18310 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
c19d1205 18311
c921be7d
NC
18312#undef ARM_VARIANT
18313#define ARM_VARIANT & arm_ext_v6k
18314#undef THUMB_VARIANT
18315#define THUMB_VARIANT & arm_ext_v6k
18316
21d799b5
NC
18317 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
18318 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
18319 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
18320 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
c19d1205 18321
c921be7d
NC
18322#undef THUMB_VARIANT
18323#define THUMB_VARIANT & arm_ext_v6_notm
5be8be5d
DG
18324 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
18325 ldrexd, t_ldrexd),
18326 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
18327 RRnpcb), strexd, t_strexd),
ebdca51a 18328
c921be7d
NC
18329#undef THUMB_VARIANT
18330#define THUMB_VARIANT & arm_ext_v6t2
5be8be5d
DG
18331 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
18332 rd_rn, rd_rn),
18333 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
18334 rd_rn, rd_rn),
18335 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18336 strex, t_strexbh),
5be8be5d 18337 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18338 strex, t_strexbh),
21d799b5 18339 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
c19d1205 18340
c921be7d 18341#undef ARM_VARIANT
f4c65163
MGD
18342#define ARM_VARIANT & arm_ext_sec
18343#undef THUMB_VARIANT
18344#define THUMB_VARIANT & arm_ext_sec
c921be7d 18345
21d799b5 18346 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205 18347
90ec0d68
MGD
18348#undef ARM_VARIANT
18349#define ARM_VARIANT & arm_ext_virt
18350#undef THUMB_VARIANT
18351#define THUMB_VARIANT & arm_ext_virt
18352
18353 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
18354 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
18355
c921be7d
NC
18356#undef ARM_VARIANT
18357#define ARM_VARIANT & arm_ext_v6t2
f4c65163
MGD
18358#undef THUMB_VARIANT
18359#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 18360
21d799b5
NC
18361 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
18362 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
18363 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
18364 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
c19d1205 18365
21d799b5
NC
18366 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
18367 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
18368 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
18369 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205 18370
5be8be5d
DG
18371 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18372 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18373 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18374 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
c19d1205 18375
bf3eeda7
NS
18376 /* Thumb-only instructions. */
18377#undef ARM_VARIANT
18378#define ARM_VARIANT NULL
18379 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
18380 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
c921be7d
NC
18381
18382 /* ARM does not really have an IT instruction, so always allow it.
18383 The opcode is copied from Thumb in order to allow warnings in
18384 -mimplicit-it=[never | arm] modes. */
18385#undef ARM_VARIANT
18386#define ARM_VARIANT & arm_ext_v1
18387
21d799b5
NC
18388 TUE("it", bf08, bf08, 1, (COND), it, t_it),
18389 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
18390 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
18391 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
18392 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
18393 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
18394 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
18395 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
18396 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
18397 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
18398 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
18399 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
18400 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
18401 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
18402 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
1c444d06 18403 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
21d799b5
NC
18404 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
18405 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
c19d1205 18406
92e90b6e 18407 /* Thumb2 only instructions. */
c921be7d
NC
18408#undef ARM_VARIANT
18409#define ARM_VARIANT NULL
92e90b6e 18410
21d799b5
NC
18411 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18412 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18413 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
18414 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
18415 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
18416 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
92e90b6e 18417
eea54501
MGD
18418 /* Hardware division instructions. */
18419#undef ARM_VARIANT
18420#define ARM_VARIANT & arm_ext_adiv
c921be7d
NC
18421#undef THUMB_VARIANT
18422#define THUMB_VARIANT & arm_ext_div
18423
eea54501
MGD
18424 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
18425 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
62b3e311 18426
7e806470 18427 /* ARM V6M/V7 instructions. */
c921be7d
NC
18428#undef ARM_VARIANT
18429#define ARM_VARIANT & arm_ext_barrier
18430#undef THUMB_VARIANT
18431#define THUMB_VARIANT & arm_ext_barrier
18432
52e7f43d
RE
18433 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, t_barrier),
18434 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, t_barrier),
18435 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, t_barrier),
7e806470 18436
62b3e311 18437 /* ARM V7 instructions. */
c921be7d
NC
18438#undef ARM_VARIANT
18439#define ARM_VARIANT & arm_ext_v7
18440#undef THUMB_VARIANT
18441#define THUMB_VARIANT & arm_ext_v7
18442
21d799b5
NC
18443 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
18444 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
62b3e311 18445
60e5ef9f
MGD
18446#undef ARM_VARIANT
18447#define ARM_VARIANT & arm_ext_mp
18448#undef THUMB_VARIANT
18449#define THUMB_VARIANT & arm_ext_mp
18450
18451 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
18452
53c4b28b
MGD
18453 /* AArchv8 instructions. */
18454#undef ARM_VARIANT
18455#define ARM_VARIANT & arm_ext_v8
18456#undef THUMB_VARIANT
18457#define THUMB_VARIANT & arm_ext_v8
18458
18459 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
8884b720 18460 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
4b8c8c02
RE
18461 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18462 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18463 ldrexd, t_ldrexd),
4b8c8c02
RE
18464 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
18465 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18466 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
18467 stlex, t_stlex),
18468 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18469 strexd, t_strexd),
4b8c8c02
RE
18470 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
18471 stlex, t_stlex),
18472 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
18473 stlex, t_stlex),
18474 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18475 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18476 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18477 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
18478 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
18479 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
53c4b28b 18480
8884b720 18481 /* ARMv8 T32 only. */
b79f7053
MGD
18482#undef ARM_VARIANT
18483#define ARM_VARIANT NULL
18484 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
18485 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
18486 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
18487
33399f07
MGD
18488 /* FP for ARMv8. */
18489#undef ARM_VARIANT
18490#define ARM_VARIANT & fpu_vfp_ext_armv8
18491#undef THUMB_VARIANT
18492#define THUMB_VARIANT & fpu_vfp_ext_armv8
18493
18494 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
18495 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
18496 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
18497 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
73924fbc
MGD
18498 nUF(vmaxnm, _vmaxnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
18499 nUF(vminnm, _vminnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
7e8e6784
MGD
18500 nUF(vcvta, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvta),
18501 nUF(vcvtn, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtn),
18502 nUF(vcvtp, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtp),
18503 nUF(vcvtm, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtm),
30bdf752
MGD
18504 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
18505 nCE(vrintz, _vrintr, 2, (RNSDQ, oRNSDQ), vrintz),
18506 nCE(vrintx, _vrintr, 2, (RNSDQ, oRNSDQ), vrintx),
18507 nUF(vrinta, _vrinta, 2, (RNSDQ, oRNSDQ), vrinta),
18508 nUF(vrintn, _vrinta, 2, (RNSDQ, oRNSDQ), vrintn),
18509 nUF(vrintp, _vrinta, 2, (RNSDQ, oRNSDQ), vrintp),
18510 nUF(vrintm, _vrinta, 2, (RNSDQ, oRNSDQ), vrintm),
33399f07 18511
91ff7894
MGD
18512 /* Crypto v1 extensions. */
18513#undef ARM_VARIANT
18514#define ARM_VARIANT & fpu_crypto_ext_armv8
18515#undef THUMB_VARIANT
18516#define THUMB_VARIANT & fpu_crypto_ext_armv8
18517
18518 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
18519 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
18520 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
18521 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
48adcd8e
MGD
18522 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
18523 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
18524 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
18525 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
18526 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
18527 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
18528 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
3c9017d2
MGD
18529 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
18530 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
18531 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
91ff7894 18532
c921be7d
NC
18533#undef ARM_VARIANT
18534#define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
53c4b28b
MGD
18535#undef THUMB_VARIANT
18536#define THUMB_VARIANT NULL
c921be7d 18537
21d799b5
NC
18538 cCE("wfs", e200110, 1, (RR), rd),
18539 cCE("rfs", e300110, 1, (RR), rd),
18540 cCE("wfc", e400110, 1, (RR), rd),
18541 cCE("rfc", e500110, 1, (RR), rd),
18542
18543 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
18544 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
18545 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
18546 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
18547
18548 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
18549 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
18550 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
18551 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
18552
18553 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
18554 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
18555 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
18556 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
18557 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
18558 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
18559 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
18560 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
18561 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
18562 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
18563 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
18564 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
18565
18566 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
18567 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
18568 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
18569 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
18570 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
18571 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
18572 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
18573 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
18574 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
18575 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
18576 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
18577 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
18578
18579 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
18580 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
18581 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
18582 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
18583 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
18584 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
18585 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
18586 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
18587 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
18588 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
18589 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
18590 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
18591
18592 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
18593 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
18594 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
18595 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
18596 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
18597 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
18598 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
18599 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
18600 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
18601 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
18602 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
18603 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
18604
18605 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
18606 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
18607 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
18608 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
18609 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
18610 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
18611 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
18612 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
18613 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
18614 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
18615 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
18616 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
18617
18618 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
18619 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
18620 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
18621 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
18622 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
18623 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
18624 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
18625 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
18626 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
18627 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
18628 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
18629 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
18630
18631 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
18632 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
18633 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
18634 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
18635 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
18636 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
18637 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
18638 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
18639 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
18640 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
18641 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
18642 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
18643
18644 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
18645 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
18646 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
18647 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
18648 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
18649 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
18650 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
18651 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
18652 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
18653 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
18654 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
18655 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
18656
18657 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
18658 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
18659 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
18660 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
18661 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
18662 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
18663 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
18664 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
18665 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
18666 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
18667 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
18668 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
18669
18670 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
18671 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
18672 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
18673 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
18674 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
18675 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
18676 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
18677 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
18678 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
18679 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
18680 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
18681 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
18682
18683 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
18684 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
18685 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
18686 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
18687 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
18688 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
18689 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
18690 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
18691 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
18692 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
18693 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
18694 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
18695
18696 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
18697 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
18698 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
18699 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
18700 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
18701 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
18702 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
18703 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
18704 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
18705 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
18706 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
18707 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
18708
18709 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
18710 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
18711 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
18712 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
18713 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
18714 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
18715 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
18716 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
18717 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
18718 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
18719 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
18720 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
18721
18722 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
18723 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
18724 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
18725 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
18726 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
18727 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
18728 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
18729 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
18730 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
18731 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
18732 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
18733 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
18734
18735 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
18736 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
18737 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
18738 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
18739 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
18740 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
18741 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
18742 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
18743 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
18744 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
18745 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
18746 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
18747
18748 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
18749 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
18750 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
18751 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
18752 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
18753 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
18754 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
18755 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
18756 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
18757 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
18758 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
18759 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
18760
18761 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
18762 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
18763 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
18764 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
18765 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
18766 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18767 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18768 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18769 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
18770 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
18771 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
18772 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
18773
18774 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
18775 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
18776 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
18777 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
18778 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
18779 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18780 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18781 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18782 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
18783 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
18784 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
18785 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
18786
18787 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
18788 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
18789 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
18790 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
18791 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
18792 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18793 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18794 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18795 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
18796 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
18797 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
18798 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
18799
18800 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
18801 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
18802 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
18803 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
18804 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
18805 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18806 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18807 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18808 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
18809 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
18810 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
18811 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
18812
18813 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
18814 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
18815 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
18816 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
18817 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
18818 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18819 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18820 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18821 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
18822 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
18823 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
18824 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
18825
18826 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
18827 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
18828 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
18829 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
18830 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
18831 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18832 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18833 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18834 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
18835 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
18836 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
18837 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
18838
18839 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
18840 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
18841 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
18842 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
18843 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
18844 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18845 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18846 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18847 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
18848 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
18849 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
18850 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
18851
18852 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
18853 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
18854 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
18855 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
18856 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
18857 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18858 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18859 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18860 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
18861 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
18862 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
18863 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
18864
18865 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
18866 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
18867 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
18868 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
18869 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
18870 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18871 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18872 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18873 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
18874 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
18875 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
18876 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
18877
18878 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
18879 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
18880 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
18881 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
18882 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
18883 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18884 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18885 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18886 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
18887 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
18888 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
18889 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
18890
18891 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18892 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18893 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18894 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18895 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18896 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18897 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18898 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18899 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18900 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18901 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18902 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18903
18904 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18905 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18906 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18907 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18908 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18909 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18910 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18911 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18912 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18913 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18914 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18915 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18916
18917 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18918 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18919 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18920 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18921 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18922 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18923 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18924 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18925 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18926 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18927 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18928 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18929
18930 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
18931 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
18932 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
18933 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
18934
18935 cCL("flts", e000110, 2, (RF, RR), rn_rd),
18936 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
18937 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
18938 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
18939 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
18940 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
18941 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
18942 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
18943 cCL("flte", e080110, 2, (RF, RR), rn_rd),
18944 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
18945 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
18946 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
b99bd4ef 18947
c19d1205
ZW
18948 /* The implementation of the FIX instruction is broken on some
18949 assemblers, in that it accepts a precision specifier as well as a
18950 rounding specifier, despite the fact that this is meaningless.
18951 To be more compatible, we accept it as well, though of course it
18952 does not set any bits. */
21d799b5
NC
18953 cCE("fix", e100110, 2, (RR, RF), rd_rm),
18954 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
18955 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
18956 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
18957 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
18958 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
18959 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
18960 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
18961 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
18962 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
18963 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
18964 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
18965 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
bfae80f2 18966
c19d1205 18967 /* Instructions that were new with the real FPA, call them V2. */
c921be7d
NC
18968#undef ARM_VARIANT
18969#define ARM_VARIANT & fpu_fpa_ext_v2
18970
21d799b5
NC
18971 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18972 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18973 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18974 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18975 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18976 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205 18977
c921be7d
NC
18978#undef ARM_VARIANT
18979#define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
18980
c19d1205 18981 /* Moves and type conversions. */
21d799b5
NC
18982 cCE("fcpys", eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
18983 cCE("fmrs", e100a10, 2, (RR, RVS), vfp_reg_from_sp),
18984 cCE("fmsr", e000a10, 2, (RVS, RR), vfp_sp_from_reg),
18985 cCE("fmstat", ef1fa10, 0, (), noargs),
7465e07a
NC
18986 cCE("vmrs", ef00a10, 2, (APSR_RR, RVC), vmrs),
18987 cCE("vmsr", ee00a10, 2, (RVC, RR), vmsr),
21d799b5
NC
18988 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
18989 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
18990 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
18991 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
18992 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
18993 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
18994 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
18995 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
18996
18997 /* Memory operations. */
21d799b5
NC
18998 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
18999 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
55881a11
MGD
19000 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19001 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19002 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19003 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19004 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19005 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19006 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19007 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19008 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19009 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19010 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19011 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19012 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19013 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19014 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19015 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 19016
c19d1205 19017 /* Monadic operations. */
21d799b5
NC
19018 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
19019 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
19020 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
19021
19022 /* Dyadic operations. */
21d799b5
NC
19023 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19024 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19025 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19026 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19027 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19028 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19029 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19030 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19031 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 19032
c19d1205 19033 /* Comparisons. */
21d799b5
NC
19034 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
19035 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
19036 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
19037 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 19038
62f3b8c8
PB
19039 /* Double precision load/store are still present on single precision
19040 implementations. */
19041 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
19042 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
55881a11
MGD
19043 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19044 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19045 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19046 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19047 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19048 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19049 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19050 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
62f3b8c8 19051
c921be7d
NC
19052#undef ARM_VARIANT
19053#define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
19054
c19d1205 19055 /* Moves and type conversions. */
21d799b5
NC
19056 cCE("fcpyd", eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19057 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19058 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19059 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
19060 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
19061 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
19062 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
19063 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19064 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
19065 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19066 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19067 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19068 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205 19069
c19d1205 19070 /* Monadic operations. */
21d799b5
NC
19071 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19072 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19073 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
19074
19075 /* Dyadic operations. */
21d799b5
NC
19076 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19077 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19078 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19079 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19080 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19081 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19082 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19083 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19084 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 19085
c19d1205 19086 /* Comparisons. */
21d799b5
NC
19087 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19088 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
19089 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19090 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205 19091
c921be7d
NC
19092#undef ARM_VARIANT
19093#define ARM_VARIANT & fpu_vfp_ext_v2
19094
21d799b5
NC
19095 cCE("fmsrr", c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
19096 cCE("fmrrs", c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
19097 cCE("fmdrr", c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
19098 cCE("fmrrd", c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
5287ad62 19099
037e8744
JB
19100/* Instructions which may belong to either the Neon or VFP instruction sets.
19101 Individual encoder functions perform additional architecture checks. */
c921be7d
NC
19102#undef ARM_VARIANT
19103#define ARM_VARIANT & fpu_vfp_ext_v1xd
19104#undef THUMB_VARIANT
19105#define THUMB_VARIANT & fpu_vfp_ext_v1xd
19106
037e8744
JB
19107 /* These mnemonics are unique to VFP. */
19108 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
19109 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
21d799b5
NC
19110 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19111 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19112 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19113 nCE(vcmp, _vcmp, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
19114 nCE(vcmpe, _vcmpe, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
037e8744
JB
19115 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
19116 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
19117 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
19118
19119 /* Mnemonics shared by Neon and VFP. */
21d799b5
NC
19120 nCEF(vmul, _vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
19121 nCEF(vmla, _vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
19122 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
037e8744 19123
21d799b5
NC
19124 nCEF(vadd, _vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
19125 nCEF(vsub, _vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
037e8744
JB
19126
19127 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19128 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19129
55881a11
MGD
19130 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19131 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19132 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19133 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19134 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19135 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
4962c51a
MS
19136 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
19137 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744 19138
5f1af56b 19139 nCEF(vcvt, _vcvt, 3, (RNSDQ, RNSDQ, oI32z), neon_cvt),
e3e535bc 19140 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
c70a8987
MGD
19141 NCEF(vcvtb, eb20a40, 2, (RVSD, RVSD), neon_cvtb),
19142 NCEF(vcvtt, eb20a40, 2, (RVSD, RVSD), neon_cvtt),
f31fef98 19143
037e8744
JB
19144
19145 /* NOTE: All VMOV encoding is special-cased! */
19146 NCE(vmov, 0, 1, (VMOV), neon_mov),
19147 NCE(vmovq, 0, 1, (VMOV), neon_mov),
19148
c921be7d
NC
19149#undef THUMB_VARIANT
19150#define THUMB_VARIANT & fpu_neon_ext_v1
19151#undef ARM_VARIANT
19152#define ARM_VARIANT & fpu_neon_ext_v1
19153
5287ad62
JB
19154 /* Data processing with three registers of the same length. */
19155 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
19156 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
19157 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
19158 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19159 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19160 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19161 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19162 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19163 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19164 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
19165 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19166 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
19167 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19168 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
627907b7
JB
19169 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19170 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
19171 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19172 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
5287ad62
JB
19173 /* If not immediate, fall back to neon_dyadic_i64_su.
19174 shl_imm should accept I8 I16 I32 I64,
19175 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
21d799b5
NC
19176 nUF(vshl, _vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
19177 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
19178 nUF(vqshl, _vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
19179 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
5287ad62 19180 /* Logic ops, types optional & ignored. */
4316f0d2
DG
19181 nUF(vand, _vand, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19182 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19183 nUF(vbic, _vbic, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19184 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19185 nUF(vorr, _vorr, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19186 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19187 nUF(vorn, _vorn, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19188 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19189 nUF(veor, _veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
19190 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
5287ad62
JB
19191 /* Bitfield ops, untyped. */
19192 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19193 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19194 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19195 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19196 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19197 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19198 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32. */
21d799b5
NC
19199 nUF(vabd, _vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19200 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19201 nUF(vmax, _vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19202 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19203 nUF(vmin, _vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19204 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
5287ad62
JB
19205 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
19206 back to neon_dyadic_if_su. */
21d799b5
NC
19207 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19208 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19209 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19210 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19211 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19212 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
19213 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19214 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 19215 /* Comparison. Type I8 I16 I32 F32. */
21d799b5
NC
19216 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
19217 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
5287ad62 19218 /* As above, D registers only. */
21d799b5
NC
19219 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
19220 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
5287ad62 19221 /* Int and float variants, signedness unimportant. */
21d799b5
NC
19222 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19223 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19224 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
5287ad62 19225 /* Add/sub take types I8 I16 I32 I64 F32. */
21d799b5
NC
19226 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
19227 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
19228 /* vtst takes sizes 8, 16, 32. */
19229 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
19230 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
19231 /* VMUL takes I8 I16 I32 F32 P8. */
21d799b5 19232 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62 19233 /* VQD{R}MULH takes S16 S32. */
21d799b5
NC
19234 nUF(vqdmulh, _vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19235 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
19236 nUF(vqrdmulh, _vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19237 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
5287ad62
JB
19238 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19239 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
19240 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19241 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
92559b5b
PB
19242 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19243 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
19244 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19245 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
5287ad62
JB
19246 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19247 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19248 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19249 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19250
19251 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 19252 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
19253 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
19254
19255 /* Data processing with two registers and a shift amount. */
19256 /* Right shifts, and variants with rounding.
19257 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
19258 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19259 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19260 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19261 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19262 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19263 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19264 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19265 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19266 /* Shift and insert. Sizes accepted 8 16 32 64. */
19267 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
19268 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
19269 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
19270 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
19271 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
19272 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
19273 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
19274 /* Right shift immediate, saturating & narrowing, with rounding variants.
19275 Types accepted S16 S32 S64 U16 U32 U64. */
19276 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19277 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19278 /* As above, unsigned. Types accepted S16 S32 S64. */
19279 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19280 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19281 /* Right shift narrowing. Types accepted I16 I32 I64. */
19282 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19283 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19284 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
21d799b5 19285 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
5287ad62 19286 /* CVT with optional immediate for fixed-point variant. */
21d799b5 19287 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 19288
4316f0d2
DG
19289 nUF(vmvn, _vmvn, 2, (RNDQ, RNDQ_Ibig), neon_mvn),
19290 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
5287ad62
JB
19291
19292 /* Data processing, three registers of different lengths. */
19293 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
19294 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
19295 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
19296 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
19297 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
19298 /* If not scalar, fall back to neon_dyadic_long.
19299 Vector types as above, scalar types S16 S32 U16 U32. */
21d799b5
NC
19300 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
19301 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
5287ad62
JB
19302 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
19303 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19304 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19305 /* Dyadic, narrowing insns. Types I16 I32 I64. */
19306 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19307 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19308 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19309 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19310 /* Saturating doubling multiplies. Types S16 S32. */
21d799b5
NC
19311 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19312 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19313 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
5287ad62
JB
19314 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
19315 S16 S32 U16 U32. */
21d799b5 19316 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
5287ad62
JB
19317
19318 /* Extract. Size 8. */
3b8d421e
PB
19319 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
19320 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
5287ad62
JB
19321
19322 /* Two registers, miscellaneous. */
19323 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
19324 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
19325 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
19326 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
19327 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
19328 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
19329 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
19330 /* Vector replicate. Sizes 8 16 32. */
21d799b5
NC
19331 nCE(vdup, _vdup, 2, (RNDQ, RR_RNSC), neon_dup),
19332 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
5287ad62
JB
19333 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
19334 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
19335 /* VMOVN. Types I16 I32 I64. */
21d799b5 19336 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
5287ad62 19337 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
21d799b5 19338 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
5287ad62 19339 /* VQMOVUN. Types S16 S32 S64. */
21d799b5 19340 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
5287ad62
JB
19341 /* VZIP / VUZP. Sizes 8 16 32. */
19342 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
19343 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
19344 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
19345 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
19346 /* VQABS / VQNEG. Types S8 S16 S32. */
19347 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19348 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
19349 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19350 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
19351 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
19352 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
19353 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
19354 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
19355 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
19356 /* Reciprocal estimates. Types U32 F32. */
19357 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
19358 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
19359 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
19360 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
19361 /* VCLS. Types S8 S16 S32. */
19362 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
19363 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
19364 /* VCLZ. Types I8 I16 I32. */
19365 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
19366 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
19367 /* VCNT. Size 8. */
19368 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
19369 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
19370 /* Two address, untyped. */
19371 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
19372 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
19373 /* VTRN. Sizes 8 16 32. */
21d799b5
NC
19374 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
19375 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
5287ad62
JB
19376
19377 /* Table lookup. Size 8. */
19378 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19379 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19380
c921be7d
NC
19381#undef THUMB_VARIANT
19382#define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
19383#undef ARM_VARIANT
19384#define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
19385
5287ad62 19386 /* Neon element/structure load/store. */
21d799b5
NC
19387 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19388 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19389 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19390 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19391 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19392 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19393 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
19394 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
5287ad62 19395
c921be7d 19396#undef THUMB_VARIANT
62f3b8c8
PB
19397#define THUMB_VARIANT &fpu_vfp_ext_v3xd
19398#undef ARM_VARIANT
19399#define ARM_VARIANT &fpu_vfp_ext_v3xd
19400 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
19401 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19402 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19403 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19404 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19405 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19406 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19407 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19408 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19409
19410#undef THUMB_VARIANT
c921be7d
NC
19411#define THUMB_VARIANT & fpu_vfp_ext_v3
19412#undef ARM_VARIANT
19413#define ARM_VARIANT & fpu_vfp_ext_v3
19414
21d799b5 19415 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
21d799b5 19416 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19417 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19418 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19419 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19420 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19421 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19422 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19423 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 19424
62f3b8c8
PB
19425#undef ARM_VARIANT
19426#define ARM_VARIANT &fpu_vfp_ext_fma
19427#undef THUMB_VARIANT
19428#define THUMB_VARIANT &fpu_vfp_ext_fma
19429 /* Mnemonics shared by Neon and VFP. These are included in the
19430 VFP FMA variant; NEON and VFP FMA always includes the NEON
19431 FMA instructions. */
19432 nCEF(vfma, _vfma, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19433 nCEF(vfms, _vfms, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19434 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
19435 the v form should always be used. */
19436 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19437 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19438 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19439 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19440 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19441 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19442
5287ad62 19443#undef THUMB_VARIANT
c921be7d
NC
19444#undef ARM_VARIANT
19445#define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
19446
21d799b5
NC
19447 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19448 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19449 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19450 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19451 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19452 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19453 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
19454 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205 19455
c921be7d
NC
19456#undef ARM_VARIANT
19457#define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
19458
21d799b5
NC
19459 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
19460 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
19461 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
19462 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
19463 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
19464 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
19465 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
19466 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
19467 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
19468 cCE("textrmub", e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19469 cCE("textrmuh", e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19470 cCE("textrmuw", e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19471 cCE("textrmsb", e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19472 cCE("textrmsh", e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19473 cCE("textrmsw", e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19474 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19475 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19476 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19477 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
19478 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
19479 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19480 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19481 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19482 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19483 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19484 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19485 cCE("tmovmskb", e100030, 2, (RR, RIWR), rd_rn),
19486 cCE("tmovmskh", e500030, 2, (RR, RIWR), rd_rn),
19487 cCE("tmovmskw", e900030, 2, (RR, RIWR), rd_rn),
19488 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
19489 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
19490 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
19491 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
19492 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
19493 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
19494 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
19495 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
19496 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19497 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19498 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19499 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19500 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19501 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19502 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19503 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19504 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19505 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
19506 cCE("walignr0", e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19507 cCE("walignr1", e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19508 cCE("walignr2", ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19509 cCE("walignr3", eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19510 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19511 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19512 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19513 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19514 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19515 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19516 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19517 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19518 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19519 cCE("wcmpgtub", e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19520 cCE("wcmpgtuh", e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19521 cCE("wcmpgtuw", e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19522 cCE("wcmpgtsb", e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19523 cCE("wcmpgtsh", e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19524 cCE("wcmpgtsw", eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19525 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19526 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19527 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
19528 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
19529 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19530 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19531 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19532 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19533 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19534 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19535 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19536 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19537 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19538 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19539 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19540 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19541 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19542 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19543 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19544 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19545 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19546 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19547 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
19548 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19549 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19550 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19551 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19552 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19553 cCE("wpackhss", e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19554 cCE("wpackhus", e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19555 cCE("wpackwss", eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19556 cCE("wpackwus", e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19557 cCE("wpackdss", ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19558 cCE("wpackdus", ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19559 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19560 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19561 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19562 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19563 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19564 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19565 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19566 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19567 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19568 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19569 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
19570 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19571 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19572 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19573 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19574 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19575 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19576 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19577 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19578 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19579 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19580 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19581 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19582 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19583 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19584 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19585 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19586 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19587 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19588 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19589 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19590 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
19591 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
19592 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19593 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19594 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19595 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19596 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19597 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19598 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19599 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19600 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19601 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
19602 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
19603 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
19604 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
19605 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
19606 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
19607 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19608 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19609 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19610 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
19611 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
19612 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
19613 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
19614 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
19615 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
19616 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19617 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19618 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19619 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19620 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205 19621
c921be7d
NC
19622#undef ARM_VARIANT
19623#define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
19624
21d799b5
NC
19625 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
19626 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
19627 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
19628 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
19629 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
19630 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
19631 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19632 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19633 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19634 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19635 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19636 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19637 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19638 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19639 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19640 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19641 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19642 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19643 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19644 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19645 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
19646 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19647 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19648 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19649 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19650 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19651 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19652 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19653 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19654 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19655 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19656 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19657 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19658 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19659 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19660 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19661 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19662 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19663 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19664 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19665 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19666 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19667 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19668 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19669 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19670 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19671 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19672 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19673 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19674 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19675 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19676 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19677 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19678 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19679 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19680 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19681 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
2d447fca 19682
c921be7d
NC
19683#undef ARM_VARIANT
19684#define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
19685
21d799b5
NC
19686 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
19687 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
19688 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
19689 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
19690 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
19691 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
19692 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
19693 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
19694 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
19695 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
19696 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
19697 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
19698 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
19699 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
19700 cCE("cfmv64lr", e000510, 2, (RMDX, RR), rn_rd),
19701 cCE("cfmvr64l", e100510, 2, (RR, RMDX), rd_rn),
19702 cCE("cfmv64hr", e000530, 2, (RMDX, RR), rn_rd),
19703 cCE("cfmvr64h", e100530, 2, (RR, RMDX), rd_rn),
19704 cCE("cfmval32", e200440, 2, (RMAX, RMFX), rd_rn),
19705 cCE("cfmv32al", e100440, 2, (RMFX, RMAX), rd_rn),
19706 cCE("cfmvam32", e200460, 2, (RMAX, RMFX), rd_rn),
19707 cCE("cfmv32am", e100460, 2, (RMFX, RMAX), rd_rn),
19708 cCE("cfmvah32", e200480, 2, (RMAX, RMFX), rd_rn),
19709 cCE("cfmv32ah", e100480, 2, (RMFX, RMAX), rd_rn),
19710 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
19711 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
19712 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
19713 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
19714 cCE("cfmvsc32", e2004e0, 2, (RMDS, RMDX), mav_dspsc),
19715 cCE("cfmv32sc", e1004e0, 2, (RMDX, RMDS), rd),
19716 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
19717 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
19718 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
19719 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
19720 cCE("cfcvt32s", e000480, 2, (RMF, RMFX), rd_rn),
19721 cCE("cfcvt32d", e0004a0, 2, (RMD, RMFX), rd_rn),
19722 cCE("cfcvt64s", e0004c0, 2, (RMF, RMDX), rd_rn),
19723 cCE("cfcvt64d", e0004e0, 2, (RMD, RMDX), rd_rn),
19724 cCE("cfcvts32", e100580, 2, (RMFX, RMF), rd_rn),
19725 cCE("cfcvtd32", e1005a0, 2, (RMFX, RMD), rd_rn),
19726 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
19727 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
19728 cCE("cfrshl32", e000550, 3, (RMFX, RMFX, RR), mav_triple),
19729 cCE("cfrshl64", e000570, 3, (RMDX, RMDX, RR), mav_triple),
19730 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
19731 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
19732 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
19733 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
19734 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
19735 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
19736 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
19737 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
19738 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
19739 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
19740 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
19741 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
19742 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
19743 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
19744 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
19745 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
19746 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
19747 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
19748 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
19749 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
19750 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19751 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19752 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19753 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19754 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19755 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19756 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19757 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19758 cCE("cfmadd32", e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
19759 cCE("cfmsub32", e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
19760 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
19761 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
c19d1205
ZW
19762};
19763#undef ARM_VARIANT
19764#undef THUMB_VARIANT
19765#undef TCE
c19d1205
ZW
19766#undef TUE
19767#undef TUF
19768#undef TCC
8f06b2d8 19769#undef cCE
e3cb604e
PB
19770#undef cCL
19771#undef C3E
c19d1205
ZW
19772#undef CE
19773#undef CM
19774#undef UE
19775#undef UF
19776#undef UT
5287ad62
JB
19777#undef NUF
19778#undef nUF
19779#undef NCE
19780#undef nCE
c19d1205
ZW
19781#undef OPS0
19782#undef OPS1
19783#undef OPS2
19784#undef OPS3
19785#undef OPS4
19786#undef OPS5
19787#undef OPS6
19788#undef do_0
19789\f
19790/* MD interface: bits in the object file. */
bfae80f2 19791
c19d1205
ZW
19792/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
19793 for use in the a.out file, and stores them in the array pointed to by buf.
19794 This knows about the endian-ness of the target machine and does
19795 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
19796 2 (short) and 4 (long) Floating numbers are put out as a series of
19797 LITTLENUMS (shorts, here at least). */
b99bd4ef 19798
c19d1205
ZW
19799void
19800md_number_to_chars (char * buf, valueT val, int n)
19801{
19802 if (target_big_endian)
19803 number_to_chars_bigendian (buf, val, n);
19804 else
19805 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
19806}
19807
c19d1205
ZW
19808static valueT
19809md_chars_to_number (char * buf, int n)
bfae80f2 19810{
c19d1205
ZW
19811 valueT result = 0;
19812 unsigned char * where = (unsigned char *) buf;
bfae80f2 19813
c19d1205 19814 if (target_big_endian)
b99bd4ef 19815 {
c19d1205
ZW
19816 while (n--)
19817 {
19818 result <<= 8;
19819 result |= (*where++ & 255);
19820 }
b99bd4ef 19821 }
c19d1205 19822 else
b99bd4ef 19823 {
c19d1205
ZW
19824 while (n--)
19825 {
19826 result <<= 8;
19827 result |= (where[n] & 255);
19828 }
bfae80f2 19829 }
b99bd4ef 19830
c19d1205 19831 return result;
bfae80f2 19832}
b99bd4ef 19833
c19d1205 19834/* MD interface: Sections. */
b99bd4ef 19835
fa94de6b
RM
19836/* Calculate the maximum variable size (i.e., excluding fr_fix)
19837 that an rs_machine_dependent frag may reach. */
19838
19839unsigned int
19840arm_frag_max_var (fragS *fragp)
19841{
19842 /* We only use rs_machine_dependent for variable-size Thumb instructions,
19843 which are either THUMB_SIZE (2) or INSN_SIZE (4).
19844
19845 Note that we generate relaxable instructions even for cases that don't
19846 really need it, like an immediate that's a trivial constant. So we're
19847 overestimating the instruction size for some of those cases. Rather
19848 than putting more intelligence here, it would probably be better to
19849 avoid generating a relaxation frag in the first place when it can be
19850 determined up front that a short instruction will suffice. */
19851
19852 gas_assert (fragp->fr_type == rs_machine_dependent);
19853 return INSN_SIZE;
19854}
19855
0110f2b8
PB
19856/* Estimate the size of a frag before relaxing. Assume everything fits in
19857 2 bytes. */
19858
c19d1205 19859int
0110f2b8 19860md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
19861 segT segtype ATTRIBUTE_UNUSED)
19862{
0110f2b8
PB
19863 fragp->fr_var = 2;
19864 return 2;
19865}
19866
19867/* Convert a machine dependent frag. */
19868
19869void
19870md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
19871{
19872 unsigned long insn;
19873 unsigned long old_op;
19874 char *buf;
19875 expressionS exp;
19876 fixS *fixp;
19877 int reloc_type;
19878 int pc_rel;
19879 int opcode;
19880
19881 buf = fragp->fr_literal + fragp->fr_fix;
19882
19883 old_op = bfd_get_16(abfd, buf);
5f4273c7
NC
19884 if (fragp->fr_symbol)
19885 {
0110f2b8
PB
19886 exp.X_op = O_symbol;
19887 exp.X_add_symbol = fragp->fr_symbol;
5f4273c7
NC
19888 }
19889 else
19890 {
0110f2b8 19891 exp.X_op = O_constant;
5f4273c7 19892 }
0110f2b8
PB
19893 exp.X_add_number = fragp->fr_offset;
19894 opcode = fragp->fr_subtype;
19895 switch (opcode)
19896 {
19897 case T_MNEM_ldr_pc:
19898 case T_MNEM_ldr_pc2:
19899 case T_MNEM_ldr_sp:
19900 case T_MNEM_str_sp:
19901 case T_MNEM_ldr:
19902 case T_MNEM_ldrb:
19903 case T_MNEM_ldrh:
19904 case T_MNEM_str:
19905 case T_MNEM_strb:
19906 case T_MNEM_strh:
19907 if (fragp->fr_var == 4)
19908 {
5f4273c7 19909 insn = THUMB_OP32 (opcode);
0110f2b8
PB
19910 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
19911 {
19912 insn |= (old_op & 0x700) << 4;
19913 }
19914 else
19915 {
19916 insn |= (old_op & 7) << 12;
19917 insn |= (old_op & 0x38) << 13;
19918 }
19919 insn |= 0x00000c00;
19920 put_thumb32_insn (buf, insn);
19921 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
19922 }
19923 else
19924 {
19925 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
19926 }
19927 pc_rel = (opcode == T_MNEM_ldr_pc2);
19928 break;
19929 case T_MNEM_adr:
19930 if (fragp->fr_var == 4)
19931 {
19932 insn = THUMB_OP32 (opcode);
19933 insn |= (old_op & 0xf0) << 4;
19934 put_thumb32_insn (buf, insn);
19935 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
19936 }
19937 else
19938 {
19939 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
19940 exp.X_add_number -= 4;
19941 }
19942 pc_rel = 1;
19943 break;
19944 case T_MNEM_mov:
19945 case T_MNEM_movs:
19946 case T_MNEM_cmp:
19947 case T_MNEM_cmn:
19948 if (fragp->fr_var == 4)
19949 {
19950 int r0off = (opcode == T_MNEM_mov
19951 || opcode == T_MNEM_movs) ? 0 : 8;
19952 insn = THUMB_OP32 (opcode);
19953 insn = (insn & 0xe1ffffff) | 0x10000000;
19954 insn |= (old_op & 0x700) << r0off;
19955 put_thumb32_insn (buf, insn);
19956 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
19957 }
19958 else
19959 {
19960 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
19961 }
19962 pc_rel = 0;
19963 break;
19964 case T_MNEM_b:
19965 if (fragp->fr_var == 4)
19966 {
19967 insn = THUMB_OP32(opcode);
19968 put_thumb32_insn (buf, insn);
19969 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
19970 }
19971 else
19972 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
19973 pc_rel = 1;
19974 break;
19975 case T_MNEM_bcond:
19976 if (fragp->fr_var == 4)
19977 {
19978 insn = THUMB_OP32(opcode);
19979 insn |= (old_op & 0xf00) << 14;
19980 put_thumb32_insn (buf, insn);
19981 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
19982 }
19983 else
19984 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
19985 pc_rel = 1;
19986 break;
19987 case T_MNEM_add_sp:
19988 case T_MNEM_add_pc:
19989 case T_MNEM_inc_sp:
19990 case T_MNEM_dec_sp:
19991 if (fragp->fr_var == 4)
19992 {
19993 /* ??? Choose between add and addw. */
19994 insn = THUMB_OP32 (opcode);
19995 insn |= (old_op & 0xf0) << 4;
19996 put_thumb32_insn (buf, insn);
16805f35
PB
19997 if (opcode == T_MNEM_add_pc)
19998 reloc_type = BFD_RELOC_ARM_T32_IMM12;
19999 else
20000 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
20001 }
20002 else
20003 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20004 pc_rel = 0;
20005 break;
20006
20007 case T_MNEM_addi:
20008 case T_MNEM_addis:
20009 case T_MNEM_subi:
20010 case T_MNEM_subis:
20011 if (fragp->fr_var == 4)
20012 {
20013 insn = THUMB_OP32 (opcode);
20014 insn |= (old_op & 0xf0) << 4;
20015 insn |= (old_op & 0xf) << 16;
20016 put_thumb32_insn (buf, insn);
16805f35
PB
20017 if (insn & (1 << 20))
20018 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
20019 else
20020 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
20021 }
20022 else
20023 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20024 pc_rel = 0;
20025 break;
20026 default:
5f4273c7 20027 abort ();
0110f2b8
PB
20028 }
20029 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
21d799b5 20030 (enum bfd_reloc_code_real) reloc_type);
0110f2b8
PB
20031 fixp->fx_file = fragp->fr_file;
20032 fixp->fx_line = fragp->fr_line;
20033 fragp->fr_fix += fragp->fr_var;
20034}
20035
20036/* Return the size of a relaxable immediate operand instruction.
20037 SHIFT and SIZE specify the form of the allowable immediate. */
20038static int
20039relax_immediate (fragS *fragp, int size, int shift)
20040{
20041 offsetT offset;
20042 offsetT mask;
20043 offsetT low;
20044
20045 /* ??? Should be able to do better than this. */
20046 if (fragp->fr_symbol)
20047 return 4;
20048
20049 low = (1 << shift) - 1;
20050 mask = (1 << (shift + size)) - (1 << shift);
20051 offset = fragp->fr_offset;
20052 /* Force misaligned offsets to 32-bit variant. */
20053 if (offset & low)
5e77afaa 20054 return 4;
0110f2b8
PB
20055 if (offset & ~mask)
20056 return 4;
20057 return 2;
20058}
20059
5e77afaa
PB
20060/* Get the address of a symbol during relaxation. */
20061static addressT
5f4273c7 20062relaxed_symbol_addr (fragS *fragp, long stretch)
5e77afaa
PB
20063{
20064 fragS *sym_frag;
20065 addressT addr;
20066 symbolS *sym;
20067
20068 sym = fragp->fr_symbol;
20069 sym_frag = symbol_get_frag (sym);
20070 know (S_GET_SEGMENT (sym) != absolute_section
20071 || sym_frag == &zero_address_frag);
20072 addr = S_GET_VALUE (sym) + fragp->fr_offset;
20073
20074 /* If frag has yet to be reached on this pass, assume it will
20075 move by STRETCH just as we did. If this is not so, it will
20076 be because some frag between grows, and that will force
20077 another pass. */
20078
20079 if (stretch != 0
20080 && sym_frag->relax_marker != fragp->relax_marker)
4396b686
PB
20081 {
20082 fragS *f;
20083
20084 /* Adjust stretch for any alignment frag. Note that if have
20085 been expanding the earlier code, the symbol may be
20086 defined in what appears to be an earlier frag. FIXME:
20087 This doesn't handle the fr_subtype field, which specifies
20088 a maximum number of bytes to skip when doing an
20089 alignment. */
20090 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
20091 {
20092 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
20093 {
20094 if (stretch < 0)
20095 stretch = - ((- stretch)
20096 & ~ ((1 << (int) f->fr_offset) - 1));
20097 else
20098 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
20099 if (stretch == 0)
20100 break;
20101 }
20102 }
20103 if (f != NULL)
20104 addr += stretch;
20105 }
5e77afaa
PB
20106
20107 return addr;
20108}
20109
0110f2b8
PB
20110/* Return the size of a relaxable adr pseudo-instruction or PC-relative
20111 load. */
20112static int
5e77afaa 20113relax_adr (fragS *fragp, asection *sec, long stretch)
0110f2b8
PB
20114{
20115 addressT addr;
20116 offsetT val;
20117
20118 /* Assume worst case for symbols not known to be in the same section. */
974da60d
NC
20119 if (fragp->fr_symbol == NULL
20120 || !S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20121 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20122 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20123 return 4;
20124
5f4273c7 20125 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20126 addr = fragp->fr_address + fragp->fr_fix;
20127 addr = (addr + 4) & ~3;
5e77afaa 20128 /* Force misaligned targets to 32-bit variant. */
0110f2b8 20129 if (val & 3)
5e77afaa 20130 return 4;
0110f2b8
PB
20131 val -= addr;
20132 if (val < 0 || val > 1020)
20133 return 4;
20134 return 2;
20135}
20136
20137/* Return the size of a relaxable add/sub immediate instruction. */
20138static int
20139relax_addsub (fragS *fragp, asection *sec)
20140{
20141 char *buf;
20142 int op;
20143
20144 buf = fragp->fr_literal + fragp->fr_fix;
20145 op = bfd_get_16(sec->owner, buf);
20146 if ((op & 0xf) == ((op >> 4) & 0xf))
20147 return relax_immediate (fragp, 8, 0);
20148 else
20149 return relax_immediate (fragp, 3, 0);
20150}
20151
20152
20153/* Return the size of a relaxable branch instruction. BITS is the
20154 size of the offset field in the narrow instruction. */
20155
20156static int
5e77afaa 20157relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
0110f2b8
PB
20158{
20159 addressT addr;
20160 offsetT val;
20161 offsetT limit;
20162
20163 /* Assume worst case for symbols not known to be in the same section. */
5f4273c7 20164 if (!S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20165 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20166 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20167 return 4;
20168
267bf995
RR
20169#ifdef OBJ_ELF
20170 if (S_IS_DEFINED (fragp->fr_symbol)
20171 && ARM_IS_FUNC (fragp->fr_symbol))
20172 return 4;
0d9b4b55
NC
20173
20174 /* PR 12532. Global symbols with default visibility might
20175 be preempted, so do not relax relocations to them. */
20176 if ((ELF_ST_VISIBILITY (S_GET_OTHER (fragp->fr_symbol)) == STV_DEFAULT)
20177 && (! S_IS_LOCAL (fragp->fr_symbol)))
20178 return 4;
267bf995
RR
20179#endif
20180
5f4273c7 20181 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20182 addr = fragp->fr_address + fragp->fr_fix + 4;
20183 val -= addr;
20184
20185 /* Offset is a signed value *2 */
20186 limit = 1 << bits;
20187 if (val >= limit || val < -limit)
20188 return 4;
20189 return 2;
20190}
20191
20192
20193/* Relax a machine dependent frag. This returns the amount by which
20194 the current size of the frag should change. */
20195
20196int
5e77afaa 20197arm_relax_frag (asection *sec, fragS *fragp, long stretch)
0110f2b8
PB
20198{
20199 int oldsize;
20200 int newsize;
20201
20202 oldsize = fragp->fr_var;
20203 switch (fragp->fr_subtype)
20204 {
20205 case T_MNEM_ldr_pc2:
5f4273c7 20206 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20207 break;
20208 case T_MNEM_ldr_pc:
20209 case T_MNEM_ldr_sp:
20210 case T_MNEM_str_sp:
5f4273c7 20211 newsize = relax_immediate (fragp, 8, 2);
0110f2b8
PB
20212 break;
20213 case T_MNEM_ldr:
20214 case T_MNEM_str:
5f4273c7 20215 newsize = relax_immediate (fragp, 5, 2);
0110f2b8
PB
20216 break;
20217 case T_MNEM_ldrh:
20218 case T_MNEM_strh:
5f4273c7 20219 newsize = relax_immediate (fragp, 5, 1);
0110f2b8
PB
20220 break;
20221 case T_MNEM_ldrb:
20222 case T_MNEM_strb:
5f4273c7 20223 newsize = relax_immediate (fragp, 5, 0);
0110f2b8
PB
20224 break;
20225 case T_MNEM_adr:
5f4273c7 20226 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20227 break;
20228 case T_MNEM_mov:
20229 case T_MNEM_movs:
20230 case T_MNEM_cmp:
20231 case T_MNEM_cmn:
5f4273c7 20232 newsize = relax_immediate (fragp, 8, 0);
0110f2b8
PB
20233 break;
20234 case T_MNEM_b:
5f4273c7 20235 newsize = relax_branch (fragp, sec, 11, stretch);
0110f2b8
PB
20236 break;
20237 case T_MNEM_bcond:
5f4273c7 20238 newsize = relax_branch (fragp, sec, 8, stretch);
0110f2b8
PB
20239 break;
20240 case T_MNEM_add_sp:
20241 case T_MNEM_add_pc:
20242 newsize = relax_immediate (fragp, 8, 2);
20243 break;
20244 case T_MNEM_inc_sp:
20245 case T_MNEM_dec_sp:
20246 newsize = relax_immediate (fragp, 7, 2);
20247 break;
20248 case T_MNEM_addi:
20249 case T_MNEM_addis:
20250 case T_MNEM_subi:
20251 case T_MNEM_subis:
20252 newsize = relax_addsub (fragp, sec);
20253 break;
20254 default:
5f4273c7 20255 abort ();
0110f2b8 20256 }
5e77afaa
PB
20257
20258 fragp->fr_var = newsize;
20259 /* Freeze wide instructions that are at or before the same location as
20260 in the previous pass. This avoids infinite loops.
5f4273c7
NC
20261 Don't freeze them unconditionally because targets may be artificially
20262 misaligned by the expansion of preceding frags. */
5e77afaa 20263 if (stretch <= 0 && newsize > 2)
0110f2b8 20264 {
0110f2b8 20265 md_convert_frag (sec->owner, sec, fragp);
5f4273c7 20266 frag_wane (fragp);
0110f2b8 20267 }
5e77afaa 20268
0110f2b8 20269 return newsize - oldsize;
c19d1205 20270}
b99bd4ef 20271
c19d1205 20272/* Round up a section size to the appropriate boundary. */
b99bd4ef 20273
c19d1205
ZW
20274valueT
20275md_section_align (segT segment ATTRIBUTE_UNUSED,
20276 valueT size)
20277{
f0927246
NC
20278#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
20279 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
20280 {
20281 /* For a.out, force the section size to be aligned. If we don't do
20282 this, BFD will align it for us, but it will not write out the
20283 final bytes of the section. This may be a bug in BFD, but it is
20284 easier to fix it here since that is how the other a.out targets
20285 work. */
20286 int align;
20287
20288 align = bfd_get_section_alignment (stdoutput, segment);
20289 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
20290 }
c19d1205 20291#endif
f0927246
NC
20292
20293 return size;
bfae80f2 20294}
b99bd4ef 20295
c19d1205
ZW
20296/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
20297 of an rs_align_code fragment. */
20298
20299void
20300arm_handle_align (fragS * fragP)
bfae80f2 20301{
e7495e45
NS
20302 static char const arm_noop[2][2][4] =
20303 {
20304 { /* ARMv1 */
20305 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
20306 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
20307 },
20308 { /* ARMv6k */
20309 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
20310 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
20311 },
20312 };
20313 static char const thumb_noop[2][2][2] =
20314 {
20315 { /* Thumb-1 */
20316 {0xc0, 0x46}, /* LE */
20317 {0x46, 0xc0}, /* BE */
20318 },
20319 { /* Thumb-2 */
20320 {0x00, 0xbf}, /* LE */
20321 {0xbf, 0x00} /* BE */
20322 }
20323 };
20324 static char const wide_thumb_noop[2][4] =
20325 { /* Wide Thumb-2 */
20326 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
20327 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
20328 };
c921be7d 20329
e7495e45 20330 unsigned bytes, fix, noop_size;
c19d1205
ZW
20331 char * p;
20332 const char * noop;
e7495e45 20333 const char *narrow_noop = NULL;
cd000bff
DJ
20334#ifdef OBJ_ELF
20335 enum mstate state;
20336#endif
bfae80f2 20337
c19d1205 20338 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
20339 return;
20340
c19d1205
ZW
20341 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
20342 p = fragP->fr_literal + fragP->fr_fix;
20343 fix = 0;
bfae80f2 20344
c19d1205
ZW
20345 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
20346 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 20347
cd000bff 20348 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
8dc2430f 20349
cd000bff 20350 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
a737bd4d 20351 {
e7495e45
NS
20352 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
20353 {
20354 narrow_noop = thumb_noop[1][target_big_endian];
20355 noop = wide_thumb_noop[target_big_endian];
20356 }
c19d1205 20357 else
e7495e45
NS
20358 noop = thumb_noop[0][target_big_endian];
20359 noop_size = 2;
cd000bff
DJ
20360#ifdef OBJ_ELF
20361 state = MAP_THUMB;
20362#endif
7ed4c4c5
NC
20363 }
20364 else
20365 {
e7495e45
NS
20366 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k) != 0]
20367 [target_big_endian];
20368 noop_size = 4;
cd000bff
DJ
20369#ifdef OBJ_ELF
20370 state = MAP_ARM;
20371#endif
7ed4c4c5 20372 }
c921be7d 20373
e7495e45 20374 fragP->fr_var = noop_size;
c921be7d 20375
c19d1205 20376 if (bytes & (noop_size - 1))
7ed4c4c5 20377 {
c19d1205 20378 fix = bytes & (noop_size - 1);
cd000bff
DJ
20379#ifdef OBJ_ELF
20380 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
20381#endif
c19d1205
ZW
20382 memset (p, 0, fix);
20383 p += fix;
20384 bytes -= fix;
a737bd4d 20385 }
a737bd4d 20386
e7495e45
NS
20387 if (narrow_noop)
20388 {
20389 if (bytes & noop_size)
20390 {
20391 /* Insert a narrow noop. */
20392 memcpy (p, narrow_noop, noop_size);
20393 p += noop_size;
20394 bytes -= noop_size;
20395 fix += noop_size;
20396 }
20397
20398 /* Use wide noops for the remainder */
20399 noop_size = 4;
20400 }
20401
c19d1205 20402 while (bytes >= noop_size)
a737bd4d 20403 {
c19d1205
ZW
20404 memcpy (p, noop, noop_size);
20405 p += noop_size;
20406 bytes -= noop_size;
20407 fix += noop_size;
a737bd4d
NC
20408 }
20409
c19d1205 20410 fragP->fr_fix += fix;
a737bd4d
NC
20411}
20412
c19d1205
ZW
20413/* Called from md_do_align. Used to create an alignment
20414 frag in a code section. */
20415
20416void
20417arm_frag_align_code (int n, int max)
bfae80f2 20418{
c19d1205 20419 char * p;
7ed4c4c5 20420
c19d1205 20421 /* We assume that there will never be a requirement
6ec8e702 20422 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
c19d1205 20423 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
6ec8e702
NC
20424 {
20425 char err_msg[128];
20426
fa94de6b 20427 sprintf (err_msg,
6ec8e702
NC
20428 _("alignments greater than %d bytes not supported in .text sections."),
20429 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
20203fb9 20430 as_fatal ("%s", err_msg);
6ec8e702 20431 }
bfae80f2 20432
c19d1205
ZW
20433 p = frag_var (rs_align_code,
20434 MAX_MEM_FOR_RS_ALIGN_CODE,
20435 1,
20436 (relax_substateT) max,
20437 (symbolS *) NULL,
20438 (offsetT) n,
20439 (char *) NULL);
20440 *p = 0;
20441}
bfae80f2 20442
8dc2430f
NC
20443/* Perform target specific initialisation of a frag.
20444 Note - despite the name this initialisation is not done when the frag
20445 is created, but only when its type is assigned. A frag can be created
20446 and used a long time before its type is set, so beware of assuming that
20447 this initialisationis performed first. */
bfae80f2 20448
cd000bff
DJ
20449#ifndef OBJ_ELF
20450void
20451arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
20452{
20453 /* Record whether this frag is in an ARM or a THUMB area. */
2e98972e 20454 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
cd000bff
DJ
20455}
20456
20457#else /* OBJ_ELF is defined. */
c19d1205 20458void
cd000bff 20459arm_init_frag (fragS * fragP, int max_chars)
c19d1205 20460{
8dc2430f
NC
20461 /* If the current ARM vs THUMB mode has not already
20462 been recorded into this frag then do so now. */
cd000bff
DJ
20463 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
20464 {
20465 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
20466
20467 /* Record a mapping symbol for alignment frags. We will delete this
20468 later if the alignment ends up empty. */
20469 switch (fragP->fr_type)
20470 {
20471 case rs_align:
20472 case rs_align_test:
20473 case rs_fill:
20474 mapping_state_2 (MAP_DATA, max_chars);
20475 break;
20476 case rs_align_code:
20477 mapping_state_2 (thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
20478 break;
20479 default:
20480 break;
20481 }
20482 }
bfae80f2
RE
20483}
20484
c19d1205
ZW
20485/* When we change sections we need to issue a new mapping symbol. */
20486
20487void
20488arm_elf_change_section (void)
bfae80f2 20489{
c19d1205
ZW
20490 /* Link an unlinked unwind index table section to the .text section. */
20491 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
20492 && elf_linked_to_section (now_seg) == NULL)
20493 elf_linked_to_section (now_seg) = text_section;
bfae80f2
RE
20494}
20495
c19d1205
ZW
20496int
20497arm_elf_section_type (const char * str, size_t len)
e45d0630 20498{
c19d1205
ZW
20499 if (len == 5 && strncmp (str, "exidx", 5) == 0)
20500 return SHT_ARM_EXIDX;
e45d0630 20501
c19d1205
ZW
20502 return -1;
20503}
20504\f
20505/* Code to deal with unwinding tables. */
e45d0630 20506
c19d1205 20507static void add_unwind_adjustsp (offsetT);
e45d0630 20508
5f4273c7 20509/* Generate any deferred unwind frame offset. */
e45d0630 20510
bfae80f2 20511static void
c19d1205 20512flush_pending_unwind (void)
bfae80f2 20513{
c19d1205 20514 offsetT offset;
bfae80f2 20515
c19d1205
ZW
20516 offset = unwind.pending_offset;
20517 unwind.pending_offset = 0;
20518 if (offset != 0)
20519 add_unwind_adjustsp (offset);
bfae80f2
RE
20520}
20521
c19d1205
ZW
20522/* Add an opcode to this list for this function. Two-byte opcodes should
20523 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
20524 order. */
20525
bfae80f2 20526static void
c19d1205 20527add_unwind_opcode (valueT op, int length)
bfae80f2 20528{
c19d1205
ZW
20529 /* Add any deferred stack adjustment. */
20530 if (unwind.pending_offset)
20531 flush_pending_unwind ();
bfae80f2 20532
c19d1205 20533 unwind.sp_restored = 0;
bfae80f2 20534
c19d1205 20535 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 20536 {
c19d1205
ZW
20537 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
20538 if (unwind.opcodes)
21d799b5
NC
20539 unwind.opcodes = (unsigned char *) xrealloc (unwind.opcodes,
20540 unwind.opcode_alloc);
c19d1205 20541 else
21d799b5 20542 unwind.opcodes = (unsigned char *) xmalloc (unwind.opcode_alloc);
bfae80f2 20543 }
c19d1205 20544 while (length > 0)
bfae80f2 20545 {
c19d1205
ZW
20546 length--;
20547 unwind.opcodes[unwind.opcode_count] = op & 0xff;
20548 op >>= 8;
20549 unwind.opcode_count++;
bfae80f2 20550 }
bfae80f2
RE
20551}
20552
c19d1205
ZW
20553/* Add unwind opcodes to adjust the stack pointer. */
20554
bfae80f2 20555static void
c19d1205 20556add_unwind_adjustsp (offsetT offset)
bfae80f2 20557{
c19d1205 20558 valueT op;
bfae80f2 20559
c19d1205 20560 if (offset > 0x200)
bfae80f2 20561 {
c19d1205
ZW
20562 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
20563 char bytes[5];
20564 int n;
20565 valueT o;
bfae80f2 20566
c19d1205
ZW
20567 /* Long form: 0xb2, uleb128. */
20568 /* This might not fit in a word so add the individual bytes,
20569 remembering the list is built in reverse order. */
20570 o = (valueT) ((offset - 0x204) >> 2);
20571 if (o == 0)
20572 add_unwind_opcode (0, 1);
bfae80f2 20573
c19d1205
ZW
20574 /* Calculate the uleb128 encoding of the offset. */
20575 n = 0;
20576 while (o)
20577 {
20578 bytes[n] = o & 0x7f;
20579 o >>= 7;
20580 if (o)
20581 bytes[n] |= 0x80;
20582 n++;
20583 }
20584 /* Add the insn. */
20585 for (; n; n--)
20586 add_unwind_opcode (bytes[n - 1], 1);
20587 add_unwind_opcode (0xb2, 1);
20588 }
20589 else if (offset > 0x100)
bfae80f2 20590 {
c19d1205
ZW
20591 /* Two short opcodes. */
20592 add_unwind_opcode (0x3f, 1);
20593 op = (offset - 0x104) >> 2;
20594 add_unwind_opcode (op, 1);
bfae80f2 20595 }
c19d1205
ZW
20596 else if (offset > 0)
20597 {
20598 /* Short opcode. */
20599 op = (offset - 4) >> 2;
20600 add_unwind_opcode (op, 1);
20601 }
20602 else if (offset < 0)
bfae80f2 20603 {
c19d1205
ZW
20604 offset = -offset;
20605 while (offset > 0x100)
bfae80f2 20606 {
c19d1205
ZW
20607 add_unwind_opcode (0x7f, 1);
20608 offset -= 0x100;
bfae80f2 20609 }
c19d1205
ZW
20610 op = ((offset - 4) >> 2) | 0x40;
20611 add_unwind_opcode (op, 1);
bfae80f2 20612 }
bfae80f2
RE
20613}
20614
c19d1205
ZW
20615/* Finish the list of unwind opcodes for this function. */
20616static void
20617finish_unwind_opcodes (void)
bfae80f2 20618{
c19d1205 20619 valueT op;
bfae80f2 20620
c19d1205 20621 if (unwind.fp_used)
bfae80f2 20622 {
708587a4 20623 /* Adjust sp as necessary. */
c19d1205
ZW
20624 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
20625 flush_pending_unwind ();
bfae80f2 20626
c19d1205
ZW
20627 /* After restoring sp from the frame pointer. */
20628 op = 0x90 | unwind.fp_reg;
20629 add_unwind_opcode (op, 1);
20630 }
20631 else
20632 flush_pending_unwind ();
bfae80f2
RE
20633}
20634
bfae80f2 20635
c19d1205
ZW
20636/* Start an exception table entry. If idx is nonzero this is an index table
20637 entry. */
bfae80f2
RE
20638
20639static void
c19d1205 20640start_unwind_section (const segT text_seg, int idx)
bfae80f2 20641{
c19d1205
ZW
20642 const char * text_name;
20643 const char * prefix;
20644 const char * prefix_once;
20645 const char * group_name;
20646 size_t prefix_len;
20647 size_t text_len;
20648 char * sec_name;
20649 size_t sec_name_len;
20650 int type;
20651 int flags;
20652 int linkonce;
bfae80f2 20653
c19d1205 20654 if (idx)
bfae80f2 20655 {
c19d1205
ZW
20656 prefix = ELF_STRING_ARM_unwind;
20657 prefix_once = ELF_STRING_ARM_unwind_once;
20658 type = SHT_ARM_EXIDX;
bfae80f2 20659 }
c19d1205 20660 else
bfae80f2 20661 {
c19d1205
ZW
20662 prefix = ELF_STRING_ARM_unwind_info;
20663 prefix_once = ELF_STRING_ARM_unwind_info_once;
20664 type = SHT_PROGBITS;
bfae80f2
RE
20665 }
20666
c19d1205
ZW
20667 text_name = segment_name (text_seg);
20668 if (streq (text_name, ".text"))
20669 text_name = "";
20670
20671 if (strncmp (text_name, ".gnu.linkonce.t.",
20672 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 20673 {
c19d1205
ZW
20674 prefix = prefix_once;
20675 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
20676 }
20677
c19d1205
ZW
20678 prefix_len = strlen (prefix);
20679 text_len = strlen (text_name);
20680 sec_name_len = prefix_len + text_len;
21d799b5 20681 sec_name = (char *) xmalloc (sec_name_len + 1);
c19d1205
ZW
20682 memcpy (sec_name, prefix, prefix_len);
20683 memcpy (sec_name + prefix_len, text_name, text_len);
20684 sec_name[prefix_len + text_len] = '\0';
bfae80f2 20685
c19d1205
ZW
20686 flags = SHF_ALLOC;
20687 linkonce = 0;
20688 group_name = 0;
bfae80f2 20689
c19d1205
ZW
20690 /* Handle COMDAT group. */
20691 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 20692 {
c19d1205
ZW
20693 group_name = elf_group_name (text_seg);
20694 if (group_name == NULL)
20695 {
bd3ba5d1 20696 as_bad (_("Group section `%s' has no group signature"),
c19d1205
ZW
20697 segment_name (text_seg));
20698 ignore_rest_of_line ();
20699 return;
20700 }
20701 flags |= SHF_GROUP;
20702 linkonce = 1;
bfae80f2
RE
20703 }
20704
c19d1205 20705 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
bfae80f2 20706
5f4273c7 20707 /* Set the section link for index tables. */
c19d1205
ZW
20708 if (idx)
20709 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
20710}
20711
bfae80f2 20712
c19d1205
ZW
20713/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
20714 personality routine data. Returns zero, or the index table value for
20715 and inline entry. */
20716
20717static valueT
20718create_unwind_entry (int have_data)
bfae80f2 20719{
c19d1205
ZW
20720 int size;
20721 addressT where;
20722 char *ptr;
20723 /* The current word of data. */
20724 valueT data;
20725 /* The number of bytes left in this word. */
20726 int n;
bfae80f2 20727
c19d1205 20728 finish_unwind_opcodes ();
bfae80f2 20729
c19d1205
ZW
20730 /* Remember the current text section. */
20731 unwind.saved_seg = now_seg;
20732 unwind.saved_subseg = now_subseg;
bfae80f2 20733
c19d1205 20734 start_unwind_section (now_seg, 0);
bfae80f2 20735
c19d1205 20736 if (unwind.personality_routine == NULL)
bfae80f2 20737 {
c19d1205
ZW
20738 if (unwind.personality_index == -2)
20739 {
20740 if (have_data)
5f4273c7 20741 as_bad (_("handlerdata in cantunwind frame"));
c19d1205
ZW
20742 return 1; /* EXIDX_CANTUNWIND. */
20743 }
bfae80f2 20744
c19d1205
ZW
20745 /* Use a default personality routine if none is specified. */
20746 if (unwind.personality_index == -1)
20747 {
20748 if (unwind.opcode_count > 3)
20749 unwind.personality_index = 1;
20750 else
20751 unwind.personality_index = 0;
20752 }
bfae80f2 20753
c19d1205
ZW
20754 /* Space for the personality routine entry. */
20755 if (unwind.personality_index == 0)
20756 {
20757 if (unwind.opcode_count > 3)
20758 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 20759
c19d1205
ZW
20760 if (!have_data)
20761 {
20762 /* All the data is inline in the index table. */
20763 data = 0x80;
20764 n = 3;
20765 while (unwind.opcode_count > 0)
20766 {
20767 unwind.opcode_count--;
20768 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20769 n--;
20770 }
bfae80f2 20771
c19d1205
ZW
20772 /* Pad with "finish" opcodes. */
20773 while (n--)
20774 data = (data << 8) | 0xb0;
bfae80f2 20775
c19d1205
ZW
20776 return data;
20777 }
20778 size = 0;
20779 }
20780 else
20781 /* We get two opcodes "free" in the first word. */
20782 size = unwind.opcode_count - 2;
20783 }
20784 else
5011093d
NC
20785 {
20786 gas_assert (unwind.personality_index == -1);
20787
20788 /* An extra byte is required for the opcode count. */
20789 size = unwind.opcode_count + 1;
20790 }
bfae80f2 20791
c19d1205
ZW
20792 size = (size + 3) >> 2;
20793 if (size > 0xff)
20794 as_bad (_("too many unwind opcodes"));
bfae80f2 20795
c19d1205
ZW
20796 frag_align (2, 0, 0);
20797 record_alignment (now_seg, 2);
20798 unwind.table_entry = expr_build_dot ();
20799
20800 /* Allocate the table entry. */
20801 ptr = frag_more ((size << 2) + 4);
74929e7b
NC
20802 /* PR 13449: Zero the table entries in case some of them are not used. */
20803 memset (ptr, 0, (size << 2) + 4);
c19d1205 20804 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 20805
c19d1205 20806 switch (unwind.personality_index)
bfae80f2 20807 {
c19d1205
ZW
20808 case -1:
20809 /* ??? Should this be a PLT generating relocation? */
20810 /* Custom personality routine. */
20811 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
20812 BFD_RELOC_ARM_PREL31);
bfae80f2 20813
c19d1205
ZW
20814 where += 4;
20815 ptr += 4;
bfae80f2 20816
c19d1205 20817 /* Set the first byte to the number of additional words. */
5011093d 20818 data = size > 0 ? size - 1 : 0;
c19d1205
ZW
20819 n = 3;
20820 break;
bfae80f2 20821
c19d1205
ZW
20822 /* ABI defined personality routines. */
20823 case 0:
20824 /* Three opcodes bytes are packed into the first word. */
20825 data = 0x80;
20826 n = 3;
20827 break;
bfae80f2 20828
c19d1205
ZW
20829 case 1:
20830 case 2:
20831 /* The size and first two opcode bytes go in the first word. */
20832 data = ((0x80 + unwind.personality_index) << 8) | size;
20833 n = 2;
20834 break;
bfae80f2 20835
c19d1205
ZW
20836 default:
20837 /* Should never happen. */
20838 abort ();
20839 }
bfae80f2 20840
c19d1205
ZW
20841 /* Pack the opcodes into words (MSB first), reversing the list at the same
20842 time. */
20843 while (unwind.opcode_count > 0)
20844 {
20845 if (n == 0)
20846 {
20847 md_number_to_chars (ptr, data, 4);
20848 ptr += 4;
20849 n = 4;
20850 data = 0;
20851 }
20852 unwind.opcode_count--;
20853 n--;
20854 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20855 }
20856
20857 /* Finish off the last word. */
20858 if (n < 4)
20859 {
20860 /* Pad with "finish" opcodes. */
20861 while (n--)
20862 data = (data << 8) | 0xb0;
20863
20864 md_number_to_chars (ptr, data, 4);
20865 }
20866
20867 if (!have_data)
20868 {
20869 /* Add an empty descriptor if there is no user-specified data. */
20870 ptr = frag_more (4);
20871 md_number_to_chars (ptr, 0, 4);
20872 }
20873
20874 return 0;
bfae80f2
RE
20875}
20876
f0927246
NC
20877
20878/* Initialize the DWARF-2 unwind information for this procedure. */
20879
20880void
20881tc_arm_frame_initial_instructions (void)
20882{
20883 cfi_add_CFA_def_cfa (REG_SP, 0);
20884}
20885#endif /* OBJ_ELF */
20886
c19d1205
ZW
20887/* Convert REGNAME to a DWARF-2 register number. */
20888
20889int
1df69f4f 20890tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 20891{
1df69f4f 20892 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
c19d1205
ZW
20893
20894 if (reg == FAIL)
20895 return -1;
20896
20897 return reg;
bfae80f2
RE
20898}
20899
f0927246 20900#ifdef TE_PE
c19d1205 20901void
f0927246 20902tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 20903{
91d6fa6a 20904 expressionS exp;
bfae80f2 20905
91d6fa6a
NC
20906 exp.X_op = O_secrel;
20907 exp.X_add_symbol = symbol;
20908 exp.X_add_number = 0;
20909 emit_expr (&exp, size);
f0927246
NC
20910}
20911#endif
bfae80f2 20912
c19d1205 20913/* MD interface: Symbol and relocation handling. */
bfae80f2 20914
2fc8bdac
ZW
20915/* Return the address within the segment that a PC-relative fixup is
20916 relative to. For ARM, PC-relative fixups applied to instructions
20917 are generally relative to the location of the fixup plus 8 bytes.
20918 Thumb branches are offset by 4, and Thumb loads relative to PC
20919 require special handling. */
bfae80f2 20920
c19d1205 20921long
2fc8bdac 20922md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 20923{
2fc8bdac
ZW
20924 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
20925
20926 /* If this is pc-relative and we are going to emit a relocation
20927 then we just want to put out any pipeline compensation that the linker
53baae48
NC
20928 will need. Otherwise we want to use the calculated base.
20929 For WinCE we skip the bias for externals as well, since this
20930 is how the MS ARM-CE assembler behaves and we want to be compatible. */
5f4273c7 20931 if (fixP->fx_pcrel
2fc8bdac 20932 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
20933 || (arm_force_relocation (fixP)
20934#ifdef TE_WINCE
20935 && !S_IS_EXTERNAL (fixP->fx_addsy)
20936#endif
20937 )))
2fc8bdac 20938 base = 0;
bfae80f2 20939
267bf995 20940
c19d1205 20941 switch (fixP->fx_r_type)
bfae80f2 20942 {
2fc8bdac
ZW
20943 /* PC relative addressing on the Thumb is slightly odd as the
20944 bottom two bits of the PC are forced to zero for the
20945 calculation. This happens *after* application of the
20946 pipeline offset. However, Thumb adrl already adjusts for
20947 this, so we need not do it again. */
c19d1205 20948 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 20949 return base & ~3;
c19d1205
ZW
20950
20951 case BFD_RELOC_ARM_THUMB_OFFSET:
20952 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 20953 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 20954 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 20955 return (base + 4) & ~3;
c19d1205 20956
2fc8bdac
ZW
20957 /* Thumb branches are simply offset by +4. */
20958 case BFD_RELOC_THUMB_PCREL_BRANCH7:
20959 case BFD_RELOC_THUMB_PCREL_BRANCH9:
20960 case BFD_RELOC_THUMB_PCREL_BRANCH12:
20961 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac 20962 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac 20963 return base + 4;
bfae80f2 20964
267bf995 20965 case BFD_RELOC_THUMB_PCREL_BRANCH23:
486499d0
CL
20966 if (fixP->fx_addsy
20967 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 20968 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
20969 && ARM_IS_FUNC (fixP->fx_addsy)
20970 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
20971 base = fixP->fx_where + fixP->fx_frag->fr_address;
20972 return base + 4;
20973
00adf2d4
JB
20974 /* BLX is like branches above, but forces the low two bits of PC to
20975 zero. */
486499d0
CL
20976 case BFD_RELOC_THUMB_PCREL_BLX:
20977 if (fixP->fx_addsy
20978 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 20979 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
20980 && THUMB_IS_FUNC (fixP->fx_addsy)
20981 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
20982 base = fixP->fx_where + fixP->fx_frag->fr_address;
00adf2d4
JB
20983 return (base + 4) & ~3;
20984
2fc8bdac
ZW
20985 /* ARM mode branches are offset by +8. However, the Windows CE
20986 loader expects the relocation not to take this into account. */
267bf995 20987 case BFD_RELOC_ARM_PCREL_BLX:
486499d0
CL
20988 if (fixP->fx_addsy
20989 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 20990 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
20991 && ARM_IS_FUNC (fixP->fx_addsy)
20992 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
20993 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 20994 return base + 8;
267bf995 20995
486499d0
CL
20996 case BFD_RELOC_ARM_PCREL_CALL:
20997 if (fixP->fx_addsy
20998 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 20999 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21000 && THUMB_IS_FUNC (fixP->fx_addsy)
21001 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21002 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21003 return base + 8;
267bf995 21004
2fc8bdac 21005 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c 21006 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 21007 case BFD_RELOC_ARM_PLT32:
c19d1205 21008#ifdef TE_WINCE
5f4273c7 21009 /* When handling fixups immediately, because we have already
53baae48
NC
21010 discovered the value of a symbol, or the address of the frag involved
21011 we must account for the offset by +8, as the OS loader will never see the reloc.
21012 see fixup_segment() in write.c
21013 The S_IS_EXTERNAL test handles the case of global symbols.
21014 Those need the calculated base, not just the pipe compensation the linker will need. */
21015 if (fixP->fx_pcrel
21016 && fixP->fx_addsy != NULL
21017 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21018 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
21019 return base + 8;
2fc8bdac 21020 return base;
c19d1205 21021#else
2fc8bdac 21022 return base + 8;
c19d1205 21023#endif
2fc8bdac 21024
267bf995 21025
2fc8bdac
ZW
21026 /* ARM mode loads relative to PC are also offset by +8. Unlike
21027 branches, the Windows CE loader *does* expect the relocation
21028 to take this into account. */
21029 case BFD_RELOC_ARM_OFFSET_IMM:
21030 case BFD_RELOC_ARM_OFFSET_IMM8:
21031 case BFD_RELOC_ARM_HWLITERAL:
21032 case BFD_RELOC_ARM_LITERAL:
21033 case BFD_RELOC_ARM_CP_OFF_IMM:
21034 return base + 8;
21035
21036
21037 /* Other PC-relative relocations are un-offset. */
21038 default:
21039 return base;
21040 }
bfae80f2
RE
21041}
21042
c19d1205
ZW
21043/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
21044 Otherwise we have no need to default values of symbols. */
21045
21046symbolS *
21047md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
bfae80f2 21048{
c19d1205
ZW
21049#ifdef OBJ_ELF
21050 if (name[0] == '_' && name[1] == 'G'
21051 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
21052 {
21053 if (!GOT_symbol)
21054 {
21055 if (symbol_find (name))
bd3ba5d1 21056 as_bad (_("GOT already in the symbol table"));
bfae80f2 21057
c19d1205
ZW
21058 GOT_symbol = symbol_new (name, undefined_section,
21059 (valueT) 0, & zero_address_frag);
21060 }
bfae80f2 21061
c19d1205 21062 return GOT_symbol;
bfae80f2 21063 }
c19d1205 21064#endif
bfae80f2 21065
c921be7d 21066 return NULL;
bfae80f2
RE
21067}
21068
55cf6793 21069/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
21070 computed as two separate immediate values, added together. We
21071 already know that this value cannot be computed by just one ARM
21072 instruction. */
21073
21074static unsigned int
21075validate_immediate_twopart (unsigned int val,
21076 unsigned int * highpart)
bfae80f2 21077{
c19d1205
ZW
21078 unsigned int a;
21079 unsigned int i;
bfae80f2 21080
c19d1205
ZW
21081 for (i = 0; i < 32; i += 2)
21082 if (((a = rotate_left (val, i)) & 0xff) != 0)
21083 {
21084 if (a & 0xff00)
21085 {
21086 if (a & ~ 0xffff)
21087 continue;
21088 * highpart = (a >> 8) | ((i + 24) << 7);
21089 }
21090 else if (a & 0xff0000)
21091 {
21092 if (a & 0xff000000)
21093 continue;
21094 * highpart = (a >> 16) | ((i + 16) << 7);
21095 }
21096 else
21097 {
9c2799c2 21098 gas_assert (a & 0xff000000);
c19d1205
ZW
21099 * highpart = (a >> 24) | ((i + 8) << 7);
21100 }
bfae80f2 21101
c19d1205
ZW
21102 return (a & 0xff) | (i << 7);
21103 }
bfae80f2 21104
c19d1205 21105 return FAIL;
bfae80f2
RE
21106}
21107
c19d1205
ZW
21108static int
21109validate_offset_imm (unsigned int val, int hwse)
21110{
21111 if ((hwse && val > 255) || val > 4095)
21112 return FAIL;
21113 return val;
21114}
bfae80f2 21115
55cf6793 21116/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
21117 negative immediate constant by altering the instruction. A bit of
21118 a hack really.
21119 MOV <-> MVN
21120 AND <-> BIC
21121 ADC <-> SBC
21122 by inverting the second operand, and
21123 ADD <-> SUB
21124 CMP <-> CMN
21125 by negating the second operand. */
bfae80f2 21126
c19d1205
ZW
21127static int
21128negate_data_op (unsigned long * instruction,
21129 unsigned long value)
bfae80f2 21130{
c19d1205
ZW
21131 int op, new_inst;
21132 unsigned long negated, inverted;
bfae80f2 21133
c19d1205
ZW
21134 negated = encode_arm_immediate (-value);
21135 inverted = encode_arm_immediate (~value);
bfae80f2 21136
c19d1205
ZW
21137 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
21138 switch (op)
bfae80f2 21139 {
c19d1205
ZW
21140 /* First negates. */
21141 case OPCODE_SUB: /* ADD <-> SUB */
21142 new_inst = OPCODE_ADD;
21143 value = negated;
21144 break;
bfae80f2 21145
c19d1205
ZW
21146 case OPCODE_ADD:
21147 new_inst = OPCODE_SUB;
21148 value = negated;
21149 break;
bfae80f2 21150
c19d1205
ZW
21151 case OPCODE_CMP: /* CMP <-> CMN */
21152 new_inst = OPCODE_CMN;
21153 value = negated;
21154 break;
bfae80f2 21155
c19d1205
ZW
21156 case OPCODE_CMN:
21157 new_inst = OPCODE_CMP;
21158 value = negated;
21159 break;
bfae80f2 21160
c19d1205
ZW
21161 /* Now Inverted ops. */
21162 case OPCODE_MOV: /* MOV <-> MVN */
21163 new_inst = OPCODE_MVN;
21164 value = inverted;
21165 break;
bfae80f2 21166
c19d1205
ZW
21167 case OPCODE_MVN:
21168 new_inst = OPCODE_MOV;
21169 value = inverted;
21170 break;
bfae80f2 21171
c19d1205
ZW
21172 case OPCODE_AND: /* AND <-> BIC */
21173 new_inst = OPCODE_BIC;
21174 value = inverted;
21175 break;
bfae80f2 21176
c19d1205
ZW
21177 case OPCODE_BIC:
21178 new_inst = OPCODE_AND;
21179 value = inverted;
21180 break;
bfae80f2 21181
c19d1205
ZW
21182 case OPCODE_ADC: /* ADC <-> SBC */
21183 new_inst = OPCODE_SBC;
21184 value = inverted;
21185 break;
bfae80f2 21186
c19d1205
ZW
21187 case OPCODE_SBC:
21188 new_inst = OPCODE_ADC;
21189 value = inverted;
21190 break;
bfae80f2 21191
c19d1205
ZW
21192 /* We cannot do anything. */
21193 default:
21194 return FAIL;
b99bd4ef
NC
21195 }
21196
c19d1205
ZW
21197 if (value == (unsigned) FAIL)
21198 return FAIL;
21199
21200 *instruction &= OPCODE_MASK;
21201 *instruction |= new_inst << DATA_OP_SHIFT;
21202 return value;
b99bd4ef
NC
21203}
21204
ef8d22e6
PB
21205/* Like negate_data_op, but for Thumb-2. */
21206
21207static unsigned int
16dd5e42 21208thumb32_negate_data_op (offsetT *instruction, unsigned int value)
ef8d22e6
PB
21209{
21210 int op, new_inst;
21211 int rd;
16dd5e42 21212 unsigned int negated, inverted;
ef8d22e6
PB
21213
21214 negated = encode_thumb32_immediate (-value);
21215 inverted = encode_thumb32_immediate (~value);
21216
21217 rd = (*instruction >> 8) & 0xf;
21218 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
21219 switch (op)
21220 {
21221 /* ADD <-> SUB. Includes CMP <-> CMN. */
21222 case T2_OPCODE_SUB:
21223 new_inst = T2_OPCODE_ADD;
21224 value = negated;
21225 break;
21226
21227 case T2_OPCODE_ADD:
21228 new_inst = T2_OPCODE_SUB;
21229 value = negated;
21230 break;
21231
21232 /* ORR <-> ORN. Includes MOV <-> MVN. */
21233 case T2_OPCODE_ORR:
21234 new_inst = T2_OPCODE_ORN;
21235 value = inverted;
21236 break;
21237
21238 case T2_OPCODE_ORN:
21239 new_inst = T2_OPCODE_ORR;
21240 value = inverted;
21241 break;
21242
21243 /* AND <-> BIC. TST has no inverted equivalent. */
21244 case T2_OPCODE_AND:
21245 new_inst = T2_OPCODE_BIC;
21246 if (rd == 15)
21247 value = FAIL;
21248 else
21249 value = inverted;
21250 break;
21251
21252 case T2_OPCODE_BIC:
21253 new_inst = T2_OPCODE_AND;
21254 value = inverted;
21255 break;
21256
21257 /* ADC <-> SBC */
21258 case T2_OPCODE_ADC:
21259 new_inst = T2_OPCODE_SBC;
21260 value = inverted;
21261 break;
21262
21263 case T2_OPCODE_SBC:
21264 new_inst = T2_OPCODE_ADC;
21265 value = inverted;
21266 break;
21267
21268 /* We cannot do anything. */
21269 default:
21270 return FAIL;
21271 }
21272
16dd5e42 21273 if (value == (unsigned int)FAIL)
ef8d22e6
PB
21274 return FAIL;
21275
21276 *instruction &= T2_OPCODE_MASK;
21277 *instruction |= new_inst << T2_DATA_OP_SHIFT;
21278 return value;
21279}
21280
8f06b2d8
PB
21281/* Read a 32-bit thumb instruction from buf. */
21282static unsigned long
21283get_thumb32_insn (char * buf)
21284{
21285 unsigned long insn;
21286 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
21287 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21288
21289 return insn;
21290}
21291
a8bc6c78
PB
21292
21293/* We usually want to set the low bit on the address of thumb function
21294 symbols. In particular .word foo - . should have the low bit set.
21295 Generic code tries to fold the difference of two symbols to
21296 a constant. Prevent this and force a relocation when the first symbols
21297 is a thumb function. */
c921be7d
NC
21298
21299bfd_boolean
a8bc6c78
PB
21300arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
21301{
21302 if (op == O_subtract
21303 && l->X_op == O_symbol
21304 && r->X_op == O_symbol
21305 && THUMB_IS_FUNC (l->X_add_symbol))
21306 {
21307 l->X_op = O_subtract;
21308 l->X_op_symbol = r->X_add_symbol;
21309 l->X_add_number -= r->X_add_number;
c921be7d 21310 return TRUE;
a8bc6c78 21311 }
c921be7d 21312
a8bc6c78 21313 /* Process as normal. */
c921be7d 21314 return FALSE;
a8bc6c78
PB
21315}
21316
4a42ebbc
RR
21317/* Encode Thumb2 unconditional branches and calls. The encoding
21318 for the 2 are identical for the immediate values. */
21319
21320static void
21321encode_thumb2_b_bl_offset (char * buf, offsetT value)
21322{
21323#define T2I1I2MASK ((1 << 13) | (1 << 11))
21324 offsetT newval;
21325 offsetT newval2;
21326 addressT S, I1, I2, lo, hi;
21327
21328 S = (value >> 24) & 0x01;
21329 I1 = (value >> 23) & 0x01;
21330 I2 = (value >> 22) & 0x01;
21331 hi = (value >> 12) & 0x3ff;
fa94de6b 21332 lo = (value >> 1) & 0x7ff;
4a42ebbc
RR
21333 newval = md_chars_to_number (buf, THUMB_SIZE);
21334 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21335 newval |= (S << 10) | hi;
21336 newval2 &= ~T2I1I2MASK;
21337 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
21338 md_number_to_chars (buf, newval, THUMB_SIZE);
21339 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
21340}
21341
c19d1205 21342void
55cf6793 21343md_apply_fix (fixS * fixP,
c19d1205
ZW
21344 valueT * valP,
21345 segT seg)
21346{
21347 offsetT value = * valP;
21348 offsetT newval;
21349 unsigned int newimm;
21350 unsigned long temp;
21351 int sign;
21352 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 21353
9c2799c2 21354 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 21355
c19d1205 21356 /* Note whether this will delete the relocation. */
4962c51a 21357
c19d1205
ZW
21358 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
21359 fixP->fx_done = 1;
b99bd4ef 21360
adbaf948 21361 /* On a 64-bit host, silently truncate 'value' to 32 bits for
5f4273c7 21362 consistency with the behaviour on 32-bit hosts. Remember value
adbaf948
ZW
21363 for emit_reloc. */
21364 value &= 0xffffffff;
21365 value ^= 0x80000000;
5f4273c7 21366 value -= 0x80000000;
adbaf948
ZW
21367
21368 *valP = value;
c19d1205 21369 fixP->fx_addnumber = value;
b99bd4ef 21370
adbaf948
ZW
21371 /* Same treatment for fixP->fx_offset. */
21372 fixP->fx_offset &= 0xffffffff;
21373 fixP->fx_offset ^= 0x80000000;
21374 fixP->fx_offset -= 0x80000000;
21375
c19d1205 21376 switch (fixP->fx_r_type)
b99bd4ef 21377 {
c19d1205
ZW
21378 case BFD_RELOC_NONE:
21379 /* This will need to go in the object file. */
21380 fixP->fx_done = 0;
21381 break;
b99bd4ef 21382
c19d1205
ZW
21383 case BFD_RELOC_ARM_IMMEDIATE:
21384 /* We claim that this fixup has been processed here,
21385 even if in fact we generate an error because we do
21386 not have a reloc for it, so tc_gen_reloc will reject it. */
21387 fixP->fx_done = 1;
b99bd4ef 21388
77db8e2e 21389 if (fixP->fx_addsy)
b99bd4ef 21390 {
77db8e2e 21391 const char *msg = 0;
b99bd4ef 21392
77db8e2e
NC
21393 if (! S_IS_DEFINED (fixP->fx_addsy))
21394 msg = _("undefined symbol %s used as an immediate value");
21395 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21396 msg = _("symbol %s is in a different section");
21397 else if (S_IS_WEAK (fixP->fx_addsy))
21398 msg = _("symbol %s is weak and may be overridden later");
21399
21400 if (msg)
21401 {
21402 as_bad_where (fixP->fx_file, fixP->fx_line,
21403 msg, S_GET_NAME (fixP->fx_addsy));
21404 break;
21405 }
42e5fcbf
AS
21406 }
21407
c19d1205
ZW
21408 temp = md_chars_to_number (buf, INSN_SIZE);
21409
5e73442d
SL
21410 /* If the offset is negative, we should use encoding A2 for ADR. */
21411 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
21412 newimm = negate_data_op (&temp, value);
21413 else
21414 {
21415 newimm = encode_arm_immediate (value);
21416
21417 /* If the instruction will fail, see if we can fix things up by
21418 changing the opcode. */
21419 if (newimm == (unsigned int) FAIL)
21420 newimm = negate_data_op (&temp, value);
21421 }
21422
21423 if (newimm == (unsigned int) FAIL)
b99bd4ef 21424 {
c19d1205
ZW
21425 as_bad_where (fixP->fx_file, fixP->fx_line,
21426 _("invalid constant (%lx) after fixup"),
21427 (unsigned long) value);
21428 break;
b99bd4ef 21429 }
b99bd4ef 21430
c19d1205
ZW
21431 newimm |= (temp & 0xfffff000);
21432 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
21433 break;
b99bd4ef 21434
c19d1205
ZW
21435 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
21436 {
21437 unsigned int highpart = 0;
21438 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 21439
77db8e2e 21440 if (fixP->fx_addsy)
42e5fcbf 21441 {
77db8e2e 21442 const char *msg = 0;
42e5fcbf 21443
77db8e2e
NC
21444 if (! S_IS_DEFINED (fixP->fx_addsy))
21445 msg = _("undefined symbol %s used as an immediate value");
21446 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21447 msg = _("symbol %s is in a different section");
21448 else if (S_IS_WEAK (fixP->fx_addsy))
21449 msg = _("symbol %s is weak and may be overridden later");
42e5fcbf 21450
77db8e2e
NC
21451 if (msg)
21452 {
21453 as_bad_where (fixP->fx_file, fixP->fx_line,
21454 msg, S_GET_NAME (fixP->fx_addsy));
21455 break;
21456 }
21457 }
fa94de6b 21458
c19d1205
ZW
21459 newimm = encode_arm_immediate (value);
21460 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 21461
c19d1205
ZW
21462 /* If the instruction will fail, see if we can fix things up by
21463 changing the opcode. */
21464 if (newimm == (unsigned int) FAIL
21465 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
21466 {
21467 /* No ? OK - try using two ADD instructions to generate
21468 the value. */
21469 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 21470
c19d1205
ZW
21471 /* Yes - then make sure that the second instruction is
21472 also an add. */
21473 if (newimm != (unsigned int) FAIL)
21474 newinsn = temp;
21475 /* Still No ? Try using a negated value. */
21476 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
21477 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
21478 /* Otherwise - give up. */
21479 else
21480 {
21481 as_bad_where (fixP->fx_file, fixP->fx_line,
21482 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
21483 (long) value);
21484 break;
21485 }
b99bd4ef 21486
c19d1205
ZW
21487 /* Replace the first operand in the 2nd instruction (which
21488 is the PC) with the destination register. We have
21489 already added in the PC in the first instruction and we
21490 do not want to do it again. */
21491 newinsn &= ~ 0xf0000;
21492 newinsn |= ((newinsn & 0x0f000) << 4);
21493 }
b99bd4ef 21494
c19d1205
ZW
21495 newimm |= (temp & 0xfffff000);
21496 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 21497
c19d1205
ZW
21498 highpart |= (newinsn & 0xfffff000);
21499 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
21500 }
21501 break;
b99bd4ef 21502
c19d1205 21503 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
21504 if (!fixP->fx_done && seg->use_rela_p)
21505 value = 0;
21506
c19d1205 21507 case BFD_RELOC_ARM_LITERAL:
26d97720 21508 sign = value > 0;
b99bd4ef 21509
c19d1205
ZW
21510 if (value < 0)
21511 value = - value;
b99bd4ef 21512
c19d1205 21513 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 21514 {
c19d1205
ZW
21515 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
21516 as_bad_where (fixP->fx_file, fixP->fx_line,
21517 _("invalid literal constant: pool needs to be closer"));
21518 else
21519 as_bad_where (fixP->fx_file, fixP->fx_line,
21520 _("bad immediate value for offset (%ld)"),
21521 (long) value);
21522 break;
f03698e6
RE
21523 }
21524
c19d1205 21525 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
21526 if (value == 0)
21527 newval &= 0xfffff000;
21528 else
21529 {
21530 newval &= 0xff7ff000;
21531 newval |= value | (sign ? INDEX_UP : 0);
21532 }
c19d1205
ZW
21533 md_number_to_chars (buf, newval, INSN_SIZE);
21534 break;
b99bd4ef 21535
c19d1205
ZW
21536 case BFD_RELOC_ARM_OFFSET_IMM8:
21537 case BFD_RELOC_ARM_HWLITERAL:
26d97720 21538 sign = value > 0;
b99bd4ef 21539
c19d1205
ZW
21540 if (value < 0)
21541 value = - value;
b99bd4ef 21542
c19d1205 21543 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 21544 {
c19d1205
ZW
21545 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
21546 as_bad_where (fixP->fx_file, fixP->fx_line,
21547 _("invalid literal constant: pool needs to be closer"));
21548 else
f9d4405b 21549 as_bad (_("bad immediate value for 8-bit offset (%ld)"),
c19d1205
ZW
21550 (long) value);
21551 break;
b99bd4ef
NC
21552 }
21553
c19d1205 21554 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
21555 if (value == 0)
21556 newval &= 0xfffff0f0;
21557 else
21558 {
21559 newval &= 0xff7ff0f0;
21560 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
21561 }
c19d1205
ZW
21562 md_number_to_chars (buf, newval, INSN_SIZE);
21563 break;
b99bd4ef 21564
c19d1205
ZW
21565 case BFD_RELOC_ARM_T32_OFFSET_U8:
21566 if (value < 0 || value > 1020 || value % 4 != 0)
21567 as_bad_where (fixP->fx_file, fixP->fx_line,
21568 _("bad immediate value for offset (%ld)"), (long) value);
21569 value /= 4;
b99bd4ef 21570
c19d1205 21571 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
21572 newval |= value;
21573 md_number_to_chars (buf+2, newval, THUMB_SIZE);
21574 break;
b99bd4ef 21575
c19d1205
ZW
21576 case BFD_RELOC_ARM_T32_OFFSET_IMM:
21577 /* This is a complicated relocation used for all varieties of Thumb32
21578 load/store instruction with immediate offset:
21579
21580 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
21581 *4, optional writeback(W)
21582 (doubleword load/store)
21583
21584 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
21585 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
21586 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
21587 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
21588 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
21589
21590 Uppercase letters indicate bits that are already encoded at
21591 this point. Lowercase letters are our problem. For the
21592 second block of instructions, the secondary opcode nybble
21593 (bits 8..11) is present, and bit 23 is zero, even if this is
21594 a PC-relative operation. */
21595 newval = md_chars_to_number (buf, THUMB_SIZE);
21596 newval <<= 16;
21597 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 21598
c19d1205 21599 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 21600 {
c19d1205
ZW
21601 /* Doubleword load/store: 8-bit offset, scaled by 4. */
21602 if (value >= 0)
21603 newval |= (1 << 23);
21604 else
21605 value = -value;
21606 if (value % 4 != 0)
21607 {
21608 as_bad_where (fixP->fx_file, fixP->fx_line,
21609 _("offset not a multiple of 4"));
21610 break;
21611 }
21612 value /= 4;
216d22bc 21613 if (value > 0xff)
c19d1205
ZW
21614 {
21615 as_bad_where (fixP->fx_file, fixP->fx_line,
21616 _("offset out of range"));
21617 break;
21618 }
21619 newval &= ~0xff;
b99bd4ef 21620 }
c19d1205 21621 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 21622 {
c19d1205
ZW
21623 /* PC-relative, 12-bit offset. */
21624 if (value >= 0)
21625 newval |= (1 << 23);
21626 else
21627 value = -value;
216d22bc 21628 if (value > 0xfff)
c19d1205
ZW
21629 {
21630 as_bad_where (fixP->fx_file, fixP->fx_line,
21631 _("offset out of range"));
21632 break;
21633 }
21634 newval &= ~0xfff;
b99bd4ef 21635 }
c19d1205 21636 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 21637 {
c19d1205
ZW
21638 /* Writeback: 8-bit, +/- offset. */
21639 if (value >= 0)
21640 newval |= (1 << 9);
21641 else
21642 value = -value;
216d22bc 21643 if (value > 0xff)
c19d1205
ZW
21644 {
21645 as_bad_where (fixP->fx_file, fixP->fx_line,
21646 _("offset out of range"));
21647 break;
21648 }
21649 newval &= ~0xff;
b99bd4ef 21650 }
c19d1205 21651 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 21652 {
c19d1205 21653 /* T-instruction: positive 8-bit offset. */
216d22bc 21654 if (value < 0 || value > 0xff)
b99bd4ef 21655 {
c19d1205
ZW
21656 as_bad_where (fixP->fx_file, fixP->fx_line,
21657 _("offset out of range"));
21658 break;
b99bd4ef 21659 }
c19d1205
ZW
21660 newval &= ~0xff;
21661 newval |= value;
b99bd4ef
NC
21662 }
21663 else
b99bd4ef 21664 {
c19d1205
ZW
21665 /* Positive 12-bit or negative 8-bit offset. */
21666 int limit;
21667 if (value >= 0)
b99bd4ef 21668 {
c19d1205
ZW
21669 newval |= (1 << 23);
21670 limit = 0xfff;
21671 }
21672 else
21673 {
21674 value = -value;
21675 limit = 0xff;
21676 }
21677 if (value > limit)
21678 {
21679 as_bad_where (fixP->fx_file, fixP->fx_line,
21680 _("offset out of range"));
21681 break;
b99bd4ef 21682 }
c19d1205 21683 newval &= ~limit;
b99bd4ef 21684 }
b99bd4ef 21685
c19d1205
ZW
21686 newval |= value;
21687 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
21688 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
21689 break;
404ff6b5 21690
c19d1205
ZW
21691 case BFD_RELOC_ARM_SHIFT_IMM:
21692 newval = md_chars_to_number (buf, INSN_SIZE);
21693 if (((unsigned long) value) > 32
21694 || (value == 32
21695 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
21696 {
21697 as_bad_where (fixP->fx_file, fixP->fx_line,
21698 _("shift expression is too large"));
21699 break;
21700 }
404ff6b5 21701
c19d1205
ZW
21702 if (value == 0)
21703 /* Shifts of zero must be done as lsl. */
21704 newval &= ~0x60;
21705 else if (value == 32)
21706 value = 0;
21707 newval &= 0xfffff07f;
21708 newval |= (value & 0x1f) << 7;
21709 md_number_to_chars (buf, newval, INSN_SIZE);
21710 break;
404ff6b5 21711
c19d1205 21712 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 21713 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 21714 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 21715 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
21716 /* We claim that this fixup has been processed here,
21717 even if in fact we generate an error because we do
21718 not have a reloc for it, so tc_gen_reloc will reject it. */
21719 fixP->fx_done = 1;
404ff6b5 21720
c19d1205
ZW
21721 if (fixP->fx_addsy
21722 && ! S_IS_DEFINED (fixP->fx_addsy))
21723 {
21724 as_bad_where (fixP->fx_file, fixP->fx_line,
21725 _("undefined symbol %s used as an immediate value"),
21726 S_GET_NAME (fixP->fx_addsy));
21727 break;
21728 }
404ff6b5 21729
c19d1205
ZW
21730 newval = md_chars_to_number (buf, THUMB_SIZE);
21731 newval <<= 16;
21732 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 21733
16805f35
PB
21734 newimm = FAIL;
21735 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
21736 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
21737 {
21738 newimm = encode_thumb32_immediate (value);
21739 if (newimm == (unsigned int) FAIL)
21740 newimm = thumb32_negate_data_op (&newval, value);
21741 }
16805f35
PB
21742 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
21743 && newimm == (unsigned int) FAIL)
92e90b6e 21744 {
16805f35
PB
21745 /* Turn add/sum into addw/subw. */
21746 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
21747 newval = (newval & 0xfeffffff) | 0x02000000;
40f246e3
NC
21748 /* No flat 12-bit imm encoding for addsw/subsw. */
21749 if ((newval & 0x00100000) == 0)
e9f89963 21750 {
40f246e3
NC
21751 /* 12 bit immediate for addw/subw. */
21752 if (value < 0)
21753 {
21754 value = -value;
21755 newval ^= 0x00a00000;
21756 }
21757 if (value > 0xfff)
21758 newimm = (unsigned int) FAIL;
21759 else
21760 newimm = value;
e9f89963 21761 }
92e90b6e 21762 }
cc8a6dd0 21763
c19d1205 21764 if (newimm == (unsigned int)FAIL)
3631a3c8 21765 {
c19d1205
ZW
21766 as_bad_where (fixP->fx_file, fixP->fx_line,
21767 _("invalid constant (%lx) after fixup"),
21768 (unsigned long) value);
21769 break;
3631a3c8
NC
21770 }
21771
c19d1205
ZW
21772 newval |= (newimm & 0x800) << 15;
21773 newval |= (newimm & 0x700) << 4;
21774 newval |= (newimm & 0x0ff);
cc8a6dd0 21775
c19d1205
ZW
21776 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
21777 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
21778 break;
a737bd4d 21779
3eb17e6b 21780 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
21781 if (((unsigned long) value) > 0xffff)
21782 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 21783 _("invalid smc expression"));
2fc8bdac 21784 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21785 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21786 md_number_to_chars (buf, newval, INSN_SIZE);
21787 break;
a737bd4d 21788
90ec0d68
MGD
21789 case BFD_RELOC_ARM_HVC:
21790 if (((unsigned long) value) > 0xffff)
21791 as_bad_where (fixP->fx_file, fixP->fx_line,
21792 _("invalid hvc expression"));
21793 newval = md_chars_to_number (buf, INSN_SIZE);
21794 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21795 md_number_to_chars (buf, newval, INSN_SIZE);
21796 break;
21797
c19d1205 21798 case BFD_RELOC_ARM_SWI:
adbaf948 21799 if (fixP->tc_fix_data != 0)
c19d1205
ZW
21800 {
21801 if (((unsigned long) value) > 0xff)
21802 as_bad_where (fixP->fx_file, fixP->fx_line,
21803 _("invalid swi expression"));
2fc8bdac 21804 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
21805 newval |= value;
21806 md_number_to_chars (buf, newval, THUMB_SIZE);
21807 }
21808 else
21809 {
21810 if (((unsigned long) value) > 0x00ffffff)
21811 as_bad_where (fixP->fx_file, fixP->fx_line,
21812 _("invalid swi expression"));
2fc8bdac 21813 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21814 newval |= value;
21815 md_number_to_chars (buf, newval, INSN_SIZE);
21816 }
21817 break;
a737bd4d 21818
c19d1205
ZW
21819 case BFD_RELOC_ARM_MULTI:
21820 if (((unsigned long) value) > 0xffff)
21821 as_bad_where (fixP->fx_file, fixP->fx_line,
21822 _("invalid expression in load/store multiple"));
21823 newval = value | md_chars_to_number (buf, INSN_SIZE);
21824 md_number_to_chars (buf, newval, INSN_SIZE);
21825 break;
a737bd4d 21826
c19d1205 21827#ifdef OBJ_ELF
39b41c9c 21828 case BFD_RELOC_ARM_PCREL_CALL:
267bf995
RR
21829
21830 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21831 && fixP->fx_addsy
34e77a92 21832 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21833 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21834 && THUMB_IS_FUNC (fixP->fx_addsy))
21835 /* Flip the bl to blx. This is a simple flip
21836 bit here because we generate PCREL_CALL for
21837 unconditional bls. */
21838 {
21839 newval = md_chars_to_number (buf, INSN_SIZE);
21840 newval = newval | 0x10000000;
21841 md_number_to_chars (buf, newval, INSN_SIZE);
21842 temp = 1;
21843 fixP->fx_done = 1;
21844 }
39b41c9c
PB
21845 else
21846 temp = 3;
21847 goto arm_branch_common;
21848
21849 case BFD_RELOC_ARM_PCREL_JUMP:
267bf995
RR
21850 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21851 && fixP->fx_addsy
34e77a92 21852 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21853 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21854 && THUMB_IS_FUNC (fixP->fx_addsy))
21855 {
21856 /* This would map to a bl<cond>, b<cond>,
21857 b<always> to a Thumb function. We
21858 need to force a relocation for this particular
21859 case. */
21860 newval = md_chars_to_number (buf, INSN_SIZE);
21861 fixP->fx_done = 0;
21862 }
21863
2fc8bdac 21864 case BFD_RELOC_ARM_PLT32:
c19d1205 21865#endif
39b41c9c
PB
21866 case BFD_RELOC_ARM_PCREL_BRANCH:
21867 temp = 3;
21868 goto arm_branch_common;
a737bd4d 21869
39b41c9c 21870 case BFD_RELOC_ARM_PCREL_BLX:
267bf995 21871
39b41c9c 21872 temp = 1;
267bf995
RR
21873 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21874 && fixP->fx_addsy
34e77a92 21875 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21876 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21877 && ARM_IS_FUNC (fixP->fx_addsy))
21878 {
21879 /* Flip the blx to a bl and warn. */
21880 const char *name = S_GET_NAME (fixP->fx_addsy);
21881 newval = 0xeb000000;
21882 as_warn_where (fixP->fx_file, fixP->fx_line,
21883 _("blx to '%s' an ARM ISA state function changed to bl"),
21884 name);
21885 md_number_to_chars (buf, newval, INSN_SIZE);
21886 temp = 3;
21887 fixP->fx_done = 1;
21888 }
21889
21890#ifdef OBJ_ELF
21891 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
21892 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
21893#endif
21894
39b41c9c 21895 arm_branch_common:
c19d1205 21896 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
21897 instruction, in a 24 bit, signed field. Bits 26 through 32 either
21898 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
21899 also be be clear. */
21900 if (value & temp)
c19d1205 21901 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
21902 _("misaligned branch destination"));
21903 if ((value & (offsetT)0xfe000000) != (offsetT)0
21904 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
08f10d51 21905 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 21906
2fc8bdac 21907 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 21908 {
2fc8bdac
ZW
21909 newval = md_chars_to_number (buf, INSN_SIZE);
21910 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
21911 /* Set the H bit on BLX instructions. */
21912 if (temp == 1)
21913 {
21914 if (value & 2)
21915 newval |= 0x01000000;
21916 else
21917 newval &= ~0x01000000;
21918 }
2fc8bdac 21919 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 21920 }
c19d1205 21921 break;
a737bd4d 21922
25fe350b
MS
21923 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
21924 /* CBZ can only branch forward. */
a737bd4d 21925
738755b0
MS
21926 /* Attempts to use CBZ to branch to the next instruction
21927 (which, strictly speaking, are prohibited) will be turned into
21928 no-ops.
21929
21930 FIXME: It may be better to remove the instruction completely and
21931 perform relaxation. */
21932 if (value == -2)
2fc8bdac
ZW
21933 {
21934 newval = md_chars_to_number (buf, THUMB_SIZE);
738755b0 21935 newval = 0xbf00; /* NOP encoding T1 */
2fc8bdac
ZW
21936 md_number_to_chars (buf, newval, THUMB_SIZE);
21937 }
738755b0
MS
21938 else
21939 {
21940 if (value & ~0x7e)
08f10d51 21941 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
738755b0
MS
21942
21943 if (fixP->fx_done || !seg->use_rela_p)
21944 {
21945 newval = md_chars_to_number (buf, THUMB_SIZE);
21946 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
21947 md_number_to_chars (buf, newval, THUMB_SIZE);
21948 }
21949 }
c19d1205 21950 break;
a737bd4d 21951
c19d1205 21952 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac 21953 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
08f10d51 21954 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 21955
2fc8bdac
ZW
21956 if (fixP->fx_done || !seg->use_rela_p)
21957 {
21958 newval = md_chars_to_number (buf, THUMB_SIZE);
21959 newval |= (value & 0x1ff) >> 1;
21960 md_number_to_chars (buf, newval, THUMB_SIZE);
21961 }
c19d1205 21962 break;
a737bd4d 21963
c19d1205 21964 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac 21965 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
08f10d51 21966 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 21967
2fc8bdac
ZW
21968 if (fixP->fx_done || !seg->use_rela_p)
21969 {
21970 newval = md_chars_to_number (buf, THUMB_SIZE);
21971 newval |= (value & 0xfff) >> 1;
21972 md_number_to_chars (buf, newval, THUMB_SIZE);
21973 }
c19d1205 21974 break;
a737bd4d 21975
c19d1205 21976 case BFD_RELOC_THUMB_PCREL_BRANCH20:
267bf995
RR
21977 if (fixP->fx_addsy
21978 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21979 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21980 && ARM_IS_FUNC (fixP->fx_addsy)
21981 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21982 {
21983 /* Force a relocation for a branch 20 bits wide. */
21984 fixP->fx_done = 0;
21985 }
08f10d51 21986 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
2fc8bdac
ZW
21987 as_bad_where (fixP->fx_file, fixP->fx_line,
21988 _("conditional branch out of range"));
404ff6b5 21989
2fc8bdac
ZW
21990 if (fixP->fx_done || !seg->use_rela_p)
21991 {
21992 offsetT newval2;
21993 addressT S, J1, J2, lo, hi;
404ff6b5 21994
2fc8bdac
ZW
21995 S = (value & 0x00100000) >> 20;
21996 J2 = (value & 0x00080000) >> 19;
21997 J1 = (value & 0x00040000) >> 18;
21998 hi = (value & 0x0003f000) >> 12;
21999 lo = (value & 0x00000ffe) >> 1;
6c43fab6 22000
2fc8bdac
ZW
22001 newval = md_chars_to_number (buf, THUMB_SIZE);
22002 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22003 newval |= (S << 10) | hi;
22004 newval2 |= (J1 << 13) | (J2 << 11) | lo;
22005 md_number_to_chars (buf, newval, THUMB_SIZE);
22006 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
22007 }
c19d1205 22008 break;
6c43fab6 22009
c19d1205 22010 case BFD_RELOC_THUMB_PCREL_BLX:
267bf995
RR
22011 /* If there is a blx from a thumb state function to
22012 another thumb function flip this to a bl and warn
22013 about it. */
22014
22015 if (fixP->fx_addsy
34e77a92 22016 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22017 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22018 && THUMB_IS_FUNC (fixP->fx_addsy))
22019 {
22020 const char *name = S_GET_NAME (fixP->fx_addsy);
22021 as_warn_where (fixP->fx_file, fixP->fx_line,
22022 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
22023 name);
22024 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22025 newval = newval | 0x1000;
22026 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22027 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22028 fixP->fx_done = 1;
22029 }
22030
22031
22032 goto thumb_bl_common;
22033
c19d1205 22034 case BFD_RELOC_THUMB_PCREL_BRANCH23:
267bf995
RR
22035 /* A bl from Thumb state ISA to an internal ARM state function
22036 is converted to a blx. */
22037 if (fixP->fx_addsy
22038 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22039 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22040 && ARM_IS_FUNC (fixP->fx_addsy)
22041 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22042 {
22043 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22044 newval = newval & ~0x1000;
22045 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22046 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
22047 fixP->fx_done = 1;
22048 }
22049
22050 thumb_bl_common:
22051
2fc8bdac
ZW
22052 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22053 /* For a BLX instruction, make sure that the relocation is rounded up
22054 to a word boundary. This follows the semantics of the instruction
22055 which specifies that bit 1 of the target address will come from bit
22056 1 of the base address. */
d406f3e4
JB
22057 value = (value + 3) & ~ 3;
22058
22059#ifdef OBJ_ELF
22060 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
22061 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22062 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22063#endif
404ff6b5 22064
2b2f5df9
NC
22065 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
22066 {
22067 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2)))
22068 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
22069 else if ((value & ~0x1ffffff)
22070 && ((value & ~0x1ffffff) != ~0x1ffffff))
22071 as_bad_where (fixP->fx_file, fixP->fx_line,
22072 _("Thumb2 branch out of range"));
22073 }
4a42ebbc
RR
22074
22075 if (fixP->fx_done || !seg->use_rela_p)
22076 encode_thumb2_b_bl_offset (buf, value);
22077
c19d1205 22078 break;
404ff6b5 22079
c19d1205 22080 case BFD_RELOC_THUMB_PCREL_BRANCH25:
08f10d51
NC
22081 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
22082 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
6c43fab6 22083
2fc8bdac 22084 if (fixP->fx_done || !seg->use_rela_p)
4a42ebbc 22085 encode_thumb2_b_bl_offset (buf, value);
6c43fab6 22086
2fc8bdac 22087 break;
a737bd4d 22088
2fc8bdac
ZW
22089 case BFD_RELOC_8:
22090 if (fixP->fx_done || !seg->use_rela_p)
22091 md_number_to_chars (buf, value, 1);
c19d1205 22092 break;
a737bd4d 22093
c19d1205 22094 case BFD_RELOC_16:
2fc8bdac 22095 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 22096 md_number_to_chars (buf, value, 2);
c19d1205 22097 break;
a737bd4d 22098
c19d1205 22099#ifdef OBJ_ELF
0855e32b
NS
22100 case BFD_RELOC_ARM_TLS_CALL:
22101 case BFD_RELOC_ARM_THM_TLS_CALL:
22102 case BFD_RELOC_ARM_TLS_DESCSEQ:
22103 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
22104 S_SET_THREAD_LOCAL (fixP->fx_addsy);
22105 break;
22106
22107 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22108 case BFD_RELOC_ARM_TLS_GD32:
22109 case BFD_RELOC_ARM_TLS_LE32:
22110 case BFD_RELOC_ARM_TLS_IE32:
22111 case BFD_RELOC_ARM_TLS_LDM32:
22112 case BFD_RELOC_ARM_TLS_LDO32:
22113 S_SET_THREAD_LOCAL (fixP->fx_addsy);
22114 /* fall through */
6c43fab6 22115
c19d1205
ZW
22116 case BFD_RELOC_ARM_GOT32:
22117 case BFD_RELOC_ARM_GOTOFF:
2fc8bdac
ZW
22118 if (fixP->fx_done || !seg->use_rela_p)
22119 md_number_to_chars (buf, 0, 4);
c19d1205 22120 break;
b43420e6
NC
22121
22122 case BFD_RELOC_ARM_GOT_PREL:
22123 if (fixP->fx_done || !seg->use_rela_p)
22124 md_number_to_chars (buf, value, 4);
22125 break;
22126
9a6f4e97
NS
22127 case BFD_RELOC_ARM_TARGET2:
22128 /* TARGET2 is not partial-inplace, so we need to write the
22129 addend here for REL targets, because it won't be written out
22130 during reloc processing later. */
22131 if (fixP->fx_done || !seg->use_rela_p)
22132 md_number_to_chars (buf, fixP->fx_offset, 4);
22133 break;
c19d1205 22134#endif
6c43fab6 22135
c19d1205
ZW
22136 case BFD_RELOC_RVA:
22137 case BFD_RELOC_32:
22138 case BFD_RELOC_ARM_TARGET1:
22139 case BFD_RELOC_ARM_ROSEGREL32:
22140 case BFD_RELOC_ARM_SBREL32:
22141 case BFD_RELOC_32_PCREL:
f0927246
NC
22142#ifdef TE_PE
22143 case BFD_RELOC_32_SECREL:
22144#endif
2fc8bdac 22145 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
22146#ifdef TE_WINCE
22147 /* For WinCE we only do this for pcrel fixups. */
22148 if (fixP->fx_done || fixP->fx_pcrel)
22149#endif
22150 md_number_to_chars (buf, value, 4);
c19d1205 22151 break;
6c43fab6 22152
c19d1205
ZW
22153#ifdef OBJ_ELF
22154 case BFD_RELOC_ARM_PREL31:
2fc8bdac 22155 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
22156 {
22157 newval = md_chars_to_number (buf, 4) & 0x80000000;
22158 if ((value ^ (value >> 1)) & 0x40000000)
22159 {
22160 as_bad_where (fixP->fx_file, fixP->fx_line,
22161 _("rel31 relocation overflow"));
22162 }
22163 newval |= value & 0x7fffffff;
22164 md_number_to_chars (buf, newval, 4);
22165 }
22166 break;
c19d1205 22167#endif
a737bd4d 22168
c19d1205 22169 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 22170 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
c19d1205
ZW
22171 if (value < -1023 || value > 1023 || (value & 3))
22172 as_bad_where (fixP->fx_file, fixP->fx_line,
22173 _("co-processor offset out of range"));
22174 cp_off_common:
26d97720 22175 sign = value > 0;
c19d1205
ZW
22176 if (value < 0)
22177 value = -value;
8f06b2d8
PB
22178 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22179 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22180 newval = md_chars_to_number (buf, INSN_SIZE);
22181 else
22182 newval = get_thumb32_insn (buf);
26d97720
NS
22183 if (value == 0)
22184 newval &= 0xffffff00;
22185 else
22186 {
22187 newval &= 0xff7fff00;
22188 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
22189 }
8f06b2d8
PB
22190 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22191 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22192 md_number_to_chars (buf, newval, INSN_SIZE);
22193 else
22194 put_thumb32_insn (buf, newval);
c19d1205 22195 break;
a737bd4d 22196
c19d1205 22197 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 22198 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
22199 if (value < -255 || value > 255)
22200 as_bad_where (fixP->fx_file, fixP->fx_line,
22201 _("co-processor offset out of range"));
df7849c5 22202 value *= 4;
c19d1205 22203 goto cp_off_common;
6c43fab6 22204
c19d1205
ZW
22205 case BFD_RELOC_ARM_THUMB_OFFSET:
22206 newval = md_chars_to_number (buf, THUMB_SIZE);
22207 /* Exactly what ranges, and where the offset is inserted depends
22208 on the type of instruction, we can establish this from the
22209 top 4 bits. */
22210 switch (newval >> 12)
22211 {
22212 case 4: /* PC load. */
22213 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
22214 forced to zero for these loads; md_pcrel_from has already
22215 compensated for this. */
22216 if (value & 3)
22217 as_bad_where (fixP->fx_file, fixP->fx_line,
22218 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
22219 (((unsigned long) fixP->fx_frag->fr_address
22220 + (unsigned long) fixP->fx_where) & ~3)
22221 + (unsigned long) value);
a737bd4d 22222
c19d1205
ZW
22223 if (value & ~0x3fc)
22224 as_bad_where (fixP->fx_file, fixP->fx_line,
22225 _("invalid offset, value too big (0x%08lX)"),
22226 (long) value);
a737bd4d 22227
c19d1205
ZW
22228 newval |= value >> 2;
22229 break;
a737bd4d 22230
c19d1205
ZW
22231 case 9: /* SP load/store. */
22232 if (value & ~0x3fc)
22233 as_bad_where (fixP->fx_file, fixP->fx_line,
22234 _("invalid offset, value too big (0x%08lX)"),
22235 (long) value);
22236 newval |= value >> 2;
22237 break;
6c43fab6 22238
c19d1205
ZW
22239 case 6: /* Word load/store. */
22240 if (value & ~0x7c)
22241 as_bad_where (fixP->fx_file, fixP->fx_line,
22242 _("invalid offset, value too big (0x%08lX)"),
22243 (long) value);
22244 newval |= value << 4; /* 6 - 2. */
22245 break;
a737bd4d 22246
c19d1205
ZW
22247 case 7: /* Byte load/store. */
22248 if (value & ~0x1f)
22249 as_bad_where (fixP->fx_file, fixP->fx_line,
22250 _("invalid offset, value too big (0x%08lX)"),
22251 (long) value);
22252 newval |= value << 6;
22253 break;
a737bd4d 22254
c19d1205
ZW
22255 case 8: /* Halfword load/store. */
22256 if (value & ~0x3e)
22257 as_bad_where (fixP->fx_file, fixP->fx_line,
22258 _("invalid offset, value too big (0x%08lX)"),
22259 (long) value);
22260 newval |= value << 5; /* 6 - 1. */
22261 break;
a737bd4d 22262
c19d1205
ZW
22263 default:
22264 as_bad_where (fixP->fx_file, fixP->fx_line,
22265 "Unable to process relocation for thumb opcode: %lx",
22266 (unsigned long) newval);
22267 break;
22268 }
22269 md_number_to_chars (buf, newval, THUMB_SIZE);
22270 break;
a737bd4d 22271
c19d1205
ZW
22272 case BFD_RELOC_ARM_THUMB_ADD:
22273 /* This is a complicated relocation, since we use it for all of
22274 the following immediate relocations:
a737bd4d 22275
c19d1205
ZW
22276 3bit ADD/SUB
22277 8bit ADD/SUB
22278 9bit ADD/SUB SP word-aligned
22279 10bit ADD PC/SP word-aligned
a737bd4d 22280
c19d1205
ZW
22281 The type of instruction being processed is encoded in the
22282 instruction field:
a737bd4d 22283
c19d1205
ZW
22284 0x8000 SUB
22285 0x00F0 Rd
22286 0x000F Rs
22287 */
22288 newval = md_chars_to_number (buf, THUMB_SIZE);
22289 {
22290 int rd = (newval >> 4) & 0xf;
22291 int rs = newval & 0xf;
22292 int subtract = !!(newval & 0x8000);
a737bd4d 22293
c19d1205
ZW
22294 /* Check for HI regs, only very restricted cases allowed:
22295 Adjusting SP, and using PC or SP to get an address. */
22296 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
22297 || (rs > 7 && rs != REG_SP && rs != REG_PC))
22298 as_bad_where (fixP->fx_file, fixP->fx_line,
22299 _("invalid Hi register with immediate"));
a737bd4d 22300
c19d1205
ZW
22301 /* If value is negative, choose the opposite instruction. */
22302 if (value < 0)
22303 {
22304 value = -value;
22305 subtract = !subtract;
22306 if (value < 0)
22307 as_bad_where (fixP->fx_file, fixP->fx_line,
22308 _("immediate value out of range"));
22309 }
a737bd4d 22310
c19d1205
ZW
22311 if (rd == REG_SP)
22312 {
22313 if (value & ~0x1fc)
22314 as_bad_where (fixP->fx_file, fixP->fx_line,
22315 _("invalid immediate for stack address calculation"));
22316 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
22317 newval |= value >> 2;
22318 }
22319 else if (rs == REG_PC || rs == REG_SP)
22320 {
22321 if (subtract || value & ~0x3fc)
22322 as_bad_where (fixP->fx_file, fixP->fx_line,
22323 _("invalid immediate for address calculation (value = 0x%08lX)"),
22324 (unsigned long) value);
22325 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
22326 newval |= rd << 8;
22327 newval |= value >> 2;
22328 }
22329 else if (rs == rd)
22330 {
22331 if (value & ~0xff)
22332 as_bad_where (fixP->fx_file, fixP->fx_line,
22333 _("immediate value out of range"));
22334 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
22335 newval |= (rd << 8) | value;
22336 }
22337 else
22338 {
22339 if (value & ~0x7)
22340 as_bad_where (fixP->fx_file, fixP->fx_line,
22341 _("immediate value out of range"));
22342 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
22343 newval |= rd | (rs << 3) | (value << 6);
22344 }
22345 }
22346 md_number_to_chars (buf, newval, THUMB_SIZE);
22347 break;
a737bd4d 22348
c19d1205
ZW
22349 case BFD_RELOC_ARM_THUMB_IMM:
22350 newval = md_chars_to_number (buf, THUMB_SIZE);
22351 if (value < 0 || value > 255)
22352 as_bad_where (fixP->fx_file, fixP->fx_line,
4e6e072b 22353 _("invalid immediate: %ld is out of range"),
c19d1205
ZW
22354 (long) value);
22355 newval |= value;
22356 md_number_to_chars (buf, newval, THUMB_SIZE);
22357 break;
a737bd4d 22358
c19d1205
ZW
22359 case BFD_RELOC_ARM_THUMB_SHIFT:
22360 /* 5bit shift value (0..32). LSL cannot take 32. */
22361 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
22362 temp = newval & 0xf800;
22363 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
22364 as_bad_where (fixP->fx_file, fixP->fx_line,
22365 _("invalid shift value: %ld"), (long) value);
22366 /* Shifts of zero must be encoded as LSL. */
22367 if (value == 0)
22368 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
22369 /* Shifts of 32 are encoded as zero. */
22370 else if (value == 32)
22371 value = 0;
22372 newval |= value << 6;
22373 md_number_to_chars (buf, newval, THUMB_SIZE);
22374 break;
a737bd4d 22375
c19d1205
ZW
22376 case BFD_RELOC_VTABLE_INHERIT:
22377 case BFD_RELOC_VTABLE_ENTRY:
22378 fixP->fx_done = 0;
22379 return;
6c43fab6 22380
b6895b4f
PB
22381 case BFD_RELOC_ARM_MOVW:
22382 case BFD_RELOC_ARM_MOVT:
22383 case BFD_RELOC_ARM_THUMB_MOVW:
22384 case BFD_RELOC_ARM_THUMB_MOVT:
22385 if (fixP->fx_done || !seg->use_rela_p)
22386 {
22387 /* REL format relocations are limited to a 16-bit addend. */
22388 if (!fixP->fx_done)
22389 {
39623e12 22390 if (value < -0x8000 || value > 0x7fff)
b6895b4f 22391 as_bad_where (fixP->fx_file, fixP->fx_line,
ff5075ca 22392 _("offset out of range"));
b6895b4f
PB
22393 }
22394 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
22395 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22396 {
22397 value >>= 16;
22398 }
22399
22400 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
22401 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22402 {
22403 newval = get_thumb32_insn (buf);
22404 newval &= 0xfbf08f00;
22405 newval |= (value & 0xf000) << 4;
22406 newval |= (value & 0x0800) << 15;
22407 newval |= (value & 0x0700) << 4;
22408 newval |= (value & 0x00ff);
22409 put_thumb32_insn (buf, newval);
22410 }
22411 else
22412 {
22413 newval = md_chars_to_number (buf, 4);
22414 newval &= 0xfff0f000;
22415 newval |= value & 0x0fff;
22416 newval |= (value & 0xf000) << 4;
22417 md_number_to_chars (buf, newval, 4);
22418 }
22419 }
22420 return;
22421
4962c51a
MS
22422 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22423 case BFD_RELOC_ARM_ALU_PC_G0:
22424 case BFD_RELOC_ARM_ALU_PC_G1_NC:
22425 case BFD_RELOC_ARM_ALU_PC_G1:
22426 case BFD_RELOC_ARM_ALU_PC_G2:
22427 case BFD_RELOC_ARM_ALU_SB_G0_NC:
22428 case BFD_RELOC_ARM_ALU_SB_G0:
22429 case BFD_RELOC_ARM_ALU_SB_G1_NC:
22430 case BFD_RELOC_ARM_ALU_SB_G1:
22431 case BFD_RELOC_ARM_ALU_SB_G2:
9c2799c2 22432 gas_assert (!fixP->fx_done);
4962c51a
MS
22433 if (!seg->use_rela_p)
22434 {
22435 bfd_vma insn;
22436 bfd_vma encoded_addend;
22437 bfd_vma addend_abs = abs (value);
22438
22439 /* Check that the absolute value of the addend can be
22440 expressed as an 8-bit constant plus a rotation. */
22441 encoded_addend = encode_arm_immediate (addend_abs);
22442 if (encoded_addend == (unsigned int) FAIL)
22443 as_bad_where (fixP->fx_file, fixP->fx_line,
22444 _("the offset 0x%08lX is not representable"),
495bde8e 22445 (unsigned long) addend_abs);
4962c51a
MS
22446
22447 /* Extract the instruction. */
22448 insn = md_chars_to_number (buf, INSN_SIZE);
22449
22450 /* If the addend is positive, use an ADD instruction.
22451 Otherwise use a SUB. Take care not to destroy the S bit. */
22452 insn &= 0xff1fffff;
22453 if (value < 0)
22454 insn |= 1 << 22;
22455 else
22456 insn |= 1 << 23;
22457
22458 /* Place the encoded addend into the first 12 bits of the
22459 instruction. */
22460 insn &= 0xfffff000;
22461 insn |= encoded_addend;
5f4273c7
NC
22462
22463 /* Update the instruction. */
4962c51a
MS
22464 md_number_to_chars (buf, insn, INSN_SIZE);
22465 }
22466 break;
22467
22468 case BFD_RELOC_ARM_LDR_PC_G0:
22469 case BFD_RELOC_ARM_LDR_PC_G1:
22470 case BFD_RELOC_ARM_LDR_PC_G2:
22471 case BFD_RELOC_ARM_LDR_SB_G0:
22472 case BFD_RELOC_ARM_LDR_SB_G1:
22473 case BFD_RELOC_ARM_LDR_SB_G2:
9c2799c2 22474 gas_assert (!fixP->fx_done);
4962c51a
MS
22475 if (!seg->use_rela_p)
22476 {
22477 bfd_vma insn;
22478 bfd_vma addend_abs = abs (value);
22479
22480 /* Check that the absolute value of the addend can be
22481 encoded in 12 bits. */
22482 if (addend_abs >= 0x1000)
22483 as_bad_where (fixP->fx_file, fixP->fx_line,
22484 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
495bde8e 22485 (unsigned long) addend_abs);
4962c51a
MS
22486
22487 /* Extract the instruction. */
22488 insn = md_chars_to_number (buf, INSN_SIZE);
22489
22490 /* If the addend is negative, clear bit 23 of the instruction.
22491 Otherwise set it. */
22492 if (value < 0)
22493 insn &= ~(1 << 23);
22494 else
22495 insn |= 1 << 23;
22496
22497 /* Place the absolute value of the addend into the first 12 bits
22498 of the instruction. */
22499 insn &= 0xfffff000;
22500 insn |= addend_abs;
5f4273c7
NC
22501
22502 /* Update the instruction. */
4962c51a
MS
22503 md_number_to_chars (buf, insn, INSN_SIZE);
22504 }
22505 break;
22506
22507 case BFD_RELOC_ARM_LDRS_PC_G0:
22508 case BFD_RELOC_ARM_LDRS_PC_G1:
22509 case BFD_RELOC_ARM_LDRS_PC_G2:
22510 case BFD_RELOC_ARM_LDRS_SB_G0:
22511 case BFD_RELOC_ARM_LDRS_SB_G1:
22512 case BFD_RELOC_ARM_LDRS_SB_G2:
9c2799c2 22513 gas_assert (!fixP->fx_done);
4962c51a
MS
22514 if (!seg->use_rela_p)
22515 {
22516 bfd_vma insn;
22517 bfd_vma addend_abs = abs (value);
22518
22519 /* Check that the absolute value of the addend can be
22520 encoded in 8 bits. */
22521 if (addend_abs >= 0x100)
22522 as_bad_where (fixP->fx_file, fixP->fx_line,
22523 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
495bde8e 22524 (unsigned long) addend_abs);
4962c51a
MS
22525
22526 /* Extract the instruction. */
22527 insn = md_chars_to_number (buf, INSN_SIZE);
22528
22529 /* If the addend is negative, clear bit 23 of the instruction.
22530 Otherwise set it. */
22531 if (value < 0)
22532 insn &= ~(1 << 23);
22533 else
22534 insn |= 1 << 23;
22535
22536 /* Place the first four bits of the absolute value of the addend
22537 into the first 4 bits of the instruction, and the remaining
22538 four into bits 8 .. 11. */
22539 insn &= 0xfffff0f0;
22540 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
5f4273c7
NC
22541
22542 /* Update the instruction. */
4962c51a
MS
22543 md_number_to_chars (buf, insn, INSN_SIZE);
22544 }
22545 break;
22546
22547 case BFD_RELOC_ARM_LDC_PC_G0:
22548 case BFD_RELOC_ARM_LDC_PC_G1:
22549 case BFD_RELOC_ARM_LDC_PC_G2:
22550 case BFD_RELOC_ARM_LDC_SB_G0:
22551 case BFD_RELOC_ARM_LDC_SB_G1:
22552 case BFD_RELOC_ARM_LDC_SB_G2:
9c2799c2 22553 gas_assert (!fixP->fx_done);
4962c51a
MS
22554 if (!seg->use_rela_p)
22555 {
22556 bfd_vma insn;
22557 bfd_vma addend_abs = abs (value);
22558
22559 /* Check that the absolute value of the addend is a multiple of
22560 four and, when divided by four, fits in 8 bits. */
22561 if (addend_abs & 0x3)
22562 as_bad_where (fixP->fx_file, fixP->fx_line,
22563 _("bad offset 0x%08lX (must be word-aligned)"),
495bde8e 22564 (unsigned long) addend_abs);
4962c51a
MS
22565
22566 if ((addend_abs >> 2) > 0xff)
22567 as_bad_where (fixP->fx_file, fixP->fx_line,
22568 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
495bde8e 22569 (unsigned long) addend_abs);
4962c51a
MS
22570
22571 /* Extract the instruction. */
22572 insn = md_chars_to_number (buf, INSN_SIZE);
22573
22574 /* If the addend is negative, clear bit 23 of the instruction.
22575 Otherwise set it. */
22576 if (value < 0)
22577 insn &= ~(1 << 23);
22578 else
22579 insn |= 1 << 23;
22580
22581 /* Place the addend (divided by four) into the first eight
22582 bits of the instruction. */
22583 insn &= 0xfffffff0;
22584 insn |= addend_abs >> 2;
5f4273c7
NC
22585
22586 /* Update the instruction. */
4962c51a
MS
22587 md_number_to_chars (buf, insn, INSN_SIZE);
22588 }
22589 break;
22590
845b51d6
PB
22591 case BFD_RELOC_ARM_V4BX:
22592 /* This will need to go in the object file. */
22593 fixP->fx_done = 0;
22594 break;
22595
c19d1205
ZW
22596 case BFD_RELOC_UNUSED:
22597 default:
22598 as_bad_where (fixP->fx_file, fixP->fx_line,
22599 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
22600 }
6c43fab6
RE
22601}
22602
c19d1205
ZW
22603/* Translate internal representation of relocation info to BFD target
22604 format. */
a737bd4d 22605
c19d1205 22606arelent *
00a97672 22607tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 22608{
c19d1205
ZW
22609 arelent * reloc;
22610 bfd_reloc_code_real_type code;
a737bd4d 22611
21d799b5 22612 reloc = (arelent *) xmalloc (sizeof (arelent));
a737bd4d 22613
21d799b5 22614 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
c19d1205
ZW
22615 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
22616 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 22617
2fc8bdac 22618 if (fixp->fx_pcrel)
00a97672
RS
22619 {
22620 if (section->use_rela_p)
22621 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
22622 else
22623 fixp->fx_offset = reloc->address;
22624 }
c19d1205 22625 reloc->addend = fixp->fx_offset;
a737bd4d 22626
c19d1205 22627 switch (fixp->fx_r_type)
a737bd4d 22628 {
c19d1205
ZW
22629 case BFD_RELOC_8:
22630 if (fixp->fx_pcrel)
22631 {
22632 code = BFD_RELOC_8_PCREL;
22633 break;
22634 }
a737bd4d 22635
c19d1205
ZW
22636 case BFD_RELOC_16:
22637 if (fixp->fx_pcrel)
22638 {
22639 code = BFD_RELOC_16_PCREL;
22640 break;
22641 }
6c43fab6 22642
c19d1205
ZW
22643 case BFD_RELOC_32:
22644 if (fixp->fx_pcrel)
22645 {
22646 code = BFD_RELOC_32_PCREL;
22647 break;
22648 }
a737bd4d 22649
b6895b4f
PB
22650 case BFD_RELOC_ARM_MOVW:
22651 if (fixp->fx_pcrel)
22652 {
22653 code = BFD_RELOC_ARM_MOVW_PCREL;
22654 break;
22655 }
22656
22657 case BFD_RELOC_ARM_MOVT:
22658 if (fixp->fx_pcrel)
22659 {
22660 code = BFD_RELOC_ARM_MOVT_PCREL;
22661 break;
22662 }
22663
22664 case BFD_RELOC_ARM_THUMB_MOVW:
22665 if (fixp->fx_pcrel)
22666 {
22667 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
22668 break;
22669 }
22670
22671 case BFD_RELOC_ARM_THUMB_MOVT:
22672 if (fixp->fx_pcrel)
22673 {
22674 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
22675 break;
22676 }
22677
c19d1205
ZW
22678 case BFD_RELOC_NONE:
22679 case BFD_RELOC_ARM_PCREL_BRANCH:
22680 case BFD_RELOC_ARM_PCREL_BLX:
22681 case BFD_RELOC_RVA:
22682 case BFD_RELOC_THUMB_PCREL_BRANCH7:
22683 case BFD_RELOC_THUMB_PCREL_BRANCH9:
22684 case BFD_RELOC_THUMB_PCREL_BRANCH12:
22685 case BFD_RELOC_THUMB_PCREL_BRANCH20:
22686 case BFD_RELOC_THUMB_PCREL_BRANCH23:
22687 case BFD_RELOC_THUMB_PCREL_BRANCH25:
c19d1205
ZW
22688 case BFD_RELOC_VTABLE_ENTRY:
22689 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
22690#ifdef TE_PE
22691 case BFD_RELOC_32_SECREL:
22692#endif
c19d1205
ZW
22693 code = fixp->fx_r_type;
22694 break;
a737bd4d 22695
00adf2d4
JB
22696 case BFD_RELOC_THUMB_PCREL_BLX:
22697#ifdef OBJ_ELF
22698 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
22699 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
22700 else
22701#endif
22702 code = BFD_RELOC_THUMB_PCREL_BLX;
22703 break;
22704
c19d1205
ZW
22705 case BFD_RELOC_ARM_LITERAL:
22706 case BFD_RELOC_ARM_HWLITERAL:
22707 /* If this is called then the a literal has
22708 been referenced across a section boundary. */
22709 as_bad_where (fixp->fx_file, fixp->fx_line,
22710 _("literal referenced across section boundary"));
22711 return NULL;
a737bd4d 22712
c19d1205 22713#ifdef OBJ_ELF
0855e32b
NS
22714 case BFD_RELOC_ARM_TLS_CALL:
22715 case BFD_RELOC_ARM_THM_TLS_CALL:
22716 case BFD_RELOC_ARM_TLS_DESCSEQ:
22717 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
c19d1205
ZW
22718 case BFD_RELOC_ARM_GOT32:
22719 case BFD_RELOC_ARM_GOTOFF:
b43420e6 22720 case BFD_RELOC_ARM_GOT_PREL:
c19d1205
ZW
22721 case BFD_RELOC_ARM_PLT32:
22722 case BFD_RELOC_ARM_TARGET1:
22723 case BFD_RELOC_ARM_ROSEGREL32:
22724 case BFD_RELOC_ARM_SBREL32:
22725 case BFD_RELOC_ARM_PREL31:
22726 case BFD_RELOC_ARM_TARGET2:
22727 case BFD_RELOC_ARM_TLS_LE32:
22728 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
22729 case BFD_RELOC_ARM_PCREL_CALL:
22730 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
22731 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22732 case BFD_RELOC_ARM_ALU_PC_G0:
22733 case BFD_RELOC_ARM_ALU_PC_G1_NC:
22734 case BFD_RELOC_ARM_ALU_PC_G1:
22735 case BFD_RELOC_ARM_ALU_PC_G2:
22736 case BFD_RELOC_ARM_LDR_PC_G0:
22737 case BFD_RELOC_ARM_LDR_PC_G1:
22738 case BFD_RELOC_ARM_LDR_PC_G2:
22739 case BFD_RELOC_ARM_LDRS_PC_G0:
22740 case BFD_RELOC_ARM_LDRS_PC_G1:
22741 case BFD_RELOC_ARM_LDRS_PC_G2:
22742 case BFD_RELOC_ARM_LDC_PC_G0:
22743 case BFD_RELOC_ARM_LDC_PC_G1:
22744 case BFD_RELOC_ARM_LDC_PC_G2:
22745 case BFD_RELOC_ARM_ALU_SB_G0_NC:
22746 case BFD_RELOC_ARM_ALU_SB_G0:
22747 case BFD_RELOC_ARM_ALU_SB_G1_NC:
22748 case BFD_RELOC_ARM_ALU_SB_G1:
22749 case BFD_RELOC_ARM_ALU_SB_G2:
22750 case BFD_RELOC_ARM_LDR_SB_G0:
22751 case BFD_RELOC_ARM_LDR_SB_G1:
22752 case BFD_RELOC_ARM_LDR_SB_G2:
22753 case BFD_RELOC_ARM_LDRS_SB_G0:
22754 case BFD_RELOC_ARM_LDRS_SB_G1:
22755 case BFD_RELOC_ARM_LDRS_SB_G2:
22756 case BFD_RELOC_ARM_LDC_SB_G0:
22757 case BFD_RELOC_ARM_LDC_SB_G1:
22758 case BFD_RELOC_ARM_LDC_SB_G2:
845b51d6 22759 case BFD_RELOC_ARM_V4BX:
c19d1205
ZW
22760 code = fixp->fx_r_type;
22761 break;
a737bd4d 22762
0855e32b 22763 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22764 case BFD_RELOC_ARM_TLS_GD32:
22765 case BFD_RELOC_ARM_TLS_IE32:
22766 case BFD_RELOC_ARM_TLS_LDM32:
22767 /* BFD will include the symbol's address in the addend.
22768 But we don't want that, so subtract it out again here. */
22769 if (!S_IS_COMMON (fixp->fx_addsy))
22770 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
22771 code = fixp->fx_r_type;
22772 break;
22773#endif
a737bd4d 22774
c19d1205
ZW
22775 case BFD_RELOC_ARM_IMMEDIATE:
22776 as_bad_where (fixp->fx_file, fixp->fx_line,
22777 _("internal relocation (type: IMMEDIATE) not fixed up"));
22778 return NULL;
a737bd4d 22779
c19d1205
ZW
22780 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
22781 as_bad_where (fixp->fx_file, fixp->fx_line,
22782 _("ADRL used for a symbol not defined in the same file"));
22783 return NULL;
a737bd4d 22784
c19d1205 22785 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
22786 if (section->use_rela_p)
22787 {
22788 code = fixp->fx_r_type;
22789 break;
22790 }
22791
c19d1205
ZW
22792 if (fixp->fx_addsy != NULL
22793 && !S_IS_DEFINED (fixp->fx_addsy)
22794 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 22795 {
c19d1205
ZW
22796 as_bad_where (fixp->fx_file, fixp->fx_line,
22797 _("undefined local label `%s'"),
22798 S_GET_NAME (fixp->fx_addsy));
22799 return NULL;
a737bd4d
NC
22800 }
22801
c19d1205
ZW
22802 as_bad_where (fixp->fx_file, fixp->fx_line,
22803 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
22804 return NULL;
a737bd4d 22805
c19d1205
ZW
22806 default:
22807 {
22808 char * type;
6c43fab6 22809
c19d1205
ZW
22810 switch (fixp->fx_r_type)
22811 {
22812 case BFD_RELOC_NONE: type = "NONE"; break;
22813 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
22814 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 22815 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
22816 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
22817 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
22818 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
db187cb9 22819 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
8f06b2d8 22820 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
22821 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
22822 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
22823 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
22824 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
22825 default: type = _("<unknown>"); break;
22826 }
22827 as_bad_where (fixp->fx_file, fixp->fx_line,
22828 _("cannot represent %s relocation in this object file format"),
22829 type);
22830 return NULL;
22831 }
a737bd4d 22832 }
6c43fab6 22833
c19d1205
ZW
22834#ifdef OBJ_ELF
22835 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
22836 && GOT_symbol
22837 && fixp->fx_addsy == GOT_symbol)
22838 {
22839 code = BFD_RELOC_ARM_GOTPC;
22840 reloc->addend = fixp->fx_offset = reloc->address;
22841 }
22842#endif
6c43fab6 22843
c19d1205 22844 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 22845
c19d1205
ZW
22846 if (reloc->howto == NULL)
22847 {
22848 as_bad_where (fixp->fx_file, fixp->fx_line,
22849 _("cannot represent %s relocation in this object file format"),
22850 bfd_get_reloc_code_name (code));
22851 return NULL;
22852 }
6c43fab6 22853
c19d1205
ZW
22854 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
22855 vtable entry to be used in the relocation's section offset. */
22856 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
22857 reloc->address = fixp->fx_offset;
6c43fab6 22858
c19d1205 22859 return reloc;
6c43fab6
RE
22860}
22861
c19d1205 22862/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 22863
c19d1205
ZW
22864void
22865cons_fix_new_arm (fragS * frag,
22866 int where,
22867 int size,
22868 expressionS * exp)
6c43fab6 22869{
c19d1205
ZW
22870 bfd_reloc_code_real_type type;
22871 int pcrel = 0;
6c43fab6 22872
c19d1205
ZW
22873 /* Pick a reloc.
22874 FIXME: @@ Should look at CPU word size. */
22875 switch (size)
22876 {
22877 case 1:
22878 type = BFD_RELOC_8;
22879 break;
22880 case 2:
22881 type = BFD_RELOC_16;
22882 break;
22883 case 4:
22884 default:
22885 type = BFD_RELOC_32;
22886 break;
22887 case 8:
22888 type = BFD_RELOC_64;
22889 break;
22890 }
6c43fab6 22891
f0927246
NC
22892#ifdef TE_PE
22893 if (exp->X_op == O_secrel)
22894 {
22895 exp->X_op = O_symbol;
22896 type = BFD_RELOC_32_SECREL;
22897 }
22898#endif
22899
c19d1205
ZW
22900 fix_new_exp (frag, where, (int) size, exp, pcrel, type);
22901}
6c43fab6 22902
4343666d 22903#if defined (OBJ_COFF)
c19d1205
ZW
22904void
22905arm_validate_fix (fixS * fixP)
6c43fab6 22906{
c19d1205
ZW
22907 /* If the destination of the branch is a defined symbol which does not have
22908 the THUMB_FUNC attribute, then we must be calling a function which has
22909 the (interfacearm) attribute. We look for the Thumb entry point to that
22910 function and change the branch to refer to that function instead. */
22911 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
22912 && fixP->fx_addsy != NULL
22913 && S_IS_DEFINED (fixP->fx_addsy)
22914 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 22915 {
c19d1205 22916 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 22917 }
c19d1205
ZW
22918}
22919#endif
6c43fab6 22920
267bf995 22921
c19d1205
ZW
22922int
22923arm_force_relocation (struct fix * fixp)
22924{
22925#if defined (OBJ_COFF) && defined (TE_PE)
22926 if (fixp->fx_r_type == BFD_RELOC_RVA)
22927 return 1;
22928#endif
6c43fab6 22929
267bf995
RR
22930 /* In case we have a call or a branch to a function in ARM ISA mode from
22931 a thumb function or vice-versa force the relocation. These relocations
22932 are cleared off for some cores that might have blx and simple transformations
22933 are possible. */
22934
22935#ifdef OBJ_ELF
22936 switch (fixp->fx_r_type)
22937 {
22938 case BFD_RELOC_ARM_PCREL_JUMP:
22939 case BFD_RELOC_ARM_PCREL_CALL:
22940 case BFD_RELOC_THUMB_PCREL_BLX:
22941 if (THUMB_IS_FUNC (fixp->fx_addsy))
22942 return 1;
22943 break;
22944
22945 case BFD_RELOC_ARM_PCREL_BLX:
22946 case BFD_RELOC_THUMB_PCREL_BRANCH25:
22947 case BFD_RELOC_THUMB_PCREL_BRANCH20:
22948 case BFD_RELOC_THUMB_PCREL_BRANCH23:
22949 if (ARM_IS_FUNC (fixp->fx_addsy))
22950 return 1;
22951 break;
22952
22953 default:
22954 break;
22955 }
22956#endif
22957
b5884301
PB
22958 /* Resolve these relocations even if the symbol is extern or weak.
22959 Technically this is probably wrong due to symbol preemption.
22960 In practice these relocations do not have enough range to be useful
22961 at dynamic link time, and some code (e.g. in the Linux kernel)
22962 expects these references to be resolved. */
c19d1205
ZW
22963 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
22964 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
b5884301 22965 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
0110f2b8 22966 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
b5884301
PB
22967 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22968 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
22969 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
16805f35 22970 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
22971 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
22972 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
b5884301
PB
22973 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
22974 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
22975 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
22976 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
c19d1205 22977 return 0;
a737bd4d 22978
4962c51a
MS
22979 /* Always leave these relocations for the linker. */
22980 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
22981 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
22982 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
22983 return 1;
22984
f0291e4c
PB
22985 /* Always generate relocations against function symbols. */
22986 if (fixp->fx_r_type == BFD_RELOC_32
22987 && fixp->fx_addsy
22988 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
22989 return 1;
22990
c19d1205 22991 return generic_force_reloc (fixp);
404ff6b5
AH
22992}
22993
0ffdc86c 22994#if defined (OBJ_ELF) || defined (OBJ_COFF)
e28387c3
PB
22995/* Relocations against function names must be left unadjusted,
22996 so that the linker can use this information to generate interworking
22997 stubs. The MIPS version of this function
c19d1205
ZW
22998 also prevents relocations that are mips-16 specific, but I do not
22999 know why it does this.
404ff6b5 23000
c19d1205
ZW
23001 FIXME:
23002 There is one other problem that ought to be addressed here, but
23003 which currently is not: Taking the address of a label (rather
23004 than a function) and then later jumping to that address. Such
23005 addresses also ought to have their bottom bit set (assuming that
23006 they reside in Thumb code), but at the moment they will not. */
404ff6b5 23007
c19d1205
ZW
23008bfd_boolean
23009arm_fix_adjustable (fixS * fixP)
404ff6b5 23010{
c19d1205
ZW
23011 if (fixP->fx_addsy == NULL)
23012 return 1;
404ff6b5 23013
e28387c3
PB
23014 /* Preserve relocations against symbols with function type. */
23015 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
c921be7d 23016 return FALSE;
e28387c3 23017
c19d1205
ZW
23018 if (THUMB_IS_FUNC (fixP->fx_addsy)
23019 && fixP->fx_subsy == NULL)
c921be7d 23020 return FALSE;
a737bd4d 23021
c19d1205
ZW
23022 /* We need the symbol name for the VTABLE entries. */
23023 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
23024 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
c921be7d 23025 return FALSE;
404ff6b5 23026
c19d1205
ZW
23027 /* Don't allow symbols to be discarded on GOT related relocs. */
23028 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
23029 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
23030 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
23031 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
23032 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
23033 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
23034 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
23035 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
0855e32b
NS
23036 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
23037 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
23038 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
23039 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
23040 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
c19d1205 23041 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
c921be7d 23042 return FALSE;
a737bd4d 23043
4962c51a
MS
23044 /* Similarly for group relocations. */
23045 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23046 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23047 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
c921be7d 23048 return FALSE;
4962c51a 23049
79947c54
CD
23050 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
23051 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
23052 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
23053 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
23054 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
23055 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
23056 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
23057 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
23058 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
c921be7d 23059 return FALSE;
79947c54 23060
c921be7d 23061 return TRUE;
a737bd4d 23062}
0ffdc86c
NC
23063#endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
23064
23065#ifdef OBJ_ELF
404ff6b5 23066
c19d1205
ZW
23067const char *
23068elf32_arm_target_format (void)
404ff6b5 23069{
c19d1205
ZW
23070#ifdef TE_SYMBIAN
23071 return (target_big_endian
23072 ? "elf32-bigarm-symbian"
23073 : "elf32-littlearm-symbian");
23074#elif defined (TE_VXWORKS)
23075 return (target_big_endian
23076 ? "elf32-bigarm-vxworks"
23077 : "elf32-littlearm-vxworks");
b38cadfb
NC
23078#elif defined (TE_NACL)
23079 return (target_big_endian
23080 ? "elf32-bigarm-nacl"
23081 : "elf32-littlearm-nacl");
c19d1205
ZW
23082#else
23083 if (target_big_endian)
23084 return "elf32-bigarm";
23085 else
23086 return "elf32-littlearm";
23087#endif
404ff6b5
AH
23088}
23089
c19d1205
ZW
23090void
23091armelf_frob_symbol (symbolS * symp,
23092 int * puntp)
404ff6b5 23093{
c19d1205
ZW
23094 elf_frob_symbol (symp, puntp);
23095}
23096#endif
404ff6b5 23097
c19d1205 23098/* MD interface: Finalization. */
a737bd4d 23099
c19d1205
ZW
23100void
23101arm_cleanup (void)
23102{
23103 literal_pool * pool;
a737bd4d 23104
e07e6e58
NC
23105 /* Ensure that all the IT blocks are properly closed. */
23106 check_it_blocks_finished ();
23107
c19d1205
ZW
23108 for (pool = list_of_pools; pool; pool = pool->next)
23109 {
5f4273c7 23110 /* Put it at the end of the relevant section. */
c19d1205
ZW
23111 subseg_set (pool->section, pool->sub_section);
23112#ifdef OBJ_ELF
23113 arm_elf_change_section ();
23114#endif
23115 s_ltorg (0);
23116 }
404ff6b5
AH
23117}
23118
cd000bff
DJ
23119#ifdef OBJ_ELF
23120/* Remove any excess mapping symbols generated for alignment frags in
23121 SEC. We may have created a mapping symbol before a zero byte
23122 alignment; remove it if there's a mapping symbol after the
23123 alignment. */
23124static void
23125check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
23126 void *dummy ATTRIBUTE_UNUSED)
23127{
23128 segment_info_type *seginfo = seg_info (sec);
23129 fragS *fragp;
23130
23131 if (seginfo == NULL || seginfo->frchainP == NULL)
23132 return;
23133
23134 for (fragp = seginfo->frchainP->frch_root;
23135 fragp != NULL;
23136 fragp = fragp->fr_next)
23137 {
23138 symbolS *sym = fragp->tc_frag_data.last_map;
23139 fragS *next = fragp->fr_next;
23140
23141 /* Variable-sized frags have been converted to fixed size by
23142 this point. But if this was variable-sized to start with,
23143 there will be a fixed-size frag after it. So don't handle
23144 next == NULL. */
23145 if (sym == NULL || next == NULL)
23146 continue;
23147
23148 if (S_GET_VALUE (sym) < next->fr_address)
23149 /* Not at the end of this frag. */
23150 continue;
23151 know (S_GET_VALUE (sym) == next->fr_address);
23152
23153 do
23154 {
23155 if (next->tc_frag_data.first_map != NULL)
23156 {
23157 /* Next frag starts with a mapping symbol. Discard this
23158 one. */
23159 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23160 break;
23161 }
23162
23163 if (next->fr_next == NULL)
23164 {
23165 /* This mapping symbol is at the end of the section. Discard
23166 it. */
23167 know (next->fr_fix == 0 && next->fr_var == 0);
23168 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23169 break;
23170 }
23171
23172 /* As long as we have empty frags without any mapping symbols,
23173 keep looking. */
23174 /* If the next frag is non-empty and does not start with a
23175 mapping symbol, then this mapping symbol is required. */
23176 if (next->fr_address != next->fr_next->fr_address)
23177 break;
23178
23179 next = next->fr_next;
23180 }
23181 while (next != NULL);
23182 }
23183}
23184#endif
23185
c19d1205
ZW
23186/* Adjust the symbol table. This marks Thumb symbols as distinct from
23187 ARM ones. */
404ff6b5 23188
c19d1205
ZW
23189void
23190arm_adjust_symtab (void)
404ff6b5 23191{
c19d1205
ZW
23192#ifdef OBJ_COFF
23193 symbolS * sym;
404ff6b5 23194
c19d1205
ZW
23195 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
23196 {
23197 if (ARM_IS_THUMB (sym))
23198 {
23199 if (THUMB_IS_FUNC (sym))
23200 {
23201 /* Mark the symbol as a Thumb function. */
23202 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
23203 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
23204 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 23205
c19d1205
ZW
23206 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
23207 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
23208 else
23209 as_bad (_("%s: unexpected function type: %d"),
23210 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
23211 }
23212 else switch (S_GET_STORAGE_CLASS (sym))
23213 {
23214 case C_EXT:
23215 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
23216 break;
23217 case C_STAT:
23218 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
23219 break;
23220 case C_LABEL:
23221 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
23222 break;
23223 default:
23224 /* Do nothing. */
23225 break;
23226 }
23227 }
a737bd4d 23228
c19d1205
ZW
23229 if (ARM_IS_INTERWORK (sym))
23230 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 23231 }
c19d1205
ZW
23232#endif
23233#ifdef OBJ_ELF
23234 symbolS * sym;
23235 char bind;
404ff6b5 23236
c19d1205 23237 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 23238 {
c19d1205
ZW
23239 if (ARM_IS_THUMB (sym))
23240 {
23241 elf_symbol_type * elf_sym;
404ff6b5 23242
c19d1205
ZW
23243 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
23244 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 23245
b0796911
PB
23246 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
23247 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
23248 {
23249 /* If it's a .thumb_func, declare it as so,
23250 otherwise tag label as .code 16. */
23251 if (THUMB_IS_FUNC (sym))
35fc36a8
RS
23252 elf_sym->internal_elf_sym.st_target_internal
23253 = ST_BRANCH_TO_THUMB;
3ba67470 23254 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
c19d1205
ZW
23255 elf_sym->internal_elf_sym.st_info =
23256 ELF_ST_INFO (bind, STT_ARM_16BIT);
23257 }
23258 }
23259 }
cd000bff
DJ
23260
23261 /* Remove any overlapping mapping symbols generated by alignment frags. */
23262 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
709001e9
MM
23263 /* Now do generic ELF adjustments. */
23264 elf_adjust_symtab ();
c19d1205 23265#endif
404ff6b5
AH
23266}
23267
c19d1205 23268/* MD interface: Initialization. */
404ff6b5 23269
a737bd4d 23270static void
c19d1205 23271set_constant_flonums (void)
a737bd4d 23272{
c19d1205 23273 int i;
404ff6b5 23274
c19d1205
ZW
23275 for (i = 0; i < NUM_FLOAT_VALS; i++)
23276 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
23277 abort ();
a737bd4d 23278}
404ff6b5 23279
3e9e4fcf
JB
23280/* Auto-select Thumb mode if it's the only available instruction set for the
23281 given architecture. */
23282
23283static void
23284autoselect_thumb_from_cpu_variant (void)
23285{
23286 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
23287 opcode_select (16);
23288}
23289
c19d1205
ZW
23290void
23291md_begin (void)
a737bd4d 23292{
c19d1205
ZW
23293 unsigned mach;
23294 unsigned int i;
404ff6b5 23295
c19d1205
ZW
23296 if ( (arm_ops_hsh = hash_new ()) == NULL
23297 || (arm_cond_hsh = hash_new ()) == NULL
23298 || (arm_shift_hsh = hash_new ()) == NULL
23299 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 23300 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 23301 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
23302 || (arm_reloc_hsh = hash_new ()) == NULL
23303 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
23304 as_fatal (_("virtual memory exhausted"));
23305
23306 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
d3ce72d0 23307 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
c19d1205 23308 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
d3ce72d0 23309 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
c19d1205 23310 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
5a49b8ac 23311 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
c19d1205 23312 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 23313 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
62b3e311 23314 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
d3ce72d0
NC
23315 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
23316 (void *) (v7m_psrs + i));
c19d1205 23317 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
5a49b8ac 23318 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
62b3e311
PB
23319 for (i = 0;
23320 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
23321 i++)
d3ce72d0 23322 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
5a49b8ac 23323 (void *) (barrier_opt_names + i));
c19d1205 23324#ifdef OBJ_ELF
3da1d841
NC
23325 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
23326 {
23327 struct reloc_entry * entry = reloc_names + i;
23328
23329 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
23330 /* This makes encode_branch() use the EABI versions of this relocation. */
23331 entry->reloc = BFD_RELOC_UNUSED;
23332
23333 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
23334 }
c19d1205
ZW
23335#endif
23336
23337 set_constant_flonums ();
404ff6b5 23338
c19d1205
ZW
23339 /* Set the cpu variant based on the command-line options. We prefer
23340 -mcpu= over -march= if both are set (as for GCC); and we prefer
23341 -mfpu= over any other way of setting the floating point unit.
23342 Use of legacy options with new options are faulted. */
e74cfd16 23343 if (legacy_cpu)
404ff6b5 23344 {
e74cfd16 23345 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
23346 as_bad (_("use of old and new-style options to set CPU type"));
23347
23348 mcpu_cpu_opt = legacy_cpu;
404ff6b5 23349 }
e74cfd16 23350 else if (!mcpu_cpu_opt)
c19d1205 23351 mcpu_cpu_opt = march_cpu_opt;
404ff6b5 23352
e74cfd16 23353 if (legacy_fpu)
c19d1205 23354 {
e74cfd16 23355 if (mfpu_opt)
c19d1205 23356 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
23357
23358 mfpu_opt = legacy_fpu;
23359 }
e74cfd16 23360 else if (!mfpu_opt)
03b1477f 23361 {
45eb4c1b
NS
23362#if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
23363 || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
23364 /* Some environments specify a default FPU. If they don't, infer it
23365 from the processor. */
e74cfd16 23366 if (mcpu_fpu_opt)
03b1477f
RE
23367 mfpu_opt = mcpu_fpu_opt;
23368 else
23369 mfpu_opt = march_fpu_opt;
39c2da32 23370#else
e74cfd16 23371 mfpu_opt = &fpu_default;
39c2da32 23372#endif
03b1477f
RE
23373 }
23374
e74cfd16 23375 if (!mfpu_opt)
03b1477f 23376 {
493cb6ef 23377 if (mcpu_cpu_opt != NULL)
e74cfd16 23378 mfpu_opt = &fpu_default;
493cb6ef 23379 else if (mcpu_fpu_opt != NULL && ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
e74cfd16 23380 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 23381 else
e74cfd16 23382 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
23383 }
23384
ee065d83 23385#ifdef CPU_DEFAULT
e74cfd16 23386 if (!mcpu_cpu_opt)
ee065d83 23387 {
e74cfd16
PB
23388 mcpu_cpu_opt = &cpu_default;
23389 selected_cpu = cpu_default;
ee065d83 23390 }
e74cfd16
PB
23391#else
23392 if (mcpu_cpu_opt)
23393 selected_cpu = *mcpu_cpu_opt;
ee065d83 23394 else
e74cfd16 23395 mcpu_cpu_opt = &arm_arch_any;
ee065d83 23396#endif
03b1477f 23397
e74cfd16 23398 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
03b1477f 23399
3e9e4fcf
JB
23400 autoselect_thumb_from_cpu_variant ();
23401
e74cfd16 23402 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 23403
f17c130b 23404#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 23405 {
7cc69913
NC
23406 unsigned int flags = 0;
23407
23408#if defined OBJ_ELF
23409 flags = meabi_flags;
d507cf36
PB
23410
23411 switch (meabi_flags)
33a392fb 23412 {
d507cf36 23413 case EF_ARM_EABI_UNKNOWN:
7cc69913 23414#endif
d507cf36
PB
23415 /* Set the flags in the private structure. */
23416 if (uses_apcs_26) flags |= F_APCS26;
23417 if (support_interwork) flags |= F_INTERWORK;
23418 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 23419 if (pic_code) flags |= F_PIC;
e74cfd16 23420 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
23421 flags |= F_SOFT_FLOAT;
23422
d507cf36
PB
23423 switch (mfloat_abi_opt)
23424 {
23425 case ARM_FLOAT_ABI_SOFT:
23426 case ARM_FLOAT_ABI_SOFTFP:
23427 flags |= F_SOFT_FLOAT;
23428 break;
33a392fb 23429
d507cf36
PB
23430 case ARM_FLOAT_ABI_HARD:
23431 if (flags & F_SOFT_FLOAT)
23432 as_bad (_("hard-float conflicts with specified fpu"));
23433 break;
23434 }
03b1477f 23435
e74cfd16
PB
23436 /* Using pure-endian doubles (even if soft-float). */
23437 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 23438 flags |= F_VFP_FLOAT;
f17c130b 23439
fde78edd 23440#if defined OBJ_ELF
e74cfd16 23441 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 23442 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
23443 break;
23444
8cb51566 23445 case EF_ARM_EABI_VER4:
3a4a14e9 23446 case EF_ARM_EABI_VER5:
c19d1205 23447 /* No additional flags to set. */
d507cf36
PB
23448 break;
23449
23450 default:
23451 abort ();
23452 }
7cc69913 23453#endif
b99bd4ef
NC
23454 bfd_set_private_flags (stdoutput, flags);
23455
23456 /* We have run out flags in the COFF header to encode the
23457 status of ATPCS support, so instead we create a dummy,
c19d1205 23458 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
23459 if (atpcs)
23460 {
23461 asection * sec;
23462
23463 sec = bfd_make_section (stdoutput, ".arm.atpcs");
23464
23465 if (sec != NULL)
23466 {
23467 bfd_set_section_flags
23468 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
23469 bfd_set_section_size (stdoutput, sec, 0);
23470 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
23471 }
23472 }
7cc69913 23473 }
f17c130b 23474#endif
b99bd4ef
NC
23475
23476 /* Record the CPU type as well. */
2d447fca
JM
23477 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
23478 mach = bfd_mach_arm_iWMMXt2;
23479 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 23480 mach = bfd_mach_arm_iWMMXt;
e74cfd16 23481 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 23482 mach = bfd_mach_arm_XScale;
e74cfd16 23483 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 23484 mach = bfd_mach_arm_ep9312;
e74cfd16 23485 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 23486 mach = bfd_mach_arm_5TE;
e74cfd16 23487 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 23488 {
e74cfd16 23489 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
23490 mach = bfd_mach_arm_5T;
23491 else
23492 mach = bfd_mach_arm_5;
23493 }
e74cfd16 23494 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 23495 {
e74cfd16 23496 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
23497 mach = bfd_mach_arm_4T;
23498 else
23499 mach = bfd_mach_arm_4;
23500 }
e74cfd16 23501 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 23502 mach = bfd_mach_arm_3M;
e74cfd16
PB
23503 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
23504 mach = bfd_mach_arm_3;
23505 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
23506 mach = bfd_mach_arm_2a;
23507 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
23508 mach = bfd_mach_arm_2;
23509 else
23510 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
23511
23512 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
23513}
23514
c19d1205 23515/* Command line processing. */
b99bd4ef 23516
c19d1205
ZW
23517/* md_parse_option
23518 Invocation line includes a switch not recognized by the base assembler.
23519 See if it's a processor-specific option.
b99bd4ef 23520
c19d1205
ZW
23521 This routine is somewhat complicated by the need for backwards
23522 compatibility (since older releases of gcc can't be changed).
23523 The new options try to make the interface as compatible as
23524 possible with GCC.
b99bd4ef 23525
c19d1205 23526 New options (supported) are:
b99bd4ef 23527
c19d1205
ZW
23528 -mcpu=<cpu name> Assemble for selected processor
23529 -march=<architecture name> Assemble for selected architecture
23530 -mfpu=<fpu architecture> Assemble for selected FPU.
23531 -EB/-mbig-endian Big-endian
23532 -EL/-mlittle-endian Little-endian
23533 -k Generate PIC code
23534 -mthumb Start in Thumb mode
23535 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 23536
278df34e 23537 -m[no-]warn-deprecated Warn about deprecated features
267bf995 23538
c19d1205 23539 For now we will also provide support for:
b99bd4ef 23540
c19d1205
ZW
23541 -mapcs-32 32-bit Program counter
23542 -mapcs-26 26-bit Program counter
23543 -macps-float Floats passed in FP registers
23544 -mapcs-reentrant Reentrant code
23545 -matpcs
23546 (sometime these will probably be replaced with -mapcs=<list of options>
23547 and -matpcs=<list of options>)
b99bd4ef 23548
c19d1205
ZW
23549 The remaining options are only supported for back-wards compatibility.
23550 Cpu variants, the arm part is optional:
23551 -m[arm]1 Currently not supported.
23552 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
23553 -m[arm]3 Arm 3 processor
23554 -m[arm]6[xx], Arm 6 processors
23555 -m[arm]7[xx][t][[d]m] Arm 7 processors
23556 -m[arm]8[10] Arm 8 processors
23557 -m[arm]9[20][tdmi] Arm 9 processors
23558 -mstrongarm[110[0]] StrongARM processors
23559 -mxscale XScale processors
23560 -m[arm]v[2345[t[e]]] Arm architectures
23561 -mall All (except the ARM1)
23562 FP variants:
23563 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
23564 -mfpe-old (No float load/store multiples)
23565 -mvfpxd VFP Single precision
23566 -mvfp All VFP
23567 -mno-fpu Disable all floating point instructions
b99bd4ef 23568
c19d1205
ZW
23569 The following CPU names are recognized:
23570 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
23571 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
23572 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
23573 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
23574 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
23575 arm10t arm10e, arm1020t, arm1020e, arm10200e,
23576 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 23577
c19d1205 23578 */
b99bd4ef 23579
c19d1205 23580const char * md_shortopts = "m:k";
b99bd4ef 23581
c19d1205
ZW
23582#ifdef ARM_BI_ENDIAN
23583#define OPTION_EB (OPTION_MD_BASE + 0)
23584#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 23585#else
c19d1205
ZW
23586#if TARGET_BYTES_BIG_ENDIAN
23587#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 23588#else
c19d1205
ZW
23589#define OPTION_EL (OPTION_MD_BASE + 1)
23590#endif
b99bd4ef 23591#endif
845b51d6 23592#define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
b99bd4ef 23593
c19d1205 23594struct option md_longopts[] =
b99bd4ef 23595{
c19d1205
ZW
23596#ifdef OPTION_EB
23597 {"EB", no_argument, NULL, OPTION_EB},
23598#endif
23599#ifdef OPTION_EL
23600 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 23601#endif
845b51d6 23602 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
c19d1205
ZW
23603 {NULL, no_argument, NULL, 0}
23604};
b99bd4ef 23605
c19d1205 23606size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 23607
c19d1205 23608struct arm_option_table
b99bd4ef 23609{
c19d1205
ZW
23610 char *option; /* Option name to match. */
23611 char *help; /* Help information. */
23612 int *var; /* Variable to change. */
23613 int value; /* What to change it to. */
23614 char *deprecated; /* If non-null, print this message. */
23615};
b99bd4ef 23616
c19d1205
ZW
23617struct arm_option_table arm_opts[] =
23618{
23619 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
23620 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
23621 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
23622 &support_interwork, 1, NULL},
23623 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
23624 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
23625 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
23626 1, NULL},
23627 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
23628 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
23629 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
23630 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
23631 NULL},
b99bd4ef 23632
c19d1205
ZW
23633 /* These are recognized by the assembler, but have no affect on code. */
23634 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
23635 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
278df34e
NS
23636
23637 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
23638 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
23639 &warn_on_deprecated, 0, NULL},
e74cfd16
PB
23640 {NULL, NULL, NULL, 0, NULL}
23641};
23642
23643struct arm_legacy_option_table
23644{
23645 char *option; /* Option name to match. */
23646 const arm_feature_set **var; /* Variable to change. */
23647 const arm_feature_set value; /* What to change it to. */
23648 char *deprecated; /* If non-null, print this message. */
23649};
b99bd4ef 23650
e74cfd16
PB
23651const struct arm_legacy_option_table arm_legacy_opts[] =
23652{
c19d1205
ZW
23653 /* DON'T add any new processors to this list -- we want the whole list
23654 to go away... Add them to the processors table instead. */
e74cfd16
PB
23655 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
23656 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
23657 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
23658 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
23659 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
23660 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
23661 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
23662 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
23663 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
23664 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
23665 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
23666 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
23667 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
23668 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
23669 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
23670 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
23671 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
23672 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
23673 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
23674 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
23675 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
23676 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
23677 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
23678 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
23679 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
23680 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
23681 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
23682 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
23683 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
23684 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
23685 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
23686 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
23687 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
23688 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
23689 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
23690 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
23691 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
23692 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
23693 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
23694 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
23695 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
23696 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
23697 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
23698 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
23699 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
23700 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
23701 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23702 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23703 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23704 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23705 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
23706 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
23707 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
23708 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
23709 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
23710 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
23711 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
23712 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
23713 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
23714 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
23715 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
23716 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
23717 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
23718 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
23719 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
23720 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
23721 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
23722 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
23723 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
23724 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23725 N_("use -mcpu=strongarm110")},
e74cfd16 23726 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23727 N_("use -mcpu=strongarm1100")},
e74cfd16 23728 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23729 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
23730 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
23731 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
23732 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 23733
c19d1205 23734 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
23735 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
23736 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
23737 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
23738 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
23739 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
23740 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
23741 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
23742 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
23743 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
23744 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
23745 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
23746 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
23747 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
23748 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
23749 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
23750 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
23751 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
23752 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 23753
c19d1205 23754 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
23755 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
23756 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
23757 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
23758 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 23759 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 23760
e74cfd16 23761 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 23762};
7ed4c4c5 23763
c19d1205 23764struct arm_cpu_option_table
7ed4c4c5 23765{
c19d1205 23766 char *name;
f3bad469 23767 size_t name_len;
e74cfd16 23768 const arm_feature_set value;
c19d1205
ZW
23769 /* For some CPUs we assume an FPU unless the user explicitly sets
23770 -mfpu=... */
e74cfd16 23771 const arm_feature_set default_fpu;
ee065d83
PB
23772 /* The canonical name of the CPU, or NULL to use NAME converted to upper
23773 case. */
23774 const char *canonical_name;
c19d1205 23775};
7ed4c4c5 23776
c19d1205
ZW
23777/* This list should, at a minimum, contain all the cpu names
23778 recognized by GCC. */
f3bad469 23779#define ARM_CPU_OPT(N, V, DF, CN) { N, sizeof (N) - 1, V, DF, CN }
e74cfd16 23780static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 23781{
f3bad469
MGD
23782 ARM_CPU_OPT ("all", ARM_ANY, FPU_ARCH_FPA, NULL),
23783 ARM_CPU_OPT ("arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL),
23784 ARM_CPU_OPT ("arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL),
23785 ARM_CPU_OPT ("arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
23786 ARM_CPU_OPT ("arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
23787 ARM_CPU_OPT ("arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23788 ARM_CPU_OPT ("arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23789 ARM_CPU_OPT ("arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23790 ARM_CPU_OPT ("arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23791 ARM_CPU_OPT ("arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23792 ARM_CPU_OPT ("arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23793 ARM_CPU_OPT ("arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23794 ARM_CPU_OPT ("arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23795 ARM_CPU_OPT ("arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23796 ARM_CPU_OPT ("arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23797 ARM_CPU_OPT ("arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23798 ARM_CPU_OPT ("arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23799 ARM_CPU_OPT ("arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23800 ARM_CPU_OPT ("arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23801 ARM_CPU_OPT ("arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23802 ARM_CPU_OPT ("arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23803 ARM_CPU_OPT ("arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23804 ARM_CPU_OPT ("arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23805 ARM_CPU_OPT ("arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23806 ARM_CPU_OPT ("arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23807 ARM_CPU_OPT ("arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23808 ARM_CPU_OPT ("arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23809 ARM_CPU_OPT ("arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23810 ARM_CPU_OPT ("arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23811 ARM_CPU_OPT ("arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23812 ARM_CPU_OPT ("arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23813 ARM_CPU_OPT ("arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23814 ARM_CPU_OPT ("arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23815 ARM_CPU_OPT ("strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23816 ARM_CPU_OPT ("strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23817 ARM_CPU_OPT ("strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23818 ARM_CPU_OPT ("strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23819 ARM_CPU_OPT ("strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23820 ARM_CPU_OPT ("arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23821 ARM_CPU_OPT ("arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"),
23822 ARM_CPU_OPT ("arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23823 ARM_CPU_OPT ("arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23824 ARM_CPU_OPT ("arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23825 ARM_CPU_OPT ("arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23826 ARM_CPU_OPT ("fa526", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23827 ARM_CPU_OPT ("fa626", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
c19d1205
ZW
23828 /* For V5 or later processors we default to using VFP; but the user
23829 should really set the FPU type explicitly. */
f3bad469
MGD
23830 ARM_CPU_OPT ("arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23831 ARM_CPU_OPT ("arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23832 ARM_CPU_OPT ("arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23833 ARM_CPU_OPT ("arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23834 ARM_CPU_OPT ("arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23835 ARM_CPU_OPT ("arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23836 ARM_CPU_OPT ("arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"),
23837 ARM_CPU_OPT ("arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23838 ARM_CPU_OPT ("arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23839 ARM_CPU_OPT ("arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"),
23840 ARM_CPU_OPT ("arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23841 ARM_CPU_OPT ("arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23842 ARM_CPU_OPT ("arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23843 ARM_CPU_OPT ("arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23844 ARM_CPU_OPT ("arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23845 ARM_CPU_OPT ("arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"),
23846 ARM_CPU_OPT ("arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23847 ARM_CPU_OPT ("arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23848 ARM_CPU_OPT ("arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23849 ARM_CPU_OPT ("arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2,
23850 "ARM1026EJ-S"),
23851 ARM_CPU_OPT ("arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23852 ARM_CPU_OPT ("fa606te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23853 ARM_CPU_OPT ("fa616te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23854 ARM_CPU_OPT ("fa626te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23855 ARM_CPU_OPT ("fmp626", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23856 ARM_CPU_OPT ("fa726te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23857 ARM_CPU_OPT ("arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"),
23858 ARM_CPU_OPT ("arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL),
23859 ARM_CPU_OPT ("arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2,
23860 "ARM1136JF-S"),
23861 ARM_CPU_OPT ("arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL),
23862 ARM_CPU_OPT ("mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, "MPCore"),
23863 ARM_CPU_OPT ("mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, "MPCore"),
23864 ARM_CPU_OPT ("arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL),
23865 ARM_CPU_OPT ("arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL),
23866 ARM_CPU_OPT ("arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL),
23867 ARM_CPU_OPT ("arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL),
23868 ARM_CPU_OPT ("cortex-a5", ARM_ARCH_V7A_MP_SEC,
23869 FPU_NONE, "Cortex-A5"),
23870 ARM_CPU_OPT ("cortex-a7", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23871 FPU_ARCH_NEON_VFP_V4,
23872 "Cortex-A7"),
23873 ARM_CPU_OPT ("cortex-a8", ARM_ARCH_V7A_SEC,
23874 ARM_FEATURE (0, FPU_VFP_V3
5287ad62 23875 | FPU_NEON_EXT_V1),
f3bad469
MGD
23876 "Cortex-A8"),
23877 ARM_CPU_OPT ("cortex-a9", ARM_ARCH_V7A_MP_SEC,
23878 ARM_FEATURE (0, FPU_VFP_V3
15290f0a 23879 | FPU_NEON_EXT_V1),
f3bad469
MGD
23880 "Cortex-A9"),
23881 ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23882 FPU_ARCH_NEON_VFP_V4,
23883 "Cortex-A15"),
23884 ARM_CPU_OPT ("cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"),
23885 ARM_CPU_OPT ("cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16,
23886 "Cortex-R4F"),
23887 ARM_CPU_OPT ("cortex-r5", ARM_ARCH_V7R_IDIV,
23888 FPU_NONE, "Cortex-R5"),
23889 ARM_CPU_OPT ("cortex-m4", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M4"),
23890 ARM_CPU_OPT ("cortex-m3", ARM_ARCH_V7M, FPU_NONE, "Cortex-M3"),
23891 ARM_CPU_OPT ("cortex-m1", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M1"),
23892 ARM_CPU_OPT ("cortex-m0", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0"),
ce32bd10 23893 ARM_CPU_OPT ("cortex-m0plus", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0+"),
c19d1205 23894 /* ??? XSCALE is really an architecture. */
f3bad469 23895 ARM_CPU_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 23896 /* ??? iwmmxt is not a processor. */
f3bad469
MGD
23897 ARM_CPU_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL),
23898 ARM_CPU_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP_V2, NULL),
23899 ARM_CPU_OPT ("i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 23900 /* Maverick */
f3bad469
MGD
23901 ARM_CPU_OPT ("ep9312", ARM_FEATURE (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
23902 FPU_ARCH_MAVERICK,
23903 "ARM920T"),
23904 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
c19d1205 23905};
f3bad469 23906#undef ARM_CPU_OPT
7ed4c4c5 23907
c19d1205 23908struct arm_arch_option_table
7ed4c4c5 23909{
c19d1205 23910 char *name;
f3bad469 23911 size_t name_len;
e74cfd16
PB
23912 const arm_feature_set value;
23913 const arm_feature_set default_fpu;
c19d1205 23914};
7ed4c4c5 23915
c19d1205
ZW
23916/* This list should, at a minimum, contain all the architecture names
23917 recognized by GCC. */
f3bad469 23918#define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF }
e74cfd16 23919static const struct arm_arch_option_table arm_archs[] =
c19d1205 23920{
f3bad469
MGD
23921 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
23922 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
23923 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
23924 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
23925 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
23926 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
23927 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
23928 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
23929 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
23930 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
23931 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
23932 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
23933 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
23934 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
23935 ARM_ARCH_OPT ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP),
23936 ARM_ARCH_OPT ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP),
23937 ARM_ARCH_OPT ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP),
23938 ARM_ARCH_OPT ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP),
23939 ARM_ARCH_OPT ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP),
23940 ARM_ARCH_OPT ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP),
23941 ARM_ARCH_OPT ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP),
23942 ARM_ARCH_OPT ("armv6zk", ARM_ARCH_V6ZK, FPU_ARCH_VFP),
23943 ARM_ARCH_OPT ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP),
23944 ARM_ARCH_OPT ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP),
23945 ARM_ARCH_OPT ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP),
23946 ARM_ARCH_OPT ("armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP),
23947 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
23948 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
23949 ARM_ARCH_OPT ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP),
c450d570
PB
23950 /* The official spelling of the ARMv7 profile variants is the dashed form.
23951 Accept the non-dashed form for compatibility with old toolchains. */
f3bad469
MGD
23952 ARM_ARCH_OPT ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP),
23953 ARM_ARCH_OPT ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP),
23954 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
23955 ARM_ARCH_OPT ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP),
23956 ARM_ARCH_OPT ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP),
23957 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
23958 ARM_ARCH_OPT ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP),
bca38921 23959 ARM_ARCH_OPT ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP),
f3bad469
MGD
23960 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
23961 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
23962 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP),
23963 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
c19d1205 23964};
f3bad469 23965#undef ARM_ARCH_OPT
7ed4c4c5 23966
69133863
MGD
23967/* ISA extensions in the co-processor and main instruction set space. */
23968struct arm_option_extension_value_table
c19d1205
ZW
23969{
23970 char *name;
f3bad469 23971 size_t name_len;
e74cfd16 23972 const arm_feature_set value;
69133863 23973 const arm_feature_set allowed_archs;
c19d1205 23974};
7ed4c4c5 23975
69133863
MGD
23976/* The following table must be in alphabetical order with a NULL last entry.
23977 */
f3bad469 23978#define ARM_EXT_OPT(N, V, AA) { N, sizeof (N) - 1, V, AA }
69133863 23979static const struct arm_option_extension_value_table arm_extensions[] =
c19d1205 23980{
bca38921
MGD
23981 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
23982 ARM_FEATURE (ARM_EXT_V8, 0)),
23983 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8,
23984 ARM_FEATURE (ARM_EXT_V8, 0)),
f3bad469
MGD
23985 ARM_EXT_OPT ("idiv", ARM_FEATURE (ARM_EXT_ADIV | ARM_EXT_DIV, 0),
23986 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
23987 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE (0, ARM_CEXT_IWMMXT), ARM_ANY),
23988 ARM_EXT_OPT ("iwmmxt2",
23989 ARM_FEATURE (0, ARM_CEXT_IWMMXT2), ARM_ANY),
23990 ARM_EXT_OPT ("maverick",
23991 ARM_FEATURE (0, ARM_CEXT_MAVERICK), ARM_ANY),
23992 ARM_EXT_OPT ("mp", ARM_FEATURE (ARM_EXT_MP, 0),
23993 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
bca38921
MGD
23994 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
23995 ARM_FEATURE (ARM_EXT_V8, 0)),
f3bad469
MGD
23996 ARM_EXT_OPT ("os", ARM_FEATURE (ARM_EXT_OS, 0),
23997 ARM_FEATURE (ARM_EXT_V6M, 0)),
23998 ARM_EXT_OPT ("sec", ARM_FEATURE (ARM_EXT_SEC, 0),
23999 ARM_FEATURE (ARM_EXT_V6K | ARM_EXT_V7A, 0)),
24000 ARM_EXT_OPT ("virt", ARM_FEATURE (ARM_EXT_VIRT | ARM_EXT_ADIV
24001 | ARM_EXT_DIV, 0),
24002 ARM_FEATURE (ARM_EXT_V7A, 0)),
24003 ARM_EXT_OPT ("xscale",ARM_FEATURE (0, ARM_CEXT_XSCALE), ARM_ANY),
24004 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
69133863 24005};
f3bad469 24006#undef ARM_EXT_OPT
69133863
MGD
24007
24008/* ISA floating-point and Advanced SIMD extensions. */
24009struct arm_option_fpu_value_table
24010{
24011 char *name;
24012 const arm_feature_set value;
c19d1205 24013};
7ed4c4c5 24014
c19d1205
ZW
24015/* This list should, at a minimum, contain all the fpu names
24016 recognized by GCC. */
69133863 24017static const struct arm_option_fpu_value_table arm_fpus[] =
c19d1205
ZW
24018{
24019 {"softfpa", FPU_NONE},
24020 {"fpe", FPU_ARCH_FPE},
24021 {"fpe2", FPU_ARCH_FPE},
24022 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
24023 {"fpa", FPU_ARCH_FPA},
24024 {"fpa10", FPU_ARCH_FPA},
24025 {"fpa11", FPU_ARCH_FPA},
24026 {"arm7500fe", FPU_ARCH_FPA},
24027 {"softvfp", FPU_ARCH_VFP},
24028 {"softvfp+vfp", FPU_ARCH_VFP_V2},
24029 {"vfp", FPU_ARCH_VFP_V2},
24030 {"vfp9", FPU_ARCH_VFP_V2},
b1cc4aeb 24031 {"vfp3", FPU_ARCH_VFP_V3}, /* For backwards compatbility. */
c19d1205
ZW
24032 {"vfp10", FPU_ARCH_VFP_V2},
24033 {"vfp10-r0", FPU_ARCH_VFP_V1},
24034 {"vfpxd", FPU_ARCH_VFP_V1xD},
b1cc4aeb
PB
24035 {"vfpv2", FPU_ARCH_VFP_V2},
24036 {"vfpv3", FPU_ARCH_VFP_V3},
62f3b8c8 24037 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
b1cc4aeb 24038 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
62f3b8c8
PB
24039 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
24040 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
24041 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
c19d1205
ZW
24042 {"arm1020t", FPU_ARCH_VFP_V1},
24043 {"arm1020e", FPU_ARCH_VFP_V2},
24044 {"arm1136jfs", FPU_ARCH_VFP_V2},
24045 {"arm1136jf-s", FPU_ARCH_VFP_V2},
24046 {"maverick", FPU_ARCH_MAVERICK},
5287ad62 24047 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
8e79c3df 24048 {"neon-fp16", FPU_ARCH_NEON_FP16},
62f3b8c8
PB
24049 {"vfpv4", FPU_ARCH_VFP_V4},
24050 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
ada65aa3 24051 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
62f3b8c8 24052 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
bca38921
MGD
24053 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
24054 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
24055 {"crypto-neon-fp-armv8",
24056 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
e74cfd16
PB
24057 {NULL, ARM_ARCH_NONE}
24058};
24059
24060struct arm_option_value_table
24061{
24062 char *name;
24063 long value;
c19d1205 24064};
7ed4c4c5 24065
e74cfd16 24066static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
24067{
24068 {"hard", ARM_FLOAT_ABI_HARD},
24069 {"softfp", ARM_FLOAT_ABI_SOFTFP},
24070 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 24071 {NULL, 0}
c19d1205 24072};
7ed4c4c5 24073
c19d1205 24074#ifdef OBJ_ELF
3a4a14e9 24075/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 24076static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
24077{
24078 {"gnu", EF_ARM_EABI_UNKNOWN},
24079 {"4", EF_ARM_EABI_VER4},
3a4a14e9 24080 {"5", EF_ARM_EABI_VER5},
e74cfd16 24081 {NULL, 0}
c19d1205
ZW
24082};
24083#endif
7ed4c4c5 24084
c19d1205
ZW
24085struct arm_long_option_table
24086{
24087 char * option; /* Substring to match. */
24088 char * help; /* Help information. */
24089 int (* func) (char * subopt); /* Function to decode sub-option. */
24090 char * deprecated; /* If non-null, print this message. */
24091};
7ed4c4c5 24092
c921be7d 24093static bfd_boolean
f3bad469 24094arm_parse_extension (char *str, const arm_feature_set **opt_p)
7ed4c4c5 24095{
21d799b5
NC
24096 arm_feature_set *ext_set = (arm_feature_set *)
24097 xmalloc (sizeof (arm_feature_set));
e74cfd16 24098
69133863 24099 /* We insist on extensions being specified in alphabetical order, and with
fa94de6b
RM
24100 extensions being added before being removed. We achieve this by having
24101 the global ARM_EXTENSIONS table in alphabetical order, and using the
69133863 24102 ADDING_VALUE variable to indicate whether we are adding an extension (1)
fa94de6b 24103 or removing it (0) and only allowing it to change in the order
69133863
MGD
24104 -1 -> 1 -> 0. */
24105 const struct arm_option_extension_value_table * opt = NULL;
24106 int adding_value = -1;
24107
e74cfd16
PB
24108 /* Copy the feature set, so that we can modify it. */
24109 *ext_set = **opt_p;
24110 *opt_p = ext_set;
24111
c19d1205 24112 while (str != NULL && *str != 0)
7ed4c4c5 24113 {
f3bad469
MGD
24114 char *ext;
24115 size_t len;
7ed4c4c5 24116
c19d1205
ZW
24117 if (*str != '+')
24118 {
24119 as_bad (_("invalid architectural extension"));
c921be7d 24120 return FALSE;
c19d1205 24121 }
7ed4c4c5 24122
c19d1205
ZW
24123 str++;
24124 ext = strchr (str, '+');
7ed4c4c5 24125
c19d1205 24126 if (ext != NULL)
f3bad469 24127 len = ext - str;
c19d1205 24128 else
f3bad469 24129 len = strlen (str);
7ed4c4c5 24130
f3bad469 24131 if (len >= 2 && strncmp (str, "no", 2) == 0)
69133863
MGD
24132 {
24133 if (adding_value != 0)
24134 {
24135 adding_value = 0;
24136 opt = arm_extensions;
24137 }
24138
f3bad469 24139 len -= 2;
69133863
MGD
24140 str += 2;
24141 }
f3bad469 24142 else if (len > 0)
69133863
MGD
24143 {
24144 if (adding_value == -1)
24145 {
24146 adding_value = 1;
24147 opt = arm_extensions;
24148 }
24149 else if (adding_value != 1)
24150 {
24151 as_bad (_("must specify extensions to add before specifying "
24152 "those to remove"));
24153 return FALSE;
24154 }
24155 }
24156
f3bad469 24157 if (len == 0)
c19d1205
ZW
24158 {
24159 as_bad (_("missing architectural extension"));
c921be7d 24160 return FALSE;
c19d1205 24161 }
7ed4c4c5 24162
69133863
MGD
24163 gas_assert (adding_value != -1);
24164 gas_assert (opt != NULL);
24165
24166 /* Scan over the options table trying to find an exact match. */
24167 for (; opt->name != NULL; opt++)
f3bad469 24168 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24169 {
69133863
MGD
24170 /* Check we can apply the extension to this architecture. */
24171 if (!ARM_CPU_HAS_FEATURE (*ext_set, opt->allowed_archs))
24172 {
24173 as_bad (_("extension does not apply to the base architecture"));
24174 return FALSE;
24175 }
24176
24177 /* Add or remove the extension. */
24178 if (adding_value)
24179 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value);
24180 else
24181 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->value);
24182
c19d1205
ZW
24183 break;
24184 }
7ed4c4c5 24185
c19d1205
ZW
24186 if (opt->name == NULL)
24187 {
69133863
MGD
24188 /* Did we fail to find an extension because it wasn't specified in
24189 alphabetical order, or because it does not exist? */
24190
24191 for (opt = arm_extensions; opt->name != NULL; opt++)
f3bad469 24192 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
69133863
MGD
24193 break;
24194
24195 if (opt->name == NULL)
24196 as_bad (_("unknown architectural extension `%s'"), str);
24197 else
24198 as_bad (_("architectural extensions must be specified in "
24199 "alphabetical order"));
24200
c921be7d 24201 return FALSE;
c19d1205 24202 }
69133863
MGD
24203 else
24204 {
24205 /* We should skip the extension we've just matched the next time
24206 round. */
24207 opt++;
24208 }
7ed4c4c5 24209
c19d1205
ZW
24210 str = ext;
24211 };
7ed4c4c5 24212
c921be7d 24213 return TRUE;
c19d1205 24214}
7ed4c4c5 24215
c921be7d 24216static bfd_boolean
f3bad469 24217arm_parse_cpu (char *str)
7ed4c4c5 24218{
f3bad469
MGD
24219 const struct arm_cpu_option_table *opt;
24220 char *ext = strchr (str, '+');
24221 size_t len;
7ed4c4c5 24222
c19d1205 24223 if (ext != NULL)
f3bad469 24224 len = ext - str;
7ed4c4c5 24225 else
f3bad469 24226 len = strlen (str);
7ed4c4c5 24227
f3bad469 24228 if (len == 0)
7ed4c4c5 24229 {
c19d1205 24230 as_bad (_("missing cpu name `%s'"), str);
c921be7d 24231 return FALSE;
7ed4c4c5
NC
24232 }
24233
c19d1205 24234 for (opt = arm_cpus; opt->name != NULL; opt++)
f3bad469 24235 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24236 {
e74cfd16
PB
24237 mcpu_cpu_opt = &opt->value;
24238 mcpu_fpu_opt = &opt->default_fpu;
ee065d83 24239 if (opt->canonical_name)
5f4273c7 24240 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24241 else
24242 {
f3bad469 24243 size_t i;
c921be7d 24244
f3bad469 24245 for (i = 0; i < len; i++)
ee065d83
PB
24246 selected_cpu_name[i] = TOUPPER (opt->name[i]);
24247 selected_cpu_name[i] = 0;
24248 }
7ed4c4c5 24249
c19d1205
ZW
24250 if (ext != NULL)
24251 return arm_parse_extension (ext, &mcpu_cpu_opt);
7ed4c4c5 24252
c921be7d 24253 return TRUE;
c19d1205 24254 }
7ed4c4c5 24255
c19d1205 24256 as_bad (_("unknown cpu `%s'"), str);
c921be7d 24257 return FALSE;
7ed4c4c5
NC
24258}
24259
c921be7d 24260static bfd_boolean
f3bad469 24261arm_parse_arch (char *str)
7ed4c4c5 24262{
e74cfd16 24263 const struct arm_arch_option_table *opt;
c19d1205 24264 char *ext = strchr (str, '+');
f3bad469 24265 size_t len;
7ed4c4c5 24266
c19d1205 24267 if (ext != NULL)
f3bad469 24268 len = ext - str;
7ed4c4c5 24269 else
f3bad469 24270 len = strlen (str);
7ed4c4c5 24271
f3bad469 24272 if (len == 0)
7ed4c4c5 24273 {
c19d1205 24274 as_bad (_("missing architecture name `%s'"), str);
c921be7d 24275 return FALSE;
7ed4c4c5
NC
24276 }
24277
c19d1205 24278 for (opt = arm_archs; opt->name != NULL; opt++)
f3bad469 24279 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24280 {
e74cfd16
PB
24281 march_cpu_opt = &opt->value;
24282 march_fpu_opt = &opt->default_fpu;
5f4273c7 24283 strcpy (selected_cpu_name, opt->name);
7ed4c4c5 24284
c19d1205
ZW
24285 if (ext != NULL)
24286 return arm_parse_extension (ext, &march_cpu_opt);
7ed4c4c5 24287
c921be7d 24288 return TRUE;
c19d1205
ZW
24289 }
24290
24291 as_bad (_("unknown architecture `%s'\n"), str);
c921be7d 24292 return FALSE;
7ed4c4c5 24293}
eb043451 24294
c921be7d 24295static bfd_boolean
c19d1205
ZW
24296arm_parse_fpu (char * str)
24297{
69133863 24298 const struct arm_option_fpu_value_table * opt;
b99bd4ef 24299
c19d1205
ZW
24300 for (opt = arm_fpus; opt->name != NULL; opt++)
24301 if (streq (opt->name, str))
24302 {
e74cfd16 24303 mfpu_opt = &opt->value;
c921be7d 24304 return TRUE;
c19d1205 24305 }
b99bd4ef 24306
c19d1205 24307 as_bad (_("unknown floating point format `%s'\n"), str);
c921be7d 24308 return FALSE;
c19d1205
ZW
24309}
24310
c921be7d 24311static bfd_boolean
c19d1205 24312arm_parse_float_abi (char * str)
b99bd4ef 24313{
e74cfd16 24314 const struct arm_option_value_table * opt;
b99bd4ef 24315
c19d1205
ZW
24316 for (opt = arm_float_abis; opt->name != NULL; opt++)
24317 if (streq (opt->name, str))
24318 {
24319 mfloat_abi_opt = opt->value;
c921be7d 24320 return TRUE;
c19d1205 24321 }
cc8a6dd0 24322
c19d1205 24323 as_bad (_("unknown floating point abi `%s'\n"), str);
c921be7d 24324 return FALSE;
c19d1205 24325}
b99bd4ef 24326
c19d1205 24327#ifdef OBJ_ELF
c921be7d 24328static bfd_boolean
c19d1205
ZW
24329arm_parse_eabi (char * str)
24330{
e74cfd16 24331 const struct arm_option_value_table *opt;
cc8a6dd0 24332
c19d1205
ZW
24333 for (opt = arm_eabis; opt->name != NULL; opt++)
24334 if (streq (opt->name, str))
24335 {
24336 meabi_flags = opt->value;
c921be7d 24337 return TRUE;
c19d1205
ZW
24338 }
24339 as_bad (_("unknown EABI `%s'\n"), str);
c921be7d 24340 return FALSE;
c19d1205
ZW
24341}
24342#endif
cc8a6dd0 24343
c921be7d 24344static bfd_boolean
e07e6e58
NC
24345arm_parse_it_mode (char * str)
24346{
c921be7d 24347 bfd_boolean ret = TRUE;
e07e6e58
NC
24348
24349 if (streq ("arm", str))
24350 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
24351 else if (streq ("thumb", str))
24352 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
24353 else if (streq ("always", str))
24354 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
24355 else if (streq ("never", str))
24356 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
24357 else
24358 {
24359 as_bad (_("unknown implicit IT mode `%s', should be "\
24360 "arm, thumb, always, or never."), str);
c921be7d 24361 ret = FALSE;
e07e6e58
NC
24362 }
24363
24364 return ret;
24365}
24366
c19d1205
ZW
24367struct arm_long_option_table arm_long_opts[] =
24368{
24369 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
24370 arm_parse_cpu, NULL},
24371 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
24372 arm_parse_arch, NULL},
24373 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
24374 arm_parse_fpu, NULL},
24375 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
24376 arm_parse_float_abi, NULL},
24377#ifdef OBJ_ELF
7fac0536 24378 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
c19d1205
ZW
24379 arm_parse_eabi, NULL},
24380#endif
e07e6e58
NC
24381 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
24382 arm_parse_it_mode, NULL},
c19d1205
ZW
24383 {NULL, NULL, 0, NULL}
24384};
cc8a6dd0 24385
c19d1205
ZW
24386int
24387md_parse_option (int c, char * arg)
24388{
24389 struct arm_option_table *opt;
e74cfd16 24390 const struct arm_legacy_option_table *fopt;
c19d1205 24391 struct arm_long_option_table *lopt;
b99bd4ef 24392
c19d1205 24393 switch (c)
b99bd4ef 24394 {
c19d1205
ZW
24395#ifdef OPTION_EB
24396 case OPTION_EB:
24397 target_big_endian = 1;
24398 break;
24399#endif
cc8a6dd0 24400
c19d1205
ZW
24401#ifdef OPTION_EL
24402 case OPTION_EL:
24403 target_big_endian = 0;
24404 break;
24405#endif
b99bd4ef 24406
845b51d6
PB
24407 case OPTION_FIX_V4BX:
24408 fix_v4bx = TRUE;
24409 break;
24410
c19d1205
ZW
24411 case 'a':
24412 /* Listing option. Just ignore these, we don't support additional
24413 ones. */
24414 return 0;
b99bd4ef 24415
c19d1205
ZW
24416 default:
24417 for (opt = arm_opts; opt->option != NULL; opt++)
24418 {
24419 if (c == opt->option[0]
24420 && ((arg == NULL && opt->option[1] == 0)
24421 || streq (arg, opt->option + 1)))
24422 {
c19d1205 24423 /* If the option is deprecated, tell the user. */
278df34e 24424 if (warn_on_deprecated && opt->deprecated != NULL)
c19d1205
ZW
24425 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
24426 arg ? arg : "", _(opt->deprecated));
b99bd4ef 24427
c19d1205
ZW
24428 if (opt->var != NULL)
24429 *opt->var = opt->value;
cc8a6dd0 24430
c19d1205
ZW
24431 return 1;
24432 }
24433 }
b99bd4ef 24434
e74cfd16
PB
24435 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
24436 {
24437 if (c == fopt->option[0]
24438 && ((arg == NULL && fopt->option[1] == 0)
24439 || streq (arg, fopt->option + 1)))
24440 {
e74cfd16 24441 /* If the option is deprecated, tell the user. */
278df34e 24442 if (warn_on_deprecated && fopt->deprecated != NULL)
e74cfd16
PB
24443 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
24444 arg ? arg : "", _(fopt->deprecated));
e74cfd16
PB
24445
24446 if (fopt->var != NULL)
24447 *fopt->var = &fopt->value;
24448
24449 return 1;
24450 }
24451 }
24452
c19d1205
ZW
24453 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
24454 {
24455 /* These options are expected to have an argument. */
24456 if (c == lopt->option[0]
24457 && arg != NULL
24458 && strncmp (arg, lopt->option + 1,
24459 strlen (lopt->option + 1)) == 0)
24460 {
c19d1205 24461 /* If the option is deprecated, tell the user. */
278df34e 24462 if (warn_on_deprecated && lopt->deprecated != NULL)
c19d1205
ZW
24463 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
24464 _(lopt->deprecated));
b99bd4ef 24465
c19d1205
ZW
24466 /* Call the sup-option parser. */
24467 return lopt->func (arg + strlen (lopt->option) - 1);
24468 }
24469 }
a737bd4d 24470
c19d1205
ZW
24471 return 0;
24472 }
a394c00f 24473
c19d1205
ZW
24474 return 1;
24475}
a394c00f 24476
c19d1205
ZW
24477void
24478md_show_usage (FILE * fp)
a394c00f 24479{
c19d1205
ZW
24480 struct arm_option_table *opt;
24481 struct arm_long_option_table *lopt;
a394c00f 24482
c19d1205 24483 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 24484
c19d1205
ZW
24485 for (opt = arm_opts; opt->option != NULL; opt++)
24486 if (opt->help != NULL)
24487 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 24488
c19d1205
ZW
24489 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
24490 if (lopt->help != NULL)
24491 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 24492
c19d1205
ZW
24493#ifdef OPTION_EB
24494 fprintf (fp, _("\
24495 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
24496#endif
24497
c19d1205
ZW
24498#ifdef OPTION_EL
24499 fprintf (fp, _("\
24500 -EL assemble code for a little-endian cpu\n"));
a737bd4d 24501#endif
845b51d6
PB
24502
24503 fprintf (fp, _("\
24504 --fix-v4bx Allow BX in ARMv4 code\n"));
c19d1205 24505}
ee065d83
PB
24506
24507
24508#ifdef OBJ_ELF
62b3e311
PB
24509typedef struct
24510{
24511 int val;
24512 arm_feature_set flags;
24513} cpu_arch_ver_table;
24514
24515/* Mapping from CPU features to EABI CPU arch values. Table must be sorted
24516 least features first. */
24517static const cpu_arch_ver_table cpu_arch_ver[] =
24518{
24519 {1, ARM_ARCH_V4},
24520 {2, ARM_ARCH_V4T},
24521 {3, ARM_ARCH_V5},
ee3c0378 24522 {3, ARM_ARCH_V5T},
62b3e311
PB
24523 {4, ARM_ARCH_V5TE},
24524 {5, ARM_ARCH_V5TEJ},
24525 {6, ARM_ARCH_V6},
7e806470 24526 {9, ARM_ARCH_V6K},
f4c65163 24527 {7, ARM_ARCH_V6Z},
91e22acd 24528 {11, ARM_ARCH_V6M},
b2a5fbdc 24529 {12, ARM_ARCH_V6SM},
7e806470 24530 {8, ARM_ARCH_V6T2},
bca38921 24531 {10, ARM_ARCH_V7A_IDIV_MP_SEC_VIRT},
62b3e311
PB
24532 {10, ARM_ARCH_V7R},
24533 {10, ARM_ARCH_V7M},
bca38921 24534 {14, ARM_ARCH_V8A},
62b3e311
PB
24535 {0, ARM_ARCH_NONE}
24536};
24537
ee3c0378
AS
24538/* Set an attribute if it has not already been set by the user. */
24539static void
24540aeabi_set_attribute_int (int tag, int value)
24541{
24542 if (tag < 1
24543 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
24544 || !attributes_set_explicitly[tag])
24545 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
24546}
24547
24548static void
24549aeabi_set_attribute_string (int tag, const char *value)
24550{
24551 if (tag < 1
24552 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
24553 || !attributes_set_explicitly[tag])
24554 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
24555}
24556
ee065d83
PB
24557/* Set the public EABI object attributes. */
24558static void
24559aeabi_set_public_attributes (void)
24560{
24561 int arch;
69239280 24562 char profile;
90ec0d68 24563 int virt_sec = 0;
bca38921 24564 int fp16_optional = 0;
e74cfd16 24565 arm_feature_set flags;
62b3e311
PB
24566 arm_feature_set tmp;
24567 const cpu_arch_ver_table *p;
ee065d83
PB
24568
24569 /* Choose the architecture based on the capabilities of the requested cpu
24570 (if any) and/or the instructions actually used. */
e74cfd16
PB
24571 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
24572 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
24573 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
ddd7f988
RE
24574
24575 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
24576 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
24577
24578 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
24579 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
24580
24581 /* Allow the user to override the reported architecture. */
7a1d4c38
PB
24582 if (object_arch)
24583 {
24584 ARM_CLEAR_FEATURE (flags, flags, arm_arch_any);
24585 ARM_MERGE_FEATURE_SETS (flags, flags, *object_arch);
24586 }
24587
251665fc
MGD
24588 /* We need to make sure that the attributes do not identify us as v6S-M
24589 when the only v6S-M feature in use is the Operating System Extensions. */
24590 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_os))
24591 if (!ARM_CPU_HAS_FEATURE (flags, arm_arch_v6m_only))
24592 ARM_CLEAR_FEATURE (flags, flags, arm_ext_os);
24593
62b3e311
PB
24594 tmp = flags;
24595 arch = 0;
24596 for (p = cpu_arch_ver; p->val; p++)
24597 {
24598 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
24599 {
24600 arch = p->val;
24601 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
24602 }
24603 }
ee065d83 24604
9e3c6df6
PB
24605 /* The table lookup above finds the last architecture to contribute
24606 a new feature. Unfortunately, Tag13 is a subset of the union of
24607 v6T2 and v7-M, so it is never seen as contributing a new feature.
24608 We can not search for the last entry which is entirely used,
24609 because if no CPU is specified we build up only those flags
24610 actually used. Perhaps we should separate out the specified
24611 and implicit cases. Avoid taking this path for -march=all by
24612 checking for contradictory v7-A / v7-M features. */
24613 if (arch == 10
24614 && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
24615 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m)
24616 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v6_dsp))
24617 arch = 13;
24618
ee065d83
PB
24619 /* Tag_CPU_name. */
24620 if (selected_cpu_name[0])
24621 {
91d6fa6a 24622 char *q;
ee065d83 24623
91d6fa6a
NC
24624 q = selected_cpu_name;
24625 if (strncmp (q, "armv", 4) == 0)
ee065d83
PB
24626 {
24627 int i;
5f4273c7 24628
91d6fa6a
NC
24629 q += 4;
24630 for (i = 0; q[i]; i++)
24631 q[i] = TOUPPER (q[i]);
ee065d83 24632 }
91d6fa6a 24633 aeabi_set_attribute_string (Tag_CPU_name, q);
ee065d83 24634 }
62f3b8c8 24635
ee065d83 24636 /* Tag_CPU_arch. */
ee3c0378 24637 aeabi_set_attribute_int (Tag_CPU_arch, arch);
62f3b8c8 24638
62b3e311
PB
24639 /* Tag_CPU_arch_profile. */
24640 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
69239280 24641 profile = 'A';
62b3e311 24642 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
69239280 24643 profile = 'R';
7e806470 24644 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_m))
69239280
MGD
24645 profile = 'M';
24646 else
24647 profile = '\0';
24648
24649 if (profile != '\0')
24650 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
62f3b8c8 24651
ee065d83 24652 /* Tag_ARM_ISA_use. */
ee3c0378
AS
24653 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
24654 || arch == 0)
24655 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
62f3b8c8 24656
ee065d83 24657 /* Tag_THUMB_ISA_use. */
ee3c0378
AS
24658 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
24659 || arch == 0)
24660 aeabi_set_attribute_int (Tag_THUMB_ISA_use,
24661 ARM_CPU_HAS_FEATURE (flags, arm_arch_t2) ? 2 : 1);
62f3b8c8 24662
ee065d83 24663 /* Tag_VFP_arch. */
bca38921
MGD
24664 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8))
24665 aeabi_set_attribute_int (Tag_VFP_arch, 7);
24666 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
62f3b8c8
PB
24667 aeabi_set_attribute_int (Tag_VFP_arch,
24668 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
24669 ? 5 : 6);
24670 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
bca38921
MGD
24671 {
24672 fp16_optional = 1;
24673 aeabi_set_attribute_int (Tag_VFP_arch, 3);
24674 }
ada65aa3 24675 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
bca38921
MGD
24676 {
24677 aeabi_set_attribute_int (Tag_VFP_arch, 4);
24678 fp16_optional = 1;
24679 }
ee3c0378
AS
24680 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
24681 aeabi_set_attribute_int (Tag_VFP_arch, 2);
24682 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
24683 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
24684 aeabi_set_attribute_int (Tag_VFP_arch, 1);
62f3b8c8 24685
4547cb56
NC
24686 /* Tag_ABI_HardFP_use. */
24687 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
24688 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
24689 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
24690
ee065d83 24691 /* Tag_WMMX_arch. */
ee3c0378
AS
24692 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
24693 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
24694 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
24695 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
62f3b8c8 24696
ee3c0378 24697 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
bca38921
MGD
24698 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
24699 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
24700 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
24701 {
24702 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
24703 {
24704 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
24705 }
24706 else
24707 {
24708 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
24709 fp16_optional = 1;
24710 }
24711 }
fa94de6b 24712
ee3c0378 24713 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
bca38921 24714 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
ee3c0378 24715 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
4547cb56 24716
69239280
MGD
24717 /* Tag_DIV_use.
24718
24719 We set Tag_DIV_use to two when integer divide instructions have been used
24720 in ARM state, or when Thumb integer divide instructions have been used,
24721 but we have no architecture profile set, nor have we any ARM instructions.
24722
bca38921
MGD
24723 For ARMv8 we set the tag to 0 as integer divide is implied by the base
24724 architecture.
24725
69239280 24726 For new architectures we will have to check these tests. */
bca38921
MGD
24727 gas_assert (arch <= TAG_CPU_ARCH_V8);
24728 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8))
24729 aeabi_set_attribute_int (Tag_DIV_use, 0);
24730 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
24731 || (profile == '\0'
24732 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
24733 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
eea54501 24734 aeabi_set_attribute_int (Tag_DIV_use, 2);
60e5ef9f
MGD
24735
24736 /* Tag_MP_extension_use. */
24737 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
24738 aeabi_set_attribute_int (Tag_MPextension_use, 1);
f4c65163
MGD
24739
24740 /* Tag Virtualization_use. */
24741 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
90ec0d68
MGD
24742 virt_sec |= 1;
24743 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
24744 virt_sec |= 2;
24745 if (virt_sec != 0)
24746 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
ee065d83
PB
24747}
24748
104d59d1 24749/* Add the default contents for the .ARM.attributes section. */
ee065d83
PB
24750void
24751arm_md_end (void)
24752{
ee065d83
PB
24753 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
24754 return;
24755
24756 aeabi_set_public_attributes ();
ee065d83 24757}
8463be01 24758#endif /* OBJ_ELF */
ee065d83
PB
24759
24760
24761/* Parse a .cpu directive. */
24762
24763static void
24764s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
24765{
e74cfd16 24766 const struct arm_cpu_option_table *opt;
ee065d83
PB
24767 char *name;
24768 char saved_char;
24769
24770 name = input_line_pointer;
5f4273c7 24771 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24772 input_line_pointer++;
24773 saved_char = *input_line_pointer;
24774 *input_line_pointer = 0;
24775
24776 /* Skip the first "all" entry. */
24777 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
24778 if (streq (opt->name, name))
24779 {
e74cfd16
PB
24780 mcpu_cpu_opt = &opt->value;
24781 selected_cpu = opt->value;
ee065d83 24782 if (opt->canonical_name)
5f4273c7 24783 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24784 else
24785 {
24786 int i;
24787 for (i = 0; opt->name[i]; i++)
24788 selected_cpu_name[i] = TOUPPER (opt->name[i]);
f3bad469 24789
ee065d83
PB
24790 selected_cpu_name[i] = 0;
24791 }
e74cfd16 24792 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24793 *input_line_pointer = saved_char;
24794 demand_empty_rest_of_line ();
24795 return;
24796 }
24797 as_bad (_("unknown cpu `%s'"), name);
24798 *input_line_pointer = saved_char;
24799 ignore_rest_of_line ();
24800}
24801
24802
24803/* Parse a .arch directive. */
24804
24805static void
24806s_arm_arch (int ignored ATTRIBUTE_UNUSED)
24807{
e74cfd16 24808 const struct arm_arch_option_table *opt;
ee065d83
PB
24809 char saved_char;
24810 char *name;
24811
24812 name = input_line_pointer;
5f4273c7 24813 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24814 input_line_pointer++;
24815 saved_char = *input_line_pointer;
24816 *input_line_pointer = 0;
24817
24818 /* Skip the first "all" entry. */
24819 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24820 if (streq (opt->name, name))
24821 {
e74cfd16
PB
24822 mcpu_cpu_opt = &opt->value;
24823 selected_cpu = opt->value;
5f4273c7 24824 strcpy (selected_cpu_name, opt->name);
e74cfd16 24825 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24826 *input_line_pointer = saved_char;
24827 demand_empty_rest_of_line ();
24828 return;
24829 }
24830
24831 as_bad (_("unknown architecture `%s'\n"), name);
24832 *input_line_pointer = saved_char;
24833 ignore_rest_of_line ();
24834}
24835
24836
7a1d4c38
PB
24837/* Parse a .object_arch directive. */
24838
24839static void
24840s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
24841{
24842 const struct arm_arch_option_table *opt;
24843 char saved_char;
24844 char *name;
24845
24846 name = input_line_pointer;
5f4273c7 24847 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
7a1d4c38
PB
24848 input_line_pointer++;
24849 saved_char = *input_line_pointer;
24850 *input_line_pointer = 0;
24851
24852 /* Skip the first "all" entry. */
24853 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24854 if (streq (opt->name, name))
24855 {
24856 object_arch = &opt->value;
24857 *input_line_pointer = saved_char;
24858 demand_empty_rest_of_line ();
24859 return;
24860 }
24861
24862 as_bad (_("unknown architecture `%s'\n"), name);
24863 *input_line_pointer = saved_char;
24864 ignore_rest_of_line ();
24865}
24866
69133863
MGD
24867/* Parse a .arch_extension directive. */
24868
24869static void
24870s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
24871{
24872 const struct arm_option_extension_value_table *opt;
24873 char saved_char;
24874 char *name;
24875 int adding_value = 1;
24876
24877 name = input_line_pointer;
24878 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
24879 input_line_pointer++;
24880 saved_char = *input_line_pointer;
24881 *input_line_pointer = 0;
24882
24883 if (strlen (name) >= 2
24884 && strncmp (name, "no", 2) == 0)
24885 {
24886 adding_value = 0;
24887 name += 2;
24888 }
24889
24890 for (opt = arm_extensions; opt->name != NULL; opt++)
24891 if (streq (opt->name, name))
24892 {
24893 if (!ARM_CPU_HAS_FEATURE (*mcpu_cpu_opt, opt->allowed_archs))
24894 {
24895 as_bad (_("architectural extension `%s' is not allowed for the "
24896 "current base architecture"), name);
24897 break;
24898 }
24899
24900 if (adding_value)
24901 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu, opt->value);
24902 else
24903 ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->value);
24904
24905 mcpu_cpu_opt = &selected_cpu;
24906 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
24907 *input_line_pointer = saved_char;
24908 demand_empty_rest_of_line ();
24909 return;
24910 }
24911
24912 if (opt->name == NULL)
24913 as_bad (_("unknown architecture `%s'\n"), name);
24914
24915 *input_line_pointer = saved_char;
24916 ignore_rest_of_line ();
24917}
24918
ee065d83
PB
24919/* Parse a .fpu directive. */
24920
24921static void
24922s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
24923{
69133863 24924 const struct arm_option_fpu_value_table *opt;
ee065d83
PB
24925 char saved_char;
24926 char *name;
24927
24928 name = input_line_pointer;
5f4273c7 24929 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24930 input_line_pointer++;
24931 saved_char = *input_line_pointer;
24932 *input_line_pointer = 0;
5f4273c7 24933
ee065d83
PB
24934 for (opt = arm_fpus; opt->name != NULL; opt++)
24935 if (streq (opt->name, name))
24936 {
e74cfd16
PB
24937 mfpu_opt = &opt->value;
24938 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24939 *input_line_pointer = saved_char;
24940 demand_empty_rest_of_line ();
24941 return;
24942 }
24943
24944 as_bad (_("unknown floating point format `%s'\n"), name);
24945 *input_line_pointer = saved_char;
24946 ignore_rest_of_line ();
24947}
ee065d83 24948
794ba86a 24949/* Copy symbol information. */
f31fef98 24950
794ba86a
DJ
24951void
24952arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
24953{
24954 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
24955}
e04befd0 24956
f31fef98 24957#ifdef OBJ_ELF
e04befd0
AS
24958/* Given a symbolic attribute NAME, return the proper integer value.
24959 Returns -1 if the attribute is not known. */
f31fef98 24960
e04befd0
AS
24961int
24962arm_convert_symbolic_attribute (const char *name)
24963{
f31fef98
NC
24964 static const struct
24965 {
24966 const char * name;
24967 const int tag;
24968 }
24969 attribute_table[] =
24970 {
24971 /* When you modify this table you should
24972 also modify the list in doc/c-arm.texi. */
e04befd0 24973#define T(tag) {#tag, tag}
f31fef98
NC
24974 T (Tag_CPU_raw_name),
24975 T (Tag_CPU_name),
24976 T (Tag_CPU_arch),
24977 T (Tag_CPU_arch_profile),
24978 T (Tag_ARM_ISA_use),
24979 T (Tag_THUMB_ISA_use),
75375b3e 24980 T (Tag_FP_arch),
f31fef98
NC
24981 T (Tag_VFP_arch),
24982 T (Tag_WMMX_arch),
24983 T (Tag_Advanced_SIMD_arch),
24984 T (Tag_PCS_config),
24985 T (Tag_ABI_PCS_R9_use),
24986 T (Tag_ABI_PCS_RW_data),
24987 T (Tag_ABI_PCS_RO_data),
24988 T (Tag_ABI_PCS_GOT_use),
24989 T (Tag_ABI_PCS_wchar_t),
24990 T (Tag_ABI_FP_rounding),
24991 T (Tag_ABI_FP_denormal),
24992 T (Tag_ABI_FP_exceptions),
24993 T (Tag_ABI_FP_user_exceptions),
24994 T (Tag_ABI_FP_number_model),
75375b3e 24995 T (Tag_ABI_align_needed),
f31fef98 24996 T (Tag_ABI_align8_needed),
75375b3e 24997 T (Tag_ABI_align_preserved),
f31fef98
NC
24998 T (Tag_ABI_align8_preserved),
24999 T (Tag_ABI_enum_size),
25000 T (Tag_ABI_HardFP_use),
25001 T (Tag_ABI_VFP_args),
25002 T (Tag_ABI_WMMX_args),
25003 T (Tag_ABI_optimization_goals),
25004 T (Tag_ABI_FP_optimization_goals),
25005 T (Tag_compatibility),
25006 T (Tag_CPU_unaligned_access),
75375b3e 25007 T (Tag_FP_HP_extension),
f31fef98
NC
25008 T (Tag_VFP_HP_extension),
25009 T (Tag_ABI_FP_16bit_format),
cd21e546
MGD
25010 T (Tag_MPextension_use),
25011 T (Tag_DIV_use),
f31fef98
NC
25012 T (Tag_nodefaults),
25013 T (Tag_also_compatible_with),
25014 T (Tag_conformance),
25015 T (Tag_T2EE_use),
25016 T (Tag_Virtualization_use),
cd21e546 25017 /* We deliberately do not include Tag_MPextension_use_legacy. */
e04befd0 25018#undef T
f31fef98 25019 };
e04befd0
AS
25020 unsigned int i;
25021
25022 if (name == NULL)
25023 return -1;
25024
f31fef98 25025 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
c921be7d 25026 if (streq (name, attribute_table[i].name))
e04befd0
AS
25027 return attribute_table[i].tag;
25028
25029 return -1;
25030}
267bf995
RR
25031
25032
25033/* Apply sym value for relocations only in the case that
25034 they are for local symbols and you have the respective
25035 architectural feature for blx and simple switches. */
25036int
25037arm_apply_sym_value (struct fix * fixP)
25038{
25039 if (fixP->fx_addsy
25040 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
34e77a92 25041 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
267bf995
RR
25042 {
25043 switch (fixP->fx_r_type)
25044 {
25045 case BFD_RELOC_ARM_PCREL_BLX:
25046 case BFD_RELOC_THUMB_PCREL_BRANCH23:
25047 if (ARM_IS_FUNC (fixP->fx_addsy))
25048 return 1;
25049 break;
25050
25051 case BFD_RELOC_ARM_PCREL_CALL:
25052 case BFD_RELOC_THUMB_PCREL_BLX:
25053 if (THUMB_IS_FUNC (fixP->fx_addsy))
25054 return 1;
25055 break;
25056
25057 default:
25058 break;
25059 }
25060
25061 }
25062 return 0;
25063}
f31fef98 25064#endif /* OBJ_ELF */
This page took 2.607232 seconds and 4 git commands to generate.