* lib/ld-lib.exp (run_dump_test): For options "warning" and
[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);
7e806470 198static const arm_feature_set arm_ext_m =
b2a5fbdc 199 ARM_FEATURE (ARM_EXT_V6M | ARM_EXT_OS | ARM_EXT_V7M, 0);
60e5ef9f 200static const arm_feature_set arm_ext_mp = ARM_FEATURE (ARM_EXT_MP, 0);
f4c65163 201static const arm_feature_set arm_ext_sec = ARM_FEATURE (ARM_EXT_SEC, 0);
b2a5fbdc 202static const arm_feature_set arm_ext_os = ARM_FEATURE (ARM_EXT_OS, 0);
eea54501 203static const arm_feature_set arm_ext_adiv = ARM_FEATURE (ARM_EXT_ADIV, 0);
90ec0d68 204static const arm_feature_set arm_ext_virt = ARM_FEATURE (ARM_EXT_VIRT, 0);
e74cfd16
PB
205
206static const arm_feature_set arm_arch_any = ARM_ANY;
207static const arm_feature_set arm_arch_full = ARM_FEATURE (-1, -1);
208static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
209static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
251665fc 210static const arm_feature_set arm_arch_v6m_only = ARM_ARCH_V6M_ONLY;
e74cfd16 211
2d447fca
JM
212static const arm_feature_set arm_cext_iwmmxt2 =
213 ARM_FEATURE (0, ARM_CEXT_IWMMXT2);
e74cfd16
PB
214static const arm_feature_set arm_cext_iwmmxt =
215 ARM_FEATURE (0, ARM_CEXT_IWMMXT);
216static const arm_feature_set arm_cext_xscale =
217 ARM_FEATURE (0, ARM_CEXT_XSCALE);
218static const arm_feature_set arm_cext_maverick =
219 ARM_FEATURE (0, ARM_CEXT_MAVERICK);
220static const arm_feature_set fpu_fpa_ext_v1 = ARM_FEATURE (0, FPU_FPA_EXT_V1);
221static const arm_feature_set fpu_fpa_ext_v2 = ARM_FEATURE (0, FPU_FPA_EXT_V2);
222static const arm_feature_set fpu_vfp_ext_v1xd =
223 ARM_FEATURE (0, FPU_VFP_EXT_V1xD);
224static const arm_feature_set fpu_vfp_ext_v1 = ARM_FEATURE (0, FPU_VFP_EXT_V1);
225static const arm_feature_set fpu_vfp_ext_v2 = ARM_FEATURE (0, FPU_VFP_EXT_V2);
62f3b8c8 226static const arm_feature_set fpu_vfp_ext_v3xd = ARM_FEATURE (0, FPU_VFP_EXT_V3xD);
5287ad62 227static const arm_feature_set fpu_vfp_ext_v3 = ARM_FEATURE (0, FPU_VFP_EXT_V3);
b1cc4aeb
PB
228static const arm_feature_set fpu_vfp_ext_d32 =
229 ARM_FEATURE (0, FPU_VFP_EXT_D32);
5287ad62
JB
230static const arm_feature_set fpu_neon_ext_v1 = ARM_FEATURE (0, FPU_NEON_EXT_V1);
231static const arm_feature_set fpu_vfp_v3_or_neon_ext =
232 ARM_FEATURE (0, FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
62f3b8c8
PB
233static const arm_feature_set fpu_vfp_fp16 = ARM_FEATURE (0, FPU_VFP_EXT_FP16);
234static const arm_feature_set fpu_neon_ext_fma = ARM_FEATURE (0, FPU_NEON_EXT_FMA);
235static const arm_feature_set fpu_vfp_ext_fma = ARM_FEATURE (0, FPU_VFP_EXT_FMA);
e74cfd16 236
33a392fb 237static int mfloat_abi_opt = -1;
e74cfd16
PB
238/* Record user cpu selection for object attributes. */
239static arm_feature_set selected_cpu = ARM_ARCH_NONE;
ee065d83
PB
240/* Must be long enough to hold any of the names in arm_cpus. */
241static char selected_cpu_name[16];
8d67f500
NC
242
243/* Return if no cpu was selected on command-line. */
244static bfd_boolean
245no_cpu_selected (void)
246{
247 return selected_cpu.core == arm_arch_none.core
248 && selected_cpu.coproc == arm_arch_none.coproc;
249}
250
7cc69913 251#ifdef OBJ_ELF
deeaaff8
DJ
252# ifdef EABI_DEFAULT
253static int meabi_flags = EABI_DEFAULT;
254# else
d507cf36 255static int meabi_flags = EF_ARM_EABI_UNKNOWN;
deeaaff8 256# endif
e1da3f5b 257
ee3c0378
AS
258static int attributes_set_explicitly[NUM_KNOWN_OBJ_ATTRIBUTES];
259
e1da3f5b 260bfd_boolean
5f4273c7 261arm_is_eabi (void)
e1da3f5b
PB
262{
263 return (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4);
264}
7cc69913 265#endif
b99bd4ef 266
b99bd4ef 267#ifdef OBJ_ELF
c19d1205 268/* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
b99bd4ef
NC
269symbolS * GOT_symbol;
270#endif
271
b99bd4ef
NC
272/* 0: assemble for ARM,
273 1: assemble for Thumb,
274 2: assemble for Thumb even though target CPU does not support thumb
275 instructions. */
276static int thumb_mode = 0;
8dc2430f
NC
277/* A value distinct from the possible values for thumb_mode that we
278 can use to record whether thumb_mode has been copied into the
279 tc_frag_data field of a frag. */
280#define MODE_RECORDED (1 << 4)
b99bd4ef 281
e07e6e58
NC
282/* Specifies the intrinsic IT insn behavior mode. */
283enum implicit_it_mode
284{
285 IMPLICIT_IT_MODE_NEVER = 0x00,
286 IMPLICIT_IT_MODE_ARM = 0x01,
287 IMPLICIT_IT_MODE_THUMB = 0x02,
288 IMPLICIT_IT_MODE_ALWAYS = (IMPLICIT_IT_MODE_ARM | IMPLICIT_IT_MODE_THUMB)
289};
290static int implicit_it_mode = IMPLICIT_IT_MODE_ARM;
291
c19d1205
ZW
292/* If unified_syntax is true, we are processing the new unified
293 ARM/Thumb syntax. Important differences from the old ARM mode:
294
295 - Immediate operands do not require a # prefix.
296 - Conditional affixes always appear at the end of the
297 instruction. (For backward compatibility, those instructions
298 that formerly had them in the middle, continue to accept them
299 there.)
300 - The IT instruction may appear, and if it does is validated
301 against subsequent conditional affixes. It does not generate
302 machine code.
303
304 Important differences from the old Thumb mode:
305
306 - Immediate operands do not require a # prefix.
307 - Most of the V6T2 instructions are only available in unified mode.
308 - The .N and .W suffixes are recognized and honored (it is an error
309 if they cannot be honored).
310 - All instructions set the flags if and only if they have an 's' affix.
311 - Conditional affixes may be used. They are validated against
312 preceding IT instructions. Unlike ARM mode, you cannot use a
313 conditional affix except in the scope of an IT instruction. */
314
315static bfd_boolean unified_syntax = FALSE;
b99bd4ef 316
5287ad62
JB
317enum neon_el_type
318{
dcbf9037 319 NT_invtype,
5287ad62
JB
320 NT_untyped,
321 NT_integer,
322 NT_float,
323 NT_poly,
324 NT_signed,
dcbf9037 325 NT_unsigned
5287ad62
JB
326};
327
328struct neon_type_el
329{
330 enum neon_el_type type;
331 unsigned size;
332};
333
334#define NEON_MAX_TYPE_ELS 4
335
336struct neon_type
337{
338 struct neon_type_el el[NEON_MAX_TYPE_ELS];
339 unsigned elems;
340};
341
e07e6e58
NC
342enum it_instruction_type
343{
344 OUTSIDE_IT_INSN,
345 INSIDE_IT_INSN,
346 INSIDE_IT_LAST_INSN,
347 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
348 if inside, should be the last one. */
349 NEUTRAL_IT_INSN, /* This could be either inside or outside,
350 i.e. BKPT and NOP. */
351 IT_INSN /* The IT insn has been parsed. */
352};
353
ad6cec43
MGD
354/* The maximum number of operands we need. */
355#define ARM_IT_MAX_OPERANDS 6
356
b99bd4ef
NC
357struct arm_it
358{
c19d1205 359 const char * error;
b99bd4ef 360 unsigned long instruction;
c19d1205
ZW
361 int size;
362 int size_req;
363 int cond;
037e8744
JB
364 /* "uncond_value" is set to the value in place of the conditional field in
365 unconditional versions of the instruction, or -1 if nothing is
366 appropriate. */
367 int uncond_value;
5287ad62 368 struct neon_type vectype;
88714cb8
DG
369 /* This does not indicate an actual NEON instruction, only that
370 the mnemonic accepts neon-style type suffixes. */
371 int is_neon;
0110f2b8
PB
372 /* Set to the opcode if the instruction needs relaxation.
373 Zero if the instruction is not relaxed. */
374 unsigned long relax;
b99bd4ef
NC
375 struct
376 {
377 bfd_reloc_code_real_type type;
c19d1205
ZW
378 expressionS exp;
379 int pc_rel;
b99bd4ef 380 } reloc;
b99bd4ef 381
e07e6e58
NC
382 enum it_instruction_type it_insn_type;
383
c19d1205
ZW
384 struct
385 {
386 unsigned reg;
ca3f61f7 387 signed int imm;
dcbf9037 388 struct neon_type_el vectype;
ca3f61f7
NC
389 unsigned present : 1; /* Operand present. */
390 unsigned isreg : 1; /* Operand was a register. */
391 unsigned immisreg : 1; /* .imm field is a second register. */
5287ad62
JB
392 unsigned isscalar : 1; /* Operand is a (Neon) scalar. */
393 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
c96612cc 394 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
5287ad62
JB
395 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
396 instructions. This allows us to disambiguate ARM <-> vector insns. */
397 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
037e8744 398 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
5287ad62 399 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
037e8744 400 unsigned issingle : 1; /* Operand is VFP single-precision register. */
ca3f61f7
NC
401 unsigned hasreloc : 1; /* Operand has relocation suffix. */
402 unsigned writeback : 1; /* Operand has trailing ! */
403 unsigned preind : 1; /* Preindexed address. */
404 unsigned postind : 1; /* Postindexed address. */
405 unsigned negative : 1; /* Index register was negated. */
406 unsigned shifted : 1; /* Shift applied to operation. */
407 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
ad6cec43 408 } operands[ARM_IT_MAX_OPERANDS];
b99bd4ef
NC
409};
410
c19d1205 411static struct arm_it inst;
b99bd4ef
NC
412
413#define NUM_FLOAT_VALS 8
414
05d2d07e 415const char * fp_const[] =
b99bd4ef
NC
416{
417 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
418};
419
c19d1205 420/* Number of littlenums required to hold an extended precision number. */
b99bd4ef
NC
421#define MAX_LITTLENUMS 6
422
423LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
424
425#define FAIL (-1)
426#define SUCCESS (0)
427
428#define SUFF_S 1
429#define SUFF_D 2
430#define SUFF_E 3
431#define SUFF_P 4
432
c19d1205
ZW
433#define CP_T_X 0x00008000
434#define CP_T_Y 0x00400000
b99bd4ef 435
c19d1205
ZW
436#define CONDS_BIT 0x00100000
437#define LOAD_BIT 0x00100000
b99bd4ef
NC
438
439#define DOUBLE_LOAD_FLAG 0x00000001
440
441struct asm_cond
442{
d3ce72d0 443 const char * template_name;
c921be7d 444 unsigned long value;
b99bd4ef
NC
445};
446
c19d1205 447#define COND_ALWAYS 0xE
b99bd4ef 448
b99bd4ef
NC
449struct asm_psr
450{
d3ce72d0 451 const char * template_name;
c921be7d 452 unsigned long field;
b99bd4ef
NC
453};
454
62b3e311
PB
455struct asm_barrier_opt
456{
d3ce72d0 457 const char * template_name;
c921be7d 458 unsigned long value;
62b3e311
PB
459};
460
2d2255b5 461/* The bit that distinguishes CPSR and SPSR. */
b99bd4ef
NC
462#define SPSR_BIT (1 << 22)
463
c19d1205
ZW
464/* The individual PSR flag bits. */
465#define PSR_c (1 << 16)
466#define PSR_x (1 << 17)
467#define PSR_s (1 << 18)
468#define PSR_f (1 << 19)
b99bd4ef 469
c19d1205 470struct reloc_entry
bfae80f2 471{
c921be7d
NC
472 char * name;
473 bfd_reloc_code_real_type reloc;
bfae80f2
RE
474};
475
5287ad62 476enum vfp_reg_pos
bfae80f2 477{
5287ad62
JB
478 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
479 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
bfae80f2
RE
480};
481
482enum vfp_ldstm_type
483{
484 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
485};
486
dcbf9037
JB
487/* Bits for DEFINED field in neon_typed_alias. */
488#define NTA_HASTYPE 1
489#define NTA_HASINDEX 2
490
491struct neon_typed_alias
492{
c921be7d
NC
493 unsigned char defined;
494 unsigned char index;
495 struct neon_type_el eltype;
dcbf9037
JB
496};
497
c19d1205
ZW
498/* ARM register categories. This includes coprocessor numbers and various
499 architecture extensions' registers. */
500enum arm_reg_type
bfae80f2 501{
c19d1205
ZW
502 REG_TYPE_RN,
503 REG_TYPE_CP,
504 REG_TYPE_CN,
505 REG_TYPE_FN,
506 REG_TYPE_VFS,
507 REG_TYPE_VFD,
5287ad62 508 REG_TYPE_NQ,
037e8744 509 REG_TYPE_VFSD,
5287ad62 510 REG_TYPE_NDQ,
037e8744 511 REG_TYPE_NSDQ,
c19d1205
ZW
512 REG_TYPE_VFC,
513 REG_TYPE_MVF,
514 REG_TYPE_MVD,
515 REG_TYPE_MVFX,
516 REG_TYPE_MVDX,
517 REG_TYPE_MVAX,
518 REG_TYPE_DSPSC,
519 REG_TYPE_MMXWR,
520 REG_TYPE_MMXWC,
521 REG_TYPE_MMXWCG,
522 REG_TYPE_XSCALE,
90ec0d68 523 REG_TYPE_RNB
bfae80f2
RE
524};
525
dcbf9037
JB
526/* Structure for a hash table entry for a register.
527 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
528 information which states whether a vector type or index is specified (for a
529 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
6c43fab6
RE
530struct reg_entry
531{
c921be7d 532 const char * name;
90ec0d68 533 unsigned int number;
c921be7d
NC
534 unsigned char type;
535 unsigned char builtin;
536 struct neon_typed_alias * neon;
6c43fab6
RE
537};
538
c19d1205 539/* Diagnostics used when we don't get a register of the expected type. */
c921be7d 540const char * const reg_expected_msgs[] =
c19d1205
ZW
541{
542 N_("ARM register expected"),
543 N_("bad or missing co-processor number"),
544 N_("co-processor register expected"),
545 N_("FPA register expected"),
546 N_("VFP single precision register expected"),
5287ad62
JB
547 N_("VFP/Neon double precision register expected"),
548 N_("Neon quad precision register expected"),
037e8744 549 N_("VFP single or double precision register expected"),
5287ad62 550 N_("Neon double or quad precision register expected"),
037e8744 551 N_("VFP single, double or Neon quad precision register expected"),
c19d1205
ZW
552 N_("VFP system register expected"),
553 N_("Maverick MVF register expected"),
554 N_("Maverick MVD register expected"),
555 N_("Maverick MVFX register expected"),
556 N_("Maverick MVDX register expected"),
557 N_("Maverick MVAX register expected"),
558 N_("Maverick DSPSC register expected"),
559 N_("iWMMXt data register expected"),
560 N_("iWMMXt control register expected"),
561 N_("iWMMXt scalar register expected"),
562 N_("XScale accumulator register expected"),
6c43fab6
RE
563};
564
c19d1205 565/* Some well known registers that we refer to directly elsewhere. */
bd340a04 566#define REG_R12 12
c19d1205
ZW
567#define REG_SP 13
568#define REG_LR 14
569#define REG_PC 15
404ff6b5 570
b99bd4ef
NC
571/* ARM instructions take 4bytes in the object file, Thumb instructions
572 take 2: */
c19d1205 573#define INSN_SIZE 4
b99bd4ef
NC
574
575struct asm_opcode
576{
577 /* Basic string to match. */
d3ce72d0 578 const char * template_name;
c19d1205
ZW
579
580 /* Parameters to instruction. */
5be8be5d 581 unsigned int operands[8];
c19d1205
ZW
582
583 /* Conditional tag - see opcode_lookup. */
584 unsigned int tag : 4;
b99bd4ef
NC
585
586 /* Basic instruction code. */
c19d1205 587 unsigned int avalue : 28;
b99bd4ef 588
c19d1205
ZW
589 /* Thumb-format instruction code. */
590 unsigned int tvalue;
b99bd4ef 591
90e4755a 592 /* Which architecture variant provides this instruction. */
c921be7d
NC
593 const arm_feature_set * avariant;
594 const arm_feature_set * tvariant;
c19d1205
ZW
595
596 /* Function to call to encode instruction in ARM format. */
597 void (* aencode) (void);
b99bd4ef 598
c19d1205
ZW
599 /* Function to call to encode instruction in Thumb format. */
600 void (* tencode) (void);
b99bd4ef
NC
601};
602
a737bd4d
NC
603/* Defines for various bits that we will want to toggle. */
604#define INST_IMMEDIATE 0x02000000
605#define OFFSET_REG 0x02000000
c19d1205 606#define HWOFFSET_IMM 0x00400000
a737bd4d
NC
607#define SHIFT_BY_REG 0x00000010
608#define PRE_INDEX 0x01000000
609#define INDEX_UP 0x00800000
610#define WRITE_BACK 0x00200000
611#define LDM_TYPE_2_OR_3 0x00400000
a028a6f5 612#define CPSI_MMOD 0x00020000
90e4755a 613
a737bd4d
NC
614#define LITERAL_MASK 0xf000f000
615#define OPCODE_MASK 0xfe1fffff
616#define V4_STR_BIT 0x00000020
90e4755a 617
efd81785
PB
618#define T2_SUBS_PC_LR 0xf3de8f00
619
a737bd4d 620#define DATA_OP_SHIFT 21
90e4755a 621
ef8d22e6
PB
622#define T2_OPCODE_MASK 0xfe1fffff
623#define T2_DATA_OP_SHIFT 21
624
6530b175
NC
625#define A_COND_MASK 0xf0000000
626#define A_PUSH_POP_OP_MASK 0x0fff0000
627
628/* Opcodes for pushing/poping registers to/from the stack. */
629#define A1_OPCODE_PUSH 0x092d0000
630#define A2_OPCODE_PUSH 0x052d0004
631#define A2_OPCODE_POP 0x049d0004
632
a737bd4d
NC
633/* Codes to distinguish the arithmetic instructions. */
634#define OPCODE_AND 0
635#define OPCODE_EOR 1
636#define OPCODE_SUB 2
637#define OPCODE_RSB 3
638#define OPCODE_ADD 4
639#define OPCODE_ADC 5
640#define OPCODE_SBC 6
641#define OPCODE_RSC 7
642#define OPCODE_TST 8
643#define OPCODE_TEQ 9
644#define OPCODE_CMP 10
645#define OPCODE_CMN 11
646#define OPCODE_ORR 12
647#define OPCODE_MOV 13
648#define OPCODE_BIC 14
649#define OPCODE_MVN 15
90e4755a 650
ef8d22e6
PB
651#define T2_OPCODE_AND 0
652#define T2_OPCODE_BIC 1
653#define T2_OPCODE_ORR 2
654#define T2_OPCODE_ORN 3
655#define T2_OPCODE_EOR 4
656#define T2_OPCODE_ADD 8
657#define T2_OPCODE_ADC 10
658#define T2_OPCODE_SBC 11
659#define T2_OPCODE_SUB 13
660#define T2_OPCODE_RSB 14
661
a737bd4d
NC
662#define T_OPCODE_MUL 0x4340
663#define T_OPCODE_TST 0x4200
664#define T_OPCODE_CMN 0x42c0
665#define T_OPCODE_NEG 0x4240
666#define T_OPCODE_MVN 0x43c0
90e4755a 667
a737bd4d
NC
668#define T_OPCODE_ADD_R3 0x1800
669#define T_OPCODE_SUB_R3 0x1a00
670#define T_OPCODE_ADD_HI 0x4400
671#define T_OPCODE_ADD_ST 0xb000
672#define T_OPCODE_SUB_ST 0xb080
673#define T_OPCODE_ADD_SP 0xa800
674#define T_OPCODE_ADD_PC 0xa000
675#define T_OPCODE_ADD_I8 0x3000
676#define T_OPCODE_SUB_I8 0x3800
677#define T_OPCODE_ADD_I3 0x1c00
678#define T_OPCODE_SUB_I3 0x1e00
b99bd4ef 679
a737bd4d
NC
680#define T_OPCODE_ASR_R 0x4100
681#define T_OPCODE_LSL_R 0x4080
c19d1205
ZW
682#define T_OPCODE_LSR_R 0x40c0
683#define T_OPCODE_ROR_R 0x41c0
a737bd4d
NC
684#define T_OPCODE_ASR_I 0x1000
685#define T_OPCODE_LSL_I 0x0000
686#define T_OPCODE_LSR_I 0x0800
b99bd4ef 687
a737bd4d
NC
688#define T_OPCODE_MOV_I8 0x2000
689#define T_OPCODE_CMP_I8 0x2800
690#define T_OPCODE_CMP_LR 0x4280
691#define T_OPCODE_MOV_HR 0x4600
692#define T_OPCODE_CMP_HR 0x4500
b99bd4ef 693
a737bd4d
NC
694#define T_OPCODE_LDR_PC 0x4800
695#define T_OPCODE_LDR_SP 0x9800
696#define T_OPCODE_STR_SP 0x9000
697#define T_OPCODE_LDR_IW 0x6800
698#define T_OPCODE_STR_IW 0x6000
699#define T_OPCODE_LDR_IH 0x8800
700#define T_OPCODE_STR_IH 0x8000
701#define T_OPCODE_LDR_IB 0x7800
702#define T_OPCODE_STR_IB 0x7000
703#define T_OPCODE_LDR_RW 0x5800
704#define T_OPCODE_STR_RW 0x5000
705#define T_OPCODE_LDR_RH 0x5a00
706#define T_OPCODE_STR_RH 0x5200
707#define T_OPCODE_LDR_RB 0x5c00
708#define T_OPCODE_STR_RB 0x5400
c9b604bd 709
a737bd4d
NC
710#define T_OPCODE_PUSH 0xb400
711#define T_OPCODE_POP 0xbc00
b99bd4ef 712
2fc8bdac 713#define T_OPCODE_BRANCH 0xe000
b99bd4ef 714
a737bd4d 715#define THUMB_SIZE 2 /* Size of thumb instruction. */
a737bd4d 716#define THUMB_PP_PC_LR 0x0100
c19d1205 717#define THUMB_LOAD_BIT 0x0800
53365c0d 718#define THUMB2_LOAD_BIT 0x00100000
c19d1205
ZW
719
720#define BAD_ARGS _("bad arguments to instruction")
fdfde340 721#define BAD_SP _("r13 not allowed here")
c19d1205
ZW
722#define BAD_PC _("r15 not allowed here")
723#define BAD_COND _("instruction cannot be conditional")
724#define BAD_OVERLAP _("registers may not be the same")
725#define BAD_HIREG _("lo register required")
726#define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
01cfc07f 727#define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
dfa9f0d5
PB
728#define BAD_BRANCH _("branch must be last instruction in IT block")
729#define BAD_NOT_IT _("instruction not allowed in IT block")
037e8744 730#define BAD_FPU _("selected FPU does not support instruction")
e07e6e58
NC
731#define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
732#define BAD_IT_COND _("incorrect condition in IT block")
733#define BAD_IT_IT _("IT falling in the range of a previous IT block")
921e5f0a 734#define MISSING_FNSTART _("missing .fnstart before unwinding directive")
5be8be5d
DG
735#define BAD_PC_ADDRESSING \
736 _("cannot use register index with PC-relative addressing")
737#define BAD_PC_WRITEBACK \
738 _("cannot use writeback with PC-relative addressing")
08f10d51 739#define BAD_RANGE _("branch out of range")
c19d1205 740
c921be7d
NC
741static struct hash_control * arm_ops_hsh;
742static struct hash_control * arm_cond_hsh;
743static struct hash_control * arm_shift_hsh;
744static struct hash_control * arm_psr_hsh;
745static struct hash_control * arm_v7m_psr_hsh;
746static struct hash_control * arm_reg_hsh;
747static struct hash_control * arm_reloc_hsh;
748static struct hash_control * arm_barrier_opt_hsh;
b99bd4ef 749
b99bd4ef
NC
750/* Stuff needed to resolve the label ambiguity
751 As:
752 ...
753 label: <insn>
754 may differ from:
755 ...
756 label:
5f4273c7 757 <insn> */
b99bd4ef
NC
758
759symbolS * last_label_seen;
b34976b6 760static int label_is_thumb_function_name = FALSE;
e07e6e58 761
3d0c9500
NC
762/* Literal pool structure. Held on a per-section
763 and per-sub-section basis. */
a737bd4d 764
c19d1205 765#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 766typedef struct literal_pool
b99bd4ef 767{
c921be7d
NC
768 expressionS literals [MAX_LITERAL_POOL_SIZE];
769 unsigned int next_free_entry;
770 unsigned int id;
771 symbolS * symbol;
772 segT section;
773 subsegT sub_section;
a8040cf2
NC
774#ifdef OBJ_ELF
775 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
776#endif
c921be7d 777 struct literal_pool * next;
3d0c9500 778} literal_pool;
b99bd4ef 779
3d0c9500
NC
780/* Pointer to a linked list of literal pools. */
781literal_pool * list_of_pools = NULL;
e27ec89e 782
e07e6e58
NC
783#ifdef OBJ_ELF
784# define now_it seg_info (now_seg)->tc_segment_info_data.current_it
785#else
786static struct current_it now_it;
787#endif
788
789static inline int
790now_it_compatible (int cond)
791{
792 return (cond & ~1) == (now_it.cc & ~1);
793}
794
795static inline int
796conditional_insn (void)
797{
798 return inst.cond != COND_ALWAYS;
799}
800
801static int in_it_block (void);
802
803static int handle_it_state (void);
804
805static void force_automatic_it_block_close (void);
806
c921be7d
NC
807static void it_fsm_post_encode (void);
808
e07e6e58
NC
809#define set_it_insn_type(type) \
810 do \
811 { \
812 inst.it_insn_type = type; \
813 if (handle_it_state () == FAIL) \
814 return; \
815 } \
816 while (0)
817
c921be7d
NC
818#define set_it_insn_type_nonvoid(type, failret) \
819 do \
820 { \
821 inst.it_insn_type = type; \
822 if (handle_it_state () == FAIL) \
823 return failret; \
824 } \
825 while(0)
826
e07e6e58
NC
827#define set_it_insn_type_last() \
828 do \
829 { \
830 if (inst.cond == COND_ALWAYS) \
831 set_it_insn_type (IF_INSIDE_IT_LAST_INSN); \
832 else \
833 set_it_insn_type (INSIDE_IT_LAST_INSN); \
834 } \
835 while (0)
836
c19d1205 837/* Pure syntax. */
b99bd4ef 838
c19d1205
ZW
839/* This array holds the chars that always start a comment. If the
840 pre-processor is disabled, these aren't very useful. */
841const char comment_chars[] = "@";
3d0c9500 842
c19d1205
ZW
843/* This array holds the chars that only start a comment at the beginning of
844 a line. If the line seems to have the form '# 123 filename'
845 .line and .file directives will appear in the pre-processed output. */
846/* Note that input_file.c hand checks for '#' at the beginning of the
847 first line of the input file. This is because the compiler outputs
848 #NO_APP at the beginning of its output. */
849/* Also note that comments like this one will always work. */
850const char line_comment_chars[] = "#";
3d0c9500 851
c19d1205 852const char line_separator_chars[] = ";";
b99bd4ef 853
c19d1205
ZW
854/* Chars that can be used to separate mant
855 from exp in floating point numbers. */
856const char EXP_CHARS[] = "eE";
3d0c9500 857
c19d1205
ZW
858/* Chars that mean this number is a floating point constant. */
859/* As in 0f12.456 */
860/* or 0d1.2345e12 */
b99bd4ef 861
c19d1205 862const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 863
c19d1205
ZW
864/* Prefix characters that indicate the start of an immediate
865 value. */
866#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 867
c19d1205
ZW
868/* Separator character handling. */
869
870#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
871
872static inline int
873skip_past_char (char ** str, char c)
874{
875 if (**str == c)
876 {
877 (*str)++;
878 return SUCCESS;
3d0c9500 879 }
c19d1205
ZW
880 else
881 return FAIL;
882}
c921be7d 883
c19d1205 884#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 885
c19d1205
ZW
886/* Arithmetic expressions (possibly involving symbols). */
887
888/* Return TRUE if anything in the expression is a bignum. */
889
890static int
891walk_no_bignums (symbolS * sp)
892{
893 if (symbol_get_value_expression (sp)->X_op == O_big)
894 return 1;
895
896 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 897 {
c19d1205
ZW
898 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
899 || (symbol_get_value_expression (sp)->X_op_symbol
900 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
901 }
902
c19d1205 903 return 0;
3d0c9500
NC
904}
905
c19d1205
ZW
906static int in_my_get_expression = 0;
907
908/* Third argument to my_get_expression. */
909#define GE_NO_PREFIX 0
910#define GE_IMM_PREFIX 1
911#define GE_OPT_PREFIX 2
5287ad62
JB
912/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
913 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
914#define GE_OPT_PREFIX_BIG 3
a737bd4d 915
b99bd4ef 916static int
c19d1205 917my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 918{
c19d1205
ZW
919 char * save_in;
920 segT seg;
b99bd4ef 921
c19d1205
ZW
922 /* In unified syntax, all prefixes are optional. */
923 if (unified_syntax)
5287ad62
JB
924 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
925 : GE_OPT_PREFIX;
b99bd4ef 926
c19d1205 927 switch (prefix_mode)
b99bd4ef 928 {
c19d1205
ZW
929 case GE_NO_PREFIX: break;
930 case GE_IMM_PREFIX:
931 if (!is_immediate_prefix (**str))
932 {
933 inst.error = _("immediate expression requires a # prefix");
934 return FAIL;
935 }
936 (*str)++;
937 break;
938 case GE_OPT_PREFIX:
5287ad62 939 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
940 if (is_immediate_prefix (**str))
941 (*str)++;
942 break;
943 default: abort ();
944 }
b99bd4ef 945
c19d1205 946 memset (ep, 0, sizeof (expressionS));
b99bd4ef 947
c19d1205
ZW
948 save_in = input_line_pointer;
949 input_line_pointer = *str;
950 in_my_get_expression = 1;
951 seg = expression (ep);
952 in_my_get_expression = 0;
953
f86adc07 954 if (ep->X_op == O_illegal || ep->X_op == O_absent)
b99bd4ef 955 {
f86adc07 956 /* We found a bad or missing expression in md_operand(). */
c19d1205
ZW
957 *str = input_line_pointer;
958 input_line_pointer = save_in;
959 if (inst.error == NULL)
f86adc07
NS
960 inst.error = (ep->X_op == O_absent
961 ? _("missing expression") :_("bad expression"));
c19d1205
ZW
962 return 1;
963 }
b99bd4ef 964
c19d1205
ZW
965#ifdef OBJ_AOUT
966 if (seg != absolute_section
967 && seg != text_section
968 && seg != data_section
969 && seg != bss_section
970 && seg != undefined_section)
971 {
972 inst.error = _("bad segment");
973 *str = input_line_pointer;
974 input_line_pointer = save_in;
975 return 1;
b99bd4ef 976 }
87975d2a
AM
977#else
978 (void) seg;
c19d1205 979#endif
b99bd4ef 980
c19d1205
ZW
981 /* Get rid of any bignums now, so that we don't generate an error for which
982 we can't establish a line number later on. Big numbers are never valid
983 in instructions, which is where this routine is always called. */
5287ad62
JB
984 if (prefix_mode != GE_OPT_PREFIX_BIG
985 && (ep->X_op == O_big
986 || (ep->X_add_symbol
987 && (walk_no_bignums (ep->X_add_symbol)
988 || (ep->X_op_symbol
989 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
990 {
991 inst.error = _("invalid constant");
992 *str = input_line_pointer;
993 input_line_pointer = save_in;
994 return 1;
995 }
b99bd4ef 996
c19d1205
ZW
997 *str = input_line_pointer;
998 input_line_pointer = save_in;
999 return 0;
b99bd4ef
NC
1000}
1001
c19d1205
ZW
1002/* Turn a string in input_line_pointer into a floating point constant
1003 of type TYPE, and store the appropriate bytes in *LITP. The number
1004 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1005 returned, or NULL on OK.
b99bd4ef 1006
c19d1205
ZW
1007 Note that fp constants aren't represent in the normal way on the ARM.
1008 In big endian mode, things are as expected. However, in little endian
1009 mode fp constants are big-endian word-wise, and little-endian byte-wise
1010 within the words. For example, (double) 1.1 in big endian mode is
1011 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1012 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 1013
c19d1205 1014 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 1015
c19d1205
ZW
1016char *
1017md_atof (int type, char * litP, int * sizeP)
1018{
1019 int prec;
1020 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1021 char *t;
1022 int i;
b99bd4ef 1023
c19d1205
ZW
1024 switch (type)
1025 {
1026 case 'f':
1027 case 'F':
1028 case 's':
1029 case 'S':
1030 prec = 2;
1031 break;
b99bd4ef 1032
c19d1205
ZW
1033 case 'd':
1034 case 'D':
1035 case 'r':
1036 case 'R':
1037 prec = 4;
1038 break;
b99bd4ef 1039
c19d1205
ZW
1040 case 'x':
1041 case 'X':
499ac353 1042 prec = 5;
c19d1205 1043 break;
b99bd4ef 1044
c19d1205
ZW
1045 case 'p':
1046 case 'P':
499ac353 1047 prec = 5;
c19d1205 1048 break;
a737bd4d 1049
c19d1205
ZW
1050 default:
1051 *sizeP = 0;
499ac353 1052 return _("Unrecognized or unsupported floating point constant");
c19d1205 1053 }
b99bd4ef 1054
c19d1205
ZW
1055 t = atof_ieee (input_line_pointer, type, words);
1056 if (t)
1057 input_line_pointer = t;
499ac353 1058 *sizeP = prec * sizeof (LITTLENUM_TYPE);
b99bd4ef 1059
c19d1205
ZW
1060 if (target_big_endian)
1061 {
1062 for (i = 0; i < prec; i++)
1063 {
499ac353
NC
1064 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1065 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1066 }
1067 }
1068 else
1069 {
e74cfd16 1070 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
1071 for (i = prec - 1; i >= 0; i--)
1072 {
499ac353
NC
1073 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1074 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1075 }
1076 else
1077 /* For a 4 byte float the order of elements in `words' is 1 0.
1078 For an 8 byte float the order is 1 0 3 2. */
1079 for (i = 0; i < prec; i += 2)
1080 {
499ac353
NC
1081 md_number_to_chars (litP, (valueT) words[i + 1],
1082 sizeof (LITTLENUM_TYPE));
1083 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1084 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1085 litP += 2 * sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1086 }
1087 }
b99bd4ef 1088
499ac353 1089 return NULL;
c19d1205 1090}
b99bd4ef 1091
c19d1205
ZW
1092/* We handle all bad expressions here, so that we can report the faulty
1093 instruction in the error message. */
1094void
91d6fa6a 1095md_operand (expressionS * exp)
c19d1205
ZW
1096{
1097 if (in_my_get_expression)
91d6fa6a 1098 exp->X_op = O_illegal;
b99bd4ef
NC
1099}
1100
c19d1205 1101/* Immediate values. */
b99bd4ef 1102
c19d1205
ZW
1103/* Generic immediate-value read function for use in directives.
1104 Accepts anything that 'expression' can fold to a constant.
1105 *val receives the number. */
1106#ifdef OBJ_ELF
1107static int
1108immediate_for_directive (int *val)
b99bd4ef 1109{
c19d1205
ZW
1110 expressionS exp;
1111 exp.X_op = O_illegal;
b99bd4ef 1112
c19d1205
ZW
1113 if (is_immediate_prefix (*input_line_pointer))
1114 {
1115 input_line_pointer++;
1116 expression (&exp);
1117 }
b99bd4ef 1118
c19d1205
ZW
1119 if (exp.X_op != O_constant)
1120 {
1121 as_bad (_("expected #constant"));
1122 ignore_rest_of_line ();
1123 return FAIL;
1124 }
1125 *val = exp.X_add_number;
1126 return SUCCESS;
b99bd4ef 1127}
c19d1205 1128#endif
b99bd4ef 1129
c19d1205 1130/* Register parsing. */
b99bd4ef 1131
c19d1205
ZW
1132/* Generic register parser. CCP points to what should be the
1133 beginning of a register name. If it is indeed a valid register
1134 name, advance CCP over it and return the reg_entry structure;
1135 otherwise return NULL. Does not issue diagnostics. */
1136
1137static struct reg_entry *
1138arm_reg_parse_multi (char **ccp)
b99bd4ef 1139{
c19d1205
ZW
1140 char *start = *ccp;
1141 char *p;
1142 struct reg_entry *reg;
b99bd4ef 1143
c19d1205
ZW
1144#ifdef REGISTER_PREFIX
1145 if (*start != REGISTER_PREFIX)
01cfc07f 1146 return NULL;
c19d1205
ZW
1147 start++;
1148#endif
1149#ifdef OPTIONAL_REGISTER_PREFIX
1150 if (*start == OPTIONAL_REGISTER_PREFIX)
1151 start++;
1152#endif
b99bd4ef 1153
c19d1205
ZW
1154 p = start;
1155 if (!ISALPHA (*p) || !is_name_beginner (*p))
1156 return NULL;
b99bd4ef 1157
c19d1205
ZW
1158 do
1159 p++;
1160 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1161
1162 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1163
1164 if (!reg)
1165 return NULL;
1166
1167 *ccp = p;
1168 return reg;
b99bd4ef
NC
1169}
1170
1171static int
dcbf9037
JB
1172arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
1173 enum arm_reg_type type)
b99bd4ef 1174{
c19d1205
ZW
1175 /* Alternative syntaxes are accepted for a few register classes. */
1176 switch (type)
1177 {
1178 case REG_TYPE_MVF:
1179 case REG_TYPE_MVD:
1180 case REG_TYPE_MVFX:
1181 case REG_TYPE_MVDX:
1182 /* Generic coprocessor register names are allowed for these. */
79134647 1183 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1184 return reg->number;
1185 break;
69b97547 1186
c19d1205
ZW
1187 case REG_TYPE_CP:
1188 /* For backward compatibility, a bare number is valid here. */
1189 {
1190 unsigned long processor = strtoul (start, ccp, 10);
1191 if (*ccp != start && processor <= 15)
1192 return processor;
1193 }
6057a28f 1194
c19d1205
ZW
1195 case REG_TYPE_MMXWC:
1196 /* WC includes WCG. ??? I'm not sure this is true for all
1197 instructions that take WC registers. */
79134647 1198 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1199 return reg->number;
6057a28f 1200 break;
c19d1205 1201
6057a28f 1202 default:
c19d1205 1203 break;
6057a28f
NC
1204 }
1205
dcbf9037
JB
1206 return FAIL;
1207}
1208
1209/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1210 return value is the register number or FAIL. */
1211
1212static int
1213arm_reg_parse (char **ccp, enum arm_reg_type type)
1214{
1215 char *start = *ccp;
1216 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1217 int ret;
1218
1219 /* Do not allow a scalar (reg+index) to parse as a register. */
1220 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1221 return FAIL;
1222
1223 if (reg && reg->type == type)
1224 return reg->number;
1225
1226 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1227 return ret;
1228
c19d1205
ZW
1229 *ccp = start;
1230 return FAIL;
1231}
69b97547 1232
dcbf9037
JB
1233/* Parse a Neon type specifier. *STR should point at the leading '.'
1234 character. Does no verification at this stage that the type fits the opcode
1235 properly. E.g.,
1236
1237 .i32.i32.s16
1238 .s32.f32
1239 .u16
1240
1241 Can all be legally parsed by this function.
1242
1243 Fills in neon_type struct pointer with parsed information, and updates STR
1244 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1245 type, FAIL if not. */
1246
1247static int
1248parse_neon_type (struct neon_type *type, char **str)
1249{
1250 char *ptr = *str;
1251
1252 if (type)
1253 type->elems = 0;
1254
1255 while (type->elems < NEON_MAX_TYPE_ELS)
1256 {
1257 enum neon_el_type thistype = NT_untyped;
1258 unsigned thissize = -1u;
1259
1260 if (*ptr != '.')
1261 break;
1262
1263 ptr++;
1264
1265 /* Just a size without an explicit type. */
1266 if (ISDIGIT (*ptr))
1267 goto parsesize;
1268
1269 switch (TOLOWER (*ptr))
1270 {
1271 case 'i': thistype = NT_integer; break;
1272 case 'f': thistype = NT_float; break;
1273 case 'p': thistype = NT_poly; break;
1274 case 's': thistype = NT_signed; break;
1275 case 'u': thistype = NT_unsigned; break;
037e8744
JB
1276 case 'd':
1277 thistype = NT_float;
1278 thissize = 64;
1279 ptr++;
1280 goto done;
dcbf9037
JB
1281 default:
1282 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1283 return FAIL;
1284 }
1285
1286 ptr++;
1287
1288 /* .f is an abbreviation for .f32. */
1289 if (thistype == NT_float && !ISDIGIT (*ptr))
1290 thissize = 32;
1291 else
1292 {
1293 parsesize:
1294 thissize = strtoul (ptr, &ptr, 10);
1295
1296 if (thissize != 8 && thissize != 16 && thissize != 32
1297 && thissize != 64)
1298 {
1299 as_bad (_("bad size %d in type specifier"), thissize);
1300 return FAIL;
1301 }
1302 }
1303
037e8744 1304 done:
dcbf9037
JB
1305 if (type)
1306 {
1307 type->el[type->elems].type = thistype;
1308 type->el[type->elems].size = thissize;
1309 type->elems++;
1310 }
1311 }
1312
1313 /* Empty/missing type is not a successful parse. */
1314 if (type->elems == 0)
1315 return FAIL;
1316
1317 *str = ptr;
1318
1319 return SUCCESS;
1320}
1321
1322/* Errors may be set multiple times during parsing or bit encoding
1323 (particularly in the Neon bits), but usually the earliest error which is set
1324 will be the most meaningful. Avoid overwriting it with later (cascading)
1325 errors by calling this function. */
1326
1327static void
1328first_error (const char *err)
1329{
1330 if (!inst.error)
1331 inst.error = err;
1332}
1333
1334/* Parse a single type, e.g. ".s32", leading period included. */
1335static int
1336parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1337{
1338 char *str = *ccp;
1339 struct neon_type optype;
1340
1341 if (*str == '.')
1342 {
1343 if (parse_neon_type (&optype, &str) == SUCCESS)
1344 {
1345 if (optype.elems == 1)
1346 *vectype = optype.el[0];
1347 else
1348 {
1349 first_error (_("only one type should be specified for operand"));
1350 return FAIL;
1351 }
1352 }
1353 else
1354 {
1355 first_error (_("vector type expected"));
1356 return FAIL;
1357 }
1358 }
1359 else
1360 return FAIL;
5f4273c7 1361
dcbf9037 1362 *ccp = str;
5f4273c7 1363
dcbf9037
JB
1364 return SUCCESS;
1365}
1366
1367/* Special meanings for indices (which have a range of 0-7), which will fit into
1368 a 4-bit integer. */
1369
1370#define NEON_ALL_LANES 15
1371#define NEON_INTERLEAVE_LANES 14
1372
1373/* Parse either a register or a scalar, with an optional type. Return the
1374 register number, and optionally fill in the actual type of the register
1375 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1376 type/index information in *TYPEINFO. */
1377
1378static int
1379parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
1380 enum arm_reg_type *rtype,
1381 struct neon_typed_alias *typeinfo)
1382{
1383 char *str = *ccp;
1384 struct reg_entry *reg = arm_reg_parse_multi (&str);
1385 struct neon_typed_alias atype;
1386 struct neon_type_el parsetype;
1387
1388 atype.defined = 0;
1389 atype.index = -1;
1390 atype.eltype.type = NT_invtype;
1391 atype.eltype.size = -1;
1392
1393 /* Try alternate syntax for some types of register. Note these are mutually
1394 exclusive with the Neon syntax extensions. */
1395 if (reg == NULL)
1396 {
1397 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1398 if (altreg != FAIL)
1399 *ccp = str;
1400 if (typeinfo)
1401 *typeinfo = atype;
1402 return altreg;
1403 }
1404
037e8744
JB
1405 /* Undo polymorphism when a set of register types may be accepted. */
1406 if ((type == REG_TYPE_NDQ
1407 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1408 || (type == REG_TYPE_VFSD
1409 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1410 || (type == REG_TYPE_NSDQ
1411 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
f512f76f
NC
1412 || reg->type == REG_TYPE_NQ))
1413 || (type == REG_TYPE_MMXWC
1414 && (reg->type == REG_TYPE_MMXWCG)))
21d799b5 1415 type = (enum arm_reg_type) reg->type;
dcbf9037
JB
1416
1417 if (type != reg->type)
1418 return FAIL;
1419
1420 if (reg->neon)
1421 atype = *reg->neon;
5f4273c7 1422
dcbf9037
JB
1423 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1424 {
1425 if ((atype.defined & NTA_HASTYPE) != 0)
1426 {
1427 first_error (_("can't redefine type for operand"));
1428 return FAIL;
1429 }
1430 atype.defined |= NTA_HASTYPE;
1431 atype.eltype = parsetype;
1432 }
5f4273c7 1433
dcbf9037
JB
1434 if (skip_past_char (&str, '[') == SUCCESS)
1435 {
1436 if (type != REG_TYPE_VFD)
1437 {
1438 first_error (_("only D registers may be indexed"));
1439 return FAIL;
1440 }
5f4273c7 1441
dcbf9037
JB
1442 if ((atype.defined & NTA_HASINDEX) != 0)
1443 {
1444 first_error (_("can't change index for operand"));
1445 return FAIL;
1446 }
1447
1448 atype.defined |= NTA_HASINDEX;
1449
1450 if (skip_past_char (&str, ']') == SUCCESS)
1451 atype.index = NEON_ALL_LANES;
1452 else
1453 {
1454 expressionS exp;
1455
1456 my_get_expression (&exp, &str, GE_NO_PREFIX);
1457
1458 if (exp.X_op != O_constant)
1459 {
1460 first_error (_("constant expression required"));
1461 return FAIL;
1462 }
1463
1464 if (skip_past_char (&str, ']') == FAIL)
1465 return FAIL;
1466
1467 atype.index = exp.X_add_number;
1468 }
1469 }
5f4273c7 1470
dcbf9037
JB
1471 if (typeinfo)
1472 *typeinfo = atype;
5f4273c7 1473
dcbf9037
JB
1474 if (rtype)
1475 *rtype = type;
5f4273c7 1476
dcbf9037 1477 *ccp = str;
5f4273c7 1478
dcbf9037
JB
1479 return reg->number;
1480}
1481
1482/* Like arm_reg_parse, but allow allow the following extra features:
1483 - If RTYPE is non-zero, return the (possibly restricted) type of the
1484 register (e.g. Neon double or quad reg when either has been requested).
1485 - If this is a Neon vector type with additional type information, fill
1486 in the struct pointed to by VECTYPE (if non-NULL).
5f4273c7 1487 This function will fault on encountering a scalar. */
dcbf9037
JB
1488
1489static int
1490arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
1491 enum arm_reg_type *rtype, struct neon_type_el *vectype)
1492{
1493 struct neon_typed_alias atype;
1494 char *str = *ccp;
1495 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1496
1497 if (reg == FAIL)
1498 return FAIL;
1499
0855e32b
NS
1500 /* Do not allow regname(... to parse as a register. */
1501 if (*str == '(')
1502 return FAIL;
1503
dcbf9037
JB
1504 /* Do not allow a scalar (reg+index) to parse as a register. */
1505 if ((atype.defined & NTA_HASINDEX) != 0)
1506 {
1507 first_error (_("register operand expected, but got scalar"));
1508 return FAIL;
1509 }
1510
1511 if (vectype)
1512 *vectype = atype.eltype;
1513
1514 *ccp = str;
1515
1516 return reg;
1517}
1518
1519#define NEON_SCALAR_REG(X) ((X) >> 4)
1520#define NEON_SCALAR_INDEX(X) ((X) & 15)
1521
5287ad62
JB
1522/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1523 have enough information to be able to do a good job bounds-checking. So, we
1524 just do easy checks here, and do further checks later. */
1525
1526static int
dcbf9037 1527parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1528{
dcbf9037 1529 int reg;
5287ad62 1530 char *str = *ccp;
dcbf9037 1531 struct neon_typed_alias atype;
5f4273c7 1532
dcbf9037 1533 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5f4273c7 1534
dcbf9037 1535 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62 1536 return FAIL;
5f4273c7 1537
dcbf9037 1538 if (atype.index == NEON_ALL_LANES)
5287ad62 1539 {
dcbf9037 1540 first_error (_("scalar must have an index"));
5287ad62
JB
1541 return FAIL;
1542 }
dcbf9037 1543 else if (atype.index >= 64 / elsize)
5287ad62 1544 {
dcbf9037 1545 first_error (_("scalar index out of range"));
5287ad62
JB
1546 return FAIL;
1547 }
5f4273c7 1548
dcbf9037
JB
1549 if (type)
1550 *type = atype.eltype;
5f4273c7 1551
5287ad62 1552 *ccp = str;
5f4273c7 1553
dcbf9037 1554 return reg * 16 + atype.index;
5287ad62
JB
1555}
1556
c19d1205 1557/* Parse an ARM register list. Returns the bitmask, or FAIL. */
e07e6e58 1558
c19d1205
ZW
1559static long
1560parse_reg_list (char ** strp)
1561{
1562 char * str = * strp;
1563 long range = 0;
1564 int another_range;
a737bd4d 1565
c19d1205
ZW
1566 /* We come back here if we get ranges concatenated by '+' or '|'. */
1567 do
6057a28f 1568 {
c19d1205 1569 another_range = 0;
a737bd4d 1570
c19d1205
ZW
1571 if (*str == '{')
1572 {
1573 int in_range = 0;
1574 int cur_reg = -1;
a737bd4d 1575
c19d1205
ZW
1576 str++;
1577 do
1578 {
1579 int reg;
6057a28f 1580
dcbf9037 1581 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1582 {
dcbf9037 1583 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1584 return FAIL;
1585 }
a737bd4d 1586
c19d1205
ZW
1587 if (in_range)
1588 {
1589 int i;
a737bd4d 1590
c19d1205
ZW
1591 if (reg <= cur_reg)
1592 {
dcbf9037 1593 first_error (_("bad range in register list"));
c19d1205
ZW
1594 return FAIL;
1595 }
40a18ebd 1596
c19d1205
ZW
1597 for (i = cur_reg + 1; i < reg; i++)
1598 {
1599 if (range & (1 << i))
1600 as_tsktsk
1601 (_("Warning: duplicated register (r%d) in register list"),
1602 i);
1603 else
1604 range |= 1 << i;
1605 }
1606 in_range = 0;
1607 }
a737bd4d 1608
c19d1205
ZW
1609 if (range & (1 << reg))
1610 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1611 reg);
1612 else if (reg <= cur_reg)
1613 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1614
c19d1205
ZW
1615 range |= 1 << reg;
1616 cur_reg = reg;
1617 }
1618 while (skip_past_comma (&str) != FAIL
1619 || (in_range = 1, *str++ == '-'));
1620 str--;
a737bd4d 1621
c19d1205
ZW
1622 if (*str++ != '}')
1623 {
dcbf9037 1624 first_error (_("missing `}'"));
c19d1205
ZW
1625 return FAIL;
1626 }
1627 }
1628 else
1629 {
91d6fa6a 1630 expressionS exp;
40a18ebd 1631
91d6fa6a 1632 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
c19d1205 1633 return FAIL;
40a18ebd 1634
91d6fa6a 1635 if (exp.X_op == O_constant)
c19d1205 1636 {
91d6fa6a
NC
1637 if (exp.X_add_number
1638 != (exp.X_add_number & 0x0000ffff))
c19d1205
ZW
1639 {
1640 inst.error = _("invalid register mask");
1641 return FAIL;
1642 }
a737bd4d 1643
91d6fa6a 1644 if ((range & exp.X_add_number) != 0)
c19d1205 1645 {
91d6fa6a 1646 int regno = range & exp.X_add_number;
a737bd4d 1647
c19d1205
ZW
1648 regno &= -regno;
1649 regno = (1 << regno) - 1;
1650 as_tsktsk
1651 (_("Warning: duplicated register (r%d) in register list"),
1652 regno);
1653 }
a737bd4d 1654
91d6fa6a 1655 range |= exp.X_add_number;
c19d1205
ZW
1656 }
1657 else
1658 {
1659 if (inst.reloc.type != 0)
1660 {
1661 inst.error = _("expression too complex");
1662 return FAIL;
1663 }
a737bd4d 1664
91d6fa6a 1665 memcpy (&inst.reloc.exp, &exp, sizeof (expressionS));
c19d1205
ZW
1666 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1667 inst.reloc.pc_rel = 0;
1668 }
1669 }
a737bd4d 1670
c19d1205
ZW
1671 if (*str == '|' || *str == '+')
1672 {
1673 str++;
1674 another_range = 1;
1675 }
a737bd4d 1676 }
c19d1205 1677 while (another_range);
a737bd4d 1678
c19d1205
ZW
1679 *strp = str;
1680 return range;
a737bd4d
NC
1681}
1682
5287ad62
JB
1683/* Types of registers in a list. */
1684
1685enum reg_list_els
1686{
1687 REGLIST_VFP_S,
1688 REGLIST_VFP_D,
1689 REGLIST_NEON_D
1690};
1691
c19d1205
ZW
1692/* Parse a VFP register list. If the string is invalid return FAIL.
1693 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1694 register. Parses registers of type ETYPE.
1695 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1696 - Q registers can be used to specify pairs of D registers
1697 - { } can be omitted from around a singleton register list
1698 FIXME: This is not implemented, as it would require backtracking in
1699 some cases, e.g.:
1700 vtbl.8 d3,d4,d5
1701 This could be done (the meaning isn't really ambiguous), but doesn't
1702 fit in well with the current parsing framework.
dcbf9037
JB
1703 - 32 D registers may be used (also true for VFPv3).
1704 FIXME: Types are ignored in these register lists, which is probably a
1705 bug. */
6057a28f 1706
c19d1205 1707static int
037e8744 1708parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1709{
037e8744 1710 char *str = *ccp;
c19d1205
ZW
1711 int base_reg;
1712 int new_base;
21d799b5 1713 enum arm_reg_type regtype = (enum arm_reg_type) 0;
5287ad62 1714 int max_regs = 0;
c19d1205
ZW
1715 int count = 0;
1716 int warned = 0;
1717 unsigned long mask = 0;
a737bd4d 1718 int i;
6057a28f 1719
037e8744 1720 if (*str != '{')
5287ad62
JB
1721 {
1722 inst.error = _("expecting {");
1723 return FAIL;
1724 }
6057a28f 1725
037e8744 1726 str++;
6057a28f 1727
5287ad62 1728 switch (etype)
c19d1205 1729 {
5287ad62 1730 case REGLIST_VFP_S:
c19d1205
ZW
1731 regtype = REG_TYPE_VFS;
1732 max_regs = 32;
5287ad62 1733 break;
5f4273c7 1734
5287ad62
JB
1735 case REGLIST_VFP_D:
1736 regtype = REG_TYPE_VFD;
b7fc2769 1737 break;
5f4273c7 1738
b7fc2769
JB
1739 case REGLIST_NEON_D:
1740 regtype = REG_TYPE_NDQ;
1741 break;
1742 }
1743
1744 if (etype != REGLIST_VFP_S)
1745 {
b1cc4aeb
PB
1746 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
1747 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
5287ad62
JB
1748 {
1749 max_regs = 32;
1750 if (thumb_mode)
1751 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
b1cc4aeb 1752 fpu_vfp_ext_d32);
5287ad62
JB
1753 else
1754 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
b1cc4aeb 1755 fpu_vfp_ext_d32);
5287ad62
JB
1756 }
1757 else
1758 max_regs = 16;
c19d1205 1759 }
6057a28f 1760
c19d1205 1761 base_reg = max_regs;
a737bd4d 1762
c19d1205
ZW
1763 do
1764 {
5287ad62 1765 int setmask = 1, addregs = 1;
dcbf9037 1766
037e8744 1767 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1768
c19d1205 1769 if (new_base == FAIL)
a737bd4d 1770 {
dcbf9037 1771 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1772 return FAIL;
1773 }
5f4273c7 1774
b7fc2769
JB
1775 if (new_base >= max_regs)
1776 {
1777 first_error (_("register out of range in list"));
1778 return FAIL;
1779 }
5f4273c7 1780
5287ad62
JB
1781 /* Note: a value of 2 * n is returned for the register Q<n>. */
1782 if (regtype == REG_TYPE_NQ)
1783 {
1784 setmask = 3;
1785 addregs = 2;
1786 }
1787
c19d1205
ZW
1788 if (new_base < base_reg)
1789 base_reg = new_base;
a737bd4d 1790
5287ad62 1791 if (mask & (setmask << new_base))
c19d1205 1792 {
dcbf9037 1793 first_error (_("invalid register list"));
c19d1205 1794 return FAIL;
a737bd4d 1795 }
a737bd4d 1796
c19d1205
ZW
1797 if ((mask >> new_base) != 0 && ! warned)
1798 {
1799 as_tsktsk (_("register list not in ascending order"));
1800 warned = 1;
1801 }
0bbf2aa4 1802
5287ad62
JB
1803 mask |= setmask << new_base;
1804 count += addregs;
0bbf2aa4 1805
037e8744 1806 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1807 {
1808 int high_range;
0bbf2aa4 1809
037e8744 1810 str++;
0bbf2aa4 1811
037e8744 1812 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
dcbf9037 1813 == FAIL)
c19d1205
ZW
1814 {
1815 inst.error = gettext (reg_expected_msgs[regtype]);
1816 return FAIL;
1817 }
0bbf2aa4 1818
b7fc2769
JB
1819 if (high_range >= max_regs)
1820 {
1821 first_error (_("register out of range in list"));
1822 return FAIL;
1823 }
1824
5287ad62
JB
1825 if (regtype == REG_TYPE_NQ)
1826 high_range = high_range + 1;
1827
c19d1205
ZW
1828 if (high_range <= new_base)
1829 {
1830 inst.error = _("register range not in ascending order");
1831 return FAIL;
1832 }
0bbf2aa4 1833
5287ad62 1834 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1835 {
5287ad62 1836 if (mask & (setmask << new_base))
0bbf2aa4 1837 {
c19d1205
ZW
1838 inst.error = _("invalid register list");
1839 return FAIL;
0bbf2aa4 1840 }
c19d1205 1841
5287ad62
JB
1842 mask |= setmask << new_base;
1843 count += addregs;
0bbf2aa4 1844 }
0bbf2aa4 1845 }
0bbf2aa4 1846 }
037e8744 1847 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1848
037e8744 1849 str++;
0bbf2aa4 1850
c19d1205
ZW
1851 /* Sanity check -- should have raised a parse error above. */
1852 if (count == 0 || count > max_regs)
1853 abort ();
1854
1855 *pbase = base_reg;
1856
1857 /* Final test -- the registers must be consecutive. */
1858 mask >>= base_reg;
1859 for (i = 0; i < count; i++)
1860 {
1861 if ((mask & (1u << i)) == 0)
1862 {
1863 inst.error = _("non-contiguous register range");
1864 return FAIL;
1865 }
1866 }
1867
037e8744
JB
1868 *ccp = str;
1869
c19d1205 1870 return count;
b99bd4ef
NC
1871}
1872
dcbf9037
JB
1873/* True if two alias types are the same. */
1874
c921be7d 1875static bfd_boolean
dcbf9037
JB
1876neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1877{
1878 if (!a && !b)
c921be7d 1879 return TRUE;
5f4273c7 1880
dcbf9037 1881 if (!a || !b)
c921be7d 1882 return FALSE;
dcbf9037
JB
1883
1884 if (a->defined != b->defined)
c921be7d 1885 return FALSE;
5f4273c7 1886
dcbf9037
JB
1887 if ((a->defined & NTA_HASTYPE) != 0
1888 && (a->eltype.type != b->eltype.type
1889 || a->eltype.size != b->eltype.size))
c921be7d 1890 return FALSE;
dcbf9037
JB
1891
1892 if ((a->defined & NTA_HASINDEX) != 0
1893 && (a->index != b->index))
c921be7d 1894 return FALSE;
5f4273c7 1895
c921be7d 1896 return TRUE;
dcbf9037
JB
1897}
1898
5287ad62
JB
1899/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1900 The base register is put in *PBASE.
dcbf9037 1901 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1902 the return value.
1903 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1904 Bits [6:5] encode the list length (minus one).
1905 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1906
5287ad62 1907#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1908#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1909#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1910
1911static int
dcbf9037
JB
1912parse_neon_el_struct_list (char **str, unsigned *pbase,
1913 struct neon_type_el *eltype)
5287ad62
JB
1914{
1915 char *ptr = *str;
1916 int base_reg = -1;
1917 int reg_incr = -1;
1918 int count = 0;
1919 int lane = -1;
1920 int leading_brace = 0;
1921 enum arm_reg_type rtype = REG_TYPE_NDQ;
20203fb9
NC
1922 const char *const incr_error = _("register stride must be 1 or 2");
1923 const char *const type_error = _("mismatched element/structure types in list");
dcbf9037 1924 struct neon_typed_alias firsttype;
5f4273c7 1925
5287ad62
JB
1926 if (skip_past_char (&ptr, '{') == SUCCESS)
1927 leading_brace = 1;
5f4273c7 1928
5287ad62
JB
1929 do
1930 {
dcbf9037
JB
1931 struct neon_typed_alias atype;
1932 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
1933
5287ad62
JB
1934 if (getreg == FAIL)
1935 {
dcbf9037 1936 first_error (_(reg_expected_msgs[rtype]));
5287ad62
JB
1937 return FAIL;
1938 }
5f4273c7 1939
5287ad62
JB
1940 if (base_reg == -1)
1941 {
1942 base_reg = getreg;
1943 if (rtype == REG_TYPE_NQ)
1944 {
1945 reg_incr = 1;
5287ad62 1946 }
dcbf9037 1947 firsttype = atype;
5287ad62
JB
1948 }
1949 else if (reg_incr == -1)
1950 {
1951 reg_incr = getreg - base_reg;
1952 if (reg_incr < 1 || reg_incr > 2)
1953 {
dcbf9037 1954 first_error (_(incr_error));
5287ad62
JB
1955 return FAIL;
1956 }
1957 }
1958 else if (getreg != base_reg + reg_incr * count)
1959 {
dcbf9037
JB
1960 first_error (_(incr_error));
1961 return FAIL;
1962 }
1963
c921be7d 1964 if (! neon_alias_types_same (&atype, &firsttype))
dcbf9037
JB
1965 {
1966 first_error (_(type_error));
5287ad62
JB
1967 return FAIL;
1968 }
5f4273c7 1969
5287ad62
JB
1970 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
1971 modes. */
1972 if (ptr[0] == '-')
1973 {
dcbf9037 1974 struct neon_typed_alias htype;
5287ad62
JB
1975 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
1976 if (lane == -1)
1977 lane = NEON_INTERLEAVE_LANES;
1978 else if (lane != NEON_INTERLEAVE_LANES)
1979 {
dcbf9037 1980 first_error (_(type_error));
5287ad62
JB
1981 return FAIL;
1982 }
1983 if (reg_incr == -1)
1984 reg_incr = 1;
1985 else if (reg_incr != 1)
1986 {
dcbf9037 1987 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
5287ad62
JB
1988 return FAIL;
1989 }
1990 ptr++;
dcbf9037 1991 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
5287ad62
JB
1992 if (hireg == FAIL)
1993 {
dcbf9037
JB
1994 first_error (_(reg_expected_msgs[rtype]));
1995 return FAIL;
1996 }
c921be7d 1997 if (! neon_alias_types_same (&htype, &firsttype))
dcbf9037
JB
1998 {
1999 first_error (_(type_error));
5287ad62
JB
2000 return FAIL;
2001 }
2002 count += hireg + dregs - getreg;
2003 continue;
2004 }
5f4273c7 2005
5287ad62
JB
2006 /* If we're using Q registers, we can't use [] or [n] syntax. */
2007 if (rtype == REG_TYPE_NQ)
2008 {
2009 count += 2;
2010 continue;
2011 }
5f4273c7 2012
dcbf9037 2013 if ((atype.defined & NTA_HASINDEX) != 0)
5287ad62 2014 {
dcbf9037
JB
2015 if (lane == -1)
2016 lane = atype.index;
2017 else if (lane != atype.index)
5287ad62 2018 {
dcbf9037
JB
2019 first_error (_(type_error));
2020 return FAIL;
5287ad62
JB
2021 }
2022 }
2023 else if (lane == -1)
2024 lane = NEON_INTERLEAVE_LANES;
2025 else if (lane != NEON_INTERLEAVE_LANES)
2026 {
dcbf9037 2027 first_error (_(type_error));
5287ad62
JB
2028 return FAIL;
2029 }
2030 count++;
2031 }
2032 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
5f4273c7 2033
5287ad62
JB
2034 /* No lane set by [x]. We must be interleaving structures. */
2035 if (lane == -1)
2036 lane = NEON_INTERLEAVE_LANES;
5f4273c7 2037
5287ad62
JB
2038 /* Sanity check. */
2039 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
2040 || (count > 1 && reg_incr == -1))
2041 {
dcbf9037 2042 first_error (_("error parsing element/structure list"));
5287ad62
JB
2043 return FAIL;
2044 }
2045
2046 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2047 {
dcbf9037 2048 first_error (_("expected }"));
5287ad62
JB
2049 return FAIL;
2050 }
5f4273c7 2051
5287ad62
JB
2052 if (reg_incr == -1)
2053 reg_incr = 1;
2054
dcbf9037
JB
2055 if (eltype)
2056 *eltype = firsttype.eltype;
2057
5287ad62
JB
2058 *pbase = base_reg;
2059 *str = ptr;
5f4273c7 2060
5287ad62
JB
2061 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2062}
2063
c19d1205
ZW
2064/* Parse an explicit relocation suffix on an expression. This is
2065 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2066 arm_reloc_hsh contains no entries, so this function can only
2067 succeed if there is no () after the word. Returns -1 on error,
2068 BFD_RELOC_UNUSED if there wasn't any suffix. */
3da1d841 2069
c19d1205
ZW
2070static int
2071parse_reloc (char **str)
b99bd4ef 2072{
c19d1205
ZW
2073 struct reloc_entry *r;
2074 char *p, *q;
b99bd4ef 2075
c19d1205
ZW
2076 if (**str != '(')
2077 return BFD_RELOC_UNUSED;
b99bd4ef 2078
c19d1205
ZW
2079 p = *str + 1;
2080 q = p;
2081
2082 while (*q && *q != ')' && *q != ',')
2083 q++;
2084 if (*q != ')')
2085 return -1;
2086
21d799b5
NC
2087 if ((r = (struct reloc_entry *)
2088 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
c19d1205
ZW
2089 return -1;
2090
2091 *str = q + 1;
2092 return r->reloc;
b99bd4ef
NC
2093}
2094
c19d1205
ZW
2095/* Directives: register aliases. */
2096
dcbf9037 2097static struct reg_entry *
90ec0d68 2098insert_reg_alias (char *str, unsigned number, int type)
b99bd4ef 2099{
d3ce72d0 2100 struct reg_entry *new_reg;
c19d1205 2101 const char *name;
b99bd4ef 2102
d3ce72d0 2103 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
c19d1205 2104 {
d3ce72d0 2105 if (new_reg->builtin)
c19d1205 2106 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 2107
c19d1205
ZW
2108 /* Only warn about a redefinition if it's not defined as the
2109 same register. */
d3ce72d0 2110 else if (new_reg->number != number || new_reg->type != type)
c19d1205 2111 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 2112
d929913e 2113 return NULL;
c19d1205 2114 }
b99bd4ef 2115
c19d1205 2116 name = xstrdup (str);
d3ce72d0 2117 new_reg = (struct reg_entry *) xmalloc (sizeof (struct reg_entry));
b99bd4ef 2118
d3ce72d0
NC
2119 new_reg->name = name;
2120 new_reg->number = number;
2121 new_reg->type = type;
2122 new_reg->builtin = FALSE;
2123 new_reg->neon = NULL;
b99bd4ef 2124
d3ce72d0 2125 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
c19d1205 2126 abort ();
5f4273c7 2127
d3ce72d0 2128 return new_reg;
dcbf9037
JB
2129}
2130
2131static void
2132insert_neon_reg_alias (char *str, int number, int type,
2133 struct neon_typed_alias *atype)
2134{
2135 struct reg_entry *reg = insert_reg_alias (str, number, type);
5f4273c7 2136
dcbf9037
JB
2137 if (!reg)
2138 {
2139 first_error (_("attempt to redefine typed alias"));
2140 return;
2141 }
5f4273c7 2142
dcbf9037
JB
2143 if (atype)
2144 {
21d799b5
NC
2145 reg->neon = (struct neon_typed_alias *)
2146 xmalloc (sizeof (struct neon_typed_alias));
dcbf9037
JB
2147 *reg->neon = *atype;
2148 }
c19d1205 2149}
b99bd4ef 2150
c19d1205 2151/* Look for the .req directive. This is of the form:
b99bd4ef 2152
c19d1205 2153 new_register_name .req existing_register_name
b99bd4ef 2154
c19d1205 2155 If we find one, or if it looks sufficiently like one that we want to
d929913e 2156 handle any error here, return TRUE. Otherwise return FALSE. */
b99bd4ef 2157
d929913e 2158static bfd_boolean
c19d1205
ZW
2159create_register_alias (char * newname, char *p)
2160{
2161 struct reg_entry *old;
2162 char *oldname, *nbuf;
2163 size_t nlen;
b99bd4ef 2164
c19d1205
ZW
2165 /* The input scrubber ensures that whitespace after the mnemonic is
2166 collapsed to single spaces. */
2167 oldname = p;
2168 if (strncmp (oldname, " .req ", 6) != 0)
d929913e 2169 return FALSE;
b99bd4ef 2170
c19d1205
ZW
2171 oldname += 6;
2172 if (*oldname == '\0')
d929913e 2173 return FALSE;
b99bd4ef 2174
21d799b5 2175 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
c19d1205 2176 if (!old)
b99bd4ef 2177 {
c19d1205 2178 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
d929913e 2179 return TRUE;
b99bd4ef
NC
2180 }
2181
c19d1205
ZW
2182 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2183 the desired alias name, and p points to its end. If not, then
2184 the desired alias name is in the global original_case_string. */
2185#ifdef TC_CASE_SENSITIVE
2186 nlen = p - newname;
2187#else
2188 newname = original_case_string;
2189 nlen = strlen (newname);
2190#endif
b99bd4ef 2191
21d799b5 2192 nbuf = (char *) alloca (nlen + 1);
c19d1205
ZW
2193 memcpy (nbuf, newname, nlen);
2194 nbuf[nlen] = '\0';
b99bd4ef 2195
c19d1205
ZW
2196 /* Create aliases under the new name as stated; an all-lowercase
2197 version of the new name; and an all-uppercase version of the new
2198 name. */
d929913e
NC
2199 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2200 {
2201 for (p = nbuf; *p; p++)
2202 *p = TOUPPER (*p);
c19d1205 2203
d929913e
NC
2204 if (strncmp (nbuf, newname, nlen))
2205 {
2206 /* If this attempt to create an additional alias fails, do not bother
2207 trying to create the all-lower case alias. We will fail and issue
2208 a second, duplicate error message. This situation arises when the
2209 programmer does something like:
2210 foo .req r0
2211 Foo .req r1
2212 The second .req creates the "Foo" alias but then fails to create
5f4273c7 2213 the artificial FOO alias because it has already been created by the
d929913e
NC
2214 first .req. */
2215 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
2216 return TRUE;
2217 }
c19d1205 2218
d929913e
NC
2219 for (p = nbuf; *p; p++)
2220 *p = TOLOWER (*p);
c19d1205 2221
d929913e
NC
2222 if (strncmp (nbuf, newname, nlen))
2223 insert_reg_alias (nbuf, old->number, old->type);
2224 }
c19d1205 2225
d929913e 2226 return TRUE;
b99bd4ef
NC
2227}
2228
dcbf9037
JB
2229/* Create a Neon typed/indexed register alias using directives, e.g.:
2230 X .dn d5.s32[1]
2231 Y .qn 6.s16
2232 Z .dn d7
2233 T .dn Z[0]
2234 These typed registers can be used instead of the types specified after the
2235 Neon mnemonic, so long as all operands given have types. Types can also be
2236 specified directly, e.g.:
5f4273c7 2237 vadd d0.s32, d1.s32, d2.s32 */
dcbf9037 2238
c921be7d 2239static bfd_boolean
dcbf9037
JB
2240create_neon_reg_alias (char *newname, char *p)
2241{
2242 enum arm_reg_type basetype;
2243 struct reg_entry *basereg;
2244 struct reg_entry mybasereg;
2245 struct neon_type ntype;
2246 struct neon_typed_alias typeinfo;
12d6b0b7 2247 char *namebuf, *nameend ATTRIBUTE_UNUSED;
dcbf9037 2248 int namelen;
5f4273c7 2249
dcbf9037
JB
2250 typeinfo.defined = 0;
2251 typeinfo.eltype.type = NT_invtype;
2252 typeinfo.eltype.size = -1;
2253 typeinfo.index = -1;
5f4273c7 2254
dcbf9037 2255 nameend = p;
5f4273c7 2256
dcbf9037
JB
2257 if (strncmp (p, " .dn ", 5) == 0)
2258 basetype = REG_TYPE_VFD;
2259 else if (strncmp (p, " .qn ", 5) == 0)
2260 basetype = REG_TYPE_NQ;
2261 else
c921be7d 2262 return FALSE;
5f4273c7 2263
dcbf9037 2264 p += 5;
5f4273c7 2265
dcbf9037 2266 if (*p == '\0')
c921be7d 2267 return FALSE;
5f4273c7 2268
dcbf9037
JB
2269 basereg = arm_reg_parse_multi (&p);
2270
2271 if (basereg && basereg->type != basetype)
2272 {
2273 as_bad (_("bad type for register"));
c921be7d 2274 return FALSE;
dcbf9037
JB
2275 }
2276
2277 if (basereg == NULL)
2278 {
2279 expressionS exp;
2280 /* Try parsing as an integer. */
2281 my_get_expression (&exp, &p, GE_NO_PREFIX);
2282 if (exp.X_op != O_constant)
2283 {
2284 as_bad (_("expression must be constant"));
c921be7d 2285 return FALSE;
dcbf9037
JB
2286 }
2287 basereg = &mybasereg;
2288 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
2289 : exp.X_add_number;
2290 basereg->neon = 0;
2291 }
2292
2293 if (basereg->neon)
2294 typeinfo = *basereg->neon;
2295
2296 if (parse_neon_type (&ntype, &p) == SUCCESS)
2297 {
2298 /* We got a type. */
2299 if (typeinfo.defined & NTA_HASTYPE)
2300 {
2301 as_bad (_("can't redefine the type of a register alias"));
c921be7d 2302 return FALSE;
dcbf9037 2303 }
5f4273c7 2304
dcbf9037
JB
2305 typeinfo.defined |= NTA_HASTYPE;
2306 if (ntype.elems != 1)
2307 {
2308 as_bad (_("you must specify a single type only"));
c921be7d 2309 return FALSE;
dcbf9037
JB
2310 }
2311 typeinfo.eltype = ntype.el[0];
2312 }
5f4273c7 2313
dcbf9037
JB
2314 if (skip_past_char (&p, '[') == SUCCESS)
2315 {
2316 expressionS exp;
2317 /* We got a scalar index. */
5f4273c7 2318
dcbf9037
JB
2319 if (typeinfo.defined & NTA_HASINDEX)
2320 {
2321 as_bad (_("can't redefine the index of a scalar alias"));
c921be7d 2322 return FALSE;
dcbf9037 2323 }
5f4273c7 2324
dcbf9037 2325 my_get_expression (&exp, &p, GE_NO_PREFIX);
5f4273c7 2326
dcbf9037
JB
2327 if (exp.X_op != O_constant)
2328 {
2329 as_bad (_("scalar index must be constant"));
c921be7d 2330 return FALSE;
dcbf9037 2331 }
5f4273c7 2332
dcbf9037
JB
2333 typeinfo.defined |= NTA_HASINDEX;
2334 typeinfo.index = exp.X_add_number;
5f4273c7 2335
dcbf9037
JB
2336 if (skip_past_char (&p, ']') == FAIL)
2337 {
2338 as_bad (_("expecting ]"));
c921be7d 2339 return FALSE;
dcbf9037
JB
2340 }
2341 }
2342
15735687
NS
2343 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2344 the desired alias name, and p points to its end. If not, then
2345 the desired alias name is in the global original_case_string. */
2346#ifdef TC_CASE_SENSITIVE
dcbf9037 2347 namelen = nameend - newname;
15735687
NS
2348#else
2349 newname = original_case_string;
2350 namelen = strlen (newname);
2351#endif
2352
21d799b5 2353 namebuf = (char *) alloca (namelen + 1);
dcbf9037
JB
2354 strncpy (namebuf, newname, namelen);
2355 namebuf[namelen] = '\0';
5f4273c7 2356
dcbf9037
JB
2357 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2358 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2359
dcbf9037
JB
2360 /* Insert name in all uppercase. */
2361 for (p = namebuf; *p; p++)
2362 *p = TOUPPER (*p);
5f4273c7 2363
dcbf9037
JB
2364 if (strncmp (namebuf, newname, namelen))
2365 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2366 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2367
dcbf9037
JB
2368 /* Insert name in all lowercase. */
2369 for (p = namebuf; *p; p++)
2370 *p = TOLOWER (*p);
5f4273c7 2371
dcbf9037
JB
2372 if (strncmp (namebuf, newname, namelen))
2373 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2374 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2375
c921be7d 2376 return TRUE;
dcbf9037
JB
2377}
2378
c19d1205
ZW
2379/* Should never be called, as .req goes between the alias and the
2380 register name, not at the beginning of the line. */
c921be7d 2381
b99bd4ef 2382static void
c19d1205 2383s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2384{
c19d1205
ZW
2385 as_bad (_("invalid syntax for .req directive"));
2386}
b99bd4ef 2387
dcbf9037
JB
2388static void
2389s_dn (int a ATTRIBUTE_UNUSED)
2390{
2391 as_bad (_("invalid syntax for .dn directive"));
2392}
2393
2394static void
2395s_qn (int a ATTRIBUTE_UNUSED)
2396{
2397 as_bad (_("invalid syntax for .qn directive"));
2398}
2399
c19d1205
ZW
2400/* The .unreq directive deletes an alias which was previously defined
2401 by .req. For example:
b99bd4ef 2402
c19d1205
ZW
2403 my_alias .req r11
2404 .unreq my_alias */
b99bd4ef
NC
2405
2406static void
c19d1205 2407s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2408{
c19d1205
ZW
2409 char * name;
2410 char saved_char;
b99bd4ef 2411
c19d1205
ZW
2412 name = input_line_pointer;
2413
2414 while (*input_line_pointer != 0
2415 && *input_line_pointer != ' '
2416 && *input_line_pointer != '\n')
2417 ++input_line_pointer;
2418
2419 saved_char = *input_line_pointer;
2420 *input_line_pointer = 0;
2421
2422 if (!*name)
2423 as_bad (_("invalid syntax for .unreq directive"));
2424 else
2425 {
21d799b5
NC
2426 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
2427 name);
c19d1205
ZW
2428
2429 if (!reg)
2430 as_bad (_("unknown register alias '%s'"), name);
2431 else if (reg->builtin)
a1727c1a 2432 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
c19d1205
ZW
2433 name);
2434 else
2435 {
d929913e
NC
2436 char * p;
2437 char * nbuf;
2438
db0bc284 2439 hash_delete (arm_reg_hsh, name, FALSE);
c19d1205 2440 free ((char *) reg->name);
dcbf9037
JB
2441 if (reg->neon)
2442 free (reg->neon);
c19d1205 2443 free (reg);
d929913e
NC
2444
2445 /* Also locate the all upper case and all lower case versions.
2446 Do not complain if we cannot find one or the other as it
2447 was probably deleted above. */
5f4273c7 2448
d929913e
NC
2449 nbuf = strdup (name);
2450 for (p = nbuf; *p; p++)
2451 *p = TOUPPER (*p);
21d799b5 2452 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2453 if (reg)
2454 {
db0bc284 2455 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2456 free ((char *) reg->name);
2457 if (reg->neon)
2458 free (reg->neon);
2459 free (reg);
2460 }
2461
2462 for (p = nbuf; *p; p++)
2463 *p = TOLOWER (*p);
21d799b5 2464 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2465 if (reg)
2466 {
db0bc284 2467 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2468 free ((char *) reg->name);
2469 if (reg->neon)
2470 free (reg->neon);
2471 free (reg);
2472 }
2473
2474 free (nbuf);
c19d1205
ZW
2475 }
2476 }
b99bd4ef 2477
c19d1205 2478 *input_line_pointer = saved_char;
b99bd4ef
NC
2479 demand_empty_rest_of_line ();
2480}
2481
c19d1205
ZW
2482/* Directives: Instruction set selection. */
2483
2484#ifdef OBJ_ELF
2485/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2486 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2487 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2488 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2489
cd000bff
DJ
2490/* Create a new mapping symbol for the transition to STATE. */
2491
2492static void
2493make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
b99bd4ef 2494{
a737bd4d 2495 symbolS * symbolP;
c19d1205
ZW
2496 const char * symname;
2497 int type;
b99bd4ef 2498
c19d1205 2499 switch (state)
b99bd4ef 2500 {
c19d1205
ZW
2501 case MAP_DATA:
2502 symname = "$d";
2503 type = BSF_NO_FLAGS;
2504 break;
2505 case MAP_ARM:
2506 symname = "$a";
2507 type = BSF_NO_FLAGS;
2508 break;
2509 case MAP_THUMB:
2510 symname = "$t";
2511 type = BSF_NO_FLAGS;
2512 break;
c19d1205
ZW
2513 default:
2514 abort ();
2515 }
2516
cd000bff 2517 symbolP = symbol_new (symname, now_seg, value, frag);
c19d1205
ZW
2518 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2519
2520 switch (state)
2521 {
2522 case MAP_ARM:
2523 THUMB_SET_FUNC (symbolP, 0);
2524 ARM_SET_THUMB (symbolP, 0);
2525 ARM_SET_INTERWORK (symbolP, support_interwork);
2526 break;
2527
2528 case MAP_THUMB:
2529 THUMB_SET_FUNC (symbolP, 1);
2530 ARM_SET_THUMB (symbolP, 1);
2531 ARM_SET_INTERWORK (symbolP, support_interwork);
2532 break;
2533
2534 case MAP_DATA:
2535 default:
cd000bff
DJ
2536 break;
2537 }
2538
2539 /* Save the mapping symbols for future reference. Also check that
2540 we do not place two mapping symbols at the same offset within a
2541 frag. We'll handle overlap between frags in
2de7820f
JZ
2542 check_mapping_symbols.
2543
2544 If .fill or other data filling directive generates zero sized data,
2545 the mapping symbol for the following code will have the same value
2546 as the one generated for the data filling directive. In this case,
2547 we replace the old symbol with the new one at the same address. */
cd000bff
DJ
2548 if (value == 0)
2549 {
2de7820f
JZ
2550 if (frag->tc_frag_data.first_map != NULL)
2551 {
2552 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2553 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2554 }
cd000bff
DJ
2555 frag->tc_frag_data.first_map = symbolP;
2556 }
2557 if (frag->tc_frag_data.last_map != NULL)
0f020cef
JZ
2558 {
2559 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
0f020cef
JZ
2560 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2561 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2562 }
cd000bff
DJ
2563 frag->tc_frag_data.last_map = symbolP;
2564}
2565
2566/* We must sometimes convert a region marked as code to data during
2567 code alignment, if an odd number of bytes have to be padded. The
2568 code mapping symbol is pushed to an aligned address. */
2569
2570static void
2571insert_data_mapping_symbol (enum mstate state,
2572 valueT value, fragS *frag, offsetT bytes)
2573{
2574 /* If there was already a mapping symbol, remove it. */
2575 if (frag->tc_frag_data.last_map != NULL
2576 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2577 {
2578 symbolS *symp = frag->tc_frag_data.last_map;
2579
2580 if (value == 0)
2581 {
2582 know (frag->tc_frag_data.first_map == symp);
2583 frag->tc_frag_data.first_map = NULL;
2584 }
2585 frag->tc_frag_data.last_map = NULL;
2586 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
c19d1205 2587 }
cd000bff
DJ
2588
2589 make_mapping_symbol (MAP_DATA, value, frag);
2590 make_mapping_symbol (state, value + bytes, frag);
2591}
2592
2593static void mapping_state_2 (enum mstate state, int max_chars);
2594
2595/* Set the mapping state to STATE. Only call this when about to
2596 emit some STATE bytes to the file. */
2597
2598void
2599mapping_state (enum mstate state)
2600{
940b5ce0
DJ
2601 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2602
cd000bff
DJ
2603#define TRANSITION(from, to) (mapstate == (from) && state == (to))
2604
2605 if (mapstate == state)
2606 /* The mapping symbol has already been emitted.
2607 There is nothing else to do. */
2608 return;
49c62a33
NC
2609
2610 if (state == MAP_ARM || state == MAP_THUMB)
2611 /* PR gas/12931
2612 All ARM instructions require 4-byte alignment.
2613 (Almost) all Thumb instructions require 2-byte alignment.
2614
2615 When emitting instructions into any section, mark the section
2616 appropriately.
2617
2618 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2619 but themselves require 2-byte alignment; this applies to some
2620 PC- relative forms. However, these cases will invovle implicit
2621 literal pool generation or an explicit .align >=2, both of
2622 which will cause the section to me marked with sufficient
2623 alignment. Thus, we don't handle those cases here. */
2624 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2625
2626 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
cd000bff
DJ
2627 /* This case will be evaluated later in the next else. */
2628 return;
2629 else if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
2630 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
2631 {
2632 /* Only add the symbol if the offset is > 0:
2633 if we're at the first frag, check it's size > 0;
2634 if we're not at the first frag, then for sure
2635 the offset is > 0. */
2636 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
2637 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
2638
2639 if (add_symbol)
2640 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
2641 }
2642
2643 mapping_state_2 (state, 0);
2644#undef TRANSITION
2645}
2646
2647/* Same as mapping_state, but MAX_CHARS bytes have already been
2648 allocated. Put the mapping symbol that far back. */
2649
2650static void
2651mapping_state_2 (enum mstate state, int max_chars)
2652{
940b5ce0
DJ
2653 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2654
2655 if (!SEG_NORMAL (now_seg))
2656 return;
2657
cd000bff
DJ
2658 if (mapstate == state)
2659 /* The mapping symbol has already been emitted.
2660 There is nothing else to do. */
2661 return;
2662
cd000bff
DJ
2663 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2664 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
c19d1205
ZW
2665}
2666#else
d3106081
NS
2667#define mapping_state(x) ((void)0)
2668#define mapping_state_2(x, y) ((void)0)
c19d1205
ZW
2669#endif
2670
2671/* Find the real, Thumb encoded start of a Thumb function. */
2672
4343666d 2673#ifdef OBJ_COFF
c19d1205
ZW
2674static symbolS *
2675find_real_start (symbolS * symbolP)
2676{
2677 char * real_start;
2678 const char * name = S_GET_NAME (symbolP);
2679 symbolS * new_target;
2680
2681 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2682#define STUB_NAME ".real_start_of"
2683
2684 if (name == NULL)
2685 abort ();
2686
37f6032b
ZW
2687 /* The compiler may generate BL instructions to local labels because
2688 it needs to perform a branch to a far away location. These labels
2689 do not have a corresponding ".real_start_of" label. We check
2690 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2691 the ".real_start_of" convention for nonlocal branches. */
2692 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2693 return symbolP;
2694
37f6032b 2695 real_start = ACONCAT ((STUB_NAME, name, NULL));
c19d1205
ZW
2696 new_target = symbol_find (real_start);
2697
2698 if (new_target == NULL)
2699 {
bd3ba5d1 2700 as_warn (_("Failed to find real start of function: %s\n"), name);
c19d1205
ZW
2701 new_target = symbolP;
2702 }
2703
c19d1205
ZW
2704 return new_target;
2705}
4343666d 2706#endif
c19d1205
ZW
2707
2708static void
2709opcode_select (int width)
2710{
2711 switch (width)
2712 {
2713 case 16:
2714 if (! thumb_mode)
2715 {
e74cfd16 2716 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2717 as_bad (_("selected processor does not support THUMB opcodes"));
2718
2719 thumb_mode = 1;
2720 /* No need to force the alignment, since we will have been
2721 coming from ARM mode, which is word-aligned. */
2722 record_alignment (now_seg, 1);
2723 }
c19d1205
ZW
2724 break;
2725
2726 case 32:
2727 if (thumb_mode)
2728 {
e74cfd16 2729 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2730 as_bad (_("selected processor does not support ARM opcodes"));
2731
2732 thumb_mode = 0;
2733
2734 if (!need_pass_2)
2735 frag_align (2, 0, 0);
2736
2737 record_alignment (now_seg, 1);
2738 }
c19d1205
ZW
2739 break;
2740
2741 default:
2742 as_bad (_("invalid instruction size selected (%d)"), width);
2743 }
2744}
2745
2746static void
2747s_arm (int ignore ATTRIBUTE_UNUSED)
2748{
2749 opcode_select (32);
2750 demand_empty_rest_of_line ();
2751}
2752
2753static void
2754s_thumb (int ignore ATTRIBUTE_UNUSED)
2755{
2756 opcode_select (16);
2757 demand_empty_rest_of_line ();
2758}
2759
2760static void
2761s_code (int unused ATTRIBUTE_UNUSED)
2762{
2763 int temp;
2764
2765 temp = get_absolute_expression ();
2766 switch (temp)
2767 {
2768 case 16:
2769 case 32:
2770 opcode_select (temp);
2771 break;
2772
2773 default:
2774 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2775 }
2776}
2777
2778static void
2779s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2780{
2781 /* If we are not already in thumb mode go into it, EVEN if
2782 the target processor does not support thumb instructions.
2783 This is used by gcc/config/arm/lib1funcs.asm for example
2784 to compile interworking support functions even if the
2785 target processor should not support interworking. */
2786 if (! thumb_mode)
2787 {
2788 thumb_mode = 2;
2789 record_alignment (now_seg, 1);
2790 }
2791
2792 demand_empty_rest_of_line ();
2793}
2794
2795static void
2796s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2797{
2798 s_thumb (0);
2799
2800 /* The following label is the name/address of the start of a Thumb function.
2801 We need to know this for the interworking support. */
2802 label_is_thumb_function_name = TRUE;
2803}
2804
2805/* Perform a .set directive, but also mark the alias as
2806 being a thumb function. */
2807
2808static void
2809s_thumb_set (int equiv)
2810{
2811 /* XXX the following is a duplicate of the code for s_set() in read.c
2812 We cannot just call that code as we need to get at the symbol that
2813 is created. */
2814 char * name;
2815 char delim;
2816 char * end_name;
2817 symbolS * symbolP;
2818
2819 /* Especial apologies for the random logic:
2820 This just grew, and could be parsed much more simply!
2821 Dean - in haste. */
2822 name = input_line_pointer;
2823 delim = get_symbol_end ();
2824 end_name = input_line_pointer;
2825 *end_name = delim;
2826
2827 if (*input_line_pointer != ',')
2828 {
2829 *end_name = 0;
2830 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2831 *end_name = delim;
2832 ignore_rest_of_line ();
2833 return;
2834 }
2835
2836 input_line_pointer++;
2837 *end_name = 0;
2838
2839 if (name[0] == '.' && name[1] == '\0')
2840 {
2841 /* XXX - this should not happen to .thumb_set. */
2842 abort ();
2843 }
2844
2845 if ((symbolP = symbol_find (name)) == NULL
2846 && (symbolP = md_undefined_symbol (name)) == NULL)
2847 {
2848#ifndef NO_LISTING
2849 /* When doing symbol listings, play games with dummy fragments living
2850 outside the normal fragment chain to record the file and line info
c19d1205 2851 for this symbol. */
b99bd4ef
NC
2852 if (listing & LISTING_SYMBOLS)
2853 {
2854 extern struct list_info_struct * listing_tail;
21d799b5 2855 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
b99bd4ef
NC
2856
2857 memset (dummy_frag, 0, sizeof (fragS));
2858 dummy_frag->fr_type = rs_fill;
2859 dummy_frag->line = listing_tail;
2860 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2861 dummy_frag->fr_symbol = symbolP;
2862 }
2863 else
2864#endif
2865 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2866
2867#ifdef OBJ_COFF
2868 /* "set" symbols are local unless otherwise specified. */
2869 SF_SET_LOCAL (symbolP);
2870#endif /* OBJ_COFF */
2871 } /* Make a new symbol. */
2872
2873 symbol_table_insert (symbolP);
2874
2875 * end_name = delim;
2876
2877 if (equiv
2878 && S_IS_DEFINED (symbolP)
2879 && S_GET_SEGMENT (symbolP) != reg_section)
2880 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2881
2882 pseudo_set (symbolP);
2883
2884 demand_empty_rest_of_line ();
2885
c19d1205 2886 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2887
2888 THUMB_SET_FUNC (symbolP, 1);
2889 ARM_SET_THUMB (symbolP, 1);
2890#if defined OBJ_ELF || defined OBJ_COFF
2891 ARM_SET_INTERWORK (symbolP, support_interwork);
2892#endif
2893}
2894
c19d1205 2895/* Directives: Mode selection. */
b99bd4ef 2896
c19d1205
ZW
2897/* .syntax [unified|divided] - choose the new unified syntax
2898 (same for Arm and Thumb encoding, modulo slight differences in what
2899 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2900static void
c19d1205 2901s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2902{
c19d1205
ZW
2903 char *name, delim;
2904
2905 name = input_line_pointer;
2906 delim = get_symbol_end ();
2907
2908 if (!strcasecmp (name, "unified"))
2909 unified_syntax = TRUE;
2910 else if (!strcasecmp (name, "divided"))
2911 unified_syntax = FALSE;
2912 else
2913 {
2914 as_bad (_("unrecognized syntax mode \"%s\""), name);
2915 return;
2916 }
2917 *input_line_pointer = delim;
b99bd4ef
NC
2918 demand_empty_rest_of_line ();
2919}
2920
c19d1205
ZW
2921/* Directives: sectioning and alignment. */
2922
2923/* Same as s_align_ptwo but align 0 => align 2. */
2924
b99bd4ef 2925static void
c19d1205 2926s_align (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2927{
a737bd4d 2928 int temp;
dce323d1 2929 bfd_boolean fill_p;
c19d1205
ZW
2930 long temp_fill;
2931 long max_alignment = 15;
b99bd4ef
NC
2932
2933 temp = get_absolute_expression ();
c19d1205
ZW
2934 if (temp > max_alignment)
2935 as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
2936 else if (temp < 0)
b99bd4ef 2937 {
c19d1205
ZW
2938 as_bad (_("alignment negative. 0 assumed."));
2939 temp = 0;
2940 }
b99bd4ef 2941
c19d1205
ZW
2942 if (*input_line_pointer == ',')
2943 {
2944 input_line_pointer++;
2945 temp_fill = get_absolute_expression ();
dce323d1 2946 fill_p = TRUE;
b99bd4ef 2947 }
c19d1205 2948 else
dce323d1
PB
2949 {
2950 fill_p = FALSE;
2951 temp_fill = 0;
2952 }
b99bd4ef 2953
c19d1205
ZW
2954 if (!temp)
2955 temp = 2;
b99bd4ef 2956
c19d1205
ZW
2957 /* Only make a frag if we HAVE to. */
2958 if (temp && !need_pass_2)
dce323d1
PB
2959 {
2960 if (!fill_p && subseg_text_p (now_seg))
2961 frag_align_code (temp, 0);
2962 else
2963 frag_align (temp, (int) temp_fill, 0);
2964 }
c19d1205
ZW
2965 demand_empty_rest_of_line ();
2966
2967 record_alignment (now_seg, temp);
b99bd4ef
NC
2968}
2969
c19d1205
ZW
2970static void
2971s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 2972{
c19d1205
ZW
2973 /* We don't support putting frags in the BSS segment, we fake it by
2974 marking in_bss, then looking at s_skip for clues. */
2975 subseg_set (bss_section, 0);
2976 demand_empty_rest_of_line ();
cd000bff
DJ
2977
2978#ifdef md_elf_section_change_hook
2979 md_elf_section_change_hook ();
2980#endif
c19d1205 2981}
b99bd4ef 2982
c19d1205
ZW
2983static void
2984s_even (int ignore ATTRIBUTE_UNUSED)
2985{
2986 /* Never make frag if expect extra pass. */
2987 if (!need_pass_2)
2988 frag_align (1, 0, 0);
b99bd4ef 2989
c19d1205 2990 record_alignment (now_seg, 1);
b99bd4ef 2991
c19d1205 2992 demand_empty_rest_of_line ();
b99bd4ef
NC
2993}
2994
c19d1205 2995/* Directives: Literal pools. */
a737bd4d 2996
c19d1205
ZW
2997static literal_pool *
2998find_literal_pool (void)
a737bd4d 2999{
c19d1205 3000 literal_pool * pool;
a737bd4d 3001
c19d1205 3002 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 3003 {
c19d1205
ZW
3004 if (pool->section == now_seg
3005 && pool->sub_section == now_subseg)
3006 break;
a737bd4d
NC
3007 }
3008
c19d1205 3009 return pool;
a737bd4d
NC
3010}
3011
c19d1205
ZW
3012static literal_pool *
3013find_or_make_literal_pool (void)
a737bd4d 3014{
c19d1205
ZW
3015 /* Next literal pool ID number. */
3016 static unsigned int latest_pool_num = 1;
3017 literal_pool * pool;
a737bd4d 3018
c19d1205 3019 pool = find_literal_pool ();
a737bd4d 3020
c19d1205 3021 if (pool == NULL)
a737bd4d 3022 {
c19d1205 3023 /* Create a new pool. */
21d799b5 3024 pool = (literal_pool *) xmalloc (sizeof (* pool));
c19d1205
ZW
3025 if (! pool)
3026 return NULL;
a737bd4d 3027
c19d1205
ZW
3028 pool->next_free_entry = 0;
3029 pool->section = now_seg;
3030 pool->sub_section = now_subseg;
3031 pool->next = list_of_pools;
3032 pool->symbol = NULL;
3033
3034 /* Add it to the list. */
3035 list_of_pools = pool;
a737bd4d 3036 }
a737bd4d 3037
c19d1205
ZW
3038 /* New pools, and emptied pools, will have a NULL symbol. */
3039 if (pool->symbol == NULL)
a737bd4d 3040 {
c19d1205
ZW
3041 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3042 (valueT) 0, &zero_address_frag);
3043 pool->id = latest_pool_num ++;
a737bd4d
NC
3044 }
3045
c19d1205
ZW
3046 /* Done. */
3047 return pool;
a737bd4d
NC
3048}
3049
c19d1205 3050/* Add the literal in the global 'inst'
5f4273c7 3051 structure to the relevant literal pool. */
b99bd4ef
NC
3052
3053static int
c19d1205 3054add_to_lit_pool (void)
b99bd4ef 3055{
c19d1205
ZW
3056 literal_pool * pool;
3057 unsigned int entry;
b99bd4ef 3058
c19d1205
ZW
3059 pool = find_or_make_literal_pool ();
3060
3061 /* Check if this literal value is already in the pool. */
3062 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 3063 {
c19d1205
ZW
3064 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3065 && (inst.reloc.exp.X_op == O_constant)
3066 && (pool->literals[entry].X_add_number
3067 == inst.reloc.exp.X_add_number)
3068 && (pool->literals[entry].X_unsigned
3069 == inst.reloc.exp.X_unsigned))
3070 break;
3071
3072 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3073 && (inst.reloc.exp.X_op == O_symbol)
3074 && (pool->literals[entry].X_add_number
3075 == inst.reloc.exp.X_add_number)
3076 && (pool->literals[entry].X_add_symbol
3077 == inst.reloc.exp.X_add_symbol)
3078 && (pool->literals[entry].X_op_symbol
3079 == inst.reloc.exp.X_op_symbol))
3080 break;
b99bd4ef
NC
3081 }
3082
c19d1205
ZW
3083 /* Do we need to create a new entry? */
3084 if (entry == pool->next_free_entry)
3085 {
3086 if (entry >= MAX_LITERAL_POOL_SIZE)
3087 {
3088 inst.error = _("literal pool overflow");
3089 return FAIL;
3090 }
3091
3092 pool->literals[entry] = inst.reloc.exp;
a8040cf2
NC
3093#ifdef OBJ_ELF
3094 /* PR ld/12974: Record the location of the first source line to reference
3095 this entry in the literal pool. If it turns out during linking that the
3096 symbol does not exist we will be able to give an accurate line number for
3097 the (first use of the) missing reference. */
3098 if (debug_type == DEBUG_DWARF2)
3099 dwarf2_where (pool->locs + entry);
3100#endif
c19d1205
ZW
3101 pool->next_free_entry += 1;
3102 }
b99bd4ef 3103
c19d1205
ZW
3104 inst.reloc.exp.X_op = O_symbol;
3105 inst.reloc.exp.X_add_number = ((int) entry) * 4;
3106 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 3107
c19d1205 3108 return SUCCESS;
b99bd4ef
NC
3109}
3110
c19d1205
ZW
3111/* Can't use symbol_new here, so have to create a symbol and then at
3112 a later date assign it a value. Thats what these functions do. */
e16bb312 3113
c19d1205
ZW
3114static void
3115symbol_locate (symbolS * symbolP,
3116 const char * name, /* It is copied, the caller can modify. */
3117 segT segment, /* Segment identifier (SEG_<something>). */
3118 valueT valu, /* Symbol value. */
3119 fragS * frag) /* Associated fragment. */
3120{
3121 unsigned int name_length;
3122 char * preserved_copy_of_name;
e16bb312 3123
c19d1205
ZW
3124 name_length = strlen (name) + 1; /* +1 for \0. */
3125 obstack_grow (&notes, name, name_length);
21d799b5 3126 preserved_copy_of_name = (char *) obstack_finish (&notes);
e16bb312 3127
c19d1205
ZW
3128#ifdef tc_canonicalize_symbol_name
3129 preserved_copy_of_name =
3130 tc_canonicalize_symbol_name (preserved_copy_of_name);
3131#endif
b99bd4ef 3132
c19d1205 3133 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 3134
c19d1205
ZW
3135 S_SET_SEGMENT (symbolP, segment);
3136 S_SET_VALUE (symbolP, valu);
3137 symbol_clear_list_pointers (symbolP);
b99bd4ef 3138
c19d1205 3139 symbol_set_frag (symbolP, frag);
b99bd4ef 3140
c19d1205
ZW
3141 /* Link to end of symbol chain. */
3142 {
3143 extern int symbol_table_frozen;
b99bd4ef 3144
c19d1205
ZW
3145 if (symbol_table_frozen)
3146 abort ();
3147 }
b99bd4ef 3148
c19d1205 3149 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 3150
c19d1205 3151 obj_symbol_new_hook (symbolP);
b99bd4ef 3152
c19d1205
ZW
3153#ifdef tc_symbol_new_hook
3154 tc_symbol_new_hook (symbolP);
3155#endif
3156
3157#ifdef DEBUG_SYMS
3158 verify_symbol_chain (symbol_rootP, symbol_lastP);
3159#endif /* DEBUG_SYMS */
b99bd4ef
NC
3160}
3161
b99bd4ef 3162
c19d1205
ZW
3163static void
3164s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3165{
c19d1205
ZW
3166 unsigned int entry;
3167 literal_pool * pool;
3168 char sym_name[20];
b99bd4ef 3169
c19d1205
ZW
3170 pool = find_literal_pool ();
3171 if (pool == NULL
3172 || pool->symbol == NULL
3173 || pool->next_free_entry == 0)
3174 return;
b99bd4ef 3175
c19d1205 3176 mapping_state (MAP_DATA);
b99bd4ef 3177
c19d1205
ZW
3178 /* Align pool as you have word accesses.
3179 Only make a frag if we have to. */
3180 if (!need_pass_2)
3181 frag_align (2, 0, 0);
b99bd4ef 3182
c19d1205 3183 record_alignment (now_seg, 2);
b99bd4ef 3184
c19d1205 3185 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 3186
c19d1205
ZW
3187 symbol_locate (pool->symbol, sym_name, now_seg,
3188 (valueT) frag_now_fix (), frag_now);
3189 symbol_table_insert (pool->symbol);
b99bd4ef 3190
c19d1205 3191 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 3192
c19d1205
ZW
3193#if defined OBJ_COFF || defined OBJ_ELF
3194 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3195#endif
6c43fab6 3196
c19d1205 3197 for (entry = 0; entry < pool->next_free_entry; entry ++)
a8040cf2
NC
3198 {
3199#ifdef OBJ_ELF
3200 if (debug_type == DEBUG_DWARF2)
3201 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3202#endif
3203 /* First output the expression in the instruction to the pool. */
3204 emit_expr (&(pool->literals[entry]), 4); /* .word */
3205 }
b99bd4ef 3206
c19d1205
ZW
3207 /* Mark the pool as empty. */
3208 pool->next_free_entry = 0;
3209 pool->symbol = NULL;
b99bd4ef
NC
3210}
3211
c19d1205
ZW
3212#ifdef OBJ_ELF
3213/* Forward declarations for functions below, in the MD interface
3214 section. */
3215static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3216static valueT create_unwind_entry (int);
3217static void start_unwind_section (const segT, int);
3218static void add_unwind_opcode (valueT, int);
3219static void flush_pending_unwind (void);
b99bd4ef 3220
c19d1205 3221/* Directives: Data. */
b99bd4ef 3222
c19d1205
ZW
3223static void
3224s_arm_elf_cons (int nbytes)
3225{
3226 expressionS exp;
b99bd4ef 3227
c19d1205
ZW
3228#ifdef md_flush_pending_output
3229 md_flush_pending_output ();
3230#endif
b99bd4ef 3231
c19d1205 3232 if (is_it_end_of_statement ())
b99bd4ef 3233 {
c19d1205
ZW
3234 demand_empty_rest_of_line ();
3235 return;
b99bd4ef
NC
3236 }
3237
c19d1205
ZW
3238#ifdef md_cons_align
3239 md_cons_align (nbytes);
3240#endif
b99bd4ef 3241
c19d1205
ZW
3242 mapping_state (MAP_DATA);
3243 do
b99bd4ef 3244 {
c19d1205
ZW
3245 int reloc;
3246 char *base = input_line_pointer;
b99bd4ef 3247
c19d1205 3248 expression (& exp);
b99bd4ef 3249
c19d1205
ZW
3250 if (exp.X_op != O_symbol)
3251 emit_expr (&exp, (unsigned int) nbytes);
3252 else
3253 {
3254 char *before_reloc = input_line_pointer;
3255 reloc = parse_reloc (&input_line_pointer);
3256 if (reloc == -1)
3257 {
3258 as_bad (_("unrecognized relocation suffix"));
3259 ignore_rest_of_line ();
3260 return;
3261 }
3262 else if (reloc == BFD_RELOC_UNUSED)
3263 emit_expr (&exp, (unsigned int) nbytes);
3264 else
3265 {
21d799b5
NC
3266 reloc_howto_type *howto = (reloc_howto_type *)
3267 bfd_reloc_type_lookup (stdoutput,
3268 (bfd_reloc_code_real_type) reloc);
c19d1205 3269 int size = bfd_get_reloc_size (howto);
b99bd4ef 3270
2fc8bdac
ZW
3271 if (reloc == BFD_RELOC_ARM_PLT32)
3272 {
3273 as_bad (_("(plt) is only valid on branch targets"));
3274 reloc = BFD_RELOC_UNUSED;
3275 size = 0;
3276 }
3277
c19d1205 3278 if (size > nbytes)
2fc8bdac 3279 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
3280 howto->name, nbytes);
3281 else
3282 {
3283 /* We've parsed an expression stopping at O_symbol.
3284 But there may be more expression left now that we
3285 have parsed the relocation marker. Parse it again.
3286 XXX Surely there is a cleaner way to do this. */
3287 char *p = input_line_pointer;
3288 int offset;
21d799b5 3289 char *save_buf = (char *) alloca (input_line_pointer - base);
c19d1205
ZW
3290 memcpy (save_buf, base, input_line_pointer - base);
3291 memmove (base + (input_line_pointer - before_reloc),
3292 base, before_reloc - base);
3293
3294 input_line_pointer = base + (input_line_pointer-before_reloc);
3295 expression (&exp);
3296 memcpy (base, save_buf, p - base);
3297
3298 offset = nbytes - size;
3299 p = frag_more ((int) nbytes);
3300 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
21d799b5 3301 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
c19d1205
ZW
3302 }
3303 }
3304 }
b99bd4ef 3305 }
c19d1205 3306 while (*input_line_pointer++ == ',');
b99bd4ef 3307
c19d1205
ZW
3308 /* Put terminator back into stream. */
3309 input_line_pointer --;
3310 demand_empty_rest_of_line ();
b99bd4ef
NC
3311}
3312
c921be7d
NC
3313/* Emit an expression containing a 32-bit thumb instruction.
3314 Implementation based on put_thumb32_insn. */
3315
3316static void
3317emit_thumb32_expr (expressionS * exp)
3318{
3319 expressionS exp_high = *exp;
3320
3321 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3322 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3323 exp->X_add_number &= 0xffff;
3324 emit_expr (exp, (unsigned int) THUMB_SIZE);
3325}
3326
3327/* Guess the instruction size based on the opcode. */
3328
3329static int
3330thumb_insn_size (int opcode)
3331{
3332 if ((unsigned int) opcode < 0xe800u)
3333 return 2;
3334 else if ((unsigned int) opcode >= 0xe8000000u)
3335 return 4;
3336 else
3337 return 0;
3338}
3339
3340static bfd_boolean
3341emit_insn (expressionS *exp, int nbytes)
3342{
3343 int size = 0;
3344
3345 if (exp->X_op == O_constant)
3346 {
3347 size = nbytes;
3348
3349 if (size == 0)
3350 size = thumb_insn_size (exp->X_add_number);
3351
3352 if (size != 0)
3353 {
3354 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3355 {
3356 as_bad (_(".inst.n operand too big. "\
3357 "Use .inst.w instead"));
3358 size = 0;
3359 }
3360 else
3361 {
3362 if (now_it.state == AUTOMATIC_IT_BLOCK)
3363 set_it_insn_type_nonvoid (OUTSIDE_IT_INSN, 0);
3364 else
3365 set_it_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3366
3367 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3368 emit_thumb32_expr (exp);
3369 else
3370 emit_expr (exp, (unsigned int) size);
3371
3372 it_fsm_post_encode ();
3373 }
3374 }
3375 else
3376 as_bad (_("cannot determine Thumb instruction size. " \
3377 "Use .inst.n/.inst.w instead"));
3378 }
3379 else
3380 as_bad (_("constant expression required"));
3381
3382 return (size != 0);
3383}
3384
3385/* Like s_arm_elf_cons but do not use md_cons_align and
3386 set the mapping state to MAP_ARM/MAP_THUMB. */
3387
3388static void
3389s_arm_elf_inst (int nbytes)
3390{
3391 if (is_it_end_of_statement ())
3392 {
3393 demand_empty_rest_of_line ();
3394 return;
3395 }
3396
3397 /* Calling mapping_state () here will not change ARM/THUMB,
3398 but will ensure not to be in DATA state. */
3399
3400 if (thumb_mode)
3401 mapping_state (MAP_THUMB);
3402 else
3403 {
3404 if (nbytes != 0)
3405 {
3406 as_bad (_("width suffixes are invalid in ARM mode"));
3407 ignore_rest_of_line ();
3408 return;
3409 }
3410
3411 nbytes = 4;
3412
3413 mapping_state (MAP_ARM);
3414 }
3415
3416 do
3417 {
3418 expressionS exp;
3419
3420 expression (& exp);
3421
3422 if (! emit_insn (& exp, nbytes))
3423 {
3424 ignore_rest_of_line ();
3425 return;
3426 }
3427 }
3428 while (*input_line_pointer++ == ',');
3429
3430 /* Put terminator back into stream. */
3431 input_line_pointer --;
3432 demand_empty_rest_of_line ();
3433}
b99bd4ef 3434
c19d1205 3435/* Parse a .rel31 directive. */
b99bd4ef 3436
c19d1205
ZW
3437static void
3438s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3439{
3440 expressionS exp;
3441 char *p;
3442 valueT highbit;
b99bd4ef 3443
c19d1205
ZW
3444 highbit = 0;
3445 if (*input_line_pointer == '1')
3446 highbit = 0x80000000;
3447 else if (*input_line_pointer != '0')
3448 as_bad (_("expected 0 or 1"));
b99bd4ef 3449
c19d1205
ZW
3450 input_line_pointer++;
3451 if (*input_line_pointer != ',')
3452 as_bad (_("missing comma"));
3453 input_line_pointer++;
b99bd4ef 3454
c19d1205
ZW
3455#ifdef md_flush_pending_output
3456 md_flush_pending_output ();
3457#endif
b99bd4ef 3458
c19d1205
ZW
3459#ifdef md_cons_align
3460 md_cons_align (4);
3461#endif
b99bd4ef 3462
c19d1205 3463 mapping_state (MAP_DATA);
b99bd4ef 3464
c19d1205 3465 expression (&exp);
b99bd4ef 3466
c19d1205
ZW
3467 p = frag_more (4);
3468 md_number_to_chars (p, highbit, 4);
3469 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
3470 BFD_RELOC_ARM_PREL31);
b99bd4ef 3471
c19d1205 3472 demand_empty_rest_of_line ();
b99bd4ef
NC
3473}
3474
c19d1205 3475/* Directives: AEABI stack-unwind tables. */
b99bd4ef 3476
c19d1205 3477/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3478
c19d1205
ZW
3479static void
3480s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3481{
3482 demand_empty_rest_of_line ();
921e5f0a
PB
3483 if (unwind.proc_start)
3484 {
c921be7d 3485 as_bad (_("duplicate .fnstart directive"));
921e5f0a
PB
3486 return;
3487 }
3488
c19d1205
ZW
3489 /* Mark the start of the function. */
3490 unwind.proc_start = expr_build_dot ();
b99bd4ef 3491
c19d1205
ZW
3492 /* Reset the rest of the unwind info. */
3493 unwind.opcode_count = 0;
3494 unwind.table_entry = NULL;
3495 unwind.personality_routine = NULL;
3496 unwind.personality_index = -1;
3497 unwind.frame_size = 0;
3498 unwind.fp_offset = 0;
fdfde340 3499 unwind.fp_reg = REG_SP;
c19d1205
ZW
3500 unwind.fp_used = 0;
3501 unwind.sp_restored = 0;
3502}
b99bd4ef 3503
b99bd4ef 3504
c19d1205
ZW
3505/* Parse a handlerdata directive. Creates the exception handling table entry
3506 for the function. */
b99bd4ef 3507
c19d1205
ZW
3508static void
3509s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3510{
3511 demand_empty_rest_of_line ();
921e5f0a 3512 if (!unwind.proc_start)
c921be7d 3513 as_bad (MISSING_FNSTART);
921e5f0a 3514
c19d1205 3515 if (unwind.table_entry)
6decc662 3516 as_bad (_("duplicate .handlerdata directive"));
f02232aa 3517
c19d1205
ZW
3518 create_unwind_entry (1);
3519}
a737bd4d 3520
c19d1205 3521/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3522
c19d1205
ZW
3523static void
3524s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3525{
3526 long where;
3527 char *ptr;
3528 valueT val;
940b5ce0 3529 unsigned int marked_pr_dependency;
f02232aa 3530
c19d1205 3531 demand_empty_rest_of_line ();
f02232aa 3532
921e5f0a
PB
3533 if (!unwind.proc_start)
3534 {
c921be7d 3535 as_bad (_(".fnend directive without .fnstart"));
921e5f0a
PB
3536 return;
3537 }
3538
c19d1205
ZW
3539 /* Add eh table entry. */
3540 if (unwind.table_entry == NULL)
3541 val = create_unwind_entry (0);
3542 else
3543 val = 0;
f02232aa 3544
c19d1205
ZW
3545 /* Add index table entry. This is two words. */
3546 start_unwind_section (unwind.saved_seg, 1);
3547 frag_align (2, 0, 0);
3548 record_alignment (now_seg, 2);
b99bd4ef 3549
c19d1205 3550 ptr = frag_more (8);
5011093d 3551 memset (ptr, 0, 8);
c19d1205 3552 where = frag_now_fix () - 8;
f02232aa 3553
c19d1205
ZW
3554 /* Self relative offset of the function start. */
3555 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3556 BFD_RELOC_ARM_PREL31);
f02232aa 3557
c19d1205
ZW
3558 /* Indicate dependency on EHABI-defined personality routines to the
3559 linker, if it hasn't been done already. */
940b5ce0
DJ
3560 marked_pr_dependency
3561 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
c19d1205
ZW
3562 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3563 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3564 {
5f4273c7
NC
3565 static const char *const name[] =
3566 {
3567 "__aeabi_unwind_cpp_pr0",
3568 "__aeabi_unwind_cpp_pr1",
3569 "__aeabi_unwind_cpp_pr2"
3570 };
c19d1205
ZW
3571 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3572 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
c19d1205 3573 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
940b5ce0 3574 |= 1 << unwind.personality_index;
c19d1205 3575 }
f02232aa 3576
c19d1205
ZW
3577 if (val)
3578 /* Inline exception table entry. */
3579 md_number_to_chars (ptr + 4, val, 4);
3580 else
3581 /* Self relative offset of the table entry. */
3582 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3583 BFD_RELOC_ARM_PREL31);
f02232aa 3584
c19d1205
ZW
3585 /* Restore the original section. */
3586 subseg_set (unwind.saved_seg, unwind.saved_subseg);
921e5f0a
PB
3587
3588 unwind.proc_start = NULL;
c19d1205 3589}
f02232aa 3590
f02232aa 3591
c19d1205 3592/* Parse an unwind_cantunwind directive. */
b99bd4ef 3593
c19d1205
ZW
3594static void
3595s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3596{
3597 demand_empty_rest_of_line ();
921e5f0a 3598 if (!unwind.proc_start)
c921be7d 3599 as_bad (MISSING_FNSTART);
921e5f0a 3600
c19d1205
ZW
3601 if (unwind.personality_routine || unwind.personality_index != -1)
3602 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3603
c19d1205
ZW
3604 unwind.personality_index = -2;
3605}
b99bd4ef 3606
b99bd4ef 3607
c19d1205 3608/* Parse a personalityindex directive. */
b99bd4ef 3609
c19d1205
ZW
3610static void
3611s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3612{
3613 expressionS exp;
b99bd4ef 3614
921e5f0a 3615 if (!unwind.proc_start)
c921be7d 3616 as_bad (MISSING_FNSTART);
921e5f0a 3617
c19d1205
ZW
3618 if (unwind.personality_routine || unwind.personality_index != -1)
3619 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3620
c19d1205 3621 expression (&exp);
b99bd4ef 3622
c19d1205
ZW
3623 if (exp.X_op != O_constant
3624 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3625 {
c19d1205
ZW
3626 as_bad (_("bad personality routine number"));
3627 ignore_rest_of_line ();
3628 return;
b99bd4ef
NC
3629 }
3630
c19d1205 3631 unwind.personality_index = exp.X_add_number;
b99bd4ef 3632
c19d1205
ZW
3633 demand_empty_rest_of_line ();
3634}
e16bb312 3635
e16bb312 3636
c19d1205 3637/* Parse a personality directive. */
e16bb312 3638
c19d1205
ZW
3639static void
3640s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3641{
3642 char *name, *p, c;
a737bd4d 3643
921e5f0a 3644 if (!unwind.proc_start)
c921be7d 3645 as_bad (MISSING_FNSTART);
921e5f0a 3646
c19d1205
ZW
3647 if (unwind.personality_routine || unwind.personality_index != -1)
3648 as_bad (_("duplicate .personality directive"));
a737bd4d 3649
c19d1205
ZW
3650 name = input_line_pointer;
3651 c = get_symbol_end ();
3652 p = input_line_pointer;
3653 unwind.personality_routine = symbol_find_or_make (name);
3654 *p = c;
3655 demand_empty_rest_of_line ();
3656}
e16bb312 3657
e16bb312 3658
c19d1205 3659/* Parse a directive saving core registers. */
e16bb312 3660
c19d1205
ZW
3661static void
3662s_arm_unwind_save_core (void)
e16bb312 3663{
c19d1205
ZW
3664 valueT op;
3665 long range;
3666 int n;
e16bb312 3667
c19d1205
ZW
3668 range = parse_reg_list (&input_line_pointer);
3669 if (range == FAIL)
e16bb312 3670 {
c19d1205
ZW
3671 as_bad (_("expected register list"));
3672 ignore_rest_of_line ();
3673 return;
3674 }
e16bb312 3675
c19d1205 3676 demand_empty_rest_of_line ();
e16bb312 3677
c19d1205
ZW
3678 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3679 into .unwind_save {..., sp...}. We aren't bothered about the value of
3680 ip because it is clobbered by calls. */
3681 if (unwind.sp_restored && unwind.fp_reg == 12
3682 && (range & 0x3000) == 0x1000)
3683 {
3684 unwind.opcode_count--;
3685 unwind.sp_restored = 0;
3686 range = (range | 0x2000) & ~0x1000;
3687 unwind.pending_offset = 0;
3688 }
e16bb312 3689
01ae4198
DJ
3690 /* Pop r4-r15. */
3691 if (range & 0xfff0)
c19d1205 3692 {
01ae4198
DJ
3693 /* See if we can use the short opcodes. These pop a block of up to 8
3694 registers starting with r4, plus maybe r14. */
3695 for (n = 0; n < 8; n++)
3696 {
3697 /* Break at the first non-saved register. */
3698 if ((range & (1 << (n + 4))) == 0)
3699 break;
3700 }
3701 /* See if there are any other bits set. */
3702 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3703 {
3704 /* Use the long form. */
3705 op = 0x8000 | ((range >> 4) & 0xfff);
3706 add_unwind_opcode (op, 2);
3707 }
0dd132b6 3708 else
01ae4198
DJ
3709 {
3710 /* Use the short form. */
3711 if (range & 0x4000)
3712 op = 0xa8; /* Pop r14. */
3713 else
3714 op = 0xa0; /* Do not pop r14. */
3715 op |= (n - 1);
3716 add_unwind_opcode (op, 1);
3717 }
c19d1205 3718 }
0dd132b6 3719
c19d1205
ZW
3720 /* Pop r0-r3. */
3721 if (range & 0xf)
3722 {
3723 op = 0xb100 | (range & 0xf);
3724 add_unwind_opcode (op, 2);
0dd132b6
NC
3725 }
3726
c19d1205
ZW
3727 /* Record the number of bytes pushed. */
3728 for (n = 0; n < 16; n++)
3729 {
3730 if (range & (1 << n))
3731 unwind.frame_size += 4;
3732 }
0dd132b6
NC
3733}
3734
c19d1205
ZW
3735
3736/* Parse a directive saving FPA registers. */
b99bd4ef
NC
3737
3738static void
c19d1205 3739s_arm_unwind_save_fpa (int reg)
b99bd4ef 3740{
c19d1205
ZW
3741 expressionS exp;
3742 int num_regs;
3743 valueT op;
b99bd4ef 3744
c19d1205
ZW
3745 /* Get Number of registers to transfer. */
3746 if (skip_past_comma (&input_line_pointer) != FAIL)
3747 expression (&exp);
3748 else
3749 exp.X_op = O_illegal;
b99bd4ef 3750
c19d1205 3751 if (exp.X_op != O_constant)
b99bd4ef 3752 {
c19d1205
ZW
3753 as_bad (_("expected , <constant>"));
3754 ignore_rest_of_line ();
b99bd4ef
NC
3755 return;
3756 }
3757
c19d1205
ZW
3758 num_regs = exp.X_add_number;
3759
3760 if (num_regs < 1 || num_regs > 4)
b99bd4ef 3761 {
c19d1205
ZW
3762 as_bad (_("number of registers must be in the range [1:4]"));
3763 ignore_rest_of_line ();
b99bd4ef
NC
3764 return;
3765 }
3766
c19d1205 3767 demand_empty_rest_of_line ();
b99bd4ef 3768
c19d1205
ZW
3769 if (reg == 4)
3770 {
3771 /* Short form. */
3772 op = 0xb4 | (num_regs - 1);
3773 add_unwind_opcode (op, 1);
3774 }
b99bd4ef
NC
3775 else
3776 {
c19d1205
ZW
3777 /* Long form. */
3778 op = 0xc800 | (reg << 4) | (num_regs - 1);
3779 add_unwind_opcode (op, 2);
b99bd4ef 3780 }
c19d1205 3781 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
3782}
3783
c19d1205 3784
fa073d69
MS
3785/* Parse a directive saving VFP registers for ARMv6 and above. */
3786
3787static void
3788s_arm_unwind_save_vfp_armv6 (void)
3789{
3790 int count;
3791 unsigned int start;
3792 valueT op;
3793 int num_vfpv3_regs = 0;
3794 int num_regs_below_16;
3795
3796 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
3797 if (count == FAIL)
3798 {
3799 as_bad (_("expected register list"));
3800 ignore_rest_of_line ();
3801 return;
3802 }
3803
3804 demand_empty_rest_of_line ();
3805
3806 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
3807 than FSTMX/FLDMX-style ones). */
3808
3809 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
3810 if (start >= 16)
3811 num_vfpv3_regs = count;
3812 else if (start + count > 16)
3813 num_vfpv3_regs = start + count - 16;
3814
3815 if (num_vfpv3_regs > 0)
3816 {
3817 int start_offset = start > 16 ? start - 16 : 0;
3818 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
3819 add_unwind_opcode (op, 2);
3820 }
3821
3822 /* Generate opcode for registers numbered in the range 0 .. 15. */
3823 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
9c2799c2 3824 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
fa073d69
MS
3825 if (num_regs_below_16 > 0)
3826 {
3827 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
3828 add_unwind_opcode (op, 2);
3829 }
3830
3831 unwind.frame_size += count * 8;
3832}
3833
3834
3835/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
3836
3837static void
c19d1205 3838s_arm_unwind_save_vfp (void)
b99bd4ef 3839{
c19d1205 3840 int count;
ca3f61f7 3841 unsigned int reg;
c19d1205 3842 valueT op;
b99bd4ef 3843
5287ad62 3844 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 3845 if (count == FAIL)
b99bd4ef 3846 {
c19d1205
ZW
3847 as_bad (_("expected register list"));
3848 ignore_rest_of_line ();
b99bd4ef
NC
3849 return;
3850 }
3851
c19d1205 3852 demand_empty_rest_of_line ();
b99bd4ef 3853
c19d1205 3854 if (reg == 8)
b99bd4ef 3855 {
c19d1205
ZW
3856 /* Short form. */
3857 op = 0xb8 | (count - 1);
3858 add_unwind_opcode (op, 1);
b99bd4ef 3859 }
c19d1205 3860 else
b99bd4ef 3861 {
c19d1205
ZW
3862 /* Long form. */
3863 op = 0xb300 | (reg << 4) | (count - 1);
3864 add_unwind_opcode (op, 2);
b99bd4ef 3865 }
c19d1205
ZW
3866 unwind.frame_size += count * 8 + 4;
3867}
b99bd4ef 3868
b99bd4ef 3869
c19d1205
ZW
3870/* Parse a directive saving iWMMXt data registers. */
3871
3872static void
3873s_arm_unwind_save_mmxwr (void)
3874{
3875 int reg;
3876 int hi_reg;
3877 int i;
3878 unsigned mask = 0;
3879 valueT op;
b99bd4ef 3880
c19d1205
ZW
3881 if (*input_line_pointer == '{')
3882 input_line_pointer++;
b99bd4ef 3883
c19d1205 3884 do
b99bd4ef 3885 {
dcbf9037 3886 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 3887
c19d1205 3888 if (reg == FAIL)
b99bd4ef 3889 {
9b7132d3 3890 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205 3891 goto error;
b99bd4ef
NC
3892 }
3893
c19d1205
ZW
3894 if (mask >> reg)
3895 as_tsktsk (_("register list not in ascending order"));
3896 mask |= 1 << reg;
b99bd4ef 3897
c19d1205
ZW
3898 if (*input_line_pointer == '-')
3899 {
3900 input_line_pointer++;
dcbf9037 3901 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
3902 if (hi_reg == FAIL)
3903 {
9b7132d3 3904 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205
ZW
3905 goto error;
3906 }
3907 else if (reg >= hi_reg)
3908 {
3909 as_bad (_("bad register range"));
3910 goto error;
3911 }
3912 for (; reg < hi_reg; reg++)
3913 mask |= 1 << reg;
3914 }
3915 }
3916 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 3917
c19d1205
ZW
3918 if (*input_line_pointer == '}')
3919 input_line_pointer++;
b99bd4ef 3920
c19d1205 3921 demand_empty_rest_of_line ();
b99bd4ef 3922
708587a4 3923 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
3924 the list. */
3925 flush_pending_unwind ();
b99bd4ef 3926
c19d1205 3927 for (i = 0; i < 16; i++)
b99bd4ef 3928 {
c19d1205
ZW
3929 if (mask & (1 << i))
3930 unwind.frame_size += 8;
b99bd4ef
NC
3931 }
3932
c19d1205
ZW
3933 /* Attempt to combine with a previous opcode. We do this because gcc
3934 likes to output separate unwind directives for a single block of
3935 registers. */
3936 if (unwind.opcode_count > 0)
b99bd4ef 3937 {
c19d1205
ZW
3938 i = unwind.opcodes[unwind.opcode_count - 1];
3939 if ((i & 0xf8) == 0xc0)
3940 {
3941 i &= 7;
3942 /* Only merge if the blocks are contiguous. */
3943 if (i < 6)
3944 {
3945 if ((mask & 0xfe00) == (1 << 9))
3946 {
3947 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
3948 unwind.opcode_count--;
3949 }
3950 }
3951 else if (i == 6 && unwind.opcode_count >= 2)
3952 {
3953 i = unwind.opcodes[unwind.opcode_count - 2];
3954 reg = i >> 4;
3955 i &= 0xf;
b99bd4ef 3956
c19d1205
ZW
3957 op = 0xffff << (reg - 1);
3958 if (reg > 0
87a1fd79 3959 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
3960 {
3961 op = (1 << (reg + i + 1)) - 1;
3962 op &= ~((1 << reg) - 1);
3963 mask |= op;
3964 unwind.opcode_count -= 2;
3965 }
3966 }
3967 }
b99bd4ef
NC
3968 }
3969
c19d1205
ZW
3970 hi_reg = 15;
3971 /* We want to generate opcodes in the order the registers have been
3972 saved, ie. descending order. */
3973 for (reg = 15; reg >= -1; reg--)
b99bd4ef 3974 {
c19d1205
ZW
3975 /* Save registers in blocks. */
3976 if (reg < 0
3977 || !(mask & (1 << reg)))
3978 {
3979 /* We found an unsaved reg. Generate opcodes to save the
5f4273c7 3980 preceding block. */
c19d1205
ZW
3981 if (reg != hi_reg)
3982 {
3983 if (reg == 9)
3984 {
3985 /* Short form. */
3986 op = 0xc0 | (hi_reg - 10);
3987 add_unwind_opcode (op, 1);
3988 }
3989 else
3990 {
3991 /* Long form. */
3992 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
3993 add_unwind_opcode (op, 2);
3994 }
3995 }
3996 hi_reg = reg - 1;
3997 }
b99bd4ef
NC
3998 }
3999
c19d1205
ZW
4000 return;
4001error:
4002 ignore_rest_of_line ();
b99bd4ef
NC
4003}
4004
4005static void
c19d1205 4006s_arm_unwind_save_mmxwcg (void)
b99bd4ef 4007{
c19d1205
ZW
4008 int reg;
4009 int hi_reg;
4010 unsigned mask = 0;
4011 valueT op;
b99bd4ef 4012
c19d1205
ZW
4013 if (*input_line_pointer == '{')
4014 input_line_pointer++;
b99bd4ef 4015
c19d1205 4016 do
b99bd4ef 4017 {
dcbf9037 4018 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 4019
c19d1205
ZW
4020 if (reg == FAIL)
4021 {
9b7132d3 4022 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4023 goto error;
4024 }
b99bd4ef 4025
c19d1205
ZW
4026 reg -= 8;
4027 if (mask >> reg)
4028 as_tsktsk (_("register list not in ascending order"));
4029 mask |= 1 << reg;
b99bd4ef 4030
c19d1205
ZW
4031 if (*input_line_pointer == '-')
4032 {
4033 input_line_pointer++;
dcbf9037 4034 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
4035 if (hi_reg == FAIL)
4036 {
9b7132d3 4037 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4038 goto error;
4039 }
4040 else if (reg >= hi_reg)
4041 {
4042 as_bad (_("bad register range"));
4043 goto error;
4044 }
4045 for (; reg < hi_reg; reg++)
4046 mask |= 1 << reg;
4047 }
b99bd4ef 4048 }
c19d1205 4049 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4050
c19d1205
ZW
4051 if (*input_line_pointer == '}')
4052 input_line_pointer++;
b99bd4ef 4053
c19d1205
ZW
4054 demand_empty_rest_of_line ();
4055
708587a4 4056 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4057 the list. */
4058 flush_pending_unwind ();
b99bd4ef 4059
c19d1205 4060 for (reg = 0; reg < 16; reg++)
b99bd4ef 4061 {
c19d1205
ZW
4062 if (mask & (1 << reg))
4063 unwind.frame_size += 4;
b99bd4ef 4064 }
c19d1205
ZW
4065 op = 0xc700 | mask;
4066 add_unwind_opcode (op, 2);
4067 return;
4068error:
4069 ignore_rest_of_line ();
b99bd4ef
NC
4070}
4071
c19d1205 4072
fa073d69
MS
4073/* Parse an unwind_save directive.
4074 If the argument is non-zero, this is a .vsave directive. */
c19d1205 4075
b99bd4ef 4076static void
fa073d69 4077s_arm_unwind_save (int arch_v6)
b99bd4ef 4078{
c19d1205
ZW
4079 char *peek;
4080 struct reg_entry *reg;
4081 bfd_boolean had_brace = FALSE;
b99bd4ef 4082
921e5f0a 4083 if (!unwind.proc_start)
c921be7d 4084 as_bad (MISSING_FNSTART);
921e5f0a 4085
c19d1205
ZW
4086 /* Figure out what sort of save we have. */
4087 peek = input_line_pointer;
b99bd4ef 4088
c19d1205 4089 if (*peek == '{')
b99bd4ef 4090 {
c19d1205
ZW
4091 had_brace = TRUE;
4092 peek++;
b99bd4ef
NC
4093 }
4094
c19d1205 4095 reg = arm_reg_parse_multi (&peek);
b99bd4ef 4096
c19d1205 4097 if (!reg)
b99bd4ef 4098 {
c19d1205
ZW
4099 as_bad (_("register expected"));
4100 ignore_rest_of_line ();
b99bd4ef
NC
4101 return;
4102 }
4103
c19d1205 4104 switch (reg->type)
b99bd4ef 4105 {
c19d1205
ZW
4106 case REG_TYPE_FN:
4107 if (had_brace)
4108 {
4109 as_bad (_("FPA .unwind_save does not take a register list"));
4110 ignore_rest_of_line ();
4111 return;
4112 }
93ac2687 4113 input_line_pointer = peek;
c19d1205 4114 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 4115 return;
c19d1205
ZW
4116
4117 case REG_TYPE_RN: s_arm_unwind_save_core (); return;
fa073d69
MS
4118 case REG_TYPE_VFD:
4119 if (arch_v6)
4120 s_arm_unwind_save_vfp_armv6 ();
4121 else
4122 s_arm_unwind_save_vfp ();
4123 return;
c19d1205
ZW
4124 case REG_TYPE_MMXWR: s_arm_unwind_save_mmxwr (); return;
4125 case REG_TYPE_MMXWCG: s_arm_unwind_save_mmxwcg (); return;
4126
4127 default:
4128 as_bad (_(".unwind_save does not support this kind of register"));
4129 ignore_rest_of_line ();
b99bd4ef 4130 }
c19d1205 4131}
b99bd4ef 4132
b99bd4ef 4133
c19d1205
ZW
4134/* Parse an unwind_movsp directive. */
4135
4136static void
4137s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4138{
4139 int reg;
4140 valueT op;
4fa3602b 4141 int offset;
c19d1205 4142
921e5f0a 4143 if (!unwind.proc_start)
c921be7d 4144 as_bad (MISSING_FNSTART);
921e5f0a 4145
dcbf9037 4146 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 4147 if (reg == FAIL)
b99bd4ef 4148 {
9b7132d3 4149 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
c19d1205 4150 ignore_rest_of_line ();
b99bd4ef
NC
4151 return;
4152 }
4fa3602b
PB
4153
4154 /* Optional constant. */
4155 if (skip_past_comma (&input_line_pointer) != FAIL)
4156 {
4157 if (immediate_for_directive (&offset) == FAIL)
4158 return;
4159 }
4160 else
4161 offset = 0;
4162
c19d1205 4163 demand_empty_rest_of_line ();
b99bd4ef 4164
c19d1205 4165 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 4166 {
c19d1205 4167 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
4168 return;
4169 }
4170
c19d1205
ZW
4171 if (unwind.fp_reg != REG_SP)
4172 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 4173
c19d1205
ZW
4174 /* Generate opcode to restore the value. */
4175 op = 0x90 | reg;
4176 add_unwind_opcode (op, 1);
4177
4178 /* Record the information for later. */
4179 unwind.fp_reg = reg;
4fa3602b 4180 unwind.fp_offset = unwind.frame_size - offset;
c19d1205 4181 unwind.sp_restored = 1;
b05fe5cf
ZW
4182}
4183
c19d1205
ZW
4184/* Parse an unwind_pad directive. */
4185
b05fe5cf 4186static void
c19d1205 4187s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 4188{
c19d1205 4189 int offset;
b05fe5cf 4190
921e5f0a 4191 if (!unwind.proc_start)
c921be7d 4192 as_bad (MISSING_FNSTART);
921e5f0a 4193
c19d1205
ZW
4194 if (immediate_for_directive (&offset) == FAIL)
4195 return;
b99bd4ef 4196
c19d1205
ZW
4197 if (offset & 3)
4198 {
4199 as_bad (_("stack increment must be multiple of 4"));
4200 ignore_rest_of_line ();
4201 return;
4202 }
b99bd4ef 4203
c19d1205
ZW
4204 /* Don't generate any opcodes, just record the details for later. */
4205 unwind.frame_size += offset;
4206 unwind.pending_offset += offset;
4207
4208 demand_empty_rest_of_line ();
4209}
4210
4211/* Parse an unwind_setfp directive. */
4212
4213static void
4214s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 4215{
c19d1205
ZW
4216 int sp_reg;
4217 int fp_reg;
4218 int offset;
4219
921e5f0a 4220 if (!unwind.proc_start)
c921be7d 4221 as_bad (MISSING_FNSTART);
921e5f0a 4222
dcbf9037 4223 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
4224 if (skip_past_comma (&input_line_pointer) == FAIL)
4225 sp_reg = FAIL;
4226 else
dcbf9037 4227 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 4228
c19d1205
ZW
4229 if (fp_reg == FAIL || sp_reg == FAIL)
4230 {
4231 as_bad (_("expected <reg>, <reg>"));
4232 ignore_rest_of_line ();
4233 return;
4234 }
b99bd4ef 4235
c19d1205
ZW
4236 /* Optional constant. */
4237 if (skip_past_comma (&input_line_pointer) != FAIL)
4238 {
4239 if (immediate_for_directive (&offset) == FAIL)
4240 return;
4241 }
4242 else
4243 offset = 0;
a737bd4d 4244
c19d1205 4245 demand_empty_rest_of_line ();
a737bd4d 4246
fdfde340 4247 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
a737bd4d 4248 {
c19d1205
ZW
4249 as_bad (_("register must be either sp or set by a previous"
4250 "unwind_movsp directive"));
4251 return;
a737bd4d
NC
4252 }
4253
c19d1205
ZW
4254 /* Don't generate any opcodes, just record the information for later. */
4255 unwind.fp_reg = fp_reg;
4256 unwind.fp_used = 1;
fdfde340 4257 if (sp_reg == REG_SP)
c19d1205
ZW
4258 unwind.fp_offset = unwind.frame_size - offset;
4259 else
4260 unwind.fp_offset -= offset;
a737bd4d
NC
4261}
4262
c19d1205
ZW
4263/* Parse an unwind_raw directive. */
4264
4265static void
4266s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 4267{
c19d1205 4268 expressionS exp;
708587a4 4269 /* This is an arbitrary limit. */
c19d1205
ZW
4270 unsigned char op[16];
4271 int count;
a737bd4d 4272
921e5f0a 4273 if (!unwind.proc_start)
c921be7d 4274 as_bad (MISSING_FNSTART);
921e5f0a 4275
c19d1205
ZW
4276 expression (&exp);
4277 if (exp.X_op == O_constant
4278 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 4279 {
c19d1205
ZW
4280 unwind.frame_size += exp.X_add_number;
4281 expression (&exp);
4282 }
4283 else
4284 exp.X_op = O_illegal;
a737bd4d 4285
c19d1205
ZW
4286 if (exp.X_op != O_constant)
4287 {
4288 as_bad (_("expected <offset>, <opcode>"));
4289 ignore_rest_of_line ();
4290 return;
4291 }
a737bd4d 4292
c19d1205 4293 count = 0;
a737bd4d 4294
c19d1205
ZW
4295 /* Parse the opcode. */
4296 for (;;)
4297 {
4298 if (count >= 16)
4299 {
4300 as_bad (_("unwind opcode too long"));
4301 ignore_rest_of_line ();
a737bd4d 4302 }
c19d1205 4303 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 4304 {
c19d1205
ZW
4305 as_bad (_("invalid unwind opcode"));
4306 ignore_rest_of_line ();
4307 return;
a737bd4d 4308 }
c19d1205 4309 op[count++] = exp.X_add_number;
a737bd4d 4310
c19d1205
ZW
4311 /* Parse the next byte. */
4312 if (skip_past_comma (&input_line_pointer) == FAIL)
4313 break;
a737bd4d 4314
c19d1205
ZW
4315 expression (&exp);
4316 }
b99bd4ef 4317
c19d1205
ZW
4318 /* Add the opcode bytes in reverse order. */
4319 while (count--)
4320 add_unwind_opcode (op[count], 1);
b99bd4ef 4321
c19d1205 4322 demand_empty_rest_of_line ();
b99bd4ef 4323}
ee065d83
PB
4324
4325
4326/* Parse a .eabi_attribute directive. */
4327
4328static void
4329s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4330{
ee3c0378
AS
4331 int tag = s_vendor_attribute (OBJ_ATTR_PROC);
4332
4333 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4334 attributes_set_explicitly[tag] = 1;
ee065d83
PB
4335}
4336
0855e32b
NS
4337/* Emit a tls fix for the symbol. */
4338
4339static void
4340s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4341{
4342 char *p;
4343 expressionS exp;
4344#ifdef md_flush_pending_output
4345 md_flush_pending_output ();
4346#endif
4347
4348#ifdef md_cons_align
4349 md_cons_align (4);
4350#endif
4351
4352 /* Since we're just labelling the code, there's no need to define a
4353 mapping symbol. */
4354 expression (&exp);
4355 p = obstack_next_free (&frchain_now->frch_obstack);
4356 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4357 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4358 : BFD_RELOC_ARM_TLS_DESCSEQ);
4359}
cdf9ccec 4360#endif /* OBJ_ELF */
0855e32b 4361
ee065d83 4362static void s_arm_arch (int);
7a1d4c38 4363static void s_arm_object_arch (int);
ee065d83
PB
4364static void s_arm_cpu (int);
4365static void s_arm_fpu (int);
69133863 4366static void s_arm_arch_extension (int);
b99bd4ef 4367
f0927246
NC
4368#ifdef TE_PE
4369
4370static void
5f4273c7 4371pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
f0927246
NC
4372{
4373 expressionS exp;
4374
4375 do
4376 {
4377 expression (&exp);
4378 if (exp.X_op == O_symbol)
4379 exp.X_op = O_secrel;
4380
4381 emit_expr (&exp, 4);
4382 }
4383 while (*input_line_pointer++ == ',');
4384
4385 input_line_pointer--;
4386 demand_empty_rest_of_line ();
4387}
4388#endif /* TE_PE */
4389
c19d1205
ZW
4390/* This table describes all the machine specific pseudo-ops the assembler
4391 has to support. The fields are:
4392 pseudo-op name without dot
4393 function to call to execute this pseudo-op
4394 Integer arg to pass to the function. */
b99bd4ef 4395
c19d1205 4396const pseudo_typeS md_pseudo_table[] =
b99bd4ef 4397{
c19d1205
ZW
4398 /* Never called because '.req' does not start a line. */
4399 { "req", s_req, 0 },
dcbf9037
JB
4400 /* Following two are likewise never called. */
4401 { "dn", s_dn, 0 },
4402 { "qn", s_qn, 0 },
c19d1205
ZW
4403 { "unreq", s_unreq, 0 },
4404 { "bss", s_bss, 0 },
4405 { "align", s_align, 0 },
4406 { "arm", s_arm, 0 },
4407 { "thumb", s_thumb, 0 },
4408 { "code", s_code, 0 },
4409 { "force_thumb", s_force_thumb, 0 },
4410 { "thumb_func", s_thumb_func, 0 },
4411 { "thumb_set", s_thumb_set, 0 },
4412 { "even", s_even, 0 },
4413 { "ltorg", s_ltorg, 0 },
4414 { "pool", s_ltorg, 0 },
4415 { "syntax", s_syntax, 0 },
8463be01
PB
4416 { "cpu", s_arm_cpu, 0 },
4417 { "arch", s_arm_arch, 0 },
7a1d4c38 4418 { "object_arch", s_arm_object_arch, 0 },
8463be01 4419 { "fpu", s_arm_fpu, 0 },
69133863 4420 { "arch_extension", s_arm_arch_extension, 0 },
c19d1205 4421#ifdef OBJ_ELF
c921be7d
NC
4422 { "word", s_arm_elf_cons, 4 },
4423 { "long", s_arm_elf_cons, 4 },
4424 { "inst.n", s_arm_elf_inst, 2 },
4425 { "inst.w", s_arm_elf_inst, 4 },
4426 { "inst", s_arm_elf_inst, 0 },
4427 { "rel31", s_arm_rel31, 0 },
c19d1205
ZW
4428 { "fnstart", s_arm_unwind_fnstart, 0 },
4429 { "fnend", s_arm_unwind_fnend, 0 },
4430 { "cantunwind", s_arm_unwind_cantunwind, 0 },
4431 { "personality", s_arm_unwind_personality, 0 },
4432 { "personalityindex", s_arm_unwind_personalityindex, 0 },
4433 { "handlerdata", s_arm_unwind_handlerdata, 0 },
4434 { "save", s_arm_unwind_save, 0 },
fa073d69 4435 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
4436 { "movsp", s_arm_unwind_movsp, 0 },
4437 { "pad", s_arm_unwind_pad, 0 },
4438 { "setfp", s_arm_unwind_setfp, 0 },
4439 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 4440 { "eabi_attribute", s_arm_eabi_attribute, 0 },
0855e32b 4441 { "tlsdescseq", s_arm_tls_descseq, 0 },
c19d1205
ZW
4442#else
4443 { "word", cons, 4},
f0927246
NC
4444
4445 /* These are used for dwarf. */
4446 {"2byte", cons, 2},
4447 {"4byte", cons, 4},
4448 {"8byte", cons, 8},
4449 /* These are used for dwarf2. */
4450 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
4451 { "loc", dwarf2_directive_loc, 0 },
4452 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
4453#endif
4454 { "extend", float_cons, 'x' },
4455 { "ldouble", float_cons, 'x' },
4456 { "packed", float_cons, 'p' },
f0927246
NC
4457#ifdef TE_PE
4458 {"secrel32", pe_directive_secrel, 0},
4459#endif
c19d1205
ZW
4460 { 0, 0, 0 }
4461};
4462\f
4463/* Parser functions used exclusively in instruction operands. */
b99bd4ef 4464
c19d1205
ZW
4465/* Generic immediate-value read function for use in insn parsing.
4466 STR points to the beginning of the immediate (the leading #);
4467 VAL receives the value; if the value is outside [MIN, MAX]
4468 issue an error. PREFIX_OPT is true if the immediate prefix is
4469 optional. */
b99bd4ef 4470
c19d1205
ZW
4471static int
4472parse_immediate (char **str, int *val, int min, int max,
4473 bfd_boolean prefix_opt)
4474{
4475 expressionS exp;
4476 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
4477 if (exp.X_op != O_constant)
b99bd4ef 4478 {
c19d1205
ZW
4479 inst.error = _("constant expression required");
4480 return FAIL;
4481 }
b99bd4ef 4482
c19d1205
ZW
4483 if (exp.X_add_number < min || exp.X_add_number > max)
4484 {
4485 inst.error = _("immediate value out of range");
4486 return FAIL;
4487 }
b99bd4ef 4488
c19d1205
ZW
4489 *val = exp.X_add_number;
4490 return SUCCESS;
4491}
b99bd4ef 4492
5287ad62 4493/* Less-generic immediate-value read function with the possibility of loading a
036dc3f7 4494 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5287ad62
JB
4495 instructions. Puts the result directly in inst.operands[i]. */
4496
4497static int
4498parse_big_immediate (char **str, int i)
4499{
4500 expressionS exp;
4501 char *ptr = *str;
4502
4503 my_get_expression (&exp, &ptr, GE_OPT_PREFIX_BIG);
4504
4505 if (exp.X_op == O_constant)
036dc3f7
PB
4506 {
4507 inst.operands[i].imm = exp.X_add_number & 0xffffffff;
4508 /* If we're on a 64-bit host, then a 64-bit number can be returned using
4509 O_constant. We have to be careful not to break compilation for
4510 32-bit X_add_number, though. */
58ad575f 4511 if ((exp.X_add_number & ~(offsetT)(0xffffffffU)) != 0)
036dc3f7
PB
4512 {
4513 /* X >> 32 is illegal if sizeof (exp.X_add_number) == 4. */
4514 inst.operands[i].reg = ((exp.X_add_number >> 16) >> 16) & 0xffffffff;
4515 inst.operands[i].regisimm = 1;
4516 }
4517 }
5287ad62 4518 else if (exp.X_op == O_big
95b75c01 4519 && LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 32)
5287ad62
JB
4520 {
4521 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
95b75c01 4522
5287ad62
JB
4523 /* Bignums have their least significant bits in
4524 generic_bignum[0]. Make sure we put 32 bits in imm and
4525 32 bits in reg, in a (hopefully) portable way. */
9c2799c2 4526 gas_assert (parts != 0);
95b75c01
NC
4527
4528 /* Make sure that the number is not too big.
4529 PR 11972: Bignums can now be sign-extended to the
4530 size of a .octa so check that the out of range bits
4531 are all zero or all one. */
4532 if (LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 64)
4533 {
4534 LITTLENUM_TYPE m = -1;
4535
4536 if (generic_bignum[parts * 2] != 0
4537 && generic_bignum[parts * 2] != m)
4538 return FAIL;
4539
4540 for (j = parts * 2 + 1; j < (unsigned) exp.X_add_number; j++)
4541 if (generic_bignum[j] != generic_bignum[j-1])
4542 return FAIL;
4543 }
4544
5287ad62
JB
4545 inst.operands[i].imm = 0;
4546 for (j = 0; j < parts; j++, idx++)
4547 inst.operands[i].imm |= generic_bignum[idx]
4548 << (LITTLENUM_NUMBER_OF_BITS * j);
4549 inst.operands[i].reg = 0;
4550 for (j = 0; j < parts; j++, idx++)
4551 inst.operands[i].reg |= generic_bignum[idx]
4552 << (LITTLENUM_NUMBER_OF_BITS * j);
4553 inst.operands[i].regisimm = 1;
4554 }
4555 else
4556 return FAIL;
5f4273c7 4557
5287ad62
JB
4558 *str = ptr;
4559
4560 return SUCCESS;
4561}
4562
c19d1205
ZW
4563/* Returns the pseudo-register number of an FPA immediate constant,
4564 or FAIL if there isn't a valid constant here. */
b99bd4ef 4565
c19d1205
ZW
4566static int
4567parse_fpa_immediate (char ** str)
4568{
4569 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4570 char * save_in;
4571 expressionS exp;
4572 int i;
4573 int j;
b99bd4ef 4574
c19d1205
ZW
4575 /* First try and match exact strings, this is to guarantee
4576 that some formats will work even for cross assembly. */
b99bd4ef 4577
c19d1205
ZW
4578 for (i = 0; fp_const[i]; i++)
4579 {
4580 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4581 {
c19d1205 4582 char *start = *str;
b99bd4ef 4583
c19d1205
ZW
4584 *str += strlen (fp_const[i]);
4585 if (is_end_of_line[(unsigned char) **str])
4586 return i + 8;
4587 *str = start;
4588 }
4589 }
b99bd4ef 4590
c19d1205
ZW
4591 /* Just because we didn't get a match doesn't mean that the constant
4592 isn't valid, just that it is in a format that we don't
4593 automatically recognize. Try parsing it with the standard
4594 expression routines. */
b99bd4ef 4595
c19d1205 4596 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4597
c19d1205
ZW
4598 /* Look for a raw floating point number. */
4599 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4600 && is_end_of_line[(unsigned char) *save_in])
4601 {
4602 for (i = 0; i < NUM_FLOAT_VALS; i++)
4603 {
4604 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4605 {
c19d1205
ZW
4606 if (words[j] != fp_values[i][j])
4607 break;
b99bd4ef
NC
4608 }
4609
c19d1205 4610 if (j == MAX_LITTLENUMS)
b99bd4ef 4611 {
c19d1205
ZW
4612 *str = save_in;
4613 return i + 8;
b99bd4ef
NC
4614 }
4615 }
4616 }
b99bd4ef 4617
c19d1205
ZW
4618 /* Try and parse a more complex expression, this will probably fail
4619 unless the code uses a floating point prefix (eg "0f"). */
4620 save_in = input_line_pointer;
4621 input_line_pointer = *str;
4622 if (expression (&exp) == absolute_section
4623 && exp.X_op == O_big
4624 && exp.X_add_number < 0)
4625 {
4626 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4627 Ditto for 15. */
4628 if (gen_to_words (words, 5, (long) 15) == 0)
4629 {
4630 for (i = 0; i < NUM_FLOAT_VALS; i++)
4631 {
4632 for (j = 0; j < MAX_LITTLENUMS; j++)
4633 {
4634 if (words[j] != fp_values[i][j])
4635 break;
4636 }
b99bd4ef 4637
c19d1205
ZW
4638 if (j == MAX_LITTLENUMS)
4639 {
4640 *str = input_line_pointer;
4641 input_line_pointer = save_in;
4642 return i + 8;
4643 }
4644 }
4645 }
b99bd4ef
NC
4646 }
4647
c19d1205
ZW
4648 *str = input_line_pointer;
4649 input_line_pointer = save_in;
4650 inst.error = _("invalid FPA immediate expression");
4651 return FAIL;
b99bd4ef
NC
4652}
4653
136da414
JB
4654/* Returns 1 if a number has "quarter-precision" float format
4655 0baBbbbbbc defgh000 00000000 00000000. */
4656
4657static int
4658is_quarter_float (unsigned imm)
4659{
4660 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4661 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4662}
4663
4664/* Parse an 8-bit "quarter-precision" floating point number of the form:
4665 0baBbbbbbc defgh000 00000000 00000000.
c96612cc
JB
4666 The zero and minus-zero cases need special handling, since they can't be
4667 encoded in the "quarter-precision" float format, but can nonetheless be
4668 loaded as integer constants. */
136da414
JB
4669
4670static unsigned
4671parse_qfloat_immediate (char **ccp, int *immed)
4672{
4673 char *str = *ccp;
c96612cc 4674 char *fpnum;
136da414 4675 LITTLENUM_TYPE words[MAX_LITTLENUMS];
c96612cc 4676 int found_fpchar = 0;
5f4273c7 4677
136da414 4678 skip_past_char (&str, '#');
5f4273c7 4679
c96612cc
JB
4680 /* We must not accidentally parse an integer as a floating-point number. Make
4681 sure that the value we parse is not an integer by checking for special
4682 characters '.' or 'e'.
4683 FIXME: This is a horrible hack, but doing better is tricky because type
4684 information isn't in a very usable state at parse time. */
4685 fpnum = str;
4686 skip_whitespace (fpnum);
4687
4688 if (strncmp (fpnum, "0x", 2) == 0)
4689 return FAIL;
4690 else
4691 {
4692 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
4693 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
4694 {
4695 found_fpchar = 1;
4696 break;
4697 }
4698
4699 if (!found_fpchar)
4700 return FAIL;
4701 }
5f4273c7 4702
136da414
JB
4703 if ((str = atof_ieee (str, 's', words)) != NULL)
4704 {
4705 unsigned fpword = 0;
4706 int i;
5f4273c7 4707
136da414
JB
4708 /* Our FP word must be 32 bits (single-precision FP). */
4709 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
4710 {
4711 fpword <<= LITTLENUM_NUMBER_OF_BITS;
4712 fpword |= words[i];
4713 }
5f4273c7 4714
c96612cc 4715 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
136da414
JB
4716 *immed = fpword;
4717 else
4718 return FAIL;
4719
4720 *ccp = str;
5f4273c7 4721
136da414
JB
4722 return SUCCESS;
4723 }
5f4273c7 4724
136da414
JB
4725 return FAIL;
4726}
4727
c19d1205
ZW
4728/* Shift operands. */
4729enum shift_kind
b99bd4ef 4730{
c19d1205
ZW
4731 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
4732};
b99bd4ef 4733
c19d1205
ZW
4734struct asm_shift_name
4735{
4736 const char *name;
4737 enum shift_kind kind;
4738};
b99bd4ef 4739
c19d1205
ZW
4740/* Third argument to parse_shift. */
4741enum parse_shift_mode
4742{
4743 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
4744 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
4745 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
4746 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
4747 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
4748};
b99bd4ef 4749
c19d1205
ZW
4750/* Parse a <shift> specifier on an ARM data processing instruction.
4751 This has three forms:
b99bd4ef 4752
c19d1205
ZW
4753 (LSL|LSR|ASL|ASR|ROR) Rs
4754 (LSL|LSR|ASL|ASR|ROR) #imm
4755 RRX
b99bd4ef 4756
c19d1205
ZW
4757 Note that ASL is assimilated to LSL in the instruction encoding, and
4758 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 4759
c19d1205
ZW
4760static int
4761parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 4762{
c19d1205
ZW
4763 const struct asm_shift_name *shift_name;
4764 enum shift_kind shift;
4765 char *s = *str;
4766 char *p = s;
4767 int reg;
b99bd4ef 4768
c19d1205
ZW
4769 for (p = *str; ISALPHA (*p); p++)
4770 ;
b99bd4ef 4771
c19d1205 4772 if (p == *str)
b99bd4ef 4773 {
c19d1205
ZW
4774 inst.error = _("shift expression expected");
4775 return FAIL;
b99bd4ef
NC
4776 }
4777
21d799b5
NC
4778 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
4779 p - *str);
c19d1205
ZW
4780
4781 if (shift_name == NULL)
b99bd4ef 4782 {
c19d1205
ZW
4783 inst.error = _("shift expression expected");
4784 return FAIL;
b99bd4ef
NC
4785 }
4786
c19d1205 4787 shift = shift_name->kind;
b99bd4ef 4788
c19d1205
ZW
4789 switch (mode)
4790 {
4791 case NO_SHIFT_RESTRICT:
4792 case SHIFT_IMMEDIATE: break;
b99bd4ef 4793
c19d1205
ZW
4794 case SHIFT_LSL_OR_ASR_IMMEDIATE:
4795 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
4796 {
4797 inst.error = _("'LSL' or 'ASR' required");
4798 return FAIL;
4799 }
4800 break;
b99bd4ef 4801
c19d1205
ZW
4802 case SHIFT_LSL_IMMEDIATE:
4803 if (shift != SHIFT_LSL)
4804 {
4805 inst.error = _("'LSL' required");
4806 return FAIL;
4807 }
4808 break;
b99bd4ef 4809
c19d1205
ZW
4810 case SHIFT_ASR_IMMEDIATE:
4811 if (shift != SHIFT_ASR)
4812 {
4813 inst.error = _("'ASR' required");
4814 return FAIL;
4815 }
4816 break;
b99bd4ef 4817
c19d1205
ZW
4818 default: abort ();
4819 }
b99bd4ef 4820
c19d1205
ZW
4821 if (shift != SHIFT_RRX)
4822 {
4823 /* Whitespace can appear here if the next thing is a bare digit. */
4824 skip_whitespace (p);
b99bd4ef 4825
c19d1205 4826 if (mode == NO_SHIFT_RESTRICT
dcbf9037 4827 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4828 {
4829 inst.operands[i].imm = reg;
4830 inst.operands[i].immisreg = 1;
4831 }
4832 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4833 return FAIL;
4834 }
4835 inst.operands[i].shift_kind = shift;
4836 inst.operands[i].shifted = 1;
4837 *str = p;
4838 return SUCCESS;
b99bd4ef
NC
4839}
4840
c19d1205 4841/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 4842
c19d1205
ZW
4843 #<immediate>
4844 #<immediate>, <rotate>
4845 <Rm>
4846 <Rm>, <shift>
b99bd4ef 4847
c19d1205
ZW
4848 where <shift> is defined by parse_shift above, and <rotate> is a
4849 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 4850 is deferred to md_apply_fix. */
b99bd4ef 4851
c19d1205
ZW
4852static int
4853parse_shifter_operand (char **str, int i)
4854{
4855 int value;
91d6fa6a 4856 expressionS exp;
b99bd4ef 4857
dcbf9037 4858 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4859 {
4860 inst.operands[i].reg = value;
4861 inst.operands[i].isreg = 1;
b99bd4ef 4862
c19d1205
ZW
4863 /* parse_shift will override this if appropriate */
4864 inst.reloc.exp.X_op = O_constant;
4865 inst.reloc.exp.X_add_number = 0;
b99bd4ef 4866
c19d1205
ZW
4867 if (skip_past_comma (str) == FAIL)
4868 return SUCCESS;
b99bd4ef 4869
c19d1205
ZW
4870 /* Shift operation on register. */
4871 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
4872 }
4873
c19d1205
ZW
4874 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
4875 return FAIL;
b99bd4ef 4876
c19d1205 4877 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 4878 {
c19d1205 4879 /* #x, y -- ie explicit rotation by Y. */
91d6fa6a 4880 if (my_get_expression (&exp, str, GE_NO_PREFIX))
c19d1205 4881 return FAIL;
b99bd4ef 4882
91d6fa6a 4883 if (exp.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
c19d1205
ZW
4884 {
4885 inst.error = _("constant expression expected");
4886 return FAIL;
4887 }
b99bd4ef 4888
91d6fa6a 4889 value = exp.X_add_number;
c19d1205
ZW
4890 if (value < 0 || value > 30 || value % 2 != 0)
4891 {
4892 inst.error = _("invalid rotation");
4893 return FAIL;
4894 }
4895 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
4896 {
4897 inst.error = _("invalid constant");
4898 return FAIL;
4899 }
09d92015 4900
a415b1cd
JB
4901 /* Encode as specified. */
4902 inst.operands[i].imm = inst.reloc.exp.X_add_number | value << 7;
4903 return SUCCESS;
09d92015
MM
4904 }
4905
c19d1205
ZW
4906 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
4907 inst.reloc.pc_rel = 0;
4908 return SUCCESS;
09d92015
MM
4909}
4910
4962c51a
MS
4911/* Group relocation information. Each entry in the table contains the
4912 textual name of the relocation as may appear in assembler source
4913 and must end with a colon.
4914 Along with this textual name are the relocation codes to be used if
4915 the corresponding instruction is an ALU instruction (ADD or SUB only),
4916 an LDR, an LDRS, or an LDC. */
4917
4918struct group_reloc_table_entry
4919{
4920 const char *name;
4921 int alu_code;
4922 int ldr_code;
4923 int ldrs_code;
4924 int ldc_code;
4925};
4926
4927typedef enum
4928{
4929 /* Varieties of non-ALU group relocation. */
4930
4931 GROUP_LDR,
4932 GROUP_LDRS,
4933 GROUP_LDC
4934} group_reloc_type;
4935
4936static struct group_reloc_table_entry group_reloc_table[] =
4937 { /* Program counter relative: */
4938 { "pc_g0_nc",
4939 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
4940 0, /* LDR */
4941 0, /* LDRS */
4942 0 }, /* LDC */
4943 { "pc_g0",
4944 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
4945 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
4946 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
4947 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
4948 { "pc_g1_nc",
4949 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
4950 0, /* LDR */
4951 0, /* LDRS */
4952 0 }, /* LDC */
4953 { "pc_g1",
4954 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
4955 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
4956 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
4957 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
4958 { "pc_g2",
4959 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
4960 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
4961 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
4962 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
4963 /* Section base relative */
4964 { "sb_g0_nc",
4965 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
4966 0, /* LDR */
4967 0, /* LDRS */
4968 0 }, /* LDC */
4969 { "sb_g0",
4970 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
4971 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
4972 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
4973 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
4974 { "sb_g1_nc",
4975 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
4976 0, /* LDR */
4977 0, /* LDRS */
4978 0 }, /* LDC */
4979 { "sb_g1",
4980 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
4981 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
4982 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
4983 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
4984 { "sb_g2",
4985 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
4986 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
4987 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
4988 BFD_RELOC_ARM_LDC_SB_G2 } }; /* LDC */
4989
4990/* Given the address of a pointer pointing to the textual name of a group
4991 relocation as may appear in assembler source, attempt to find its details
4992 in group_reloc_table. The pointer will be updated to the character after
4993 the trailing colon. On failure, FAIL will be returned; SUCCESS
4994 otherwise. On success, *entry will be updated to point at the relevant
4995 group_reloc_table entry. */
4996
4997static int
4998find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
4999{
5000 unsigned int i;
5001 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5002 {
5003 int length = strlen (group_reloc_table[i].name);
5004
5f4273c7
NC
5005 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5006 && (*str)[length] == ':')
4962c51a
MS
5007 {
5008 *out = &group_reloc_table[i];
5009 *str += (length + 1);
5010 return SUCCESS;
5011 }
5012 }
5013
5014 return FAIL;
5015}
5016
5017/* Parse a <shifter_operand> for an ARM data processing instruction
5018 (as for parse_shifter_operand) where group relocations are allowed:
5019
5020 #<immediate>
5021 #<immediate>, <rotate>
5022 #:<group_reloc>:<expression>
5023 <Rm>
5024 <Rm>, <shift>
5025
5026 where <group_reloc> is one of the strings defined in group_reloc_table.
5027 The hashes are optional.
5028
5029 Everything else is as for parse_shifter_operand. */
5030
5031static parse_operand_result
5032parse_shifter_operand_group_reloc (char **str, int i)
5033{
5034 /* Determine if we have the sequence of characters #: or just :
5035 coming next. If we do, then we check for a group relocation.
5036 If we don't, punt the whole lot to parse_shifter_operand. */
5037
5038 if (((*str)[0] == '#' && (*str)[1] == ':')
5039 || (*str)[0] == ':')
5040 {
5041 struct group_reloc_table_entry *entry;
5042
5043 if ((*str)[0] == '#')
5044 (*str) += 2;
5045 else
5046 (*str)++;
5047
5048 /* Try to parse a group relocation. Anything else is an error. */
5049 if (find_group_reloc_table_entry (str, &entry) == FAIL)
5050 {
5051 inst.error = _("unknown group relocation");
5052 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5053 }
5054
5055 /* We now have the group relocation table entry corresponding to
5056 the name in the assembler source. Next, we parse the expression. */
5057 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
5058 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5059
5060 /* Record the relocation type (always the ALU variant here). */
21d799b5 5061 inst.reloc.type = (bfd_reloc_code_real_type) entry->alu_code;
9c2799c2 5062 gas_assert (inst.reloc.type != 0);
4962c51a
MS
5063
5064 return PARSE_OPERAND_SUCCESS;
5065 }
5066 else
5067 return parse_shifter_operand (str, i) == SUCCESS
5068 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
5069
5070 /* Never reached. */
5071}
5072
8e560766
MGD
5073/* Parse a Neon alignment expression. Information is written to
5074 inst.operands[i]. We assume the initial ':' has been skipped.
fa94de6b 5075
8e560766
MGD
5076 align .imm = align << 8, .immisalign=1, .preind=0 */
5077static parse_operand_result
5078parse_neon_alignment (char **str, int i)
5079{
5080 char *p = *str;
5081 expressionS exp;
5082
5083 my_get_expression (&exp, &p, GE_NO_PREFIX);
5084
5085 if (exp.X_op != O_constant)
5086 {
5087 inst.error = _("alignment must be constant");
5088 return PARSE_OPERAND_FAIL;
5089 }
5090
5091 inst.operands[i].imm = exp.X_add_number << 8;
5092 inst.operands[i].immisalign = 1;
5093 /* Alignments are not pre-indexes. */
5094 inst.operands[i].preind = 0;
5095
5096 *str = p;
5097 return PARSE_OPERAND_SUCCESS;
5098}
5099
c19d1205
ZW
5100/* Parse all forms of an ARM address expression. Information is written
5101 to inst.operands[i] and/or inst.reloc.
09d92015 5102
c19d1205 5103 Preindexed addressing (.preind=1):
09d92015 5104
c19d1205
ZW
5105 [Rn, #offset] .reg=Rn .reloc.exp=offset
5106 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5107 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5108 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5109
c19d1205 5110 These three may have a trailing ! which causes .writeback to be set also.
09d92015 5111
c19d1205 5112 Postindexed addressing (.postind=1, .writeback=1):
09d92015 5113
c19d1205
ZW
5114 [Rn], #offset .reg=Rn .reloc.exp=offset
5115 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5116 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5117 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5118
c19d1205 5119 Unindexed addressing (.preind=0, .postind=0):
09d92015 5120
c19d1205 5121 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 5122
c19d1205 5123 Other:
09d92015 5124
c19d1205
ZW
5125 [Rn]{!} shorthand for [Rn,#0]{!}
5126 =immediate .isreg=0 .reloc.exp=immediate
5127 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 5128
c19d1205
ZW
5129 It is the caller's responsibility to check for addressing modes not
5130 supported by the instruction, and to set inst.reloc.type. */
5131
4962c51a
MS
5132static parse_operand_result
5133parse_address_main (char **str, int i, int group_relocations,
5134 group_reloc_type group_type)
09d92015 5135{
c19d1205
ZW
5136 char *p = *str;
5137 int reg;
09d92015 5138
c19d1205 5139 if (skip_past_char (&p, '[') == FAIL)
09d92015 5140 {
c19d1205
ZW
5141 if (skip_past_char (&p, '=') == FAIL)
5142 {
974da60d 5143 /* Bare address - translate to PC-relative offset. */
c19d1205
ZW
5144 inst.reloc.pc_rel = 1;
5145 inst.operands[i].reg = REG_PC;
5146 inst.operands[i].isreg = 1;
5147 inst.operands[i].preind = 1;
5148 }
974da60d 5149 /* Otherwise a load-constant pseudo op, no special treatment needed here. */
09d92015 5150
c19d1205 5151 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4962c51a 5152 return PARSE_OPERAND_FAIL;
09d92015 5153
c19d1205 5154 *str = p;
4962c51a 5155 return PARSE_OPERAND_SUCCESS;
09d92015
MM
5156 }
5157
dcbf9037 5158 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 5159 {
c19d1205 5160 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 5161 return PARSE_OPERAND_FAIL;
09d92015 5162 }
c19d1205
ZW
5163 inst.operands[i].reg = reg;
5164 inst.operands[i].isreg = 1;
09d92015 5165
c19d1205 5166 if (skip_past_comma (&p) == SUCCESS)
09d92015 5167 {
c19d1205 5168 inst.operands[i].preind = 1;
09d92015 5169
c19d1205
ZW
5170 if (*p == '+') p++;
5171 else if (*p == '-') p++, inst.operands[i].negative = 1;
5172
dcbf9037 5173 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 5174 {
c19d1205
ZW
5175 inst.operands[i].imm = reg;
5176 inst.operands[i].immisreg = 1;
5177
5178 if (skip_past_comma (&p) == SUCCESS)
5179 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5180 return PARSE_OPERAND_FAIL;
c19d1205 5181 }
5287ad62 5182 else if (skip_past_char (&p, ':') == SUCCESS)
8e560766
MGD
5183 {
5184 /* FIXME: '@' should be used here, but it's filtered out by generic
5185 code before we get to see it here. This may be subject to
5186 change. */
5187 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5188
8e560766
MGD
5189 if (result != PARSE_OPERAND_SUCCESS)
5190 return result;
5191 }
c19d1205
ZW
5192 else
5193 {
5194 if (inst.operands[i].negative)
5195 {
5196 inst.operands[i].negative = 0;
5197 p--;
5198 }
4962c51a 5199
5f4273c7
NC
5200 if (group_relocations
5201 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4962c51a
MS
5202 {
5203 struct group_reloc_table_entry *entry;
5204
5205 /* Skip over the #: or : sequence. */
5206 if (*p == '#')
5207 p += 2;
5208 else
5209 p++;
5210
5211 /* Try to parse a group relocation. Anything else is an
5212 error. */
5213 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5214 {
5215 inst.error = _("unknown group relocation");
5216 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5217 }
5218
5219 /* We now have the group relocation table entry corresponding to
5220 the name in the assembler source. Next, we parse the
5221 expression. */
5222 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5223 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5224
5225 /* Record the relocation type. */
5226 switch (group_type)
5227 {
5228 case GROUP_LDR:
21d799b5 5229 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldr_code;
4962c51a
MS
5230 break;
5231
5232 case GROUP_LDRS:
21d799b5 5233 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldrs_code;
4962c51a
MS
5234 break;
5235
5236 case GROUP_LDC:
21d799b5 5237 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldc_code;
4962c51a
MS
5238 break;
5239
5240 default:
9c2799c2 5241 gas_assert (0);
4962c51a
MS
5242 }
5243
5244 if (inst.reloc.type == 0)
5245 {
5246 inst.error = _("this group relocation is not allowed on this instruction");
5247 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5248 }
5249 }
5250 else
26d97720
NS
5251 {
5252 char *q = p;
5253 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5254 return PARSE_OPERAND_FAIL;
5255 /* If the offset is 0, find out if it's a +0 or -0. */
5256 if (inst.reloc.exp.X_op == O_constant
5257 && inst.reloc.exp.X_add_number == 0)
5258 {
5259 skip_whitespace (q);
5260 if (*q == '#')
5261 {
5262 q++;
5263 skip_whitespace (q);
5264 }
5265 if (*q == '-')
5266 inst.operands[i].negative = 1;
5267 }
5268 }
09d92015
MM
5269 }
5270 }
8e560766
MGD
5271 else if (skip_past_char (&p, ':') == SUCCESS)
5272 {
5273 /* FIXME: '@' should be used here, but it's filtered out by generic code
5274 before we get to see it here. This may be subject to change. */
5275 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5276
8e560766
MGD
5277 if (result != PARSE_OPERAND_SUCCESS)
5278 return result;
5279 }
09d92015 5280
c19d1205 5281 if (skip_past_char (&p, ']') == FAIL)
09d92015 5282 {
c19d1205 5283 inst.error = _("']' expected");
4962c51a 5284 return PARSE_OPERAND_FAIL;
09d92015
MM
5285 }
5286
c19d1205
ZW
5287 if (skip_past_char (&p, '!') == SUCCESS)
5288 inst.operands[i].writeback = 1;
09d92015 5289
c19d1205 5290 else if (skip_past_comma (&p) == SUCCESS)
09d92015 5291 {
c19d1205
ZW
5292 if (skip_past_char (&p, '{') == SUCCESS)
5293 {
5294 /* [Rn], {expr} - unindexed, with option */
5295 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 5296 0, 255, TRUE) == FAIL)
4962c51a 5297 return PARSE_OPERAND_FAIL;
09d92015 5298
c19d1205
ZW
5299 if (skip_past_char (&p, '}') == FAIL)
5300 {
5301 inst.error = _("'}' expected at end of 'option' field");
4962c51a 5302 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5303 }
5304 if (inst.operands[i].preind)
5305 {
5306 inst.error = _("cannot combine index with option");
4962c51a 5307 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5308 }
5309 *str = p;
4962c51a 5310 return PARSE_OPERAND_SUCCESS;
09d92015 5311 }
c19d1205
ZW
5312 else
5313 {
5314 inst.operands[i].postind = 1;
5315 inst.operands[i].writeback = 1;
09d92015 5316
c19d1205
ZW
5317 if (inst.operands[i].preind)
5318 {
5319 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 5320 return PARSE_OPERAND_FAIL;
c19d1205 5321 }
09d92015 5322
c19d1205
ZW
5323 if (*p == '+') p++;
5324 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 5325
dcbf9037 5326 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 5327 {
5287ad62
JB
5328 /* We might be using the immediate for alignment already. If we
5329 are, OR the register number into the low-order bits. */
5330 if (inst.operands[i].immisalign)
5331 inst.operands[i].imm |= reg;
5332 else
5333 inst.operands[i].imm = reg;
c19d1205 5334 inst.operands[i].immisreg = 1;
a737bd4d 5335
c19d1205
ZW
5336 if (skip_past_comma (&p) == SUCCESS)
5337 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5338 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5339 }
5340 else
5341 {
26d97720 5342 char *q = p;
c19d1205
ZW
5343 if (inst.operands[i].negative)
5344 {
5345 inst.operands[i].negative = 0;
5346 p--;
5347 }
5348 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 5349 return PARSE_OPERAND_FAIL;
26d97720
NS
5350 /* If the offset is 0, find out if it's a +0 or -0. */
5351 if (inst.reloc.exp.X_op == O_constant
5352 && inst.reloc.exp.X_add_number == 0)
5353 {
5354 skip_whitespace (q);
5355 if (*q == '#')
5356 {
5357 q++;
5358 skip_whitespace (q);
5359 }
5360 if (*q == '-')
5361 inst.operands[i].negative = 1;
5362 }
c19d1205
ZW
5363 }
5364 }
a737bd4d
NC
5365 }
5366
c19d1205
ZW
5367 /* If at this point neither .preind nor .postind is set, we have a
5368 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
5369 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
5370 {
5371 inst.operands[i].preind = 1;
5372 inst.reloc.exp.X_op = O_constant;
5373 inst.reloc.exp.X_add_number = 0;
5374 }
5375 *str = p;
4962c51a
MS
5376 return PARSE_OPERAND_SUCCESS;
5377}
5378
5379static int
5380parse_address (char **str, int i)
5381{
21d799b5 5382 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
4962c51a
MS
5383 ? SUCCESS : FAIL;
5384}
5385
5386static parse_operand_result
5387parse_address_group_reloc (char **str, int i, group_reloc_type type)
5388{
5389 return parse_address_main (str, i, 1, type);
a737bd4d
NC
5390}
5391
b6895b4f
PB
5392/* Parse an operand for a MOVW or MOVT instruction. */
5393static int
5394parse_half (char **str)
5395{
5396 char * p;
5f4273c7 5397
b6895b4f
PB
5398 p = *str;
5399 skip_past_char (&p, '#');
5f4273c7 5400 if (strncasecmp (p, ":lower16:", 9) == 0)
b6895b4f
PB
5401 inst.reloc.type = BFD_RELOC_ARM_MOVW;
5402 else if (strncasecmp (p, ":upper16:", 9) == 0)
5403 inst.reloc.type = BFD_RELOC_ARM_MOVT;
5404
5405 if (inst.reloc.type != BFD_RELOC_UNUSED)
5406 {
5407 p += 9;
5f4273c7 5408 skip_whitespace (p);
b6895b4f
PB
5409 }
5410
5411 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5412 return FAIL;
5413
5414 if (inst.reloc.type == BFD_RELOC_UNUSED)
5415 {
5416 if (inst.reloc.exp.X_op != O_constant)
5417 {
5418 inst.error = _("constant expression expected");
5419 return FAIL;
5420 }
5421 if (inst.reloc.exp.X_add_number < 0
5422 || inst.reloc.exp.X_add_number > 0xffff)
5423 {
5424 inst.error = _("immediate value out of range");
5425 return FAIL;
5426 }
5427 }
5428 *str = p;
5429 return SUCCESS;
5430}
5431
c19d1205 5432/* Miscellaneous. */
a737bd4d 5433
c19d1205
ZW
5434/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
5435 or a bitmask suitable to be or-ed into the ARM msr instruction. */
5436static int
d2cd1205 5437parse_psr (char **str, bfd_boolean lhs)
09d92015 5438{
c19d1205
ZW
5439 char *p;
5440 unsigned long psr_field;
62b3e311
PB
5441 const struct asm_psr *psr;
5442 char *start;
d2cd1205 5443 bfd_boolean is_apsr = FALSE;
ac7f631b 5444 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
09d92015 5445
a4482bb6
NC
5446 /* PR gas/12698: If the user has specified -march=all then m_profile will
5447 be TRUE, but we want to ignore it in this case as we are building for any
5448 CPU type, including non-m variants. */
5449 if (selected_cpu.core == arm_arch_any.core)
5450 m_profile = FALSE;
5451
c19d1205
ZW
5452 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
5453 feature for ease of use and backwards compatibility. */
5454 p = *str;
62b3e311 5455 if (strncasecmp (p, "SPSR", 4) == 0)
d2cd1205
JB
5456 {
5457 if (m_profile)
5458 goto unsupported_psr;
fa94de6b 5459
d2cd1205
JB
5460 psr_field = SPSR_BIT;
5461 }
5462 else if (strncasecmp (p, "CPSR", 4) == 0)
5463 {
5464 if (m_profile)
5465 goto unsupported_psr;
5466
5467 psr_field = 0;
5468 }
5469 else if (strncasecmp (p, "APSR", 4) == 0)
5470 {
5471 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
5472 and ARMv7-R architecture CPUs. */
5473 is_apsr = TRUE;
5474 psr_field = 0;
5475 }
5476 else if (m_profile)
62b3e311
PB
5477 {
5478 start = p;
5479 do
5480 p++;
5481 while (ISALNUM (*p) || *p == '_');
5482
d2cd1205
JB
5483 if (strncasecmp (start, "iapsr", 5) == 0
5484 || strncasecmp (start, "eapsr", 5) == 0
5485 || strncasecmp (start, "xpsr", 4) == 0
5486 || strncasecmp (start, "psr", 3) == 0)
5487 p = start + strcspn (start, "rR") + 1;
5488
21d799b5
NC
5489 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
5490 p - start);
d2cd1205 5491
62b3e311
PB
5492 if (!psr)
5493 return FAIL;
09d92015 5494
d2cd1205
JB
5495 /* If APSR is being written, a bitfield may be specified. Note that
5496 APSR itself is handled above. */
5497 if (psr->field <= 3)
5498 {
5499 psr_field = psr->field;
5500 is_apsr = TRUE;
5501 goto check_suffix;
5502 }
5503
62b3e311 5504 *str = p;
d2cd1205
JB
5505 /* M-profile MSR instructions have the mask field set to "10", except
5506 *PSR variants which modify APSR, which may use a different mask (and
5507 have been handled already). Do that by setting the PSR_f field
5508 here. */
5509 return psr->field | (lhs ? PSR_f : 0);
62b3e311 5510 }
d2cd1205
JB
5511 else
5512 goto unsupported_psr;
09d92015 5513
62b3e311 5514 p += 4;
d2cd1205 5515check_suffix:
c19d1205
ZW
5516 if (*p == '_')
5517 {
5518 /* A suffix follows. */
c19d1205
ZW
5519 p++;
5520 start = p;
a737bd4d 5521
c19d1205
ZW
5522 do
5523 p++;
5524 while (ISALNUM (*p) || *p == '_');
a737bd4d 5525
d2cd1205
JB
5526 if (is_apsr)
5527 {
5528 /* APSR uses a notation for bits, rather than fields. */
5529 unsigned int nzcvq_bits = 0;
5530 unsigned int g_bit = 0;
5531 char *bit;
fa94de6b 5532
d2cd1205
JB
5533 for (bit = start; bit != p; bit++)
5534 {
5535 switch (TOLOWER (*bit))
5536 {
5537 case 'n':
5538 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
5539 break;
5540
5541 case 'z':
5542 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
5543 break;
5544
5545 case 'c':
5546 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
5547 break;
5548
5549 case 'v':
5550 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
5551 break;
fa94de6b 5552
d2cd1205
JB
5553 case 'q':
5554 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
5555 break;
fa94de6b 5556
d2cd1205
JB
5557 case 'g':
5558 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
5559 break;
fa94de6b 5560
d2cd1205
JB
5561 default:
5562 inst.error = _("unexpected bit specified after APSR");
5563 return FAIL;
5564 }
5565 }
fa94de6b 5566
d2cd1205
JB
5567 if (nzcvq_bits == 0x1f)
5568 psr_field |= PSR_f;
fa94de6b 5569
d2cd1205
JB
5570 if (g_bit == 0x1)
5571 {
5572 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
5573 {
5574 inst.error = _("selected processor does not "
5575 "support DSP extension");
5576 return FAIL;
5577 }
5578
5579 psr_field |= PSR_s;
5580 }
fa94de6b 5581
d2cd1205
JB
5582 if ((nzcvq_bits & 0x20) != 0
5583 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
5584 || (g_bit & 0x2) != 0)
5585 {
5586 inst.error = _("bad bitmask specified after APSR");
5587 return FAIL;
5588 }
5589 }
5590 else
5591 {
5592 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
5593 p - start);
5594 if (!psr)
5595 goto error;
a737bd4d 5596
d2cd1205
JB
5597 psr_field |= psr->field;
5598 }
a737bd4d 5599 }
c19d1205 5600 else
a737bd4d 5601 {
c19d1205
ZW
5602 if (ISALNUM (*p))
5603 goto error; /* Garbage after "[CS]PSR". */
5604
d2cd1205
JB
5605 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
5606 is deprecated, but allow it anyway. */
5607 if (is_apsr && lhs)
5608 {
5609 psr_field |= PSR_f;
5610 as_tsktsk (_("writing to APSR without specifying a bitmask is "
5611 "deprecated"));
5612 }
5613 else if (!m_profile)
5614 /* These bits are never right for M-profile devices: don't set them
5615 (only code paths which read/write APSR reach here). */
5616 psr_field |= (PSR_c | PSR_f);
a737bd4d 5617 }
c19d1205
ZW
5618 *str = p;
5619 return psr_field;
a737bd4d 5620
d2cd1205
JB
5621 unsupported_psr:
5622 inst.error = _("selected processor does not support requested special "
5623 "purpose register");
5624 return FAIL;
5625
c19d1205
ZW
5626 error:
5627 inst.error = _("flag for {c}psr instruction expected");
5628 return FAIL;
a737bd4d
NC
5629}
5630
c19d1205
ZW
5631/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
5632 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 5633
c19d1205
ZW
5634static int
5635parse_cps_flags (char **str)
a737bd4d 5636{
c19d1205
ZW
5637 int val = 0;
5638 int saw_a_flag = 0;
5639 char *s = *str;
a737bd4d 5640
c19d1205
ZW
5641 for (;;)
5642 switch (*s++)
5643 {
5644 case '\0': case ',':
5645 goto done;
a737bd4d 5646
c19d1205
ZW
5647 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
5648 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
5649 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 5650
c19d1205
ZW
5651 default:
5652 inst.error = _("unrecognized CPS flag");
5653 return FAIL;
5654 }
a737bd4d 5655
c19d1205
ZW
5656 done:
5657 if (saw_a_flag == 0)
a737bd4d 5658 {
c19d1205
ZW
5659 inst.error = _("missing CPS flags");
5660 return FAIL;
a737bd4d 5661 }
a737bd4d 5662
c19d1205
ZW
5663 *str = s - 1;
5664 return val;
a737bd4d
NC
5665}
5666
c19d1205
ZW
5667/* Parse an endian specifier ("BE" or "LE", case insensitive);
5668 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
5669
5670static int
c19d1205 5671parse_endian_specifier (char **str)
a737bd4d 5672{
c19d1205
ZW
5673 int little_endian;
5674 char *s = *str;
a737bd4d 5675
c19d1205
ZW
5676 if (strncasecmp (s, "BE", 2))
5677 little_endian = 0;
5678 else if (strncasecmp (s, "LE", 2))
5679 little_endian = 1;
5680 else
a737bd4d 5681 {
c19d1205 5682 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5683 return FAIL;
5684 }
5685
c19d1205 5686 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 5687 {
c19d1205 5688 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5689 return FAIL;
5690 }
5691
c19d1205
ZW
5692 *str = s + 2;
5693 return little_endian;
5694}
a737bd4d 5695
c19d1205
ZW
5696/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
5697 value suitable for poking into the rotate field of an sxt or sxta
5698 instruction, or FAIL on error. */
5699
5700static int
5701parse_ror (char **str)
5702{
5703 int rot;
5704 char *s = *str;
5705
5706 if (strncasecmp (s, "ROR", 3) == 0)
5707 s += 3;
5708 else
a737bd4d 5709 {
c19d1205 5710 inst.error = _("missing rotation field after comma");
a737bd4d
NC
5711 return FAIL;
5712 }
c19d1205
ZW
5713
5714 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
5715 return FAIL;
5716
5717 switch (rot)
a737bd4d 5718 {
c19d1205
ZW
5719 case 0: *str = s; return 0x0;
5720 case 8: *str = s; return 0x1;
5721 case 16: *str = s; return 0x2;
5722 case 24: *str = s; return 0x3;
5723
5724 default:
5725 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
5726 return FAIL;
5727 }
c19d1205 5728}
a737bd4d 5729
c19d1205
ZW
5730/* Parse a conditional code (from conds[] below). The value returned is in the
5731 range 0 .. 14, or FAIL. */
5732static int
5733parse_cond (char **str)
5734{
c462b453 5735 char *q;
c19d1205 5736 const struct asm_cond *c;
c462b453
PB
5737 int n;
5738 /* Condition codes are always 2 characters, so matching up to
5739 3 characters is sufficient. */
5740 char cond[3];
a737bd4d 5741
c462b453
PB
5742 q = *str;
5743 n = 0;
5744 while (ISALPHA (*q) && n < 3)
5745 {
e07e6e58 5746 cond[n] = TOLOWER (*q);
c462b453
PB
5747 q++;
5748 n++;
5749 }
a737bd4d 5750
21d799b5 5751 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
c19d1205 5752 if (!c)
a737bd4d 5753 {
c19d1205 5754 inst.error = _("condition required");
a737bd4d
NC
5755 return FAIL;
5756 }
5757
c19d1205
ZW
5758 *str = q;
5759 return c->value;
5760}
5761
62b3e311
PB
5762/* Parse an option for a barrier instruction. Returns the encoding for the
5763 option, or FAIL. */
5764static int
5765parse_barrier (char **str)
5766{
5767 char *p, *q;
5768 const struct asm_barrier_opt *o;
5769
5770 p = q = *str;
5771 while (ISALPHA (*q))
5772 q++;
5773
21d799b5
NC
5774 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
5775 q - p);
62b3e311
PB
5776 if (!o)
5777 return FAIL;
5778
5779 *str = q;
5780 return o->value;
5781}
5782
92e90b6e
PB
5783/* Parse the operands of a table branch instruction. Similar to a memory
5784 operand. */
5785static int
5786parse_tb (char **str)
5787{
5788 char * p = *str;
5789 int reg;
5790
5791 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
5792 {
5793 inst.error = _("'[' expected");
5794 return FAIL;
5795 }
92e90b6e 5796
dcbf9037 5797 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5798 {
5799 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5800 return FAIL;
5801 }
5802 inst.operands[0].reg = reg;
5803
5804 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
5805 {
5806 inst.error = _("',' expected");
5807 return FAIL;
5808 }
5f4273c7 5809
dcbf9037 5810 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5811 {
5812 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5813 return FAIL;
5814 }
5815 inst.operands[0].imm = reg;
5816
5817 if (skip_past_comma (&p) == SUCCESS)
5818 {
5819 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
5820 return FAIL;
5821 if (inst.reloc.exp.X_add_number != 1)
5822 {
5823 inst.error = _("invalid shift");
5824 return FAIL;
5825 }
5826 inst.operands[0].shifted = 1;
5827 }
5828
5829 if (skip_past_char (&p, ']') == FAIL)
5830 {
5831 inst.error = _("']' expected");
5832 return FAIL;
5833 }
5834 *str = p;
5835 return SUCCESS;
5836}
5837
5287ad62
JB
5838/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
5839 information on the types the operands can take and how they are encoded.
037e8744
JB
5840 Up to four operands may be read; this function handles setting the
5841 ".present" field for each read operand itself.
5287ad62
JB
5842 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
5843 else returns FAIL. */
5844
5845static int
5846parse_neon_mov (char **str, int *which_operand)
5847{
5848 int i = *which_operand, val;
5849 enum arm_reg_type rtype;
5850 char *ptr = *str;
dcbf9037 5851 struct neon_type_el optype;
5f4273c7 5852
dcbf9037 5853 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
5854 {
5855 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
5856 inst.operands[i].reg = val;
5857 inst.operands[i].isscalar = 1;
dcbf9037 5858 inst.operands[i].vectype = optype;
5287ad62
JB
5859 inst.operands[i++].present = 1;
5860
5861 if (skip_past_comma (&ptr) == FAIL)
5862 goto wanted_comma;
5f4273c7 5863
dcbf9037 5864 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5287ad62 5865 goto wanted_arm;
5f4273c7 5866
5287ad62
JB
5867 inst.operands[i].reg = val;
5868 inst.operands[i].isreg = 1;
5869 inst.operands[i].present = 1;
5870 }
037e8744 5871 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
dcbf9037 5872 != FAIL)
5287ad62
JB
5873 {
5874 /* Cases 0, 1, 2, 3, 5 (D only). */
5875 if (skip_past_comma (&ptr) == FAIL)
5876 goto wanted_comma;
5f4273c7 5877
5287ad62
JB
5878 inst.operands[i].reg = val;
5879 inst.operands[i].isreg = 1;
5880 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5881 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5882 inst.operands[i].isvec = 1;
dcbf9037 5883 inst.operands[i].vectype = optype;
5287ad62
JB
5884 inst.operands[i++].present = 1;
5885
dcbf9037 5886 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62 5887 {
037e8744
JB
5888 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
5889 Case 13: VMOV <Sd>, <Rm> */
5287ad62
JB
5890 inst.operands[i].reg = val;
5891 inst.operands[i].isreg = 1;
037e8744 5892 inst.operands[i].present = 1;
5287ad62
JB
5893
5894 if (rtype == REG_TYPE_NQ)
5895 {
dcbf9037 5896 first_error (_("can't use Neon quad register here"));
5287ad62
JB
5897 return FAIL;
5898 }
037e8744
JB
5899 else if (rtype != REG_TYPE_VFS)
5900 {
5901 i++;
5902 if (skip_past_comma (&ptr) == FAIL)
5903 goto wanted_comma;
5904 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5905 goto wanted_arm;
5906 inst.operands[i].reg = val;
5907 inst.operands[i].isreg = 1;
5908 inst.operands[i].present = 1;
5909 }
5287ad62 5910 }
037e8744
JB
5911 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
5912 &optype)) != FAIL)
5287ad62
JB
5913 {
5914 /* Case 0: VMOV<c><q> <Qd>, <Qm>
037e8744
JB
5915 Case 1: VMOV<c><q> <Dd>, <Dm>
5916 Case 8: VMOV.F32 <Sd>, <Sm>
5917 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
5287ad62
JB
5918
5919 inst.operands[i].reg = val;
5920 inst.operands[i].isreg = 1;
5921 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5922 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5923 inst.operands[i].isvec = 1;
dcbf9037 5924 inst.operands[i].vectype = optype;
5287ad62 5925 inst.operands[i].present = 1;
5f4273c7 5926
037e8744
JB
5927 if (skip_past_comma (&ptr) == SUCCESS)
5928 {
5929 /* Case 15. */
5930 i++;
5931
5932 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5933 goto wanted_arm;
5934
5935 inst.operands[i].reg = val;
5936 inst.operands[i].isreg = 1;
5937 inst.operands[i++].present = 1;
5f4273c7 5938
037e8744
JB
5939 if (skip_past_comma (&ptr) == FAIL)
5940 goto wanted_comma;
5f4273c7 5941
037e8744
JB
5942 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5943 goto wanted_arm;
5f4273c7 5944
037e8744
JB
5945 inst.operands[i].reg = val;
5946 inst.operands[i].isreg = 1;
1b11b49f 5947 inst.operands[i].present = 1;
037e8744 5948 }
5287ad62 5949 }
4641781c
PB
5950 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
5951 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
5952 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
5953 Case 10: VMOV.F32 <Sd>, #<imm>
5954 Case 11: VMOV.F64 <Dd>, #<imm> */
5955 inst.operands[i].immisfloat = 1;
5956 else if (parse_big_immediate (&ptr, i) == SUCCESS)
5957 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
5958 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
5959 ;
5287ad62
JB
5960 else
5961 {
dcbf9037 5962 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
5287ad62
JB
5963 return FAIL;
5964 }
5965 }
dcbf9037 5966 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
5967 {
5968 /* Cases 6, 7. */
5969 inst.operands[i].reg = val;
5970 inst.operands[i].isreg = 1;
5971 inst.operands[i++].present = 1;
5f4273c7 5972
5287ad62
JB
5973 if (skip_past_comma (&ptr) == FAIL)
5974 goto wanted_comma;
5f4273c7 5975
dcbf9037 5976 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
5977 {
5978 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
5979 inst.operands[i].reg = val;
5980 inst.operands[i].isscalar = 1;
5981 inst.operands[i].present = 1;
dcbf9037 5982 inst.operands[i].vectype = optype;
5287ad62 5983 }
dcbf9037 5984 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
5985 {
5986 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
5987 inst.operands[i].reg = val;
5988 inst.operands[i].isreg = 1;
5989 inst.operands[i++].present = 1;
5f4273c7 5990
5287ad62
JB
5991 if (skip_past_comma (&ptr) == FAIL)
5992 goto wanted_comma;
5f4273c7 5993
037e8744 5994 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
dcbf9037 5995 == FAIL)
5287ad62 5996 {
037e8744 5997 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
5287ad62
JB
5998 return FAIL;
5999 }
6000
6001 inst.operands[i].reg = val;
6002 inst.operands[i].isreg = 1;
037e8744
JB
6003 inst.operands[i].isvec = 1;
6004 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
dcbf9037 6005 inst.operands[i].vectype = optype;
5287ad62 6006 inst.operands[i].present = 1;
5f4273c7 6007
037e8744
JB
6008 if (rtype == REG_TYPE_VFS)
6009 {
6010 /* Case 14. */
6011 i++;
6012 if (skip_past_comma (&ptr) == FAIL)
6013 goto wanted_comma;
6014 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6015 &optype)) == FAIL)
6016 {
6017 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6018 return FAIL;
6019 }
6020 inst.operands[i].reg = val;
6021 inst.operands[i].isreg = 1;
6022 inst.operands[i].isvec = 1;
6023 inst.operands[i].issingle = 1;
6024 inst.operands[i].vectype = optype;
6025 inst.operands[i].present = 1;
6026 }
6027 }
6028 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
6029 != FAIL)
6030 {
6031 /* Case 13. */
6032 inst.operands[i].reg = val;
6033 inst.operands[i].isreg = 1;
6034 inst.operands[i].isvec = 1;
6035 inst.operands[i].issingle = 1;
6036 inst.operands[i].vectype = optype;
1b11b49f 6037 inst.operands[i].present = 1;
5287ad62
JB
6038 }
6039 }
6040 else
6041 {
dcbf9037 6042 first_error (_("parse error"));
5287ad62
JB
6043 return FAIL;
6044 }
6045
6046 /* Successfully parsed the operands. Update args. */
6047 *which_operand = i;
6048 *str = ptr;
6049 return SUCCESS;
6050
5f4273c7 6051 wanted_comma:
dcbf9037 6052 first_error (_("expected comma"));
5287ad62 6053 return FAIL;
5f4273c7
NC
6054
6055 wanted_arm:
dcbf9037 6056 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 6057 return FAIL;
5287ad62
JB
6058}
6059
5be8be5d
DG
6060/* Use this macro when the operand constraints are different
6061 for ARM and THUMB (e.g. ldrd). */
6062#define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6063 ((arm_operand) | ((thumb_operand) << 16))
6064
c19d1205
ZW
6065/* Matcher codes for parse_operands. */
6066enum operand_parse_code
6067{
6068 OP_stop, /* end of line */
6069
6070 OP_RR, /* ARM register */
6071 OP_RRnpc, /* ARM register, not r15 */
5be8be5d 6072 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
c19d1205 6073 OP_RRnpcb, /* ARM register, not r15, in square brackets */
fa94de6b 6074 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
55881a11 6075 optional trailing ! */
c19d1205
ZW
6076 OP_RRw, /* ARM register, not r15, optional trailing ! */
6077 OP_RCP, /* Coprocessor number */
6078 OP_RCN, /* Coprocessor register */
6079 OP_RF, /* FPA register */
6080 OP_RVS, /* VFP single precision register */
5287ad62
JB
6081 OP_RVD, /* VFP double precision register (0..15) */
6082 OP_RND, /* Neon double precision register (0..31) */
6083 OP_RNQ, /* Neon quad precision register */
037e8744 6084 OP_RVSD, /* VFP single or double precision register */
5287ad62 6085 OP_RNDQ, /* Neon double or quad precision register */
037e8744 6086 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 6087 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
6088 OP_RVC, /* VFP control register */
6089 OP_RMF, /* Maverick F register */
6090 OP_RMD, /* Maverick D register */
6091 OP_RMFX, /* Maverick FX register */
6092 OP_RMDX, /* Maverick DX register */
6093 OP_RMAX, /* Maverick AX register */
6094 OP_RMDS, /* Maverick DSPSC register */
6095 OP_RIWR, /* iWMMXt wR register */
6096 OP_RIWC, /* iWMMXt wC register */
6097 OP_RIWG, /* iWMMXt wCG register */
6098 OP_RXA, /* XScale accumulator register */
6099
6100 OP_REGLST, /* ARM register list */
6101 OP_VRSLST, /* VFP single-precision register list */
6102 OP_VRDLST, /* VFP double-precision register list */
037e8744 6103 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
6104 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
6105 OP_NSTRLST, /* Neon element/structure list */
6106
5287ad62 6107 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 6108 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
5287ad62 6109 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 6110 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
6111 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
6112 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
6113 OP_VMOV, /* Neon VMOV operands. */
4316f0d2 6114 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
5287ad62 6115 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
2d447fca 6116 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
5287ad62
JB
6117
6118 OP_I0, /* immediate zero */
c19d1205
ZW
6119 OP_I7, /* immediate value 0 .. 7 */
6120 OP_I15, /* 0 .. 15 */
6121 OP_I16, /* 1 .. 16 */
5287ad62 6122 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
6123 OP_I31, /* 0 .. 31 */
6124 OP_I31w, /* 0 .. 31, optional trailing ! */
6125 OP_I32, /* 1 .. 32 */
5287ad62
JB
6126 OP_I32z, /* 0 .. 32 */
6127 OP_I63, /* 0 .. 63 */
c19d1205 6128 OP_I63s, /* -64 .. 63 */
5287ad62
JB
6129 OP_I64, /* 1 .. 64 */
6130 OP_I64z, /* 0 .. 64 */
c19d1205 6131 OP_I255, /* 0 .. 255 */
c19d1205
ZW
6132
6133 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
6134 OP_I7b, /* 0 .. 7 */
6135 OP_I15b, /* 0 .. 15 */
6136 OP_I31b, /* 0 .. 31 */
6137
6138 OP_SH, /* shifter operand */
4962c51a 6139 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 6140 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
6141 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
6142 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
6143 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
6144 OP_EXP, /* arbitrary expression */
6145 OP_EXPi, /* same, with optional immediate prefix */
6146 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 6147 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c19d1205
ZW
6148
6149 OP_CPSF, /* CPS flags */
6150 OP_ENDI, /* Endianness specifier */
d2cd1205
JB
6151 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
6152 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
c19d1205 6153 OP_COND, /* conditional code */
92e90b6e 6154 OP_TB, /* Table branch. */
c19d1205 6155
037e8744
JB
6156 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
6157
c19d1205
ZW
6158 OP_RRnpc_I0, /* ARM register or literal 0 */
6159 OP_RR_EXr, /* ARM register or expression with opt. reloc suff. */
6160 OP_RR_EXi, /* ARM register or expression with imm prefix */
6161 OP_RF_IF, /* FPA register or immediate */
6162 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 6163 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
6164
6165 /* Optional operands. */
6166 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
6167 OP_oI31b, /* 0 .. 31 */
5287ad62 6168 OP_oI32b, /* 1 .. 32 */
5f1af56b 6169 OP_oI32z, /* 0 .. 32 */
c19d1205
ZW
6170 OP_oIffffb, /* 0 .. 65535 */
6171 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
6172
6173 OP_oRR, /* ARM register */
6174 OP_oRRnpc, /* ARM register, not the PC */
5be8be5d 6175 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
b6702015 6176 OP_oRRw, /* ARM register, not r15, optional trailing ! */
5287ad62
JB
6177 OP_oRND, /* Optional Neon double precision register */
6178 OP_oRNQ, /* Optional Neon quad precision register */
6179 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 6180 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
6181 OP_oSHll, /* LSL immediate */
6182 OP_oSHar, /* ASR immediate */
6183 OP_oSHllar, /* LSL or ASR immediate */
6184 OP_oROR, /* ROR 0/8/16/24 */
52e7f43d 6185 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
c19d1205 6186
5be8be5d
DG
6187 /* Some pre-defined mixed (ARM/THUMB) operands. */
6188 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
6189 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
6190 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
6191
c19d1205
ZW
6192 OP_FIRST_OPTIONAL = OP_oI7b
6193};
a737bd4d 6194
c19d1205
ZW
6195/* Generic instruction operand parser. This does no encoding and no
6196 semantic validation; it merely squirrels values away in the inst
6197 structure. Returns SUCCESS or FAIL depending on whether the
6198 specified grammar matched. */
6199static int
5be8be5d 6200parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
c19d1205 6201{
5be8be5d 6202 unsigned const int *upat = pattern;
c19d1205
ZW
6203 char *backtrack_pos = 0;
6204 const char *backtrack_error = 0;
6205 int i, val, backtrack_index = 0;
5287ad62 6206 enum arm_reg_type rtype;
4962c51a 6207 parse_operand_result result;
5be8be5d 6208 unsigned int op_parse_code;
c19d1205 6209
e07e6e58
NC
6210#define po_char_or_fail(chr) \
6211 do \
6212 { \
6213 if (skip_past_char (&str, chr) == FAIL) \
6214 goto bad_args; \
6215 } \
6216 while (0)
c19d1205 6217
e07e6e58
NC
6218#define po_reg_or_fail(regtype) \
6219 do \
dcbf9037 6220 { \
e07e6e58
NC
6221 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6222 & inst.operands[i].vectype); \
6223 if (val == FAIL) \
6224 { \
6225 first_error (_(reg_expected_msgs[regtype])); \
6226 goto failure; \
6227 } \
6228 inst.operands[i].reg = val; \
6229 inst.operands[i].isreg = 1; \
6230 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6231 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6232 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
6233 || rtype == REG_TYPE_VFD \
6234 || rtype == REG_TYPE_NQ); \
dcbf9037 6235 } \
e07e6e58
NC
6236 while (0)
6237
6238#define po_reg_or_goto(regtype, label) \
6239 do \
6240 { \
6241 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6242 & inst.operands[i].vectype); \
6243 if (val == FAIL) \
6244 goto label; \
dcbf9037 6245 \
e07e6e58
NC
6246 inst.operands[i].reg = val; \
6247 inst.operands[i].isreg = 1; \
6248 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6249 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6250 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
6251 || rtype == REG_TYPE_VFD \
6252 || rtype == REG_TYPE_NQ); \
6253 } \
6254 while (0)
6255
6256#define po_imm_or_fail(min, max, popt) \
6257 do \
6258 { \
6259 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
6260 goto failure; \
6261 inst.operands[i].imm = val; \
6262 } \
6263 while (0)
6264
6265#define po_scalar_or_goto(elsz, label) \
6266 do \
6267 { \
6268 val = parse_scalar (& str, elsz, & inst.operands[i].vectype); \
6269 if (val == FAIL) \
6270 goto label; \
6271 inst.operands[i].reg = val; \
6272 inst.operands[i].isscalar = 1; \
6273 } \
6274 while (0)
6275
6276#define po_misc_or_fail(expr) \
6277 do \
6278 { \
6279 if (expr) \
6280 goto failure; \
6281 } \
6282 while (0)
6283
6284#define po_misc_or_fail_no_backtrack(expr) \
6285 do \
6286 { \
6287 result = expr; \
6288 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
6289 backtrack_pos = 0; \
6290 if (result != PARSE_OPERAND_SUCCESS) \
6291 goto failure; \
6292 } \
6293 while (0)
4962c51a 6294
52e7f43d
RE
6295#define po_barrier_or_imm(str) \
6296 do \
6297 { \
6298 val = parse_barrier (&str); \
6299 if (val == FAIL) \
6300 { \
6301 if (ISALPHA (*str)) \
6302 goto failure; \
6303 else \
6304 goto immediate; \
6305 } \
6306 else \
6307 { \
6308 if ((inst.instruction & 0xf0) == 0x60 \
6309 && val != 0xf) \
6310 { \
6311 /* ISB can only take SY as an option. */ \
6312 inst.error = _("invalid barrier type"); \
6313 goto failure; \
6314 } \
6315 } \
6316 } \
6317 while (0)
6318
c19d1205
ZW
6319 skip_whitespace (str);
6320
6321 for (i = 0; upat[i] != OP_stop; i++)
6322 {
5be8be5d
DG
6323 op_parse_code = upat[i];
6324 if (op_parse_code >= 1<<16)
6325 op_parse_code = thumb ? (op_parse_code >> 16)
6326 : (op_parse_code & ((1<<16)-1));
6327
6328 if (op_parse_code >= OP_FIRST_OPTIONAL)
c19d1205
ZW
6329 {
6330 /* Remember where we are in case we need to backtrack. */
9c2799c2 6331 gas_assert (!backtrack_pos);
c19d1205
ZW
6332 backtrack_pos = str;
6333 backtrack_error = inst.error;
6334 backtrack_index = i;
6335 }
6336
b6702015 6337 if (i > 0 && (i > 1 || inst.operands[0].present))
c19d1205
ZW
6338 po_char_or_fail (',');
6339
5be8be5d 6340 switch (op_parse_code)
c19d1205
ZW
6341 {
6342 /* Registers */
6343 case OP_oRRnpc:
5be8be5d 6344 case OP_oRRnpcsp:
c19d1205 6345 case OP_RRnpc:
5be8be5d 6346 case OP_RRnpcsp:
c19d1205
ZW
6347 case OP_oRR:
6348 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
6349 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
6350 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
6351 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
6352 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
6353 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
5287ad62
JB
6354 case OP_oRND:
6355 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
cd2cf30b
PB
6356 case OP_RVC:
6357 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
6358 break;
6359 /* Also accept generic coprocessor regs for unknown registers. */
6360 coproc_reg:
6361 po_reg_or_fail (REG_TYPE_CN);
6362 break;
c19d1205
ZW
6363 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
6364 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
6365 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
6366 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
6367 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
6368 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
6369 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
6370 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
6371 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
6372 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
5287ad62
JB
6373 case OP_oRNQ:
6374 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
6375 case OP_oRNDQ:
6376 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
037e8744
JB
6377 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
6378 case OP_oRNSDQ:
6379 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
5287ad62
JB
6380
6381 /* Neon scalar. Using an element size of 8 means that some invalid
6382 scalars are accepted here, so deal with those in later code. */
6383 case OP_RNSC: po_scalar_or_goto (8, failure); break;
6384
5287ad62
JB
6385 case OP_RNDQ_I0:
6386 {
6387 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
6388 break;
6389 try_imm0:
6390 po_imm_or_fail (0, 0, TRUE);
6391 }
6392 break;
6393
037e8744
JB
6394 case OP_RVSD_I0:
6395 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
6396 break;
6397
5287ad62
JB
6398 case OP_RR_RNSC:
6399 {
6400 po_scalar_or_goto (8, try_rr);
6401 break;
6402 try_rr:
6403 po_reg_or_fail (REG_TYPE_RN);
6404 }
6405 break;
6406
037e8744
JB
6407 case OP_RNSDQ_RNSC:
6408 {
6409 po_scalar_or_goto (8, try_nsdq);
6410 break;
6411 try_nsdq:
6412 po_reg_or_fail (REG_TYPE_NSDQ);
6413 }
6414 break;
6415
5287ad62
JB
6416 case OP_RNDQ_RNSC:
6417 {
6418 po_scalar_or_goto (8, try_ndq);
6419 break;
6420 try_ndq:
6421 po_reg_or_fail (REG_TYPE_NDQ);
6422 }
6423 break;
6424
6425 case OP_RND_RNSC:
6426 {
6427 po_scalar_or_goto (8, try_vfd);
6428 break;
6429 try_vfd:
6430 po_reg_or_fail (REG_TYPE_VFD);
6431 }
6432 break;
6433
6434 case OP_VMOV:
6435 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
6436 not careful then bad things might happen. */
6437 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
6438 break;
6439
4316f0d2 6440 case OP_RNDQ_Ibig:
5287ad62 6441 {
4316f0d2 6442 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
5287ad62 6443 break;
4316f0d2 6444 try_immbig:
5287ad62
JB
6445 /* There's a possibility of getting a 64-bit immediate here, so
6446 we need special handling. */
6447 if (parse_big_immediate (&str, i) == FAIL)
6448 {
6449 inst.error = _("immediate value is out of range");
6450 goto failure;
6451 }
6452 }
6453 break;
6454
6455 case OP_RNDQ_I63b:
6456 {
6457 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
6458 break;
6459 try_shimm:
6460 po_imm_or_fail (0, 63, TRUE);
6461 }
6462 break;
c19d1205
ZW
6463
6464 case OP_RRnpcb:
6465 po_char_or_fail ('[');
6466 po_reg_or_fail (REG_TYPE_RN);
6467 po_char_or_fail (']');
6468 break;
a737bd4d 6469
55881a11 6470 case OP_RRnpctw:
c19d1205 6471 case OP_RRw:
b6702015 6472 case OP_oRRw:
c19d1205
ZW
6473 po_reg_or_fail (REG_TYPE_RN);
6474 if (skip_past_char (&str, '!') == SUCCESS)
6475 inst.operands[i].writeback = 1;
6476 break;
6477
6478 /* Immediates */
6479 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
6480 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
6481 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
5287ad62 6482 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
6483 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
6484 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
5287ad62 6485 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 6486 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
5287ad62
JB
6487 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
6488 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
6489 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 6490 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
6491
6492 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
6493 case OP_oI7b:
6494 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
6495 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
6496 case OP_oI31b:
6497 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
5287ad62 6498 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
5f1af56b 6499 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
c19d1205
ZW
6500 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
6501
6502 /* Immediate variants */
6503 case OP_oI255c:
6504 po_char_or_fail ('{');
6505 po_imm_or_fail (0, 255, TRUE);
6506 po_char_or_fail ('}');
6507 break;
6508
6509 case OP_I31w:
6510 /* The expression parser chokes on a trailing !, so we have
6511 to find it first and zap it. */
6512 {
6513 char *s = str;
6514 while (*s && *s != ',')
6515 s++;
6516 if (s[-1] == '!')
6517 {
6518 s[-1] = '\0';
6519 inst.operands[i].writeback = 1;
6520 }
6521 po_imm_or_fail (0, 31, TRUE);
6522 if (str == s - 1)
6523 str = s;
6524 }
6525 break;
6526
6527 /* Expressions */
6528 case OP_EXPi: EXPi:
6529 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6530 GE_OPT_PREFIX));
6531 break;
6532
6533 case OP_EXP:
6534 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6535 GE_NO_PREFIX));
6536 break;
6537
6538 case OP_EXPr: EXPr:
6539 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6540 GE_NO_PREFIX));
6541 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 6542 {
c19d1205
ZW
6543 val = parse_reloc (&str);
6544 if (val == -1)
6545 {
6546 inst.error = _("unrecognized relocation suffix");
6547 goto failure;
6548 }
6549 else if (val != BFD_RELOC_UNUSED)
6550 {
6551 inst.operands[i].imm = val;
6552 inst.operands[i].hasreloc = 1;
6553 }
a737bd4d 6554 }
c19d1205 6555 break;
a737bd4d 6556
b6895b4f
PB
6557 /* Operand for MOVW or MOVT. */
6558 case OP_HALF:
6559 po_misc_or_fail (parse_half (&str));
6560 break;
6561
e07e6e58 6562 /* Register or expression. */
c19d1205
ZW
6563 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
6564 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 6565
e07e6e58 6566 /* Register or immediate. */
c19d1205
ZW
6567 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
6568 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 6569
c19d1205
ZW
6570 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
6571 IF:
6572 if (!is_immediate_prefix (*str))
6573 goto bad_args;
6574 str++;
6575 val = parse_fpa_immediate (&str);
6576 if (val == FAIL)
6577 goto failure;
6578 /* FPA immediates are encoded as registers 8-15.
6579 parse_fpa_immediate has already applied the offset. */
6580 inst.operands[i].reg = val;
6581 inst.operands[i].isreg = 1;
6582 break;
09d92015 6583
2d447fca
JM
6584 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
6585 I32z: po_imm_or_fail (0, 32, FALSE); break;
6586
e07e6e58 6587 /* Two kinds of register. */
c19d1205
ZW
6588 case OP_RIWR_RIWC:
6589 {
6590 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
6591 if (!rege
6592 || (rege->type != REG_TYPE_MMXWR
6593 && rege->type != REG_TYPE_MMXWC
6594 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
6595 {
6596 inst.error = _("iWMMXt data or control register expected");
6597 goto failure;
6598 }
6599 inst.operands[i].reg = rege->number;
6600 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
6601 }
6602 break;
09d92015 6603
41adaa5c
JM
6604 case OP_RIWC_RIWG:
6605 {
6606 struct reg_entry *rege = arm_reg_parse_multi (&str);
6607 if (!rege
6608 || (rege->type != REG_TYPE_MMXWC
6609 && rege->type != REG_TYPE_MMXWCG))
6610 {
6611 inst.error = _("iWMMXt control register expected");
6612 goto failure;
6613 }
6614 inst.operands[i].reg = rege->number;
6615 inst.operands[i].isreg = 1;
6616 }
6617 break;
6618
c19d1205
ZW
6619 /* Misc */
6620 case OP_CPSF: val = parse_cps_flags (&str); break;
6621 case OP_ENDI: val = parse_endian_specifier (&str); break;
6622 case OP_oROR: val = parse_ror (&str); break;
c19d1205 6623 case OP_COND: val = parse_cond (&str); break;
52e7f43d
RE
6624 case OP_oBARRIER_I15:
6625 po_barrier_or_imm (str); break;
6626 immediate:
6627 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
6628 goto failure;
6629 break;
c19d1205 6630
fa94de6b 6631 case OP_wPSR:
d2cd1205 6632 case OP_rPSR:
90ec0d68
MGD
6633 po_reg_or_goto (REG_TYPE_RNB, try_psr);
6634 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
6635 {
6636 inst.error = _("Banked registers are not available with this "
6637 "architecture.");
6638 goto failure;
6639 }
6640 break;
d2cd1205
JB
6641 try_psr:
6642 val = parse_psr (&str, op_parse_code == OP_wPSR);
6643 break;
037e8744
JB
6644
6645 case OP_APSR_RR:
6646 po_reg_or_goto (REG_TYPE_RN, try_apsr);
6647 break;
6648 try_apsr:
6649 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
6650 instruction). */
6651 if (strncasecmp (str, "APSR_", 5) == 0)
6652 {
6653 unsigned found = 0;
6654 str += 5;
6655 while (found < 15)
6656 switch (*str++)
6657 {
6658 case 'c': found = (found & 1) ? 16 : found | 1; break;
6659 case 'n': found = (found & 2) ? 16 : found | 2; break;
6660 case 'z': found = (found & 4) ? 16 : found | 4; break;
6661 case 'v': found = (found & 8) ? 16 : found | 8; break;
6662 default: found = 16;
6663 }
6664 if (found != 15)
6665 goto failure;
6666 inst.operands[i].isvec = 1;
f7c21dc7
NC
6667 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
6668 inst.operands[i].reg = REG_PC;
037e8744
JB
6669 }
6670 else
6671 goto failure;
6672 break;
6673
92e90b6e
PB
6674 case OP_TB:
6675 po_misc_or_fail (parse_tb (&str));
6676 break;
6677
e07e6e58 6678 /* Register lists. */
c19d1205
ZW
6679 case OP_REGLST:
6680 val = parse_reg_list (&str);
6681 if (*str == '^')
6682 {
6683 inst.operands[1].writeback = 1;
6684 str++;
6685 }
6686 break;
09d92015 6687
c19d1205 6688 case OP_VRSLST:
5287ad62 6689 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 6690 break;
09d92015 6691
c19d1205 6692 case OP_VRDLST:
5287ad62 6693 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 6694 break;
a737bd4d 6695
037e8744
JB
6696 case OP_VRSDLST:
6697 /* Allow Q registers too. */
6698 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6699 REGLIST_NEON_D);
6700 if (val == FAIL)
6701 {
6702 inst.error = NULL;
6703 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6704 REGLIST_VFP_S);
6705 inst.operands[i].issingle = 1;
6706 }
6707 break;
6708
5287ad62
JB
6709 case OP_NRDLST:
6710 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6711 REGLIST_NEON_D);
6712 break;
6713
6714 case OP_NSTRLST:
dcbf9037
JB
6715 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
6716 &inst.operands[i].vectype);
5287ad62
JB
6717 break;
6718
c19d1205
ZW
6719 /* Addressing modes */
6720 case OP_ADDR:
6721 po_misc_or_fail (parse_address (&str, i));
6722 break;
09d92015 6723
4962c51a
MS
6724 case OP_ADDRGLDR:
6725 po_misc_or_fail_no_backtrack (
6726 parse_address_group_reloc (&str, i, GROUP_LDR));
6727 break;
6728
6729 case OP_ADDRGLDRS:
6730 po_misc_or_fail_no_backtrack (
6731 parse_address_group_reloc (&str, i, GROUP_LDRS));
6732 break;
6733
6734 case OP_ADDRGLDC:
6735 po_misc_or_fail_no_backtrack (
6736 parse_address_group_reloc (&str, i, GROUP_LDC));
6737 break;
6738
c19d1205
ZW
6739 case OP_SH:
6740 po_misc_or_fail (parse_shifter_operand (&str, i));
6741 break;
09d92015 6742
4962c51a
MS
6743 case OP_SHG:
6744 po_misc_or_fail_no_backtrack (
6745 parse_shifter_operand_group_reloc (&str, i));
6746 break;
6747
c19d1205
ZW
6748 case OP_oSHll:
6749 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
6750 break;
09d92015 6751
c19d1205
ZW
6752 case OP_oSHar:
6753 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
6754 break;
09d92015 6755
c19d1205
ZW
6756 case OP_oSHllar:
6757 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
6758 break;
09d92015 6759
c19d1205 6760 default:
5be8be5d 6761 as_fatal (_("unhandled operand code %d"), op_parse_code);
c19d1205 6762 }
09d92015 6763
c19d1205
ZW
6764 /* Various value-based sanity checks and shared operations. We
6765 do not signal immediate failures for the register constraints;
6766 this allows a syntax error to take precedence. */
5be8be5d 6767 switch (op_parse_code)
c19d1205
ZW
6768 {
6769 case OP_oRRnpc:
6770 case OP_RRnpc:
6771 case OP_RRnpcb:
6772 case OP_RRw:
b6702015 6773 case OP_oRRw:
c19d1205
ZW
6774 case OP_RRnpc_I0:
6775 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
6776 inst.error = BAD_PC;
6777 break;
09d92015 6778
5be8be5d
DG
6779 case OP_oRRnpcsp:
6780 case OP_RRnpcsp:
6781 if (inst.operands[i].isreg)
6782 {
6783 if (inst.operands[i].reg == REG_PC)
6784 inst.error = BAD_PC;
6785 else if (inst.operands[i].reg == REG_SP)
6786 inst.error = BAD_SP;
6787 }
6788 break;
6789
55881a11 6790 case OP_RRnpctw:
fa94de6b
RM
6791 if (inst.operands[i].isreg
6792 && inst.operands[i].reg == REG_PC
55881a11
MGD
6793 && (inst.operands[i].writeback || thumb))
6794 inst.error = BAD_PC;
6795 break;
6796
c19d1205
ZW
6797 case OP_CPSF:
6798 case OP_ENDI:
6799 case OP_oROR:
d2cd1205
JB
6800 case OP_wPSR:
6801 case OP_rPSR:
c19d1205 6802 case OP_COND:
52e7f43d 6803 case OP_oBARRIER_I15:
c19d1205
ZW
6804 case OP_REGLST:
6805 case OP_VRSLST:
6806 case OP_VRDLST:
037e8744 6807 case OP_VRSDLST:
5287ad62
JB
6808 case OP_NRDLST:
6809 case OP_NSTRLST:
c19d1205
ZW
6810 if (val == FAIL)
6811 goto failure;
6812 inst.operands[i].imm = val;
6813 break;
a737bd4d 6814
c19d1205
ZW
6815 default:
6816 break;
6817 }
09d92015 6818
c19d1205
ZW
6819 /* If we get here, this operand was successfully parsed. */
6820 inst.operands[i].present = 1;
6821 continue;
09d92015 6822
c19d1205 6823 bad_args:
09d92015 6824 inst.error = BAD_ARGS;
c19d1205
ZW
6825
6826 failure:
6827 if (!backtrack_pos)
d252fdde
PB
6828 {
6829 /* The parse routine should already have set inst.error, but set a
5f4273c7 6830 default here just in case. */
d252fdde
PB
6831 if (!inst.error)
6832 inst.error = _("syntax error");
6833 return FAIL;
6834 }
c19d1205
ZW
6835
6836 /* Do not backtrack over a trailing optional argument that
6837 absorbed some text. We will only fail again, with the
6838 'garbage following instruction' error message, which is
6839 probably less helpful than the current one. */
6840 if (backtrack_index == i && backtrack_pos != str
6841 && upat[i+1] == OP_stop)
d252fdde
PB
6842 {
6843 if (!inst.error)
6844 inst.error = _("syntax error");
6845 return FAIL;
6846 }
c19d1205
ZW
6847
6848 /* Try again, skipping the optional argument at backtrack_pos. */
6849 str = backtrack_pos;
6850 inst.error = backtrack_error;
6851 inst.operands[backtrack_index].present = 0;
6852 i = backtrack_index;
6853 backtrack_pos = 0;
09d92015 6854 }
09d92015 6855
c19d1205
ZW
6856 /* Check that we have parsed all the arguments. */
6857 if (*str != '\0' && !inst.error)
6858 inst.error = _("garbage following instruction");
09d92015 6859
c19d1205 6860 return inst.error ? FAIL : SUCCESS;
09d92015
MM
6861}
6862
c19d1205
ZW
6863#undef po_char_or_fail
6864#undef po_reg_or_fail
6865#undef po_reg_or_goto
6866#undef po_imm_or_fail
5287ad62 6867#undef po_scalar_or_fail
52e7f43d 6868#undef po_barrier_or_imm
e07e6e58 6869
c19d1205 6870/* Shorthand macro for instruction encoding functions issuing errors. */
e07e6e58
NC
6871#define constraint(expr, err) \
6872 do \
c19d1205 6873 { \
e07e6e58
NC
6874 if (expr) \
6875 { \
6876 inst.error = err; \
6877 return; \
6878 } \
c19d1205 6879 } \
e07e6e58 6880 while (0)
c19d1205 6881
fdfde340
JM
6882/* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
6883 instructions are unpredictable if these registers are used. This
6884 is the BadReg predicate in ARM's Thumb-2 documentation. */
6885#define reject_bad_reg(reg) \
6886 do \
6887 if (reg == REG_SP || reg == REG_PC) \
6888 { \
6889 inst.error = (reg == REG_SP) ? BAD_SP : BAD_PC; \
6890 return; \
6891 } \
6892 while (0)
6893
94206790
MM
6894/* If REG is R13 (the stack pointer), warn that its use is
6895 deprecated. */
6896#define warn_deprecated_sp(reg) \
6897 do \
6898 if (warn_on_deprecated && reg == REG_SP) \
6899 as_warn (_("use of r13 is deprecated")); \
6900 while (0)
6901
c19d1205
ZW
6902/* Functions for operand encoding. ARM, then Thumb. */
6903
6904#define rotate_left(v, n) (v << n | v >> (32 - n))
6905
6906/* If VAL can be encoded in the immediate field of an ARM instruction,
6907 return the encoded form. Otherwise, return FAIL. */
6908
6909static unsigned int
6910encode_arm_immediate (unsigned int val)
09d92015 6911{
c19d1205
ZW
6912 unsigned int a, i;
6913
6914 for (i = 0; i < 32; i += 2)
6915 if ((a = rotate_left (val, i)) <= 0xff)
6916 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
6917
6918 return FAIL;
09d92015
MM
6919}
6920
c19d1205
ZW
6921/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
6922 return the encoded form. Otherwise, return FAIL. */
6923static unsigned int
6924encode_thumb32_immediate (unsigned int val)
09d92015 6925{
c19d1205 6926 unsigned int a, i;
09d92015 6927
9c3c69f2 6928 if (val <= 0xff)
c19d1205 6929 return val;
a737bd4d 6930
9c3c69f2 6931 for (i = 1; i <= 24; i++)
09d92015 6932 {
9c3c69f2
PB
6933 a = val >> i;
6934 if ((val & ~(0xff << i)) == 0)
6935 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 6936 }
a737bd4d 6937
c19d1205
ZW
6938 a = val & 0xff;
6939 if (val == ((a << 16) | a))
6940 return 0x100 | a;
6941 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
6942 return 0x300 | a;
09d92015 6943
c19d1205
ZW
6944 a = val & 0xff00;
6945 if (val == ((a << 16) | a))
6946 return 0x200 | (a >> 8);
a737bd4d 6947
c19d1205 6948 return FAIL;
09d92015 6949}
5287ad62 6950/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
6951
6952static void
5287ad62
JB
6953encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
6954{
6955 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
6956 && reg > 15)
6957 {
b1cc4aeb 6958 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
5287ad62
JB
6959 {
6960 if (thumb_mode)
6961 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
b1cc4aeb 6962 fpu_vfp_ext_d32);
5287ad62
JB
6963 else
6964 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
b1cc4aeb 6965 fpu_vfp_ext_d32);
5287ad62
JB
6966 }
6967 else
6968 {
dcbf9037 6969 first_error (_("D register out of range for selected VFP version"));
5287ad62
JB
6970 return;
6971 }
6972 }
6973
c19d1205 6974 switch (pos)
09d92015 6975 {
c19d1205
ZW
6976 case VFP_REG_Sd:
6977 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
6978 break;
6979
6980 case VFP_REG_Sn:
6981 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
6982 break;
6983
6984 case VFP_REG_Sm:
6985 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
6986 break;
6987
5287ad62
JB
6988 case VFP_REG_Dd:
6989 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
6990 break;
5f4273c7 6991
5287ad62
JB
6992 case VFP_REG_Dn:
6993 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
6994 break;
5f4273c7 6995
5287ad62
JB
6996 case VFP_REG_Dm:
6997 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
6998 break;
6999
c19d1205
ZW
7000 default:
7001 abort ();
09d92015 7002 }
09d92015
MM
7003}
7004
c19d1205 7005/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 7006 if any, is handled by md_apply_fix. */
09d92015 7007static void
c19d1205 7008encode_arm_shift (int i)
09d92015 7009{
c19d1205
ZW
7010 if (inst.operands[i].shift_kind == SHIFT_RRX)
7011 inst.instruction |= SHIFT_ROR << 5;
7012 else
09d92015 7013 {
c19d1205
ZW
7014 inst.instruction |= inst.operands[i].shift_kind << 5;
7015 if (inst.operands[i].immisreg)
7016 {
7017 inst.instruction |= SHIFT_BY_REG;
7018 inst.instruction |= inst.operands[i].imm << 8;
7019 }
7020 else
7021 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 7022 }
c19d1205 7023}
09d92015 7024
c19d1205
ZW
7025static void
7026encode_arm_shifter_operand (int i)
7027{
7028 if (inst.operands[i].isreg)
09d92015 7029 {
c19d1205
ZW
7030 inst.instruction |= inst.operands[i].reg;
7031 encode_arm_shift (i);
09d92015 7032 }
c19d1205 7033 else
a415b1cd
JB
7034 {
7035 inst.instruction |= INST_IMMEDIATE;
7036 if (inst.reloc.type != BFD_RELOC_ARM_IMMEDIATE)
7037 inst.instruction |= inst.operands[i].imm;
7038 }
09d92015
MM
7039}
7040
c19d1205 7041/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 7042static void
c19d1205 7043encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 7044{
9c2799c2 7045 gas_assert (inst.operands[i].isreg);
c19d1205 7046 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7047
c19d1205 7048 if (inst.operands[i].preind)
09d92015 7049 {
c19d1205
ZW
7050 if (is_t)
7051 {
7052 inst.error = _("instruction does not accept preindexed addressing");
7053 return;
7054 }
7055 inst.instruction |= PRE_INDEX;
7056 if (inst.operands[i].writeback)
7057 inst.instruction |= WRITE_BACK;
09d92015 7058
c19d1205
ZW
7059 }
7060 else if (inst.operands[i].postind)
7061 {
9c2799c2 7062 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
7063 if (is_t)
7064 inst.instruction |= WRITE_BACK;
7065 }
7066 else /* unindexed - only for coprocessor */
09d92015 7067 {
c19d1205 7068 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
7069 return;
7070 }
7071
c19d1205
ZW
7072 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
7073 && (((inst.instruction & 0x000f0000) >> 16)
7074 == ((inst.instruction & 0x0000f000) >> 12)))
7075 as_warn ((inst.instruction & LOAD_BIT)
7076 ? _("destination register same as write-back base")
7077 : _("source register same as write-back base"));
09d92015
MM
7078}
7079
c19d1205
ZW
7080/* inst.operands[i] was set up by parse_address. Encode it into an
7081 ARM-format mode 2 load or store instruction. If is_t is true,
7082 reject forms that cannot be used with a T instruction (i.e. not
7083 post-indexed). */
a737bd4d 7084static void
c19d1205 7085encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 7086{
5be8be5d
DG
7087 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
7088
c19d1205 7089 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7090
c19d1205 7091 if (inst.operands[i].immisreg)
09d92015 7092 {
5be8be5d
DG
7093 constraint ((inst.operands[i].imm == REG_PC
7094 || (is_pc && inst.operands[i].writeback)),
7095 BAD_PC_ADDRESSING);
c19d1205
ZW
7096 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
7097 inst.instruction |= inst.operands[i].imm;
7098 if (!inst.operands[i].negative)
7099 inst.instruction |= INDEX_UP;
7100 if (inst.operands[i].shifted)
7101 {
7102 if (inst.operands[i].shift_kind == SHIFT_RRX)
7103 inst.instruction |= SHIFT_ROR << 5;
7104 else
7105 {
7106 inst.instruction |= inst.operands[i].shift_kind << 5;
7107 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7108 }
7109 }
09d92015 7110 }
c19d1205 7111 else /* immediate offset in inst.reloc */
09d92015 7112 {
5be8be5d
DG
7113 if (is_pc && !inst.reloc.pc_rel)
7114 {
7115 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
23a10334
JZ
7116
7117 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
7118 cannot use PC in addressing.
7119 PC cannot be used in writeback addressing, either. */
7120 constraint ((is_t || inst.operands[i].writeback),
5be8be5d 7121 BAD_PC_ADDRESSING);
23a10334 7122
dc5ec521 7123 /* Use of PC in str is deprecated for ARMv7. */
23a10334
JZ
7124 if (warn_on_deprecated
7125 && !is_load
7126 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
7127 as_warn (_("use of PC in this instruction is deprecated"));
5be8be5d
DG
7128 }
7129
c19d1205 7130 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7131 {
7132 /* Prefer + for zero encoded value. */
7133 if (!inst.operands[i].negative)
7134 inst.instruction |= INDEX_UP;
7135 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
7136 }
09d92015 7137 }
09d92015
MM
7138}
7139
c19d1205
ZW
7140/* inst.operands[i] was set up by parse_address. Encode it into an
7141 ARM-format mode 3 load or store instruction. Reject forms that
7142 cannot be used with such instructions. If is_t is true, reject
7143 forms that cannot be used with a T instruction (i.e. not
7144 post-indexed). */
7145static void
7146encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 7147{
c19d1205 7148 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 7149 {
c19d1205
ZW
7150 inst.error = _("instruction does not accept scaled register index");
7151 return;
09d92015 7152 }
a737bd4d 7153
c19d1205 7154 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7155
c19d1205
ZW
7156 if (inst.operands[i].immisreg)
7157 {
5be8be5d
DG
7158 constraint ((inst.operands[i].imm == REG_PC
7159 || inst.operands[i].reg == REG_PC),
7160 BAD_PC_ADDRESSING);
c19d1205
ZW
7161 inst.instruction |= inst.operands[i].imm;
7162 if (!inst.operands[i].negative)
7163 inst.instruction |= INDEX_UP;
7164 }
7165 else /* immediate offset in inst.reloc */
7166 {
5be8be5d
DG
7167 constraint ((inst.operands[i].reg == REG_PC && !inst.reloc.pc_rel
7168 && inst.operands[i].writeback),
7169 BAD_PC_WRITEBACK);
c19d1205
ZW
7170 inst.instruction |= HWOFFSET_IMM;
7171 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7172 {
7173 /* Prefer + for zero encoded value. */
7174 if (!inst.operands[i].negative)
7175 inst.instruction |= INDEX_UP;
7176
7177 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
7178 }
c19d1205 7179 }
a737bd4d
NC
7180}
7181
c19d1205
ZW
7182/* inst.operands[i] was set up by parse_address. Encode it into an
7183 ARM-format instruction. Reject all forms which cannot be encoded
7184 into a coprocessor load/store instruction. If wb_ok is false,
7185 reject use of writeback; if unind_ok is false, reject use of
7186 unindexed addressing. If reloc_override is not 0, use it instead
4962c51a
MS
7187 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
7188 (in which case it is preserved). */
09d92015 7189
c19d1205
ZW
7190static int
7191encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
09d92015 7192{
c19d1205 7193 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7194
9c2799c2 7195 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
09d92015 7196
c19d1205 7197 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
09d92015 7198 {
9c2799c2 7199 gas_assert (!inst.operands[i].writeback);
c19d1205
ZW
7200 if (!unind_ok)
7201 {
7202 inst.error = _("instruction does not support unindexed addressing");
7203 return FAIL;
7204 }
7205 inst.instruction |= inst.operands[i].imm;
7206 inst.instruction |= INDEX_UP;
7207 return SUCCESS;
09d92015 7208 }
a737bd4d 7209
c19d1205
ZW
7210 if (inst.operands[i].preind)
7211 inst.instruction |= PRE_INDEX;
a737bd4d 7212
c19d1205 7213 if (inst.operands[i].writeback)
09d92015 7214 {
c19d1205
ZW
7215 if (inst.operands[i].reg == REG_PC)
7216 {
7217 inst.error = _("pc may not be used with write-back");
7218 return FAIL;
7219 }
7220 if (!wb_ok)
7221 {
7222 inst.error = _("instruction does not support writeback");
7223 return FAIL;
7224 }
7225 inst.instruction |= WRITE_BACK;
09d92015 7226 }
a737bd4d 7227
c19d1205 7228 if (reloc_override)
21d799b5 7229 inst.reloc.type = (bfd_reloc_code_real_type) reloc_override;
4962c51a
MS
7230 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
7231 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
7232 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
7233 {
7234 if (thumb_mode)
7235 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
7236 else
7237 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
7238 }
7239
26d97720
NS
7240 /* Prefer + for zero encoded value. */
7241 if (!inst.operands[i].negative)
7242 inst.instruction |= INDEX_UP;
7243
c19d1205
ZW
7244 return SUCCESS;
7245}
a737bd4d 7246
c19d1205
ZW
7247/* inst.reloc.exp describes an "=expr" load pseudo-operation.
7248 Determine whether it can be performed with a move instruction; if
7249 it can, convert inst.instruction to that move instruction and
c921be7d
NC
7250 return TRUE; if it can't, convert inst.instruction to a literal-pool
7251 load and return FALSE. If this is not a valid thing to do in the
7252 current context, set inst.error and return TRUE.
a737bd4d 7253
c19d1205
ZW
7254 inst.operands[i] describes the destination register. */
7255
c921be7d 7256static bfd_boolean
c19d1205
ZW
7257move_or_literal_pool (int i, bfd_boolean thumb_p, bfd_boolean mode_3)
7258{
53365c0d
PB
7259 unsigned long tbit;
7260
7261 if (thumb_p)
7262 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
7263 else
7264 tbit = LOAD_BIT;
7265
7266 if ((inst.instruction & tbit) == 0)
09d92015 7267 {
c19d1205 7268 inst.error = _("invalid pseudo operation");
c921be7d 7269 return TRUE;
09d92015 7270 }
c19d1205 7271 if (inst.reloc.exp.X_op != O_constant && inst.reloc.exp.X_op != O_symbol)
09d92015
MM
7272 {
7273 inst.error = _("constant expression expected");
c921be7d 7274 return TRUE;
09d92015 7275 }
c19d1205 7276 if (inst.reloc.exp.X_op == O_constant)
09d92015 7277 {
c19d1205
ZW
7278 if (thumb_p)
7279 {
53365c0d 7280 if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
c19d1205
ZW
7281 {
7282 /* This can be done with a mov(1) instruction. */
7283 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
7284 inst.instruction |= inst.reloc.exp.X_add_number;
c921be7d 7285 return TRUE;
c19d1205
ZW
7286 }
7287 }
7288 else
7289 {
7290 int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
7291 if (value != FAIL)
7292 {
7293 /* This can be done with a mov instruction. */
7294 inst.instruction &= LITERAL_MASK;
7295 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
7296 inst.instruction |= value & 0xfff;
c921be7d 7297 return TRUE;
c19d1205 7298 }
09d92015 7299
c19d1205
ZW
7300 value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
7301 if (value != FAIL)
7302 {
7303 /* This can be done with a mvn instruction. */
7304 inst.instruction &= LITERAL_MASK;
7305 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
7306 inst.instruction |= value & 0xfff;
c921be7d 7307 return TRUE;
c19d1205
ZW
7308 }
7309 }
09d92015
MM
7310 }
7311
c19d1205
ZW
7312 if (add_to_lit_pool () == FAIL)
7313 {
7314 inst.error = _("literal pool insertion failed");
c921be7d 7315 return TRUE;
c19d1205
ZW
7316 }
7317 inst.operands[1].reg = REG_PC;
7318 inst.operands[1].isreg = 1;
7319 inst.operands[1].preind = 1;
7320 inst.reloc.pc_rel = 1;
7321 inst.reloc.type = (thumb_p
7322 ? BFD_RELOC_ARM_THUMB_OFFSET
7323 : (mode_3
7324 ? BFD_RELOC_ARM_HWLITERAL
7325 : BFD_RELOC_ARM_LITERAL));
c921be7d 7326 return FALSE;
09d92015
MM
7327}
7328
5f4273c7 7329/* Functions for instruction encoding, sorted by sub-architecture.
c19d1205
ZW
7330 First some generics; their names are taken from the conventional
7331 bit positions for register arguments in ARM format instructions. */
09d92015 7332
a737bd4d 7333static void
c19d1205 7334do_noargs (void)
09d92015 7335{
c19d1205 7336}
a737bd4d 7337
c19d1205
ZW
7338static void
7339do_rd (void)
7340{
7341 inst.instruction |= inst.operands[0].reg << 12;
7342}
a737bd4d 7343
c19d1205
ZW
7344static void
7345do_rd_rm (void)
7346{
7347 inst.instruction |= inst.operands[0].reg << 12;
7348 inst.instruction |= inst.operands[1].reg;
7349}
09d92015 7350
c19d1205
ZW
7351static void
7352do_rd_rn (void)
7353{
7354 inst.instruction |= inst.operands[0].reg << 12;
7355 inst.instruction |= inst.operands[1].reg << 16;
7356}
a737bd4d 7357
c19d1205
ZW
7358static void
7359do_rn_rd (void)
7360{
7361 inst.instruction |= inst.operands[0].reg << 16;
7362 inst.instruction |= inst.operands[1].reg << 12;
7363}
09d92015 7364
c19d1205
ZW
7365static void
7366do_rd_rm_rn (void)
7367{
9a64e435 7368 unsigned Rn = inst.operands[2].reg;
708587a4 7369 /* Enforce restrictions on SWP instruction. */
9a64e435 7370 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
56adecf4
DG
7371 {
7372 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
7373 _("Rn must not overlap other operands"));
7374
7375 /* SWP{b} is deprecated for ARMv6* and ARMv7. */
7376 if (warn_on_deprecated
7377 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
7378 as_warn (_("swp{b} use is deprecated for this architecture"));
7379
7380 }
c19d1205
ZW
7381 inst.instruction |= inst.operands[0].reg << 12;
7382 inst.instruction |= inst.operands[1].reg;
9a64e435 7383 inst.instruction |= Rn << 16;
c19d1205 7384}
09d92015 7385
c19d1205
ZW
7386static void
7387do_rd_rn_rm (void)
7388{
7389 inst.instruction |= inst.operands[0].reg << 12;
7390 inst.instruction |= inst.operands[1].reg << 16;
7391 inst.instruction |= inst.operands[2].reg;
7392}
a737bd4d 7393
c19d1205
ZW
7394static void
7395do_rm_rd_rn (void)
7396{
5be8be5d
DG
7397 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
7398 constraint (((inst.reloc.exp.X_op != O_constant
7399 && inst.reloc.exp.X_op != O_illegal)
7400 || inst.reloc.exp.X_add_number != 0),
7401 BAD_ADDR_MODE);
c19d1205
ZW
7402 inst.instruction |= inst.operands[0].reg;
7403 inst.instruction |= inst.operands[1].reg << 12;
7404 inst.instruction |= inst.operands[2].reg << 16;
7405}
09d92015 7406
c19d1205
ZW
7407static void
7408do_imm0 (void)
7409{
7410 inst.instruction |= inst.operands[0].imm;
7411}
09d92015 7412
c19d1205
ZW
7413static void
7414do_rd_cpaddr (void)
7415{
7416 inst.instruction |= inst.operands[0].reg << 12;
7417 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 7418}
a737bd4d 7419
c19d1205
ZW
7420/* ARM instructions, in alphabetical order by function name (except
7421 that wrapper functions appear immediately after the function they
7422 wrap). */
09d92015 7423
c19d1205
ZW
7424/* This is a pseudo-op of the form "adr rd, label" to be converted
7425 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
7426
7427static void
c19d1205 7428do_adr (void)
09d92015 7429{
c19d1205 7430 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7431
c19d1205
ZW
7432 /* Frag hacking will turn this into a sub instruction if the offset turns
7433 out to be negative. */
7434 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 7435 inst.reloc.pc_rel = 1;
2fc8bdac 7436 inst.reloc.exp.X_add_number -= 8;
c19d1205 7437}
b99bd4ef 7438
c19d1205
ZW
7439/* This is a pseudo-op of the form "adrl rd, label" to be converted
7440 into a relative address of the form:
7441 add rd, pc, #low(label-.-8)"
7442 add rd, rd, #high(label-.-8)" */
b99bd4ef 7443
c19d1205
ZW
7444static void
7445do_adrl (void)
7446{
7447 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7448
c19d1205
ZW
7449 /* Frag hacking will turn this into a sub instruction if the offset turns
7450 out to be negative. */
7451 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
7452 inst.reloc.pc_rel = 1;
7453 inst.size = INSN_SIZE * 2;
2fc8bdac 7454 inst.reloc.exp.X_add_number -= 8;
b99bd4ef
NC
7455}
7456
b99bd4ef 7457static void
c19d1205 7458do_arit (void)
b99bd4ef 7459{
c19d1205
ZW
7460 if (!inst.operands[1].present)
7461 inst.operands[1].reg = inst.operands[0].reg;
7462 inst.instruction |= inst.operands[0].reg << 12;
7463 inst.instruction |= inst.operands[1].reg << 16;
7464 encode_arm_shifter_operand (2);
7465}
b99bd4ef 7466
62b3e311
PB
7467static void
7468do_barrier (void)
7469{
7470 if (inst.operands[0].present)
7471 {
7472 constraint ((inst.instruction & 0xf0) != 0x40
52e7f43d
RE
7473 && inst.operands[0].imm > 0xf
7474 && inst.operands[0].imm < 0x0,
bd3ba5d1 7475 _("bad barrier type"));
62b3e311
PB
7476 inst.instruction |= inst.operands[0].imm;
7477 }
7478 else
7479 inst.instruction |= 0xf;
7480}
7481
c19d1205
ZW
7482static void
7483do_bfc (void)
7484{
7485 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
7486 constraint (msb > 32, _("bit-field extends past end of register"));
7487 /* The instruction encoding stores the LSB and MSB,
7488 not the LSB and width. */
7489 inst.instruction |= inst.operands[0].reg << 12;
7490 inst.instruction |= inst.operands[1].imm << 7;
7491 inst.instruction |= (msb - 1) << 16;
7492}
b99bd4ef 7493
c19d1205
ZW
7494static void
7495do_bfi (void)
7496{
7497 unsigned int msb;
b99bd4ef 7498
c19d1205
ZW
7499 /* #0 in second position is alternative syntax for bfc, which is
7500 the same instruction but with REG_PC in the Rm field. */
7501 if (!inst.operands[1].isreg)
7502 inst.operands[1].reg = REG_PC;
b99bd4ef 7503
c19d1205
ZW
7504 msb = inst.operands[2].imm + inst.operands[3].imm;
7505 constraint (msb > 32, _("bit-field extends past end of register"));
7506 /* The instruction encoding stores the LSB and MSB,
7507 not the LSB and width. */
7508 inst.instruction |= inst.operands[0].reg << 12;
7509 inst.instruction |= inst.operands[1].reg;
7510 inst.instruction |= inst.operands[2].imm << 7;
7511 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
7512}
7513
b99bd4ef 7514static void
c19d1205 7515do_bfx (void)
b99bd4ef 7516{
c19d1205
ZW
7517 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
7518 _("bit-field extends past end of register"));
7519 inst.instruction |= inst.operands[0].reg << 12;
7520 inst.instruction |= inst.operands[1].reg;
7521 inst.instruction |= inst.operands[2].imm << 7;
7522 inst.instruction |= (inst.operands[3].imm - 1) << 16;
7523}
09d92015 7524
c19d1205
ZW
7525/* ARM V5 breakpoint instruction (argument parse)
7526 BKPT <16 bit unsigned immediate>
7527 Instruction is not conditional.
7528 The bit pattern given in insns[] has the COND_ALWAYS condition,
7529 and it is an error if the caller tried to override that. */
b99bd4ef 7530
c19d1205
ZW
7531static void
7532do_bkpt (void)
7533{
7534 /* Top 12 of 16 bits to bits 19:8. */
7535 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 7536
c19d1205
ZW
7537 /* Bottom 4 of 16 bits to bits 3:0. */
7538 inst.instruction |= inst.operands[0].imm & 0xf;
7539}
09d92015 7540
c19d1205
ZW
7541static void
7542encode_branch (int default_reloc)
7543{
7544 if (inst.operands[0].hasreloc)
7545 {
0855e32b
NS
7546 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
7547 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
7548 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
7549 inst.reloc.type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
7550 ? BFD_RELOC_ARM_PLT32
7551 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
c19d1205 7552 }
b99bd4ef 7553 else
9ae92b05 7554 inst.reloc.type = (bfd_reloc_code_real_type) default_reloc;
2fc8bdac 7555 inst.reloc.pc_rel = 1;
b99bd4ef
NC
7556}
7557
b99bd4ef 7558static void
c19d1205 7559do_branch (void)
b99bd4ef 7560{
39b41c9c
PB
7561#ifdef OBJ_ELF
7562 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7563 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7564 else
7565#endif
7566 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
7567}
7568
7569static void
7570do_bl (void)
7571{
7572#ifdef OBJ_ELF
7573 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7574 {
7575 if (inst.cond == COND_ALWAYS)
7576 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
7577 else
7578 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7579 }
7580 else
7581#endif
7582 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 7583}
b99bd4ef 7584
c19d1205
ZW
7585/* ARM V5 branch-link-exchange instruction (argument parse)
7586 BLX <target_addr> ie BLX(1)
7587 BLX{<condition>} <Rm> ie BLX(2)
7588 Unfortunately, there are two different opcodes for this mnemonic.
7589 So, the insns[].value is not used, and the code here zaps values
7590 into inst.instruction.
7591 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 7592
c19d1205
ZW
7593static void
7594do_blx (void)
7595{
7596 if (inst.operands[0].isreg)
b99bd4ef 7597 {
c19d1205
ZW
7598 /* Arg is a register; the opcode provided by insns[] is correct.
7599 It is not illegal to do "blx pc", just useless. */
7600 if (inst.operands[0].reg == REG_PC)
7601 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 7602
c19d1205
ZW
7603 inst.instruction |= inst.operands[0].reg;
7604 }
7605 else
b99bd4ef 7606 {
c19d1205 7607 /* Arg is an address; this instruction cannot be executed
267bf995
RR
7608 conditionally, and the opcode must be adjusted.
7609 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
7610 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
c19d1205 7611 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 7612 inst.instruction = 0xfa000000;
267bf995 7613 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 7614 }
c19d1205
ZW
7615}
7616
7617static void
7618do_bx (void)
7619{
845b51d6
PB
7620 bfd_boolean want_reloc;
7621
c19d1205
ZW
7622 if (inst.operands[0].reg == REG_PC)
7623 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 7624
c19d1205 7625 inst.instruction |= inst.operands[0].reg;
845b51d6
PB
7626 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
7627 it is for ARMv4t or earlier. */
7628 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
7629 if (object_arch && !ARM_CPU_HAS_FEATURE (*object_arch, arm_ext_v5))
7630 want_reloc = TRUE;
7631
5ad34203 7632#ifdef OBJ_ELF
845b51d6 7633 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
5ad34203 7634#endif
584206db 7635 want_reloc = FALSE;
845b51d6
PB
7636
7637 if (want_reloc)
7638 inst.reloc.type = BFD_RELOC_ARM_V4BX;
09d92015
MM
7639}
7640
c19d1205
ZW
7641
7642/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
7643
7644static void
c19d1205 7645do_bxj (void)
a737bd4d 7646{
c19d1205
ZW
7647 if (inst.operands[0].reg == REG_PC)
7648 as_tsktsk (_("use of r15 in bxj is not really useful"));
7649
7650 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
7651}
7652
c19d1205
ZW
7653/* Co-processor data operation:
7654 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
7655 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
7656static void
7657do_cdp (void)
7658{
7659 inst.instruction |= inst.operands[0].reg << 8;
7660 inst.instruction |= inst.operands[1].imm << 20;
7661 inst.instruction |= inst.operands[2].reg << 12;
7662 inst.instruction |= inst.operands[3].reg << 16;
7663 inst.instruction |= inst.operands[4].reg;
7664 inst.instruction |= inst.operands[5].imm << 5;
7665}
a737bd4d
NC
7666
7667static void
c19d1205 7668do_cmp (void)
a737bd4d 7669{
c19d1205
ZW
7670 inst.instruction |= inst.operands[0].reg << 16;
7671 encode_arm_shifter_operand (1);
a737bd4d
NC
7672}
7673
c19d1205
ZW
7674/* Transfer between coprocessor and ARM registers.
7675 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
7676 MRC2
7677 MCR{cond}
7678 MCR2
7679
7680 No special properties. */
09d92015
MM
7681
7682static void
c19d1205 7683do_co_reg (void)
09d92015 7684{
fdfde340
JM
7685 unsigned Rd;
7686
7687 Rd = inst.operands[2].reg;
7688 if (thumb_mode)
7689 {
7690 if (inst.instruction == 0xee000010
7691 || inst.instruction == 0xfe000010)
7692 /* MCR, MCR2 */
7693 reject_bad_reg (Rd);
7694 else
7695 /* MRC, MRC2 */
7696 constraint (Rd == REG_SP, BAD_SP);
7697 }
7698 else
7699 {
7700 /* MCR */
7701 if (inst.instruction == 0xe000010)
7702 constraint (Rd == REG_PC, BAD_PC);
7703 }
7704
7705
c19d1205
ZW
7706 inst.instruction |= inst.operands[0].reg << 8;
7707 inst.instruction |= inst.operands[1].imm << 21;
fdfde340 7708 inst.instruction |= Rd << 12;
c19d1205
ZW
7709 inst.instruction |= inst.operands[3].reg << 16;
7710 inst.instruction |= inst.operands[4].reg;
7711 inst.instruction |= inst.operands[5].imm << 5;
7712}
09d92015 7713
c19d1205
ZW
7714/* Transfer between coprocessor register and pair of ARM registers.
7715 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
7716 MCRR2
7717 MRRC{cond}
7718 MRRC2
b99bd4ef 7719
c19d1205 7720 Two XScale instructions are special cases of these:
09d92015 7721
c19d1205
ZW
7722 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
7723 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 7724
5f4273c7 7725 Result unpredictable if Rd or Rn is R15. */
a737bd4d 7726
c19d1205
ZW
7727static void
7728do_co_reg2c (void)
7729{
fdfde340
JM
7730 unsigned Rd, Rn;
7731
7732 Rd = inst.operands[2].reg;
7733 Rn = inst.operands[3].reg;
7734
7735 if (thumb_mode)
7736 {
7737 reject_bad_reg (Rd);
7738 reject_bad_reg (Rn);
7739 }
7740 else
7741 {
7742 constraint (Rd == REG_PC, BAD_PC);
7743 constraint (Rn == REG_PC, BAD_PC);
7744 }
7745
c19d1205
ZW
7746 inst.instruction |= inst.operands[0].reg << 8;
7747 inst.instruction |= inst.operands[1].imm << 4;
fdfde340
JM
7748 inst.instruction |= Rd << 12;
7749 inst.instruction |= Rn << 16;
c19d1205 7750 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
7751}
7752
c19d1205
ZW
7753static void
7754do_cpsi (void)
7755{
7756 inst.instruction |= inst.operands[0].imm << 6;
a028a6f5
PB
7757 if (inst.operands[1].present)
7758 {
7759 inst.instruction |= CPSI_MMOD;
7760 inst.instruction |= inst.operands[1].imm;
7761 }
c19d1205 7762}
b99bd4ef 7763
62b3e311
PB
7764static void
7765do_dbg (void)
7766{
7767 inst.instruction |= inst.operands[0].imm;
7768}
7769
eea54501
MGD
7770static void
7771do_div (void)
7772{
7773 unsigned Rd, Rn, Rm;
7774
7775 Rd = inst.operands[0].reg;
7776 Rn = (inst.operands[1].present
7777 ? inst.operands[1].reg : Rd);
7778 Rm = inst.operands[2].reg;
7779
7780 constraint ((Rd == REG_PC), BAD_PC);
7781 constraint ((Rn == REG_PC), BAD_PC);
7782 constraint ((Rm == REG_PC), BAD_PC);
7783
7784 inst.instruction |= Rd << 16;
7785 inst.instruction |= Rn << 0;
7786 inst.instruction |= Rm << 8;
7787}
7788
b99bd4ef 7789static void
c19d1205 7790do_it (void)
b99bd4ef 7791{
c19d1205 7792 /* There is no IT instruction in ARM mode. We
e07e6e58
NC
7793 process it to do the validation as if in
7794 thumb mode, just in case the code gets
7795 assembled for thumb using the unified syntax. */
7796
c19d1205 7797 inst.size = 0;
e07e6e58
NC
7798 if (unified_syntax)
7799 {
7800 set_it_insn_type (IT_INSN);
7801 now_it.mask = (inst.instruction & 0xf) | 0x10;
7802 now_it.cc = inst.operands[0].imm;
7803 }
09d92015 7804}
b99bd4ef 7805
6530b175
NC
7806/* If there is only one register in the register list,
7807 then return its register number. Otherwise return -1. */
7808static int
7809only_one_reg_in_list (int range)
7810{
7811 int i = ffs (range) - 1;
7812 return (i > 15 || range != (1 << i)) ? -1 : i;
7813}
7814
09d92015 7815static void
6530b175 7816encode_ldmstm(int from_push_pop_mnem)
ea6ef066 7817{
c19d1205
ZW
7818 int base_reg = inst.operands[0].reg;
7819 int range = inst.operands[1].imm;
6530b175 7820 int one_reg;
ea6ef066 7821
c19d1205
ZW
7822 inst.instruction |= base_reg << 16;
7823 inst.instruction |= range;
ea6ef066 7824
c19d1205
ZW
7825 if (inst.operands[1].writeback)
7826 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 7827
c19d1205 7828 if (inst.operands[0].writeback)
ea6ef066 7829 {
c19d1205
ZW
7830 inst.instruction |= WRITE_BACK;
7831 /* Check for unpredictable uses of writeback. */
7832 if (inst.instruction & LOAD_BIT)
09d92015 7833 {
c19d1205
ZW
7834 /* Not allowed in LDM type 2. */
7835 if ((inst.instruction & LDM_TYPE_2_OR_3)
7836 && ((range & (1 << REG_PC)) == 0))
7837 as_warn (_("writeback of base register is UNPREDICTABLE"));
7838 /* Only allowed if base reg not in list for other types. */
7839 else if (range & (1 << base_reg))
7840 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
7841 }
7842 else /* STM. */
7843 {
7844 /* Not allowed for type 2. */
7845 if (inst.instruction & LDM_TYPE_2_OR_3)
7846 as_warn (_("writeback of base register is UNPREDICTABLE"));
7847 /* Only allowed if base reg not in list, or first in list. */
7848 else if ((range & (1 << base_reg))
7849 && (range & ((1 << base_reg) - 1)))
7850 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 7851 }
ea6ef066 7852 }
6530b175
NC
7853
7854 /* If PUSH/POP has only one register, then use the A2 encoding. */
7855 one_reg = only_one_reg_in_list (range);
7856 if (from_push_pop_mnem && one_reg >= 0)
7857 {
7858 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
7859
7860 inst.instruction &= A_COND_MASK;
7861 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
7862 inst.instruction |= one_reg << 12;
7863 }
7864}
7865
7866static void
7867do_ldmstm (void)
7868{
7869 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
a737bd4d
NC
7870}
7871
c19d1205
ZW
7872/* ARMv5TE load-consecutive (argument parse)
7873 Mode is like LDRH.
7874
7875 LDRccD R, mode
7876 STRccD R, mode. */
7877
a737bd4d 7878static void
c19d1205 7879do_ldrd (void)
a737bd4d 7880{
c19d1205 7881 constraint (inst.operands[0].reg % 2 != 0,
c56791bb 7882 _("first transfer register must be even"));
c19d1205
ZW
7883 constraint (inst.operands[1].present
7884 && inst.operands[1].reg != inst.operands[0].reg + 1,
c56791bb 7885 _("can only transfer two consecutive registers"));
c19d1205
ZW
7886 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
7887 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 7888
c19d1205
ZW
7889 if (!inst.operands[1].present)
7890 inst.operands[1].reg = inst.operands[0].reg + 1;
5f4273c7 7891
c56791bb
RE
7892 /* encode_arm_addr_mode_3 will diagnose overlap between the base
7893 register and the first register written; we have to diagnose
7894 overlap between the base and the second register written here. */
ea6ef066 7895
c56791bb
RE
7896 if (inst.operands[2].reg == inst.operands[1].reg
7897 && (inst.operands[2].writeback || inst.operands[2].postind))
7898 as_warn (_("base register written back, and overlaps "
7899 "second transfer register"));
b05fe5cf 7900
c56791bb
RE
7901 if (!(inst.instruction & V4_STR_BIT))
7902 {
c19d1205 7903 /* For an index-register load, the index register must not overlap the
c56791bb
RE
7904 destination (even if not write-back). */
7905 if (inst.operands[2].immisreg
7906 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
7907 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
7908 as_warn (_("index register overlaps transfer register"));
b05fe5cf 7909 }
c19d1205
ZW
7910 inst.instruction |= inst.operands[0].reg << 12;
7911 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
7912}
7913
7914static void
c19d1205 7915do_ldrex (void)
b05fe5cf 7916{
c19d1205
ZW
7917 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
7918 || inst.operands[1].postind || inst.operands[1].writeback
7919 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
7920 || inst.operands[1].negative
7921 /* This can arise if the programmer has written
7922 strex rN, rM, foo
7923 or if they have mistakenly used a register name as the last
7924 operand, eg:
7925 strex rN, rM, rX
7926 It is very difficult to distinguish between these two cases
7927 because "rX" might actually be a label. ie the register
7928 name has been occluded by a symbol of the same name. So we
7929 just generate a general 'bad addressing mode' type error
7930 message and leave it up to the programmer to discover the
7931 true cause and fix their mistake. */
7932 || (inst.operands[1].reg == REG_PC),
7933 BAD_ADDR_MODE);
b05fe5cf 7934
c19d1205
ZW
7935 constraint (inst.reloc.exp.X_op != O_constant
7936 || inst.reloc.exp.X_add_number != 0,
7937 _("offset must be zero in ARM encoding"));
b05fe5cf 7938
5be8be5d
DG
7939 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
7940
c19d1205
ZW
7941 inst.instruction |= inst.operands[0].reg << 12;
7942 inst.instruction |= inst.operands[1].reg << 16;
7943 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
7944}
7945
7946static void
c19d1205 7947do_ldrexd (void)
b05fe5cf 7948{
c19d1205
ZW
7949 constraint (inst.operands[0].reg % 2 != 0,
7950 _("even register required"));
7951 constraint (inst.operands[1].present
7952 && inst.operands[1].reg != inst.operands[0].reg + 1,
7953 _("can only load two consecutive registers"));
7954 /* If op 1 were present and equal to PC, this function wouldn't
7955 have been called in the first place. */
7956 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 7957
c19d1205
ZW
7958 inst.instruction |= inst.operands[0].reg << 12;
7959 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
7960}
7961
1be5fd2e
NC
7962/* In both ARM and thumb state 'ldr pc, #imm' with an immediate
7963 which is not a multiple of four is UNPREDICTABLE. */
7964static void
7965check_ldr_r15_aligned (void)
7966{
7967 constraint (!(inst.operands[1].immisreg)
7968 && (inst.operands[0].reg == REG_PC
7969 && inst.operands[1].reg == REG_PC
7970 && (inst.reloc.exp.X_add_number & 0x3)),
7971 _("ldr to register 15 must be 4-byte alligned"));
7972}
7973
b05fe5cf 7974static void
c19d1205 7975do_ldst (void)
b05fe5cf 7976{
c19d1205
ZW
7977 inst.instruction |= inst.operands[0].reg << 12;
7978 if (!inst.operands[1].isreg)
7979 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/FALSE))
b05fe5cf 7980 return;
c19d1205 7981 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
1be5fd2e 7982 check_ldr_r15_aligned ();
b05fe5cf
ZW
7983}
7984
7985static void
c19d1205 7986do_ldstt (void)
b05fe5cf 7987{
c19d1205
ZW
7988 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
7989 reject [Rn,...]. */
7990 if (inst.operands[1].preind)
b05fe5cf 7991 {
bd3ba5d1
NC
7992 constraint (inst.reloc.exp.X_op != O_constant
7993 || inst.reloc.exp.X_add_number != 0,
c19d1205 7994 _("this instruction requires a post-indexed address"));
b05fe5cf 7995
c19d1205
ZW
7996 inst.operands[1].preind = 0;
7997 inst.operands[1].postind = 1;
7998 inst.operands[1].writeback = 1;
b05fe5cf 7999 }
c19d1205
ZW
8000 inst.instruction |= inst.operands[0].reg << 12;
8001 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
8002}
b05fe5cf 8003
c19d1205 8004/* Halfword and signed-byte load/store operations. */
b05fe5cf 8005
c19d1205
ZW
8006static void
8007do_ldstv4 (void)
8008{
ff4a8d2b 8009 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205
ZW
8010 inst.instruction |= inst.operands[0].reg << 12;
8011 if (!inst.operands[1].isreg)
8012 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/TRUE))
b05fe5cf 8013 return;
c19d1205 8014 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
8015}
8016
8017static void
c19d1205 8018do_ldsttv4 (void)
b05fe5cf 8019{
c19d1205
ZW
8020 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8021 reject [Rn,...]. */
8022 if (inst.operands[1].preind)
b05fe5cf 8023 {
bd3ba5d1
NC
8024 constraint (inst.reloc.exp.X_op != O_constant
8025 || inst.reloc.exp.X_add_number != 0,
c19d1205 8026 _("this instruction requires a post-indexed address"));
b05fe5cf 8027
c19d1205
ZW
8028 inst.operands[1].preind = 0;
8029 inst.operands[1].postind = 1;
8030 inst.operands[1].writeback = 1;
b05fe5cf 8031 }
c19d1205
ZW
8032 inst.instruction |= inst.operands[0].reg << 12;
8033 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
8034}
b05fe5cf 8035
c19d1205
ZW
8036/* Co-processor register load/store.
8037 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
8038static void
8039do_lstc (void)
8040{
8041 inst.instruction |= inst.operands[0].reg << 8;
8042 inst.instruction |= inst.operands[1].reg << 12;
8043 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
8044}
8045
b05fe5cf 8046static void
c19d1205 8047do_mlas (void)
b05fe5cf 8048{
8fb9d7b9 8049 /* This restriction does not apply to mls (nor to mla in v6 or later). */
c19d1205 8050 if (inst.operands[0].reg == inst.operands[1].reg
8fb9d7b9 8051 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
c19d1205 8052 && !(inst.instruction & 0x00400000))
8fb9d7b9 8053 as_tsktsk (_("Rd and Rm should be different in mla"));
b05fe5cf 8054
c19d1205
ZW
8055 inst.instruction |= inst.operands[0].reg << 16;
8056 inst.instruction |= inst.operands[1].reg;
8057 inst.instruction |= inst.operands[2].reg << 8;
8058 inst.instruction |= inst.operands[3].reg << 12;
c19d1205 8059}
b05fe5cf 8060
c19d1205
ZW
8061static void
8062do_mov (void)
8063{
8064 inst.instruction |= inst.operands[0].reg << 12;
8065 encode_arm_shifter_operand (1);
8066}
b05fe5cf 8067
c19d1205
ZW
8068/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
8069static void
8070do_mov16 (void)
8071{
b6895b4f
PB
8072 bfd_vma imm;
8073 bfd_boolean top;
8074
8075 top = (inst.instruction & 0x00400000) != 0;
8076 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
8077 _(":lower16: not allowed this instruction"));
8078 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
8079 _(":upper16: not allowed instruction"));
c19d1205 8080 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
8081 if (inst.reloc.type == BFD_RELOC_UNUSED)
8082 {
8083 imm = inst.reloc.exp.X_add_number;
8084 /* The value is in two pieces: 0:11, 16:19. */
8085 inst.instruction |= (imm & 0x00000fff);
8086 inst.instruction |= (imm & 0x0000f000) << 4;
8087 }
b05fe5cf 8088}
b99bd4ef 8089
037e8744
JB
8090static void do_vfp_nsyn_opcode (const char *);
8091
8092static int
8093do_vfp_nsyn_mrs (void)
8094{
8095 if (inst.operands[0].isvec)
8096 {
8097 if (inst.operands[1].reg != 1)
8098 first_error (_("operand 1 must be FPSCR"));
8099 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
8100 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
8101 do_vfp_nsyn_opcode ("fmstat");
8102 }
8103 else if (inst.operands[1].isvec)
8104 do_vfp_nsyn_opcode ("fmrx");
8105 else
8106 return FAIL;
5f4273c7 8107
037e8744
JB
8108 return SUCCESS;
8109}
8110
8111static int
8112do_vfp_nsyn_msr (void)
8113{
8114 if (inst.operands[0].isvec)
8115 do_vfp_nsyn_opcode ("fmxr");
8116 else
8117 return FAIL;
8118
8119 return SUCCESS;
8120}
8121
f7c21dc7
NC
8122static void
8123do_vmrs (void)
8124{
8125 unsigned Rt = inst.operands[0].reg;
fa94de6b 8126
f7c21dc7
NC
8127 if (thumb_mode && inst.operands[0].reg == REG_SP)
8128 {
8129 inst.error = BAD_SP;
8130 return;
8131 }
8132
8133 /* APSR_ sets isvec. All other refs to PC are illegal. */
8134 if (!inst.operands[0].isvec && inst.operands[0].reg == REG_PC)
8135 {
8136 inst.error = BAD_PC;
8137 return;
8138 }
8139
7465e07a
NC
8140 switch (inst.operands[1].reg)
8141 {
8142 case 0: /* FPSID */
8143 case 1: /* FPSCR */
8144 case 6: /* MVFR1 */
8145 case 7: /* MVFR0 */
8146 case 8: /* FPEXC */
8147 inst.instruction |= (inst.operands[1].reg << 16);
8148 break;
8149 default:
8150 first_error (_("operand 1 must be a VFP extension System Register"));
8151 }
f7c21dc7
NC
8152
8153 inst.instruction |= (Rt << 12);
8154}
8155
8156static void
8157do_vmsr (void)
8158{
8159 unsigned Rt = inst.operands[1].reg;
fa94de6b 8160
f7c21dc7
NC
8161 if (thumb_mode)
8162 reject_bad_reg (Rt);
8163 else if (Rt == REG_PC)
8164 {
8165 inst.error = BAD_PC;
8166 return;
8167 }
8168
7465e07a
NC
8169 switch (inst.operands[0].reg)
8170 {
8171 case 0: /* FPSID */
8172 case 1: /* FPSCR */
8173 case 8: /* FPEXC */
8174 inst.instruction |= (inst.operands[0].reg << 16);
8175 break;
8176 default:
8177 first_error (_("operand 0 must be FPSID or FPSCR pr FPEXC"));
8178 }
f7c21dc7
NC
8179
8180 inst.instruction |= (Rt << 12);
8181}
8182
b99bd4ef 8183static void
c19d1205 8184do_mrs (void)
b99bd4ef 8185{
90ec0d68
MGD
8186 unsigned br;
8187
037e8744
JB
8188 if (do_vfp_nsyn_mrs () == SUCCESS)
8189 return;
8190
ff4a8d2b 8191 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205 8192 inst.instruction |= inst.operands[0].reg << 12;
90ec0d68
MGD
8193
8194 if (inst.operands[1].isreg)
8195 {
8196 br = inst.operands[1].reg;
8197 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf000))
8198 as_bad (_("bad register for mrs"));
8199 }
8200 else
8201 {
8202 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
8203 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
8204 != (PSR_c|PSR_f),
d2cd1205 8205 _("'APSR', 'CPSR' or 'SPSR' expected"));
90ec0d68
MGD
8206 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
8207 }
8208
8209 inst.instruction |= br;
c19d1205 8210}
b99bd4ef 8211
c19d1205
ZW
8212/* Two possible forms:
8213 "{C|S}PSR_<field>, Rm",
8214 "{C|S}PSR_f, #expression". */
b99bd4ef 8215
c19d1205
ZW
8216static void
8217do_msr (void)
8218{
037e8744
JB
8219 if (do_vfp_nsyn_msr () == SUCCESS)
8220 return;
8221
c19d1205
ZW
8222 inst.instruction |= inst.operands[0].imm;
8223 if (inst.operands[1].isreg)
8224 inst.instruction |= inst.operands[1].reg;
8225 else
b99bd4ef 8226 {
c19d1205
ZW
8227 inst.instruction |= INST_IMMEDIATE;
8228 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
8229 inst.reloc.pc_rel = 0;
b99bd4ef 8230 }
b99bd4ef
NC
8231}
8232
c19d1205
ZW
8233static void
8234do_mul (void)
a737bd4d 8235{
ff4a8d2b
NC
8236 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
8237
c19d1205
ZW
8238 if (!inst.operands[2].present)
8239 inst.operands[2].reg = inst.operands[0].reg;
8240 inst.instruction |= inst.operands[0].reg << 16;
8241 inst.instruction |= inst.operands[1].reg;
8242 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 8243
8fb9d7b9
MS
8244 if (inst.operands[0].reg == inst.operands[1].reg
8245 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
8246 as_tsktsk (_("Rd and Rm should be different in mul"));
a737bd4d
NC
8247}
8248
c19d1205
ZW
8249/* Long Multiply Parser
8250 UMULL RdLo, RdHi, Rm, Rs
8251 SMULL RdLo, RdHi, Rm, Rs
8252 UMLAL RdLo, RdHi, Rm, Rs
8253 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
8254
8255static void
c19d1205 8256do_mull (void)
b99bd4ef 8257{
c19d1205
ZW
8258 inst.instruction |= inst.operands[0].reg << 12;
8259 inst.instruction |= inst.operands[1].reg << 16;
8260 inst.instruction |= inst.operands[2].reg;
8261 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 8262
682b27ad
PB
8263 /* rdhi and rdlo must be different. */
8264 if (inst.operands[0].reg == inst.operands[1].reg)
8265 as_tsktsk (_("rdhi and rdlo must be different"));
8266
8267 /* rdhi, rdlo and rm must all be different before armv6. */
8268 if ((inst.operands[0].reg == inst.operands[2].reg
c19d1205 8269 || inst.operands[1].reg == inst.operands[2].reg)
682b27ad 8270 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
c19d1205
ZW
8271 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
8272}
b99bd4ef 8273
c19d1205
ZW
8274static void
8275do_nop (void)
8276{
e7495e45
NS
8277 if (inst.operands[0].present
8278 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
c19d1205
ZW
8279 {
8280 /* Architectural NOP hints are CPSR sets with no bits selected. */
8281 inst.instruction &= 0xf0000000;
e7495e45
NS
8282 inst.instruction |= 0x0320f000;
8283 if (inst.operands[0].present)
8284 inst.instruction |= inst.operands[0].imm;
c19d1205 8285 }
b99bd4ef
NC
8286}
8287
c19d1205
ZW
8288/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
8289 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
8290 Condition defaults to COND_ALWAYS.
8291 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
8292
8293static void
c19d1205 8294do_pkhbt (void)
b99bd4ef 8295{
c19d1205
ZW
8296 inst.instruction |= inst.operands[0].reg << 12;
8297 inst.instruction |= inst.operands[1].reg << 16;
8298 inst.instruction |= inst.operands[2].reg;
8299 if (inst.operands[3].present)
8300 encode_arm_shift (3);
8301}
b99bd4ef 8302
c19d1205 8303/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 8304
c19d1205
ZW
8305static void
8306do_pkhtb (void)
8307{
8308 if (!inst.operands[3].present)
b99bd4ef 8309 {
c19d1205
ZW
8310 /* If the shift specifier is omitted, turn the instruction
8311 into pkhbt rd, rm, rn. */
8312 inst.instruction &= 0xfff00010;
8313 inst.instruction |= inst.operands[0].reg << 12;
8314 inst.instruction |= inst.operands[1].reg;
8315 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
8316 }
8317 else
8318 {
c19d1205
ZW
8319 inst.instruction |= inst.operands[0].reg << 12;
8320 inst.instruction |= inst.operands[1].reg << 16;
8321 inst.instruction |= inst.operands[2].reg;
8322 encode_arm_shift (3);
b99bd4ef
NC
8323 }
8324}
8325
c19d1205 8326/* ARMv5TE: Preload-Cache
60e5ef9f 8327 MP Extensions: Preload for write
c19d1205 8328
60e5ef9f 8329 PLD(W) <addr_mode>
c19d1205
ZW
8330
8331 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
8332
8333static void
c19d1205 8334do_pld (void)
b99bd4ef 8335{
c19d1205
ZW
8336 constraint (!inst.operands[0].isreg,
8337 _("'[' expected after PLD mnemonic"));
8338 constraint (inst.operands[0].postind,
8339 _("post-indexed expression used in preload instruction"));
8340 constraint (inst.operands[0].writeback,
8341 _("writeback used in preload instruction"));
8342 constraint (!inst.operands[0].preind,
8343 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
8344 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8345}
b99bd4ef 8346
62b3e311
PB
8347/* ARMv7: PLI <addr_mode> */
8348static void
8349do_pli (void)
8350{
8351 constraint (!inst.operands[0].isreg,
8352 _("'[' expected after PLI mnemonic"));
8353 constraint (inst.operands[0].postind,
8354 _("post-indexed expression used in preload instruction"));
8355 constraint (inst.operands[0].writeback,
8356 _("writeback used in preload instruction"));
8357 constraint (!inst.operands[0].preind,
8358 _("unindexed addressing used in preload instruction"));
8359 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8360 inst.instruction &= ~PRE_INDEX;
8361}
8362
c19d1205
ZW
8363static void
8364do_push_pop (void)
8365{
8366 inst.operands[1] = inst.operands[0];
8367 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
8368 inst.operands[0].isreg = 1;
8369 inst.operands[0].writeback = 1;
8370 inst.operands[0].reg = REG_SP;
6530b175 8371 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
c19d1205 8372}
b99bd4ef 8373
c19d1205
ZW
8374/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
8375 word at the specified address and the following word
8376 respectively.
8377 Unconditionally executed.
8378 Error if Rn is R15. */
b99bd4ef 8379
c19d1205
ZW
8380static void
8381do_rfe (void)
8382{
8383 inst.instruction |= inst.operands[0].reg << 16;
8384 if (inst.operands[0].writeback)
8385 inst.instruction |= WRITE_BACK;
8386}
b99bd4ef 8387
c19d1205 8388/* ARM V6 ssat (argument parse). */
b99bd4ef 8389
c19d1205
ZW
8390static void
8391do_ssat (void)
8392{
8393 inst.instruction |= inst.operands[0].reg << 12;
8394 inst.instruction |= (inst.operands[1].imm - 1) << 16;
8395 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8396
c19d1205
ZW
8397 if (inst.operands[3].present)
8398 encode_arm_shift (3);
b99bd4ef
NC
8399}
8400
c19d1205 8401/* ARM V6 usat (argument parse). */
b99bd4ef
NC
8402
8403static void
c19d1205 8404do_usat (void)
b99bd4ef 8405{
c19d1205
ZW
8406 inst.instruction |= inst.operands[0].reg << 12;
8407 inst.instruction |= inst.operands[1].imm << 16;
8408 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8409
c19d1205
ZW
8410 if (inst.operands[3].present)
8411 encode_arm_shift (3);
b99bd4ef
NC
8412}
8413
c19d1205 8414/* ARM V6 ssat16 (argument parse). */
09d92015
MM
8415
8416static void
c19d1205 8417do_ssat16 (void)
09d92015 8418{
c19d1205
ZW
8419 inst.instruction |= inst.operands[0].reg << 12;
8420 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
8421 inst.instruction |= inst.operands[2].reg;
09d92015
MM
8422}
8423
c19d1205
ZW
8424static void
8425do_usat16 (void)
a737bd4d 8426{
c19d1205
ZW
8427 inst.instruction |= inst.operands[0].reg << 12;
8428 inst.instruction |= inst.operands[1].imm << 16;
8429 inst.instruction |= inst.operands[2].reg;
8430}
a737bd4d 8431
c19d1205
ZW
8432/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
8433 preserving the other bits.
a737bd4d 8434
c19d1205
ZW
8435 setend <endian_specifier>, where <endian_specifier> is either
8436 BE or LE. */
a737bd4d 8437
c19d1205
ZW
8438static void
8439do_setend (void)
8440{
8441 if (inst.operands[0].imm)
8442 inst.instruction |= 0x200;
a737bd4d
NC
8443}
8444
8445static void
c19d1205 8446do_shift (void)
a737bd4d 8447{
c19d1205
ZW
8448 unsigned int Rm = (inst.operands[1].present
8449 ? inst.operands[1].reg
8450 : inst.operands[0].reg);
a737bd4d 8451
c19d1205
ZW
8452 inst.instruction |= inst.operands[0].reg << 12;
8453 inst.instruction |= Rm;
8454 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 8455 {
c19d1205
ZW
8456 inst.instruction |= inst.operands[2].reg << 8;
8457 inst.instruction |= SHIFT_BY_REG;
94342ec3
NC
8458 /* PR 12854: Error on extraneous shifts. */
8459 constraint (inst.operands[2].shifted,
8460 _("extraneous shift as part of operand to shift insn"));
a737bd4d
NC
8461 }
8462 else
c19d1205 8463 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
8464}
8465
09d92015 8466static void
3eb17e6b 8467do_smc (void)
09d92015 8468{
3eb17e6b 8469 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 8470 inst.reloc.pc_rel = 0;
09d92015
MM
8471}
8472
90ec0d68
MGD
8473static void
8474do_hvc (void)
8475{
8476 inst.reloc.type = BFD_RELOC_ARM_HVC;
8477 inst.reloc.pc_rel = 0;
8478}
8479
09d92015 8480static void
c19d1205 8481do_swi (void)
09d92015 8482{
c19d1205
ZW
8483 inst.reloc.type = BFD_RELOC_ARM_SWI;
8484 inst.reloc.pc_rel = 0;
09d92015
MM
8485}
8486
c19d1205
ZW
8487/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
8488 SMLAxy{cond} Rd,Rm,Rs,Rn
8489 SMLAWy{cond} Rd,Rm,Rs,Rn
8490 Error if any register is R15. */
e16bb312 8491
c19d1205
ZW
8492static void
8493do_smla (void)
e16bb312 8494{
c19d1205
ZW
8495 inst.instruction |= inst.operands[0].reg << 16;
8496 inst.instruction |= inst.operands[1].reg;
8497 inst.instruction |= inst.operands[2].reg << 8;
8498 inst.instruction |= inst.operands[3].reg << 12;
8499}
a737bd4d 8500
c19d1205
ZW
8501/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
8502 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
8503 Error if any register is R15.
8504 Warning if Rdlo == Rdhi. */
a737bd4d 8505
c19d1205
ZW
8506static void
8507do_smlal (void)
8508{
8509 inst.instruction |= inst.operands[0].reg << 12;
8510 inst.instruction |= inst.operands[1].reg << 16;
8511 inst.instruction |= inst.operands[2].reg;
8512 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 8513
c19d1205
ZW
8514 if (inst.operands[0].reg == inst.operands[1].reg)
8515 as_tsktsk (_("rdhi and rdlo must be different"));
8516}
a737bd4d 8517
c19d1205
ZW
8518/* ARM V5E (El Segundo) signed-multiply (argument parse)
8519 SMULxy{cond} Rd,Rm,Rs
8520 Error if any register is R15. */
a737bd4d 8521
c19d1205
ZW
8522static void
8523do_smul (void)
8524{
8525 inst.instruction |= inst.operands[0].reg << 16;
8526 inst.instruction |= inst.operands[1].reg;
8527 inst.instruction |= inst.operands[2].reg << 8;
8528}
a737bd4d 8529
b6702015
PB
8530/* ARM V6 srs (argument parse). The variable fields in the encoding are
8531 the same for both ARM and Thumb-2. */
a737bd4d 8532
c19d1205
ZW
8533static void
8534do_srs (void)
8535{
b6702015
PB
8536 int reg;
8537
8538 if (inst.operands[0].present)
8539 {
8540 reg = inst.operands[0].reg;
fdfde340 8541 constraint (reg != REG_SP, _("SRS base register must be r13"));
b6702015
PB
8542 }
8543 else
fdfde340 8544 reg = REG_SP;
b6702015
PB
8545
8546 inst.instruction |= reg << 16;
8547 inst.instruction |= inst.operands[1].imm;
8548 if (inst.operands[0].writeback || inst.operands[1].writeback)
c19d1205
ZW
8549 inst.instruction |= WRITE_BACK;
8550}
a737bd4d 8551
c19d1205 8552/* ARM V6 strex (argument parse). */
a737bd4d 8553
c19d1205
ZW
8554static void
8555do_strex (void)
8556{
8557 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8558 || inst.operands[2].postind || inst.operands[2].writeback
8559 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
8560 || inst.operands[2].negative
8561 /* See comment in do_ldrex(). */
8562 || (inst.operands[2].reg == REG_PC),
8563 BAD_ADDR_MODE);
a737bd4d 8564
c19d1205
ZW
8565 constraint (inst.operands[0].reg == inst.operands[1].reg
8566 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 8567
c19d1205
ZW
8568 constraint (inst.reloc.exp.X_op != O_constant
8569 || inst.reloc.exp.X_add_number != 0,
8570 _("offset must be zero in ARM encoding"));
a737bd4d 8571
c19d1205
ZW
8572 inst.instruction |= inst.operands[0].reg << 12;
8573 inst.instruction |= inst.operands[1].reg;
8574 inst.instruction |= inst.operands[2].reg << 16;
8575 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
8576}
8577
877807f8
NC
8578static void
8579do_t_strexbh (void)
8580{
8581 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8582 || inst.operands[2].postind || inst.operands[2].writeback
8583 || inst.operands[2].immisreg || inst.operands[2].shifted
8584 || inst.operands[2].negative,
8585 BAD_ADDR_MODE);
8586
8587 constraint (inst.operands[0].reg == inst.operands[1].reg
8588 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8589
8590 do_rm_rd_rn ();
8591}
8592
e16bb312 8593static void
c19d1205 8594do_strexd (void)
e16bb312 8595{
c19d1205
ZW
8596 constraint (inst.operands[1].reg % 2 != 0,
8597 _("even register required"));
8598 constraint (inst.operands[2].present
8599 && inst.operands[2].reg != inst.operands[1].reg + 1,
8600 _("can only store two consecutive registers"));
8601 /* If op 2 were present and equal to PC, this function wouldn't
8602 have been called in the first place. */
8603 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 8604
c19d1205
ZW
8605 constraint (inst.operands[0].reg == inst.operands[1].reg
8606 || inst.operands[0].reg == inst.operands[1].reg + 1
8607 || inst.operands[0].reg == inst.operands[3].reg,
8608 BAD_OVERLAP);
e16bb312 8609
c19d1205
ZW
8610 inst.instruction |= inst.operands[0].reg << 12;
8611 inst.instruction |= inst.operands[1].reg;
8612 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
8613}
8614
c19d1205
ZW
8615/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
8616 extends it to 32-bits, and adds the result to a value in another
8617 register. You can specify a rotation by 0, 8, 16, or 24 bits
8618 before extracting the 16-bit value.
8619 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
8620 Condition defaults to COND_ALWAYS.
8621 Error if any register uses R15. */
8622
e16bb312 8623static void
c19d1205 8624do_sxtah (void)
e16bb312 8625{
c19d1205
ZW
8626 inst.instruction |= inst.operands[0].reg << 12;
8627 inst.instruction |= inst.operands[1].reg << 16;
8628 inst.instruction |= inst.operands[2].reg;
8629 inst.instruction |= inst.operands[3].imm << 10;
8630}
e16bb312 8631
c19d1205 8632/* ARM V6 SXTH.
e16bb312 8633
c19d1205
ZW
8634 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
8635 Condition defaults to COND_ALWAYS.
8636 Error if any register uses R15. */
e16bb312
NC
8637
8638static void
c19d1205 8639do_sxth (void)
e16bb312 8640{
c19d1205
ZW
8641 inst.instruction |= inst.operands[0].reg << 12;
8642 inst.instruction |= inst.operands[1].reg;
8643 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 8644}
c19d1205
ZW
8645\f
8646/* VFP instructions. In a logical order: SP variant first, monad
8647 before dyad, arithmetic then move then load/store. */
e16bb312
NC
8648
8649static void
c19d1205 8650do_vfp_sp_monadic (void)
e16bb312 8651{
5287ad62
JB
8652 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8653 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8654}
8655
8656static void
c19d1205 8657do_vfp_sp_dyadic (void)
e16bb312 8658{
5287ad62
JB
8659 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8660 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
8661 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8662}
8663
8664static void
c19d1205 8665do_vfp_sp_compare_z (void)
e16bb312 8666{
5287ad62 8667 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
8668}
8669
8670static void
c19d1205 8671do_vfp_dp_sp_cvt (void)
e16bb312 8672{
5287ad62
JB
8673 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8674 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8675}
8676
8677static void
c19d1205 8678do_vfp_sp_dp_cvt (void)
e16bb312 8679{
5287ad62
JB
8680 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8681 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
8682}
8683
8684static void
c19d1205 8685do_vfp_reg_from_sp (void)
e16bb312 8686{
c19d1205 8687 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 8688 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
8689}
8690
8691static void
c19d1205 8692do_vfp_reg2_from_sp2 (void)
e16bb312 8693{
c19d1205
ZW
8694 constraint (inst.operands[2].imm != 2,
8695 _("only two consecutive VFP SP registers allowed here"));
8696 inst.instruction |= inst.operands[0].reg << 12;
8697 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 8698 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8699}
8700
8701static void
c19d1205 8702do_vfp_sp_from_reg (void)
e16bb312 8703{
5287ad62 8704 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 8705 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
8706}
8707
8708static void
c19d1205 8709do_vfp_sp2_from_reg2 (void)
e16bb312 8710{
c19d1205
ZW
8711 constraint (inst.operands[0].imm != 2,
8712 _("only two consecutive VFP SP registers allowed here"));
5287ad62 8713 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
8714 inst.instruction |= inst.operands[1].reg << 12;
8715 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
8716}
8717
8718static void
c19d1205 8719do_vfp_sp_ldst (void)
e16bb312 8720{
5287ad62 8721 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 8722 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8723}
8724
8725static void
c19d1205 8726do_vfp_dp_ldst (void)
e16bb312 8727{
5287ad62 8728 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 8729 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8730}
8731
c19d1205 8732
e16bb312 8733static void
c19d1205 8734vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8735{
c19d1205
ZW
8736 if (inst.operands[0].writeback)
8737 inst.instruction |= WRITE_BACK;
8738 else
8739 constraint (ldstm_type != VFP_LDSTMIA,
8740 _("this addressing mode requires base-register writeback"));
8741 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8742 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 8743 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
8744}
8745
8746static void
c19d1205 8747vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8748{
c19d1205 8749 int count;
e16bb312 8750
c19d1205
ZW
8751 if (inst.operands[0].writeback)
8752 inst.instruction |= WRITE_BACK;
8753 else
8754 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
8755 _("this addressing mode requires base-register writeback"));
e16bb312 8756
c19d1205 8757 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8758 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 8759
c19d1205
ZW
8760 count = inst.operands[1].imm << 1;
8761 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
8762 count += 1;
e16bb312 8763
c19d1205 8764 inst.instruction |= count;
e16bb312
NC
8765}
8766
8767static void
c19d1205 8768do_vfp_sp_ldstmia (void)
e16bb312 8769{
c19d1205 8770 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8771}
8772
8773static void
c19d1205 8774do_vfp_sp_ldstmdb (void)
e16bb312 8775{
c19d1205 8776 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8777}
8778
8779static void
c19d1205 8780do_vfp_dp_ldstmia (void)
e16bb312 8781{
c19d1205 8782 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8783}
8784
8785static void
c19d1205 8786do_vfp_dp_ldstmdb (void)
e16bb312 8787{
c19d1205 8788 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8789}
8790
8791static void
c19d1205 8792do_vfp_xp_ldstmia (void)
e16bb312 8793{
c19d1205
ZW
8794 vfp_dp_ldstm (VFP_LDSTMIAX);
8795}
e16bb312 8796
c19d1205
ZW
8797static void
8798do_vfp_xp_ldstmdb (void)
8799{
8800 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 8801}
5287ad62
JB
8802
8803static void
8804do_vfp_dp_rd_rm (void)
8805{
8806 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8807 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
8808}
8809
8810static void
8811do_vfp_dp_rn_rd (void)
8812{
8813 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
8814 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8815}
8816
8817static void
8818do_vfp_dp_rd_rn (void)
8819{
8820 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8821 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8822}
8823
8824static void
8825do_vfp_dp_rd_rn_rm (void)
8826{
8827 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8828 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8829 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
8830}
8831
8832static void
8833do_vfp_dp_rd (void)
8834{
8835 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8836}
8837
8838static void
8839do_vfp_dp_rm_rd_rn (void)
8840{
8841 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
8842 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8843 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
8844}
8845
8846/* VFPv3 instructions. */
8847static void
8848do_vfp_sp_const (void)
8849{
8850 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
00249aaa
PB
8851 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
8852 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
8853}
8854
8855static void
8856do_vfp_dp_const (void)
8857{
8858 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
00249aaa
PB
8859 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
8860 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
8861}
8862
8863static void
8864vfp_conv (int srcsize)
8865{
5f1af56b
MGD
8866 int immbits = srcsize - inst.operands[1].imm;
8867
fa94de6b
RM
8868 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
8869 {
5f1af56b
MGD
8870 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
8871 i.e. immbits must be in range 0 - 16. */
8872 inst.error = _("immediate value out of range, expected range [0, 16]");
8873 return;
8874 }
fa94de6b 8875 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
5f1af56b
MGD
8876 {
8877 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
8878 i.e. immbits must be in range 0 - 31. */
8879 inst.error = _("immediate value out of range, expected range [1, 32]");
8880 return;
8881 }
8882
5287ad62
JB
8883 inst.instruction |= (immbits & 1) << 5;
8884 inst.instruction |= (immbits >> 1);
8885}
8886
8887static void
8888do_vfp_sp_conv_16 (void)
8889{
8890 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8891 vfp_conv (16);
8892}
8893
8894static void
8895do_vfp_dp_conv_16 (void)
8896{
8897 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8898 vfp_conv (16);
8899}
8900
8901static void
8902do_vfp_sp_conv_32 (void)
8903{
8904 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8905 vfp_conv (32);
8906}
8907
8908static void
8909do_vfp_dp_conv_32 (void)
8910{
8911 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8912 vfp_conv (32);
8913}
c19d1205
ZW
8914\f
8915/* FPA instructions. Also in a logical order. */
e16bb312 8916
c19d1205
ZW
8917static void
8918do_fpa_cmp (void)
8919{
8920 inst.instruction |= inst.operands[0].reg << 16;
8921 inst.instruction |= inst.operands[1].reg;
8922}
b99bd4ef
NC
8923
8924static void
c19d1205 8925do_fpa_ldmstm (void)
b99bd4ef 8926{
c19d1205
ZW
8927 inst.instruction |= inst.operands[0].reg << 12;
8928 switch (inst.operands[1].imm)
8929 {
8930 case 1: inst.instruction |= CP_T_X; break;
8931 case 2: inst.instruction |= CP_T_Y; break;
8932 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
8933 case 4: break;
8934 default: abort ();
8935 }
b99bd4ef 8936
c19d1205
ZW
8937 if (inst.instruction & (PRE_INDEX | INDEX_UP))
8938 {
8939 /* The instruction specified "ea" or "fd", so we can only accept
8940 [Rn]{!}. The instruction does not really support stacking or
8941 unstacking, so we have to emulate these by setting appropriate
8942 bits and offsets. */
8943 constraint (inst.reloc.exp.X_op != O_constant
8944 || inst.reloc.exp.X_add_number != 0,
8945 _("this instruction does not support indexing"));
b99bd4ef 8946
c19d1205
ZW
8947 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
8948 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 8949
c19d1205
ZW
8950 if (!(inst.instruction & INDEX_UP))
8951 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 8952
c19d1205
ZW
8953 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
8954 {
8955 inst.operands[2].preind = 0;
8956 inst.operands[2].postind = 1;
8957 }
8958 }
b99bd4ef 8959
c19d1205 8960 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 8961}
c19d1205
ZW
8962\f
8963/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 8964
c19d1205
ZW
8965static void
8966do_iwmmxt_tandorc (void)
8967{
8968 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
8969}
b99bd4ef 8970
c19d1205
ZW
8971static void
8972do_iwmmxt_textrc (void)
8973{
8974 inst.instruction |= inst.operands[0].reg << 12;
8975 inst.instruction |= inst.operands[1].imm;
8976}
b99bd4ef
NC
8977
8978static void
c19d1205 8979do_iwmmxt_textrm (void)
b99bd4ef 8980{
c19d1205
ZW
8981 inst.instruction |= inst.operands[0].reg << 12;
8982 inst.instruction |= inst.operands[1].reg << 16;
8983 inst.instruction |= inst.operands[2].imm;
8984}
b99bd4ef 8985
c19d1205
ZW
8986static void
8987do_iwmmxt_tinsr (void)
8988{
8989 inst.instruction |= inst.operands[0].reg << 16;
8990 inst.instruction |= inst.operands[1].reg << 12;
8991 inst.instruction |= inst.operands[2].imm;
8992}
b99bd4ef 8993
c19d1205
ZW
8994static void
8995do_iwmmxt_tmia (void)
8996{
8997 inst.instruction |= inst.operands[0].reg << 5;
8998 inst.instruction |= inst.operands[1].reg;
8999 inst.instruction |= inst.operands[2].reg << 12;
9000}
b99bd4ef 9001
c19d1205
ZW
9002static void
9003do_iwmmxt_waligni (void)
9004{
9005 inst.instruction |= inst.operands[0].reg << 12;
9006 inst.instruction |= inst.operands[1].reg << 16;
9007 inst.instruction |= inst.operands[2].reg;
9008 inst.instruction |= inst.operands[3].imm << 20;
9009}
b99bd4ef 9010
2d447fca
JM
9011static void
9012do_iwmmxt_wmerge (void)
9013{
9014 inst.instruction |= inst.operands[0].reg << 12;
9015 inst.instruction |= inst.operands[1].reg << 16;
9016 inst.instruction |= inst.operands[2].reg;
9017 inst.instruction |= inst.operands[3].imm << 21;
9018}
9019
c19d1205
ZW
9020static void
9021do_iwmmxt_wmov (void)
9022{
9023 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
9024 inst.instruction |= inst.operands[0].reg << 12;
9025 inst.instruction |= inst.operands[1].reg << 16;
9026 inst.instruction |= inst.operands[1].reg;
9027}
b99bd4ef 9028
c19d1205
ZW
9029static void
9030do_iwmmxt_wldstbh (void)
9031{
8f06b2d8 9032 int reloc;
c19d1205 9033 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
9034 if (thumb_mode)
9035 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
9036 else
9037 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
9038 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
9039}
9040
c19d1205
ZW
9041static void
9042do_iwmmxt_wldstw (void)
9043{
9044 /* RIWR_RIWC clears .isreg for a control register. */
9045 if (!inst.operands[0].isreg)
9046 {
9047 constraint (inst.cond != COND_ALWAYS, BAD_COND);
9048 inst.instruction |= 0xf0000000;
9049 }
b99bd4ef 9050
c19d1205
ZW
9051 inst.instruction |= inst.operands[0].reg << 12;
9052 encode_arm_cp_address (1, TRUE, TRUE, 0);
9053}
b99bd4ef
NC
9054
9055static void
c19d1205 9056do_iwmmxt_wldstd (void)
b99bd4ef 9057{
c19d1205 9058 inst.instruction |= inst.operands[0].reg << 12;
2d447fca
JM
9059 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
9060 && inst.operands[1].immisreg)
9061 {
9062 inst.instruction &= ~0x1a000ff;
9063 inst.instruction |= (0xf << 28);
9064 if (inst.operands[1].preind)
9065 inst.instruction |= PRE_INDEX;
9066 if (!inst.operands[1].negative)
9067 inst.instruction |= INDEX_UP;
9068 if (inst.operands[1].writeback)
9069 inst.instruction |= WRITE_BACK;
9070 inst.instruction |= inst.operands[1].reg << 16;
9071 inst.instruction |= inst.reloc.exp.X_add_number << 4;
9072 inst.instruction |= inst.operands[1].imm;
9073 }
9074 else
9075 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 9076}
b99bd4ef 9077
c19d1205
ZW
9078static void
9079do_iwmmxt_wshufh (void)
9080{
9081 inst.instruction |= inst.operands[0].reg << 12;
9082 inst.instruction |= inst.operands[1].reg << 16;
9083 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
9084 inst.instruction |= (inst.operands[2].imm & 0x0f);
9085}
b99bd4ef 9086
c19d1205
ZW
9087static void
9088do_iwmmxt_wzero (void)
9089{
9090 /* WZERO reg is an alias for WANDN reg, reg, reg. */
9091 inst.instruction |= inst.operands[0].reg;
9092 inst.instruction |= inst.operands[0].reg << 12;
9093 inst.instruction |= inst.operands[0].reg << 16;
9094}
2d447fca
JM
9095
9096static void
9097do_iwmmxt_wrwrwr_or_imm5 (void)
9098{
9099 if (inst.operands[2].isreg)
9100 do_rd_rn_rm ();
9101 else {
9102 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
9103 _("immediate operand requires iWMMXt2"));
9104 do_rd_rn ();
9105 if (inst.operands[2].imm == 0)
9106 {
9107 switch ((inst.instruction >> 20) & 0xf)
9108 {
9109 case 4:
9110 case 5:
9111 case 6:
5f4273c7 9112 case 7:
2d447fca
JM
9113 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
9114 inst.operands[2].imm = 16;
9115 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
9116 break;
9117 case 8:
9118 case 9:
9119 case 10:
9120 case 11:
9121 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
9122 inst.operands[2].imm = 32;
9123 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
9124 break;
9125 case 12:
9126 case 13:
9127 case 14:
9128 case 15:
9129 {
9130 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
9131 unsigned long wrn;
9132 wrn = (inst.instruction >> 16) & 0xf;
9133 inst.instruction &= 0xff0fff0f;
9134 inst.instruction |= wrn;
9135 /* Bail out here; the instruction is now assembled. */
9136 return;
9137 }
9138 }
9139 }
9140 /* Map 32 -> 0, etc. */
9141 inst.operands[2].imm &= 0x1f;
9142 inst.instruction |= (0xf << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
9143 }
9144}
c19d1205
ZW
9145\f
9146/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
9147 operations first, then control, shift, and load/store. */
b99bd4ef 9148
c19d1205 9149/* Insns like "foo X,Y,Z". */
b99bd4ef 9150
c19d1205
ZW
9151static void
9152do_mav_triple (void)
9153{
9154 inst.instruction |= inst.operands[0].reg << 16;
9155 inst.instruction |= inst.operands[1].reg;
9156 inst.instruction |= inst.operands[2].reg << 12;
9157}
b99bd4ef 9158
c19d1205
ZW
9159/* Insns like "foo W,X,Y,Z".
9160 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 9161
c19d1205
ZW
9162static void
9163do_mav_quad (void)
9164{
9165 inst.instruction |= inst.operands[0].reg << 5;
9166 inst.instruction |= inst.operands[1].reg << 12;
9167 inst.instruction |= inst.operands[2].reg << 16;
9168 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
9169}
9170
c19d1205
ZW
9171/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
9172static void
9173do_mav_dspsc (void)
a737bd4d 9174{
c19d1205
ZW
9175 inst.instruction |= inst.operands[1].reg << 12;
9176}
a737bd4d 9177
c19d1205
ZW
9178/* Maverick shift immediate instructions.
9179 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
9180 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 9181
c19d1205
ZW
9182static void
9183do_mav_shift (void)
9184{
9185 int imm = inst.operands[2].imm;
a737bd4d 9186
c19d1205
ZW
9187 inst.instruction |= inst.operands[0].reg << 12;
9188 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 9189
c19d1205
ZW
9190 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
9191 Bits 5-7 of the insn should have bits 4-6 of the immediate.
9192 Bit 4 should be 0. */
9193 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 9194
c19d1205
ZW
9195 inst.instruction |= imm;
9196}
9197\f
9198/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 9199
c19d1205
ZW
9200/* Xscale multiply-accumulate (argument parse)
9201 MIAcc acc0,Rm,Rs
9202 MIAPHcc acc0,Rm,Rs
9203 MIAxycc acc0,Rm,Rs. */
a737bd4d 9204
c19d1205
ZW
9205static void
9206do_xsc_mia (void)
9207{
9208 inst.instruction |= inst.operands[1].reg;
9209 inst.instruction |= inst.operands[2].reg << 12;
9210}
a737bd4d 9211
c19d1205 9212/* Xscale move-accumulator-register (argument parse)
a737bd4d 9213
c19d1205 9214 MARcc acc0,RdLo,RdHi. */
b99bd4ef 9215
c19d1205
ZW
9216static void
9217do_xsc_mar (void)
9218{
9219 inst.instruction |= inst.operands[1].reg << 12;
9220 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9221}
9222
c19d1205 9223/* Xscale move-register-accumulator (argument parse)
b99bd4ef 9224
c19d1205 9225 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
9226
9227static void
c19d1205 9228do_xsc_mra (void)
b99bd4ef 9229{
c19d1205
ZW
9230 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
9231 inst.instruction |= inst.operands[0].reg << 12;
9232 inst.instruction |= inst.operands[1].reg << 16;
9233}
9234\f
9235/* Encoding functions relevant only to Thumb. */
b99bd4ef 9236
c19d1205
ZW
9237/* inst.operands[i] is a shifted-register operand; encode
9238 it into inst.instruction in the format used by Thumb32. */
9239
9240static void
9241encode_thumb32_shifted_operand (int i)
9242{
9243 unsigned int value = inst.reloc.exp.X_add_number;
9244 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 9245
9c3c69f2
PB
9246 constraint (inst.operands[i].immisreg,
9247 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
9248 inst.instruction |= inst.operands[i].reg;
9249 if (shift == SHIFT_RRX)
9250 inst.instruction |= SHIFT_ROR << 4;
9251 else
b99bd4ef 9252 {
c19d1205
ZW
9253 constraint (inst.reloc.exp.X_op != O_constant,
9254 _("expression too complex"));
9255
9256 constraint (value > 32
9257 || (value == 32 && (shift == SHIFT_LSL
9258 || shift == SHIFT_ROR)),
9259 _("shift expression is too large"));
9260
9261 if (value == 0)
9262 shift = SHIFT_LSL;
9263 else if (value == 32)
9264 value = 0;
9265
9266 inst.instruction |= shift << 4;
9267 inst.instruction |= (value & 0x1c) << 10;
9268 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 9269 }
c19d1205 9270}
b99bd4ef 9271
b99bd4ef 9272
c19d1205
ZW
9273/* inst.operands[i] was set up by parse_address. Encode it into a
9274 Thumb32 format load or store instruction. Reject forms that cannot
9275 be used with such instructions. If is_t is true, reject forms that
9276 cannot be used with a T instruction; if is_d is true, reject forms
5be8be5d
DG
9277 that cannot be used with a D instruction. If it is a store insn,
9278 reject PC in Rn. */
b99bd4ef 9279
c19d1205
ZW
9280static void
9281encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
9282{
5be8be5d 9283 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
c19d1205
ZW
9284
9285 constraint (!inst.operands[i].isreg,
53365c0d 9286 _("Instruction does not support =N addresses"));
b99bd4ef 9287
c19d1205
ZW
9288 inst.instruction |= inst.operands[i].reg << 16;
9289 if (inst.operands[i].immisreg)
b99bd4ef 9290 {
5be8be5d 9291 constraint (is_pc, BAD_PC_ADDRESSING);
c19d1205
ZW
9292 constraint (is_t || is_d, _("cannot use register index with this instruction"));
9293 constraint (inst.operands[i].negative,
9294 _("Thumb does not support negative register indexing"));
9295 constraint (inst.operands[i].postind,
9296 _("Thumb does not support register post-indexing"));
9297 constraint (inst.operands[i].writeback,
9298 _("Thumb does not support register indexing with writeback"));
9299 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
9300 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 9301
f40d1643 9302 inst.instruction |= inst.operands[i].imm;
c19d1205 9303 if (inst.operands[i].shifted)
b99bd4ef 9304 {
c19d1205
ZW
9305 constraint (inst.reloc.exp.X_op != O_constant,
9306 _("expression too complex"));
9c3c69f2
PB
9307 constraint (inst.reloc.exp.X_add_number < 0
9308 || inst.reloc.exp.X_add_number > 3,
c19d1205 9309 _("shift out of range"));
9c3c69f2 9310 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
9311 }
9312 inst.reloc.type = BFD_RELOC_UNUSED;
9313 }
9314 else if (inst.operands[i].preind)
9315 {
5be8be5d 9316 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
f40d1643 9317 constraint (is_t && inst.operands[i].writeback,
c19d1205 9318 _("cannot use writeback with this instruction"));
5be8be5d
DG
9319 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0)
9320 && !inst.reloc.pc_rel, BAD_PC_ADDRESSING);
c19d1205
ZW
9321
9322 if (is_d)
9323 {
9324 inst.instruction |= 0x01000000;
9325 if (inst.operands[i].writeback)
9326 inst.instruction |= 0x00200000;
b99bd4ef 9327 }
c19d1205 9328 else
b99bd4ef 9329 {
c19d1205
ZW
9330 inst.instruction |= 0x00000c00;
9331 if (inst.operands[i].writeback)
9332 inst.instruction |= 0x00000100;
b99bd4ef 9333 }
c19d1205 9334 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 9335 }
c19d1205 9336 else if (inst.operands[i].postind)
b99bd4ef 9337 {
9c2799c2 9338 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
9339 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
9340 constraint (is_t, _("cannot use post-indexing with this instruction"));
9341
9342 if (is_d)
9343 inst.instruction |= 0x00200000;
9344 else
9345 inst.instruction |= 0x00000900;
9346 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
9347 }
9348 else /* unindexed - only for coprocessor */
9349 inst.error = _("instruction does not accept unindexed addressing");
9350}
9351
9352/* Table of Thumb instructions which exist in both 16- and 32-bit
9353 encodings (the latter only in post-V6T2 cores). The index is the
9354 value used in the insns table below. When there is more than one
9355 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
9356 holds variant (1).
9357 Also contains several pseudo-instructions used during relaxation. */
c19d1205 9358#define T16_32_TAB \
21d799b5
NC
9359 X(_adc, 4140, eb400000), \
9360 X(_adcs, 4140, eb500000), \
9361 X(_add, 1c00, eb000000), \
9362 X(_adds, 1c00, eb100000), \
9363 X(_addi, 0000, f1000000), \
9364 X(_addis, 0000, f1100000), \
9365 X(_add_pc,000f, f20f0000), \
9366 X(_add_sp,000d, f10d0000), \
9367 X(_adr, 000f, f20f0000), \
9368 X(_and, 4000, ea000000), \
9369 X(_ands, 4000, ea100000), \
9370 X(_asr, 1000, fa40f000), \
9371 X(_asrs, 1000, fa50f000), \
9372 X(_b, e000, f000b000), \
9373 X(_bcond, d000, f0008000), \
9374 X(_bic, 4380, ea200000), \
9375 X(_bics, 4380, ea300000), \
9376 X(_cmn, 42c0, eb100f00), \
9377 X(_cmp, 2800, ebb00f00), \
9378 X(_cpsie, b660, f3af8400), \
9379 X(_cpsid, b670, f3af8600), \
9380 X(_cpy, 4600, ea4f0000), \
9381 X(_dec_sp,80dd, f1ad0d00), \
9382 X(_eor, 4040, ea800000), \
9383 X(_eors, 4040, ea900000), \
9384 X(_inc_sp,00dd, f10d0d00), \
9385 X(_ldmia, c800, e8900000), \
9386 X(_ldr, 6800, f8500000), \
9387 X(_ldrb, 7800, f8100000), \
9388 X(_ldrh, 8800, f8300000), \
9389 X(_ldrsb, 5600, f9100000), \
9390 X(_ldrsh, 5e00, f9300000), \
9391 X(_ldr_pc,4800, f85f0000), \
9392 X(_ldr_pc2,4800, f85f0000), \
9393 X(_ldr_sp,9800, f85d0000), \
9394 X(_lsl, 0000, fa00f000), \
9395 X(_lsls, 0000, fa10f000), \
9396 X(_lsr, 0800, fa20f000), \
9397 X(_lsrs, 0800, fa30f000), \
9398 X(_mov, 2000, ea4f0000), \
9399 X(_movs, 2000, ea5f0000), \
9400 X(_mul, 4340, fb00f000), \
9401 X(_muls, 4340, ffffffff), /* no 32b muls */ \
9402 X(_mvn, 43c0, ea6f0000), \
9403 X(_mvns, 43c0, ea7f0000), \
9404 X(_neg, 4240, f1c00000), /* rsb #0 */ \
9405 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
9406 X(_orr, 4300, ea400000), \
9407 X(_orrs, 4300, ea500000), \
9408 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
9409 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
9410 X(_rev, ba00, fa90f080), \
9411 X(_rev16, ba40, fa90f090), \
9412 X(_revsh, bac0, fa90f0b0), \
9413 X(_ror, 41c0, fa60f000), \
9414 X(_rors, 41c0, fa70f000), \
9415 X(_sbc, 4180, eb600000), \
9416 X(_sbcs, 4180, eb700000), \
9417 X(_stmia, c000, e8800000), \
9418 X(_str, 6000, f8400000), \
9419 X(_strb, 7000, f8000000), \
9420 X(_strh, 8000, f8200000), \
9421 X(_str_sp,9000, f84d0000), \
9422 X(_sub, 1e00, eba00000), \
9423 X(_subs, 1e00, ebb00000), \
9424 X(_subi, 8000, f1a00000), \
9425 X(_subis, 8000, f1b00000), \
9426 X(_sxtb, b240, fa4ff080), \
9427 X(_sxth, b200, fa0ff080), \
9428 X(_tst, 4200, ea100f00), \
9429 X(_uxtb, b2c0, fa5ff080), \
9430 X(_uxth, b280, fa1ff080), \
9431 X(_nop, bf00, f3af8000), \
9432 X(_yield, bf10, f3af8001), \
9433 X(_wfe, bf20, f3af8002), \
9434 X(_wfi, bf30, f3af8003), \
9435 X(_sev, bf40, f3af8004),
c19d1205
ZW
9436
9437/* To catch errors in encoding functions, the codes are all offset by
9438 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
9439 as 16-bit instructions. */
21d799b5 9440#define X(a,b,c) T_MNEM##a
c19d1205
ZW
9441enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
9442#undef X
9443
9444#define X(a,b,c) 0x##b
9445static const unsigned short thumb_op16[] = { T16_32_TAB };
9446#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
9447#undef X
9448
9449#define X(a,b,c) 0x##c
9450static const unsigned int thumb_op32[] = { T16_32_TAB };
c921be7d
NC
9451#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
9452#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
c19d1205
ZW
9453#undef X
9454#undef T16_32_TAB
9455
9456/* Thumb instruction encoders, in alphabetical order. */
9457
92e90b6e 9458/* ADDW or SUBW. */
c921be7d 9459
92e90b6e
PB
9460static void
9461do_t_add_sub_w (void)
9462{
9463 int Rd, Rn;
9464
9465 Rd = inst.operands[0].reg;
9466 Rn = inst.operands[1].reg;
9467
539d4391
NC
9468 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
9469 is the SP-{plus,minus}-immediate form of the instruction. */
9470 if (Rn == REG_SP)
9471 constraint (Rd == REG_PC, BAD_PC);
9472 else
9473 reject_bad_reg (Rd);
fdfde340 9474
92e90b6e
PB
9475 inst.instruction |= (Rn << 16) | (Rd << 8);
9476 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9477}
9478
c19d1205
ZW
9479/* Parse an add or subtract instruction. We get here with inst.instruction
9480 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
9481
9482static void
9483do_t_add_sub (void)
9484{
9485 int Rd, Rs, Rn;
9486
9487 Rd = inst.operands[0].reg;
9488 Rs = (inst.operands[1].present
9489 ? inst.operands[1].reg /* Rd, Rs, foo */
9490 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9491
e07e6e58
NC
9492 if (Rd == REG_PC)
9493 set_it_insn_type_last ();
9494
c19d1205
ZW
9495 if (unified_syntax)
9496 {
0110f2b8
PB
9497 bfd_boolean flags;
9498 bfd_boolean narrow;
9499 int opcode;
9500
9501 flags = (inst.instruction == T_MNEM_adds
9502 || inst.instruction == T_MNEM_subs);
9503 if (flags)
e07e6e58 9504 narrow = !in_it_block ();
0110f2b8 9505 else
e07e6e58 9506 narrow = in_it_block ();
c19d1205 9507 if (!inst.operands[2].isreg)
b99bd4ef 9508 {
16805f35
PB
9509 int add;
9510
fdfde340
JM
9511 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9512
16805f35
PB
9513 add = (inst.instruction == T_MNEM_add
9514 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
9515 opcode = 0;
9516 if (inst.size_req != 4)
9517 {
0110f2b8
PB
9518 /* Attempt to use a narrow opcode, with relaxation if
9519 appropriate. */
9520 if (Rd == REG_SP && Rs == REG_SP && !flags)
9521 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
9522 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
9523 opcode = T_MNEM_add_sp;
9524 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
9525 opcode = T_MNEM_add_pc;
9526 else if (Rd <= 7 && Rs <= 7 && narrow)
9527 {
9528 if (flags)
9529 opcode = add ? T_MNEM_addis : T_MNEM_subis;
9530 else
9531 opcode = add ? T_MNEM_addi : T_MNEM_subi;
9532 }
9533 if (opcode)
9534 {
9535 inst.instruction = THUMB_OP16(opcode);
9536 inst.instruction |= (Rd << 4) | Rs;
9537 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9538 if (inst.size_req != 2)
9539 inst.relax = opcode;
9540 }
9541 else
9542 constraint (inst.size_req == 2, BAD_HIREG);
9543 }
9544 if (inst.size_req == 4
9545 || (inst.size_req != 2 && !opcode))
9546 {
efd81785
PB
9547 if (Rd == REG_PC)
9548 {
fdfde340 9549 constraint (add, BAD_PC);
efd81785
PB
9550 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
9551 _("only SUBS PC, LR, #const allowed"));
9552 constraint (inst.reloc.exp.X_op != O_constant,
9553 _("expression too complex"));
9554 constraint (inst.reloc.exp.X_add_number < 0
9555 || inst.reloc.exp.X_add_number > 0xff,
9556 _("immediate value out of range"));
9557 inst.instruction = T2_SUBS_PC_LR
9558 | inst.reloc.exp.X_add_number;
9559 inst.reloc.type = BFD_RELOC_UNUSED;
9560 return;
9561 }
9562 else if (Rs == REG_PC)
16805f35
PB
9563 {
9564 /* Always use addw/subw. */
9565 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
9566 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9567 }
9568 else
9569 {
9570 inst.instruction = THUMB_OP32 (inst.instruction);
9571 inst.instruction = (inst.instruction & 0xe1ffffff)
9572 | 0x10000000;
9573 if (flags)
9574 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9575 else
9576 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
9577 }
dc4503c6
PB
9578 inst.instruction |= Rd << 8;
9579 inst.instruction |= Rs << 16;
0110f2b8 9580 }
b99bd4ef 9581 }
c19d1205
ZW
9582 else
9583 {
5f4cb198
NC
9584 unsigned int value = inst.reloc.exp.X_add_number;
9585 unsigned int shift = inst.operands[2].shift_kind;
9586
c19d1205
ZW
9587 Rn = inst.operands[2].reg;
9588 /* See if we can do this with a 16-bit instruction. */
9589 if (!inst.operands[2].shifted && inst.size_req != 4)
9590 {
e27ec89e
PB
9591 if (Rd > 7 || Rs > 7 || Rn > 7)
9592 narrow = FALSE;
9593
9594 if (narrow)
c19d1205 9595 {
e27ec89e
PB
9596 inst.instruction = ((inst.instruction == T_MNEM_adds
9597 || inst.instruction == T_MNEM_add)
c19d1205
ZW
9598 ? T_OPCODE_ADD_R3
9599 : T_OPCODE_SUB_R3);
9600 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
9601 return;
9602 }
b99bd4ef 9603
7e806470 9604 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
c19d1205 9605 {
7e806470
PB
9606 /* Thumb-1 cores (except v6-M) require at least one high
9607 register in a narrow non flag setting add. */
9608 if (Rd > 7 || Rn > 7
9609 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
9610 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
c19d1205 9611 {
7e806470
PB
9612 if (Rd == Rn)
9613 {
9614 Rn = Rs;
9615 Rs = Rd;
9616 }
c19d1205
ZW
9617 inst.instruction = T_OPCODE_ADD_HI;
9618 inst.instruction |= (Rd & 8) << 4;
9619 inst.instruction |= (Rd & 7);
9620 inst.instruction |= Rn << 3;
9621 return;
9622 }
c19d1205
ZW
9623 }
9624 }
c921be7d 9625
fdfde340
JM
9626 constraint (Rd == REG_PC, BAD_PC);
9627 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9628 constraint (Rs == REG_PC, BAD_PC);
9629 reject_bad_reg (Rn);
9630
c19d1205
ZW
9631 /* If we get here, it can't be done in 16 bits. */
9632 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
9633 _("shift must be constant"));
9634 inst.instruction = THUMB_OP32 (inst.instruction);
9635 inst.instruction |= Rd << 8;
9636 inst.instruction |= Rs << 16;
5f4cb198
NC
9637 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
9638 _("shift value over 3 not allowed in thumb mode"));
9639 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
9640 _("only LSL shift allowed in thumb mode"));
c19d1205
ZW
9641 encode_thumb32_shifted_operand (2);
9642 }
9643 }
9644 else
9645 {
9646 constraint (inst.instruction == T_MNEM_adds
9647 || inst.instruction == T_MNEM_subs,
9648 BAD_THUMB32);
b99bd4ef 9649
c19d1205 9650 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 9651 {
c19d1205
ZW
9652 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
9653 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
9654 BAD_HIREG);
9655
9656 inst.instruction = (inst.instruction == T_MNEM_add
9657 ? 0x0000 : 0x8000);
9658 inst.instruction |= (Rd << 4) | Rs;
9659 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
9660 return;
9661 }
9662
c19d1205
ZW
9663 Rn = inst.operands[2].reg;
9664 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 9665
c19d1205
ZW
9666 /* We now have Rd, Rs, and Rn set to registers. */
9667 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 9668 {
c19d1205
ZW
9669 /* Can't do this for SUB. */
9670 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
9671 inst.instruction = T_OPCODE_ADD_HI;
9672 inst.instruction |= (Rd & 8) << 4;
9673 inst.instruction |= (Rd & 7);
9674 if (Rs == Rd)
9675 inst.instruction |= Rn << 3;
9676 else if (Rn == Rd)
9677 inst.instruction |= Rs << 3;
9678 else
9679 constraint (1, _("dest must overlap one source register"));
9680 }
9681 else
9682 {
9683 inst.instruction = (inst.instruction == T_MNEM_add
9684 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
9685 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 9686 }
b99bd4ef 9687 }
b99bd4ef
NC
9688}
9689
c19d1205
ZW
9690static void
9691do_t_adr (void)
9692{
fdfde340
JM
9693 unsigned Rd;
9694
9695 Rd = inst.operands[0].reg;
9696 reject_bad_reg (Rd);
9697
9698 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
0110f2b8
PB
9699 {
9700 /* Defer to section relaxation. */
9701 inst.relax = inst.instruction;
9702 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 9703 inst.instruction |= Rd << 4;
0110f2b8
PB
9704 }
9705 else if (unified_syntax && inst.size_req != 2)
e9f89963 9706 {
0110f2b8 9707 /* Generate a 32-bit opcode. */
e9f89963 9708 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 9709 inst.instruction |= Rd << 8;
e9f89963
PB
9710 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
9711 inst.reloc.pc_rel = 1;
9712 }
9713 else
9714 {
0110f2b8 9715 /* Generate a 16-bit opcode. */
e9f89963
PB
9716 inst.instruction = THUMB_OP16 (inst.instruction);
9717 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9718 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
9719 inst.reloc.pc_rel = 1;
b99bd4ef 9720
fdfde340 9721 inst.instruction |= Rd << 4;
e9f89963 9722 }
c19d1205 9723}
b99bd4ef 9724
c19d1205
ZW
9725/* Arithmetic instructions for which there is just one 16-bit
9726 instruction encoding, and it allows only two low registers.
9727 For maximal compatibility with ARM syntax, we allow three register
9728 operands even when Thumb-32 instructions are not available, as long
9729 as the first two are identical. For instance, both "sbc r0,r1" and
9730 "sbc r0,r0,r1" are allowed. */
b99bd4ef 9731static void
c19d1205 9732do_t_arit3 (void)
b99bd4ef 9733{
c19d1205 9734 int Rd, Rs, Rn;
b99bd4ef 9735
c19d1205
ZW
9736 Rd = inst.operands[0].reg;
9737 Rs = (inst.operands[1].present
9738 ? inst.operands[1].reg /* Rd, Rs, foo */
9739 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9740 Rn = inst.operands[2].reg;
b99bd4ef 9741
fdfde340
JM
9742 reject_bad_reg (Rd);
9743 reject_bad_reg (Rs);
9744 if (inst.operands[2].isreg)
9745 reject_bad_reg (Rn);
9746
c19d1205 9747 if (unified_syntax)
b99bd4ef 9748 {
c19d1205
ZW
9749 if (!inst.operands[2].isreg)
9750 {
9751 /* For an immediate, we always generate a 32-bit opcode;
9752 section relaxation will shrink it later if possible. */
9753 inst.instruction = THUMB_OP32 (inst.instruction);
9754 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9755 inst.instruction |= Rd << 8;
9756 inst.instruction |= Rs << 16;
9757 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9758 }
9759 else
9760 {
e27ec89e
PB
9761 bfd_boolean narrow;
9762
c19d1205 9763 /* See if we can do this with a 16-bit instruction. */
e27ec89e 9764 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 9765 narrow = !in_it_block ();
e27ec89e 9766 else
e07e6e58 9767 narrow = in_it_block ();
e27ec89e
PB
9768
9769 if (Rd > 7 || Rn > 7 || Rs > 7)
9770 narrow = FALSE;
9771 if (inst.operands[2].shifted)
9772 narrow = FALSE;
9773 if (inst.size_req == 4)
9774 narrow = FALSE;
9775
9776 if (narrow
c19d1205
ZW
9777 && Rd == Rs)
9778 {
9779 inst.instruction = THUMB_OP16 (inst.instruction);
9780 inst.instruction |= Rd;
9781 inst.instruction |= Rn << 3;
9782 return;
9783 }
b99bd4ef 9784
c19d1205
ZW
9785 /* If we get here, it can't be done in 16 bits. */
9786 constraint (inst.operands[2].shifted
9787 && inst.operands[2].immisreg,
9788 _("shift must be constant"));
9789 inst.instruction = THUMB_OP32 (inst.instruction);
9790 inst.instruction |= Rd << 8;
9791 inst.instruction |= Rs << 16;
9792 encode_thumb32_shifted_operand (2);
9793 }
a737bd4d 9794 }
c19d1205 9795 else
b99bd4ef 9796 {
c19d1205
ZW
9797 /* On its face this is a lie - the instruction does set the
9798 flags. However, the only supported mnemonic in this mode
9799 says it doesn't. */
9800 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 9801
c19d1205
ZW
9802 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
9803 _("unshifted register required"));
9804 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
9805 constraint (Rd != Rs,
9806 _("dest and source1 must be the same register"));
a737bd4d 9807
c19d1205
ZW
9808 inst.instruction = THUMB_OP16 (inst.instruction);
9809 inst.instruction |= Rd;
9810 inst.instruction |= Rn << 3;
b99bd4ef 9811 }
a737bd4d 9812}
b99bd4ef 9813
c19d1205
ZW
9814/* Similarly, but for instructions where the arithmetic operation is
9815 commutative, so we can allow either of them to be different from
9816 the destination operand in a 16-bit instruction. For instance, all
9817 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
9818 accepted. */
9819static void
9820do_t_arit3c (void)
a737bd4d 9821{
c19d1205 9822 int Rd, Rs, Rn;
b99bd4ef 9823
c19d1205
ZW
9824 Rd = inst.operands[0].reg;
9825 Rs = (inst.operands[1].present
9826 ? inst.operands[1].reg /* Rd, Rs, foo */
9827 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9828 Rn = inst.operands[2].reg;
c921be7d 9829
fdfde340
JM
9830 reject_bad_reg (Rd);
9831 reject_bad_reg (Rs);
9832 if (inst.operands[2].isreg)
9833 reject_bad_reg (Rn);
a737bd4d 9834
c19d1205 9835 if (unified_syntax)
a737bd4d 9836 {
c19d1205 9837 if (!inst.operands[2].isreg)
b99bd4ef 9838 {
c19d1205
ZW
9839 /* For an immediate, we always generate a 32-bit opcode;
9840 section relaxation will shrink it later if possible. */
9841 inst.instruction = THUMB_OP32 (inst.instruction);
9842 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9843 inst.instruction |= Rd << 8;
9844 inst.instruction |= Rs << 16;
9845 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 9846 }
c19d1205 9847 else
a737bd4d 9848 {
e27ec89e
PB
9849 bfd_boolean narrow;
9850
c19d1205 9851 /* See if we can do this with a 16-bit instruction. */
e27ec89e 9852 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 9853 narrow = !in_it_block ();
e27ec89e 9854 else
e07e6e58 9855 narrow = in_it_block ();
e27ec89e
PB
9856
9857 if (Rd > 7 || Rn > 7 || Rs > 7)
9858 narrow = FALSE;
9859 if (inst.operands[2].shifted)
9860 narrow = FALSE;
9861 if (inst.size_req == 4)
9862 narrow = FALSE;
9863
9864 if (narrow)
a737bd4d 9865 {
c19d1205 9866 if (Rd == Rs)
a737bd4d 9867 {
c19d1205
ZW
9868 inst.instruction = THUMB_OP16 (inst.instruction);
9869 inst.instruction |= Rd;
9870 inst.instruction |= Rn << 3;
9871 return;
a737bd4d 9872 }
c19d1205 9873 if (Rd == Rn)
a737bd4d 9874 {
c19d1205
ZW
9875 inst.instruction = THUMB_OP16 (inst.instruction);
9876 inst.instruction |= Rd;
9877 inst.instruction |= Rs << 3;
9878 return;
a737bd4d
NC
9879 }
9880 }
c19d1205
ZW
9881
9882 /* If we get here, it can't be done in 16 bits. */
9883 constraint (inst.operands[2].shifted
9884 && inst.operands[2].immisreg,
9885 _("shift must be constant"));
9886 inst.instruction = THUMB_OP32 (inst.instruction);
9887 inst.instruction |= Rd << 8;
9888 inst.instruction |= Rs << 16;
9889 encode_thumb32_shifted_operand (2);
a737bd4d 9890 }
b99bd4ef 9891 }
c19d1205
ZW
9892 else
9893 {
9894 /* On its face this is a lie - the instruction does set the
9895 flags. However, the only supported mnemonic in this mode
9896 says it doesn't. */
9897 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 9898
c19d1205
ZW
9899 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
9900 _("unshifted register required"));
9901 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
9902
9903 inst.instruction = THUMB_OP16 (inst.instruction);
9904 inst.instruction |= Rd;
9905
9906 if (Rd == Rs)
9907 inst.instruction |= Rn << 3;
9908 else if (Rd == Rn)
9909 inst.instruction |= Rs << 3;
9910 else
9911 constraint (1, _("dest must overlap one source register"));
9912 }
a737bd4d
NC
9913}
9914
62b3e311
PB
9915static void
9916do_t_barrier (void)
9917{
9918 if (inst.operands[0].present)
9919 {
9920 constraint ((inst.instruction & 0xf0) != 0x40
52e7f43d
RE
9921 && inst.operands[0].imm > 0xf
9922 && inst.operands[0].imm < 0x0,
bd3ba5d1 9923 _("bad barrier type"));
62b3e311
PB
9924 inst.instruction |= inst.operands[0].imm;
9925 }
9926 else
9927 inst.instruction |= 0xf;
9928}
9929
c19d1205
ZW
9930static void
9931do_t_bfc (void)
a737bd4d 9932{
fdfde340 9933 unsigned Rd;
c19d1205
ZW
9934 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
9935 constraint (msb > 32, _("bit-field extends past end of register"));
9936 /* The instruction encoding stores the LSB and MSB,
9937 not the LSB and width. */
fdfde340
JM
9938 Rd = inst.operands[0].reg;
9939 reject_bad_reg (Rd);
9940 inst.instruction |= Rd << 8;
c19d1205
ZW
9941 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
9942 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
9943 inst.instruction |= msb - 1;
b99bd4ef
NC
9944}
9945
c19d1205
ZW
9946static void
9947do_t_bfi (void)
b99bd4ef 9948{
fdfde340 9949 int Rd, Rn;
c19d1205 9950 unsigned int msb;
b99bd4ef 9951
fdfde340
JM
9952 Rd = inst.operands[0].reg;
9953 reject_bad_reg (Rd);
9954
c19d1205
ZW
9955 /* #0 in second position is alternative syntax for bfc, which is
9956 the same instruction but with REG_PC in the Rm field. */
9957 if (!inst.operands[1].isreg)
fdfde340
JM
9958 Rn = REG_PC;
9959 else
9960 {
9961 Rn = inst.operands[1].reg;
9962 reject_bad_reg (Rn);
9963 }
b99bd4ef 9964
c19d1205
ZW
9965 msb = inst.operands[2].imm + inst.operands[3].imm;
9966 constraint (msb > 32, _("bit-field extends past end of register"));
9967 /* The instruction encoding stores the LSB and MSB,
9968 not the LSB and width. */
fdfde340
JM
9969 inst.instruction |= Rd << 8;
9970 inst.instruction |= Rn << 16;
c19d1205
ZW
9971 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
9972 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
9973 inst.instruction |= msb - 1;
b99bd4ef
NC
9974}
9975
c19d1205
ZW
9976static void
9977do_t_bfx (void)
b99bd4ef 9978{
fdfde340
JM
9979 unsigned Rd, Rn;
9980
9981 Rd = inst.operands[0].reg;
9982 Rn = inst.operands[1].reg;
9983
9984 reject_bad_reg (Rd);
9985 reject_bad_reg (Rn);
9986
c19d1205
ZW
9987 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
9988 _("bit-field extends past end of register"));
fdfde340
JM
9989 inst.instruction |= Rd << 8;
9990 inst.instruction |= Rn << 16;
c19d1205
ZW
9991 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
9992 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
9993 inst.instruction |= inst.operands[3].imm - 1;
9994}
b99bd4ef 9995
c19d1205
ZW
9996/* ARM V5 Thumb BLX (argument parse)
9997 BLX <target_addr> which is BLX(1)
9998 BLX <Rm> which is BLX(2)
9999 Unfortunately, there are two different opcodes for this mnemonic.
10000 So, the insns[].value is not used, and the code here zaps values
10001 into inst.instruction.
b99bd4ef 10002
c19d1205
ZW
10003 ??? How to take advantage of the additional two bits of displacement
10004 available in Thumb32 mode? Need new relocation? */
b99bd4ef 10005
c19d1205
ZW
10006static void
10007do_t_blx (void)
10008{
e07e6e58
NC
10009 set_it_insn_type_last ();
10010
c19d1205 10011 if (inst.operands[0].isreg)
fdfde340
JM
10012 {
10013 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10014 /* We have a register, so this is BLX(2). */
10015 inst.instruction |= inst.operands[0].reg << 3;
10016 }
b99bd4ef
NC
10017 else
10018 {
c19d1205 10019 /* No register. This must be BLX(1). */
2fc8bdac 10020 inst.instruction = 0xf000e800;
0855e32b 10021 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
b99bd4ef
NC
10022 }
10023}
10024
c19d1205
ZW
10025static void
10026do_t_branch (void)
b99bd4ef 10027{
0110f2b8 10028 int opcode;
dfa9f0d5 10029 int cond;
9ae92b05 10030 int reloc;
dfa9f0d5 10031
e07e6e58
NC
10032 cond = inst.cond;
10033 set_it_insn_type (IF_INSIDE_IT_LAST_INSN);
10034
10035 if (in_it_block ())
dfa9f0d5
PB
10036 {
10037 /* Conditional branches inside IT blocks are encoded as unconditional
10038 branches. */
10039 cond = COND_ALWAYS;
dfa9f0d5
PB
10040 }
10041 else
10042 cond = inst.cond;
10043
10044 if (cond != COND_ALWAYS)
0110f2b8
PB
10045 opcode = T_MNEM_bcond;
10046 else
10047 opcode = inst.instruction;
10048
12d6b0b7
RS
10049 if (unified_syntax
10050 && (inst.size_req == 4
10960bfb
PB
10051 || (inst.size_req != 2
10052 && (inst.operands[0].hasreloc
10053 || inst.reloc.exp.X_op == O_constant))))
c19d1205 10054 {
0110f2b8 10055 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 10056 if (cond == COND_ALWAYS)
9ae92b05 10057 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
10058 else
10059 {
9c2799c2 10060 gas_assert (cond != 0xF);
dfa9f0d5 10061 inst.instruction |= cond << 22;
9ae92b05 10062 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
c19d1205
ZW
10063 }
10064 }
b99bd4ef
NC
10065 else
10066 {
0110f2b8 10067 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 10068 if (cond == COND_ALWAYS)
9ae92b05 10069 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
c19d1205 10070 else
b99bd4ef 10071 {
dfa9f0d5 10072 inst.instruction |= cond << 8;
9ae92b05 10073 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 10074 }
0110f2b8
PB
10075 /* Allow section relaxation. */
10076 if (unified_syntax && inst.size_req != 2)
10077 inst.relax = opcode;
b99bd4ef 10078 }
9ae92b05 10079 inst.reloc.type = reloc;
c19d1205 10080 inst.reloc.pc_rel = 1;
b99bd4ef
NC
10081}
10082
10083static void
c19d1205 10084do_t_bkpt (void)
b99bd4ef 10085{
dfa9f0d5
PB
10086 constraint (inst.cond != COND_ALWAYS,
10087 _("instruction is always unconditional"));
c19d1205 10088 if (inst.operands[0].present)
b99bd4ef 10089 {
c19d1205
ZW
10090 constraint (inst.operands[0].imm > 255,
10091 _("immediate value out of range"));
10092 inst.instruction |= inst.operands[0].imm;
e07e6e58 10093 set_it_insn_type (NEUTRAL_IT_INSN);
b99bd4ef 10094 }
b99bd4ef
NC
10095}
10096
10097static void
c19d1205 10098do_t_branch23 (void)
b99bd4ef 10099{
e07e6e58 10100 set_it_insn_type_last ();
0855e32b 10101 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
fa94de6b 10102
0855e32b
NS
10103 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
10104 this file. We used to simply ignore the PLT reloc type here --
10105 the branch encoding is now needed to deal with TLSCALL relocs.
10106 So if we see a PLT reloc now, put it back to how it used to be to
10107 keep the preexisting behaviour. */
10108 if (inst.reloc.type == BFD_RELOC_ARM_PLT32)
10109 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a 10110
4343666d 10111#if defined(OBJ_COFF)
c19d1205
ZW
10112 /* If the destination of the branch is a defined symbol which does not have
10113 the THUMB_FUNC attribute, then we must be calling a function which has
10114 the (interfacearm) attribute. We look for the Thumb entry point to that
10115 function and change the branch to refer to that function instead. */
10116 if ( inst.reloc.exp.X_op == O_symbol
10117 && inst.reloc.exp.X_add_symbol != NULL
10118 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
10119 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
10120 inst.reloc.exp.X_add_symbol =
10121 find_real_start (inst.reloc.exp.X_add_symbol);
4343666d 10122#endif
90e4755a
RE
10123}
10124
10125static void
c19d1205 10126do_t_bx (void)
90e4755a 10127{
e07e6e58 10128 set_it_insn_type_last ();
c19d1205
ZW
10129 inst.instruction |= inst.operands[0].reg << 3;
10130 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
10131 should cause the alignment to be checked once it is known. This is
10132 because BX PC only works if the instruction is word aligned. */
10133}
90e4755a 10134
c19d1205
ZW
10135static void
10136do_t_bxj (void)
10137{
fdfde340 10138 int Rm;
90e4755a 10139
e07e6e58 10140 set_it_insn_type_last ();
fdfde340
JM
10141 Rm = inst.operands[0].reg;
10142 reject_bad_reg (Rm);
10143 inst.instruction |= Rm << 16;
90e4755a
RE
10144}
10145
10146static void
c19d1205 10147do_t_clz (void)
90e4755a 10148{
fdfde340
JM
10149 unsigned Rd;
10150 unsigned Rm;
10151
10152 Rd = inst.operands[0].reg;
10153 Rm = inst.operands[1].reg;
10154
10155 reject_bad_reg (Rd);
10156 reject_bad_reg (Rm);
10157
10158 inst.instruction |= Rd << 8;
10159 inst.instruction |= Rm << 16;
10160 inst.instruction |= Rm;
c19d1205 10161}
90e4755a 10162
dfa9f0d5
PB
10163static void
10164do_t_cps (void)
10165{
e07e6e58 10166 set_it_insn_type (OUTSIDE_IT_INSN);
dfa9f0d5
PB
10167 inst.instruction |= inst.operands[0].imm;
10168}
10169
c19d1205
ZW
10170static void
10171do_t_cpsi (void)
10172{
e07e6e58 10173 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205 10174 if (unified_syntax
62b3e311
PB
10175 && (inst.operands[1].present || inst.size_req == 4)
10176 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 10177 {
c19d1205
ZW
10178 unsigned int imod = (inst.instruction & 0x0030) >> 4;
10179 inst.instruction = 0xf3af8000;
10180 inst.instruction |= imod << 9;
10181 inst.instruction |= inst.operands[0].imm << 5;
10182 if (inst.operands[1].present)
10183 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 10184 }
c19d1205 10185 else
90e4755a 10186 {
62b3e311
PB
10187 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
10188 && (inst.operands[0].imm & 4),
10189 _("selected processor does not support 'A' form "
10190 "of this instruction"));
10191 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
10192 _("Thumb does not support the 2-argument "
10193 "form of this instruction"));
10194 inst.instruction |= inst.operands[0].imm;
90e4755a 10195 }
90e4755a
RE
10196}
10197
c19d1205
ZW
10198/* THUMB CPY instruction (argument parse). */
10199
90e4755a 10200static void
c19d1205 10201do_t_cpy (void)
90e4755a 10202{
c19d1205 10203 if (inst.size_req == 4)
90e4755a 10204 {
c19d1205
ZW
10205 inst.instruction = THUMB_OP32 (T_MNEM_mov);
10206 inst.instruction |= inst.operands[0].reg << 8;
10207 inst.instruction |= inst.operands[1].reg;
90e4755a 10208 }
c19d1205 10209 else
90e4755a 10210 {
c19d1205
ZW
10211 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
10212 inst.instruction |= (inst.operands[0].reg & 0x7);
10213 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 10214 }
90e4755a
RE
10215}
10216
90e4755a 10217static void
25fe350b 10218do_t_cbz (void)
90e4755a 10219{
e07e6e58 10220 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
10221 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10222 inst.instruction |= inst.operands[0].reg;
10223 inst.reloc.pc_rel = 1;
10224 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
10225}
90e4755a 10226
62b3e311
PB
10227static void
10228do_t_dbg (void)
10229{
10230 inst.instruction |= inst.operands[0].imm;
10231}
10232
10233static void
10234do_t_div (void)
10235{
fdfde340
JM
10236 unsigned Rd, Rn, Rm;
10237
10238 Rd = inst.operands[0].reg;
10239 Rn = (inst.operands[1].present
10240 ? inst.operands[1].reg : Rd);
10241 Rm = inst.operands[2].reg;
10242
10243 reject_bad_reg (Rd);
10244 reject_bad_reg (Rn);
10245 reject_bad_reg (Rm);
10246
10247 inst.instruction |= Rd << 8;
10248 inst.instruction |= Rn << 16;
10249 inst.instruction |= Rm;
62b3e311
PB
10250}
10251
c19d1205
ZW
10252static void
10253do_t_hint (void)
10254{
10255 if (unified_syntax && inst.size_req == 4)
10256 inst.instruction = THUMB_OP32 (inst.instruction);
10257 else
10258 inst.instruction = THUMB_OP16 (inst.instruction);
10259}
90e4755a 10260
c19d1205
ZW
10261static void
10262do_t_it (void)
10263{
10264 unsigned int cond = inst.operands[0].imm;
e27ec89e 10265
e07e6e58
NC
10266 set_it_insn_type (IT_INSN);
10267 now_it.mask = (inst.instruction & 0xf) | 0x10;
10268 now_it.cc = cond;
e27ec89e
PB
10269
10270 /* If the condition is a negative condition, invert the mask. */
c19d1205 10271 if ((cond & 0x1) == 0x0)
90e4755a 10272 {
c19d1205 10273 unsigned int mask = inst.instruction & 0x000f;
90e4755a 10274
c19d1205
ZW
10275 if ((mask & 0x7) == 0)
10276 /* no conversion needed */;
10277 else if ((mask & 0x3) == 0)
e27ec89e
PB
10278 mask ^= 0x8;
10279 else if ((mask & 0x1) == 0)
10280 mask ^= 0xC;
c19d1205 10281 else
e27ec89e 10282 mask ^= 0xE;
90e4755a 10283
e27ec89e
PB
10284 inst.instruction &= 0xfff0;
10285 inst.instruction |= mask;
c19d1205 10286 }
90e4755a 10287
c19d1205
ZW
10288 inst.instruction |= cond << 4;
10289}
90e4755a 10290
3c707909
PB
10291/* Helper function used for both push/pop and ldm/stm. */
10292static void
10293encode_thumb2_ldmstm (int base, unsigned mask, bfd_boolean writeback)
10294{
10295 bfd_boolean load;
10296
10297 load = (inst.instruction & (1 << 20)) != 0;
10298
10299 if (mask & (1 << 13))
10300 inst.error = _("SP not allowed in register list");
1e5b0379
NC
10301
10302 if ((mask & (1 << base)) != 0
10303 && writeback)
10304 inst.error = _("having the base register in the register list when "
10305 "using write back is UNPREDICTABLE");
10306
3c707909
PB
10307 if (load)
10308 {
e07e6e58
NC
10309 if (mask & (1 << 15))
10310 {
10311 if (mask & (1 << 14))
10312 inst.error = _("LR and PC should not both be in register list");
10313 else
10314 set_it_insn_type_last ();
10315 }
3c707909
PB
10316 }
10317 else
10318 {
10319 if (mask & (1 << 15))
10320 inst.error = _("PC not allowed in register list");
3c707909
PB
10321 }
10322
10323 if ((mask & (mask - 1)) == 0)
10324 {
10325 /* Single register transfers implemented as str/ldr. */
10326 if (writeback)
10327 {
10328 if (inst.instruction & (1 << 23))
10329 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
10330 else
10331 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
10332 }
10333 else
10334 {
10335 if (inst.instruction & (1 << 23))
10336 inst.instruction = 0x00800000; /* ia -> [base] */
10337 else
10338 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
10339 }
10340
10341 inst.instruction |= 0xf8400000;
10342 if (load)
10343 inst.instruction |= 0x00100000;
10344
5f4273c7 10345 mask = ffs (mask) - 1;
3c707909
PB
10346 mask <<= 12;
10347 }
10348 else if (writeback)
10349 inst.instruction |= WRITE_BACK;
10350
10351 inst.instruction |= mask;
10352 inst.instruction |= base << 16;
10353}
10354
c19d1205
ZW
10355static void
10356do_t_ldmstm (void)
10357{
10358 /* This really doesn't seem worth it. */
10359 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
10360 _("expression too complex"));
10361 constraint (inst.operands[1].writeback,
10362 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 10363
c19d1205
ZW
10364 if (unified_syntax)
10365 {
3c707909
PB
10366 bfd_boolean narrow;
10367 unsigned mask;
10368
10369 narrow = FALSE;
c19d1205
ZW
10370 /* See if we can use a 16-bit instruction. */
10371 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
10372 && inst.size_req != 4
3c707909 10373 && !(inst.operands[1].imm & ~0xff))
90e4755a 10374 {
3c707909 10375 mask = 1 << inst.operands[0].reg;
90e4755a 10376
eab4f823 10377 if (inst.operands[0].reg <= 7)
90e4755a 10378 {
3c707909 10379 if (inst.instruction == T_MNEM_stmia
eab4f823
MGD
10380 ? inst.operands[0].writeback
10381 : (inst.operands[0].writeback
10382 == !(inst.operands[1].imm & mask)))
10383 {
10384 if (inst.instruction == T_MNEM_stmia
10385 && (inst.operands[1].imm & mask)
10386 && (inst.operands[1].imm & (mask - 1)))
10387 as_warn (_("value stored for r%d is UNKNOWN"),
10388 inst.operands[0].reg);
3c707909 10389
eab4f823
MGD
10390 inst.instruction = THUMB_OP16 (inst.instruction);
10391 inst.instruction |= inst.operands[0].reg << 8;
10392 inst.instruction |= inst.operands[1].imm;
10393 narrow = TRUE;
10394 }
10395 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10396 {
10397 /* This means 1 register in reg list one of 3 situations:
10398 1. Instruction is stmia, but without writeback.
10399 2. lmdia without writeback, but with Rn not in
10400 reglist.
10401 3. ldmia with writeback, but with Rn in reglist.
10402 Case 3 is UNPREDICTABLE behaviour, so we handle
10403 case 1 and 2 which can be converted into a 16-bit
10404 str or ldr. The SP cases are handled below. */
10405 unsigned long opcode;
10406 /* First, record an error for Case 3. */
10407 if (inst.operands[1].imm & mask
10408 && inst.operands[0].writeback)
fa94de6b 10409 inst.error =
eab4f823
MGD
10410 _("having the base register in the register list when "
10411 "using write back is UNPREDICTABLE");
fa94de6b
RM
10412
10413 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
eab4f823
MGD
10414 : T_MNEM_ldr);
10415 inst.instruction = THUMB_OP16 (opcode);
10416 inst.instruction |= inst.operands[0].reg << 3;
10417 inst.instruction |= (ffs (inst.operands[1].imm)-1);
10418 narrow = TRUE;
10419 }
90e4755a 10420 }
eab4f823 10421 else if (inst.operands[0] .reg == REG_SP)
90e4755a 10422 {
eab4f823
MGD
10423 if (inst.operands[0].writeback)
10424 {
fa94de6b 10425 inst.instruction =
eab4f823
MGD
10426 THUMB_OP16 (inst.instruction == T_MNEM_stmia
10427 ? T_MNEM_push : T_MNEM_pop);
10428 inst.instruction |= inst.operands[1].imm;
10429 narrow = TRUE;
10430 }
10431 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10432 {
fa94de6b 10433 inst.instruction =
eab4f823
MGD
10434 THUMB_OP16 (inst.instruction == T_MNEM_stmia
10435 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
10436 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
10437 narrow = TRUE;
10438 }
90e4755a 10439 }
3c707909
PB
10440 }
10441
10442 if (!narrow)
10443 {
c19d1205
ZW
10444 if (inst.instruction < 0xffff)
10445 inst.instruction = THUMB_OP32 (inst.instruction);
3c707909 10446
5f4273c7
NC
10447 encode_thumb2_ldmstm (inst.operands[0].reg, inst.operands[1].imm,
10448 inst.operands[0].writeback);
90e4755a
RE
10449 }
10450 }
c19d1205 10451 else
90e4755a 10452 {
c19d1205
ZW
10453 constraint (inst.operands[0].reg > 7
10454 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
1198ca51
PB
10455 constraint (inst.instruction != T_MNEM_ldmia
10456 && inst.instruction != T_MNEM_stmia,
10457 _("Thumb-2 instruction only valid in unified syntax"));
c19d1205 10458 if (inst.instruction == T_MNEM_stmia)
f03698e6 10459 {
c19d1205
ZW
10460 if (!inst.operands[0].writeback)
10461 as_warn (_("this instruction will write back the base register"));
10462 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
10463 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
1e5b0379 10464 as_warn (_("value stored for r%d is UNKNOWN"),
c19d1205 10465 inst.operands[0].reg);
f03698e6 10466 }
c19d1205 10467 else
90e4755a 10468 {
c19d1205
ZW
10469 if (!inst.operands[0].writeback
10470 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
10471 as_warn (_("this instruction will write back the base register"));
10472 else if (inst.operands[0].writeback
10473 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
10474 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
10475 }
10476
c19d1205
ZW
10477 inst.instruction = THUMB_OP16 (inst.instruction);
10478 inst.instruction |= inst.operands[0].reg << 8;
10479 inst.instruction |= inst.operands[1].imm;
10480 }
10481}
e28cd48c 10482
c19d1205
ZW
10483static void
10484do_t_ldrex (void)
10485{
10486 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
10487 || inst.operands[1].postind || inst.operands[1].writeback
10488 || inst.operands[1].immisreg || inst.operands[1].shifted
10489 || inst.operands[1].negative,
01cfc07f 10490 BAD_ADDR_MODE);
e28cd48c 10491
5be8be5d
DG
10492 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
10493
c19d1205
ZW
10494 inst.instruction |= inst.operands[0].reg << 12;
10495 inst.instruction |= inst.operands[1].reg << 16;
10496 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
10497}
e28cd48c 10498
c19d1205
ZW
10499static void
10500do_t_ldrexd (void)
10501{
10502 if (!inst.operands[1].present)
1cac9012 10503 {
c19d1205
ZW
10504 constraint (inst.operands[0].reg == REG_LR,
10505 _("r14 not allowed as first register "
10506 "when second register is omitted"));
10507 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 10508 }
c19d1205
ZW
10509 constraint (inst.operands[0].reg == inst.operands[1].reg,
10510 BAD_OVERLAP);
b99bd4ef 10511
c19d1205
ZW
10512 inst.instruction |= inst.operands[0].reg << 12;
10513 inst.instruction |= inst.operands[1].reg << 8;
10514 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
10515}
10516
10517static void
c19d1205 10518do_t_ldst (void)
b99bd4ef 10519{
0110f2b8
PB
10520 unsigned long opcode;
10521 int Rn;
10522
e07e6e58
NC
10523 if (inst.operands[0].isreg
10524 && !inst.operands[0].preind
10525 && inst.operands[0].reg == REG_PC)
10526 set_it_insn_type_last ();
10527
0110f2b8 10528 opcode = inst.instruction;
c19d1205 10529 if (unified_syntax)
b99bd4ef 10530 {
53365c0d
PB
10531 if (!inst.operands[1].isreg)
10532 {
10533 if (opcode <= 0xffff)
10534 inst.instruction = THUMB_OP32 (opcode);
10535 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10536 return;
10537 }
0110f2b8
PB
10538 if (inst.operands[1].isreg
10539 && !inst.operands[1].writeback
c19d1205
ZW
10540 && !inst.operands[1].shifted && !inst.operands[1].postind
10541 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
10542 && opcode <= 0xffff
10543 && inst.size_req != 4)
c19d1205 10544 {
0110f2b8
PB
10545 /* Insn may have a 16-bit form. */
10546 Rn = inst.operands[1].reg;
10547 if (inst.operands[1].immisreg)
10548 {
10549 inst.instruction = THUMB_OP16 (opcode);
5f4273c7 10550 /* [Rn, Rik] */
0110f2b8
PB
10551 if (Rn <= 7 && inst.operands[1].imm <= 7)
10552 goto op16;
5be8be5d
DG
10553 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
10554 reject_bad_reg (inst.operands[1].imm);
0110f2b8
PB
10555 }
10556 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
10557 && opcode != T_MNEM_ldrsb)
10558 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
10559 || (Rn == REG_SP && opcode == T_MNEM_str))
10560 {
10561 /* [Rn, #const] */
10562 if (Rn > 7)
10563 {
10564 if (Rn == REG_PC)
10565 {
10566 if (inst.reloc.pc_rel)
10567 opcode = T_MNEM_ldr_pc2;
10568 else
10569 opcode = T_MNEM_ldr_pc;
10570 }
10571 else
10572 {
10573 if (opcode == T_MNEM_ldr)
10574 opcode = T_MNEM_ldr_sp;
10575 else
10576 opcode = T_MNEM_str_sp;
10577 }
10578 inst.instruction = inst.operands[0].reg << 8;
10579 }
10580 else
10581 {
10582 inst.instruction = inst.operands[0].reg;
10583 inst.instruction |= inst.operands[1].reg << 3;
10584 }
10585 inst.instruction |= THUMB_OP16 (opcode);
10586 if (inst.size_req == 2)
10587 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10588 else
10589 inst.relax = opcode;
10590 return;
10591 }
c19d1205 10592 }
0110f2b8 10593 /* Definitely a 32-bit variant. */
5be8be5d 10594
8d67f500
NC
10595 /* Warning for Erratum 752419. */
10596 if (opcode == T_MNEM_ldr
10597 && inst.operands[0].reg == REG_SP
10598 && inst.operands[1].writeback == 1
10599 && !inst.operands[1].immisreg)
10600 {
10601 if (no_cpu_selected ()
10602 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
10603 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
10604 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
10605 as_warn (_("This instruction may be unpredictable "
10606 "if executed on M-profile cores "
10607 "with interrupts enabled."));
10608 }
10609
5be8be5d 10610 /* Do some validations regarding addressing modes. */
1be5fd2e 10611 if (inst.operands[1].immisreg)
5be8be5d
DG
10612 reject_bad_reg (inst.operands[1].imm);
10613
1be5fd2e
NC
10614 constraint (inst.operands[1].writeback == 1
10615 && inst.operands[0].reg == inst.operands[1].reg,
10616 BAD_OVERLAP);
10617
0110f2b8 10618 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
10619 inst.instruction |= inst.operands[0].reg << 12;
10620 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
1be5fd2e 10621 check_ldr_r15_aligned ();
b99bd4ef
NC
10622 return;
10623 }
10624
c19d1205
ZW
10625 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10626
10627 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 10628 {
c19d1205
ZW
10629 /* Only [Rn,Rm] is acceptable. */
10630 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
10631 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
10632 || inst.operands[1].postind || inst.operands[1].shifted
10633 || inst.operands[1].negative,
10634 _("Thumb does not support this addressing mode"));
10635 inst.instruction = THUMB_OP16 (inst.instruction);
10636 goto op16;
b99bd4ef 10637 }
5f4273c7 10638
c19d1205
ZW
10639 inst.instruction = THUMB_OP16 (inst.instruction);
10640 if (!inst.operands[1].isreg)
10641 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10642 return;
b99bd4ef 10643
c19d1205
ZW
10644 constraint (!inst.operands[1].preind
10645 || inst.operands[1].shifted
10646 || inst.operands[1].writeback,
10647 _("Thumb does not support this addressing mode"));
10648 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 10649 {
c19d1205
ZW
10650 constraint (inst.instruction & 0x0600,
10651 _("byte or halfword not valid for base register"));
10652 constraint (inst.operands[1].reg == REG_PC
10653 && !(inst.instruction & THUMB_LOAD_BIT),
10654 _("r15 based store not allowed"));
10655 constraint (inst.operands[1].immisreg,
10656 _("invalid base register for register offset"));
b99bd4ef 10657
c19d1205
ZW
10658 if (inst.operands[1].reg == REG_PC)
10659 inst.instruction = T_OPCODE_LDR_PC;
10660 else if (inst.instruction & THUMB_LOAD_BIT)
10661 inst.instruction = T_OPCODE_LDR_SP;
10662 else
10663 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 10664
c19d1205
ZW
10665 inst.instruction |= inst.operands[0].reg << 8;
10666 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10667 return;
10668 }
90e4755a 10669
c19d1205
ZW
10670 constraint (inst.operands[1].reg > 7, BAD_HIREG);
10671 if (!inst.operands[1].immisreg)
10672 {
10673 /* Immediate offset. */
10674 inst.instruction |= inst.operands[0].reg;
10675 inst.instruction |= inst.operands[1].reg << 3;
10676 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10677 return;
10678 }
90e4755a 10679
c19d1205
ZW
10680 /* Register offset. */
10681 constraint (inst.operands[1].imm > 7, BAD_HIREG);
10682 constraint (inst.operands[1].negative,
10683 _("Thumb does not support this addressing mode"));
90e4755a 10684
c19d1205
ZW
10685 op16:
10686 switch (inst.instruction)
10687 {
10688 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
10689 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
10690 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
10691 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
10692 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
10693 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
10694 case 0x5600 /* ldrsb */:
10695 case 0x5e00 /* ldrsh */: break;
10696 default: abort ();
10697 }
90e4755a 10698
c19d1205
ZW
10699 inst.instruction |= inst.operands[0].reg;
10700 inst.instruction |= inst.operands[1].reg << 3;
10701 inst.instruction |= inst.operands[1].imm << 6;
10702}
90e4755a 10703
c19d1205
ZW
10704static void
10705do_t_ldstd (void)
10706{
10707 if (!inst.operands[1].present)
b99bd4ef 10708 {
c19d1205
ZW
10709 inst.operands[1].reg = inst.operands[0].reg + 1;
10710 constraint (inst.operands[0].reg == REG_LR,
10711 _("r14 not allowed here"));
bd340a04
MGD
10712 constraint (inst.operands[0].reg == REG_R12,
10713 _("r12 not allowed here"));
b99bd4ef 10714 }
bd340a04
MGD
10715
10716 if (inst.operands[2].writeback
10717 && (inst.operands[0].reg == inst.operands[2].reg
10718 || inst.operands[1].reg == inst.operands[2].reg))
10719 as_warn (_("base register written back, and overlaps "
10720 "one of transfer registers"));
10721
c19d1205
ZW
10722 inst.instruction |= inst.operands[0].reg << 12;
10723 inst.instruction |= inst.operands[1].reg << 8;
10724 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
b99bd4ef
NC
10725}
10726
c19d1205
ZW
10727static void
10728do_t_ldstt (void)
10729{
10730 inst.instruction |= inst.operands[0].reg << 12;
10731 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
10732}
a737bd4d 10733
b99bd4ef 10734static void
c19d1205 10735do_t_mla (void)
b99bd4ef 10736{
fdfde340 10737 unsigned Rd, Rn, Rm, Ra;
c921be7d 10738
fdfde340
JM
10739 Rd = inst.operands[0].reg;
10740 Rn = inst.operands[1].reg;
10741 Rm = inst.operands[2].reg;
10742 Ra = inst.operands[3].reg;
10743
10744 reject_bad_reg (Rd);
10745 reject_bad_reg (Rn);
10746 reject_bad_reg (Rm);
10747 reject_bad_reg (Ra);
10748
10749 inst.instruction |= Rd << 8;
10750 inst.instruction |= Rn << 16;
10751 inst.instruction |= Rm;
10752 inst.instruction |= Ra << 12;
c19d1205 10753}
b99bd4ef 10754
c19d1205
ZW
10755static void
10756do_t_mlal (void)
10757{
fdfde340
JM
10758 unsigned RdLo, RdHi, Rn, Rm;
10759
10760 RdLo = inst.operands[0].reg;
10761 RdHi = inst.operands[1].reg;
10762 Rn = inst.operands[2].reg;
10763 Rm = inst.operands[3].reg;
10764
10765 reject_bad_reg (RdLo);
10766 reject_bad_reg (RdHi);
10767 reject_bad_reg (Rn);
10768 reject_bad_reg (Rm);
10769
10770 inst.instruction |= RdLo << 12;
10771 inst.instruction |= RdHi << 8;
10772 inst.instruction |= Rn << 16;
10773 inst.instruction |= Rm;
c19d1205 10774}
b99bd4ef 10775
c19d1205
ZW
10776static void
10777do_t_mov_cmp (void)
10778{
fdfde340
JM
10779 unsigned Rn, Rm;
10780
10781 Rn = inst.operands[0].reg;
10782 Rm = inst.operands[1].reg;
10783
e07e6e58
NC
10784 if (Rn == REG_PC)
10785 set_it_insn_type_last ();
10786
c19d1205 10787 if (unified_syntax)
b99bd4ef 10788 {
c19d1205
ZW
10789 int r0off = (inst.instruction == T_MNEM_mov
10790 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 10791 unsigned long opcode;
3d388997
PB
10792 bfd_boolean narrow;
10793 bfd_boolean low_regs;
10794
fdfde340 10795 low_regs = (Rn <= 7 && Rm <= 7);
0110f2b8 10796 opcode = inst.instruction;
e07e6e58 10797 if (in_it_block ())
0110f2b8 10798 narrow = opcode != T_MNEM_movs;
3d388997 10799 else
0110f2b8 10800 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
10801 if (inst.size_req == 4
10802 || inst.operands[1].shifted)
10803 narrow = FALSE;
10804
efd81785
PB
10805 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
10806 if (opcode == T_MNEM_movs && inst.operands[1].isreg
10807 && !inst.operands[1].shifted
fdfde340
JM
10808 && Rn == REG_PC
10809 && Rm == REG_LR)
efd81785
PB
10810 {
10811 inst.instruction = T2_SUBS_PC_LR;
10812 return;
10813 }
10814
fdfde340
JM
10815 if (opcode == T_MNEM_cmp)
10816 {
10817 constraint (Rn == REG_PC, BAD_PC);
94206790
MM
10818 if (narrow)
10819 {
10820 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
10821 but valid. */
10822 warn_deprecated_sp (Rm);
10823 /* R15 was documented as a valid choice for Rm in ARMv6,
10824 but as UNPREDICTABLE in ARMv7. ARM's proprietary
10825 tools reject R15, so we do too. */
10826 constraint (Rm == REG_PC, BAD_PC);
10827 }
10828 else
10829 reject_bad_reg (Rm);
fdfde340
JM
10830 }
10831 else if (opcode == T_MNEM_mov
10832 || opcode == T_MNEM_movs)
10833 {
10834 if (inst.operands[1].isreg)
10835 {
10836 if (opcode == T_MNEM_movs)
10837 {
10838 reject_bad_reg (Rn);
10839 reject_bad_reg (Rm);
10840 }
76fa04a4
MGD
10841 else if (narrow)
10842 {
10843 /* This is mov.n. */
10844 if ((Rn == REG_SP || Rn == REG_PC)
10845 && (Rm == REG_SP || Rm == REG_PC))
10846 {
10847 as_warn (_("Use of r%u as a source register is "
10848 "deprecated when r%u is the destination "
10849 "register."), Rm, Rn);
10850 }
10851 }
10852 else
10853 {
10854 /* This is mov.w. */
10855 constraint (Rn == REG_PC, BAD_PC);
10856 constraint (Rm == REG_PC, BAD_PC);
10857 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
10858 }
fdfde340
JM
10859 }
10860 else
10861 reject_bad_reg (Rn);
10862 }
10863
c19d1205
ZW
10864 if (!inst.operands[1].isreg)
10865 {
0110f2b8 10866 /* Immediate operand. */
e07e6e58 10867 if (!in_it_block () && opcode == T_MNEM_mov)
0110f2b8
PB
10868 narrow = 0;
10869 if (low_regs && narrow)
10870 {
10871 inst.instruction = THUMB_OP16 (opcode);
fdfde340 10872 inst.instruction |= Rn << 8;
0110f2b8
PB
10873 if (inst.size_req == 2)
10874 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
10875 else
10876 inst.relax = opcode;
10877 }
10878 else
10879 {
10880 inst.instruction = THUMB_OP32 (inst.instruction);
10881 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 10882 inst.instruction |= Rn << r0off;
0110f2b8
PB
10883 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
10884 }
c19d1205 10885 }
728ca7c9
PB
10886 else if (inst.operands[1].shifted && inst.operands[1].immisreg
10887 && (inst.instruction == T_MNEM_mov
10888 || inst.instruction == T_MNEM_movs))
10889 {
10890 /* Register shifts are encoded as separate shift instructions. */
10891 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
10892
e07e6e58 10893 if (in_it_block ())
728ca7c9
PB
10894 narrow = !flags;
10895 else
10896 narrow = flags;
10897
10898 if (inst.size_req == 4)
10899 narrow = FALSE;
10900
10901 if (!low_regs || inst.operands[1].imm > 7)
10902 narrow = FALSE;
10903
fdfde340 10904 if (Rn != Rm)
728ca7c9
PB
10905 narrow = FALSE;
10906
10907 switch (inst.operands[1].shift_kind)
10908 {
10909 case SHIFT_LSL:
10910 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
10911 break;
10912 case SHIFT_ASR:
10913 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
10914 break;
10915 case SHIFT_LSR:
10916 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
10917 break;
10918 case SHIFT_ROR:
10919 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
10920 break;
10921 default:
5f4273c7 10922 abort ();
728ca7c9
PB
10923 }
10924
10925 inst.instruction = opcode;
10926 if (narrow)
10927 {
fdfde340 10928 inst.instruction |= Rn;
728ca7c9
PB
10929 inst.instruction |= inst.operands[1].imm << 3;
10930 }
10931 else
10932 {
10933 if (flags)
10934 inst.instruction |= CONDS_BIT;
10935
fdfde340
JM
10936 inst.instruction |= Rn << 8;
10937 inst.instruction |= Rm << 16;
728ca7c9
PB
10938 inst.instruction |= inst.operands[1].imm;
10939 }
10940 }
3d388997 10941 else if (!narrow)
c19d1205 10942 {
728ca7c9
PB
10943 /* Some mov with immediate shift have narrow variants.
10944 Register shifts are handled above. */
10945 if (low_regs && inst.operands[1].shifted
10946 && (inst.instruction == T_MNEM_mov
10947 || inst.instruction == T_MNEM_movs))
10948 {
e07e6e58 10949 if (in_it_block ())
728ca7c9
PB
10950 narrow = (inst.instruction == T_MNEM_mov);
10951 else
10952 narrow = (inst.instruction == T_MNEM_movs);
10953 }
10954
10955 if (narrow)
10956 {
10957 switch (inst.operands[1].shift_kind)
10958 {
10959 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
10960 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
10961 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
10962 default: narrow = FALSE; break;
10963 }
10964 }
10965
10966 if (narrow)
10967 {
fdfde340
JM
10968 inst.instruction |= Rn;
10969 inst.instruction |= Rm << 3;
728ca7c9
PB
10970 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
10971 }
10972 else
10973 {
10974 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 10975 inst.instruction |= Rn << r0off;
728ca7c9
PB
10976 encode_thumb32_shifted_operand (1);
10977 }
c19d1205
ZW
10978 }
10979 else
10980 switch (inst.instruction)
10981 {
10982 case T_MNEM_mov:
837b3435 10983 /* In v4t or v5t a move of two lowregs produces unpredictable
c6400f8a
MGD
10984 results. Don't allow this. */
10985 if (low_regs)
10986 {
10987 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
10988 "MOV Rd, Rs with two low registers is not "
10989 "permitted on this architecture");
fa94de6b 10990 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
c6400f8a
MGD
10991 arm_ext_v6);
10992 }
10993
c19d1205 10994 inst.instruction = T_OPCODE_MOV_HR;
fdfde340
JM
10995 inst.instruction |= (Rn & 0x8) << 4;
10996 inst.instruction |= (Rn & 0x7);
10997 inst.instruction |= Rm << 3;
c19d1205 10998 break;
b99bd4ef 10999
c19d1205
ZW
11000 case T_MNEM_movs:
11001 /* We know we have low registers at this point.
941a8a52
MGD
11002 Generate LSLS Rd, Rs, #0. */
11003 inst.instruction = T_OPCODE_LSL_I;
fdfde340
JM
11004 inst.instruction |= Rn;
11005 inst.instruction |= Rm << 3;
c19d1205
ZW
11006 break;
11007
11008 case T_MNEM_cmp:
3d388997 11009 if (low_regs)
c19d1205
ZW
11010 {
11011 inst.instruction = T_OPCODE_CMP_LR;
fdfde340
JM
11012 inst.instruction |= Rn;
11013 inst.instruction |= Rm << 3;
c19d1205
ZW
11014 }
11015 else
11016 {
11017 inst.instruction = T_OPCODE_CMP_HR;
fdfde340
JM
11018 inst.instruction |= (Rn & 0x8) << 4;
11019 inst.instruction |= (Rn & 0x7);
11020 inst.instruction |= Rm << 3;
c19d1205
ZW
11021 }
11022 break;
11023 }
b99bd4ef
NC
11024 return;
11025 }
11026
c19d1205 11027 inst.instruction = THUMB_OP16 (inst.instruction);
539d4391
NC
11028
11029 /* PR 10443: Do not silently ignore shifted operands. */
11030 constraint (inst.operands[1].shifted,
11031 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
11032
c19d1205 11033 if (inst.operands[1].isreg)
b99bd4ef 11034 {
fdfde340 11035 if (Rn < 8 && Rm < 8)
b99bd4ef 11036 {
c19d1205
ZW
11037 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
11038 since a MOV instruction produces unpredictable results. */
11039 if (inst.instruction == T_OPCODE_MOV_I8)
11040 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 11041 else
c19d1205 11042 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 11043
fdfde340
JM
11044 inst.instruction |= Rn;
11045 inst.instruction |= Rm << 3;
b99bd4ef
NC
11046 }
11047 else
11048 {
c19d1205
ZW
11049 if (inst.instruction == T_OPCODE_MOV_I8)
11050 inst.instruction = T_OPCODE_MOV_HR;
11051 else
11052 inst.instruction = T_OPCODE_CMP_HR;
11053 do_t_cpy ();
b99bd4ef
NC
11054 }
11055 }
c19d1205 11056 else
b99bd4ef 11057 {
fdfde340 11058 constraint (Rn > 7,
c19d1205 11059 _("only lo regs allowed with immediate"));
fdfde340 11060 inst.instruction |= Rn << 8;
c19d1205
ZW
11061 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11062 }
11063}
b99bd4ef 11064
c19d1205
ZW
11065static void
11066do_t_mov16 (void)
11067{
fdfde340 11068 unsigned Rd;
b6895b4f
PB
11069 bfd_vma imm;
11070 bfd_boolean top;
11071
11072 top = (inst.instruction & 0x00800000) != 0;
11073 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
11074 {
11075 constraint (top, _(":lower16: not allowed this instruction"));
11076 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
11077 }
11078 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
11079 {
11080 constraint (!top, _(":upper16: not allowed this instruction"));
11081 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
11082 }
11083
fdfde340
JM
11084 Rd = inst.operands[0].reg;
11085 reject_bad_reg (Rd);
11086
11087 inst.instruction |= Rd << 8;
b6895b4f
PB
11088 if (inst.reloc.type == BFD_RELOC_UNUSED)
11089 {
11090 imm = inst.reloc.exp.X_add_number;
11091 inst.instruction |= (imm & 0xf000) << 4;
11092 inst.instruction |= (imm & 0x0800) << 15;
11093 inst.instruction |= (imm & 0x0700) << 4;
11094 inst.instruction |= (imm & 0x00ff);
11095 }
c19d1205 11096}
b99bd4ef 11097
c19d1205
ZW
11098static void
11099do_t_mvn_tst (void)
11100{
fdfde340 11101 unsigned Rn, Rm;
c921be7d 11102
fdfde340
JM
11103 Rn = inst.operands[0].reg;
11104 Rm = inst.operands[1].reg;
11105
11106 if (inst.instruction == T_MNEM_cmp
11107 || inst.instruction == T_MNEM_cmn)
11108 constraint (Rn == REG_PC, BAD_PC);
11109 else
11110 reject_bad_reg (Rn);
11111 reject_bad_reg (Rm);
11112
c19d1205
ZW
11113 if (unified_syntax)
11114 {
11115 int r0off = (inst.instruction == T_MNEM_mvn
11116 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
11117 bfd_boolean narrow;
11118
11119 if (inst.size_req == 4
11120 || inst.instruction > 0xffff
11121 || inst.operands[1].shifted
fdfde340 11122 || Rn > 7 || Rm > 7)
3d388997
PB
11123 narrow = FALSE;
11124 else if (inst.instruction == T_MNEM_cmn)
11125 narrow = TRUE;
11126 else if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11127 narrow = !in_it_block ();
3d388997 11128 else
e07e6e58 11129 narrow = in_it_block ();
3d388997 11130
c19d1205 11131 if (!inst.operands[1].isreg)
b99bd4ef 11132 {
c19d1205
ZW
11133 /* For an immediate, we always generate a 32-bit opcode;
11134 section relaxation will shrink it later if possible. */
11135 if (inst.instruction < 0xffff)
11136 inst.instruction = THUMB_OP32 (inst.instruction);
11137 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11138 inst.instruction |= Rn << r0off;
c19d1205 11139 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 11140 }
c19d1205 11141 else
b99bd4ef 11142 {
c19d1205 11143 /* See if we can do this with a 16-bit instruction. */
3d388997 11144 if (narrow)
b99bd4ef 11145 {
c19d1205 11146 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11147 inst.instruction |= Rn;
11148 inst.instruction |= Rm << 3;
b99bd4ef 11149 }
c19d1205 11150 else
b99bd4ef 11151 {
c19d1205
ZW
11152 constraint (inst.operands[1].shifted
11153 && inst.operands[1].immisreg,
11154 _("shift must be constant"));
11155 if (inst.instruction < 0xffff)
11156 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11157 inst.instruction |= Rn << r0off;
c19d1205 11158 encode_thumb32_shifted_operand (1);
b99bd4ef 11159 }
b99bd4ef
NC
11160 }
11161 }
11162 else
11163 {
c19d1205
ZW
11164 constraint (inst.instruction > 0xffff
11165 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
11166 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
11167 _("unshifted register required"));
fdfde340 11168 constraint (Rn > 7 || Rm > 7,
c19d1205 11169 BAD_HIREG);
b99bd4ef 11170
c19d1205 11171 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11172 inst.instruction |= Rn;
11173 inst.instruction |= Rm << 3;
b99bd4ef 11174 }
b99bd4ef
NC
11175}
11176
b05fe5cf 11177static void
c19d1205 11178do_t_mrs (void)
b05fe5cf 11179{
fdfde340 11180 unsigned Rd;
037e8744
JB
11181
11182 if (do_vfp_nsyn_mrs () == SUCCESS)
11183 return;
11184
90ec0d68
MGD
11185 Rd = inst.operands[0].reg;
11186 reject_bad_reg (Rd);
11187 inst.instruction |= Rd << 8;
11188
11189 if (inst.operands[1].isreg)
62b3e311 11190 {
90ec0d68
MGD
11191 unsigned br = inst.operands[1].reg;
11192 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
11193 as_bad (_("bad register for mrs"));
11194
11195 inst.instruction |= br & (0xf << 16);
11196 inst.instruction |= (br & 0x300) >> 4;
11197 inst.instruction |= (br & SPSR_BIT) >> 2;
62b3e311
PB
11198 }
11199 else
11200 {
90ec0d68 11201 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
5f4273c7 11202
d2cd1205
JB
11203 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
11204 constraint (flags != 0, _("selected processor does not support "
11205 "requested special purpose register"));
90ec0d68 11206 else
d2cd1205
JB
11207 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
11208 devices). */
11209 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
11210 _("'APSR', 'CPSR' or 'SPSR' expected"));
fdfde340 11211
90ec0d68
MGD
11212 inst.instruction |= (flags & SPSR_BIT) >> 2;
11213 inst.instruction |= inst.operands[1].imm & 0xff;
11214 inst.instruction |= 0xf0000;
11215 }
c19d1205 11216}
b05fe5cf 11217
c19d1205
ZW
11218static void
11219do_t_msr (void)
11220{
62b3e311 11221 int flags;
fdfde340 11222 unsigned Rn;
62b3e311 11223
037e8744
JB
11224 if (do_vfp_nsyn_msr () == SUCCESS)
11225 return;
11226
c19d1205
ZW
11227 constraint (!inst.operands[1].isreg,
11228 _("Thumb encoding does not support an immediate here"));
90ec0d68
MGD
11229
11230 if (inst.operands[0].isreg)
11231 flags = (int)(inst.operands[0].reg);
11232 else
11233 flags = inst.operands[0].imm;
11234
d2cd1205 11235 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
62b3e311 11236 {
d2cd1205
JB
11237 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
11238
11239 constraint ((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11240 && (bits & ~(PSR_s | PSR_f)) != 0)
11241 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11242 && bits != PSR_f),
11243 _("selected processor does not support requested special "
11244 "purpose register"));
62b3e311
PB
11245 }
11246 else
d2cd1205
JB
11247 constraint ((flags & 0xff) != 0, _("selected processor does not support "
11248 "requested special purpose register"));
c921be7d 11249
fdfde340
JM
11250 Rn = inst.operands[1].reg;
11251 reject_bad_reg (Rn);
11252
62b3e311 11253 inst.instruction |= (flags & SPSR_BIT) >> 2;
90ec0d68
MGD
11254 inst.instruction |= (flags & 0xf0000) >> 8;
11255 inst.instruction |= (flags & 0x300) >> 4;
62b3e311 11256 inst.instruction |= (flags & 0xff);
fdfde340 11257 inst.instruction |= Rn << 16;
c19d1205 11258}
b05fe5cf 11259
c19d1205
ZW
11260static void
11261do_t_mul (void)
11262{
17828f45 11263 bfd_boolean narrow;
fdfde340 11264 unsigned Rd, Rn, Rm;
17828f45 11265
c19d1205
ZW
11266 if (!inst.operands[2].present)
11267 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 11268
fdfde340
JM
11269 Rd = inst.operands[0].reg;
11270 Rn = inst.operands[1].reg;
11271 Rm = inst.operands[2].reg;
11272
17828f45 11273 if (unified_syntax)
b05fe5cf 11274 {
17828f45 11275 if (inst.size_req == 4
fdfde340
JM
11276 || (Rd != Rn
11277 && Rd != Rm)
11278 || Rn > 7
11279 || Rm > 7)
17828f45
JM
11280 narrow = FALSE;
11281 else if (inst.instruction == T_MNEM_muls)
e07e6e58 11282 narrow = !in_it_block ();
17828f45 11283 else
e07e6e58 11284 narrow = in_it_block ();
b05fe5cf 11285 }
c19d1205 11286 else
b05fe5cf 11287 {
17828f45 11288 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
fdfde340 11289 constraint (Rn > 7 || Rm > 7,
c19d1205 11290 BAD_HIREG);
17828f45
JM
11291 narrow = TRUE;
11292 }
b05fe5cf 11293
17828f45
JM
11294 if (narrow)
11295 {
11296 /* 16-bit MULS/Conditional MUL. */
c19d1205 11297 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 11298 inst.instruction |= Rd;
b05fe5cf 11299
fdfde340
JM
11300 if (Rd == Rn)
11301 inst.instruction |= Rm << 3;
11302 else if (Rd == Rm)
11303 inst.instruction |= Rn << 3;
c19d1205
ZW
11304 else
11305 constraint (1, _("dest must overlap one source register"));
11306 }
17828f45
JM
11307 else
11308 {
e07e6e58
NC
11309 constraint (inst.instruction != T_MNEM_mul,
11310 _("Thumb-2 MUL must not set flags"));
17828f45
JM
11311 /* 32-bit MUL. */
11312 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11313 inst.instruction |= Rd << 8;
11314 inst.instruction |= Rn << 16;
11315 inst.instruction |= Rm << 0;
11316
11317 reject_bad_reg (Rd);
11318 reject_bad_reg (Rn);
11319 reject_bad_reg (Rm);
17828f45 11320 }
c19d1205 11321}
b05fe5cf 11322
c19d1205
ZW
11323static void
11324do_t_mull (void)
11325{
fdfde340 11326 unsigned RdLo, RdHi, Rn, Rm;
b05fe5cf 11327
fdfde340
JM
11328 RdLo = inst.operands[0].reg;
11329 RdHi = inst.operands[1].reg;
11330 Rn = inst.operands[2].reg;
11331 Rm = inst.operands[3].reg;
11332
11333 reject_bad_reg (RdLo);
11334 reject_bad_reg (RdHi);
11335 reject_bad_reg (Rn);
11336 reject_bad_reg (Rm);
11337
11338 inst.instruction |= RdLo << 12;
11339 inst.instruction |= RdHi << 8;
11340 inst.instruction |= Rn << 16;
11341 inst.instruction |= Rm;
11342
11343 if (RdLo == RdHi)
c19d1205
ZW
11344 as_tsktsk (_("rdhi and rdlo must be different"));
11345}
b05fe5cf 11346
c19d1205
ZW
11347static void
11348do_t_nop (void)
11349{
e07e6e58
NC
11350 set_it_insn_type (NEUTRAL_IT_INSN);
11351
c19d1205
ZW
11352 if (unified_syntax)
11353 {
11354 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 11355 {
c19d1205
ZW
11356 inst.instruction = THUMB_OP32 (inst.instruction);
11357 inst.instruction |= inst.operands[0].imm;
11358 }
11359 else
11360 {
bc2d1808
NC
11361 /* PR9722: Check for Thumb2 availability before
11362 generating a thumb2 nop instruction. */
afa62d5e 11363 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
bc2d1808
NC
11364 {
11365 inst.instruction = THUMB_OP16 (inst.instruction);
11366 inst.instruction |= inst.operands[0].imm << 4;
11367 }
11368 else
11369 inst.instruction = 0x46c0;
c19d1205
ZW
11370 }
11371 }
11372 else
11373 {
11374 constraint (inst.operands[0].present,
11375 _("Thumb does not support NOP with hints"));
11376 inst.instruction = 0x46c0;
11377 }
11378}
b05fe5cf 11379
c19d1205
ZW
11380static void
11381do_t_neg (void)
11382{
11383 if (unified_syntax)
11384 {
3d388997
PB
11385 bfd_boolean narrow;
11386
11387 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11388 narrow = !in_it_block ();
3d388997 11389 else
e07e6e58 11390 narrow = in_it_block ();
3d388997
PB
11391 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11392 narrow = FALSE;
11393 if (inst.size_req == 4)
11394 narrow = FALSE;
11395
11396 if (!narrow)
c19d1205
ZW
11397 {
11398 inst.instruction = THUMB_OP32 (inst.instruction);
11399 inst.instruction |= inst.operands[0].reg << 8;
11400 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
11401 }
11402 else
11403 {
c19d1205
ZW
11404 inst.instruction = THUMB_OP16 (inst.instruction);
11405 inst.instruction |= inst.operands[0].reg;
11406 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
11407 }
11408 }
11409 else
11410 {
c19d1205
ZW
11411 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
11412 BAD_HIREG);
11413 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11414
11415 inst.instruction = THUMB_OP16 (inst.instruction);
11416 inst.instruction |= inst.operands[0].reg;
11417 inst.instruction |= inst.operands[1].reg << 3;
11418 }
11419}
11420
1c444d06
JM
11421static void
11422do_t_orn (void)
11423{
11424 unsigned Rd, Rn;
11425
11426 Rd = inst.operands[0].reg;
11427 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
11428
fdfde340
JM
11429 reject_bad_reg (Rd);
11430 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
11431 reject_bad_reg (Rn);
11432
1c444d06
JM
11433 inst.instruction |= Rd << 8;
11434 inst.instruction |= Rn << 16;
11435
11436 if (!inst.operands[2].isreg)
11437 {
11438 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11439 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11440 }
11441 else
11442 {
11443 unsigned Rm;
11444
11445 Rm = inst.operands[2].reg;
fdfde340 11446 reject_bad_reg (Rm);
1c444d06
JM
11447
11448 constraint (inst.operands[2].shifted
11449 && inst.operands[2].immisreg,
11450 _("shift must be constant"));
11451 encode_thumb32_shifted_operand (2);
11452 }
11453}
11454
c19d1205
ZW
11455static void
11456do_t_pkhbt (void)
11457{
fdfde340
JM
11458 unsigned Rd, Rn, Rm;
11459
11460 Rd = inst.operands[0].reg;
11461 Rn = inst.operands[1].reg;
11462 Rm = inst.operands[2].reg;
11463
11464 reject_bad_reg (Rd);
11465 reject_bad_reg (Rn);
11466 reject_bad_reg (Rm);
11467
11468 inst.instruction |= Rd << 8;
11469 inst.instruction |= Rn << 16;
11470 inst.instruction |= Rm;
c19d1205
ZW
11471 if (inst.operands[3].present)
11472 {
11473 unsigned int val = inst.reloc.exp.X_add_number;
11474 constraint (inst.reloc.exp.X_op != O_constant,
11475 _("expression too complex"));
11476 inst.instruction |= (val & 0x1c) << 10;
11477 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 11478 }
c19d1205 11479}
b05fe5cf 11480
c19d1205
ZW
11481static void
11482do_t_pkhtb (void)
11483{
11484 if (!inst.operands[3].present)
1ef52f49
NC
11485 {
11486 unsigned Rtmp;
11487
11488 inst.instruction &= ~0x00000020;
11489
11490 /* PR 10168. Swap the Rm and Rn registers. */
11491 Rtmp = inst.operands[1].reg;
11492 inst.operands[1].reg = inst.operands[2].reg;
11493 inst.operands[2].reg = Rtmp;
11494 }
c19d1205 11495 do_t_pkhbt ();
b05fe5cf
ZW
11496}
11497
c19d1205
ZW
11498static void
11499do_t_pld (void)
11500{
fdfde340
JM
11501 if (inst.operands[0].immisreg)
11502 reject_bad_reg (inst.operands[0].imm);
11503
c19d1205
ZW
11504 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
11505}
b05fe5cf 11506
c19d1205
ZW
11507static void
11508do_t_push_pop (void)
b99bd4ef 11509{
e9f89963 11510 unsigned mask;
5f4273c7 11511
c19d1205
ZW
11512 constraint (inst.operands[0].writeback,
11513 _("push/pop do not support {reglist}^"));
11514 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
11515 _("expression too complex"));
b99bd4ef 11516
e9f89963
PB
11517 mask = inst.operands[0].imm;
11518 if ((mask & ~0xff) == 0)
3c707909 11519 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
c19d1205 11520 else if ((inst.instruction == T_MNEM_push
e9f89963 11521 && (mask & ~0xff) == 1 << REG_LR)
c19d1205 11522 || (inst.instruction == T_MNEM_pop
e9f89963 11523 && (mask & ~0xff) == 1 << REG_PC))
b99bd4ef 11524 {
c19d1205
ZW
11525 inst.instruction = THUMB_OP16 (inst.instruction);
11526 inst.instruction |= THUMB_PP_PC_LR;
3c707909 11527 inst.instruction |= mask & 0xff;
c19d1205
ZW
11528 }
11529 else if (unified_syntax)
11530 {
3c707909 11531 inst.instruction = THUMB_OP32 (inst.instruction);
5f4273c7 11532 encode_thumb2_ldmstm (13, mask, TRUE);
c19d1205
ZW
11533 }
11534 else
11535 {
11536 inst.error = _("invalid register list to push/pop instruction");
11537 return;
11538 }
c19d1205 11539}
b99bd4ef 11540
c19d1205
ZW
11541static void
11542do_t_rbit (void)
11543{
fdfde340
JM
11544 unsigned Rd, Rm;
11545
11546 Rd = inst.operands[0].reg;
11547 Rm = inst.operands[1].reg;
11548
11549 reject_bad_reg (Rd);
11550 reject_bad_reg (Rm);
11551
11552 inst.instruction |= Rd << 8;
11553 inst.instruction |= Rm << 16;
11554 inst.instruction |= Rm;
c19d1205 11555}
b99bd4ef 11556
c19d1205
ZW
11557static void
11558do_t_rev (void)
11559{
fdfde340
JM
11560 unsigned Rd, Rm;
11561
11562 Rd = inst.operands[0].reg;
11563 Rm = inst.operands[1].reg;
11564
11565 reject_bad_reg (Rd);
11566 reject_bad_reg (Rm);
11567
11568 if (Rd <= 7 && Rm <= 7
c19d1205
ZW
11569 && inst.size_req != 4)
11570 {
11571 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11572 inst.instruction |= Rd;
11573 inst.instruction |= Rm << 3;
c19d1205
ZW
11574 }
11575 else if (unified_syntax)
11576 {
11577 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11578 inst.instruction |= Rd << 8;
11579 inst.instruction |= Rm << 16;
11580 inst.instruction |= Rm;
c19d1205
ZW
11581 }
11582 else
11583 inst.error = BAD_HIREG;
11584}
b99bd4ef 11585
1c444d06
JM
11586static void
11587do_t_rrx (void)
11588{
11589 unsigned Rd, Rm;
11590
11591 Rd = inst.operands[0].reg;
11592 Rm = inst.operands[1].reg;
11593
fdfde340
JM
11594 reject_bad_reg (Rd);
11595 reject_bad_reg (Rm);
c921be7d 11596
1c444d06
JM
11597 inst.instruction |= Rd << 8;
11598 inst.instruction |= Rm;
11599}
11600
c19d1205
ZW
11601static void
11602do_t_rsb (void)
11603{
fdfde340 11604 unsigned Rd, Rs;
b99bd4ef 11605
c19d1205
ZW
11606 Rd = inst.operands[0].reg;
11607 Rs = (inst.operands[1].present
11608 ? inst.operands[1].reg /* Rd, Rs, foo */
11609 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 11610
fdfde340
JM
11611 reject_bad_reg (Rd);
11612 reject_bad_reg (Rs);
11613 if (inst.operands[2].isreg)
11614 reject_bad_reg (inst.operands[2].reg);
11615
c19d1205
ZW
11616 inst.instruction |= Rd << 8;
11617 inst.instruction |= Rs << 16;
11618 if (!inst.operands[2].isreg)
11619 {
026d3abb
PB
11620 bfd_boolean narrow;
11621
11622 if ((inst.instruction & 0x00100000) != 0)
e07e6e58 11623 narrow = !in_it_block ();
026d3abb 11624 else
e07e6e58 11625 narrow = in_it_block ();
026d3abb
PB
11626
11627 if (Rd > 7 || Rs > 7)
11628 narrow = FALSE;
11629
11630 if (inst.size_req == 4 || !unified_syntax)
11631 narrow = FALSE;
11632
11633 if (inst.reloc.exp.X_op != O_constant
11634 || inst.reloc.exp.X_add_number != 0)
11635 narrow = FALSE;
11636
11637 /* Turn rsb #0 into 16-bit neg. We should probably do this via
11638 relaxation, but it doesn't seem worth the hassle. */
11639 if (narrow)
11640 {
11641 inst.reloc.type = BFD_RELOC_UNUSED;
11642 inst.instruction = THUMB_OP16 (T_MNEM_negs);
11643 inst.instruction |= Rs << 3;
11644 inst.instruction |= Rd;
11645 }
11646 else
11647 {
11648 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11649 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11650 }
c19d1205
ZW
11651 }
11652 else
11653 encode_thumb32_shifted_operand (2);
11654}
b99bd4ef 11655
c19d1205
ZW
11656static void
11657do_t_setend (void)
11658{
e07e6e58 11659 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
11660 if (inst.operands[0].imm)
11661 inst.instruction |= 0x8;
11662}
b99bd4ef 11663
c19d1205
ZW
11664static void
11665do_t_shift (void)
11666{
11667 if (!inst.operands[1].present)
11668 inst.operands[1].reg = inst.operands[0].reg;
11669
11670 if (unified_syntax)
11671 {
3d388997
PB
11672 bfd_boolean narrow;
11673 int shift_kind;
11674
11675 switch (inst.instruction)
11676 {
11677 case T_MNEM_asr:
11678 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
11679 case T_MNEM_lsl:
11680 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
11681 case T_MNEM_lsr:
11682 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
11683 case T_MNEM_ror:
11684 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
11685 default: abort ();
11686 }
11687
11688 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11689 narrow = !in_it_block ();
3d388997 11690 else
e07e6e58 11691 narrow = in_it_block ();
3d388997
PB
11692 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11693 narrow = FALSE;
11694 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
11695 narrow = FALSE;
11696 if (inst.operands[2].isreg
11697 && (inst.operands[1].reg != inst.operands[0].reg
11698 || inst.operands[2].reg > 7))
11699 narrow = FALSE;
11700 if (inst.size_req == 4)
11701 narrow = FALSE;
11702
fdfde340
JM
11703 reject_bad_reg (inst.operands[0].reg);
11704 reject_bad_reg (inst.operands[1].reg);
c921be7d 11705
3d388997 11706 if (!narrow)
c19d1205
ZW
11707 {
11708 if (inst.operands[2].isreg)
b99bd4ef 11709 {
fdfde340 11710 reject_bad_reg (inst.operands[2].reg);
c19d1205
ZW
11711 inst.instruction = THUMB_OP32 (inst.instruction);
11712 inst.instruction |= inst.operands[0].reg << 8;
11713 inst.instruction |= inst.operands[1].reg << 16;
11714 inst.instruction |= inst.operands[2].reg;
94342ec3
NC
11715
11716 /* PR 12854: Error on extraneous shifts. */
11717 constraint (inst.operands[2].shifted,
11718 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11719 }
11720 else
11721 {
11722 inst.operands[1].shifted = 1;
3d388997 11723 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
11724 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
11725 ? T_MNEM_movs : T_MNEM_mov);
11726 inst.instruction |= inst.operands[0].reg << 8;
11727 encode_thumb32_shifted_operand (1);
11728 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
11729 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
11730 }
11731 }
11732 else
11733 {
c19d1205 11734 if (inst.operands[2].isreg)
b99bd4ef 11735 {
3d388997 11736 switch (shift_kind)
b99bd4ef 11737 {
3d388997
PB
11738 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
11739 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
11740 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
11741 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 11742 default: abort ();
b99bd4ef 11743 }
5f4273c7 11744
c19d1205
ZW
11745 inst.instruction |= inst.operands[0].reg;
11746 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11747
11748 /* PR 12854: Error on extraneous shifts. */
11749 constraint (inst.operands[2].shifted,
11750 _("extraneous shift as part of operand to shift insn"));
b99bd4ef
NC
11751 }
11752 else
11753 {
3d388997 11754 switch (shift_kind)
b99bd4ef 11755 {
3d388997
PB
11756 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11757 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11758 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 11759 default: abort ();
b99bd4ef 11760 }
c19d1205
ZW
11761 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11762 inst.instruction |= inst.operands[0].reg;
11763 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
11764 }
11765 }
c19d1205
ZW
11766 }
11767 else
11768 {
11769 constraint (inst.operands[0].reg > 7
11770 || inst.operands[1].reg > 7, BAD_HIREG);
11771 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 11772
c19d1205
ZW
11773 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
11774 {
11775 constraint (inst.operands[2].reg > 7, BAD_HIREG);
11776 constraint (inst.operands[0].reg != inst.operands[1].reg,
11777 _("source1 and dest must be same register"));
b99bd4ef 11778
c19d1205
ZW
11779 switch (inst.instruction)
11780 {
11781 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
11782 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
11783 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
11784 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
11785 default: abort ();
11786 }
5f4273c7 11787
c19d1205
ZW
11788 inst.instruction |= inst.operands[0].reg;
11789 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11790
11791 /* PR 12854: Error on extraneous shifts. */
11792 constraint (inst.operands[2].shifted,
11793 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11794 }
11795 else
b99bd4ef 11796 {
c19d1205
ZW
11797 switch (inst.instruction)
11798 {
11799 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
11800 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
11801 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
11802 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
11803 default: abort ();
11804 }
11805 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11806 inst.instruction |= inst.operands[0].reg;
11807 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
11808 }
11809 }
b99bd4ef
NC
11810}
11811
11812static void
c19d1205 11813do_t_simd (void)
b99bd4ef 11814{
fdfde340
JM
11815 unsigned Rd, Rn, Rm;
11816
11817 Rd = inst.operands[0].reg;
11818 Rn = inst.operands[1].reg;
11819 Rm = inst.operands[2].reg;
11820
11821 reject_bad_reg (Rd);
11822 reject_bad_reg (Rn);
11823 reject_bad_reg (Rm);
11824
11825 inst.instruction |= Rd << 8;
11826 inst.instruction |= Rn << 16;
11827 inst.instruction |= Rm;
c19d1205 11828}
b99bd4ef 11829
03ee1b7f
NC
11830static void
11831do_t_simd2 (void)
11832{
11833 unsigned Rd, Rn, Rm;
11834
11835 Rd = inst.operands[0].reg;
11836 Rm = inst.operands[1].reg;
11837 Rn = inst.operands[2].reg;
11838
11839 reject_bad_reg (Rd);
11840 reject_bad_reg (Rn);
11841 reject_bad_reg (Rm);
11842
11843 inst.instruction |= Rd << 8;
11844 inst.instruction |= Rn << 16;
11845 inst.instruction |= Rm;
11846}
11847
c19d1205 11848static void
3eb17e6b 11849do_t_smc (void)
c19d1205
ZW
11850{
11851 unsigned int value = inst.reloc.exp.X_add_number;
f4c65163
MGD
11852 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
11853 _("SMC is not permitted on this architecture"));
c19d1205
ZW
11854 constraint (inst.reloc.exp.X_op != O_constant,
11855 _("expression too complex"));
11856 inst.reloc.type = BFD_RELOC_UNUSED;
11857 inst.instruction |= (value & 0xf000) >> 12;
11858 inst.instruction |= (value & 0x0ff0);
11859 inst.instruction |= (value & 0x000f) << 16;
11860}
b99bd4ef 11861
90ec0d68
MGD
11862static void
11863do_t_hvc (void)
11864{
11865 unsigned int value = inst.reloc.exp.X_add_number;
11866
11867 inst.reloc.type = BFD_RELOC_UNUSED;
11868 inst.instruction |= (value & 0x0fff);
11869 inst.instruction |= (value & 0xf000) << 4;
11870}
11871
c19d1205 11872static void
3a21c15a 11873do_t_ssat_usat (int bias)
c19d1205 11874{
fdfde340
JM
11875 unsigned Rd, Rn;
11876
11877 Rd = inst.operands[0].reg;
11878 Rn = inst.operands[2].reg;
11879
11880 reject_bad_reg (Rd);
11881 reject_bad_reg (Rn);
11882
11883 inst.instruction |= Rd << 8;
3a21c15a 11884 inst.instruction |= inst.operands[1].imm - bias;
fdfde340 11885 inst.instruction |= Rn << 16;
b99bd4ef 11886
c19d1205 11887 if (inst.operands[3].present)
b99bd4ef 11888 {
3a21c15a
NC
11889 offsetT shift_amount = inst.reloc.exp.X_add_number;
11890
11891 inst.reloc.type = BFD_RELOC_UNUSED;
11892
c19d1205
ZW
11893 constraint (inst.reloc.exp.X_op != O_constant,
11894 _("expression too complex"));
b99bd4ef 11895
3a21c15a 11896 if (shift_amount != 0)
6189168b 11897 {
3a21c15a
NC
11898 constraint (shift_amount > 31,
11899 _("shift expression is too large"));
11900
c19d1205 11901 if (inst.operands[3].shift_kind == SHIFT_ASR)
3a21c15a
NC
11902 inst.instruction |= 0x00200000; /* sh bit. */
11903
11904 inst.instruction |= (shift_amount & 0x1c) << 10;
11905 inst.instruction |= (shift_amount & 0x03) << 6;
6189168b
NC
11906 }
11907 }
b99bd4ef 11908}
c921be7d 11909
3a21c15a
NC
11910static void
11911do_t_ssat (void)
11912{
11913 do_t_ssat_usat (1);
11914}
b99bd4ef 11915
0dd132b6 11916static void
c19d1205 11917do_t_ssat16 (void)
0dd132b6 11918{
fdfde340
JM
11919 unsigned Rd, Rn;
11920
11921 Rd = inst.operands[0].reg;
11922 Rn = inst.operands[2].reg;
11923
11924 reject_bad_reg (Rd);
11925 reject_bad_reg (Rn);
11926
11927 inst.instruction |= Rd << 8;
c19d1205 11928 inst.instruction |= inst.operands[1].imm - 1;
fdfde340 11929 inst.instruction |= Rn << 16;
c19d1205 11930}
0dd132b6 11931
c19d1205
ZW
11932static void
11933do_t_strex (void)
11934{
11935 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
11936 || inst.operands[2].postind || inst.operands[2].writeback
11937 || inst.operands[2].immisreg || inst.operands[2].shifted
11938 || inst.operands[2].negative,
01cfc07f 11939 BAD_ADDR_MODE);
0dd132b6 11940
5be8be5d
DG
11941 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
11942
c19d1205
ZW
11943 inst.instruction |= inst.operands[0].reg << 8;
11944 inst.instruction |= inst.operands[1].reg << 12;
11945 inst.instruction |= inst.operands[2].reg << 16;
11946 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
11947}
11948
b99bd4ef 11949static void
c19d1205 11950do_t_strexd (void)
b99bd4ef 11951{
c19d1205
ZW
11952 if (!inst.operands[2].present)
11953 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 11954
c19d1205
ZW
11955 constraint (inst.operands[0].reg == inst.operands[1].reg
11956 || inst.operands[0].reg == inst.operands[2].reg
f8a8e9d6 11957 || inst.operands[0].reg == inst.operands[3].reg,
c19d1205 11958 BAD_OVERLAP);
b99bd4ef 11959
c19d1205
ZW
11960 inst.instruction |= inst.operands[0].reg;
11961 inst.instruction |= inst.operands[1].reg << 12;
11962 inst.instruction |= inst.operands[2].reg << 8;
11963 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
11964}
11965
11966static void
c19d1205 11967do_t_sxtah (void)
b99bd4ef 11968{
fdfde340
JM
11969 unsigned Rd, Rn, Rm;
11970
11971 Rd = inst.operands[0].reg;
11972 Rn = inst.operands[1].reg;
11973 Rm = inst.operands[2].reg;
11974
11975 reject_bad_reg (Rd);
11976 reject_bad_reg (Rn);
11977 reject_bad_reg (Rm);
11978
11979 inst.instruction |= Rd << 8;
11980 inst.instruction |= Rn << 16;
11981 inst.instruction |= Rm;
c19d1205
ZW
11982 inst.instruction |= inst.operands[3].imm << 4;
11983}
b99bd4ef 11984
c19d1205
ZW
11985static void
11986do_t_sxth (void)
11987{
fdfde340
JM
11988 unsigned Rd, Rm;
11989
11990 Rd = inst.operands[0].reg;
11991 Rm = inst.operands[1].reg;
11992
11993 reject_bad_reg (Rd);
11994 reject_bad_reg (Rm);
c921be7d
NC
11995
11996 if (inst.instruction <= 0xffff
11997 && inst.size_req != 4
fdfde340 11998 && Rd <= 7 && Rm <= 7
c19d1205 11999 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 12000 {
c19d1205 12001 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12002 inst.instruction |= Rd;
12003 inst.instruction |= Rm << 3;
b99bd4ef 12004 }
c19d1205 12005 else if (unified_syntax)
b99bd4ef 12006 {
c19d1205
ZW
12007 if (inst.instruction <= 0xffff)
12008 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12009 inst.instruction |= Rd << 8;
12010 inst.instruction |= Rm;
c19d1205 12011 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 12012 }
c19d1205 12013 else
b99bd4ef 12014 {
c19d1205
ZW
12015 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
12016 _("Thumb encoding does not support rotation"));
12017 constraint (1, BAD_HIREG);
b99bd4ef 12018 }
c19d1205 12019}
b99bd4ef 12020
c19d1205
ZW
12021static void
12022do_t_swi (void)
12023{
b2a5fbdc
MGD
12024 /* We have to do the following check manually as ARM_EXT_OS only applies
12025 to ARM_EXT_V6M. */
12026 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6m))
12027 {
ac7f631b
NC
12028 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_os)
12029 /* This only applies to the v6m howver, not later architectures. */
12030 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7))
b2a5fbdc
MGD
12031 as_bad (_("SVC is not permitted on this architecture"));
12032 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, arm_ext_os);
12033 }
12034
c19d1205
ZW
12035 inst.reloc.type = BFD_RELOC_ARM_SWI;
12036}
b99bd4ef 12037
92e90b6e
PB
12038static void
12039do_t_tb (void)
12040{
fdfde340 12041 unsigned Rn, Rm;
92e90b6e
PB
12042 int half;
12043
12044 half = (inst.instruction & 0x10) != 0;
e07e6e58 12045 set_it_insn_type_last ();
dfa9f0d5
PB
12046 constraint (inst.operands[0].immisreg,
12047 _("instruction requires register index"));
fdfde340
JM
12048
12049 Rn = inst.operands[0].reg;
12050 Rm = inst.operands[0].imm;
c921be7d 12051
fdfde340
JM
12052 constraint (Rn == REG_SP, BAD_SP);
12053 reject_bad_reg (Rm);
12054
92e90b6e
PB
12055 constraint (!half && inst.operands[0].shifted,
12056 _("instruction does not allow shifted index"));
fdfde340 12057 inst.instruction |= (Rn << 16) | Rm;
92e90b6e
PB
12058}
12059
c19d1205
ZW
12060static void
12061do_t_usat (void)
12062{
3a21c15a 12063 do_t_ssat_usat (0);
b99bd4ef
NC
12064}
12065
12066static void
c19d1205 12067do_t_usat16 (void)
b99bd4ef 12068{
fdfde340
JM
12069 unsigned Rd, Rn;
12070
12071 Rd = inst.operands[0].reg;
12072 Rn = inst.operands[2].reg;
12073
12074 reject_bad_reg (Rd);
12075 reject_bad_reg (Rn);
12076
12077 inst.instruction |= Rd << 8;
c19d1205 12078 inst.instruction |= inst.operands[1].imm;
fdfde340 12079 inst.instruction |= Rn << 16;
b99bd4ef 12080}
c19d1205 12081
5287ad62 12082/* Neon instruction encoder helpers. */
5f4273c7 12083
5287ad62 12084/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 12085
5287ad62
JB
12086/* An "invalid" code for the following tables. */
12087#define N_INV -1u
12088
12089struct neon_tab_entry
b99bd4ef 12090{
5287ad62
JB
12091 unsigned integer;
12092 unsigned float_or_poly;
12093 unsigned scalar_or_imm;
12094};
5f4273c7 12095
5287ad62
JB
12096/* Map overloaded Neon opcodes to their respective encodings. */
12097#define NEON_ENC_TAB \
12098 X(vabd, 0x0000700, 0x1200d00, N_INV), \
12099 X(vmax, 0x0000600, 0x0000f00, N_INV), \
12100 X(vmin, 0x0000610, 0x0200f00, N_INV), \
12101 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
12102 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
12103 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
12104 X(vadd, 0x0000800, 0x0000d00, N_INV), \
12105 X(vsub, 0x1000800, 0x0200d00, N_INV), \
12106 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
12107 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
12108 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
12109 /* Register variants of the following two instructions are encoded as
e07e6e58 12110 vcge / vcgt with the operands reversed. */ \
92559b5b
PB
12111 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
12112 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
62f3b8c8
PB
12113 X(vfma, N_INV, 0x0000c10, N_INV), \
12114 X(vfms, N_INV, 0x0200c10, N_INV), \
5287ad62
JB
12115 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
12116 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
12117 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
12118 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
12119 X(vmlal, 0x0800800, N_INV, 0x0800240), \
12120 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
12121 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
12122 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
12123 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
12124 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
12125 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
12126 X(vshl, 0x0000400, N_INV, 0x0800510), \
12127 X(vqshl, 0x0000410, N_INV, 0x0800710), \
12128 X(vand, 0x0000110, N_INV, 0x0800030), \
12129 X(vbic, 0x0100110, N_INV, 0x0800030), \
12130 X(veor, 0x1000110, N_INV, N_INV), \
12131 X(vorn, 0x0300110, N_INV, 0x0800010), \
12132 X(vorr, 0x0200110, N_INV, 0x0800010), \
12133 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
12134 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
12135 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
12136 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
12137 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
12138 X(vst1, 0x0000000, 0x0800000, N_INV), \
12139 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
12140 X(vst2, 0x0000100, 0x0800100, N_INV), \
12141 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
12142 X(vst3, 0x0000200, 0x0800200, N_INV), \
12143 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
12144 X(vst4, 0x0000300, 0x0800300, N_INV), \
12145 X(vmovn, 0x1b20200, N_INV, N_INV), \
12146 X(vtrn, 0x1b20080, N_INV, N_INV), \
12147 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
12148 X(vqmovun, 0x1b20240, N_INV, N_INV), \
12149 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
e6655fda
PB
12150 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
12151 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
62f3b8c8
PB
12152 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
12153 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
037e8744
JB
12154 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
12155 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
12156 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
12157 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV)
5287ad62
JB
12158
12159enum neon_opc
12160{
12161#define X(OPC,I,F,S) N_MNEM_##OPC
12162NEON_ENC_TAB
12163#undef X
12164};
b99bd4ef 12165
5287ad62
JB
12166static const struct neon_tab_entry neon_enc_tab[] =
12167{
12168#define X(OPC,I,F,S) { (I), (F), (S) }
12169NEON_ENC_TAB
12170#undef X
12171};
b99bd4ef 12172
88714cb8
DG
12173/* Do not use these macros; instead, use NEON_ENCODE defined below. */
12174#define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12175#define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12176#define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12177#define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12178#define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12179#define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12180#define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12181#define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12182#define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12183#define NEON_ENC_SINGLE_(X) \
037e8744 12184 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
88714cb8 12185#define NEON_ENC_DOUBLE_(X) \
037e8744 12186 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
5287ad62 12187
88714cb8
DG
12188#define NEON_ENCODE(type, inst) \
12189 do \
12190 { \
12191 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
12192 inst.is_neon = 1; \
12193 } \
12194 while (0)
12195
12196#define check_neon_suffixes \
12197 do \
12198 { \
12199 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
12200 { \
12201 as_bad (_("invalid neon suffix for non neon instruction")); \
12202 return; \
12203 } \
12204 } \
12205 while (0)
12206
037e8744
JB
12207/* Define shapes for instruction operands. The following mnemonic characters
12208 are used in this table:
5287ad62 12209
037e8744 12210 F - VFP S<n> register
5287ad62
JB
12211 D - Neon D<n> register
12212 Q - Neon Q<n> register
12213 I - Immediate
12214 S - Scalar
12215 R - ARM register
12216 L - D<n> register list
5f4273c7 12217
037e8744
JB
12218 This table is used to generate various data:
12219 - enumerations of the form NS_DDR to be used as arguments to
12220 neon_select_shape.
12221 - a table classifying shapes into single, double, quad, mixed.
5f4273c7 12222 - a table used to drive neon_select_shape. */
b99bd4ef 12223
037e8744
JB
12224#define NEON_SHAPE_DEF \
12225 X(3, (D, D, D), DOUBLE), \
12226 X(3, (Q, Q, Q), QUAD), \
12227 X(3, (D, D, I), DOUBLE), \
12228 X(3, (Q, Q, I), QUAD), \
12229 X(3, (D, D, S), DOUBLE), \
12230 X(3, (Q, Q, S), QUAD), \
12231 X(2, (D, D), DOUBLE), \
12232 X(2, (Q, Q), QUAD), \
12233 X(2, (D, S), DOUBLE), \
12234 X(2, (Q, S), QUAD), \
12235 X(2, (D, R), DOUBLE), \
12236 X(2, (Q, R), QUAD), \
12237 X(2, (D, I), DOUBLE), \
12238 X(2, (Q, I), QUAD), \
12239 X(3, (D, L, D), DOUBLE), \
12240 X(2, (D, Q), MIXED), \
12241 X(2, (Q, D), MIXED), \
12242 X(3, (D, Q, I), MIXED), \
12243 X(3, (Q, D, I), MIXED), \
12244 X(3, (Q, D, D), MIXED), \
12245 X(3, (D, Q, Q), MIXED), \
12246 X(3, (Q, Q, D), MIXED), \
12247 X(3, (Q, D, S), MIXED), \
12248 X(3, (D, Q, S), MIXED), \
12249 X(4, (D, D, D, I), DOUBLE), \
12250 X(4, (Q, Q, Q, I), QUAD), \
12251 X(2, (F, F), SINGLE), \
12252 X(3, (F, F, F), SINGLE), \
12253 X(2, (F, I), SINGLE), \
12254 X(2, (F, D), MIXED), \
12255 X(2, (D, F), MIXED), \
12256 X(3, (F, F, I), MIXED), \
12257 X(4, (R, R, F, F), SINGLE), \
12258 X(4, (F, F, R, R), SINGLE), \
12259 X(3, (D, R, R), DOUBLE), \
12260 X(3, (R, R, D), DOUBLE), \
12261 X(2, (S, R), SINGLE), \
12262 X(2, (R, S), SINGLE), \
12263 X(2, (F, R), SINGLE), \
12264 X(2, (R, F), SINGLE)
12265
12266#define S2(A,B) NS_##A##B
12267#define S3(A,B,C) NS_##A##B##C
12268#define S4(A,B,C,D) NS_##A##B##C##D
12269
12270#define X(N, L, C) S##N L
12271
5287ad62
JB
12272enum neon_shape
12273{
037e8744
JB
12274 NEON_SHAPE_DEF,
12275 NS_NULL
5287ad62 12276};
b99bd4ef 12277
037e8744
JB
12278#undef X
12279#undef S2
12280#undef S3
12281#undef S4
12282
12283enum neon_shape_class
12284{
12285 SC_SINGLE,
12286 SC_DOUBLE,
12287 SC_QUAD,
12288 SC_MIXED
12289};
12290
12291#define X(N, L, C) SC_##C
12292
12293static enum neon_shape_class neon_shape_class[] =
12294{
12295 NEON_SHAPE_DEF
12296};
12297
12298#undef X
12299
12300enum neon_shape_el
12301{
12302 SE_F,
12303 SE_D,
12304 SE_Q,
12305 SE_I,
12306 SE_S,
12307 SE_R,
12308 SE_L
12309};
12310
12311/* Register widths of above. */
12312static unsigned neon_shape_el_size[] =
12313{
12314 32,
12315 64,
12316 128,
12317 0,
12318 32,
12319 32,
12320 0
12321};
12322
12323struct neon_shape_info
12324{
12325 unsigned els;
12326 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
12327};
12328
12329#define S2(A,B) { SE_##A, SE_##B }
12330#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
12331#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
12332
12333#define X(N, L, C) { N, S##N L }
12334
12335static struct neon_shape_info neon_shape_tab[] =
12336{
12337 NEON_SHAPE_DEF
12338};
12339
12340#undef X
12341#undef S2
12342#undef S3
12343#undef S4
12344
5287ad62
JB
12345/* Bit masks used in type checking given instructions.
12346 'N_EQK' means the type must be the same as (or based on in some way) the key
12347 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
12348 set, various other bits can be set as well in order to modify the meaning of
12349 the type constraint. */
12350
12351enum neon_type_mask
12352{
8e79c3df
CM
12353 N_S8 = 0x0000001,
12354 N_S16 = 0x0000002,
12355 N_S32 = 0x0000004,
12356 N_S64 = 0x0000008,
12357 N_U8 = 0x0000010,
12358 N_U16 = 0x0000020,
12359 N_U32 = 0x0000040,
12360 N_U64 = 0x0000080,
12361 N_I8 = 0x0000100,
12362 N_I16 = 0x0000200,
12363 N_I32 = 0x0000400,
12364 N_I64 = 0x0000800,
12365 N_8 = 0x0001000,
12366 N_16 = 0x0002000,
12367 N_32 = 0x0004000,
12368 N_64 = 0x0008000,
12369 N_P8 = 0x0010000,
12370 N_P16 = 0x0020000,
12371 N_F16 = 0x0040000,
12372 N_F32 = 0x0080000,
12373 N_F64 = 0x0100000,
c921be7d
NC
12374 N_KEY = 0x1000000, /* Key element (main type specifier). */
12375 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
8e79c3df 12376 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
c921be7d
NC
12377 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
12378 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
12379 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
12380 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
12381 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
12382 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
12383 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
5287ad62 12384 N_UTYP = 0,
037e8744 12385 N_MAX_NONSPECIAL = N_F64
5287ad62
JB
12386};
12387
dcbf9037
JB
12388#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
12389
5287ad62
JB
12390#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
12391#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
12392#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
12393#define N_SUF_32 (N_SU_32 | N_F32)
12394#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
12395#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F32)
12396
12397/* Pass this as the first type argument to neon_check_type to ignore types
12398 altogether. */
12399#define N_IGNORE_TYPE (N_KEY | N_EQK)
12400
037e8744
JB
12401/* Select a "shape" for the current instruction (describing register types or
12402 sizes) from a list of alternatives. Return NS_NULL if the current instruction
12403 doesn't fit. For non-polymorphic shapes, checking is usually done as a
12404 function of operand parsing, so this function doesn't need to be called.
12405 Shapes should be listed in order of decreasing length. */
5287ad62
JB
12406
12407static enum neon_shape
037e8744 12408neon_select_shape (enum neon_shape shape, ...)
5287ad62 12409{
037e8744
JB
12410 va_list ap;
12411 enum neon_shape first_shape = shape;
5287ad62
JB
12412
12413 /* Fix missing optional operands. FIXME: we don't know at this point how
12414 many arguments we should have, so this makes the assumption that we have
12415 > 1. This is true of all current Neon opcodes, I think, but may not be
12416 true in the future. */
12417 if (!inst.operands[1].present)
12418 inst.operands[1] = inst.operands[0];
12419
037e8744 12420 va_start (ap, shape);
5f4273c7 12421
21d799b5 12422 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
037e8744
JB
12423 {
12424 unsigned j;
12425 int matches = 1;
12426
12427 for (j = 0; j < neon_shape_tab[shape].els; j++)
12428 {
12429 if (!inst.operands[j].present)
12430 {
12431 matches = 0;
12432 break;
12433 }
12434
12435 switch (neon_shape_tab[shape].el[j])
12436 {
12437 case SE_F:
12438 if (!(inst.operands[j].isreg
12439 && inst.operands[j].isvec
12440 && inst.operands[j].issingle
12441 && !inst.operands[j].isquad))
12442 matches = 0;
12443 break;
12444
12445 case SE_D:
12446 if (!(inst.operands[j].isreg
12447 && inst.operands[j].isvec
12448 && !inst.operands[j].isquad
12449 && !inst.operands[j].issingle))
12450 matches = 0;
12451 break;
12452
12453 case SE_R:
12454 if (!(inst.operands[j].isreg
12455 && !inst.operands[j].isvec))
12456 matches = 0;
12457 break;
12458
12459 case SE_Q:
12460 if (!(inst.operands[j].isreg
12461 && inst.operands[j].isvec
12462 && inst.operands[j].isquad
12463 && !inst.operands[j].issingle))
12464 matches = 0;
12465 break;
12466
12467 case SE_I:
12468 if (!(!inst.operands[j].isreg
12469 && !inst.operands[j].isscalar))
12470 matches = 0;
12471 break;
12472
12473 case SE_S:
12474 if (!(!inst.operands[j].isreg
12475 && inst.operands[j].isscalar))
12476 matches = 0;
12477 break;
12478
12479 case SE_L:
12480 break;
12481 }
3fde54a2
JZ
12482 if (!matches)
12483 break;
037e8744 12484 }
ad6cec43
MGD
12485 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
12486 /* We've matched all the entries in the shape table, and we don't
12487 have any left over operands which have not been matched. */
5287ad62 12488 break;
037e8744 12489 }
5f4273c7 12490
037e8744 12491 va_end (ap);
5287ad62 12492
037e8744
JB
12493 if (shape == NS_NULL && first_shape != NS_NULL)
12494 first_error (_("invalid instruction shape"));
5287ad62 12495
037e8744
JB
12496 return shape;
12497}
5287ad62 12498
037e8744
JB
12499/* True if SHAPE is predominantly a quadword operation (most of the time, this
12500 means the Q bit should be set). */
12501
12502static int
12503neon_quad (enum neon_shape shape)
12504{
12505 return neon_shape_class[shape] == SC_QUAD;
5287ad62 12506}
037e8744 12507
5287ad62
JB
12508static void
12509neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
12510 unsigned *g_size)
12511{
12512 /* Allow modification to be made to types which are constrained to be
12513 based on the key element, based on bits set alongside N_EQK. */
12514 if ((typebits & N_EQK) != 0)
12515 {
12516 if ((typebits & N_HLF) != 0)
12517 *g_size /= 2;
12518 else if ((typebits & N_DBL) != 0)
12519 *g_size *= 2;
12520 if ((typebits & N_SGN) != 0)
12521 *g_type = NT_signed;
12522 else if ((typebits & N_UNS) != 0)
12523 *g_type = NT_unsigned;
12524 else if ((typebits & N_INT) != 0)
12525 *g_type = NT_integer;
12526 else if ((typebits & N_FLT) != 0)
12527 *g_type = NT_float;
dcbf9037
JB
12528 else if ((typebits & N_SIZ) != 0)
12529 *g_type = NT_untyped;
5287ad62
JB
12530 }
12531}
5f4273c7 12532
5287ad62
JB
12533/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
12534 operand type, i.e. the single type specified in a Neon instruction when it
12535 is the only one given. */
12536
12537static struct neon_type_el
12538neon_type_promote (struct neon_type_el *key, unsigned thisarg)
12539{
12540 struct neon_type_el dest = *key;
5f4273c7 12541
9c2799c2 12542 gas_assert ((thisarg & N_EQK) != 0);
5f4273c7 12543
5287ad62
JB
12544 neon_modify_type_size (thisarg, &dest.type, &dest.size);
12545
12546 return dest;
12547}
12548
12549/* Convert Neon type and size into compact bitmask representation. */
12550
12551static enum neon_type_mask
12552type_chk_of_el_type (enum neon_el_type type, unsigned size)
12553{
12554 switch (type)
12555 {
12556 case NT_untyped:
12557 switch (size)
12558 {
12559 case 8: return N_8;
12560 case 16: return N_16;
12561 case 32: return N_32;
12562 case 64: return N_64;
12563 default: ;
12564 }
12565 break;
12566
12567 case NT_integer:
12568 switch (size)
12569 {
12570 case 8: return N_I8;
12571 case 16: return N_I16;
12572 case 32: return N_I32;
12573 case 64: return N_I64;
12574 default: ;
12575 }
12576 break;
12577
12578 case NT_float:
037e8744
JB
12579 switch (size)
12580 {
8e79c3df 12581 case 16: return N_F16;
037e8744
JB
12582 case 32: return N_F32;
12583 case 64: return N_F64;
12584 default: ;
12585 }
5287ad62
JB
12586 break;
12587
12588 case NT_poly:
12589 switch (size)
12590 {
12591 case 8: return N_P8;
12592 case 16: return N_P16;
12593 default: ;
12594 }
12595 break;
12596
12597 case NT_signed:
12598 switch (size)
12599 {
12600 case 8: return N_S8;
12601 case 16: return N_S16;
12602 case 32: return N_S32;
12603 case 64: return N_S64;
12604 default: ;
12605 }
12606 break;
12607
12608 case NT_unsigned:
12609 switch (size)
12610 {
12611 case 8: return N_U8;
12612 case 16: return N_U16;
12613 case 32: return N_U32;
12614 case 64: return N_U64;
12615 default: ;
12616 }
12617 break;
12618
12619 default: ;
12620 }
5f4273c7 12621
5287ad62
JB
12622 return N_UTYP;
12623}
12624
12625/* Convert compact Neon bitmask type representation to a type and size. Only
12626 handles the case where a single bit is set in the mask. */
12627
dcbf9037 12628static int
5287ad62
JB
12629el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
12630 enum neon_type_mask mask)
12631{
dcbf9037
JB
12632 if ((mask & N_EQK) != 0)
12633 return FAIL;
12634
5287ad62
JB
12635 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
12636 *size = 8;
dcbf9037 12637 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_P16)) != 0)
5287ad62 12638 *size = 16;
dcbf9037 12639 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 12640 *size = 32;
037e8744 12641 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64)) != 0)
5287ad62 12642 *size = 64;
dcbf9037
JB
12643 else
12644 return FAIL;
12645
5287ad62
JB
12646 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
12647 *type = NT_signed;
dcbf9037 12648 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 12649 *type = NT_unsigned;
dcbf9037 12650 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 12651 *type = NT_integer;
dcbf9037 12652 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 12653 *type = NT_untyped;
dcbf9037 12654 else if ((mask & (N_P8 | N_P16)) != 0)
5287ad62 12655 *type = NT_poly;
037e8744 12656 else if ((mask & (N_F32 | N_F64)) != 0)
5287ad62 12657 *type = NT_float;
dcbf9037
JB
12658 else
12659 return FAIL;
5f4273c7 12660
dcbf9037 12661 return SUCCESS;
5287ad62
JB
12662}
12663
12664/* Modify a bitmask of allowed types. This is only needed for type
12665 relaxation. */
12666
12667static unsigned
12668modify_types_allowed (unsigned allowed, unsigned mods)
12669{
12670 unsigned size;
12671 enum neon_el_type type;
12672 unsigned destmask;
12673 int i;
5f4273c7 12674
5287ad62 12675 destmask = 0;
5f4273c7 12676
5287ad62
JB
12677 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
12678 {
21d799b5
NC
12679 if (el_type_of_type_chk (&type, &size,
12680 (enum neon_type_mask) (allowed & i)) == SUCCESS)
dcbf9037
JB
12681 {
12682 neon_modify_type_size (mods, &type, &size);
12683 destmask |= type_chk_of_el_type (type, size);
12684 }
5287ad62 12685 }
5f4273c7 12686
5287ad62
JB
12687 return destmask;
12688}
12689
12690/* Check type and return type classification.
12691 The manual states (paraphrase): If one datatype is given, it indicates the
12692 type given in:
12693 - the second operand, if there is one
12694 - the operand, if there is no second operand
12695 - the result, if there are no operands.
12696 This isn't quite good enough though, so we use a concept of a "key" datatype
12697 which is set on a per-instruction basis, which is the one which matters when
12698 only one data type is written.
12699 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 12700 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
12701
12702static struct neon_type_el
12703neon_check_type (unsigned els, enum neon_shape ns, ...)
12704{
12705 va_list ap;
12706 unsigned i, pass, key_el = 0;
12707 unsigned types[NEON_MAX_TYPE_ELS];
12708 enum neon_el_type k_type = NT_invtype;
12709 unsigned k_size = -1u;
12710 struct neon_type_el badtype = {NT_invtype, -1};
12711 unsigned key_allowed = 0;
12712
12713 /* Optional registers in Neon instructions are always (not) in operand 1.
12714 Fill in the missing operand here, if it was omitted. */
12715 if (els > 1 && !inst.operands[1].present)
12716 inst.operands[1] = inst.operands[0];
12717
12718 /* Suck up all the varargs. */
12719 va_start (ap, ns);
12720 for (i = 0; i < els; i++)
12721 {
12722 unsigned thisarg = va_arg (ap, unsigned);
12723 if (thisarg == N_IGNORE_TYPE)
12724 {
12725 va_end (ap);
12726 return badtype;
12727 }
12728 types[i] = thisarg;
12729 if ((thisarg & N_KEY) != 0)
12730 key_el = i;
12731 }
12732 va_end (ap);
12733
dcbf9037
JB
12734 if (inst.vectype.elems > 0)
12735 for (i = 0; i < els; i++)
12736 if (inst.operands[i].vectype.type != NT_invtype)
12737 {
12738 first_error (_("types specified in both the mnemonic and operands"));
12739 return badtype;
12740 }
12741
5287ad62
JB
12742 /* Duplicate inst.vectype elements here as necessary.
12743 FIXME: No idea if this is exactly the same as the ARM assembler,
12744 particularly when an insn takes one register and one non-register
12745 operand. */
12746 if (inst.vectype.elems == 1 && els > 1)
12747 {
12748 unsigned j;
12749 inst.vectype.elems = els;
12750 inst.vectype.el[key_el] = inst.vectype.el[0];
12751 for (j = 0; j < els; j++)
dcbf9037
JB
12752 if (j != key_el)
12753 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12754 types[j]);
12755 }
12756 else if (inst.vectype.elems == 0 && els > 0)
12757 {
12758 unsigned j;
12759 /* No types were given after the mnemonic, so look for types specified
12760 after each operand. We allow some flexibility here; as long as the
12761 "key" operand has a type, we can infer the others. */
12762 for (j = 0; j < els; j++)
12763 if (inst.operands[j].vectype.type != NT_invtype)
12764 inst.vectype.el[j] = inst.operands[j].vectype;
12765
12766 if (inst.operands[key_el].vectype.type != NT_invtype)
5287ad62 12767 {
dcbf9037
JB
12768 for (j = 0; j < els; j++)
12769 if (inst.operands[j].vectype.type == NT_invtype)
12770 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12771 types[j]);
12772 }
12773 else
12774 {
12775 first_error (_("operand types can't be inferred"));
12776 return badtype;
5287ad62
JB
12777 }
12778 }
12779 else if (inst.vectype.elems != els)
12780 {
dcbf9037 12781 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
12782 return badtype;
12783 }
12784
12785 for (pass = 0; pass < 2; pass++)
12786 {
12787 for (i = 0; i < els; i++)
12788 {
12789 unsigned thisarg = types[i];
12790 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
12791 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
12792 enum neon_el_type g_type = inst.vectype.el[i].type;
12793 unsigned g_size = inst.vectype.el[i].size;
12794
12795 /* Decay more-specific signed & unsigned types to sign-insensitive
12796 integer types if sign-specific variants are unavailable. */
12797 if ((g_type == NT_signed || g_type == NT_unsigned)
12798 && (types_allowed & N_SU_ALL) == 0)
12799 g_type = NT_integer;
12800
12801 /* If only untyped args are allowed, decay any more specific types to
12802 them. Some instructions only care about signs for some element
12803 sizes, so handle that properly. */
12804 if ((g_size == 8 && (types_allowed & N_8) != 0)
12805 || (g_size == 16 && (types_allowed & N_16) != 0)
12806 || (g_size == 32 && (types_allowed & N_32) != 0)
12807 || (g_size == 64 && (types_allowed & N_64) != 0))
12808 g_type = NT_untyped;
12809
12810 if (pass == 0)
12811 {
12812 if ((thisarg & N_KEY) != 0)
12813 {
12814 k_type = g_type;
12815 k_size = g_size;
12816 key_allowed = thisarg & ~N_KEY;
12817 }
12818 }
12819 else
12820 {
037e8744
JB
12821 if ((thisarg & N_VFP) != 0)
12822 {
99b253c5
NC
12823 enum neon_shape_el regshape;
12824 unsigned regwidth, match;
12825
12826 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
12827 if (ns == NS_NULL)
12828 {
12829 first_error (_("invalid instruction shape"));
12830 return badtype;
12831 }
12832 regshape = neon_shape_tab[ns].el[i];
12833 regwidth = neon_shape_el_size[regshape];
037e8744
JB
12834
12835 /* In VFP mode, operands must match register widths. If we
12836 have a key operand, use its width, else use the width of
12837 the current operand. */
12838 if (k_size != -1u)
12839 match = k_size;
12840 else
12841 match = g_size;
12842
12843 if (regwidth != match)
12844 {
12845 first_error (_("operand size must match register width"));
12846 return badtype;
12847 }
12848 }
5f4273c7 12849
5287ad62
JB
12850 if ((thisarg & N_EQK) == 0)
12851 {
12852 unsigned given_type = type_chk_of_el_type (g_type, g_size);
12853
12854 if ((given_type & types_allowed) == 0)
12855 {
dcbf9037 12856 first_error (_("bad type in Neon instruction"));
5287ad62
JB
12857 return badtype;
12858 }
12859 }
12860 else
12861 {
12862 enum neon_el_type mod_k_type = k_type;
12863 unsigned mod_k_size = k_size;
12864 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
12865 if (g_type != mod_k_type || g_size != mod_k_size)
12866 {
dcbf9037 12867 first_error (_("inconsistent types in Neon instruction"));
5287ad62
JB
12868 return badtype;
12869 }
12870 }
12871 }
12872 }
12873 }
12874
12875 return inst.vectype.el[key_el];
12876}
12877
037e8744 12878/* Neon-style VFP instruction forwarding. */
5287ad62 12879
037e8744
JB
12880/* Thumb VFP instructions have 0xE in the condition field. */
12881
12882static void
12883do_vfp_cond_or_thumb (void)
5287ad62 12884{
88714cb8
DG
12885 inst.is_neon = 1;
12886
5287ad62 12887 if (thumb_mode)
037e8744 12888 inst.instruction |= 0xe0000000;
5287ad62 12889 else
037e8744 12890 inst.instruction |= inst.cond << 28;
5287ad62
JB
12891}
12892
037e8744
JB
12893/* Look up and encode a simple mnemonic, for use as a helper function for the
12894 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
12895 etc. It is assumed that operand parsing has already been done, and that the
12896 operands are in the form expected by the given opcode (this isn't necessarily
12897 the same as the form in which they were parsed, hence some massaging must
12898 take place before this function is called).
12899 Checks current arch version against that in the looked-up opcode. */
5287ad62 12900
037e8744
JB
12901static void
12902do_vfp_nsyn_opcode (const char *opname)
5287ad62 12903{
037e8744 12904 const struct asm_opcode *opcode;
5f4273c7 12905
21d799b5 12906 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
5287ad62 12907
037e8744
JB
12908 if (!opcode)
12909 abort ();
5287ad62 12910
037e8744
JB
12911 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
12912 thumb_mode ? *opcode->tvariant : *opcode->avariant),
12913 _(BAD_FPU));
5287ad62 12914
88714cb8
DG
12915 inst.is_neon = 1;
12916
037e8744
JB
12917 if (thumb_mode)
12918 {
12919 inst.instruction = opcode->tvalue;
12920 opcode->tencode ();
12921 }
12922 else
12923 {
12924 inst.instruction = (inst.cond << 28) | opcode->avalue;
12925 opcode->aencode ();
12926 }
12927}
5287ad62
JB
12928
12929static void
037e8744 12930do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 12931{
037e8744
JB
12932 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
12933
12934 if (rs == NS_FFF)
12935 {
12936 if (is_add)
12937 do_vfp_nsyn_opcode ("fadds");
12938 else
12939 do_vfp_nsyn_opcode ("fsubs");
12940 }
12941 else
12942 {
12943 if (is_add)
12944 do_vfp_nsyn_opcode ("faddd");
12945 else
12946 do_vfp_nsyn_opcode ("fsubd");
12947 }
12948}
12949
12950/* Check operand types to see if this is a VFP instruction, and if so call
12951 PFN (). */
12952
12953static int
12954try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
12955{
12956 enum neon_shape rs;
12957 struct neon_type_el et;
12958
12959 switch (args)
12960 {
12961 case 2:
12962 rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
12963 et = neon_check_type (2, rs,
12964 N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
12965 break;
5f4273c7 12966
037e8744
JB
12967 case 3:
12968 rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
12969 et = neon_check_type (3, rs,
12970 N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
12971 break;
12972
12973 default:
12974 abort ();
12975 }
12976
12977 if (et.type != NT_invtype)
12978 {
12979 pfn (rs);
12980 return SUCCESS;
12981 }
037e8744 12982
99b253c5 12983 inst.error = NULL;
037e8744
JB
12984 return FAIL;
12985}
12986
12987static void
12988do_vfp_nsyn_mla_mls (enum neon_shape rs)
12989{
12990 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
5f4273c7 12991
037e8744
JB
12992 if (rs == NS_FFF)
12993 {
12994 if (is_mla)
12995 do_vfp_nsyn_opcode ("fmacs");
12996 else
1ee69515 12997 do_vfp_nsyn_opcode ("fnmacs");
037e8744
JB
12998 }
12999 else
13000 {
13001 if (is_mla)
13002 do_vfp_nsyn_opcode ("fmacd");
13003 else
1ee69515 13004 do_vfp_nsyn_opcode ("fnmacd");
037e8744
JB
13005 }
13006}
13007
62f3b8c8
PB
13008static void
13009do_vfp_nsyn_fma_fms (enum neon_shape rs)
13010{
13011 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
13012
13013 if (rs == NS_FFF)
13014 {
13015 if (is_fma)
13016 do_vfp_nsyn_opcode ("ffmas");
13017 else
13018 do_vfp_nsyn_opcode ("ffnmas");
13019 }
13020 else
13021 {
13022 if (is_fma)
13023 do_vfp_nsyn_opcode ("ffmad");
13024 else
13025 do_vfp_nsyn_opcode ("ffnmad");
13026 }
13027}
13028
037e8744
JB
13029static void
13030do_vfp_nsyn_mul (enum neon_shape rs)
13031{
13032 if (rs == NS_FFF)
13033 do_vfp_nsyn_opcode ("fmuls");
13034 else
13035 do_vfp_nsyn_opcode ("fmuld");
13036}
13037
13038static void
13039do_vfp_nsyn_abs_neg (enum neon_shape rs)
13040{
13041 int is_neg = (inst.instruction & 0x80) != 0;
13042 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
13043
13044 if (rs == NS_FF)
13045 {
13046 if (is_neg)
13047 do_vfp_nsyn_opcode ("fnegs");
13048 else
13049 do_vfp_nsyn_opcode ("fabss");
13050 }
13051 else
13052 {
13053 if (is_neg)
13054 do_vfp_nsyn_opcode ("fnegd");
13055 else
13056 do_vfp_nsyn_opcode ("fabsd");
13057 }
13058}
13059
13060/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
13061 insns belong to Neon, and are handled elsewhere. */
13062
13063static void
13064do_vfp_nsyn_ldm_stm (int is_dbmode)
13065{
13066 int is_ldm = (inst.instruction & (1 << 20)) != 0;
13067 if (is_ldm)
13068 {
13069 if (is_dbmode)
13070 do_vfp_nsyn_opcode ("fldmdbs");
13071 else
13072 do_vfp_nsyn_opcode ("fldmias");
13073 }
13074 else
13075 {
13076 if (is_dbmode)
13077 do_vfp_nsyn_opcode ("fstmdbs");
13078 else
13079 do_vfp_nsyn_opcode ("fstmias");
13080 }
13081}
13082
037e8744
JB
13083static void
13084do_vfp_nsyn_sqrt (void)
13085{
13086 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13087 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13088
037e8744
JB
13089 if (rs == NS_FF)
13090 do_vfp_nsyn_opcode ("fsqrts");
13091 else
13092 do_vfp_nsyn_opcode ("fsqrtd");
13093}
13094
13095static void
13096do_vfp_nsyn_div (void)
13097{
13098 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13099 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13100 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13101
037e8744
JB
13102 if (rs == NS_FFF)
13103 do_vfp_nsyn_opcode ("fdivs");
13104 else
13105 do_vfp_nsyn_opcode ("fdivd");
13106}
13107
13108static void
13109do_vfp_nsyn_nmul (void)
13110{
13111 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13112 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13113 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13114
037e8744
JB
13115 if (rs == NS_FFF)
13116 {
88714cb8 13117 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13118 do_vfp_sp_dyadic ();
13119 }
13120 else
13121 {
88714cb8 13122 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13123 do_vfp_dp_rd_rn_rm ();
13124 }
13125 do_vfp_cond_or_thumb ();
13126}
13127
13128static void
13129do_vfp_nsyn_cmp (void)
13130{
13131 if (inst.operands[1].isreg)
13132 {
13133 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13134 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13135
037e8744
JB
13136 if (rs == NS_FF)
13137 {
88714cb8 13138 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13139 do_vfp_sp_monadic ();
13140 }
13141 else
13142 {
88714cb8 13143 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13144 do_vfp_dp_rd_rm ();
13145 }
13146 }
13147 else
13148 {
13149 enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
13150 neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
13151
13152 switch (inst.instruction & 0x0fffffff)
13153 {
13154 case N_MNEM_vcmp:
13155 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
13156 break;
13157 case N_MNEM_vcmpe:
13158 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
13159 break;
13160 default:
13161 abort ();
13162 }
5f4273c7 13163
037e8744
JB
13164 if (rs == NS_FI)
13165 {
88714cb8 13166 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13167 do_vfp_sp_compare_z ();
13168 }
13169 else
13170 {
88714cb8 13171 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13172 do_vfp_dp_rd ();
13173 }
13174 }
13175 do_vfp_cond_or_thumb ();
13176}
13177
13178static void
13179nsyn_insert_sp (void)
13180{
13181 inst.operands[1] = inst.operands[0];
13182 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
fdfde340 13183 inst.operands[0].reg = REG_SP;
037e8744
JB
13184 inst.operands[0].isreg = 1;
13185 inst.operands[0].writeback = 1;
13186 inst.operands[0].present = 1;
13187}
13188
13189static void
13190do_vfp_nsyn_push (void)
13191{
13192 nsyn_insert_sp ();
13193 if (inst.operands[1].issingle)
13194 do_vfp_nsyn_opcode ("fstmdbs");
13195 else
13196 do_vfp_nsyn_opcode ("fstmdbd");
13197}
13198
13199static void
13200do_vfp_nsyn_pop (void)
13201{
13202 nsyn_insert_sp ();
13203 if (inst.operands[1].issingle)
22b5b651 13204 do_vfp_nsyn_opcode ("fldmias");
037e8744 13205 else
22b5b651 13206 do_vfp_nsyn_opcode ("fldmiad");
037e8744
JB
13207}
13208
13209/* Fix up Neon data-processing instructions, ORing in the correct bits for
13210 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
13211
88714cb8
DG
13212static void
13213neon_dp_fixup (struct arm_it* insn)
037e8744 13214{
88714cb8
DG
13215 unsigned int i = insn->instruction;
13216 insn->is_neon = 1;
13217
037e8744
JB
13218 if (thumb_mode)
13219 {
13220 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
13221 if (i & (1 << 24))
13222 i |= 1 << 28;
5f4273c7 13223
037e8744 13224 i &= ~(1 << 24);
5f4273c7 13225
037e8744
JB
13226 i |= 0xef000000;
13227 }
13228 else
13229 i |= 0xf2000000;
5f4273c7 13230
88714cb8 13231 insn->instruction = i;
037e8744
JB
13232}
13233
13234/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
13235 (0, 1, 2, 3). */
13236
13237static unsigned
13238neon_logbits (unsigned x)
13239{
13240 return ffs (x) - 4;
13241}
13242
13243#define LOW4(R) ((R) & 0xf)
13244#define HI1(R) (((R) >> 4) & 1)
13245
13246/* Encode insns with bit pattern:
13247
13248 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
13249 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
5f4273c7 13250
037e8744
JB
13251 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
13252 different meaning for some instruction. */
13253
13254static void
13255neon_three_same (int isquad, int ubit, int size)
13256{
13257 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13258 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13259 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
13260 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
13261 inst.instruction |= LOW4 (inst.operands[2].reg);
13262 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
13263 inst.instruction |= (isquad != 0) << 6;
13264 inst.instruction |= (ubit != 0) << 24;
13265 if (size != -1)
13266 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 13267
88714cb8 13268 neon_dp_fixup (&inst);
037e8744
JB
13269}
13270
13271/* Encode instructions of the form:
13272
13273 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
13274 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
13275
13276 Don't write size if SIZE == -1. */
13277
13278static void
13279neon_two_same (int qbit, int ubit, int size)
13280{
13281 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13282 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13283 inst.instruction |= LOW4 (inst.operands[1].reg);
13284 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13285 inst.instruction |= (qbit != 0) << 6;
13286 inst.instruction |= (ubit != 0) << 24;
13287
13288 if (size != -1)
13289 inst.instruction |= neon_logbits (size) << 18;
13290
88714cb8 13291 neon_dp_fixup (&inst);
5287ad62
JB
13292}
13293
13294/* Neon instruction encoders, in approximate order of appearance. */
13295
13296static void
13297do_neon_dyadic_i_su (void)
13298{
037e8744 13299 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13300 struct neon_type_el et = neon_check_type (3, rs,
13301 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 13302 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13303}
13304
13305static void
13306do_neon_dyadic_i64_su (void)
13307{
037e8744 13308 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13309 struct neon_type_el et = neon_check_type (3, rs,
13310 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 13311 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13312}
13313
13314static void
13315neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
13316 unsigned immbits)
13317{
13318 unsigned size = et.size >> 3;
13319 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13320 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13321 inst.instruction |= LOW4 (inst.operands[1].reg);
13322 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13323 inst.instruction |= (isquad != 0) << 6;
13324 inst.instruction |= immbits << 16;
13325 inst.instruction |= (size >> 3) << 7;
13326 inst.instruction |= (size & 0x7) << 19;
13327 if (write_ubit)
13328 inst.instruction |= (uval != 0) << 24;
13329
88714cb8 13330 neon_dp_fixup (&inst);
5287ad62
JB
13331}
13332
13333static void
13334do_neon_shl_imm (void)
13335{
13336 if (!inst.operands[2].isreg)
13337 {
037e8744 13338 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13339 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
88714cb8 13340 NEON_ENCODE (IMMED, inst);
037e8744 13341 neon_imm_shift (FALSE, 0, neon_quad (rs), et, inst.operands[2].imm);
5287ad62
JB
13342 }
13343 else
13344 {
037e8744 13345 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13346 struct neon_type_el et = neon_check_type (3, rs,
13347 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13348 unsigned int tmp;
13349
13350 /* VSHL/VQSHL 3-register variants have syntax such as:
13351 vshl.xx Dd, Dm, Dn
13352 whereas other 3-register operations encoded by neon_three_same have
13353 syntax like:
13354 vadd.xx Dd, Dn, Dm
13355 (i.e. with Dn & Dm reversed). Swap operands[1].reg and operands[2].reg
13356 here. */
13357 tmp = inst.operands[2].reg;
13358 inst.operands[2].reg = inst.operands[1].reg;
13359 inst.operands[1].reg = tmp;
88714cb8 13360 NEON_ENCODE (INTEGER, inst);
037e8744 13361 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13362 }
13363}
13364
13365static void
13366do_neon_qshl_imm (void)
13367{
13368 if (!inst.operands[2].isreg)
13369 {
037e8744 13370 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13371 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
627907b7 13372
88714cb8 13373 NEON_ENCODE (IMMED, inst);
037e8744 13374 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
13375 inst.operands[2].imm);
13376 }
13377 else
13378 {
037e8744 13379 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13380 struct neon_type_el et = neon_check_type (3, rs,
13381 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13382 unsigned int tmp;
13383
13384 /* See note in do_neon_shl_imm. */
13385 tmp = inst.operands[2].reg;
13386 inst.operands[2].reg = inst.operands[1].reg;
13387 inst.operands[1].reg = tmp;
88714cb8 13388 NEON_ENCODE (INTEGER, inst);
037e8744 13389 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13390 }
13391}
13392
627907b7
JB
13393static void
13394do_neon_rshl (void)
13395{
13396 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
13397 struct neon_type_el et = neon_check_type (3, rs,
13398 N_EQK, N_EQK, N_SU_ALL | N_KEY);
13399 unsigned int tmp;
13400
13401 tmp = inst.operands[2].reg;
13402 inst.operands[2].reg = inst.operands[1].reg;
13403 inst.operands[1].reg = tmp;
13404 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
13405}
13406
5287ad62
JB
13407static int
13408neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
13409{
036dc3f7
PB
13410 /* Handle .I8 pseudo-instructions. */
13411 if (size == 8)
5287ad62 13412 {
5287ad62
JB
13413 /* Unfortunately, this will make everything apart from zero out-of-range.
13414 FIXME is this the intended semantics? There doesn't seem much point in
13415 accepting .I8 if so. */
13416 immediate |= immediate << 8;
13417 size = 16;
036dc3f7
PB
13418 }
13419
13420 if (size >= 32)
13421 {
13422 if (immediate == (immediate & 0x000000ff))
13423 {
13424 *immbits = immediate;
13425 return 0x1;
13426 }
13427 else if (immediate == (immediate & 0x0000ff00))
13428 {
13429 *immbits = immediate >> 8;
13430 return 0x3;
13431 }
13432 else if (immediate == (immediate & 0x00ff0000))
13433 {
13434 *immbits = immediate >> 16;
13435 return 0x5;
13436 }
13437 else if (immediate == (immediate & 0xff000000))
13438 {
13439 *immbits = immediate >> 24;
13440 return 0x7;
13441 }
13442 if ((immediate & 0xffff) != (immediate >> 16))
13443 goto bad_immediate;
13444 immediate &= 0xffff;
5287ad62
JB
13445 }
13446
13447 if (immediate == (immediate & 0x000000ff))
13448 {
13449 *immbits = immediate;
036dc3f7 13450 return 0x9;
5287ad62
JB
13451 }
13452 else if (immediate == (immediate & 0x0000ff00))
13453 {
13454 *immbits = immediate >> 8;
036dc3f7 13455 return 0xb;
5287ad62
JB
13456 }
13457
13458 bad_immediate:
dcbf9037 13459 first_error (_("immediate value out of range"));
5287ad62
JB
13460 return FAIL;
13461}
13462
13463/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
13464 A, B, C, D. */
13465
13466static int
13467neon_bits_same_in_bytes (unsigned imm)
13468{
13469 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
13470 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
13471 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
13472 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
13473}
13474
13475/* For immediate of above form, return 0bABCD. */
13476
13477static unsigned
13478neon_squash_bits (unsigned imm)
13479{
13480 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
13481 | ((imm & 0x01000000) >> 21);
13482}
13483
136da414 13484/* Compress quarter-float representation to 0b...000 abcdefgh. */
5287ad62
JB
13485
13486static unsigned
13487neon_qfloat_bits (unsigned imm)
13488{
136da414 13489 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
5287ad62
JB
13490}
13491
13492/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
13493 the instruction. *OP is passed as the initial value of the op field, and
13494 may be set to a different value depending on the constant (i.e.
13495 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
5f4273c7 13496 MVN). If the immediate looks like a repeated pattern then also
036dc3f7 13497 try smaller element sizes. */
5287ad62
JB
13498
13499static int
c96612cc
JB
13500neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
13501 unsigned *immbits, int *op, int size,
13502 enum neon_el_type type)
5287ad62 13503{
c96612cc
JB
13504 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
13505 float. */
13506 if (type == NT_float && !float_p)
13507 return FAIL;
13508
136da414
JB
13509 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
13510 {
13511 if (size != 32 || *op == 1)
13512 return FAIL;
13513 *immbits = neon_qfloat_bits (immlo);
13514 return 0xf;
13515 }
036dc3f7
PB
13516
13517 if (size == 64)
5287ad62 13518 {
036dc3f7
PB
13519 if (neon_bits_same_in_bytes (immhi)
13520 && neon_bits_same_in_bytes (immlo))
13521 {
13522 if (*op == 1)
13523 return FAIL;
13524 *immbits = (neon_squash_bits (immhi) << 4)
13525 | neon_squash_bits (immlo);
13526 *op = 1;
13527 return 0xe;
13528 }
13529
13530 if (immhi != immlo)
13531 return FAIL;
5287ad62 13532 }
036dc3f7
PB
13533
13534 if (size >= 32)
5287ad62 13535 {
036dc3f7
PB
13536 if (immlo == (immlo & 0x000000ff))
13537 {
13538 *immbits = immlo;
13539 return 0x0;
13540 }
13541 else if (immlo == (immlo & 0x0000ff00))
13542 {
13543 *immbits = immlo >> 8;
13544 return 0x2;
13545 }
13546 else if (immlo == (immlo & 0x00ff0000))
13547 {
13548 *immbits = immlo >> 16;
13549 return 0x4;
13550 }
13551 else if (immlo == (immlo & 0xff000000))
13552 {
13553 *immbits = immlo >> 24;
13554 return 0x6;
13555 }
13556 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
13557 {
13558 *immbits = (immlo >> 8) & 0xff;
13559 return 0xc;
13560 }
13561 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
13562 {
13563 *immbits = (immlo >> 16) & 0xff;
13564 return 0xd;
13565 }
13566
13567 if ((immlo & 0xffff) != (immlo >> 16))
13568 return FAIL;
13569 immlo &= 0xffff;
5287ad62 13570 }
036dc3f7
PB
13571
13572 if (size >= 16)
5287ad62 13573 {
036dc3f7
PB
13574 if (immlo == (immlo & 0x000000ff))
13575 {
13576 *immbits = immlo;
13577 return 0x8;
13578 }
13579 else if (immlo == (immlo & 0x0000ff00))
13580 {
13581 *immbits = immlo >> 8;
13582 return 0xa;
13583 }
13584
13585 if ((immlo & 0xff) != (immlo >> 8))
13586 return FAIL;
13587 immlo &= 0xff;
5287ad62 13588 }
036dc3f7
PB
13589
13590 if (immlo == (immlo & 0x000000ff))
5287ad62 13591 {
036dc3f7
PB
13592 /* Don't allow MVN with 8-bit immediate. */
13593 if (*op == 1)
13594 return FAIL;
13595 *immbits = immlo;
13596 return 0xe;
5287ad62 13597 }
5287ad62
JB
13598
13599 return FAIL;
13600}
13601
13602/* Write immediate bits [7:0] to the following locations:
13603
13604 |28/24|23 19|18 16|15 4|3 0|
13605 | 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|
13606
13607 This function is used by VMOV/VMVN/VORR/VBIC. */
13608
13609static void
13610neon_write_immbits (unsigned immbits)
13611{
13612 inst.instruction |= immbits & 0xf;
13613 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
13614 inst.instruction |= ((immbits >> 7) & 0x1) << 24;
13615}
13616
13617/* Invert low-order SIZE bits of XHI:XLO. */
13618
13619static void
13620neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
13621{
13622 unsigned immlo = xlo ? *xlo : 0;
13623 unsigned immhi = xhi ? *xhi : 0;
13624
13625 switch (size)
13626 {
13627 case 8:
13628 immlo = (~immlo) & 0xff;
13629 break;
13630
13631 case 16:
13632 immlo = (~immlo) & 0xffff;
13633 break;
13634
13635 case 64:
13636 immhi = (~immhi) & 0xffffffff;
13637 /* fall through. */
13638
13639 case 32:
13640 immlo = (~immlo) & 0xffffffff;
13641 break;
13642
13643 default:
13644 abort ();
13645 }
13646
13647 if (xlo)
13648 *xlo = immlo;
13649
13650 if (xhi)
13651 *xhi = immhi;
13652}
13653
13654static void
13655do_neon_logic (void)
13656{
13657 if (inst.operands[2].present && inst.operands[2].isreg)
13658 {
037e8744 13659 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13660 neon_check_type (3, rs, N_IGNORE_TYPE);
13661 /* U bit and size field were set as part of the bitmask. */
88714cb8 13662 NEON_ENCODE (INTEGER, inst);
037e8744 13663 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13664 }
13665 else
13666 {
4316f0d2
DG
13667 const int three_ops_form = (inst.operands[2].present
13668 && !inst.operands[2].isreg);
13669 const int immoperand = (three_ops_form ? 2 : 1);
13670 enum neon_shape rs = (three_ops_form
13671 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
13672 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
037e8744
JB
13673 struct neon_type_el et = neon_check_type (2, rs,
13674 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
21d799b5 13675 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
5287ad62
JB
13676 unsigned immbits;
13677 int cmode;
5f4273c7 13678
5287ad62
JB
13679 if (et.type == NT_invtype)
13680 return;
5f4273c7 13681
4316f0d2
DG
13682 if (three_ops_form)
13683 constraint (inst.operands[0].reg != inst.operands[1].reg,
13684 _("first and second operands shall be the same register"));
13685
88714cb8 13686 NEON_ENCODE (IMMED, inst);
5287ad62 13687
4316f0d2 13688 immbits = inst.operands[immoperand].imm;
036dc3f7
PB
13689 if (et.size == 64)
13690 {
13691 /* .i64 is a pseudo-op, so the immediate must be a repeating
13692 pattern. */
4316f0d2
DG
13693 if (immbits != (inst.operands[immoperand].regisimm ?
13694 inst.operands[immoperand].reg : 0))
036dc3f7
PB
13695 {
13696 /* Set immbits to an invalid constant. */
13697 immbits = 0xdeadbeef;
13698 }
13699 }
13700
5287ad62
JB
13701 switch (opcode)
13702 {
13703 case N_MNEM_vbic:
036dc3f7 13704 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
5287ad62 13705 break;
5f4273c7 13706
5287ad62 13707 case N_MNEM_vorr:
036dc3f7 13708 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
5287ad62 13709 break;
5f4273c7 13710
5287ad62
JB
13711 case N_MNEM_vand:
13712 /* Pseudo-instruction for VBIC. */
5287ad62
JB
13713 neon_invert_size (&immbits, 0, et.size);
13714 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13715 break;
5f4273c7 13716
5287ad62
JB
13717 case N_MNEM_vorn:
13718 /* Pseudo-instruction for VORR. */
5287ad62
JB
13719 neon_invert_size (&immbits, 0, et.size);
13720 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13721 break;
5f4273c7 13722
5287ad62
JB
13723 default:
13724 abort ();
13725 }
13726
13727 if (cmode == FAIL)
13728 return;
13729
037e8744 13730 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
13731 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13732 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13733 inst.instruction |= cmode << 8;
13734 neon_write_immbits (immbits);
5f4273c7 13735
88714cb8 13736 neon_dp_fixup (&inst);
5287ad62
JB
13737 }
13738}
13739
13740static void
13741do_neon_bitfield (void)
13742{
037e8744 13743 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 13744 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 13745 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13746}
13747
13748static void
dcbf9037
JB
13749neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
13750 unsigned destbits)
5287ad62 13751{
037e8744 13752 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037
JB
13753 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
13754 types | N_KEY);
5287ad62
JB
13755 if (et.type == NT_float)
13756 {
88714cb8 13757 NEON_ENCODE (FLOAT, inst);
037e8744 13758 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13759 }
13760 else
13761 {
88714cb8 13762 NEON_ENCODE (INTEGER, inst);
037e8744 13763 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
13764 }
13765}
13766
13767static void
13768do_neon_dyadic_if_su (void)
13769{
dcbf9037 13770 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13771}
13772
13773static void
13774do_neon_dyadic_if_su_d (void)
13775{
13776 /* This version only allow D registers, but that constraint is enforced during
13777 operand parsing so we don't need to do anything extra here. */
dcbf9037 13778 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13779}
13780
5287ad62
JB
13781static void
13782do_neon_dyadic_if_i_d (void)
13783{
428e3f1f
PB
13784 /* The "untyped" case can't happen. Do this to stop the "U" bit being
13785 affected if we specify unsigned args. */
13786 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
13787}
13788
037e8744
JB
13789enum vfp_or_neon_is_neon_bits
13790{
13791 NEON_CHECK_CC = 1,
13792 NEON_CHECK_ARCH = 2
13793};
13794
13795/* Call this function if an instruction which may have belonged to the VFP or
13796 Neon instruction sets, but turned out to be a Neon instruction (due to the
13797 operand types involved, etc.). We have to check and/or fix-up a couple of
13798 things:
13799
13800 - Make sure the user hasn't attempted to make a Neon instruction
13801 conditional.
13802 - Alter the value in the condition code field if necessary.
13803 - Make sure that the arch supports Neon instructions.
13804
13805 Which of these operations take place depends on bits from enum
13806 vfp_or_neon_is_neon_bits.
13807
13808 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
13809 current instruction's condition is COND_ALWAYS, the condition field is
13810 changed to inst.uncond_value. This is necessary because instructions shared
13811 between VFP and Neon may be conditional for the VFP variants only, and the
13812 unconditional Neon version must have, e.g., 0xF in the condition field. */
13813
13814static int
13815vfp_or_neon_is_neon (unsigned check)
13816{
13817 /* Conditions are always legal in Thumb mode (IT blocks). */
13818 if (!thumb_mode && (check & NEON_CHECK_CC))
13819 {
13820 if (inst.cond != COND_ALWAYS)
13821 {
13822 first_error (_(BAD_COND));
13823 return FAIL;
13824 }
13825 if (inst.uncond_value != -1)
13826 inst.instruction |= inst.uncond_value << 28;
13827 }
5f4273c7 13828
037e8744
JB
13829 if ((check & NEON_CHECK_ARCH)
13830 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
13831 {
13832 first_error (_(BAD_FPU));
13833 return FAIL;
13834 }
5f4273c7 13835
037e8744
JB
13836 return SUCCESS;
13837}
13838
5287ad62
JB
13839static void
13840do_neon_addsub_if_i (void)
13841{
037e8744
JB
13842 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
13843 return;
13844
13845 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
13846 return;
13847
5287ad62
JB
13848 /* The "untyped" case can't happen. Do this to stop the "U" bit being
13849 affected if we specify unsigned args. */
dcbf9037 13850 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
13851}
13852
13853/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
13854 result to be:
13855 V<op> A,B (A is operand 0, B is operand 2)
13856 to mean:
13857 V<op> A,B,A
13858 not:
13859 V<op> A,B,B
13860 so handle that case specially. */
13861
13862static void
13863neon_exchange_operands (void)
13864{
13865 void *scratch = alloca (sizeof (inst.operands[0]));
13866 if (inst.operands[1].present)
13867 {
13868 /* Swap operands[1] and operands[2]. */
13869 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
13870 inst.operands[1] = inst.operands[2];
13871 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
13872 }
13873 else
13874 {
13875 inst.operands[1] = inst.operands[2];
13876 inst.operands[2] = inst.operands[0];
13877 }
13878}
13879
13880static void
13881neon_compare (unsigned regtypes, unsigned immtypes, int invert)
13882{
13883 if (inst.operands[2].isreg)
13884 {
13885 if (invert)
13886 neon_exchange_operands ();
dcbf9037 13887 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
13888 }
13889 else
13890 {
037e8744 13891 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037
JB
13892 struct neon_type_el et = neon_check_type (2, rs,
13893 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62 13894
88714cb8 13895 NEON_ENCODE (IMMED, inst);
5287ad62
JB
13896 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13897 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13898 inst.instruction |= LOW4 (inst.operands[1].reg);
13899 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 13900 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
13901 inst.instruction |= (et.type == NT_float) << 10;
13902 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 13903
88714cb8 13904 neon_dp_fixup (&inst);
5287ad62
JB
13905 }
13906}
13907
13908static void
13909do_neon_cmp (void)
13910{
13911 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
13912}
13913
13914static void
13915do_neon_cmp_inv (void)
13916{
13917 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
13918}
13919
13920static void
13921do_neon_ceq (void)
13922{
13923 neon_compare (N_IF_32, N_IF_32, FALSE);
13924}
13925
13926/* For multiply instructions, we have the possibility of 16-bit or 32-bit
13927 scalars, which are encoded in 5 bits, M : Rm.
13928 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
13929 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
13930 index in M. */
13931
13932static unsigned
13933neon_scalar_for_mul (unsigned scalar, unsigned elsize)
13934{
dcbf9037
JB
13935 unsigned regno = NEON_SCALAR_REG (scalar);
13936 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
13937
13938 switch (elsize)
13939 {
13940 case 16:
13941 if (regno > 7 || elno > 3)
13942 goto bad_scalar;
13943 return regno | (elno << 3);
5f4273c7 13944
5287ad62
JB
13945 case 32:
13946 if (regno > 15 || elno > 1)
13947 goto bad_scalar;
13948 return regno | (elno << 4);
13949
13950 default:
13951 bad_scalar:
dcbf9037 13952 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
13953 }
13954
13955 return 0;
13956}
13957
13958/* Encode multiply / multiply-accumulate scalar instructions. */
13959
13960static void
13961neon_mul_mac (struct neon_type_el et, int ubit)
13962{
dcbf9037
JB
13963 unsigned scalar;
13964
13965 /* Give a more helpful error message if we have an invalid type. */
13966 if (et.type == NT_invtype)
13967 return;
5f4273c7 13968
dcbf9037 13969 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
13970 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13971 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13972 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
13973 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
13974 inst.instruction |= LOW4 (scalar);
13975 inst.instruction |= HI1 (scalar) << 5;
13976 inst.instruction |= (et.type == NT_float) << 8;
13977 inst.instruction |= neon_logbits (et.size) << 20;
13978 inst.instruction |= (ubit != 0) << 24;
13979
88714cb8 13980 neon_dp_fixup (&inst);
5287ad62
JB
13981}
13982
13983static void
13984do_neon_mac_maybe_scalar (void)
13985{
037e8744
JB
13986 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
13987 return;
13988
13989 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
13990 return;
13991
5287ad62
JB
13992 if (inst.operands[2].isscalar)
13993 {
037e8744 13994 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
13995 struct neon_type_el et = neon_check_type (3, rs,
13996 N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
88714cb8 13997 NEON_ENCODE (SCALAR, inst);
037e8744 13998 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
13999 }
14000 else
428e3f1f
PB
14001 {
14002 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14003 affected if we specify unsigned args. */
14004 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14005 }
5287ad62
JB
14006}
14007
62f3b8c8
PB
14008static void
14009do_neon_fmac (void)
14010{
14011 if (try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
14012 return;
14013
14014 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14015 return;
14016
14017 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14018}
14019
5287ad62
JB
14020static void
14021do_neon_tst (void)
14022{
037e8744 14023 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14024 struct neon_type_el et = neon_check_type (3, rs,
14025 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 14026 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14027}
14028
14029/* VMUL with 3 registers allows the P8 type. The scalar version supports the
14030 same types as the MAC equivalents. The polynomial type for this instruction
14031 is encoded the same as the integer type. */
14032
14033static void
14034do_neon_mul (void)
14035{
037e8744
JB
14036 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
14037 return;
14038
14039 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14040 return;
14041
5287ad62
JB
14042 if (inst.operands[2].isscalar)
14043 do_neon_mac_maybe_scalar ();
14044 else
dcbf9037 14045 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
5287ad62
JB
14046}
14047
14048static void
14049do_neon_qdmulh (void)
14050{
14051 if (inst.operands[2].isscalar)
14052 {
037e8744 14053 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
14054 struct neon_type_el et = neon_check_type (3, rs,
14055 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14056 NEON_ENCODE (SCALAR, inst);
037e8744 14057 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14058 }
14059 else
14060 {
037e8744 14061 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14062 struct neon_type_el et = neon_check_type (3, rs,
14063 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14064 NEON_ENCODE (INTEGER, inst);
5287ad62 14065 /* The U bit (rounding) comes from bit mask. */
037e8744 14066 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14067 }
14068}
14069
14070static void
14071do_neon_fcmp_absolute (void)
14072{
037e8744 14073 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14074 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
14075 /* Size field comes from bit mask. */
037e8744 14076 neon_three_same (neon_quad (rs), 1, -1);
5287ad62
JB
14077}
14078
14079static void
14080do_neon_fcmp_absolute_inv (void)
14081{
14082 neon_exchange_operands ();
14083 do_neon_fcmp_absolute ();
14084}
14085
14086static void
14087do_neon_step (void)
14088{
037e8744 14089 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14090 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
037e8744 14091 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14092}
14093
14094static void
14095do_neon_abs_neg (void)
14096{
037e8744
JB
14097 enum neon_shape rs;
14098 struct neon_type_el et;
5f4273c7 14099
037e8744
JB
14100 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
14101 return;
14102
14103 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14104 return;
14105
14106 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
14107 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
5f4273c7 14108
5287ad62
JB
14109 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14110 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14111 inst.instruction |= LOW4 (inst.operands[1].reg);
14112 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14113 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14114 inst.instruction |= (et.type == NT_float) << 10;
14115 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14116
88714cb8 14117 neon_dp_fixup (&inst);
5287ad62
JB
14118}
14119
14120static void
14121do_neon_sli (void)
14122{
037e8744 14123 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14124 struct neon_type_el et = neon_check_type (2, rs,
14125 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14126 int imm = inst.operands[2].imm;
14127 constraint (imm < 0 || (unsigned)imm >= et.size,
14128 _("immediate out of range for insert"));
037e8744 14129 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14130}
14131
14132static void
14133do_neon_sri (void)
14134{
037e8744 14135 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14136 struct neon_type_el et = neon_check_type (2, rs,
14137 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14138 int imm = inst.operands[2].imm;
14139 constraint (imm < 1 || (unsigned)imm > et.size,
14140 _("immediate out of range for insert"));
037e8744 14141 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
14142}
14143
14144static void
14145do_neon_qshlu_imm (void)
14146{
037e8744 14147 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14148 struct neon_type_el et = neon_check_type (2, rs,
14149 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
14150 int imm = inst.operands[2].imm;
14151 constraint (imm < 0 || (unsigned)imm >= et.size,
14152 _("immediate out of range for shift"));
14153 /* Only encodes the 'U present' variant of the instruction.
14154 In this case, signed types have OP (bit 8) set to 0.
14155 Unsigned types have OP set to 1. */
14156 inst.instruction |= (et.type == NT_unsigned) << 8;
14157 /* The rest of the bits are the same as other immediate shifts. */
037e8744 14158 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14159}
14160
14161static void
14162do_neon_qmovn (void)
14163{
14164 struct neon_type_el et = neon_check_type (2, NS_DQ,
14165 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14166 /* Saturating move where operands can be signed or unsigned, and the
14167 destination has the same signedness. */
88714cb8 14168 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14169 if (et.type == NT_unsigned)
14170 inst.instruction |= 0xc0;
14171 else
14172 inst.instruction |= 0x80;
14173 neon_two_same (0, 1, et.size / 2);
14174}
14175
14176static void
14177do_neon_qmovun (void)
14178{
14179 struct neon_type_el et = neon_check_type (2, NS_DQ,
14180 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14181 /* Saturating move with unsigned results. Operands must be signed. */
88714cb8 14182 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14183 neon_two_same (0, 1, et.size / 2);
14184}
14185
14186static void
14187do_neon_rshift_sat_narrow (void)
14188{
14189 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14190 or unsigned. If operands are unsigned, results must also be unsigned. */
14191 struct neon_type_el et = neon_check_type (2, NS_DQI,
14192 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14193 int imm = inst.operands[2].imm;
14194 /* This gets the bounds check, size encoding and immediate bits calculation
14195 right. */
14196 et.size /= 2;
5f4273c7 14197
5287ad62
JB
14198 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
14199 VQMOVN.I<size> <Dd>, <Qm>. */
14200 if (imm == 0)
14201 {
14202 inst.operands[2].present = 0;
14203 inst.instruction = N_MNEM_vqmovn;
14204 do_neon_qmovn ();
14205 return;
14206 }
5f4273c7 14207
5287ad62
JB
14208 constraint (imm < 1 || (unsigned)imm > et.size,
14209 _("immediate out of range"));
14210 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
14211}
14212
14213static void
14214do_neon_rshift_sat_narrow_u (void)
14215{
14216 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14217 or unsigned. If operands are unsigned, results must also be unsigned. */
14218 struct neon_type_el et = neon_check_type (2, NS_DQI,
14219 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14220 int imm = inst.operands[2].imm;
14221 /* This gets the bounds check, size encoding and immediate bits calculation
14222 right. */
14223 et.size /= 2;
14224
14225 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
14226 VQMOVUN.I<size> <Dd>, <Qm>. */
14227 if (imm == 0)
14228 {
14229 inst.operands[2].present = 0;
14230 inst.instruction = N_MNEM_vqmovun;
14231 do_neon_qmovun ();
14232 return;
14233 }
14234
14235 constraint (imm < 1 || (unsigned)imm > et.size,
14236 _("immediate out of range"));
14237 /* FIXME: The manual is kind of unclear about what value U should have in
14238 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
14239 must be 1. */
14240 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
14241}
14242
14243static void
14244do_neon_movn (void)
14245{
14246 struct neon_type_el et = neon_check_type (2, NS_DQ,
14247 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
88714cb8 14248 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14249 neon_two_same (0, 1, et.size / 2);
14250}
14251
14252static void
14253do_neon_rshift_narrow (void)
14254{
14255 struct neon_type_el et = neon_check_type (2, NS_DQI,
14256 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
14257 int imm = inst.operands[2].imm;
14258 /* This gets the bounds check, size encoding and immediate bits calculation
14259 right. */
14260 et.size /= 2;
5f4273c7 14261
5287ad62
JB
14262 /* If immediate is zero then we are a pseudo-instruction for
14263 VMOVN.I<size> <Dd>, <Qm> */
14264 if (imm == 0)
14265 {
14266 inst.operands[2].present = 0;
14267 inst.instruction = N_MNEM_vmovn;
14268 do_neon_movn ();
14269 return;
14270 }
5f4273c7 14271
5287ad62
JB
14272 constraint (imm < 1 || (unsigned)imm > et.size,
14273 _("immediate out of range for narrowing operation"));
14274 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
14275}
14276
14277static void
14278do_neon_shll (void)
14279{
14280 /* FIXME: Type checking when lengthening. */
14281 struct neon_type_el et = neon_check_type (2, NS_QDI,
14282 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
14283 unsigned imm = inst.operands[2].imm;
14284
14285 if (imm == et.size)
14286 {
14287 /* Maximum shift variant. */
88714cb8 14288 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14289 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14290 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14291 inst.instruction |= LOW4 (inst.operands[1].reg);
14292 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14293 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14294
88714cb8 14295 neon_dp_fixup (&inst);
5287ad62
JB
14296 }
14297 else
14298 {
14299 /* A more-specific type check for non-max versions. */
14300 et = neon_check_type (2, NS_QDI,
14301 N_EQK | N_DBL, N_SU_32 | N_KEY);
88714cb8 14302 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14303 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
14304 }
14305}
14306
037e8744 14307/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
14308 the current instruction is. */
14309
14310static int
14311neon_cvt_flavour (enum neon_shape rs)
14312{
037e8744
JB
14313#define CVT_VAR(C,X,Y) \
14314 et = neon_check_type (2, rs, whole_reg | (X), whole_reg | (Y)); \
14315 if (et.type != NT_invtype) \
14316 { \
14317 inst.error = NULL; \
14318 return (C); \
5287ad62
JB
14319 }
14320 struct neon_type_el et;
037e8744
JB
14321 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
14322 || rs == NS_FF) ? N_VFP : 0;
14323 /* The instruction versions which take an immediate take one register
14324 argument, which is extended to the width of the full register. Thus the
14325 "source" and "destination" registers must have the same width. Hack that
14326 here by making the size equal to the key (wider, in this case) operand. */
14327 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5f4273c7 14328
5287ad62
JB
14329 CVT_VAR (0, N_S32, N_F32);
14330 CVT_VAR (1, N_U32, N_F32);
14331 CVT_VAR (2, N_F32, N_S32);
14332 CVT_VAR (3, N_F32, N_U32);
8e79c3df
CM
14333 /* Half-precision conversions. */
14334 CVT_VAR (4, N_F32, N_F16);
14335 CVT_VAR (5, N_F16, N_F32);
5f4273c7 14336
037e8744 14337 whole_reg = N_VFP;
5f4273c7 14338
037e8744 14339 /* VFP instructions. */
8e79c3df
CM
14340 CVT_VAR (6, N_F32, N_F64);
14341 CVT_VAR (7, N_F64, N_F32);
14342 CVT_VAR (8, N_S32, N_F64 | key);
14343 CVT_VAR (9, N_U32, N_F64 | key);
14344 CVT_VAR (10, N_F64 | key, N_S32);
14345 CVT_VAR (11, N_F64 | key, N_U32);
037e8744 14346 /* VFP instructions with bitshift. */
8e79c3df
CM
14347 CVT_VAR (12, N_F32 | key, N_S16);
14348 CVT_VAR (13, N_F32 | key, N_U16);
14349 CVT_VAR (14, N_F64 | key, N_S16);
14350 CVT_VAR (15, N_F64 | key, N_U16);
14351 CVT_VAR (16, N_S16, N_F32 | key);
14352 CVT_VAR (17, N_U16, N_F32 | key);
14353 CVT_VAR (18, N_S16, N_F64 | key);
14354 CVT_VAR (19, N_U16, N_F64 | key);
5f4273c7 14355
5287ad62
JB
14356 return -1;
14357#undef CVT_VAR
14358}
14359
037e8744
JB
14360/* Neon-syntax VFP conversions. */
14361
5287ad62 14362static void
037e8744 14363do_vfp_nsyn_cvt (enum neon_shape rs, int flavour)
5287ad62 14364{
037e8744 14365 const char *opname = 0;
5f4273c7 14366
037e8744 14367 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
5287ad62 14368 {
037e8744
JB
14369 /* Conversions with immediate bitshift. */
14370 const char *enc[] =
14371 {
14372 "ftosls",
14373 "ftouls",
14374 "fsltos",
14375 "fultos",
14376 NULL,
14377 NULL,
8e79c3df
CM
14378 NULL,
14379 NULL,
037e8744
JB
14380 "ftosld",
14381 "ftould",
14382 "fsltod",
14383 "fultod",
14384 "fshtos",
14385 "fuhtos",
14386 "fshtod",
14387 "fuhtod",
14388 "ftoshs",
14389 "ftouhs",
14390 "ftoshd",
14391 "ftouhd"
14392 };
14393
14394 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc))
14395 {
14396 opname = enc[flavour];
14397 constraint (inst.operands[0].reg != inst.operands[1].reg,
14398 _("operands 0 and 1 must be the same register"));
14399 inst.operands[1] = inst.operands[2];
14400 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
14401 }
5287ad62
JB
14402 }
14403 else
14404 {
037e8744
JB
14405 /* Conversions without bitshift. */
14406 const char *enc[] =
14407 {
14408 "ftosis",
14409 "ftouis",
14410 "fsitos",
14411 "fuitos",
8e79c3df
CM
14412 "NULL",
14413 "NULL",
037e8744
JB
14414 "fcvtsd",
14415 "fcvtds",
14416 "ftosid",
14417 "ftouid",
14418 "fsitod",
14419 "fuitod"
14420 };
14421
14422 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc))
14423 opname = enc[flavour];
14424 }
14425
14426 if (opname)
14427 do_vfp_nsyn_opcode (opname);
14428}
14429
14430static void
14431do_vfp_nsyn_cvtz (void)
14432{
14433 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
14434 int flavour = neon_cvt_flavour (rs);
14435 const char *enc[] =
14436 {
14437 "ftosizs",
14438 "ftouizs",
14439 NULL,
14440 NULL,
14441 NULL,
14442 NULL,
8e79c3df
CM
14443 NULL,
14444 NULL,
037e8744
JB
14445 "ftosizd",
14446 "ftouizd"
14447 };
14448
14449 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
14450 do_vfp_nsyn_opcode (enc[flavour]);
14451}
f31fef98 14452
037e8744 14453static void
e3e535bc 14454do_neon_cvt_1 (bfd_boolean round_to_zero ATTRIBUTE_UNUSED)
037e8744
JB
14455{
14456 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
8e79c3df 14457 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ, NS_NULL);
037e8744
JB
14458 int flavour = neon_cvt_flavour (rs);
14459
e3e535bc
NC
14460 /* PR11109: Handle round-to-zero for VCVT conversions. */
14461 if (round_to_zero
14462 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
14463 && (flavour == 0 || flavour == 1 || flavour == 8 || flavour == 9)
14464 && (rs == NS_FD || rs == NS_FF))
14465 {
14466 do_vfp_nsyn_cvtz ();
14467 return;
14468 }
14469
037e8744 14470 /* VFP rather than Neon conversions. */
8e79c3df 14471 if (flavour >= 6)
037e8744
JB
14472 {
14473 do_vfp_nsyn_cvt (rs, flavour);
14474 return;
14475 }
14476
14477 switch (rs)
14478 {
14479 case NS_DDI:
14480 case NS_QQI:
14481 {
35997600
NC
14482 unsigned immbits;
14483 unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
14484
037e8744
JB
14485 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14486 return;
14487
14488 /* Fixed-point conversion with #0 immediate is encoded as an
14489 integer conversion. */
14490 if (inst.operands[2].present && inst.operands[2].imm == 0)
14491 goto int_encode;
35997600 14492 immbits = 32 - inst.operands[2].imm;
88714cb8 14493 NEON_ENCODE (IMMED, inst);
037e8744
JB
14494 if (flavour != -1)
14495 inst.instruction |= enctab[flavour];
14496 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14497 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14498 inst.instruction |= LOW4 (inst.operands[1].reg);
14499 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14500 inst.instruction |= neon_quad (rs) << 6;
14501 inst.instruction |= 1 << 21;
14502 inst.instruction |= immbits << 16;
14503
88714cb8 14504 neon_dp_fixup (&inst);
037e8744
JB
14505 }
14506 break;
14507
14508 case NS_DD:
14509 case NS_QQ:
14510 int_encode:
14511 {
14512 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
14513
88714cb8 14514 NEON_ENCODE (INTEGER, inst);
037e8744
JB
14515
14516 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14517 return;
14518
14519 if (flavour != -1)
14520 inst.instruction |= enctab[flavour];
14521
14522 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14523 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14524 inst.instruction |= LOW4 (inst.operands[1].reg);
14525 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14526 inst.instruction |= neon_quad (rs) << 6;
14527 inst.instruction |= 2 << 18;
14528
88714cb8 14529 neon_dp_fixup (&inst);
037e8744
JB
14530 }
14531 break;
14532
8e79c3df
CM
14533 /* Half-precision conversions for Advanced SIMD -- neon. */
14534 case NS_QD:
14535 case NS_DQ:
14536
14537 if ((rs == NS_DQ)
14538 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
14539 {
14540 as_bad (_("operand size must match register width"));
14541 break;
14542 }
14543
14544 if ((rs == NS_QD)
14545 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
14546 {
14547 as_bad (_("operand size must match register width"));
14548 break;
14549 }
14550
14551 if (rs == NS_DQ)
14552 inst.instruction = 0x3b60600;
14553 else
14554 inst.instruction = 0x3b60700;
14555
14556 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14557 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14558 inst.instruction |= LOW4 (inst.operands[1].reg);
14559 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
88714cb8 14560 neon_dp_fixup (&inst);
8e79c3df
CM
14561 break;
14562
037e8744
JB
14563 default:
14564 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
14565 do_vfp_nsyn_cvt (rs, flavour);
5287ad62 14566 }
5287ad62
JB
14567}
14568
e3e535bc
NC
14569static void
14570do_neon_cvtr (void)
14571{
14572 do_neon_cvt_1 (FALSE);
14573}
14574
14575static void
14576do_neon_cvt (void)
14577{
14578 do_neon_cvt_1 (TRUE);
14579}
14580
8e79c3df
CM
14581static void
14582do_neon_cvtb (void)
14583{
14584 inst.instruction = 0xeb20a40;
14585
14586 /* The sizes are attached to the mnemonic. */
14587 if (inst.vectype.el[0].type != NT_invtype
14588 && inst.vectype.el[0].size == 16)
14589 inst.instruction |= 0x00010000;
14590
14591 /* Programmer's syntax: the sizes are attached to the operands. */
14592 else if (inst.operands[0].vectype.type != NT_invtype
14593 && inst.operands[0].vectype.size == 16)
14594 inst.instruction |= 0x00010000;
14595
14596 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
14597 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
14598 do_vfp_cond_or_thumb ();
14599}
14600
14601
14602static void
14603do_neon_cvtt (void)
14604{
14605 do_neon_cvtb ();
14606 inst.instruction |= 0x80;
14607}
14608
5287ad62
JB
14609static void
14610neon_move_immediate (void)
14611{
037e8744
JB
14612 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
14613 struct neon_type_el et = neon_check_type (2, rs,
14614 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62 14615 unsigned immlo, immhi = 0, immbits;
c96612cc 14616 int op, cmode, float_p;
5287ad62 14617
037e8744
JB
14618 constraint (et.type == NT_invtype,
14619 _("operand size must be specified for immediate VMOV"));
14620
5287ad62
JB
14621 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
14622 op = (inst.instruction & (1 << 5)) != 0;
14623
14624 immlo = inst.operands[1].imm;
14625 if (inst.operands[1].regisimm)
14626 immhi = inst.operands[1].reg;
14627
14628 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
14629 _("immediate has bits set outside the operand size"));
14630
c96612cc
JB
14631 float_p = inst.operands[1].immisfloat;
14632
14633 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
136da414 14634 et.size, et.type)) == FAIL)
5287ad62
JB
14635 {
14636 /* Invert relevant bits only. */
14637 neon_invert_size (&immlo, &immhi, et.size);
14638 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
14639 with one or the other; those cases are caught by
14640 neon_cmode_for_move_imm. */
14641 op = !op;
c96612cc
JB
14642 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
14643 &op, et.size, et.type)) == FAIL)
5287ad62 14644 {
dcbf9037 14645 first_error (_("immediate out of range"));
5287ad62
JB
14646 return;
14647 }
14648 }
14649
14650 inst.instruction &= ~(1 << 5);
14651 inst.instruction |= op << 5;
14652
14653 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14654 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 14655 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14656 inst.instruction |= cmode << 8;
14657
14658 neon_write_immbits (immbits);
14659}
14660
14661static void
14662do_neon_mvn (void)
14663{
14664 if (inst.operands[1].isreg)
14665 {
037e8744 14666 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5f4273c7 14667
88714cb8 14668 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14669 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14670 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14671 inst.instruction |= LOW4 (inst.operands[1].reg);
14672 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14673 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14674 }
14675 else
14676 {
88714cb8 14677 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14678 neon_move_immediate ();
14679 }
14680
88714cb8 14681 neon_dp_fixup (&inst);
5287ad62
JB
14682}
14683
14684/* Encode instructions of form:
14685
14686 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
5f4273c7 14687 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
5287ad62
JB
14688
14689static void
14690neon_mixed_length (struct neon_type_el et, unsigned size)
14691{
14692 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14693 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14694 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14695 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14696 inst.instruction |= LOW4 (inst.operands[2].reg);
14697 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
14698 inst.instruction |= (et.type == NT_unsigned) << 24;
14699 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 14700
88714cb8 14701 neon_dp_fixup (&inst);
5287ad62
JB
14702}
14703
14704static void
14705do_neon_dyadic_long (void)
14706{
14707 /* FIXME: Type checking for lengthening op. */
14708 struct neon_type_el et = neon_check_type (3, NS_QDD,
14709 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
14710 neon_mixed_length (et, et.size);
14711}
14712
14713static void
14714do_neon_abal (void)
14715{
14716 struct neon_type_el et = neon_check_type (3, NS_QDD,
14717 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
14718 neon_mixed_length (et, et.size);
14719}
14720
14721static void
14722neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
14723{
14724 if (inst.operands[2].isscalar)
14725 {
dcbf9037
JB
14726 struct neon_type_el et = neon_check_type (3, NS_QDS,
14727 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
88714cb8 14728 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
14729 neon_mul_mac (et, et.type == NT_unsigned);
14730 }
14731 else
14732 {
14733 struct neon_type_el et = neon_check_type (3, NS_QDD,
14734 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
88714cb8 14735 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14736 neon_mixed_length (et, et.size);
14737 }
14738}
14739
14740static void
14741do_neon_mac_maybe_scalar_long (void)
14742{
14743 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
14744}
14745
14746static void
14747do_neon_dyadic_wide (void)
14748{
14749 struct neon_type_el et = neon_check_type (3, NS_QQD,
14750 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
14751 neon_mixed_length (et, et.size);
14752}
14753
14754static void
14755do_neon_dyadic_narrow (void)
14756{
14757 struct neon_type_el et = neon_check_type (3, NS_QDD,
14758 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
14759 /* Operand sign is unimportant, and the U bit is part of the opcode,
14760 so force the operand type to integer. */
14761 et.type = NT_integer;
5287ad62
JB
14762 neon_mixed_length (et, et.size / 2);
14763}
14764
14765static void
14766do_neon_mul_sat_scalar_long (void)
14767{
14768 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
14769}
14770
14771static void
14772do_neon_vmull (void)
14773{
14774 if (inst.operands[2].isscalar)
14775 do_neon_mac_maybe_scalar_long ();
14776 else
14777 {
14778 struct neon_type_el et = neon_check_type (3, NS_QDD,
14779 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_KEY);
14780 if (et.type == NT_poly)
88714cb8 14781 NEON_ENCODE (POLY, inst);
5287ad62 14782 else
88714cb8 14783 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14784 /* For polynomial encoding, size field must be 0b00 and the U bit must be
14785 zero. Should be OK as-is. */
14786 neon_mixed_length (et, et.size);
14787 }
14788}
14789
14790static void
14791do_neon_ext (void)
14792{
037e8744 14793 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
14794 struct neon_type_el et = neon_check_type (3, rs,
14795 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14796 unsigned imm = (inst.operands[3].imm * et.size) / 8;
35997600
NC
14797
14798 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
14799 _("shift out of range"));
5287ad62
JB
14800 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14801 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14802 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14803 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14804 inst.instruction |= LOW4 (inst.operands[2].reg);
14805 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 14806 inst.instruction |= neon_quad (rs) << 6;
5287ad62 14807 inst.instruction |= imm << 8;
5f4273c7 14808
88714cb8 14809 neon_dp_fixup (&inst);
5287ad62
JB
14810}
14811
14812static void
14813do_neon_rev (void)
14814{
037e8744 14815 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
14816 struct neon_type_el et = neon_check_type (2, rs,
14817 N_EQK, N_8 | N_16 | N_32 | N_KEY);
14818 unsigned op = (inst.instruction >> 7) & 3;
14819 /* N (width of reversed regions) is encoded as part of the bitmask. We
14820 extract it here to check the elements to be reversed are smaller.
14821 Otherwise we'd get a reserved instruction. */
14822 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
9c2799c2 14823 gas_assert (elsize != 0);
5287ad62
JB
14824 constraint (et.size >= elsize,
14825 _("elements must be smaller than reversal region"));
037e8744 14826 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
14827}
14828
14829static void
14830do_neon_dup (void)
14831{
14832 if (inst.operands[1].isscalar)
14833 {
037e8744 14834 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037
JB
14835 struct neon_type_el et = neon_check_type (2, rs,
14836 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 14837 unsigned sizebits = et.size >> 3;
dcbf9037 14838 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 14839 int logsize = neon_logbits (et.size);
dcbf9037 14840 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
14841
14842 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
14843 return;
14844
88714cb8 14845 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
14846 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14847 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14848 inst.instruction |= LOW4 (dm);
14849 inst.instruction |= HI1 (dm) << 5;
037e8744 14850 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14851 inst.instruction |= x << 17;
14852 inst.instruction |= sizebits << 16;
5f4273c7 14853
88714cb8 14854 neon_dp_fixup (&inst);
5287ad62
JB
14855 }
14856 else
14857 {
037e8744
JB
14858 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
14859 struct neon_type_el et = neon_check_type (2, rs,
14860 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62 14861 /* Duplicate ARM register to lanes of vector. */
88714cb8 14862 NEON_ENCODE (ARMREG, inst);
5287ad62
JB
14863 switch (et.size)
14864 {
14865 case 8: inst.instruction |= 0x400000; break;
14866 case 16: inst.instruction |= 0x000020; break;
14867 case 32: inst.instruction |= 0x000000; break;
14868 default: break;
14869 }
14870 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
14871 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
14872 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 14873 inst.instruction |= neon_quad (rs) << 21;
5287ad62
JB
14874 /* The encoding for this instruction is identical for the ARM and Thumb
14875 variants, except for the condition field. */
037e8744 14876 do_vfp_cond_or_thumb ();
5287ad62
JB
14877 }
14878}
14879
14880/* VMOV has particularly many variations. It can be one of:
14881 0. VMOV<c><q> <Qd>, <Qm>
14882 1. VMOV<c><q> <Dd>, <Dm>
14883 (Register operations, which are VORR with Rm = Rn.)
14884 2. VMOV<c><q>.<dt> <Qd>, #<imm>
14885 3. VMOV<c><q>.<dt> <Dd>, #<imm>
14886 (Immediate loads.)
14887 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
14888 (ARM register to scalar.)
14889 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
14890 (Two ARM registers to vector.)
14891 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
14892 (Scalar to ARM register.)
14893 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
14894 (Vector to two ARM registers.)
037e8744
JB
14895 8. VMOV.F32 <Sd>, <Sm>
14896 9. VMOV.F64 <Dd>, <Dm>
14897 (VFP register moves.)
14898 10. VMOV.F32 <Sd>, #imm
14899 11. VMOV.F64 <Dd>, #imm
14900 (VFP float immediate load.)
14901 12. VMOV <Rd>, <Sm>
14902 (VFP single to ARM reg.)
14903 13. VMOV <Sd>, <Rm>
14904 (ARM reg to VFP single.)
14905 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
14906 (Two ARM regs to two VFP singles.)
14907 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
14908 (Two VFP singles to two ARM regs.)
5f4273c7 14909
037e8744
JB
14910 These cases can be disambiguated using neon_select_shape, except cases 1/9
14911 and 3/11 which depend on the operand type too.
5f4273c7 14912
5287ad62 14913 All the encoded bits are hardcoded by this function.
5f4273c7 14914
b7fc2769
JB
14915 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
14916 Cases 5, 7 may be used with VFPv2 and above.
5f4273c7 14917
5287ad62 14918 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
5f4273c7 14919 can specify a type where it doesn't make sense to, and is ignored). */
5287ad62
JB
14920
14921static void
14922do_neon_mov (void)
14923{
037e8744
JB
14924 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
14925 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
14926 NS_NULL);
14927 struct neon_type_el et;
14928 const char *ldconst = 0;
5287ad62 14929
037e8744 14930 switch (rs)
5287ad62 14931 {
037e8744
JB
14932 case NS_DD: /* case 1/9. */
14933 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
14934 /* It is not an error here if no type is given. */
14935 inst.error = NULL;
14936 if (et.type == NT_float && et.size == 64)
5287ad62 14937 {
037e8744
JB
14938 do_vfp_nsyn_opcode ("fcpyd");
14939 break;
5287ad62 14940 }
037e8744 14941 /* fall through. */
5287ad62 14942
037e8744
JB
14943 case NS_QQ: /* case 0/1. */
14944 {
14945 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14946 return;
14947 /* The architecture manual I have doesn't explicitly state which
14948 value the U bit should have for register->register moves, but
14949 the equivalent VORR instruction has U = 0, so do that. */
14950 inst.instruction = 0x0200110;
14951 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14952 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14953 inst.instruction |= LOW4 (inst.operands[1].reg);
14954 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14955 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14956 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14957 inst.instruction |= neon_quad (rs) << 6;
14958
88714cb8 14959 neon_dp_fixup (&inst);
037e8744
JB
14960 }
14961 break;
5f4273c7 14962
037e8744
JB
14963 case NS_DI: /* case 3/11. */
14964 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
14965 inst.error = NULL;
14966 if (et.type == NT_float && et.size == 64)
5287ad62 14967 {
037e8744
JB
14968 /* case 11 (fconstd). */
14969 ldconst = "fconstd";
14970 goto encode_fconstd;
5287ad62 14971 }
037e8744
JB
14972 /* fall through. */
14973
14974 case NS_QI: /* case 2/3. */
14975 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14976 return;
14977 inst.instruction = 0x0800010;
14978 neon_move_immediate ();
88714cb8 14979 neon_dp_fixup (&inst);
5287ad62 14980 break;
5f4273c7 14981
037e8744
JB
14982 case NS_SR: /* case 4. */
14983 {
14984 unsigned bcdebits = 0;
91d6fa6a 14985 int logsize;
037e8744
JB
14986 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
14987 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
14988
91d6fa6a
NC
14989 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
14990 logsize = neon_logbits (et.size);
14991
037e8744
JB
14992 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
14993 _(BAD_FPU));
14994 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
14995 && et.size != 32, _(BAD_FPU));
14996 constraint (et.type == NT_invtype, _("bad type for scalar"));
14997 constraint (x >= 64 / et.size, _("scalar index out of range"));
14998
14999 switch (et.size)
15000 {
15001 case 8: bcdebits = 0x8; break;
15002 case 16: bcdebits = 0x1; break;
15003 case 32: bcdebits = 0x0; break;
15004 default: ;
15005 }
15006
15007 bcdebits |= x << logsize;
15008
15009 inst.instruction = 0xe000b10;
15010 do_vfp_cond_or_thumb ();
15011 inst.instruction |= LOW4 (dn) << 16;
15012 inst.instruction |= HI1 (dn) << 7;
15013 inst.instruction |= inst.operands[1].reg << 12;
15014 inst.instruction |= (bcdebits & 3) << 5;
15015 inst.instruction |= (bcdebits >> 2) << 21;
15016 }
15017 break;
5f4273c7 15018
037e8744 15019 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 15020 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
037e8744 15021 _(BAD_FPU));
b7fc2769 15022
037e8744
JB
15023 inst.instruction = 0xc400b10;
15024 do_vfp_cond_or_thumb ();
15025 inst.instruction |= LOW4 (inst.operands[0].reg);
15026 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
15027 inst.instruction |= inst.operands[1].reg << 12;
15028 inst.instruction |= inst.operands[2].reg << 16;
15029 break;
5f4273c7 15030
037e8744
JB
15031 case NS_RS: /* case 6. */
15032 {
91d6fa6a 15033 unsigned logsize;
037e8744
JB
15034 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
15035 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
15036 unsigned abcdebits = 0;
15037
91d6fa6a
NC
15038 et = neon_check_type (2, NS_NULL,
15039 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
15040 logsize = neon_logbits (et.size);
15041
037e8744
JB
15042 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15043 _(BAD_FPU));
15044 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15045 && et.size != 32, _(BAD_FPU));
15046 constraint (et.type == NT_invtype, _("bad type for scalar"));
15047 constraint (x >= 64 / et.size, _("scalar index out of range"));
15048
15049 switch (et.size)
15050 {
15051 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
15052 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
15053 case 32: abcdebits = 0x00; break;
15054 default: ;
15055 }
15056
15057 abcdebits |= x << logsize;
15058 inst.instruction = 0xe100b10;
15059 do_vfp_cond_or_thumb ();
15060 inst.instruction |= LOW4 (dn) << 16;
15061 inst.instruction |= HI1 (dn) << 7;
15062 inst.instruction |= inst.operands[0].reg << 12;
15063 inst.instruction |= (abcdebits & 3) << 5;
15064 inst.instruction |= (abcdebits >> 2) << 21;
15065 }
15066 break;
5f4273c7 15067
037e8744
JB
15068 case NS_RRD: /* case 7 (fmrrd). */
15069 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
15070 _(BAD_FPU));
15071
15072 inst.instruction = 0xc500b10;
15073 do_vfp_cond_or_thumb ();
15074 inst.instruction |= inst.operands[0].reg << 12;
15075 inst.instruction |= inst.operands[1].reg << 16;
15076 inst.instruction |= LOW4 (inst.operands[2].reg);
15077 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15078 break;
5f4273c7 15079
037e8744
JB
15080 case NS_FF: /* case 8 (fcpys). */
15081 do_vfp_nsyn_opcode ("fcpys");
15082 break;
5f4273c7 15083
037e8744
JB
15084 case NS_FI: /* case 10 (fconsts). */
15085 ldconst = "fconsts";
15086 encode_fconstd:
15087 if (is_quarter_float (inst.operands[1].imm))
5287ad62 15088 {
037e8744
JB
15089 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
15090 do_vfp_nsyn_opcode (ldconst);
5287ad62
JB
15091 }
15092 else
037e8744
JB
15093 first_error (_("immediate out of range"));
15094 break;
5f4273c7 15095
037e8744
JB
15096 case NS_RF: /* case 12 (fmrs). */
15097 do_vfp_nsyn_opcode ("fmrs");
15098 break;
5f4273c7 15099
037e8744
JB
15100 case NS_FR: /* case 13 (fmsr). */
15101 do_vfp_nsyn_opcode ("fmsr");
15102 break;
5f4273c7 15103
037e8744
JB
15104 /* The encoders for the fmrrs and fmsrr instructions expect three operands
15105 (one of which is a list), but we have parsed four. Do some fiddling to
15106 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
15107 expect. */
15108 case NS_RRFF: /* case 14 (fmrrs). */
15109 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
15110 _("VFP registers must be adjacent"));
15111 inst.operands[2].imm = 2;
15112 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15113 do_vfp_nsyn_opcode ("fmrrs");
15114 break;
5f4273c7 15115
037e8744
JB
15116 case NS_FFRR: /* case 15 (fmsrr). */
15117 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
15118 _("VFP registers must be adjacent"));
15119 inst.operands[1] = inst.operands[2];
15120 inst.operands[2] = inst.operands[3];
15121 inst.operands[0].imm = 2;
15122 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15123 do_vfp_nsyn_opcode ("fmsrr");
5287ad62 15124 break;
5f4273c7 15125
5287ad62
JB
15126 default:
15127 abort ();
15128 }
15129}
15130
15131static void
15132do_neon_rshift_round_imm (void)
15133{
037e8744 15134 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15135 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
15136 int imm = inst.operands[2].imm;
15137
15138 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
15139 if (imm == 0)
15140 {
15141 inst.operands[2].present = 0;
15142 do_neon_mov ();
15143 return;
15144 }
15145
15146 constraint (imm < 1 || (unsigned)imm > et.size,
15147 _("immediate out of range for shift"));
037e8744 15148 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
15149 et.size - imm);
15150}
15151
15152static void
15153do_neon_movl (void)
15154{
15155 struct neon_type_el et = neon_check_type (2, NS_QD,
15156 N_EQK | N_DBL, N_SU_32 | N_KEY);
15157 unsigned sizebits = et.size >> 3;
15158 inst.instruction |= sizebits << 19;
15159 neon_two_same (0, et.type == NT_unsigned, -1);
15160}
15161
15162static void
15163do_neon_trn (void)
15164{
037e8744 15165 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15166 struct neon_type_el et = neon_check_type (2, rs,
15167 N_EQK, N_8 | N_16 | N_32 | N_KEY);
88714cb8 15168 NEON_ENCODE (INTEGER, inst);
037e8744 15169 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15170}
15171
15172static void
15173do_neon_zip_uzp (void)
15174{
037e8744 15175 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15176 struct neon_type_el et = neon_check_type (2, rs,
15177 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15178 if (rs == NS_DD && et.size == 32)
15179 {
15180 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
15181 inst.instruction = N_MNEM_vtrn;
15182 do_neon_trn ();
15183 return;
15184 }
037e8744 15185 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15186}
15187
15188static void
15189do_neon_sat_abs_neg (void)
15190{
037e8744 15191 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15192 struct neon_type_el et = neon_check_type (2, rs,
15193 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15194 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15195}
15196
15197static void
15198do_neon_pair_long (void)
15199{
037e8744 15200 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15201 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
15202 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
15203 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 15204 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15205}
15206
15207static void
15208do_neon_recip_est (void)
15209{
037e8744 15210 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15211 struct neon_type_el et = neon_check_type (2, rs,
15212 N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
15213 inst.instruction |= (et.type == NT_float) << 8;
037e8744 15214 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15215}
15216
15217static void
15218do_neon_cls (void)
15219{
037e8744 15220 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15221 struct neon_type_el et = neon_check_type (2, rs,
15222 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15223 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15224}
15225
15226static void
15227do_neon_clz (void)
15228{
037e8744 15229 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15230 struct neon_type_el et = neon_check_type (2, rs,
15231 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 15232 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15233}
15234
15235static void
15236do_neon_cnt (void)
15237{
037e8744 15238 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15239 struct neon_type_el et = neon_check_type (2, rs,
15240 N_EQK | N_INT, N_8 | N_KEY);
037e8744 15241 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15242}
15243
15244static void
15245do_neon_swp (void)
15246{
037e8744
JB
15247 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
15248 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
15249}
15250
15251static void
15252do_neon_tbl_tbx (void)
15253{
15254 unsigned listlenbits;
dcbf9037 15255 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5f4273c7 15256
5287ad62
JB
15257 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
15258 {
dcbf9037 15259 first_error (_("bad list length for table lookup"));
5287ad62
JB
15260 return;
15261 }
5f4273c7 15262
5287ad62
JB
15263 listlenbits = inst.operands[1].imm - 1;
15264 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15265 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15266 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15267 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15268 inst.instruction |= LOW4 (inst.operands[2].reg);
15269 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15270 inst.instruction |= listlenbits << 8;
5f4273c7 15271
88714cb8 15272 neon_dp_fixup (&inst);
5287ad62
JB
15273}
15274
15275static void
15276do_neon_ldm_stm (void)
15277{
15278 /* P, U and L bits are part of bitmask. */
15279 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
15280 unsigned offsetbits = inst.operands[1].imm * 2;
15281
037e8744
JB
15282 if (inst.operands[1].issingle)
15283 {
15284 do_vfp_nsyn_ldm_stm (is_dbmode);
15285 return;
15286 }
15287
5287ad62
JB
15288 constraint (is_dbmode && !inst.operands[0].writeback,
15289 _("writeback (!) must be used for VLDMDB and VSTMDB"));
15290
15291 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
15292 _("register list must contain at least 1 and at most 16 "
15293 "registers"));
15294
15295 inst.instruction |= inst.operands[0].reg << 16;
15296 inst.instruction |= inst.operands[0].writeback << 21;
15297 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15298 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
15299
15300 inst.instruction |= offsetbits;
5f4273c7 15301
037e8744 15302 do_vfp_cond_or_thumb ();
5287ad62
JB
15303}
15304
15305static void
15306do_neon_ldr_str (void)
15307{
5287ad62 15308 int is_ldr = (inst.instruction & (1 << 20)) != 0;
5f4273c7 15309
6844b2c2
MGD
15310 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
15311 And is UNPREDICTABLE in thumb mode. */
fa94de6b 15312 if (!is_ldr
6844b2c2
MGD
15313 && inst.operands[1].reg == REG_PC
15314 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
15315 {
15316 if (!thumb_mode && warn_on_deprecated)
15317 as_warn (_("Use of PC here is deprecated"));
15318 else
15319 inst.error = _("Use of PC here is UNPREDICTABLE");
15320 }
15321
037e8744
JB
15322 if (inst.operands[0].issingle)
15323 {
cd2f129f
JB
15324 if (is_ldr)
15325 do_vfp_nsyn_opcode ("flds");
15326 else
15327 do_vfp_nsyn_opcode ("fsts");
5287ad62
JB
15328 }
15329 else
5287ad62 15330 {
cd2f129f
JB
15331 if (is_ldr)
15332 do_vfp_nsyn_opcode ("fldd");
5287ad62 15333 else
cd2f129f 15334 do_vfp_nsyn_opcode ("fstd");
5287ad62 15335 }
5287ad62
JB
15336}
15337
15338/* "interleave" version also handles non-interleaving register VLD1/VST1
15339 instructions. */
15340
15341static void
15342do_neon_ld_st_interleave (void)
15343{
037e8744 15344 struct neon_type_el et = neon_check_type (1, NS_NULL,
5287ad62
JB
15345 N_8 | N_16 | N_32 | N_64);
15346 unsigned alignbits = 0;
15347 unsigned idx;
15348 /* The bits in this table go:
15349 0: register stride of one (0) or two (1)
15350 1,2: register list length, minus one (1, 2, 3, 4).
15351 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
15352 We use -1 for invalid entries. */
15353 const int typetable[] =
15354 {
15355 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
15356 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
15357 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
15358 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
15359 };
15360 int typebits;
15361
dcbf9037
JB
15362 if (et.type == NT_invtype)
15363 return;
15364
5287ad62
JB
15365 if (inst.operands[1].immisalign)
15366 switch (inst.operands[1].imm >> 8)
15367 {
15368 case 64: alignbits = 1; break;
15369 case 128:
e23c0ad8
JZ
15370 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
15371 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
5287ad62
JB
15372 goto bad_alignment;
15373 alignbits = 2;
15374 break;
15375 case 256:
e23c0ad8 15376 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
5287ad62
JB
15377 goto bad_alignment;
15378 alignbits = 3;
15379 break;
15380 default:
15381 bad_alignment:
dcbf9037 15382 first_error (_("bad alignment"));
5287ad62
JB
15383 return;
15384 }
15385
15386 inst.instruction |= alignbits << 4;
15387 inst.instruction |= neon_logbits (et.size) << 6;
15388
15389 /* Bits [4:6] of the immediate in a list specifier encode register stride
15390 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
15391 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
15392 up the right value for "type" in a table based on this value and the given
15393 list style, then stick it back. */
15394 idx = ((inst.operands[0].imm >> 4) & 7)
15395 | (((inst.instruction >> 8) & 3) << 3);
15396
15397 typebits = typetable[idx];
5f4273c7 15398
5287ad62
JB
15399 constraint (typebits == -1, _("bad list type for instruction"));
15400
15401 inst.instruction &= ~0xf00;
15402 inst.instruction |= typebits << 8;
15403}
15404
15405/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
15406 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
15407 otherwise. The variable arguments are a list of pairs of legal (size, align)
15408 values, terminated with -1. */
15409
15410static int
15411neon_alignment_bit (int size, int align, int *do_align, ...)
15412{
15413 va_list ap;
15414 int result = FAIL, thissize, thisalign;
5f4273c7 15415
5287ad62
JB
15416 if (!inst.operands[1].immisalign)
15417 {
15418 *do_align = 0;
15419 return SUCCESS;
15420 }
5f4273c7 15421
5287ad62
JB
15422 va_start (ap, do_align);
15423
15424 do
15425 {
15426 thissize = va_arg (ap, int);
15427 if (thissize == -1)
15428 break;
15429 thisalign = va_arg (ap, int);
15430
15431 if (size == thissize && align == thisalign)
15432 result = SUCCESS;
15433 }
15434 while (result != SUCCESS);
15435
15436 va_end (ap);
15437
15438 if (result == SUCCESS)
15439 *do_align = 1;
15440 else
dcbf9037 15441 first_error (_("unsupported alignment for instruction"));
5f4273c7 15442
5287ad62
JB
15443 return result;
15444}
15445
15446static void
15447do_neon_ld_st_lane (void)
15448{
037e8744 15449 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15450 int align_good, do_align = 0;
15451 int logsize = neon_logbits (et.size);
15452 int align = inst.operands[1].imm >> 8;
15453 int n = (inst.instruction >> 8) & 3;
15454 int max_el = 64 / et.size;
5f4273c7 15455
dcbf9037
JB
15456 if (et.type == NT_invtype)
15457 return;
5f4273c7 15458
5287ad62
JB
15459 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
15460 _("bad list length"));
15461 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
15462 _("scalar index out of range"));
15463 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
15464 && et.size == 8,
15465 _("stride of 2 unavailable when element size is 8"));
5f4273c7 15466
5287ad62
JB
15467 switch (n)
15468 {
15469 case 0: /* VLD1 / VST1. */
15470 align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
15471 32, 32, -1);
15472 if (align_good == FAIL)
15473 return;
15474 if (do_align)
15475 {
15476 unsigned alignbits = 0;
15477 switch (et.size)
15478 {
15479 case 16: alignbits = 0x1; break;
15480 case 32: alignbits = 0x3; break;
15481 default: ;
15482 }
15483 inst.instruction |= alignbits << 4;
15484 }
15485 break;
15486
15487 case 1: /* VLD2 / VST2. */
15488 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
15489 32, 64, -1);
15490 if (align_good == FAIL)
15491 return;
15492 if (do_align)
15493 inst.instruction |= 1 << 4;
15494 break;
15495
15496 case 2: /* VLD3 / VST3. */
15497 constraint (inst.operands[1].immisalign,
15498 _("can't use alignment with this instruction"));
15499 break;
15500
15501 case 3: /* VLD4 / VST4. */
15502 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15503 16, 64, 32, 64, 32, 128, -1);
15504 if (align_good == FAIL)
15505 return;
15506 if (do_align)
15507 {
15508 unsigned alignbits = 0;
15509 switch (et.size)
15510 {
15511 case 8: alignbits = 0x1; break;
15512 case 16: alignbits = 0x1; break;
15513 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
15514 default: ;
15515 }
15516 inst.instruction |= alignbits << 4;
15517 }
15518 break;
15519
15520 default: ;
15521 }
15522
15523 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
15524 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15525 inst.instruction |= 1 << (4 + logsize);
5f4273c7 15526
5287ad62
JB
15527 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
15528 inst.instruction |= logsize << 10;
15529}
15530
15531/* Encode single n-element structure to all lanes VLD<n> instructions. */
15532
15533static void
15534do_neon_ld_dup (void)
15535{
037e8744 15536 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15537 int align_good, do_align = 0;
15538
dcbf9037
JB
15539 if (et.type == NT_invtype)
15540 return;
15541
5287ad62
JB
15542 switch ((inst.instruction >> 8) & 3)
15543 {
15544 case 0: /* VLD1. */
9c2799c2 15545 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
5287ad62
JB
15546 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
15547 &do_align, 16, 16, 32, 32, -1);
15548 if (align_good == FAIL)
15549 return;
15550 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
15551 {
15552 case 1: break;
15553 case 2: inst.instruction |= 1 << 5; break;
dcbf9037 15554 default: first_error (_("bad list length")); return;
5287ad62
JB
15555 }
15556 inst.instruction |= neon_logbits (et.size) << 6;
15557 break;
15558
15559 case 1: /* VLD2. */
15560 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
15561 &do_align, 8, 16, 16, 32, 32, 64, -1);
15562 if (align_good == FAIL)
15563 return;
15564 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
15565 _("bad list length"));
15566 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15567 inst.instruction |= 1 << 5;
15568 inst.instruction |= neon_logbits (et.size) << 6;
15569 break;
15570
15571 case 2: /* VLD3. */
15572 constraint (inst.operands[1].immisalign,
15573 _("can't use alignment with this instruction"));
15574 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
15575 _("bad list length"));
15576 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15577 inst.instruction |= 1 << 5;
15578 inst.instruction |= neon_logbits (et.size) << 6;
15579 break;
15580
15581 case 3: /* VLD4. */
15582 {
15583 int align = inst.operands[1].imm >> 8;
15584 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15585 16, 64, 32, 64, 32, 128, -1);
15586 if (align_good == FAIL)
15587 return;
15588 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
15589 _("bad list length"));
15590 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15591 inst.instruction |= 1 << 5;
15592 if (et.size == 32 && align == 128)
15593 inst.instruction |= 0x3 << 6;
15594 else
15595 inst.instruction |= neon_logbits (et.size) << 6;
15596 }
15597 break;
15598
15599 default: ;
15600 }
15601
15602 inst.instruction |= do_align << 4;
15603}
15604
15605/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
15606 apart from bits [11:4]. */
15607
15608static void
15609do_neon_ldx_stx (void)
15610{
b1a769ed
DG
15611 if (inst.operands[1].isreg)
15612 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
15613
5287ad62
JB
15614 switch (NEON_LANE (inst.operands[0].imm))
15615 {
15616 case NEON_INTERLEAVE_LANES:
88714cb8 15617 NEON_ENCODE (INTERLV, inst);
5287ad62
JB
15618 do_neon_ld_st_interleave ();
15619 break;
5f4273c7 15620
5287ad62 15621 case NEON_ALL_LANES:
88714cb8 15622 NEON_ENCODE (DUP, inst);
5287ad62
JB
15623 do_neon_ld_dup ();
15624 break;
5f4273c7 15625
5287ad62 15626 default:
88714cb8 15627 NEON_ENCODE (LANE, inst);
5287ad62
JB
15628 do_neon_ld_st_lane ();
15629 }
15630
15631 /* L bit comes from bit mask. */
15632 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15633 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15634 inst.instruction |= inst.operands[1].reg << 16;
5f4273c7 15635
5287ad62
JB
15636 if (inst.operands[1].postind)
15637 {
15638 int postreg = inst.operands[1].imm & 0xf;
15639 constraint (!inst.operands[1].immisreg,
15640 _("post-index must be a register"));
15641 constraint (postreg == 0xd || postreg == 0xf,
15642 _("bad register for post-index"));
15643 inst.instruction |= postreg;
15644 }
15645 else if (inst.operands[1].writeback)
15646 {
15647 inst.instruction |= 0xd;
15648 }
15649 else
5f4273c7
NC
15650 inst.instruction |= 0xf;
15651
5287ad62
JB
15652 if (thumb_mode)
15653 inst.instruction |= 0xf9000000;
15654 else
15655 inst.instruction |= 0xf4000000;
15656}
5287ad62
JB
15657\f
15658/* Overall per-instruction processing. */
15659
15660/* We need to be able to fix up arbitrary expressions in some statements.
15661 This is so that we can handle symbols that are an arbitrary distance from
15662 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
15663 which returns part of an address in a form which will be valid for
15664 a data instruction. We do this by pushing the expression into a symbol
15665 in the expr_section, and creating a fix for that. */
15666
15667static void
15668fix_new_arm (fragS * frag,
15669 int where,
15670 short int size,
15671 expressionS * exp,
15672 int pc_rel,
15673 int reloc)
15674{
15675 fixS * new_fix;
15676
15677 switch (exp->X_op)
15678 {
15679 case O_constant:
6e7ce2cd
PB
15680 if (pc_rel)
15681 {
15682 /* Create an absolute valued symbol, so we have something to
15683 refer to in the object file. Unfortunately for us, gas's
15684 generic expression parsing will already have folded out
15685 any use of .set foo/.type foo %function that may have
15686 been used to set type information of the target location,
15687 that's being specified symbolically. We have to presume
15688 the user knows what they are doing. */
15689 char name[16 + 8];
15690 symbolS *symbol;
15691
15692 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
15693
15694 symbol = symbol_find_or_make (name);
15695 S_SET_SEGMENT (symbol, absolute_section);
15696 symbol_set_frag (symbol, &zero_address_frag);
15697 S_SET_VALUE (symbol, exp->X_add_number);
15698 exp->X_op = O_symbol;
15699 exp->X_add_symbol = symbol;
15700 exp->X_add_number = 0;
15701 }
15702 /* FALLTHROUGH */
5287ad62
JB
15703 case O_symbol:
15704 case O_add:
15705 case O_subtract:
21d799b5
NC
15706 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
15707 (enum bfd_reloc_code_real) reloc);
5287ad62
JB
15708 break;
15709
15710 default:
21d799b5
NC
15711 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
15712 pc_rel, (enum bfd_reloc_code_real) reloc);
5287ad62
JB
15713 break;
15714 }
15715
15716 /* Mark whether the fix is to a THUMB instruction, or an ARM
15717 instruction. */
15718 new_fix->tc_fix_data = thumb_mode;
15719}
15720
15721/* Create a frg for an instruction requiring relaxation. */
15722static void
15723output_relax_insn (void)
15724{
15725 char * to;
15726 symbolS *sym;
0110f2b8
PB
15727 int offset;
15728
6e1cb1a6
PB
15729 /* The size of the instruction is unknown, so tie the debug info to the
15730 start of the instruction. */
15731 dwarf2_emit_insn (0);
6e1cb1a6 15732
0110f2b8
PB
15733 switch (inst.reloc.exp.X_op)
15734 {
15735 case O_symbol:
15736 sym = inst.reloc.exp.X_add_symbol;
15737 offset = inst.reloc.exp.X_add_number;
15738 break;
15739 case O_constant:
15740 sym = NULL;
15741 offset = inst.reloc.exp.X_add_number;
15742 break;
15743 default:
15744 sym = make_expr_symbol (&inst.reloc.exp);
15745 offset = 0;
15746 break;
15747 }
15748 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
15749 inst.relax, sym, offset, NULL/*offset, opcode*/);
15750 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
15751}
15752
15753/* Write a 32-bit thumb instruction to buf. */
15754static void
15755put_thumb32_insn (char * buf, unsigned long insn)
15756{
15757 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
15758 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
15759}
15760
b99bd4ef 15761static void
c19d1205 15762output_inst (const char * str)
b99bd4ef 15763{
c19d1205 15764 char * to = NULL;
b99bd4ef 15765
c19d1205 15766 if (inst.error)
b99bd4ef 15767 {
c19d1205 15768 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
15769 return;
15770 }
5f4273c7
NC
15771 if (inst.relax)
15772 {
15773 output_relax_insn ();
0110f2b8 15774 return;
5f4273c7 15775 }
c19d1205
ZW
15776 if (inst.size == 0)
15777 return;
b99bd4ef 15778
c19d1205 15779 to = frag_more (inst.size);
8dc2430f
NC
15780 /* PR 9814: Record the thumb mode into the current frag so that we know
15781 what type of NOP padding to use, if necessary. We override any previous
15782 setting so that if the mode has changed then the NOPS that we use will
15783 match the encoding of the last instruction in the frag. */
cd000bff 15784 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
c19d1205
ZW
15785
15786 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 15787 {
9c2799c2 15788 gas_assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 15789 put_thumb32_insn (to, inst.instruction);
b99bd4ef 15790 }
c19d1205 15791 else if (inst.size > INSN_SIZE)
b99bd4ef 15792 {
9c2799c2 15793 gas_assert (inst.size == (2 * INSN_SIZE));
c19d1205
ZW
15794 md_number_to_chars (to, inst.instruction, INSN_SIZE);
15795 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 15796 }
c19d1205
ZW
15797 else
15798 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 15799
c19d1205
ZW
15800 if (inst.reloc.type != BFD_RELOC_UNUSED)
15801 fix_new_arm (frag_now, to - frag_now->fr_literal,
15802 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
15803 inst.reloc.type);
b99bd4ef 15804
c19d1205 15805 dwarf2_emit_insn (inst.size);
c19d1205 15806}
b99bd4ef 15807
e07e6e58
NC
15808static char *
15809output_it_inst (int cond, int mask, char * to)
15810{
15811 unsigned long instruction = 0xbf00;
15812
15813 mask &= 0xf;
15814 instruction |= mask;
15815 instruction |= cond << 4;
15816
15817 if (to == NULL)
15818 {
15819 to = frag_more (2);
15820#ifdef OBJ_ELF
15821 dwarf2_emit_insn (2);
15822#endif
15823 }
15824
15825 md_number_to_chars (to, instruction, 2);
15826
15827 return to;
15828}
15829
c19d1205
ZW
15830/* Tag values used in struct asm_opcode's tag field. */
15831enum opcode_tag
15832{
15833 OT_unconditional, /* Instruction cannot be conditionalized.
15834 The ARM condition field is still 0xE. */
15835 OT_unconditionalF, /* Instruction cannot be conditionalized
15836 and carries 0xF in its ARM condition field. */
15837 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744
JB
15838 OT_csuffixF, /* Some forms of the instruction take a conditional
15839 suffix, others place 0xF where the condition field
15840 would be. */
c19d1205
ZW
15841 OT_cinfix3, /* Instruction takes a conditional infix,
15842 beginning at character index 3. (In
15843 unified mode, it becomes a suffix.) */
088fa78e
KH
15844 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
15845 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
15846 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
15847 character index 3, even in unified mode. Used for
15848 legacy instructions where suffix and infix forms
15849 may be ambiguous. */
c19d1205 15850 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 15851 suffix or an infix at character index 3. */
c19d1205
ZW
15852 OT_odd_infix_unc, /* This is the unconditional variant of an
15853 instruction that takes a conditional infix
15854 at an unusual position. In unified mode,
15855 this variant will accept a suffix. */
15856 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
15857 are the conditional variants of instructions that
15858 take conditional infixes in unusual positions.
15859 The infix appears at character index
15860 (tag - OT_odd_infix_0). These are not accepted
15861 in unified mode. */
15862};
b99bd4ef 15863
c19d1205
ZW
15864/* Subroutine of md_assemble, responsible for looking up the primary
15865 opcode from the mnemonic the user wrote. STR points to the
15866 beginning of the mnemonic.
15867
15868 This is not simply a hash table lookup, because of conditional
15869 variants. Most instructions have conditional variants, which are
15870 expressed with a _conditional affix_ to the mnemonic. If we were
15871 to encode each conditional variant as a literal string in the opcode
15872 table, it would have approximately 20,000 entries.
15873
15874 Most mnemonics take this affix as a suffix, and in unified syntax,
15875 'most' is upgraded to 'all'. However, in the divided syntax, some
15876 instructions take the affix as an infix, notably the s-variants of
15877 the arithmetic instructions. Of those instructions, all but six
15878 have the infix appear after the third character of the mnemonic.
15879
15880 Accordingly, the algorithm for looking up primary opcodes given
15881 an identifier is:
15882
15883 1. Look up the identifier in the opcode table.
15884 If we find a match, go to step U.
15885
15886 2. Look up the last two characters of the identifier in the
15887 conditions table. If we find a match, look up the first N-2
15888 characters of the identifier in the opcode table. If we
15889 find a match, go to step CE.
15890
15891 3. Look up the fourth and fifth characters of the identifier in
15892 the conditions table. If we find a match, extract those
15893 characters from the identifier, and look up the remaining
15894 characters in the opcode table. If we find a match, go
15895 to step CM.
15896
15897 4. Fail.
15898
15899 U. Examine the tag field of the opcode structure, in case this is
15900 one of the six instructions with its conditional infix in an
15901 unusual place. If it is, the tag tells us where to find the
15902 infix; look it up in the conditions table and set inst.cond
15903 accordingly. Otherwise, this is an unconditional instruction.
15904 Again set inst.cond accordingly. Return the opcode structure.
15905
15906 CE. Examine the tag field to make sure this is an instruction that
15907 should receive a conditional suffix. If it is not, fail.
15908 Otherwise, set inst.cond from the suffix we already looked up,
15909 and return the opcode structure.
15910
15911 CM. Examine the tag field to make sure this is an instruction that
15912 should receive a conditional infix after the third character.
15913 If it is not, fail. Otherwise, undo the edits to the current
15914 line of input and proceed as for case CE. */
15915
15916static const struct asm_opcode *
15917opcode_lookup (char **str)
15918{
15919 char *end, *base;
15920 char *affix;
15921 const struct asm_opcode *opcode;
15922 const struct asm_cond *cond;
e3cb604e 15923 char save[2];
c19d1205
ZW
15924
15925 /* Scan up to the end of the mnemonic, which must end in white space,
721a8186 15926 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
c19d1205 15927 for (base = end = *str; *end != '\0'; end++)
721a8186 15928 if (*end == ' ' || *end == '.')
c19d1205 15929 break;
b99bd4ef 15930
c19d1205 15931 if (end == base)
c921be7d 15932 return NULL;
b99bd4ef 15933
5287ad62 15934 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 15935 if (end[0] == '.')
b99bd4ef 15936 {
5287ad62 15937 int offset = 2;
5f4273c7 15938
267d2029
JB
15939 /* The .w and .n suffixes are only valid if the unified syntax is in
15940 use. */
15941 if (unified_syntax && end[1] == 'w')
c19d1205 15942 inst.size_req = 4;
267d2029 15943 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
15944 inst.size_req = 2;
15945 else
5287ad62
JB
15946 offset = 0;
15947
15948 inst.vectype.elems = 0;
15949
15950 *str = end + offset;
b99bd4ef 15951
5f4273c7 15952 if (end[offset] == '.')
5287ad62 15953 {
267d2029
JB
15954 /* See if we have a Neon type suffix (possible in either unified or
15955 non-unified ARM syntax mode). */
dcbf9037 15956 if (parse_neon_type (&inst.vectype, str) == FAIL)
c921be7d 15957 return NULL;
5287ad62
JB
15958 }
15959 else if (end[offset] != '\0' && end[offset] != ' ')
c921be7d 15960 return NULL;
b99bd4ef 15961 }
c19d1205
ZW
15962 else
15963 *str = end;
b99bd4ef 15964
c19d1205 15965 /* Look for unaffixed or special-case affixed mnemonic. */
21d799b5
NC
15966 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
15967 end - base);
c19d1205 15968 if (opcode)
b99bd4ef 15969 {
c19d1205
ZW
15970 /* step U */
15971 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 15972 {
c19d1205
ZW
15973 inst.cond = COND_ALWAYS;
15974 return opcode;
b99bd4ef 15975 }
b99bd4ef 15976
278df34e 15977 if (warn_on_deprecated && unified_syntax)
c19d1205
ZW
15978 as_warn (_("conditional infixes are deprecated in unified syntax"));
15979 affix = base + (opcode->tag - OT_odd_infix_0);
21d799b5 15980 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
9c2799c2 15981 gas_assert (cond);
b99bd4ef 15982
c19d1205
ZW
15983 inst.cond = cond->value;
15984 return opcode;
15985 }
b99bd4ef 15986
c19d1205
ZW
15987 /* Cannot have a conditional suffix on a mnemonic of less than two
15988 characters. */
15989 if (end - base < 3)
c921be7d 15990 return NULL;
b99bd4ef 15991
c19d1205
ZW
15992 /* Look for suffixed mnemonic. */
15993 affix = end - 2;
21d799b5
NC
15994 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
15995 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
15996 affix - base);
c19d1205
ZW
15997 if (opcode && cond)
15998 {
15999 /* step CE */
16000 switch (opcode->tag)
16001 {
e3cb604e
PB
16002 case OT_cinfix3_legacy:
16003 /* Ignore conditional suffixes matched on infix only mnemonics. */
16004 break;
16005
c19d1205 16006 case OT_cinfix3:
088fa78e 16007 case OT_cinfix3_deprecated:
c19d1205
ZW
16008 case OT_odd_infix_unc:
16009 if (!unified_syntax)
e3cb604e 16010 return 0;
c19d1205
ZW
16011 /* else fall through */
16012
16013 case OT_csuffix:
037e8744 16014 case OT_csuffixF:
c19d1205
ZW
16015 case OT_csuf_or_in3:
16016 inst.cond = cond->value;
16017 return opcode;
16018
16019 case OT_unconditional:
16020 case OT_unconditionalF:
dfa9f0d5 16021 if (thumb_mode)
c921be7d 16022 inst.cond = cond->value;
dfa9f0d5
PB
16023 else
16024 {
c921be7d 16025 /* Delayed diagnostic. */
dfa9f0d5
PB
16026 inst.error = BAD_COND;
16027 inst.cond = COND_ALWAYS;
16028 }
c19d1205 16029 return opcode;
b99bd4ef 16030
c19d1205 16031 default:
c921be7d 16032 return NULL;
c19d1205
ZW
16033 }
16034 }
b99bd4ef 16035
c19d1205
ZW
16036 /* Cannot have a usual-position infix on a mnemonic of less than
16037 six characters (five would be a suffix). */
16038 if (end - base < 6)
c921be7d 16039 return NULL;
b99bd4ef 16040
c19d1205
ZW
16041 /* Look for infixed mnemonic in the usual position. */
16042 affix = base + 3;
21d799b5 16043 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e 16044 if (!cond)
c921be7d 16045 return NULL;
e3cb604e
PB
16046
16047 memcpy (save, affix, 2);
16048 memmove (affix, affix + 2, (end - affix) - 2);
21d799b5
NC
16049 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16050 (end - base) - 2);
e3cb604e
PB
16051 memmove (affix + 2, affix, (end - affix) - 2);
16052 memcpy (affix, save, 2);
16053
088fa78e
KH
16054 if (opcode
16055 && (opcode->tag == OT_cinfix3
16056 || opcode->tag == OT_cinfix3_deprecated
16057 || opcode->tag == OT_csuf_or_in3
16058 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 16059 {
c921be7d 16060 /* Step CM. */
278df34e 16061 if (warn_on_deprecated && unified_syntax
088fa78e
KH
16062 && (opcode->tag == OT_cinfix3
16063 || opcode->tag == OT_cinfix3_deprecated))
c19d1205
ZW
16064 as_warn (_("conditional infixes are deprecated in unified syntax"));
16065
16066 inst.cond = cond->value;
16067 return opcode;
b99bd4ef
NC
16068 }
16069
c921be7d 16070 return NULL;
b99bd4ef
NC
16071}
16072
e07e6e58
NC
16073/* This function generates an initial IT instruction, leaving its block
16074 virtually open for the new instructions. Eventually,
16075 the mask will be updated by now_it_add_mask () each time
16076 a new instruction needs to be included in the IT block.
16077 Finally, the block is closed with close_automatic_it_block ().
16078 The block closure can be requested either from md_assemble (),
16079 a tencode (), or due to a label hook. */
16080
16081static void
16082new_automatic_it_block (int cond)
16083{
16084 now_it.state = AUTOMATIC_IT_BLOCK;
16085 now_it.mask = 0x18;
16086 now_it.cc = cond;
16087 now_it.block_length = 1;
cd000bff 16088 mapping_state (MAP_THUMB);
e07e6e58
NC
16089 now_it.insn = output_it_inst (cond, now_it.mask, NULL);
16090}
16091
16092/* Close an automatic IT block.
16093 See comments in new_automatic_it_block (). */
16094
16095static void
16096close_automatic_it_block (void)
16097{
16098 now_it.mask = 0x10;
16099 now_it.block_length = 0;
16100}
16101
16102/* Update the mask of the current automatically-generated IT
16103 instruction. See comments in new_automatic_it_block (). */
16104
16105static void
16106now_it_add_mask (int cond)
16107{
16108#define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
16109#define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
16110 | ((bitvalue) << (nbit)))
e07e6e58 16111 const int resulting_bit = (cond & 1);
c921be7d 16112
e07e6e58
NC
16113 now_it.mask &= 0xf;
16114 now_it.mask = SET_BIT_VALUE (now_it.mask,
16115 resulting_bit,
16116 (5 - now_it.block_length));
16117 now_it.mask = SET_BIT_VALUE (now_it.mask,
16118 1,
16119 ((5 - now_it.block_length) - 1) );
16120 output_it_inst (now_it.cc, now_it.mask, now_it.insn);
16121
16122#undef CLEAR_BIT
16123#undef SET_BIT_VALUE
e07e6e58
NC
16124}
16125
16126/* The IT blocks handling machinery is accessed through the these functions:
16127 it_fsm_pre_encode () from md_assemble ()
16128 set_it_insn_type () optional, from the tencode functions
16129 set_it_insn_type_last () ditto
16130 in_it_block () ditto
16131 it_fsm_post_encode () from md_assemble ()
16132 force_automatic_it_block_close () from label habdling functions
16133
16134 Rationale:
16135 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
16136 initializing the IT insn type with a generic initial value depending
16137 on the inst.condition.
16138 2) During the tencode function, two things may happen:
16139 a) The tencode function overrides the IT insn type by
16140 calling either set_it_insn_type (type) or set_it_insn_type_last ().
16141 b) The tencode function queries the IT block state by
16142 calling in_it_block () (i.e. to determine narrow/not narrow mode).
16143
16144 Both set_it_insn_type and in_it_block run the internal FSM state
16145 handling function (handle_it_state), because: a) setting the IT insn
16146 type may incur in an invalid state (exiting the function),
16147 and b) querying the state requires the FSM to be updated.
16148 Specifically we want to avoid creating an IT block for conditional
16149 branches, so it_fsm_pre_encode is actually a guess and we can't
16150 determine whether an IT block is required until the tencode () routine
16151 has decided what type of instruction this actually it.
16152 Because of this, if set_it_insn_type and in_it_block have to be used,
16153 set_it_insn_type has to be called first.
16154
16155 set_it_insn_type_last () is a wrapper of set_it_insn_type (type), that
16156 determines the insn IT type depending on the inst.cond code.
16157 When a tencode () routine encodes an instruction that can be
16158 either outside an IT block, or, in the case of being inside, has to be
16159 the last one, set_it_insn_type_last () will determine the proper
16160 IT instruction type based on the inst.cond code. Otherwise,
16161 set_it_insn_type can be called for overriding that logic or
16162 for covering other cases.
16163
16164 Calling handle_it_state () may not transition the IT block state to
16165 OUTSIDE_IT_BLOCK immediatelly, since the (current) state could be
16166 still queried. Instead, if the FSM determines that the state should
16167 be transitioned to OUTSIDE_IT_BLOCK, a flag is marked to be closed
16168 after the tencode () function: that's what it_fsm_post_encode () does.
16169
16170 Since in_it_block () calls the state handling function to get an
16171 updated state, an error may occur (due to invalid insns combination).
16172 In that case, inst.error is set.
16173 Therefore, inst.error has to be checked after the execution of
16174 the tencode () routine.
16175
16176 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
16177 any pending state change (if any) that didn't take place in
16178 handle_it_state () as explained above. */
16179
16180static void
16181it_fsm_pre_encode (void)
16182{
16183 if (inst.cond != COND_ALWAYS)
16184 inst.it_insn_type = INSIDE_IT_INSN;
16185 else
16186 inst.it_insn_type = OUTSIDE_IT_INSN;
16187
16188 now_it.state_handled = 0;
16189}
16190
16191/* IT state FSM handling function. */
16192
16193static int
16194handle_it_state (void)
16195{
16196 now_it.state_handled = 1;
16197
16198 switch (now_it.state)
16199 {
16200 case OUTSIDE_IT_BLOCK:
16201 switch (inst.it_insn_type)
16202 {
16203 case OUTSIDE_IT_INSN:
16204 break;
16205
16206 case INSIDE_IT_INSN:
16207 case INSIDE_IT_LAST_INSN:
16208 if (thumb_mode == 0)
16209 {
c921be7d 16210 if (unified_syntax
e07e6e58
NC
16211 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
16212 as_tsktsk (_("Warning: conditional outside an IT block"\
16213 " for Thumb."));
16214 }
16215 else
16216 {
16217 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
16218 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2))
16219 {
16220 /* Automatically generate the IT instruction. */
16221 new_automatic_it_block (inst.cond);
16222 if (inst.it_insn_type == INSIDE_IT_LAST_INSN)
16223 close_automatic_it_block ();
16224 }
16225 else
16226 {
16227 inst.error = BAD_OUT_IT;
16228 return FAIL;
16229 }
16230 }
16231 break;
16232
16233 case IF_INSIDE_IT_LAST_INSN:
16234 case NEUTRAL_IT_INSN:
16235 break;
16236
16237 case IT_INSN:
16238 now_it.state = MANUAL_IT_BLOCK;
16239 now_it.block_length = 0;
16240 break;
16241 }
16242 break;
16243
16244 case AUTOMATIC_IT_BLOCK:
16245 /* Three things may happen now:
16246 a) We should increment current it block size;
16247 b) We should close current it block (closing insn or 4 insns);
16248 c) We should close current it block and start a new one (due
16249 to incompatible conditions or
16250 4 insns-length block reached). */
16251
16252 switch (inst.it_insn_type)
16253 {
16254 case OUTSIDE_IT_INSN:
16255 /* The closure of the block shall happen immediatelly,
16256 so any in_it_block () call reports the block as closed. */
16257 force_automatic_it_block_close ();
16258 break;
16259
16260 case INSIDE_IT_INSN:
16261 case INSIDE_IT_LAST_INSN:
16262 case IF_INSIDE_IT_LAST_INSN:
16263 now_it.block_length++;
16264
16265 if (now_it.block_length > 4
16266 || !now_it_compatible (inst.cond))
16267 {
16268 force_automatic_it_block_close ();
16269 if (inst.it_insn_type != IF_INSIDE_IT_LAST_INSN)
16270 new_automatic_it_block (inst.cond);
16271 }
16272 else
16273 {
16274 now_it_add_mask (inst.cond);
16275 }
16276
16277 if (now_it.state == AUTOMATIC_IT_BLOCK
16278 && (inst.it_insn_type == INSIDE_IT_LAST_INSN
16279 || inst.it_insn_type == IF_INSIDE_IT_LAST_INSN))
16280 close_automatic_it_block ();
16281 break;
16282
16283 case NEUTRAL_IT_INSN:
16284 now_it.block_length++;
16285
16286 if (now_it.block_length > 4)
16287 force_automatic_it_block_close ();
16288 else
16289 now_it_add_mask (now_it.cc & 1);
16290 break;
16291
16292 case IT_INSN:
16293 close_automatic_it_block ();
16294 now_it.state = MANUAL_IT_BLOCK;
16295 break;
16296 }
16297 break;
16298
16299 case MANUAL_IT_BLOCK:
16300 {
16301 /* Check conditional suffixes. */
16302 const int cond = now_it.cc ^ ((now_it.mask >> 4) & 1) ^ 1;
16303 int is_last;
16304 now_it.mask <<= 1;
16305 now_it.mask &= 0x1f;
16306 is_last = (now_it.mask == 0x10);
16307
16308 switch (inst.it_insn_type)
16309 {
16310 case OUTSIDE_IT_INSN:
16311 inst.error = BAD_NOT_IT;
16312 return FAIL;
16313
16314 case INSIDE_IT_INSN:
16315 if (cond != inst.cond)
16316 {
16317 inst.error = BAD_IT_COND;
16318 return FAIL;
16319 }
16320 break;
16321
16322 case INSIDE_IT_LAST_INSN:
16323 case IF_INSIDE_IT_LAST_INSN:
16324 if (cond != inst.cond)
16325 {
16326 inst.error = BAD_IT_COND;
16327 return FAIL;
16328 }
16329 if (!is_last)
16330 {
16331 inst.error = BAD_BRANCH;
16332 return FAIL;
16333 }
16334 break;
16335
16336 case NEUTRAL_IT_INSN:
16337 /* The BKPT instruction is unconditional even in an IT block. */
16338 break;
16339
16340 case IT_INSN:
16341 inst.error = BAD_IT_IT;
16342 return FAIL;
16343 }
16344 }
16345 break;
16346 }
16347
16348 return SUCCESS;
16349}
16350
16351static void
16352it_fsm_post_encode (void)
16353{
16354 int is_last;
16355
16356 if (!now_it.state_handled)
16357 handle_it_state ();
16358
16359 is_last = (now_it.mask == 0x10);
16360 if (is_last)
16361 {
16362 now_it.state = OUTSIDE_IT_BLOCK;
16363 now_it.mask = 0;
16364 }
16365}
16366
16367static void
16368force_automatic_it_block_close (void)
16369{
16370 if (now_it.state == AUTOMATIC_IT_BLOCK)
16371 {
16372 close_automatic_it_block ();
16373 now_it.state = OUTSIDE_IT_BLOCK;
16374 now_it.mask = 0;
16375 }
16376}
16377
16378static int
16379in_it_block (void)
16380{
16381 if (!now_it.state_handled)
16382 handle_it_state ();
16383
16384 return now_it.state != OUTSIDE_IT_BLOCK;
16385}
16386
c19d1205
ZW
16387void
16388md_assemble (char *str)
b99bd4ef 16389{
c19d1205
ZW
16390 char *p = str;
16391 const struct asm_opcode * opcode;
b99bd4ef 16392
c19d1205
ZW
16393 /* Align the previous label if needed. */
16394 if (last_label_seen != NULL)
b99bd4ef 16395 {
c19d1205
ZW
16396 symbol_set_frag (last_label_seen, frag_now);
16397 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
16398 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
16399 }
16400
c19d1205
ZW
16401 memset (&inst, '\0', sizeof (inst));
16402 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 16403
c19d1205
ZW
16404 opcode = opcode_lookup (&p);
16405 if (!opcode)
b99bd4ef 16406 {
c19d1205 16407 /* It wasn't an instruction, but it might be a register alias of
dcbf9037 16408 the form alias .req reg, or a Neon .dn/.qn directive. */
c921be7d
NC
16409 if (! create_register_alias (str, p)
16410 && ! create_neon_reg_alias (str, p))
c19d1205 16411 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 16412
b99bd4ef
NC
16413 return;
16414 }
16415
278df34e 16416 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
088fa78e
KH
16417 as_warn (_("s suffix on comparison instruction is deprecated"));
16418
037e8744
JB
16419 /* The value which unconditional instructions should have in place of the
16420 condition field. */
16421 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
16422
c19d1205 16423 if (thumb_mode)
b99bd4ef 16424 {
e74cfd16 16425 arm_feature_set variant;
8f06b2d8
PB
16426
16427 variant = cpu_variant;
16428 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
16429 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
16430 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 16431 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
16432 if (!opcode->tvariant
16433 || (thumb_mode == 1
16434 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 16435 {
bf3eeda7 16436 as_bad (_("selected processor does not support Thumb mode `%s'"), str);
b99bd4ef
NC
16437 return;
16438 }
c19d1205
ZW
16439 if (inst.cond != COND_ALWAYS && !unified_syntax
16440 && opcode->tencode != do_t_branch)
b99bd4ef 16441 {
c19d1205 16442 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
16443 return;
16444 }
16445
752d5da4 16446 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2))
076d447c 16447 {
7e806470 16448 if (opcode->tencode != do_t_blx && opcode->tencode != do_t_branch23
752d5da4
NC
16449 && !(ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_msr)
16450 || ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_barrier)))
16451 {
16452 /* Two things are addressed here.
16453 1) Implicit require narrow instructions on Thumb-1.
16454 This avoids relaxation accidentally introducing Thumb-2
16455 instructions.
16456 2) Reject wide instructions in non Thumb-2 cores. */
16457 if (inst.size_req == 0)
16458 inst.size_req = 2;
16459 else if (inst.size_req == 4)
16460 {
bf3eeda7 16461 as_bad (_("selected processor does not support Thumb-2 mode `%s'"), str);
752d5da4
NC
16462 return;
16463 }
16464 }
076d447c
PB
16465 }
16466
c19d1205
ZW
16467 inst.instruction = opcode->tvalue;
16468
5be8be5d 16469 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
e07e6e58
NC
16470 {
16471 /* Prepare the it_insn_type for those encodings that don't set
16472 it. */
16473 it_fsm_pre_encode ();
c19d1205 16474
e07e6e58
NC
16475 opcode->tencode ();
16476
16477 it_fsm_post_encode ();
16478 }
e27ec89e 16479
0110f2b8 16480 if (!(inst.error || inst.relax))
b99bd4ef 16481 {
9c2799c2 16482 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
c19d1205
ZW
16483 inst.size = (inst.instruction > 0xffff ? 4 : 2);
16484 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 16485 {
c19d1205 16486 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
16487 return;
16488 }
16489 }
076d447c
PB
16490
16491 /* Something has gone badly wrong if we try to relax a fixed size
16492 instruction. */
9c2799c2 16493 gas_assert (inst.size_req == 0 || !inst.relax);
076d447c 16494
e74cfd16
PB
16495 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
16496 *opcode->tvariant);
ee065d83 16497 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
708587a4 16498 set those bits when Thumb-2 32-bit instructions are seen. ie.
7e806470 16499 anything other than bl/blx and v6-M instructions.
ee065d83 16500 This is overly pessimistic for relaxable instructions. */
7e806470
PB
16501 if (((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
16502 || inst.relax)
e07e6e58
NC
16503 && !(ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
16504 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier)))
e74cfd16
PB
16505 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
16506 arm_ext_v6t2);
cd000bff 16507
88714cb8
DG
16508 check_neon_suffixes;
16509
cd000bff 16510 if (!inst.error)
c877a2f2
NC
16511 {
16512 mapping_state (MAP_THUMB);
16513 }
c19d1205 16514 }
3e9e4fcf 16515 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205 16516 {
845b51d6
PB
16517 bfd_boolean is_bx;
16518
16519 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
16520 is_bx = (opcode->aencode == do_bx);
16521
c19d1205 16522 /* Check that this instruction is supported for this CPU. */
845b51d6
PB
16523 if (!(is_bx && fix_v4bx)
16524 && !(opcode->avariant &&
16525 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
b99bd4ef 16526 {
bf3eeda7 16527 as_bad (_("selected processor does not support ARM mode `%s'"), str);
c19d1205 16528 return;
b99bd4ef 16529 }
c19d1205 16530 if (inst.size_req)
b99bd4ef 16531 {
c19d1205
ZW
16532 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
16533 return;
b99bd4ef
NC
16534 }
16535
c19d1205
ZW
16536 inst.instruction = opcode->avalue;
16537 if (opcode->tag == OT_unconditionalF)
16538 inst.instruction |= 0xF << 28;
16539 else
16540 inst.instruction |= inst.cond << 28;
16541 inst.size = INSN_SIZE;
5be8be5d 16542 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
e07e6e58
NC
16543 {
16544 it_fsm_pre_encode ();
16545 opcode->aencode ();
16546 it_fsm_post_encode ();
16547 }
ee065d83
PB
16548 /* Arm mode bx is marked as both v4T and v5 because it's still required
16549 on a hypothetical non-thumb v5 core. */
845b51d6 16550 if (is_bx)
e74cfd16 16551 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 16552 else
e74cfd16
PB
16553 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
16554 *opcode->avariant);
88714cb8
DG
16555
16556 check_neon_suffixes;
16557
cd000bff 16558 if (!inst.error)
c877a2f2
NC
16559 {
16560 mapping_state (MAP_ARM);
16561 }
b99bd4ef 16562 }
3e9e4fcf
JB
16563 else
16564 {
16565 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
16566 "-- `%s'"), str);
16567 return;
16568 }
c19d1205
ZW
16569 output_inst (str);
16570}
b99bd4ef 16571
e07e6e58
NC
16572static void
16573check_it_blocks_finished (void)
16574{
16575#ifdef OBJ_ELF
16576 asection *sect;
16577
16578 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
16579 if (seg_info (sect)->tc_segment_info_data.current_it.state
16580 == MANUAL_IT_BLOCK)
16581 {
16582 as_warn (_("section '%s' finished with an open IT block."),
16583 sect->name);
16584 }
16585#else
16586 if (now_it.state == MANUAL_IT_BLOCK)
16587 as_warn (_("file finished with an open IT block."));
16588#endif
16589}
16590
c19d1205
ZW
16591/* Various frobbings of labels and their addresses. */
16592
16593void
16594arm_start_line_hook (void)
16595{
16596 last_label_seen = NULL;
b99bd4ef
NC
16597}
16598
c19d1205
ZW
16599void
16600arm_frob_label (symbolS * sym)
b99bd4ef 16601{
c19d1205 16602 last_label_seen = sym;
b99bd4ef 16603
c19d1205 16604 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 16605
c19d1205
ZW
16606#if defined OBJ_COFF || defined OBJ_ELF
16607 ARM_SET_INTERWORK (sym, support_interwork);
16608#endif
b99bd4ef 16609
e07e6e58
NC
16610 force_automatic_it_block_close ();
16611
5f4273c7 16612 /* Note - do not allow local symbols (.Lxxx) to be labelled
c19d1205
ZW
16613 as Thumb functions. This is because these labels, whilst
16614 they exist inside Thumb code, are not the entry points for
16615 possible ARM->Thumb calls. Also, these labels can be used
16616 as part of a computed goto or switch statement. eg gcc
16617 can generate code that looks like this:
b99bd4ef 16618
c19d1205
ZW
16619 ldr r2, [pc, .Laaa]
16620 lsl r3, r3, #2
16621 ldr r2, [r3, r2]
16622 mov pc, r2
b99bd4ef 16623
c19d1205
ZW
16624 .Lbbb: .word .Lxxx
16625 .Lccc: .word .Lyyy
16626 ..etc...
16627 .Laaa: .word Lbbb
b99bd4ef 16628
c19d1205
ZW
16629 The first instruction loads the address of the jump table.
16630 The second instruction converts a table index into a byte offset.
16631 The third instruction gets the jump address out of the table.
16632 The fourth instruction performs the jump.
b99bd4ef 16633
c19d1205
ZW
16634 If the address stored at .Laaa is that of a symbol which has the
16635 Thumb_Func bit set, then the linker will arrange for this address
16636 to have the bottom bit set, which in turn would mean that the
16637 address computation performed by the third instruction would end
16638 up with the bottom bit set. Since the ARM is capable of unaligned
16639 word loads, the instruction would then load the incorrect address
16640 out of the jump table, and chaos would ensue. */
16641 if (label_is_thumb_function_name
16642 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
16643 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 16644 {
c19d1205
ZW
16645 /* When the address of a Thumb function is taken the bottom
16646 bit of that address should be set. This will allow
16647 interworking between Arm and Thumb functions to work
16648 correctly. */
b99bd4ef 16649
c19d1205 16650 THUMB_SET_FUNC (sym, 1);
b99bd4ef 16651
c19d1205 16652 label_is_thumb_function_name = FALSE;
b99bd4ef 16653 }
07a53e5c 16654
07a53e5c 16655 dwarf2_emit_label (sym);
b99bd4ef
NC
16656}
16657
c921be7d 16658bfd_boolean
c19d1205 16659arm_data_in_code (void)
b99bd4ef 16660{
c19d1205 16661 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 16662 {
c19d1205
ZW
16663 *input_line_pointer = '/';
16664 input_line_pointer += 5;
16665 *input_line_pointer = 0;
c921be7d 16666 return TRUE;
b99bd4ef
NC
16667 }
16668
c921be7d 16669 return FALSE;
b99bd4ef
NC
16670}
16671
c19d1205
ZW
16672char *
16673arm_canonicalize_symbol_name (char * name)
b99bd4ef 16674{
c19d1205 16675 int len;
b99bd4ef 16676
c19d1205
ZW
16677 if (thumb_mode && (len = strlen (name)) > 5
16678 && streq (name + len - 5, "/data"))
16679 *(name + len - 5) = 0;
b99bd4ef 16680
c19d1205 16681 return name;
b99bd4ef 16682}
c19d1205
ZW
16683\f
16684/* Table of all register names defined by default. The user can
16685 define additional names with .req. Note that all register names
16686 should appear in both upper and lowercase variants. Some registers
16687 also have mixed-case names. */
b99bd4ef 16688
dcbf9037 16689#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 16690#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 16691#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
16692#define REGSET(p,t) \
16693 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
16694 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
16695 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
16696 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
16697#define REGSETH(p,t) \
16698 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
16699 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
16700 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
16701 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
16702#define REGSET2(p,t) \
16703 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
16704 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
16705 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
16706 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
90ec0d68
MGD
16707#define SPLRBANK(base,bank,t) \
16708 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
16709 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
16710 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
16711 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
16712 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
16713 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
7ed4c4c5 16714
c19d1205 16715static const struct reg_entry reg_names[] =
7ed4c4c5 16716{
c19d1205
ZW
16717 /* ARM integer registers. */
16718 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 16719
c19d1205
ZW
16720 /* ATPCS synonyms. */
16721 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
16722 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
16723 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 16724
c19d1205
ZW
16725 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
16726 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
16727 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 16728
c19d1205
ZW
16729 /* Well-known aliases. */
16730 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
16731 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
16732
16733 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
16734 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
16735
16736 /* Coprocessor numbers. */
16737 REGSET(p, CP), REGSET(P, CP),
16738
16739 /* Coprocessor register numbers. The "cr" variants are for backward
16740 compatibility. */
16741 REGSET(c, CN), REGSET(C, CN),
16742 REGSET(cr, CN), REGSET(CR, CN),
16743
90ec0d68
MGD
16744 /* ARM banked registers. */
16745 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
16746 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
16747 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
16748 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
16749 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
16750 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
16751 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
16752
16753 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
16754 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
16755 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
16756 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
16757 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
16758 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(SP_fiq,512|(13<<16),RNB),
16759 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
16760 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
16761
16762 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
16763 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
16764 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
16765 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
16766 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
16767 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
16768 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
fa94de6b 16769 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
90ec0d68
MGD
16770 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
16771
c19d1205
ZW
16772 /* FPA registers. */
16773 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
16774 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
16775
16776 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
16777 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
16778
16779 /* VFP SP registers. */
5287ad62
JB
16780 REGSET(s,VFS), REGSET(S,VFS),
16781 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
16782
16783 /* VFP DP Registers. */
5287ad62
JB
16784 REGSET(d,VFD), REGSET(D,VFD),
16785 /* Extra Neon DP registers. */
16786 REGSETH(d,VFD), REGSETH(D,VFD),
16787
16788 /* Neon QP registers. */
16789 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
16790
16791 /* VFP control registers. */
16792 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
16793 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
cd2cf30b
PB
16794 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
16795 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
16796 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
16797 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
c19d1205
ZW
16798
16799 /* Maverick DSP coprocessor registers. */
16800 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
16801 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
16802
16803 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
16804 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
16805 REGDEF(dspsc,0,DSPSC),
16806
16807 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
16808 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
16809 REGDEF(DSPSC,0,DSPSC),
16810
16811 /* iWMMXt data registers - p0, c0-15. */
16812 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
16813
16814 /* iWMMXt control registers - p1, c0-3. */
16815 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
16816 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
16817 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
16818 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
16819
16820 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
16821 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
16822 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
16823 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
16824 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
16825
16826 /* XScale accumulator registers. */
16827 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
16828};
16829#undef REGDEF
16830#undef REGNUM
16831#undef REGSET
7ed4c4c5 16832
c19d1205
ZW
16833/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
16834 within psr_required_here. */
16835static const struct asm_psr psrs[] =
16836{
16837 /* Backward compatibility notation. Note that "all" is no longer
16838 truly all possible PSR bits. */
16839 {"all", PSR_c | PSR_f},
16840 {"flg", PSR_f},
16841 {"ctl", PSR_c},
16842
16843 /* Individual flags. */
16844 {"f", PSR_f},
16845 {"c", PSR_c},
16846 {"x", PSR_x},
16847 {"s", PSR_s},
59b42a0d 16848
c19d1205
ZW
16849 /* Combinations of flags. */
16850 {"fs", PSR_f | PSR_s},
16851 {"fx", PSR_f | PSR_x},
16852 {"fc", PSR_f | PSR_c},
16853 {"sf", PSR_s | PSR_f},
16854 {"sx", PSR_s | PSR_x},
16855 {"sc", PSR_s | PSR_c},
16856 {"xf", PSR_x | PSR_f},
16857 {"xs", PSR_x | PSR_s},
16858 {"xc", PSR_x | PSR_c},
16859 {"cf", PSR_c | PSR_f},
16860 {"cs", PSR_c | PSR_s},
16861 {"cx", PSR_c | PSR_x},
16862 {"fsx", PSR_f | PSR_s | PSR_x},
16863 {"fsc", PSR_f | PSR_s | PSR_c},
16864 {"fxs", PSR_f | PSR_x | PSR_s},
16865 {"fxc", PSR_f | PSR_x | PSR_c},
16866 {"fcs", PSR_f | PSR_c | PSR_s},
16867 {"fcx", PSR_f | PSR_c | PSR_x},
16868 {"sfx", PSR_s | PSR_f | PSR_x},
16869 {"sfc", PSR_s | PSR_f | PSR_c},
16870 {"sxf", PSR_s | PSR_x | PSR_f},
16871 {"sxc", PSR_s | PSR_x | PSR_c},
16872 {"scf", PSR_s | PSR_c | PSR_f},
16873 {"scx", PSR_s | PSR_c | PSR_x},
16874 {"xfs", PSR_x | PSR_f | PSR_s},
16875 {"xfc", PSR_x | PSR_f | PSR_c},
16876 {"xsf", PSR_x | PSR_s | PSR_f},
16877 {"xsc", PSR_x | PSR_s | PSR_c},
16878 {"xcf", PSR_x | PSR_c | PSR_f},
16879 {"xcs", PSR_x | PSR_c | PSR_s},
16880 {"cfs", PSR_c | PSR_f | PSR_s},
16881 {"cfx", PSR_c | PSR_f | PSR_x},
16882 {"csf", PSR_c | PSR_s | PSR_f},
16883 {"csx", PSR_c | PSR_s | PSR_x},
16884 {"cxf", PSR_c | PSR_x | PSR_f},
16885 {"cxs", PSR_c | PSR_x | PSR_s},
16886 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
16887 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
16888 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
16889 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
16890 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
16891 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
16892 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
16893 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
16894 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
16895 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
16896 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
16897 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
16898 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
16899 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
16900 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
16901 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
16902 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
16903 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
16904 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
16905 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
16906 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
16907 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
16908 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
16909 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
16910};
16911
62b3e311
PB
16912/* Table of V7M psr names. */
16913static const struct asm_psr v7m_psrs[] =
16914{
2b744c99
PB
16915 {"apsr", 0 }, {"APSR", 0 },
16916 {"iapsr", 1 }, {"IAPSR", 1 },
16917 {"eapsr", 2 }, {"EAPSR", 2 },
16918 {"psr", 3 }, {"PSR", 3 },
16919 {"xpsr", 3 }, {"XPSR", 3 }, {"xPSR", 3 },
16920 {"ipsr", 5 }, {"IPSR", 5 },
16921 {"epsr", 6 }, {"EPSR", 6 },
16922 {"iepsr", 7 }, {"IEPSR", 7 },
16923 {"msp", 8 }, {"MSP", 8 },
16924 {"psp", 9 }, {"PSP", 9 },
16925 {"primask", 16}, {"PRIMASK", 16},
16926 {"basepri", 17}, {"BASEPRI", 17},
00bbc0bd
NC
16927 {"basepri_max", 18}, {"BASEPRI_MAX", 18},
16928 {"basepri_max", 18}, {"BASEPRI_MASK", 18}, /* Typo, preserved for backwards compatibility. */
2b744c99
PB
16929 {"faultmask", 19}, {"FAULTMASK", 19},
16930 {"control", 20}, {"CONTROL", 20}
62b3e311
PB
16931};
16932
c19d1205
ZW
16933/* Table of all shift-in-operand names. */
16934static const struct asm_shift_name shift_names [] =
b99bd4ef 16935{
c19d1205
ZW
16936 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
16937 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
16938 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
16939 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
16940 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
16941 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
16942};
b99bd4ef 16943
c19d1205
ZW
16944/* Table of all explicit relocation names. */
16945#ifdef OBJ_ELF
16946static struct reloc_entry reloc_names[] =
16947{
16948 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
16949 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
16950 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
16951 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
16952 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
16953 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
16954 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
16955 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
16956 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
16957 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
b43420e6 16958 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
0855e32b
NS
16959 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
16960 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
16961 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
16962 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
16963 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
16964 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
16965 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ}
c19d1205
ZW
16966};
16967#endif
b99bd4ef 16968
c19d1205
ZW
16969/* Table of all conditional affixes. 0xF is not defined as a condition code. */
16970static const struct asm_cond conds[] =
16971{
16972 {"eq", 0x0},
16973 {"ne", 0x1},
16974 {"cs", 0x2}, {"hs", 0x2},
16975 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
16976 {"mi", 0x4},
16977 {"pl", 0x5},
16978 {"vs", 0x6},
16979 {"vc", 0x7},
16980 {"hi", 0x8},
16981 {"ls", 0x9},
16982 {"ge", 0xa},
16983 {"lt", 0xb},
16984 {"gt", 0xc},
16985 {"le", 0xd},
16986 {"al", 0xe}
16987};
bfae80f2 16988
62b3e311
PB
16989static struct asm_barrier_opt barrier_opt_names[] =
16990{
52e7f43d
RE
16991 { "sy", 0xf }, { "SY", 0xf },
16992 { "un", 0x7 }, { "UN", 0x7 },
16993 { "st", 0xe }, { "ST", 0xe },
16994 { "unst", 0x6 }, { "UNST", 0x6 },
16995 { "ish", 0xb }, { "ISH", 0xb },
16996 { "sh", 0xb }, { "SH", 0xb },
16997 { "ishst", 0xa }, { "ISHST", 0xa },
16998 { "shst", 0xa }, { "SHST", 0xa },
16999 { "nsh", 0x7 }, { "NSH", 0x7 },
17000 { "nshst", 0x6 }, { "NSHST", 0x6 },
17001 { "osh", 0x3 }, { "OSH", 0x3 },
17002 { "oshst", 0x2 }, { "OSHST", 0x2 }
62b3e311
PB
17003};
17004
c19d1205
ZW
17005/* Table of ARM-format instructions. */
17006
17007/* Macros for gluing together operand strings. N.B. In all cases
17008 other than OPS0, the trailing OP_stop comes from default
17009 zero-initialization of the unspecified elements of the array. */
17010#define OPS0() { OP_stop, }
17011#define OPS1(a) { OP_##a, }
17012#define OPS2(a,b) { OP_##a,OP_##b, }
17013#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
17014#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
17015#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
17016#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
17017
5be8be5d
DG
17018/* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
17019 This is useful when mixing operands for ARM and THUMB, i.e. using the
17020 MIX_ARM_THUMB_OPERANDS macro.
17021 In order to use these macros, prefix the number of operands with _
17022 e.g. _3. */
17023#define OPS_1(a) { a, }
17024#define OPS_2(a,b) { a,b, }
17025#define OPS_3(a,b,c) { a,b,c, }
17026#define OPS_4(a,b,c,d) { a,b,c,d, }
17027#define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
17028#define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
17029
c19d1205
ZW
17030/* These macros abstract out the exact format of the mnemonic table and
17031 save some repeated characters. */
17032
17033/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
17034#define TxCE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17035 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 17036 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17037
17038/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
17039 a T_MNEM_xyz enumerator. */
17040#define TCE(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17041 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17042#define tCE(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17043 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
17044
17045/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
17046 infix after the third character. */
17047#define TxC3(mnem, op, top, nops, ops, ae, te) \
21d799b5 17048 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 17049 THUMB_VARIANT, do_##ae, do_##te }
088fa78e 17050#define TxC3w(mnem, op, top, nops, ops, ae, te) \
21d799b5 17051 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
088fa78e 17052 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 17053#define TC3(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17054 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e 17055#define TC3w(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17056 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17057#define tC3(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17058 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
088fa78e 17059#define tC3w(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17060 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
17061
17062/* Mnemonic with a conditional infix in an unusual place. Each and every variant has to
17063 appear in the condition table. */
17064#define TxCM_(m1, m2, m3, op, top, nops, ops, ae, te) \
21d799b5 17065 { m1 #m2 m3, OPS##nops ops, sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
1887dd22 17066 0x##op, top, ARM_VARIANT, THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17067
17068#define TxCM(m1, m2, op, top, nops, ops, ae, te) \
e07e6e58
NC
17069 TxCM_ (m1, , m2, op, top, nops, ops, ae, te), \
17070 TxCM_ (m1, eq, m2, op, top, nops, ops, ae, te), \
17071 TxCM_ (m1, ne, m2, op, top, nops, ops, ae, te), \
17072 TxCM_ (m1, cs, m2, op, top, nops, ops, ae, te), \
17073 TxCM_ (m1, hs, m2, op, top, nops, ops, ae, te), \
17074 TxCM_ (m1, cc, m2, op, top, nops, ops, ae, te), \
17075 TxCM_ (m1, ul, m2, op, top, nops, ops, ae, te), \
17076 TxCM_ (m1, lo, m2, op, top, nops, ops, ae, te), \
17077 TxCM_ (m1, mi, m2, op, top, nops, ops, ae, te), \
17078 TxCM_ (m1, pl, m2, op, top, nops, ops, ae, te), \
17079 TxCM_ (m1, vs, m2, op, top, nops, ops, ae, te), \
17080 TxCM_ (m1, vc, m2, op, top, nops, ops, ae, te), \
17081 TxCM_ (m1, hi, m2, op, top, nops, ops, ae, te), \
17082 TxCM_ (m1, ls, m2, op, top, nops, ops, ae, te), \
17083 TxCM_ (m1, ge, m2, op, top, nops, ops, ae, te), \
17084 TxCM_ (m1, lt, m2, op, top, nops, ops, ae, te), \
17085 TxCM_ (m1, gt, m2, op, top, nops, ops, ae, te), \
17086 TxCM_ (m1, le, m2, op, top, nops, ops, ae, te), \
17087 TxCM_ (m1, al, m2, op, top, nops, ops, ae, te)
c19d1205
ZW
17088
17089#define TCM(m1,m2, aop, top, nops, ops, ae, te) \
e07e6e58
NC
17090 TxCM (m1,m2, aop, 0x##top, nops, ops, ae, te)
17091#define tCM(m1,m2, aop, top, nops, ops, ae, te) \
21d799b5 17092 TxCM (m1,m2, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
17093
17094/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
17095 field is still 0xE. Many of the Thumb variants can be executed
17096 conditionally, so this is checked separately. */
c19d1205 17097#define TUE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17098 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17099 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17100
17101/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
17102 condition code field. */
17103#define TUF(mnem, op, top, nops, ops, ae, te) \
21d799b5 17104 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17105 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17106
17107/* ARM-only variants of all the above. */
6a86118a 17108#define CE(mnem, op, nops, ops, ae) \
21d799b5 17109 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
6a86118a
NC
17110
17111#define C3(mnem, op, nops, ops, ae) \
17112 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17113
e3cb604e
PB
17114/* Legacy mnemonics that always have conditional infix after the third
17115 character. */
17116#define CL(mnem, op, nops, ops, ae) \
21d799b5 17117 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17118 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17119
8f06b2d8
PB
17120/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
17121#define cCE(mnem, op, nops, ops, ae) \
21d799b5 17122 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17123
e3cb604e
PB
17124/* Legacy coprocessor instructions where conditional infix and conditional
17125 suffix are ambiguous. For consistency this includes all FPA instructions,
17126 not just the potentially ambiguous ones. */
17127#define cCL(mnem, op, nops, ops, ae) \
21d799b5 17128 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17129 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
17130
17131/* Coprocessor, takes either a suffix or a position-3 infix
17132 (for an FPA corner case). */
17133#define C3E(mnem, op, nops, ops, ae) \
21d799b5 17134 { mnem, OPS##nops ops, OT_csuf_or_in3, \
e3cb604e 17135 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17136
6a86118a 17137#define xCM_(m1, m2, m3, op, nops, ops, ae) \
21d799b5
NC
17138 { m1 #m2 m3, OPS##nops ops, \
17139 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
6a86118a
NC
17140 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17141
17142#define CM(m1, m2, op, nops, ops, ae) \
e07e6e58
NC
17143 xCM_ (m1, , m2, op, nops, ops, ae), \
17144 xCM_ (m1, eq, m2, op, nops, ops, ae), \
17145 xCM_ (m1, ne, m2, op, nops, ops, ae), \
17146 xCM_ (m1, cs, m2, op, nops, ops, ae), \
17147 xCM_ (m1, hs, m2, op, nops, ops, ae), \
17148 xCM_ (m1, cc, m2, op, nops, ops, ae), \
17149 xCM_ (m1, ul, m2, op, nops, ops, ae), \
17150 xCM_ (m1, lo, m2, op, nops, ops, ae), \
17151 xCM_ (m1, mi, m2, op, nops, ops, ae), \
17152 xCM_ (m1, pl, m2, op, nops, ops, ae), \
17153 xCM_ (m1, vs, m2, op, nops, ops, ae), \
17154 xCM_ (m1, vc, m2, op, nops, ops, ae), \
17155 xCM_ (m1, hi, m2, op, nops, ops, ae), \
17156 xCM_ (m1, ls, m2, op, nops, ops, ae), \
17157 xCM_ (m1, ge, m2, op, nops, ops, ae), \
17158 xCM_ (m1, lt, m2, op, nops, ops, ae), \
17159 xCM_ (m1, gt, m2, op, nops, ops, ae), \
17160 xCM_ (m1, le, m2, op, nops, ops, ae), \
17161 xCM_ (m1, al, m2, op, nops, ops, ae)
6a86118a
NC
17162
17163#define UE(mnem, op, nops, ops, ae) \
17164 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17165
17166#define UF(mnem, op, nops, ops, ae) \
17167 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17168
5287ad62
JB
17169/* Neon data-processing. ARM versions are unconditional with cond=0xf.
17170 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
17171 use the same encoding function for each. */
17172#define NUF(mnem, op, nops, ops, enc) \
17173 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
17174 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17175
17176/* Neon data processing, version which indirects through neon_enc_tab for
17177 the various overloaded versions of opcodes. */
17178#define nUF(mnem, op, nops, ops, enc) \
21d799b5 17179 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17180 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17181
17182/* Neon insn with conditional suffix for the ARM version, non-overloaded
17183 version. */
037e8744
JB
17184#define NCE_tag(mnem, op, nops, ops, enc, tag) \
17185 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
17186 THUMB_VARIANT, do_##enc, do_##enc }
17187
037e8744 17188#define NCE(mnem, op, nops, ops, enc) \
e07e6e58 17189 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17190
17191#define NCEF(mnem, op, nops, ops, enc) \
e07e6e58 17192 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17193
5287ad62 17194/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744 17195#define nCE_tag(mnem, op, nops, ops, enc, tag) \
21d799b5 17196 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17197 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17198
037e8744 17199#define nCE(mnem, op, nops, ops, enc) \
e07e6e58 17200 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17201
17202#define nCEF(mnem, op, nops, ops, enc) \
e07e6e58 17203 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17204
c19d1205
ZW
17205#define do_0 0
17206
c19d1205 17207static const struct asm_opcode insns[] =
bfae80f2 17208{
e74cfd16
PB
17209#define ARM_VARIANT &arm_ext_v1 /* Core ARM Instructions. */
17210#define THUMB_VARIANT &arm_ext_v4t
21d799b5
NC
17211 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
17212 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
17213 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
17214 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
17215 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
17216 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
17217 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
17218 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
17219 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
17220 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
17221 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
17222 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
17223 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
17224 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
17225 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
17226 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
c19d1205
ZW
17227
17228 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
17229 for setting PSR flag bits. They are obsolete in V6 and do not
17230 have Thumb equivalents. */
21d799b5
NC
17231 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
17232 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
17233 CL("tstp", 110f000, 2, (RR, SH), cmp),
17234 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
17235 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
17236 CL("cmpp", 150f000, 2, (RR, SH), cmp),
17237 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
17238 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
17239 CL("cmnp", 170f000, 2, (RR, SH), cmp),
17240
17241 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
17242 tC3("movs", 1b00000, _movs, 2, (RR, SH), mov, t_mov_cmp),
17243 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
17244 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
17245
17246 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
5be8be5d
DG
17247 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
17248 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
17249 OP_RRnpc),
17250 OP_ADDRGLDR),ldst, t_ldst),
17251 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
21d799b5
NC
17252
17253 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17254 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17255 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17256 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17257 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17258 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17259
17260 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
17261 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
17262 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
17263 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 17264
c19d1205 17265 /* Pseudo ops. */
21d799b5 17266 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac 17267 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
21d799b5 17268 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
c19d1205
ZW
17269
17270 /* Thumb-compatibility pseudo ops. */
21d799b5
NC
17271 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
17272 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
17273 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
17274 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
17275 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
17276 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
17277 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
17278 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
17279 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
17280 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
17281 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
17282 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
c19d1205 17283
16a4cf17 17284 /* These may simplify to neg. */
21d799b5
NC
17285 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
17286 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
16a4cf17 17287
c921be7d
NC
17288#undef THUMB_VARIANT
17289#define THUMB_VARIANT & arm_ext_v6
17290
21d799b5 17291 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
17292
17293 /* V1 instructions with no Thumb analogue prior to V6T2. */
c921be7d
NC
17294#undef THUMB_VARIANT
17295#define THUMB_VARIANT & arm_ext_v6t2
17296
21d799b5
NC
17297 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
17298 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
17299 CL("teqp", 130f000, 2, (RR, SH), cmp),
c19d1205 17300
5be8be5d
DG
17301 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
17302 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
17303 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
17304 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
c19d1205 17305
21d799b5
NC
17306 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17307 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 17308
21d799b5
NC
17309 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
17310 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
17311
17312 /* V1 instructions with no Thumb analogue at all. */
21d799b5 17313 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
c19d1205
ZW
17314 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
17315
17316 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
17317 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
17318 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
17319 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
17320 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
17321 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
17322 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
17323 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
17324
c921be7d
NC
17325#undef ARM_VARIANT
17326#define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
17327#undef THUMB_VARIANT
17328#define THUMB_VARIANT & arm_ext_v4t
17329
21d799b5
NC
17330 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
17331 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
c19d1205 17332
c921be7d
NC
17333#undef THUMB_VARIANT
17334#define THUMB_VARIANT & arm_ext_v6t2
17335
21d799b5 17336 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
c19d1205
ZW
17337 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
17338
17339 /* Generic coprocessor instructions. */
21d799b5
NC
17340 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
17341 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
17342 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
17343 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
17344 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
17345 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
db472d6f 17346 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 17347
c921be7d
NC
17348#undef ARM_VARIANT
17349#define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
17350
21d799b5 17351 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
c19d1205
ZW
17352 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
17353
c921be7d
NC
17354#undef ARM_VARIANT
17355#define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
17356#undef THUMB_VARIANT
17357#define THUMB_VARIANT & arm_ext_msr
17358
d2cd1205
JB
17359 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
17360 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
c19d1205 17361
c921be7d
NC
17362#undef ARM_VARIANT
17363#define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
17364#undef THUMB_VARIANT
17365#define THUMB_VARIANT & arm_ext_v6t2
17366
21d799b5
NC
17367 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
17368 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
17369 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
17370 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
17371 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
17372 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
17373 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
17374 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
c19d1205 17375
c921be7d
NC
17376#undef ARM_VARIANT
17377#define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
17378#undef THUMB_VARIANT
17379#define THUMB_VARIANT & arm_ext_v4t
17380
5be8be5d
DG
17381 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
17382 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
17383 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
17384 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
17385 tCM("ld","sh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
17386 tCM("ld","sb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
c19d1205 17387
c921be7d
NC
17388#undef ARM_VARIANT
17389#define ARM_VARIANT & arm_ext_v4t_5
17390
c19d1205
ZW
17391 /* ARM Architecture 4T. */
17392 /* Note: bx (and blx) are required on V5, even if the processor does
17393 not support Thumb. */
21d799b5 17394 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
c19d1205 17395
c921be7d
NC
17396#undef ARM_VARIANT
17397#define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
17398#undef THUMB_VARIANT
17399#define THUMB_VARIANT & arm_ext_v5t
17400
c19d1205
ZW
17401 /* Note: blx has 2 variants; the .value coded here is for
17402 BLX(2). Only this variant has conditional execution. */
21d799b5
NC
17403 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
17404 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
c19d1205 17405
c921be7d
NC
17406#undef THUMB_VARIANT
17407#define THUMB_VARIANT & arm_ext_v6t2
17408
21d799b5
NC
17409 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
17410 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
17411 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
17412 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
17413 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
17414 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
17415 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
17416 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 17417
c921be7d
NC
17418#undef ARM_VARIANT
17419#define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
9e3c6df6
PB
17420#undef THUMB_VARIANT
17421#define THUMB_VARIANT &arm_ext_v5exp
c921be7d 17422
21d799b5
NC
17423 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
17424 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
17425 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
17426 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 17427
21d799b5
NC
17428 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
17429 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 17430
21d799b5
NC
17431 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
17432 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
17433 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
17434 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
c19d1205 17435
21d799b5
NC
17436 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17437 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17438 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17439 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 17440
21d799b5
NC
17441 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17442 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 17443
03ee1b7f
NC
17444 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
17445 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
17446 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
17447 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
c19d1205 17448
c921be7d
NC
17449#undef ARM_VARIANT
17450#define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
9e3c6df6
PB
17451#undef THUMB_VARIANT
17452#define THUMB_VARIANT &arm_ext_v6t2
c921be7d 17453
21d799b5 17454 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
5be8be5d
DG
17455 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
17456 ldrd, t_ldstd),
17457 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
17458 ADDRGLDRS), ldrd, t_ldstd),
c19d1205 17459
21d799b5
NC
17460 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
17461 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
c19d1205 17462
c921be7d
NC
17463#undef ARM_VARIANT
17464#define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
17465
21d799b5 17466 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
c19d1205 17467
c921be7d
NC
17468#undef ARM_VARIANT
17469#define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
17470#undef THUMB_VARIANT
17471#define THUMB_VARIANT & arm_ext_v6
17472
21d799b5
NC
17473 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
17474 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
17475 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
17476 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
17477 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
17478 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
17479 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
17480 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
17481 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
17482 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
c19d1205 17483
c921be7d
NC
17484#undef THUMB_VARIANT
17485#define THUMB_VARIANT & arm_ext_v6t2
17486
5be8be5d
DG
17487 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
17488 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
17489 strex, t_strex),
21d799b5
NC
17490 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
17491 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311 17492
21d799b5
NC
17493 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
17494 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
62b3e311 17495
9e3c6df6 17496/* ARM V6 not included in V7M. */
c921be7d
NC
17497#undef THUMB_VARIANT
17498#define THUMB_VARIANT & arm_ext_v6_notm
9e3c6df6
PB
17499 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
17500 UF(rfeib, 9900a00, 1, (RRw), rfe),
17501 UF(rfeda, 8100a00, 1, (RRw), rfe),
17502 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
17503 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
17504 UF(rfefa, 9900a00, 1, (RRw), rfe),
17505 UF(rfeea, 8100a00, 1, (RRw), rfe),
17506 TUF("rfeed", 9100a00, e810c000, 1, (RRw), rfe, rfe),
17507 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
17508 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
17509 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
17510 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
c921be7d 17511
9e3c6df6
PB
17512/* ARM V6 not included in V7M (eg. integer SIMD). */
17513#undef THUMB_VARIANT
17514#define THUMB_VARIANT & arm_ext_v6_dsp
21d799b5
NC
17515 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
17516 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
17517 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
17518 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17519 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17520 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17521 /* Old name for QASX. */
21d799b5
NC
17522 TCE("qaddsubx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17523 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17524 /* Old name for QSAX. */
21d799b5
NC
17525 TCE("qsubaddx", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17526 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17527 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17528 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17529 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17530 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17531 /* Old name for SASX. */
21d799b5
NC
17532 TCE("saddsubx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17533 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17534 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17535 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17536 /* Old name for SHASX. */
21d799b5
NC
17537 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17538 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17539 /* Old name for SHSAX. */
21d799b5
NC
17540 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17541 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17542 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17543 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17544 /* Old name for SSAX. */
21d799b5
NC
17545 TCE("ssubaddx", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17546 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17547 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17548 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17549 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17550 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17551 /* Old name for UASX. */
21d799b5
NC
17552 TCE("uaddsubx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17553 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17554 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17555 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17556 /* Old name for UHASX. */
21d799b5
NC
17557 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17558 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17559 /* Old name for UHSAX. */
21d799b5
NC
17560 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17561 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17562 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17563 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17564 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17565 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17566 /* Old name for UQASX. */
21d799b5
NC
17567 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17568 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17569 /* Old name for UQSAX. */
21d799b5
NC
17570 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17571 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17572 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17573 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17574 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 17575 /* Old name for USAX. */
21d799b5
NC
17576 TCE("usubaddx", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17577 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
17578 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
17579 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
17580 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
17581 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
17582 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
17583 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
17584 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
17585 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
17586 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
17587 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17588 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17589 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
17590 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
17591 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17592 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17593 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
17594 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
17595 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17596 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17597 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17598 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17599 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17600 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17601 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17602 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17603 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17604 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
21d799b5
NC
17605 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
17606 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
17607 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
17608 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
17609 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
c19d1205 17610
c921be7d
NC
17611#undef ARM_VARIANT
17612#define ARM_VARIANT & arm_ext_v6k
17613#undef THUMB_VARIANT
17614#define THUMB_VARIANT & arm_ext_v6k
17615
21d799b5
NC
17616 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
17617 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
17618 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
17619 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
c19d1205 17620
c921be7d
NC
17621#undef THUMB_VARIANT
17622#define THUMB_VARIANT & arm_ext_v6_notm
5be8be5d
DG
17623 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
17624 ldrexd, t_ldrexd),
17625 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
17626 RRnpcb), strexd, t_strexd),
ebdca51a 17627
c921be7d
NC
17628#undef THUMB_VARIANT
17629#define THUMB_VARIANT & arm_ext_v6t2
5be8be5d
DG
17630 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
17631 rd_rn, rd_rn),
17632 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
17633 rd_rn, rd_rn),
17634 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 17635 strex, t_strexbh),
5be8be5d 17636 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 17637 strex, t_strexbh),
21d799b5 17638 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
c19d1205 17639
c921be7d 17640#undef ARM_VARIANT
f4c65163
MGD
17641#define ARM_VARIANT & arm_ext_sec
17642#undef THUMB_VARIANT
17643#define THUMB_VARIANT & arm_ext_sec
c921be7d 17644
21d799b5 17645 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205 17646
90ec0d68
MGD
17647#undef ARM_VARIANT
17648#define ARM_VARIANT & arm_ext_virt
17649#undef THUMB_VARIANT
17650#define THUMB_VARIANT & arm_ext_virt
17651
17652 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
17653 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
17654
c921be7d
NC
17655#undef ARM_VARIANT
17656#define ARM_VARIANT & arm_ext_v6t2
f4c65163
MGD
17657#undef THUMB_VARIANT
17658#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 17659
21d799b5
NC
17660 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
17661 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
17662 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
17663 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
c19d1205 17664
21d799b5
NC
17665 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
17666 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
17667 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
17668 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205 17669
5be8be5d
DG
17670 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
17671 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
17672 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
17673 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
c19d1205 17674
bf3eeda7
NS
17675 /* Thumb-only instructions. */
17676#undef ARM_VARIANT
17677#define ARM_VARIANT NULL
17678 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
17679 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
c921be7d
NC
17680
17681 /* ARM does not really have an IT instruction, so always allow it.
17682 The opcode is copied from Thumb in order to allow warnings in
17683 -mimplicit-it=[never | arm] modes. */
17684#undef ARM_VARIANT
17685#define ARM_VARIANT & arm_ext_v1
17686
21d799b5
NC
17687 TUE("it", bf08, bf08, 1, (COND), it, t_it),
17688 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
17689 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
17690 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
17691 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
17692 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
17693 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
17694 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
17695 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
17696 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
17697 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
17698 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
17699 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
17700 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
17701 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
1c444d06 17702 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
21d799b5
NC
17703 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
17704 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
c19d1205 17705
92e90b6e 17706 /* Thumb2 only instructions. */
c921be7d
NC
17707#undef ARM_VARIANT
17708#define ARM_VARIANT NULL
92e90b6e 17709
21d799b5
NC
17710 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
17711 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
17712 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
17713 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
17714 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
17715 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
92e90b6e 17716
eea54501
MGD
17717 /* Hardware division instructions. */
17718#undef ARM_VARIANT
17719#define ARM_VARIANT & arm_ext_adiv
c921be7d
NC
17720#undef THUMB_VARIANT
17721#define THUMB_VARIANT & arm_ext_div
17722
eea54501
MGD
17723 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
17724 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
62b3e311 17725
7e806470 17726 /* ARM V6M/V7 instructions. */
c921be7d
NC
17727#undef ARM_VARIANT
17728#define ARM_VARIANT & arm_ext_barrier
17729#undef THUMB_VARIANT
17730#define THUMB_VARIANT & arm_ext_barrier
17731
52e7f43d
RE
17732 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, t_barrier),
17733 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, t_barrier),
17734 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, t_barrier),
7e806470 17735
62b3e311 17736 /* ARM V7 instructions. */
c921be7d
NC
17737#undef ARM_VARIANT
17738#define ARM_VARIANT & arm_ext_v7
17739#undef THUMB_VARIANT
17740#define THUMB_VARIANT & arm_ext_v7
17741
21d799b5
NC
17742 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
17743 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
62b3e311 17744
60e5ef9f
MGD
17745#undef ARM_VARIANT
17746#define ARM_VARIANT & arm_ext_mp
17747#undef THUMB_VARIANT
17748#define THUMB_VARIANT & arm_ext_mp
17749
17750 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
17751
c921be7d
NC
17752#undef ARM_VARIANT
17753#define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
17754
21d799b5
NC
17755 cCE("wfs", e200110, 1, (RR), rd),
17756 cCE("rfs", e300110, 1, (RR), rd),
17757 cCE("wfc", e400110, 1, (RR), rd),
17758 cCE("rfc", e500110, 1, (RR), rd),
17759
17760 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
17761 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
17762 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
17763 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
17764
17765 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
17766 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
17767 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
17768 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
17769
17770 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
17771 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
17772 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
17773 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
17774 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
17775 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
17776 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
17777 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
17778 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
17779 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
17780 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
17781 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
17782
17783 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
17784 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
17785 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
17786 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
17787 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
17788 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
17789 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
17790 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
17791 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
17792 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
17793 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
17794 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
17795
17796 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
17797 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
17798 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
17799 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
17800 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
17801 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
17802 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
17803 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
17804 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
17805 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
17806 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
17807 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
17808
17809 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
17810 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
17811 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
17812 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
17813 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
17814 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
17815 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
17816 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
17817 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
17818 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
17819 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
17820 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
17821
17822 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
17823 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
17824 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
17825 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
17826 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
17827 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
17828 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
17829 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
17830 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
17831 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
17832 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
17833 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
17834
17835 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
17836 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
17837 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
17838 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
17839 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
17840 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
17841 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
17842 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
17843 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
17844 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
17845 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
17846 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
17847
17848 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
17849 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
17850 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
17851 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
17852 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
17853 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
17854 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
17855 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
17856 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
17857 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
17858 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
17859 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
17860
17861 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
17862 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
17863 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
17864 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
17865 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
17866 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
17867 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
17868 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
17869 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
17870 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
17871 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
17872 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
17873
17874 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
17875 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
17876 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
17877 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
17878 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
17879 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
17880 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
17881 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
17882 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
17883 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
17884 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
17885 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
17886
17887 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
17888 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
17889 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
17890 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
17891 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
17892 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
17893 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
17894 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
17895 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
17896 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
17897 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
17898 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
17899
17900 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
17901 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
17902 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
17903 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
17904 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
17905 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
17906 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
17907 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
17908 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
17909 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
17910 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
17911 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
17912
17913 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
17914 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
17915 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
17916 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
17917 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
17918 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
17919 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
17920 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
17921 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
17922 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
17923 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
17924 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
17925
17926 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
17927 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
17928 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
17929 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
17930 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
17931 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
17932 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
17933 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
17934 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
17935 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
17936 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
17937 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
17938
17939 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
17940 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
17941 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
17942 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
17943 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
17944 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
17945 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
17946 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
17947 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
17948 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
17949 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
17950 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
17951
17952 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
17953 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
17954 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
17955 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
17956 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
17957 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
17958 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
17959 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
17960 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
17961 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
17962 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
17963 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
17964
17965 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
17966 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
17967 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
17968 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
17969 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
17970 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
17971 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
17972 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
17973 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
17974 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
17975 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
17976 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
17977
17978 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
17979 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
17980 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
17981 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
17982 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
17983 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
17984 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
17985 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
17986 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
17987 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
17988 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
17989 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
17990
17991 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
17992 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
17993 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
17994 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
17995 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
17996 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
17997 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
17998 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
17999 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
18000 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
18001 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
18002 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
18003
18004 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
18005 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
18006 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
18007 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
18008 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
18009 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18010 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18011 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18012 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
18013 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
18014 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
18015 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
18016
18017 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
18018 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
18019 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
18020 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
18021 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
18022 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18023 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18024 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18025 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
18026 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
18027 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
18028 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
18029
18030 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
18031 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
18032 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
18033 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
18034 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
18035 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18036 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18037 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18038 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
18039 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
18040 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
18041 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
18042
18043 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
18044 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
18045 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
18046 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
18047 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
18048 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18049 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18050 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18051 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
18052 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
18053 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
18054 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
18055
18056 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
18057 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
18058 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
18059 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
18060 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
18061 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18062 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18063 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18064 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
18065 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
18066 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
18067 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
18068
18069 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
18070 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
18071 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
18072 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
18073 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
18074 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18075 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18076 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18077 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
18078 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
18079 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
18080 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
18081
18082 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
18083 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
18084 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
18085 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
18086 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
18087 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18088 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18089 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18090 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
18091 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
18092 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
18093 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
18094
18095 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
18096 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
18097 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
18098 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
18099 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
18100 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18101 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18102 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18103 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
18104 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
18105 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
18106 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
18107
18108 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18109 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18110 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18111 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18112 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18113 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18114 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18115 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18116 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18117 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18118 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18119 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18120
18121 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18122 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18123 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18124 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18125 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18126 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18127 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18128 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18129 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18130 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18131 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18132 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18133
18134 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18135 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18136 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18137 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18138 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18139 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18140 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18141 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18142 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18143 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18144 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18145 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18146
18147 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
18148 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
18149 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
18150 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
18151
18152 cCL("flts", e000110, 2, (RF, RR), rn_rd),
18153 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
18154 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
18155 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
18156 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
18157 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
18158 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
18159 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
18160 cCL("flte", e080110, 2, (RF, RR), rn_rd),
18161 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
18162 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
18163 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
b99bd4ef 18164
c19d1205
ZW
18165 /* The implementation of the FIX instruction is broken on some
18166 assemblers, in that it accepts a precision specifier as well as a
18167 rounding specifier, despite the fact that this is meaningless.
18168 To be more compatible, we accept it as well, though of course it
18169 does not set any bits. */
21d799b5
NC
18170 cCE("fix", e100110, 2, (RR, RF), rd_rm),
18171 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
18172 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
18173 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
18174 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
18175 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
18176 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
18177 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
18178 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
18179 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
18180 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
18181 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
18182 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
bfae80f2 18183
c19d1205 18184 /* Instructions that were new with the real FPA, call them V2. */
c921be7d
NC
18185#undef ARM_VARIANT
18186#define ARM_VARIANT & fpu_fpa_ext_v2
18187
21d799b5
NC
18188 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18189 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18190 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18191 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18192 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
18193 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205 18194
c921be7d
NC
18195#undef ARM_VARIANT
18196#define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
18197
c19d1205 18198 /* Moves and type conversions. */
21d799b5
NC
18199 cCE("fcpys", eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
18200 cCE("fmrs", e100a10, 2, (RR, RVS), vfp_reg_from_sp),
18201 cCE("fmsr", e000a10, 2, (RVS, RR), vfp_sp_from_reg),
18202 cCE("fmstat", ef1fa10, 0, (), noargs),
7465e07a
NC
18203 cCE("vmrs", ef00a10, 2, (APSR_RR, RVC), vmrs),
18204 cCE("vmsr", ee00a10, 2, (RVC, RR), vmsr),
21d799b5
NC
18205 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
18206 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
18207 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
18208 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
18209 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
18210 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
18211 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
18212 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
18213
18214 /* Memory operations. */
21d799b5
NC
18215 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
18216 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
55881a11
MGD
18217 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
18218 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
18219 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
18220 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
18221 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
18222 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
18223 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
18224 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
18225 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
18226 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
18227 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
18228 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
18229 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
18230 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
18231 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
18232 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 18233
c19d1205 18234 /* Monadic operations. */
21d799b5
NC
18235 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
18236 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
18237 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
18238
18239 /* Dyadic operations. */
21d799b5
NC
18240 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18241 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18242 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18243 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18244 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18245 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18246 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18247 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18248 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 18249
c19d1205 18250 /* Comparisons. */
21d799b5
NC
18251 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
18252 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
18253 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
18254 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 18255
62f3b8c8
PB
18256 /* Double precision load/store are still present on single precision
18257 implementations. */
18258 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
18259 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
55881a11
MGD
18260 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
18261 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
18262 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
18263 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
18264 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
18265 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
18266 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
18267 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
62f3b8c8 18268
c921be7d
NC
18269#undef ARM_VARIANT
18270#define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
18271
c19d1205 18272 /* Moves and type conversions. */
21d799b5
NC
18273 cCE("fcpyd", eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
18274 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
18275 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
18276 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
18277 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
18278 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
18279 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
18280 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
18281 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
18282 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
18283 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
18284 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
18285 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205 18286
c19d1205 18287 /* Monadic operations. */
21d799b5
NC
18288 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
18289 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
18290 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
18291
18292 /* Dyadic operations. */
21d799b5
NC
18293 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18294 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18295 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18296 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18297 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18298 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18299 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18300 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18301 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 18302
c19d1205 18303 /* Comparisons. */
21d799b5
NC
18304 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
18305 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
18306 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
18307 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205 18308
c921be7d
NC
18309#undef ARM_VARIANT
18310#define ARM_VARIANT & fpu_vfp_ext_v2
18311
21d799b5
NC
18312 cCE("fmsrr", c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
18313 cCE("fmrrs", c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
18314 cCE("fmdrr", c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
18315 cCE("fmrrd", c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
5287ad62 18316
037e8744
JB
18317/* Instructions which may belong to either the Neon or VFP instruction sets.
18318 Individual encoder functions perform additional architecture checks. */
c921be7d
NC
18319#undef ARM_VARIANT
18320#define ARM_VARIANT & fpu_vfp_ext_v1xd
18321#undef THUMB_VARIANT
18322#define THUMB_VARIANT & fpu_vfp_ext_v1xd
18323
037e8744
JB
18324 /* These mnemonics are unique to VFP. */
18325 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
18326 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
21d799b5
NC
18327 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
18328 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
18329 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
18330 nCE(vcmp, _vcmp, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
18331 nCE(vcmpe, _vcmpe, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
037e8744
JB
18332 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
18333 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
18334 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
18335
18336 /* Mnemonics shared by Neon and VFP. */
21d799b5
NC
18337 nCEF(vmul, _vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
18338 nCEF(vmla, _vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
18339 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
037e8744 18340
21d799b5
NC
18341 nCEF(vadd, _vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
18342 nCEF(vsub, _vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
037e8744
JB
18343
18344 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
18345 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
18346
55881a11
MGD
18347 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
18348 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
18349 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
18350 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
18351 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
18352 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
4962c51a
MS
18353 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
18354 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744 18355
5f1af56b 18356 nCEF(vcvt, _vcvt, 3, (RNSDQ, RNSDQ, oI32z), neon_cvt),
e3e535bc 18357 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
21d799b5
NC
18358 nCEF(vcvtb, _vcvt, 2, (RVS, RVS), neon_cvtb),
18359 nCEF(vcvtt, _vcvt, 2, (RVS, RVS), neon_cvtt),
f31fef98 18360
037e8744
JB
18361
18362 /* NOTE: All VMOV encoding is special-cased! */
18363 NCE(vmov, 0, 1, (VMOV), neon_mov),
18364 NCE(vmovq, 0, 1, (VMOV), neon_mov),
18365
c921be7d
NC
18366#undef THUMB_VARIANT
18367#define THUMB_VARIANT & fpu_neon_ext_v1
18368#undef ARM_VARIANT
18369#define ARM_VARIANT & fpu_neon_ext_v1
18370
5287ad62
JB
18371 /* Data processing with three registers of the same length. */
18372 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
18373 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
18374 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
18375 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
18376 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
18377 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
18378 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
18379 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
18380 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
18381 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
18382 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
18383 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
18384 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
18385 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
627907b7
JB
18386 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
18387 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
18388 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
18389 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
5287ad62
JB
18390 /* If not immediate, fall back to neon_dyadic_i64_su.
18391 shl_imm should accept I8 I16 I32 I64,
18392 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
21d799b5
NC
18393 nUF(vshl, _vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
18394 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
18395 nUF(vqshl, _vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
18396 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
5287ad62 18397 /* Logic ops, types optional & ignored. */
4316f0d2
DG
18398 nUF(vand, _vand, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
18399 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
18400 nUF(vbic, _vbic, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
18401 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
18402 nUF(vorr, _vorr, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
18403 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
18404 nUF(vorn, _vorn, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
18405 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
18406 nUF(veor, _veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
18407 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
5287ad62
JB
18408 /* Bitfield ops, untyped. */
18409 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
18410 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
18411 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
18412 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
18413 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
18414 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
18415 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32. */
21d799b5
NC
18416 nUF(vabd, _vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
18417 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
18418 nUF(vmax, _vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
18419 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
18420 nUF(vmin, _vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
18421 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
5287ad62
JB
18422 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
18423 back to neon_dyadic_if_su. */
21d799b5
NC
18424 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
18425 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
18426 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
18427 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
18428 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
18429 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
18430 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
18431 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 18432 /* Comparison. Type I8 I16 I32 F32. */
21d799b5
NC
18433 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
18434 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
5287ad62 18435 /* As above, D registers only. */
21d799b5
NC
18436 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
18437 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
5287ad62 18438 /* Int and float variants, signedness unimportant. */
21d799b5
NC
18439 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
18440 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
18441 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
5287ad62 18442 /* Add/sub take types I8 I16 I32 I64 F32. */
21d799b5
NC
18443 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
18444 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
18445 /* vtst takes sizes 8, 16, 32. */
18446 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
18447 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
18448 /* VMUL takes I8 I16 I32 F32 P8. */
21d799b5 18449 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62 18450 /* VQD{R}MULH takes S16 S32. */
21d799b5
NC
18451 nUF(vqdmulh, _vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
18452 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
18453 nUF(vqrdmulh, _vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
18454 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
5287ad62
JB
18455 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
18456 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
18457 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
18458 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
92559b5b
PB
18459 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
18460 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
18461 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
18462 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
5287ad62
JB
18463 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
18464 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
18465 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
18466 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
18467
18468 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 18469 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
18470 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
18471
18472 /* Data processing with two registers and a shift amount. */
18473 /* Right shifts, and variants with rounding.
18474 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
18475 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
18476 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
18477 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
18478 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
18479 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
18480 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
18481 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
18482 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
18483 /* Shift and insert. Sizes accepted 8 16 32 64. */
18484 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
18485 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
18486 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
18487 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
18488 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
18489 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
18490 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
18491 /* Right shift immediate, saturating & narrowing, with rounding variants.
18492 Types accepted S16 S32 S64 U16 U32 U64. */
18493 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
18494 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
18495 /* As above, unsigned. Types accepted S16 S32 S64. */
18496 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
18497 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
18498 /* Right shift narrowing. Types accepted I16 I32 I64. */
18499 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
18500 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
18501 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
21d799b5 18502 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
5287ad62 18503 /* CVT with optional immediate for fixed-point variant. */
21d799b5 18504 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 18505
4316f0d2
DG
18506 nUF(vmvn, _vmvn, 2, (RNDQ, RNDQ_Ibig), neon_mvn),
18507 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
5287ad62
JB
18508
18509 /* Data processing, three registers of different lengths. */
18510 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
18511 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
18512 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
18513 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
18514 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
18515 /* If not scalar, fall back to neon_dyadic_long.
18516 Vector types as above, scalar types S16 S32 U16 U32. */
21d799b5
NC
18517 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
18518 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
5287ad62
JB
18519 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
18520 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
18521 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
18522 /* Dyadic, narrowing insns. Types I16 I32 I64. */
18523 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
18524 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
18525 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
18526 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
18527 /* Saturating doubling multiplies. Types S16 S32. */
21d799b5
NC
18528 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
18529 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
18530 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
5287ad62
JB
18531 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
18532 S16 S32 U16 U32. */
21d799b5 18533 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
5287ad62
JB
18534
18535 /* Extract. Size 8. */
3b8d421e
PB
18536 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
18537 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
5287ad62
JB
18538
18539 /* Two registers, miscellaneous. */
18540 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
18541 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
18542 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
18543 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
18544 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
18545 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
18546 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
18547 /* Vector replicate. Sizes 8 16 32. */
21d799b5
NC
18548 nCE(vdup, _vdup, 2, (RNDQ, RR_RNSC), neon_dup),
18549 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
5287ad62
JB
18550 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
18551 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
18552 /* VMOVN. Types I16 I32 I64. */
21d799b5 18553 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
5287ad62 18554 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
21d799b5 18555 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
5287ad62 18556 /* VQMOVUN. Types S16 S32 S64. */
21d799b5 18557 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
5287ad62
JB
18558 /* VZIP / VUZP. Sizes 8 16 32. */
18559 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
18560 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
18561 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
18562 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
18563 /* VQABS / VQNEG. Types S8 S16 S32. */
18564 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
18565 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
18566 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
18567 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
18568 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
18569 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
18570 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
18571 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
18572 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
18573 /* Reciprocal estimates. Types U32 F32. */
18574 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
18575 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
18576 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
18577 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
18578 /* VCLS. Types S8 S16 S32. */
18579 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
18580 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
18581 /* VCLZ. Types I8 I16 I32. */
18582 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
18583 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
18584 /* VCNT. Size 8. */
18585 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
18586 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
18587 /* Two address, untyped. */
18588 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
18589 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
18590 /* VTRN. Sizes 8 16 32. */
21d799b5
NC
18591 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
18592 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
5287ad62
JB
18593
18594 /* Table lookup. Size 8. */
18595 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
18596 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
18597
c921be7d
NC
18598#undef THUMB_VARIANT
18599#define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
18600#undef ARM_VARIANT
18601#define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
18602
5287ad62 18603 /* Neon element/structure load/store. */
21d799b5
NC
18604 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
18605 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
18606 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
18607 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
18608 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
18609 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
18610 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
18611 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
5287ad62 18612
c921be7d 18613#undef THUMB_VARIANT
62f3b8c8
PB
18614#define THUMB_VARIANT &fpu_vfp_ext_v3xd
18615#undef ARM_VARIANT
18616#define ARM_VARIANT &fpu_vfp_ext_v3xd
18617 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
18618 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
18619 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
18620 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
18621 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
18622 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
18623 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
18624 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
18625 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
18626
18627#undef THUMB_VARIANT
c921be7d
NC
18628#define THUMB_VARIANT & fpu_vfp_ext_v3
18629#undef ARM_VARIANT
18630#define ARM_VARIANT & fpu_vfp_ext_v3
18631
21d799b5 18632 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
21d799b5 18633 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 18634 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 18635 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 18636 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 18637 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 18638 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 18639 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 18640 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 18641
62f3b8c8
PB
18642#undef ARM_VARIANT
18643#define ARM_VARIANT &fpu_vfp_ext_fma
18644#undef THUMB_VARIANT
18645#define THUMB_VARIANT &fpu_vfp_ext_fma
18646 /* Mnemonics shared by Neon and VFP. These are included in the
18647 VFP FMA variant; NEON and VFP FMA always includes the NEON
18648 FMA instructions. */
18649 nCEF(vfma, _vfma, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
18650 nCEF(vfms, _vfms, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
18651 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
18652 the v form should always be used. */
18653 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18654 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
18655 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18656 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
18657 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
18658 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
18659
5287ad62 18660#undef THUMB_VARIANT
c921be7d
NC
18661#undef ARM_VARIANT
18662#define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
18663
21d799b5
NC
18664 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
18665 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
18666 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
18667 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
18668 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
18669 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
18670 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
18671 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205 18672
c921be7d
NC
18673#undef ARM_VARIANT
18674#define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
18675
21d799b5
NC
18676 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
18677 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
18678 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
18679 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
18680 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
18681 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
18682 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
18683 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
18684 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
18685 cCE("textrmub", e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
18686 cCE("textrmuh", e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
18687 cCE("textrmuw", e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
18688 cCE("textrmsb", e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
18689 cCE("textrmsh", e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
18690 cCE("textrmsw", e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
18691 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
18692 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
18693 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
18694 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
18695 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
18696 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
18697 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
18698 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
18699 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
18700 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
18701 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
18702 cCE("tmovmskb", e100030, 2, (RR, RIWR), rd_rn),
18703 cCE("tmovmskh", e500030, 2, (RR, RIWR), rd_rn),
18704 cCE("tmovmskw", e900030, 2, (RR, RIWR), rd_rn),
18705 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
18706 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
18707 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
18708 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
18709 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
18710 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
18711 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
18712 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
18713 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18714 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18715 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18716 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18717 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18718 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18719 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18720 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18721 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18722 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
18723 cCE("walignr0", e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18724 cCE("walignr1", e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18725 cCE("walignr2", ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18726 cCE("walignr3", eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18727 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18728 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18729 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18730 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18731 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18732 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18733 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18734 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18735 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18736 cCE("wcmpgtub", e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18737 cCE("wcmpgtuh", e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18738 cCE("wcmpgtuw", e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18739 cCE("wcmpgtsb", e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18740 cCE("wcmpgtsh", e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18741 cCE("wcmpgtsw", eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18742 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
18743 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
18744 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
18745 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
18746 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18747 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18748 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18749 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18750 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18751 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18752 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18753 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18754 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18755 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18756 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18757 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18758 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18759 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18760 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18761 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18762 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18763 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18764 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
18765 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18766 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18767 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18768 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18769 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18770 cCE("wpackhss", e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18771 cCE("wpackhus", e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18772 cCE("wpackwss", eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18773 cCE("wpackwus", e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18774 cCE("wpackdss", ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18775 cCE("wpackdus", ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18776 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18777 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18778 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18779 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18780 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18781 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18782 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18783 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18784 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18785 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18786 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
18787 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18788 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18789 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18790 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18791 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18792 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18793 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18794 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18795 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18796 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18797 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18798 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18799 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18800 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18801 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18802 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18803 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
18804 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
18805 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
18806 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
18807 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
18808 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
18809 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18810 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18811 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18812 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18813 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18814 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18815 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18816 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18817 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18818 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
18819 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
18820 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
18821 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
18822 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
18823 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
18824 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18825 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18826 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18827 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
18828 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
18829 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
18830 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
18831 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
18832 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
18833 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18834 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18835 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18836 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18837 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205 18838
c921be7d
NC
18839#undef ARM_VARIANT
18840#define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
18841
21d799b5
NC
18842 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
18843 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
18844 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
18845 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
18846 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
18847 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
18848 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18849 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18850 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18851 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18852 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18853 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18854 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18855 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18856 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18857 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18858 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18859 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18860 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18861 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18862 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
18863 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18864 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18865 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18866 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18867 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18868 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18869 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18870 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18871 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18872 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18873 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18874 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18875 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18876 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18877 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18878 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18879 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18880 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18881 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18882 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18883 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18884 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18885 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18886 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18887 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18888 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18889 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18890 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18891 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18892 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18893 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18894 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18895 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18896 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18897 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
18898 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
2d447fca 18899
c921be7d
NC
18900#undef ARM_VARIANT
18901#define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
18902
21d799b5
NC
18903 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
18904 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
18905 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
18906 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
18907 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
18908 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
18909 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
18910 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
18911 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
18912 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
18913 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
18914 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
18915 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
18916 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
18917 cCE("cfmv64lr", e000510, 2, (RMDX, RR), rn_rd),
18918 cCE("cfmvr64l", e100510, 2, (RR, RMDX), rd_rn),
18919 cCE("cfmv64hr", e000530, 2, (RMDX, RR), rn_rd),
18920 cCE("cfmvr64h", e100530, 2, (RR, RMDX), rd_rn),
18921 cCE("cfmval32", e200440, 2, (RMAX, RMFX), rd_rn),
18922 cCE("cfmv32al", e100440, 2, (RMFX, RMAX), rd_rn),
18923 cCE("cfmvam32", e200460, 2, (RMAX, RMFX), rd_rn),
18924 cCE("cfmv32am", e100460, 2, (RMFX, RMAX), rd_rn),
18925 cCE("cfmvah32", e200480, 2, (RMAX, RMFX), rd_rn),
18926 cCE("cfmv32ah", e100480, 2, (RMFX, RMAX), rd_rn),
18927 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
18928 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
18929 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
18930 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
18931 cCE("cfmvsc32", e2004e0, 2, (RMDS, RMDX), mav_dspsc),
18932 cCE("cfmv32sc", e1004e0, 2, (RMDX, RMDS), rd),
18933 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
18934 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
18935 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
18936 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
18937 cCE("cfcvt32s", e000480, 2, (RMF, RMFX), rd_rn),
18938 cCE("cfcvt32d", e0004a0, 2, (RMD, RMFX), rd_rn),
18939 cCE("cfcvt64s", e0004c0, 2, (RMF, RMDX), rd_rn),
18940 cCE("cfcvt64d", e0004e0, 2, (RMD, RMDX), rd_rn),
18941 cCE("cfcvts32", e100580, 2, (RMFX, RMF), rd_rn),
18942 cCE("cfcvtd32", e1005a0, 2, (RMFX, RMD), rd_rn),
18943 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
18944 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
18945 cCE("cfrshl32", e000550, 3, (RMFX, RMFX, RR), mav_triple),
18946 cCE("cfrshl64", e000570, 3, (RMDX, RMDX, RR), mav_triple),
18947 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
18948 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
18949 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
18950 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
18951 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
18952 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
18953 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
18954 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
18955 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
18956 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
18957 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
18958 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
18959 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
18960 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
18961 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
18962 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
18963 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
18964 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
18965 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
18966 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
18967 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
18968 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
18969 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
18970 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
18971 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
18972 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
18973 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
18974 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
18975 cCE("cfmadd32", e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
18976 cCE("cfmsub32", e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
18977 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
18978 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
c19d1205
ZW
18979};
18980#undef ARM_VARIANT
18981#undef THUMB_VARIANT
18982#undef TCE
18983#undef TCM
18984#undef TUE
18985#undef TUF
18986#undef TCC
8f06b2d8 18987#undef cCE
e3cb604e
PB
18988#undef cCL
18989#undef C3E
c19d1205
ZW
18990#undef CE
18991#undef CM
18992#undef UE
18993#undef UF
18994#undef UT
5287ad62
JB
18995#undef NUF
18996#undef nUF
18997#undef NCE
18998#undef nCE
c19d1205
ZW
18999#undef OPS0
19000#undef OPS1
19001#undef OPS2
19002#undef OPS3
19003#undef OPS4
19004#undef OPS5
19005#undef OPS6
19006#undef do_0
19007\f
19008/* MD interface: bits in the object file. */
bfae80f2 19009
c19d1205
ZW
19010/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
19011 for use in the a.out file, and stores them in the array pointed to by buf.
19012 This knows about the endian-ness of the target machine and does
19013 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
19014 2 (short) and 4 (long) Floating numbers are put out as a series of
19015 LITTLENUMS (shorts, here at least). */
b99bd4ef 19016
c19d1205
ZW
19017void
19018md_number_to_chars (char * buf, valueT val, int n)
19019{
19020 if (target_big_endian)
19021 number_to_chars_bigendian (buf, val, n);
19022 else
19023 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
19024}
19025
c19d1205
ZW
19026static valueT
19027md_chars_to_number (char * buf, int n)
bfae80f2 19028{
c19d1205
ZW
19029 valueT result = 0;
19030 unsigned char * where = (unsigned char *) buf;
bfae80f2 19031
c19d1205 19032 if (target_big_endian)
b99bd4ef 19033 {
c19d1205
ZW
19034 while (n--)
19035 {
19036 result <<= 8;
19037 result |= (*where++ & 255);
19038 }
b99bd4ef 19039 }
c19d1205 19040 else
b99bd4ef 19041 {
c19d1205
ZW
19042 while (n--)
19043 {
19044 result <<= 8;
19045 result |= (where[n] & 255);
19046 }
bfae80f2 19047 }
b99bd4ef 19048
c19d1205 19049 return result;
bfae80f2 19050}
b99bd4ef 19051
c19d1205 19052/* MD interface: Sections. */
b99bd4ef 19053
fa94de6b
RM
19054/* Calculate the maximum variable size (i.e., excluding fr_fix)
19055 that an rs_machine_dependent frag may reach. */
19056
19057unsigned int
19058arm_frag_max_var (fragS *fragp)
19059{
19060 /* We only use rs_machine_dependent for variable-size Thumb instructions,
19061 which are either THUMB_SIZE (2) or INSN_SIZE (4).
19062
19063 Note that we generate relaxable instructions even for cases that don't
19064 really need it, like an immediate that's a trivial constant. So we're
19065 overestimating the instruction size for some of those cases. Rather
19066 than putting more intelligence here, it would probably be better to
19067 avoid generating a relaxation frag in the first place when it can be
19068 determined up front that a short instruction will suffice. */
19069
19070 gas_assert (fragp->fr_type == rs_machine_dependent);
19071 return INSN_SIZE;
19072}
19073
0110f2b8
PB
19074/* Estimate the size of a frag before relaxing. Assume everything fits in
19075 2 bytes. */
19076
c19d1205 19077int
0110f2b8 19078md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
19079 segT segtype ATTRIBUTE_UNUSED)
19080{
0110f2b8
PB
19081 fragp->fr_var = 2;
19082 return 2;
19083}
19084
19085/* Convert a machine dependent frag. */
19086
19087void
19088md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
19089{
19090 unsigned long insn;
19091 unsigned long old_op;
19092 char *buf;
19093 expressionS exp;
19094 fixS *fixp;
19095 int reloc_type;
19096 int pc_rel;
19097 int opcode;
19098
19099 buf = fragp->fr_literal + fragp->fr_fix;
19100
19101 old_op = bfd_get_16(abfd, buf);
5f4273c7
NC
19102 if (fragp->fr_symbol)
19103 {
0110f2b8
PB
19104 exp.X_op = O_symbol;
19105 exp.X_add_symbol = fragp->fr_symbol;
5f4273c7
NC
19106 }
19107 else
19108 {
0110f2b8 19109 exp.X_op = O_constant;
5f4273c7 19110 }
0110f2b8
PB
19111 exp.X_add_number = fragp->fr_offset;
19112 opcode = fragp->fr_subtype;
19113 switch (opcode)
19114 {
19115 case T_MNEM_ldr_pc:
19116 case T_MNEM_ldr_pc2:
19117 case T_MNEM_ldr_sp:
19118 case T_MNEM_str_sp:
19119 case T_MNEM_ldr:
19120 case T_MNEM_ldrb:
19121 case T_MNEM_ldrh:
19122 case T_MNEM_str:
19123 case T_MNEM_strb:
19124 case T_MNEM_strh:
19125 if (fragp->fr_var == 4)
19126 {
5f4273c7 19127 insn = THUMB_OP32 (opcode);
0110f2b8
PB
19128 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
19129 {
19130 insn |= (old_op & 0x700) << 4;
19131 }
19132 else
19133 {
19134 insn |= (old_op & 7) << 12;
19135 insn |= (old_op & 0x38) << 13;
19136 }
19137 insn |= 0x00000c00;
19138 put_thumb32_insn (buf, insn);
19139 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
19140 }
19141 else
19142 {
19143 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
19144 }
19145 pc_rel = (opcode == T_MNEM_ldr_pc2);
19146 break;
19147 case T_MNEM_adr:
19148 if (fragp->fr_var == 4)
19149 {
19150 insn = THUMB_OP32 (opcode);
19151 insn |= (old_op & 0xf0) << 4;
19152 put_thumb32_insn (buf, insn);
19153 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
19154 }
19155 else
19156 {
19157 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
19158 exp.X_add_number -= 4;
19159 }
19160 pc_rel = 1;
19161 break;
19162 case T_MNEM_mov:
19163 case T_MNEM_movs:
19164 case T_MNEM_cmp:
19165 case T_MNEM_cmn:
19166 if (fragp->fr_var == 4)
19167 {
19168 int r0off = (opcode == T_MNEM_mov
19169 || opcode == T_MNEM_movs) ? 0 : 8;
19170 insn = THUMB_OP32 (opcode);
19171 insn = (insn & 0xe1ffffff) | 0x10000000;
19172 insn |= (old_op & 0x700) << r0off;
19173 put_thumb32_insn (buf, insn);
19174 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
19175 }
19176 else
19177 {
19178 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
19179 }
19180 pc_rel = 0;
19181 break;
19182 case T_MNEM_b:
19183 if (fragp->fr_var == 4)
19184 {
19185 insn = THUMB_OP32(opcode);
19186 put_thumb32_insn (buf, insn);
19187 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
19188 }
19189 else
19190 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
19191 pc_rel = 1;
19192 break;
19193 case T_MNEM_bcond:
19194 if (fragp->fr_var == 4)
19195 {
19196 insn = THUMB_OP32(opcode);
19197 insn |= (old_op & 0xf00) << 14;
19198 put_thumb32_insn (buf, insn);
19199 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
19200 }
19201 else
19202 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
19203 pc_rel = 1;
19204 break;
19205 case T_MNEM_add_sp:
19206 case T_MNEM_add_pc:
19207 case T_MNEM_inc_sp:
19208 case T_MNEM_dec_sp:
19209 if (fragp->fr_var == 4)
19210 {
19211 /* ??? Choose between add and addw. */
19212 insn = THUMB_OP32 (opcode);
19213 insn |= (old_op & 0xf0) << 4;
19214 put_thumb32_insn (buf, insn);
16805f35
PB
19215 if (opcode == T_MNEM_add_pc)
19216 reloc_type = BFD_RELOC_ARM_T32_IMM12;
19217 else
19218 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
19219 }
19220 else
19221 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
19222 pc_rel = 0;
19223 break;
19224
19225 case T_MNEM_addi:
19226 case T_MNEM_addis:
19227 case T_MNEM_subi:
19228 case T_MNEM_subis:
19229 if (fragp->fr_var == 4)
19230 {
19231 insn = THUMB_OP32 (opcode);
19232 insn |= (old_op & 0xf0) << 4;
19233 insn |= (old_op & 0xf) << 16;
19234 put_thumb32_insn (buf, insn);
16805f35
PB
19235 if (insn & (1 << 20))
19236 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
19237 else
19238 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
19239 }
19240 else
19241 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
19242 pc_rel = 0;
19243 break;
19244 default:
5f4273c7 19245 abort ();
0110f2b8
PB
19246 }
19247 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
21d799b5 19248 (enum bfd_reloc_code_real) reloc_type);
0110f2b8
PB
19249 fixp->fx_file = fragp->fr_file;
19250 fixp->fx_line = fragp->fr_line;
19251 fragp->fr_fix += fragp->fr_var;
19252}
19253
19254/* Return the size of a relaxable immediate operand instruction.
19255 SHIFT and SIZE specify the form of the allowable immediate. */
19256static int
19257relax_immediate (fragS *fragp, int size, int shift)
19258{
19259 offsetT offset;
19260 offsetT mask;
19261 offsetT low;
19262
19263 /* ??? Should be able to do better than this. */
19264 if (fragp->fr_symbol)
19265 return 4;
19266
19267 low = (1 << shift) - 1;
19268 mask = (1 << (shift + size)) - (1 << shift);
19269 offset = fragp->fr_offset;
19270 /* Force misaligned offsets to 32-bit variant. */
19271 if (offset & low)
5e77afaa 19272 return 4;
0110f2b8
PB
19273 if (offset & ~mask)
19274 return 4;
19275 return 2;
19276}
19277
5e77afaa
PB
19278/* Get the address of a symbol during relaxation. */
19279static addressT
5f4273c7 19280relaxed_symbol_addr (fragS *fragp, long stretch)
5e77afaa
PB
19281{
19282 fragS *sym_frag;
19283 addressT addr;
19284 symbolS *sym;
19285
19286 sym = fragp->fr_symbol;
19287 sym_frag = symbol_get_frag (sym);
19288 know (S_GET_SEGMENT (sym) != absolute_section
19289 || sym_frag == &zero_address_frag);
19290 addr = S_GET_VALUE (sym) + fragp->fr_offset;
19291
19292 /* If frag has yet to be reached on this pass, assume it will
19293 move by STRETCH just as we did. If this is not so, it will
19294 be because some frag between grows, and that will force
19295 another pass. */
19296
19297 if (stretch != 0
19298 && sym_frag->relax_marker != fragp->relax_marker)
4396b686
PB
19299 {
19300 fragS *f;
19301
19302 /* Adjust stretch for any alignment frag. Note that if have
19303 been expanding the earlier code, the symbol may be
19304 defined in what appears to be an earlier frag. FIXME:
19305 This doesn't handle the fr_subtype field, which specifies
19306 a maximum number of bytes to skip when doing an
19307 alignment. */
19308 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
19309 {
19310 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
19311 {
19312 if (stretch < 0)
19313 stretch = - ((- stretch)
19314 & ~ ((1 << (int) f->fr_offset) - 1));
19315 else
19316 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
19317 if (stretch == 0)
19318 break;
19319 }
19320 }
19321 if (f != NULL)
19322 addr += stretch;
19323 }
5e77afaa
PB
19324
19325 return addr;
19326}
19327
0110f2b8
PB
19328/* Return the size of a relaxable adr pseudo-instruction or PC-relative
19329 load. */
19330static int
5e77afaa 19331relax_adr (fragS *fragp, asection *sec, long stretch)
0110f2b8
PB
19332{
19333 addressT addr;
19334 offsetT val;
19335
19336 /* Assume worst case for symbols not known to be in the same section. */
974da60d
NC
19337 if (fragp->fr_symbol == NULL
19338 || !S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
19339 || sec != S_GET_SEGMENT (fragp->fr_symbol)
19340 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
19341 return 4;
19342
5f4273c7 19343 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
19344 addr = fragp->fr_address + fragp->fr_fix;
19345 addr = (addr + 4) & ~3;
5e77afaa 19346 /* Force misaligned targets to 32-bit variant. */
0110f2b8 19347 if (val & 3)
5e77afaa 19348 return 4;
0110f2b8
PB
19349 val -= addr;
19350 if (val < 0 || val > 1020)
19351 return 4;
19352 return 2;
19353}
19354
19355/* Return the size of a relaxable add/sub immediate instruction. */
19356static int
19357relax_addsub (fragS *fragp, asection *sec)
19358{
19359 char *buf;
19360 int op;
19361
19362 buf = fragp->fr_literal + fragp->fr_fix;
19363 op = bfd_get_16(sec->owner, buf);
19364 if ((op & 0xf) == ((op >> 4) & 0xf))
19365 return relax_immediate (fragp, 8, 0);
19366 else
19367 return relax_immediate (fragp, 3, 0);
19368}
19369
19370
19371/* Return the size of a relaxable branch instruction. BITS is the
19372 size of the offset field in the narrow instruction. */
19373
19374static int
5e77afaa 19375relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
0110f2b8
PB
19376{
19377 addressT addr;
19378 offsetT val;
19379 offsetT limit;
19380
19381 /* Assume worst case for symbols not known to be in the same section. */
5f4273c7 19382 if (!S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
19383 || sec != S_GET_SEGMENT (fragp->fr_symbol)
19384 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
19385 return 4;
19386
267bf995
RR
19387#ifdef OBJ_ELF
19388 if (S_IS_DEFINED (fragp->fr_symbol)
19389 && ARM_IS_FUNC (fragp->fr_symbol))
19390 return 4;
0d9b4b55
NC
19391
19392 /* PR 12532. Global symbols with default visibility might
19393 be preempted, so do not relax relocations to them. */
19394 if ((ELF_ST_VISIBILITY (S_GET_OTHER (fragp->fr_symbol)) == STV_DEFAULT)
19395 && (! S_IS_LOCAL (fragp->fr_symbol)))
19396 return 4;
267bf995
RR
19397#endif
19398
5f4273c7 19399 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
19400 addr = fragp->fr_address + fragp->fr_fix + 4;
19401 val -= addr;
19402
19403 /* Offset is a signed value *2 */
19404 limit = 1 << bits;
19405 if (val >= limit || val < -limit)
19406 return 4;
19407 return 2;
19408}
19409
19410
19411/* Relax a machine dependent frag. This returns the amount by which
19412 the current size of the frag should change. */
19413
19414int
5e77afaa 19415arm_relax_frag (asection *sec, fragS *fragp, long stretch)
0110f2b8
PB
19416{
19417 int oldsize;
19418 int newsize;
19419
19420 oldsize = fragp->fr_var;
19421 switch (fragp->fr_subtype)
19422 {
19423 case T_MNEM_ldr_pc2:
5f4273c7 19424 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
19425 break;
19426 case T_MNEM_ldr_pc:
19427 case T_MNEM_ldr_sp:
19428 case T_MNEM_str_sp:
5f4273c7 19429 newsize = relax_immediate (fragp, 8, 2);
0110f2b8
PB
19430 break;
19431 case T_MNEM_ldr:
19432 case T_MNEM_str:
5f4273c7 19433 newsize = relax_immediate (fragp, 5, 2);
0110f2b8
PB
19434 break;
19435 case T_MNEM_ldrh:
19436 case T_MNEM_strh:
5f4273c7 19437 newsize = relax_immediate (fragp, 5, 1);
0110f2b8
PB
19438 break;
19439 case T_MNEM_ldrb:
19440 case T_MNEM_strb:
5f4273c7 19441 newsize = relax_immediate (fragp, 5, 0);
0110f2b8
PB
19442 break;
19443 case T_MNEM_adr:
5f4273c7 19444 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
19445 break;
19446 case T_MNEM_mov:
19447 case T_MNEM_movs:
19448 case T_MNEM_cmp:
19449 case T_MNEM_cmn:
5f4273c7 19450 newsize = relax_immediate (fragp, 8, 0);
0110f2b8
PB
19451 break;
19452 case T_MNEM_b:
5f4273c7 19453 newsize = relax_branch (fragp, sec, 11, stretch);
0110f2b8
PB
19454 break;
19455 case T_MNEM_bcond:
5f4273c7 19456 newsize = relax_branch (fragp, sec, 8, stretch);
0110f2b8
PB
19457 break;
19458 case T_MNEM_add_sp:
19459 case T_MNEM_add_pc:
19460 newsize = relax_immediate (fragp, 8, 2);
19461 break;
19462 case T_MNEM_inc_sp:
19463 case T_MNEM_dec_sp:
19464 newsize = relax_immediate (fragp, 7, 2);
19465 break;
19466 case T_MNEM_addi:
19467 case T_MNEM_addis:
19468 case T_MNEM_subi:
19469 case T_MNEM_subis:
19470 newsize = relax_addsub (fragp, sec);
19471 break;
19472 default:
5f4273c7 19473 abort ();
0110f2b8 19474 }
5e77afaa
PB
19475
19476 fragp->fr_var = newsize;
19477 /* Freeze wide instructions that are at or before the same location as
19478 in the previous pass. This avoids infinite loops.
5f4273c7
NC
19479 Don't freeze them unconditionally because targets may be artificially
19480 misaligned by the expansion of preceding frags. */
5e77afaa 19481 if (stretch <= 0 && newsize > 2)
0110f2b8 19482 {
0110f2b8 19483 md_convert_frag (sec->owner, sec, fragp);
5f4273c7 19484 frag_wane (fragp);
0110f2b8 19485 }
5e77afaa 19486
0110f2b8 19487 return newsize - oldsize;
c19d1205 19488}
b99bd4ef 19489
c19d1205 19490/* Round up a section size to the appropriate boundary. */
b99bd4ef 19491
c19d1205
ZW
19492valueT
19493md_section_align (segT segment ATTRIBUTE_UNUSED,
19494 valueT size)
19495{
f0927246
NC
19496#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
19497 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
19498 {
19499 /* For a.out, force the section size to be aligned. If we don't do
19500 this, BFD will align it for us, but it will not write out the
19501 final bytes of the section. This may be a bug in BFD, but it is
19502 easier to fix it here since that is how the other a.out targets
19503 work. */
19504 int align;
19505
19506 align = bfd_get_section_alignment (stdoutput, segment);
19507 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
19508 }
c19d1205 19509#endif
f0927246
NC
19510
19511 return size;
bfae80f2 19512}
b99bd4ef 19513
c19d1205
ZW
19514/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
19515 of an rs_align_code fragment. */
19516
19517void
19518arm_handle_align (fragS * fragP)
bfae80f2 19519{
e7495e45
NS
19520 static char const arm_noop[2][2][4] =
19521 {
19522 { /* ARMv1 */
19523 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
19524 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
19525 },
19526 { /* ARMv6k */
19527 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
19528 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
19529 },
19530 };
19531 static char const thumb_noop[2][2][2] =
19532 {
19533 { /* Thumb-1 */
19534 {0xc0, 0x46}, /* LE */
19535 {0x46, 0xc0}, /* BE */
19536 },
19537 { /* Thumb-2 */
19538 {0x00, 0xbf}, /* LE */
19539 {0xbf, 0x00} /* BE */
19540 }
19541 };
19542 static char const wide_thumb_noop[2][4] =
19543 { /* Wide Thumb-2 */
19544 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
19545 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
19546 };
c921be7d 19547
e7495e45 19548 unsigned bytes, fix, noop_size;
c19d1205
ZW
19549 char * p;
19550 const char * noop;
e7495e45 19551 const char *narrow_noop = NULL;
cd000bff
DJ
19552#ifdef OBJ_ELF
19553 enum mstate state;
19554#endif
bfae80f2 19555
c19d1205 19556 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
19557 return;
19558
c19d1205
ZW
19559 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
19560 p = fragP->fr_literal + fragP->fr_fix;
19561 fix = 0;
bfae80f2 19562
c19d1205
ZW
19563 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
19564 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 19565
cd000bff 19566 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
8dc2430f 19567
cd000bff 19568 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
a737bd4d 19569 {
e7495e45
NS
19570 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
19571 {
19572 narrow_noop = thumb_noop[1][target_big_endian];
19573 noop = wide_thumb_noop[target_big_endian];
19574 }
c19d1205 19575 else
e7495e45
NS
19576 noop = thumb_noop[0][target_big_endian];
19577 noop_size = 2;
cd000bff
DJ
19578#ifdef OBJ_ELF
19579 state = MAP_THUMB;
19580#endif
7ed4c4c5
NC
19581 }
19582 else
19583 {
e7495e45
NS
19584 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k) != 0]
19585 [target_big_endian];
19586 noop_size = 4;
cd000bff
DJ
19587#ifdef OBJ_ELF
19588 state = MAP_ARM;
19589#endif
7ed4c4c5 19590 }
c921be7d 19591
e7495e45 19592 fragP->fr_var = noop_size;
c921be7d 19593
c19d1205 19594 if (bytes & (noop_size - 1))
7ed4c4c5 19595 {
c19d1205 19596 fix = bytes & (noop_size - 1);
cd000bff
DJ
19597#ifdef OBJ_ELF
19598 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
19599#endif
c19d1205
ZW
19600 memset (p, 0, fix);
19601 p += fix;
19602 bytes -= fix;
a737bd4d 19603 }
a737bd4d 19604
e7495e45
NS
19605 if (narrow_noop)
19606 {
19607 if (bytes & noop_size)
19608 {
19609 /* Insert a narrow noop. */
19610 memcpy (p, narrow_noop, noop_size);
19611 p += noop_size;
19612 bytes -= noop_size;
19613 fix += noop_size;
19614 }
19615
19616 /* Use wide noops for the remainder */
19617 noop_size = 4;
19618 }
19619
c19d1205 19620 while (bytes >= noop_size)
a737bd4d 19621 {
c19d1205
ZW
19622 memcpy (p, noop, noop_size);
19623 p += noop_size;
19624 bytes -= noop_size;
19625 fix += noop_size;
a737bd4d
NC
19626 }
19627
c19d1205 19628 fragP->fr_fix += fix;
a737bd4d
NC
19629}
19630
c19d1205
ZW
19631/* Called from md_do_align. Used to create an alignment
19632 frag in a code section. */
19633
19634void
19635arm_frag_align_code (int n, int max)
bfae80f2 19636{
c19d1205 19637 char * p;
7ed4c4c5 19638
c19d1205 19639 /* We assume that there will never be a requirement
6ec8e702 19640 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
c19d1205 19641 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
6ec8e702
NC
19642 {
19643 char err_msg[128];
19644
fa94de6b 19645 sprintf (err_msg,
6ec8e702
NC
19646 _("alignments greater than %d bytes not supported in .text sections."),
19647 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
20203fb9 19648 as_fatal ("%s", err_msg);
6ec8e702 19649 }
bfae80f2 19650
c19d1205
ZW
19651 p = frag_var (rs_align_code,
19652 MAX_MEM_FOR_RS_ALIGN_CODE,
19653 1,
19654 (relax_substateT) max,
19655 (symbolS *) NULL,
19656 (offsetT) n,
19657 (char *) NULL);
19658 *p = 0;
19659}
bfae80f2 19660
8dc2430f
NC
19661/* Perform target specific initialisation of a frag.
19662 Note - despite the name this initialisation is not done when the frag
19663 is created, but only when its type is assigned. A frag can be created
19664 and used a long time before its type is set, so beware of assuming that
19665 this initialisationis performed first. */
bfae80f2 19666
cd000bff
DJ
19667#ifndef OBJ_ELF
19668void
19669arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
19670{
19671 /* Record whether this frag is in an ARM or a THUMB area. */
2e98972e 19672 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
cd000bff
DJ
19673}
19674
19675#else /* OBJ_ELF is defined. */
c19d1205 19676void
cd000bff 19677arm_init_frag (fragS * fragP, int max_chars)
c19d1205 19678{
8dc2430f
NC
19679 /* If the current ARM vs THUMB mode has not already
19680 been recorded into this frag then do so now. */
cd000bff
DJ
19681 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
19682 {
19683 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
19684
19685 /* Record a mapping symbol for alignment frags. We will delete this
19686 later if the alignment ends up empty. */
19687 switch (fragP->fr_type)
19688 {
19689 case rs_align:
19690 case rs_align_test:
19691 case rs_fill:
19692 mapping_state_2 (MAP_DATA, max_chars);
19693 break;
19694 case rs_align_code:
19695 mapping_state_2 (thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
19696 break;
19697 default:
19698 break;
19699 }
19700 }
bfae80f2
RE
19701}
19702
c19d1205
ZW
19703/* When we change sections we need to issue a new mapping symbol. */
19704
19705void
19706arm_elf_change_section (void)
bfae80f2 19707{
c19d1205
ZW
19708 /* Link an unlinked unwind index table section to the .text section. */
19709 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
19710 && elf_linked_to_section (now_seg) == NULL)
19711 elf_linked_to_section (now_seg) = text_section;
bfae80f2
RE
19712}
19713
c19d1205
ZW
19714int
19715arm_elf_section_type (const char * str, size_t len)
e45d0630 19716{
c19d1205
ZW
19717 if (len == 5 && strncmp (str, "exidx", 5) == 0)
19718 return SHT_ARM_EXIDX;
e45d0630 19719
c19d1205
ZW
19720 return -1;
19721}
19722\f
19723/* Code to deal with unwinding tables. */
e45d0630 19724
c19d1205 19725static void add_unwind_adjustsp (offsetT);
e45d0630 19726
5f4273c7 19727/* Generate any deferred unwind frame offset. */
e45d0630 19728
bfae80f2 19729static void
c19d1205 19730flush_pending_unwind (void)
bfae80f2 19731{
c19d1205 19732 offsetT offset;
bfae80f2 19733
c19d1205
ZW
19734 offset = unwind.pending_offset;
19735 unwind.pending_offset = 0;
19736 if (offset != 0)
19737 add_unwind_adjustsp (offset);
bfae80f2
RE
19738}
19739
c19d1205
ZW
19740/* Add an opcode to this list for this function. Two-byte opcodes should
19741 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
19742 order. */
19743
bfae80f2 19744static void
c19d1205 19745add_unwind_opcode (valueT op, int length)
bfae80f2 19746{
c19d1205
ZW
19747 /* Add any deferred stack adjustment. */
19748 if (unwind.pending_offset)
19749 flush_pending_unwind ();
bfae80f2 19750
c19d1205 19751 unwind.sp_restored = 0;
bfae80f2 19752
c19d1205 19753 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 19754 {
c19d1205
ZW
19755 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
19756 if (unwind.opcodes)
21d799b5
NC
19757 unwind.opcodes = (unsigned char *) xrealloc (unwind.opcodes,
19758 unwind.opcode_alloc);
c19d1205 19759 else
21d799b5 19760 unwind.opcodes = (unsigned char *) xmalloc (unwind.opcode_alloc);
bfae80f2 19761 }
c19d1205 19762 while (length > 0)
bfae80f2 19763 {
c19d1205
ZW
19764 length--;
19765 unwind.opcodes[unwind.opcode_count] = op & 0xff;
19766 op >>= 8;
19767 unwind.opcode_count++;
bfae80f2 19768 }
bfae80f2
RE
19769}
19770
c19d1205
ZW
19771/* Add unwind opcodes to adjust the stack pointer. */
19772
bfae80f2 19773static void
c19d1205 19774add_unwind_adjustsp (offsetT offset)
bfae80f2 19775{
c19d1205 19776 valueT op;
bfae80f2 19777
c19d1205 19778 if (offset > 0x200)
bfae80f2 19779 {
c19d1205
ZW
19780 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
19781 char bytes[5];
19782 int n;
19783 valueT o;
bfae80f2 19784
c19d1205
ZW
19785 /* Long form: 0xb2, uleb128. */
19786 /* This might not fit in a word so add the individual bytes,
19787 remembering the list is built in reverse order. */
19788 o = (valueT) ((offset - 0x204) >> 2);
19789 if (o == 0)
19790 add_unwind_opcode (0, 1);
bfae80f2 19791
c19d1205
ZW
19792 /* Calculate the uleb128 encoding of the offset. */
19793 n = 0;
19794 while (o)
19795 {
19796 bytes[n] = o & 0x7f;
19797 o >>= 7;
19798 if (o)
19799 bytes[n] |= 0x80;
19800 n++;
19801 }
19802 /* Add the insn. */
19803 for (; n; n--)
19804 add_unwind_opcode (bytes[n - 1], 1);
19805 add_unwind_opcode (0xb2, 1);
19806 }
19807 else if (offset > 0x100)
bfae80f2 19808 {
c19d1205
ZW
19809 /* Two short opcodes. */
19810 add_unwind_opcode (0x3f, 1);
19811 op = (offset - 0x104) >> 2;
19812 add_unwind_opcode (op, 1);
bfae80f2 19813 }
c19d1205
ZW
19814 else if (offset > 0)
19815 {
19816 /* Short opcode. */
19817 op = (offset - 4) >> 2;
19818 add_unwind_opcode (op, 1);
19819 }
19820 else if (offset < 0)
bfae80f2 19821 {
c19d1205
ZW
19822 offset = -offset;
19823 while (offset > 0x100)
bfae80f2 19824 {
c19d1205
ZW
19825 add_unwind_opcode (0x7f, 1);
19826 offset -= 0x100;
bfae80f2 19827 }
c19d1205
ZW
19828 op = ((offset - 4) >> 2) | 0x40;
19829 add_unwind_opcode (op, 1);
bfae80f2 19830 }
bfae80f2
RE
19831}
19832
c19d1205
ZW
19833/* Finish the list of unwind opcodes for this function. */
19834static void
19835finish_unwind_opcodes (void)
bfae80f2 19836{
c19d1205 19837 valueT op;
bfae80f2 19838
c19d1205 19839 if (unwind.fp_used)
bfae80f2 19840 {
708587a4 19841 /* Adjust sp as necessary. */
c19d1205
ZW
19842 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
19843 flush_pending_unwind ();
bfae80f2 19844
c19d1205
ZW
19845 /* After restoring sp from the frame pointer. */
19846 op = 0x90 | unwind.fp_reg;
19847 add_unwind_opcode (op, 1);
19848 }
19849 else
19850 flush_pending_unwind ();
bfae80f2
RE
19851}
19852
bfae80f2 19853
c19d1205
ZW
19854/* Start an exception table entry. If idx is nonzero this is an index table
19855 entry. */
bfae80f2
RE
19856
19857static void
c19d1205 19858start_unwind_section (const segT text_seg, int idx)
bfae80f2 19859{
c19d1205
ZW
19860 const char * text_name;
19861 const char * prefix;
19862 const char * prefix_once;
19863 const char * group_name;
19864 size_t prefix_len;
19865 size_t text_len;
19866 char * sec_name;
19867 size_t sec_name_len;
19868 int type;
19869 int flags;
19870 int linkonce;
bfae80f2 19871
c19d1205 19872 if (idx)
bfae80f2 19873 {
c19d1205
ZW
19874 prefix = ELF_STRING_ARM_unwind;
19875 prefix_once = ELF_STRING_ARM_unwind_once;
19876 type = SHT_ARM_EXIDX;
bfae80f2 19877 }
c19d1205 19878 else
bfae80f2 19879 {
c19d1205
ZW
19880 prefix = ELF_STRING_ARM_unwind_info;
19881 prefix_once = ELF_STRING_ARM_unwind_info_once;
19882 type = SHT_PROGBITS;
bfae80f2
RE
19883 }
19884
c19d1205
ZW
19885 text_name = segment_name (text_seg);
19886 if (streq (text_name, ".text"))
19887 text_name = "";
19888
19889 if (strncmp (text_name, ".gnu.linkonce.t.",
19890 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 19891 {
c19d1205
ZW
19892 prefix = prefix_once;
19893 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
19894 }
19895
c19d1205
ZW
19896 prefix_len = strlen (prefix);
19897 text_len = strlen (text_name);
19898 sec_name_len = prefix_len + text_len;
21d799b5 19899 sec_name = (char *) xmalloc (sec_name_len + 1);
c19d1205
ZW
19900 memcpy (sec_name, prefix, prefix_len);
19901 memcpy (sec_name + prefix_len, text_name, text_len);
19902 sec_name[prefix_len + text_len] = '\0';
bfae80f2 19903
c19d1205
ZW
19904 flags = SHF_ALLOC;
19905 linkonce = 0;
19906 group_name = 0;
bfae80f2 19907
c19d1205
ZW
19908 /* Handle COMDAT group. */
19909 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 19910 {
c19d1205
ZW
19911 group_name = elf_group_name (text_seg);
19912 if (group_name == NULL)
19913 {
bd3ba5d1 19914 as_bad (_("Group section `%s' has no group signature"),
c19d1205
ZW
19915 segment_name (text_seg));
19916 ignore_rest_of_line ();
19917 return;
19918 }
19919 flags |= SHF_GROUP;
19920 linkonce = 1;
bfae80f2
RE
19921 }
19922
c19d1205 19923 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
bfae80f2 19924
5f4273c7 19925 /* Set the section link for index tables. */
c19d1205
ZW
19926 if (idx)
19927 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
19928}
19929
bfae80f2 19930
c19d1205
ZW
19931/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
19932 personality routine data. Returns zero, or the index table value for
19933 and inline entry. */
19934
19935static valueT
19936create_unwind_entry (int have_data)
bfae80f2 19937{
c19d1205
ZW
19938 int size;
19939 addressT where;
19940 char *ptr;
19941 /* The current word of data. */
19942 valueT data;
19943 /* The number of bytes left in this word. */
19944 int n;
bfae80f2 19945
c19d1205 19946 finish_unwind_opcodes ();
bfae80f2 19947
c19d1205
ZW
19948 /* Remember the current text section. */
19949 unwind.saved_seg = now_seg;
19950 unwind.saved_subseg = now_subseg;
bfae80f2 19951
c19d1205 19952 start_unwind_section (now_seg, 0);
bfae80f2 19953
c19d1205 19954 if (unwind.personality_routine == NULL)
bfae80f2 19955 {
c19d1205
ZW
19956 if (unwind.personality_index == -2)
19957 {
19958 if (have_data)
5f4273c7 19959 as_bad (_("handlerdata in cantunwind frame"));
c19d1205
ZW
19960 return 1; /* EXIDX_CANTUNWIND. */
19961 }
bfae80f2 19962
c19d1205
ZW
19963 /* Use a default personality routine if none is specified. */
19964 if (unwind.personality_index == -1)
19965 {
19966 if (unwind.opcode_count > 3)
19967 unwind.personality_index = 1;
19968 else
19969 unwind.personality_index = 0;
19970 }
bfae80f2 19971
c19d1205
ZW
19972 /* Space for the personality routine entry. */
19973 if (unwind.personality_index == 0)
19974 {
19975 if (unwind.opcode_count > 3)
19976 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 19977
c19d1205
ZW
19978 if (!have_data)
19979 {
19980 /* All the data is inline in the index table. */
19981 data = 0x80;
19982 n = 3;
19983 while (unwind.opcode_count > 0)
19984 {
19985 unwind.opcode_count--;
19986 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
19987 n--;
19988 }
bfae80f2 19989
c19d1205
ZW
19990 /* Pad with "finish" opcodes. */
19991 while (n--)
19992 data = (data << 8) | 0xb0;
bfae80f2 19993
c19d1205
ZW
19994 return data;
19995 }
19996 size = 0;
19997 }
19998 else
19999 /* We get two opcodes "free" in the first word. */
20000 size = unwind.opcode_count - 2;
20001 }
20002 else
5011093d
NC
20003 {
20004 gas_assert (unwind.personality_index == -1);
20005
20006 /* An extra byte is required for the opcode count. */
20007 size = unwind.opcode_count + 1;
20008 }
bfae80f2 20009
c19d1205
ZW
20010 size = (size + 3) >> 2;
20011 if (size > 0xff)
20012 as_bad (_("too many unwind opcodes"));
bfae80f2 20013
c19d1205
ZW
20014 frag_align (2, 0, 0);
20015 record_alignment (now_seg, 2);
20016 unwind.table_entry = expr_build_dot ();
20017
20018 /* Allocate the table entry. */
20019 ptr = frag_more ((size << 2) + 4);
74929e7b
NC
20020 /* PR 13449: Zero the table entries in case some of them are not used. */
20021 memset (ptr, 0, (size << 2) + 4);
c19d1205 20022 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 20023
c19d1205 20024 switch (unwind.personality_index)
bfae80f2 20025 {
c19d1205
ZW
20026 case -1:
20027 /* ??? Should this be a PLT generating relocation? */
20028 /* Custom personality routine. */
20029 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
20030 BFD_RELOC_ARM_PREL31);
bfae80f2 20031
c19d1205
ZW
20032 where += 4;
20033 ptr += 4;
bfae80f2 20034
c19d1205 20035 /* Set the first byte to the number of additional words. */
5011093d 20036 data = size > 0 ? size - 1 : 0;
c19d1205
ZW
20037 n = 3;
20038 break;
bfae80f2 20039
c19d1205
ZW
20040 /* ABI defined personality routines. */
20041 case 0:
20042 /* Three opcodes bytes are packed into the first word. */
20043 data = 0x80;
20044 n = 3;
20045 break;
bfae80f2 20046
c19d1205
ZW
20047 case 1:
20048 case 2:
20049 /* The size and first two opcode bytes go in the first word. */
20050 data = ((0x80 + unwind.personality_index) << 8) | size;
20051 n = 2;
20052 break;
bfae80f2 20053
c19d1205
ZW
20054 default:
20055 /* Should never happen. */
20056 abort ();
20057 }
bfae80f2 20058
c19d1205
ZW
20059 /* Pack the opcodes into words (MSB first), reversing the list at the same
20060 time. */
20061 while (unwind.opcode_count > 0)
20062 {
20063 if (n == 0)
20064 {
20065 md_number_to_chars (ptr, data, 4);
20066 ptr += 4;
20067 n = 4;
20068 data = 0;
20069 }
20070 unwind.opcode_count--;
20071 n--;
20072 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20073 }
20074
20075 /* Finish off the last word. */
20076 if (n < 4)
20077 {
20078 /* Pad with "finish" opcodes. */
20079 while (n--)
20080 data = (data << 8) | 0xb0;
20081
20082 md_number_to_chars (ptr, data, 4);
20083 }
20084
20085 if (!have_data)
20086 {
20087 /* Add an empty descriptor if there is no user-specified data. */
20088 ptr = frag_more (4);
20089 md_number_to_chars (ptr, 0, 4);
20090 }
20091
20092 return 0;
bfae80f2
RE
20093}
20094
f0927246
NC
20095
20096/* Initialize the DWARF-2 unwind information for this procedure. */
20097
20098void
20099tc_arm_frame_initial_instructions (void)
20100{
20101 cfi_add_CFA_def_cfa (REG_SP, 0);
20102}
20103#endif /* OBJ_ELF */
20104
c19d1205
ZW
20105/* Convert REGNAME to a DWARF-2 register number. */
20106
20107int
1df69f4f 20108tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 20109{
1df69f4f 20110 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
c19d1205
ZW
20111
20112 if (reg == FAIL)
20113 return -1;
20114
20115 return reg;
bfae80f2
RE
20116}
20117
f0927246 20118#ifdef TE_PE
c19d1205 20119void
f0927246 20120tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 20121{
91d6fa6a 20122 expressionS exp;
bfae80f2 20123
91d6fa6a
NC
20124 exp.X_op = O_secrel;
20125 exp.X_add_symbol = symbol;
20126 exp.X_add_number = 0;
20127 emit_expr (&exp, size);
f0927246
NC
20128}
20129#endif
bfae80f2 20130
c19d1205 20131/* MD interface: Symbol and relocation handling. */
bfae80f2 20132
2fc8bdac
ZW
20133/* Return the address within the segment that a PC-relative fixup is
20134 relative to. For ARM, PC-relative fixups applied to instructions
20135 are generally relative to the location of the fixup plus 8 bytes.
20136 Thumb branches are offset by 4, and Thumb loads relative to PC
20137 require special handling. */
bfae80f2 20138
c19d1205 20139long
2fc8bdac 20140md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 20141{
2fc8bdac
ZW
20142 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
20143
20144 /* If this is pc-relative and we are going to emit a relocation
20145 then we just want to put out any pipeline compensation that the linker
53baae48
NC
20146 will need. Otherwise we want to use the calculated base.
20147 For WinCE we skip the bias for externals as well, since this
20148 is how the MS ARM-CE assembler behaves and we want to be compatible. */
5f4273c7 20149 if (fixP->fx_pcrel
2fc8bdac 20150 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
20151 || (arm_force_relocation (fixP)
20152#ifdef TE_WINCE
20153 && !S_IS_EXTERNAL (fixP->fx_addsy)
20154#endif
20155 )))
2fc8bdac 20156 base = 0;
bfae80f2 20157
267bf995 20158
c19d1205 20159 switch (fixP->fx_r_type)
bfae80f2 20160 {
2fc8bdac
ZW
20161 /* PC relative addressing on the Thumb is slightly odd as the
20162 bottom two bits of the PC are forced to zero for the
20163 calculation. This happens *after* application of the
20164 pipeline offset. However, Thumb adrl already adjusts for
20165 this, so we need not do it again. */
c19d1205 20166 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 20167 return base & ~3;
c19d1205
ZW
20168
20169 case BFD_RELOC_ARM_THUMB_OFFSET:
20170 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 20171 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 20172 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 20173 return (base + 4) & ~3;
c19d1205 20174
2fc8bdac
ZW
20175 /* Thumb branches are simply offset by +4. */
20176 case BFD_RELOC_THUMB_PCREL_BRANCH7:
20177 case BFD_RELOC_THUMB_PCREL_BRANCH9:
20178 case BFD_RELOC_THUMB_PCREL_BRANCH12:
20179 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac 20180 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac 20181 return base + 4;
bfae80f2 20182
267bf995 20183 case BFD_RELOC_THUMB_PCREL_BRANCH23:
486499d0
CL
20184 if (fixP->fx_addsy
20185 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 20186 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
20187 && ARM_IS_FUNC (fixP->fx_addsy)
20188 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
20189 base = fixP->fx_where + fixP->fx_frag->fr_address;
20190 return base + 4;
20191
00adf2d4
JB
20192 /* BLX is like branches above, but forces the low two bits of PC to
20193 zero. */
486499d0
CL
20194 case BFD_RELOC_THUMB_PCREL_BLX:
20195 if (fixP->fx_addsy
20196 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 20197 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
20198 && THUMB_IS_FUNC (fixP->fx_addsy)
20199 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
20200 base = fixP->fx_where + fixP->fx_frag->fr_address;
00adf2d4
JB
20201 return (base + 4) & ~3;
20202
2fc8bdac
ZW
20203 /* ARM mode branches are offset by +8. However, the Windows CE
20204 loader expects the relocation not to take this into account. */
267bf995 20205 case BFD_RELOC_ARM_PCREL_BLX:
486499d0
CL
20206 if (fixP->fx_addsy
20207 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 20208 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
20209 && ARM_IS_FUNC (fixP->fx_addsy)
20210 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
20211 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 20212 return base + 8;
267bf995 20213
486499d0
CL
20214 case BFD_RELOC_ARM_PCREL_CALL:
20215 if (fixP->fx_addsy
20216 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 20217 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
20218 && THUMB_IS_FUNC (fixP->fx_addsy)
20219 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
20220 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 20221 return base + 8;
267bf995 20222
2fc8bdac 20223 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c 20224 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 20225 case BFD_RELOC_ARM_PLT32:
c19d1205 20226#ifdef TE_WINCE
5f4273c7 20227 /* When handling fixups immediately, because we have already
53baae48
NC
20228 discovered the value of a symbol, or the address of the frag involved
20229 we must account for the offset by +8, as the OS loader will never see the reloc.
20230 see fixup_segment() in write.c
20231 The S_IS_EXTERNAL test handles the case of global symbols.
20232 Those need the calculated base, not just the pipe compensation the linker will need. */
20233 if (fixP->fx_pcrel
20234 && fixP->fx_addsy != NULL
20235 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
20236 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
20237 return base + 8;
2fc8bdac 20238 return base;
c19d1205 20239#else
2fc8bdac 20240 return base + 8;
c19d1205 20241#endif
2fc8bdac 20242
267bf995 20243
2fc8bdac
ZW
20244 /* ARM mode loads relative to PC are also offset by +8. Unlike
20245 branches, the Windows CE loader *does* expect the relocation
20246 to take this into account. */
20247 case BFD_RELOC_ARM_OFFSET_IMM:
20248 case BFD_RELOC_ARM_OFFSET_IMM8:
20249 case BFD_RELOC_ARM_HWLITERAL:
20250 case BFD_RELOC_ARM_LITERAL:
20251 case BFD_RELOC_ARM_CP_OFF_IMM:
20252 return base + 8;
20253
20254
20255 /* Other PC-relative relocations are un-offset. */
20256 default:
20257 return base;
20258 }
bfae80f2
RE
20259}
20260
c19d1205
ZW
20261/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
20262 Otherwise we have no need to default values of symbols. */
20263
20264symbolS *
20265md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
bfae80f2 20266{
c19d1205
ZW
20267#ifdef OBJ_ELF
20268 if (name[0] == '_' && name[1] == 'G'
20269 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
20270 {
20271 if (!GOT_symbol)
20272 {
20273 if (symbol_find (name))
bd3ba5d1 20274 as_bad (_("GOT already in the symbol table"));
bfae80f2 20275
c19d1205
ZW
20276 GOT_symbol = symbol_new (name, undefined_section,
20277 (valueT) 0, & zero_address_frag);
20278 }
bfae80f2 20279
c19d1205 20280 return GOT_symbol;
bfae80f2 20281 }
c19d1205 20282#endif
bfae80f2 20283
c921be7d 20284 return NULL;
bfae80f2
RE
20285}
20286
55cf6793 20287/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
20288 computed as two separate immediate values, added together. We
20289 already know that this value cannot be computed by just one ARM
20290 instruction. */
20291
20292static unsigned int
20293validate_immediate_twopart (unsigned int val,
20294 unsigned int * highpart)
bfae80f2 20295{
c19d1205
ZW
20296 unsigned int a;
20297 unsigned int i;
bfae80f2 20298
c19d1205
ZW
20299 for (i = 0; i < 32; i += 2)
20300 if (((a = rotate_left (val, i)) & 0xff) != 0)
20301 {
20302 if (a & 0xff00)
20303 {
20304 if (a & ~ 0xffff)
20305 continue;
20306 * highpart = (a >> 8) | ((i + 24) << 7);
20307 }
20308 else if (a & 0xff0000)
20309 {
20310 if (a & 0xff000000)
20311 continue;
20312 * highpart = (a >> 16) | ((i + 16) << 7);
20313 }
20314 else
20315 {
9c2799c2 20316 gas_assert (a & 0xff000000);
c19d1205
ZW
20317 * highpart = (a >> 24) | ((i + 8) << 7);
20318 }
bfae80f2 20319
c19d1205
ZW
20320 return (a & 0xff) | (i << 7);
20321 }
bfae80f2 20322
c19d1205 20323 return FAIL;
bfae80f2
RE
20324}
20325
c19d1205
ZW
20326static int
20327validate_offset_imm (unsigned int val, int hwse)
20328{
20329 if ((hwse && val > 255) || val > 4095)
20330 return FAIL;
20331 return val;
20332}
bfae80f2 20333
55cf6793 20334/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
20335 negative immediate constant by altering the instruction. A bit of
20336 a hack really.
20337 MOV <-> MVN
20338 AND <-> BIC
20339 ADC <-> SBC
20340 by inverting the second operand, and
20341 ADD <-> SUB
20342 CMP <-> CMN
20343 by negating the second operand. */
bfae80f2 20344
c19d1205
ZW
20345static int
20346negate_data_op (unsigned long * instruction,
20347 unsigned long value)
bfae80f2 20348{
c19d1205
ZW
20349 int op, new_inst;
20350 unsigned long negated, inverted;
bfae80f2 20351
c19d1205
ZW
20352 negated = encode_arm_immediate (-value);
20353 inverted = encode_arm_immediate (~value);
bfae80f2 20354
c19d1205
ZW
20355 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
20356 switch (op)
bfae80f2 20357 {
c19d1205
ZW
20358 /* First negates. */
20359 case OPCODE_SUB: /* ADD <-> SUB */
20360 new_inst = OPCODE_ADD;
20361 value = negated;
20362 break;
bfae80f2 20363
c19d1205
ZW
20364 case OPCODE_ADD:
20365 new_inst = OPCODE_SUB;
20366 value = negated;
20367 break;
bfae80f2 20368
c19d1205
ZW
20369 case OPCODE_CMP: /* CMP <-> CMN */
20370 new_inst = OPCODE_CMN;
20371 value = negated;
20372 break;
bfae80f2 20373
c19d1205
ZW
20374 case OPCODE_CMN:
20375 new_inst = OPCODE_CMP;
20376 value = negated;
20377 break;
bfae80f2 20378
c19d1205
ZW
20379 /* Now Inverted ops. */
20380 case OPCODE_MOV: /* MOV <-> MVN */
20381 new_inst = OPCODE_MVN;
20382 value = inverted;
20383 break;
bfae80f2 20384
c19d1205
ZW
20385 case OPCODE_MVN:
20386 new_inst = OPCODE_MOV;
20387 value = inverted;
20388 break;
bfae80f2 20389
c19d1205
ZW
20390 case OPCODE_AND: /* AND <-> BIC */
20391 new_inst = OPCODE_BIC;
20392 value = inverted;
20393 break;
bfae80f2 20394
c19d1205
ZW
20395 case OPCODE_BIC:
20396 new_inst = OPCODE_AND;
20397 value = inverted;
20398 break;
bfae80f2 20399
c19d1205
ZW
20400 case OPCODE_ADC: /* ADC <-> SBC */
20401 new_inst = OPCODE_SBC;
20402 value = inverted;
20403 break;
bfae80f2 20404
c19d1205
ZW
20405 case OPCODE_SBC:
20406 new_inst = OPCODE_ADC;
20407 value = inverted;
20408 break;
bfae80f2 20409
c19d1205
ZW
20410 /* We cannot do anything. */
20411 default:
20412 return FAIL;
b99bd4ef
NC
20413 }
20414
c19d1205
ZW
20415 if (value == (unsigned) FAIL)
20416 return FAIL;
20417
20418 *instruction &= OPCODE_MASK;
20419 *instruction |= new_inst << DATA_OP_SHIFT;
20420 return value;
b99bd4ef
NC
20421}
20422
ef8d22e6
PB
20423/* Like negate_data_op, but for Thumb-2. */
20424
20425static unsigned int
16dd5e42 20426thumb32_negate_data_op (offsetT *instruction, unsigned int value)
ef8d22e6
PB
20427{
20428 int op, new_inst;
20429 int rd;
16dd5e42 20430 unsigned int negated, inverted;
ef8d22e6
PB
20431
20432 negated = encode_thumb32_immediate (-value);
20433 inverted = encode_thumb32_immediate (~value);
20434
20435 rd = (*instruction >> 8) & 0xf;
20436 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
20437 switch (op)
20438 {
20439 /* ADD <-> SUB. Includes CMP <-> CMN. */
20440 case T2_OPCODE_SUB:
20441 new_inst = T2_OPCODE_ADD;
20442 value = negated;
20443 break;
20444
20445 case T2_OPCODE_ADD:
20446 new_inst = T2_OPCODE_SUB;
20447 value = negated;
20448 break;
20449
20450 /* ORR <-> ORN. Includes MOV <-> MVN. */
20451 case T2_OPCODE_ORR:
20452 new_inst = T2_OPCODE_ORN;
20453 value = inverted;
20454 break;
20455
20456 case T2_OPCODE_ORN:
20457 new_inst = T2_OPCODE_ORR;
20458 value = inverted;
20459 break;
20460
20461 /* AND <-> BIC. TST has no inverted equivalent. */
20462 case T2_OPCODE_AND:
20463 new_inst = T2_OPCODE_BIC;
20464 if (rd == 15)
20465 value = FAIL;
20466 else
20467 value = inverted;
20468 break;
20469
20470 case T2_OPCODE_BIC:
20471 new_inst = T2_OPCODE_AND;
20472 value = inverted;
20473 break;
20474
20475 /* ADC <-> SBC */
20476 case T2_OPCODE_ADC:
20477 new_inst = T2_OPCODE_SBC;
20478 value = inverted;
20479 break;
20480
20481 case T2_OPCODE_SBC:
20482 new_inst = T2_OPCODE_ADC;
20483 value = inverted;
20484 break;
20485
20486 /* We cannot do anything. */
20487 default:
20488 return FAIL;
20489 }
20490
16dd5e42 20491 if (value == (unsigned int)FAIL)
ef8d22e6
PB
20492 return FAIL;
20493
20494 *instruction &= T2_OPCODE_MASK;
20495 *instruction |= new_inst << T2_DATA_OP_SHIFT;
20496 return value;
20497}
20498
8f06b2d8
PB
20499/* Read a 32-bit thumb instruction from buf. */
20500static unsigned long
20501get_thumb32_insn (char * buf)
20502{
20503 unsigned long insn;
20504 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
20505 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
20506
20507 return insn;
20508}
20509
a8bc6c78
PB
20510
20511/* We usually want to set the low bit on the address of thumb function
20512 symbols. In particular .word foo - . should have the low bit set.
20513 Generic code tries to fold the difference of two symbols to
20514 a constant. Prevent this and force a relocation when the first symbols
20515 is a thumb function. */
c921be7d
NC
20516
20517bfd_boolean
a8bc6c78
PB
20518arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
20519{
20520 if (op == O_subtract
20521 && l->X_op == O_symbol
20522 && r->X_op == O_symbol
20523 && THUMB_IS_FUNC (l->X_add_symbol))
20524 {
20525 l->X_op = O_subtract;
20526 l->X_op_symbol = r->X_add_symbol;
20527 l->X_add_number -= r->X_add_number;
c921be7d 20528 return TRUE;
a8bc6c78 20529 }
c921be7d 20530
a8bc6c78 20531 /* Process as normal. */
c921be7d 20532 return FALSE;
a8bc6c78
PB
20533}
20534
4a42ebbc
RR
20535/* Encode Thumb2 unconditional branches and calls. The encoding
20536 for the 2 are identical for the immediate values. */
20537
20538static void
20539encode_thumb2_b_bl_offset (char * buf, offsetT value)
20540{
20541#define T2I1I2MASK ((1 << 13) | (1 << 11))
20542 offsetT newval;
20543 offsetT newval2;
20544 addressT S, I1, I2, lo, hi;
20545
20546 S = (value >> 24) & 0x01;
20547 I1 = (value >> 23) & 0x01;
20548 I2 = (value >> 22) & 0x01;
20549 hi = (value >> 12) & 0x3ff;
fa94de6b 20550 lo = (value >> 1) & 0x7ff;
4a42ebbc
RR
20551 newval = md_chars_to_number (buf, THUMB_SIZE);
20552 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
20553 newval |= (S << 10) | hi;
20554 newval2 &= ~T2I1I2MASK;
20555 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
20556 md_number_to_chars (buf, newval, THUMB_SIZE);
20557 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
20558}
20559
c19d1205 20560void
55cf6793 20561md_apply_fix (fixS * fixP,
c19d1205
ZW
20562 valueT * valP,
20563 segT seg)
20564{
20565 offsetT value = * valP;
20566 offsetT newval;
20567 unsigned int newimm;
20568 unsigned long temp;
20569 int sign;
20570 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 20571
9c2799c2 20572 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 20573
c19d1205 20574 /* Note whether this will delete the relocation. */
4962c51a 20575
c19d1205
ZW
20576 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
20577 fixP->fx_done = 1;
b99bd4ef 20578
adbaf948 20579 /* On a 64-bit host, silently truncate 'value' to 32 bits for
5f4273c7 20580 consistency with the behaviour on 32-bit hosts. Remember value
adbaf948
ZW
20581 for emit_reloc. */
20582 value &= 0xffffffff;
20583 value ^= 0x80000000;
5f4273c7 20584 value -= 0x80000000;
adbaf948
ZW
20585
20586 *valP = value;
c19d1205 20587 fixP->fx_addnumber = value;
b99bd4ef 20588
adbaf948
ZW
20589 /* Same treatment for fixP->fx_offset. */
20590 fixP->fx_offset &= 0xffffffff;
20591 fixP->fx_offset ^= 0x80000000;
20592 fixP->fx_offset -= 0x80000000;
20593
c19d1205 20594 switch (fixP->fx_r_type)
b99bd4ef 20595 {
c19d1205
ZW
20596 case BFD_RELOC_NONE:
20597 /* This will need to go in the object file. */
20598 fixP->fx_done = 0;
20599 break;
b99bd4ef 20600
c19d1205
ZW
20601 case BFD_RELOC_ARM_IMMEDIATE:
20602 /* We claim that this fixup has been processed here,
20603 even if in fact we generate an error because we do
20604 not have a reloc for it, so tc_gen_reloc will reject it. */
20605 fixP->fx_done = 1;
b99bd4ef 20606
77db8e2e 20607 if (fixP->fx_addsy)
b99bd4ef 20608 {
77db8e2e 20609 const char *msg = 0;
b99bd4ef 20610
77db8e2e
NC
20611 if (! S_IS_DEFINED (fixP->fx_addsy))
20612 msg = _("undefined symbol %s used as an immediate value");
20613 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
20614 msg = _("symbol %s is in a different section");
20615 else if (S_IS_WEAK (fixP->fx_addsy))
20616 msg = _("symbol %s is weak and may be overridden later");
20617
20618 if (msg)
20619 {
20620 as_bad_where (fixP->fx_file, fixP->fx_line,
20621 msg, S_GET_NAME (fixP->fx_addsy));
20622 break;
20623 }
42e5fcbf
AS
20624 }
20625
c19d1205
ZW
20626 newimm = encode_arm_immediate (value);
20627 temp = md_chars_to_number (buf, INSN_SIZE);
20628
20629 /* If the instruction will fail, see if we can fix things up by
20630 changing the opcode. */
20631 if (newimm == (unsigned int) FAIL
20632 && (newimm = negate_data_op (&temp, value)) == (unsigned int) FAIL)
b99bd4ef 20633 {
c19d1205
ZW
20634 as_bad_where (fixP->fx_file, fixP->fx_line,
20635 _("invalid constant (%lx) after fixup"),
20636 (unsigned long) value);
20637 break;
b99bd4ef 20638 }
b99bd4ef 20639
c19d1205
ZW
20640 newimm |= (temp & 0xfffff000);
20641 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
20642 break;
b99bd4ef 20643
c19d1205
ZW
20644 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
20645 {
20646 unsigned int highpart = 0;
20647 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 20648
77db8e2e 20649 if (fixP->fx_addsy)
42e5fcbf 20650 {
77db8e2e 20651 const char *msg = 0;
42e5fcbf 20652
77db8e2e
NC
20653 if (! S_IS_DEFINED (fixP->fx_addsy))
20654 msg = _("undefined symbol %s used as an immediate value");
20655 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
20656 msg = _("symbol %s is in a different section");
20657 else if (S_IS_WEAK (fixP->fx_addsy))
20658 msg = _("symbol %s is weak and may be overridden later");
42e5fcbf 20659
77db8e2e
NC
20660 if (msg)
20661 {
20662 as_bad_where (fixP->fx_file, fixP->fx_line,
20663 msg, S_GET_NAME (fixP->fx_addsy));
20664 break;
20665 }
20666 }
fa94de6b 20667
c19d1205
ZW
20668 newimm = encode_arm_immediate (value);
20669 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 20670
c19d1205
ZW
20671 /* If the instruction will fail, see if we can fix things up by
20672 changing the opcode. */
20673 if (newimm == (unsigned int) FAIL
20674 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
20675 {
20676 /* No ? OK - try using two ADD instructions to generate
20677 the value. */
20678 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 20679
c19d1205
ZW
20680 /* Yes - then make sure that the second instruction is
20681 also an add. */
20682 if (newimm != (unsigned int) FAIL)
20683 newinsn = temp;
20684 /* Still No ? Try using a negated value. */
20685 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
20686 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
20687 /* Otherwise - give up. */
20688 else
20689 {
20690 as_bad_where (fixP->fx_file, fixP->fx_line,
20691 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
20692 (long) value);
20693 break;
20694 }
b99bd4ef 20695
c19d1205
ZW
20696 /* Replace the first operand in the 2nd instruction (which
20697 is the PC) with the destination register. We have
20698 already added in the PC in the first instruction and we
20699 do not want to do it again. */
20700 newinsn &= ~ 0xf0000;
20701 newinsn |= ((newinsn & 0x0f000) << 4);
20702 }
b99bd4ef 20703
c19d1205
ZW
20704 newimm |= (temp & 0xfffff000);
20705 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 20706
c19d1205
ZW
20707 highpart |= (newinsn & 0xfffff000);
20708 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
20709 }
20710 break;
b99bd4ef 20711
c19d1205 20712 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
20713 if (!fixP->fx_done && seg->use_rela_p)
20714 value = 0;
20715
c19d1205 20716 case BFD_RELOC_ARM_LITERAL:
26d97720 20717 sign = value > 0;
b99bd4ef 20718
c19d1205
ZW
20719 if (value < 0)
20720 value = - value;
b99bd4ef 20721
c19d1205 20722 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 20723 {
c19d1205
ZW
20724 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
20725 as_bad_where (fixP->fx_file, fixP->fx_line,
20726 _("invalid literal constant: pool needs to be closer"));
20727 else
20728 as_bad_where (fixP->fx_file, fixP->fx_line,
20729 _("bad immediate value for offset (%ld)"),
20730 (long) value);
20731 break;
f03698e6
RE
20732 }
20733
c19d1205 20734 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
20735 if (value == 0)
20736 newval &= 0xfffff000;
20737 else
20738 {
20739 newval &= 0xff7ff000;
20740 newval |= value | (sign ? INDEX_UP : 0);
20741 }
c19d1205
ZW
20742 md_number_to_chars (buf, newval, INSN_SIZE);
20743 break;
b99bd4ef 20744
c19d1205
ZW
20745 case BFD_RELOC_ARM_OFFSET_IMM8:
20746 case BFD_RELOC_ARM_HWLITERAL:
26d97720 20747 sign = value > 0;
b99bd4ef 20748
c19d1205
ZW
20749 if (value < 0)
20750 value = - value;
b99bd4ef 20751
c19d1205 20752 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 20753 {
c19d1205
ZW
20754 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
20755 as_bad_where (fixP->fx_file, fixP->fx_line,
20756 _("invalid literal constant: pool needs to be closer"));
20757 else
f9d4405b 20758 as_bad (_("bad immediate value for 8-bit offset (%ld)"),
c19d1205
ZW
20759 (long) value);
20760 break;
b99bd4ef
NC
20761 }
20762
c19d1205 20763 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
20764 if (value == 0)
20765 newval &= 0xfffff0f0;
20766 else
20767 {
20768 newval &= 0xff7ff0f0;
20769 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
20770 }
c19d1205
ZW
20771 md_number_to_chars (buf, newval, INSN_SIZE);
20772 break;
b99bd4ef 20773
c19d1205
ZW
20774 case BFD_RELOC_ARM_T32_OFFSET_U8:
20775 if (value < 0 || value > 1020 || value % 4 != 0)
20776 as_bad_where (fixP->fx_file, fixP->fx_line,
20777 _("bad immediate value for offset (%ld)"), (long) value);
20778 value /= 4;
b99bd4ef 20779
c19d1205 20780 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
20781 newval |= value;
20782 md_number_to_chars (buf+2, newval, THUMB_SIZE);
20783 break;
b99bd4ef 20784
c19d1205
ZW
20785 case BFD_RELOC_ARM_T32_OFFSET_IMM:
20786 /* This is a complicated relocation used for all varieties of Thumb32
20787 load/store instruction with immediate offset:
20788
20789 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
20790 *4, optional writeback(W)
20791 (doubleword load/store)
20792
20793 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
20794 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
20795 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
20796 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
20797 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
20798
20799 Uppercase letters indicate bits that are already encoded at
20800 this point. Lowercase letters are our problem. For the
20801 second block of instructions, the secondary opcode nybble
20802 (bits 8..11) is present, and bit 23 is zero, even if this is
20803 a PC-relative operation. */
20804 newval = md_chars_to_number (buf, THUMB_SIZE);
20805 newval <<= 16;
20806 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 20807
c19d1205 20808 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 20809 {
c19d1205
ZW
20810 /* Doubleword load/store: 8-bit offset, scaled by 4. */
20811 if (value >= 0)
20812 newval |= (1 << 23);
20813 else
20814 value = -value;
20815 if (value % 4 != 0)
20816 {
20817 as_bad_where (fixP->fx_file, fixP->fx_line,
20818 _("offset not a multiple of 4"));
20819 break;
20820 }
20821 value /= 4;
216d22bc 20822 if (value > 0xff)
c19d1205
ZW
20823 {
20824 as_bad_where (fixP->fx_file, fixP->fx_line,
20825 _("offset out of range"));
20826 break;
20827 }
20828 newval &= ~0xff;
b99bd4ef 20829 }
c19d1205 20830 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 20831 {
c19d1205
ZW
20832 /* PC-relative, 12-bit offset. */
20833 if (value >= 0)
20834 newval |= (1 << 23);
20835 else
20836 value = -value;
216d22bc 20837 if (value > 0xfff)
c19d1205
ZW
20838 {
20839 as_bad_where (fixP->fx_file, fixP->fx_line,
20840 _("offset out of range"));
20841 break;
20842 }
20843 newval &= ~0xfff;
b99bd4ef 20844 }
c19d1205 20845 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 20846 {
c19d1205
ZW
20847 /* Writeback: 8-bit, +/- offset. */
20848 if (value >= 0)
20849 newval |= (1 << 9);
20850 else
20851 value = -value;
216d22bc 20852 if (value > 0xff)
c19d1205
ZW
20853 {
20854 as_bad_where (fixP->fx_file, fixP->fx_line,
20855 _("offset out of range"));
20856 break;
20857 }
20858 newval &= ~0xff;
b99bd4ef 20859 }
c19d1205 20860 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 20861 {
c19d1205 20862 /* T-instruction: positive 8-bit offset. */
216d22bc 20863 if (value < 0 || value > 0xff)
b99bd4ef 20864 {
c19d1205
ZW
20865 as_bad_where (fixP->fx_file, fixP->fx_line,
20866 _("offset out of range"));
20867 break;
b99bd4ef 20868 }
c19d1205
ZW
20869 newval &= ~0xff;
20870 newval |= value;
b99bd4ef
NC
20871 }
20872 else
b99bd4ef 20873 {
c19d1205
ZW
20874 /* Positive 12-bit or negative 8-bit offset. */
20875 int limit;
20876 if (value >= 0)
b99bd4ef 20877 {
c19d1205
ZW
20878 newval |= (1 << 23);
20879 limit = 0xfff;
20880 }
20881 else
20882 {
20883 value = -value;
20884 limit = 0xff;
20885 }
20886 if (value > limit)
20887 {
20888 as_bad_where (fixP->fx_file, fixP->fx_line,
20889 _("offset out of range"));
20890 break;
b99bd4ef 20891 }
c19d1205 20892 newval &= ~limit;
b99bd4ef 20893 }
b99bd4ef 20894
c19d1205
ZW
20895 newval |= value;
20896 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
20897 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
20898 break;
404ff6b5 20899
c19d1205
ZW
20900 case BFD_RELOC_ARM_SHIFT_IMM:
20901 newval = md_chars_to_number (buf, INSN_SIZE);
20902 if (((unsigned long) value) > 32
20903 || (value == 32
20904 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
20905 {
20906 as_bad_where (fixP->fx_file, fixP->fx_line,
20907 _("shift expression is too large"));
20908 break;
20909 }
404ff6b5 20910
c19d1205
ZW
20911 if (value == 0)
20912 /* Shifts of zero must be done as lsl. */
20913 newval &= ~0x60;
20914 else if (value == 32)
20915 value = 0;
20916 newval &= 0xfffff07f;
20917 newval |= (value & 0x1f) << 7;
20918 md_number_to_chars (buf, newval, INSN_SIZE);
20919 break;
404ff6b5 20920
c19d1205 20921 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 20922 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 20923 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 20924 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
20925 /* We claim that this fixup has been processed here,
20926 even if in fact we generate an error because we do
20927 not have a reloc for it, so tc_gen_reloc will reject it. */
20928 fixP->fx_done = 1;
404ff6b5 20929
c19d1205
ZW
20930 if (fixP->fx_addsy
20931 && ! S_IS_DEFINED (fixP->fx_addsy))
20932 {
20933 as_bad_where (fixP->fx_file, fixP->fx_line,
20934 _("undefined symbol %s used as an immediate value"),
20935 S_GET_NAME (fixP->fx_addsy));
20936 break;
20937 }
404ff6b5 20938
c19d1205
ZW
20939 newval = md_chars_to_number (buf, THUMB_SIZE);
20940 newval <<= 16;
20941 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 20942
16805f35
PB
20943 newimm = FAIL;
20944 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
20945 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
20946 {
20947 newimm = encode_thumb32_immediate (value);
20948 if (newimm == (unsigned int) FAIL)
20949 newimm = thumb32_negate_data_op (&newval, value);
20950 }
16805f35
PB
20951 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
20952 && newimm == (unsigned int) FAIL)
92e90b6e 20953 {
16805f35
PB
20954 /* Turn add/sum into addw/subw. */
20955 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
20956 newval = (newval & 0xfeffffff) | 0x02000000;
40f246e3
NC
20957 /* No flat 12-bit imm encoding for addsw/subsw. */
20958 if ((newval & 0x00100000) == 0)
e9f89963 20959 {
40f246e3
NC
20960 /* 12 bit immediate for addw/subw. */
20961 if (value < 0)
20962 {
20963 value = -value;
20964 newval ^= 0x00a00000;
20965 }
20966 if (value > 0xfff)
20967 newimm = (unsigned int) FAIL;
20968 else
20969 newimm = value;
e9f89963 20970 }
92e90b6e 20971 }
cc8a6dd0 20972
c19d1205 20973 if (newimm == (unsigned int)FAIL)
3631a3c8 20974 {
c19d1205
ZW
20975 as_bad_where (fixP->fx_file, fixP->fx_line,
20976 _("invalid constant (%lx) after fixup"),
20977 (unsigned long) value);
20978 break;
3631a3c8
NC
20979 }
20980
c19d1205
ZW
20981 newval |= (newimm & 0x800) << 15;
20982 newval |= (newimm & 0x700) << 4;
20983 newval |= (newimm & 0x0ff);
cc8a6dd0 20984
c19d1205
ZW
20985 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
20986 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
20987 break;
a737bd4d 20988
3eb17e6b 20989 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
20990 if (((unsigned long) value) > 0xffff)
20991 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 20992 _("invalid smc expression"));
2fc8bdac 20993 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
20994 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
20995 md_number_to_chars (buf, newval, INSN_SIZE);
20996 break;
a737bd4d 20997
90ec0d68
MGD
20998 case BFD_RELOC_ARM_HVC:
20999 if (((unsigned long) value) > 0xffff)
21000 as_bad_where (fixP->fx_file, fixP->fx_line,
21001 _("invalid hvc expression"));
21002 newval = md_chars_to_number (buf, INSN_SIZE);
21003 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21004 md_number_to_chars (buf, newval, INSN_SIZE);
21005 break;
21006
c19d1205 21007 case BFD_RELOC_ARM_SWI:
adbaf948 21008 if (fixP->tc_fix_data != 0)
c19d1205
ZW
21009 {
21010 if (((unsigned long) value) > 0xff)
21011 as_bad_where (fixP->fx_file, fixP->fx_line,
21012 _("invalid swi expression"));
2fc8bdac 21013 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
21014 newval |= value;
21015 md_number_to_chars (buf, newval, THUMB_SIZE);
21016 }
21017 else
21018 {
21019 if (((unsigned long) value) > 0x00ffffff)
21020 as_bad_where (fixP->fx_file, fixP->fx_line,
21021 _("invalid swi expression"));
2fc8bdac 21022 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21023 newval |= value;
21024 md_number_to_chars (buf, newval, INSN_SIZE);
21025 }
21026 break;
a737bd4d 21027
c19d1205
ZW
21028 case BFD_RELOC_ARM_MULTI:
21029 if (((unsigned long) value) > 0xffff)
21030 as_bad_where (fixP->fx_file, fixP->fx_line,
21031 _("invalid expression in load/store multiple"));
21032 newval = value | md_chars_to_number (buf, INSN_SIZE);
21033 md_number_to_chars (buf, newval, INSN_SIZE);
21034 break;
a737bd4d 21035
c19d1205 21036#ifdef OBJ_ELF
39b41c9c 21037 case BFD_RELOC_ARM_PCREL_CALL:
267bf995
RR
21038
21039 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21040 && fixP->fx_addsy
34e77a92 21041 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21042 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21043 && THUMB_IS_FUNC (fixP->fx_addsy))
21044 /* Flip the bl to blx. This is a simple flip
21045 bit here because we generate PCREL_CALL for
21046 unconditional bls. */
21047 {
21048 newval = md_chars_to_number (buf, INSN_SIZE);
21049 newval = newval | 0x10000000;
21050 md_number_to_chars (buf, newval, INSN_SIZE);
21051 temp = 1;
21052 fixP->fx_done = 1;
21053 }
39b41c9c
PB
21054 else
21055 temp = 3;
21056 goto arm_branch_common;
21057
21058 case BFD_RELOC_ARM_PCREL_JUMP:
267bf995
RR
21059 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21060 && fixP->fx_addsy
34e77a92 21061 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21062 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21063 && THUMB_IS_FUNC (fixP->fx_addsy))
21064 {
21065 /* This would map to a bl<cond>, b<cond>,
21066 b<always> to a Thumb function. We
21067 need to force a relocation for this particular
21068 case. */
21069 newval = md_chars_to_number (buf, INSN_SIZE);
21070 fixP->fx_done = 0;
21071 }
21072
2fc8bdac 21073 case BFD_RELOC_ARM_PLT32:
c19d1205 21074#endif
39b41c9c
PB
21075 case BFD_RELOC_ARM_PCREL_BRANCH:
21076 temp = 3;
21077 goto arm_branch_common;
a737bd4d 21078
39b41c9c 21079 case BFD_RELOC_ARM_PCREL_BLX:
267bf995 21080
39b41c9c 21081 temp = 1;
267bf995
RR
21082 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21083 && fixP->fx_addsy
34e77a92 21084 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21085 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21086 && ARM_IS_FUNC (fixP->fx_addsy))
21087 {
21088 /* Flip the blx to a bl and warn. */
21089 const char *name = S_GET_NAME (fixP->fx_addsy);
21090 newval = 0xeb000000;
21091 as_warn_where (fixP->fx_file, fixP->fx_line,
21092 _("blx to '%s' an ARM ISA state function changed to bl"),
21093 name);
21094 md_number_to_chars (buf, newval, INSN_SIZE);
21095 temp = 3;
21096 fixP->fx_done = 1;
21097 }
21098
21099#ifdef OBJ_ELF
21100 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
21101 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
21102#endif
21103
39b41c9c 21104 arm_branch_common:
c19d1205 21105 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
21106 instruction, in a 24 bit, signed field. Bits 26 through 32 either
21107 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
21108 also be be clear. */
21109 if (value & temp)
c19d1205 21110 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
21111 _("misaligned branch destination"));
21112 if ((value & (offsetT)0xfe000000) != (offsetT)0
21113 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
08f10d51 21114 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 21115
2fc8bdac 21116 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 21117 {
2fc8bdac
ZW
21118 newval = md_chars_to_number (buf, INSN_SIZE);
21119 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
21120 /* Set the H bit on BLX instructions. */
21121 if (temp == 1)
21122 {
21123 if (value & 2)
21124 newval |= 0x01000000;
21125 else
21126 newval &= ~0x01000000;
21127 }
2fc8bdac 21128 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 21129 }
c19d1205 21130 break;
a737bd4d 21131
25fe350b
MS
21132 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
21133 /* CBZ can only branch forward. */
a737bd4d 21134
738755b0
MS
21135 /* Attempts to use CBZ to branch to the next instruction
21136 (which, strictly speaking, are prohibited) will be turned into
21137 no-ops.
21138
21139 FIXME: It may be better to remove the instruction completely and
21140 perform relaxation. */
21141 if (value == -2)
2fc8bdac
ZW
21142 {
21143 newval = md_chars_to_number (buf, THUMB_SIZE);
738755b0 21144 newval = 0xbf00; /* NOP encoding T1 */
2fc8bdac
ZW
21145 md_number_to_chars (buf, newval, THUMB_SIZE);
21146 }
738755b0
MS
21147 else
21148 {
21149 if (value & ~0x7e)
08f10d51 21150 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
738755b0
MS
21151
21152 if (fixP->fx_done || !seg->use_rela_p)
21153 {
21154 newval = md_chars_to_number (buf, THUMB_SIZE);
21155 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
21156 md_number_to_chars (buf, newval, THUMB_SIZE);
21157 }
21158 }
c19d1205 21159 break;
a737bd4d 21160
c19d1205 21161 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac 21162 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
08f10d51 21163 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 21164
2fc8bdac
ZW
21165 if (fixP->fx_done || !seg->use_rela_p)
21166 {
21167 newval = md_chars_to_number (buf, THUMB_SIZE);
21168 newval |= (value & 0x1ff) >> 1;
21169 md_number_to_chars (buf, newval, THUMB_SIZE);
21170 }
c19d1205 21171 break;
a737bd4d 21172
c19d1205 21173 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac 21174 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
08f10d51 21175 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 21176
2fc8bdac
ZW
21177 if (fixP->fx_done || !seg->use_rela_p)
21178 {
21179 newval = md_chars_to_number (buf, THUMB_SIZE);
21180 newval |= (value & 0xfff) >> 1;
21181 md_number_to_chars (buf, newval, THUMB_SIZE);
21182 }
c19d1205 21183 break;
a737bd4d 21184
c19d1205 21185 case BFD_RELOC_THUMB_PCREL_BRANCH20:
267bf995
RR
21186 if (fixP->fx_addsy
21187 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21188 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21189 && ARM_IS_FUNC (fixP->fx_addsy)
21190 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21191 {
21192 /* Force a relocation for a branch 20 bits wide. */
21193 fixP->fx_done = 0;
21194 }
08f10d51 21195 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
2fc8bdac
ZW
21196 as_bad_where (fixP->fx_file, fixP->fx_line,
21197 _("conditional branch out of range"));
404ff6b5 21198
2fc8bdac
ZW
21199 if (fixP->fx_done || !seg->use_rela_p)
21200 {
21201 offsetT newval2;
21202 addressT S, J1, J2, lo, hi;
404ff6b5 21203
2fc8bdac
ZW
21204 S = (value & 0x00100000) >> 20;
21205 J2 = (value & 0x00080000) >> 19;
21206 J1 = (value & 0x00040000) >> 18;
21207 hi = (value & 0x0003f000) >> 12;
21208 lo = (value & 0x00000ffe) >> 1;
6c43fab6 21209
2fc8bdac
ZW
21210 newval = md_chars_to_number (buf, THUMB_SIZE);
21211 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21212 newval |= (S << 10) | hi;
21213 newval2 |= (J1 << 13) | (J2 << 11) | lo;
21214 md_number_to_chars (buf, newval, THUMB_SIZE);
21215 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
21216 }
c19d1205 21217 break;
6c43fab6 21218
c19d1205 21219 case BFD_RELOC_THUMB_PCREL_BLX:
267bf995
RR
21220 /* If there is a blx from a thumb state function to
21221 another thumb function flip this to a bl and warn
21222 about it. */
21223
21224 if (fixP->fx_addsy
34e77a92 21225 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21226 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21227 && THUMB_IS_FUNC (fixP->fx_addsy))
21228 {
21229 const char *name = S_GET_NAME (fixP->fx_addsy);
21230 as_warn_where (fixP->fx_file, fixP->fx_line,
21231 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
21232 name);
21233 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21234 newval = newval | 0x1000;
21235 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
21236 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
21237 fixP->fx_done = 1;
21238 }
21239
21240
21241 goto thumb_bl_common;
21242
c19d1205 21243 case BFD_RELOC_THUMB_PCREL_BRANCH23:
267bf995
RR
21244 /* A bl from Thumb state ISA to an internal ARM state function
21245 is converted to a blx. */
21246 if (fixP->fx_addsy
21247 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21248 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21249 && ARM_IS_FUNC (fixP->fx_addsy)
21250 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21251 {
21252 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21253 newval = newval & ~0x1000;
21254 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
21255 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
21256 fixP->fx_done = 1;
21257 }
21258
21259 thumb_bl_common:
21260
21261#ifdef OBJ_ELF
21262 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4 &&
21263 fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
21264 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
21265#endif
21266
2fc8bdac
ZW
21267 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
21268 /* For a BLX instruction, make sure that the relocation is rounded up
21269 to a word boundary. This follows the semantics of the instruction
21270 which specifies that bit 1 of the target address will come from bit
21271 1 of the base address. */
21272 value = (value + 1) & ~ 1;
404ff6b5 21273
4a42ebbc 21274 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
08f10d51
NC
21275 {
21276 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2)))
21277 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
21278 else if ((value & ~0x1ffffff)
21279 && ((value & ~0x1ffffff) != ~0x1ffffff))
21280 as_bad_where (fixP->fx_file, fixP->fx_line,
21281 _("Thumb2 branch out of range"));
21282 }
4a42ebbc
RR
21283
21284 if (fixP->fx_done || !seg->use_rela_p)
21285 encode_thumb2_b_bl_offset (buf, value);
21286
c19d1205 21287 break;
404ff6b5 21288
c19d1205 21289 case BFD_RELOC_THUMB_PCREL_BRANCH25:
08f10d51
NC
21290 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
21291 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
6c43fab6 21292
2fc8bdac 21293 if (fixP->fx_done || !seg->use_rela_p)
4a42ebbc 21294 encode_thumb2_b_bl_offset (buf, value);
6c43fab6 21295
2fc8bdac 21296 break;
a737bd4d 21297
2fc8bdac
ZW
21298 case BFD_RELOC_8:
21299 if (fixP->fx_done || !seg->use_rela_p)
21300 md_number_to_chars (buf, value, 1);
c19d1205 21301 break;
a737bd4d 21302
c19d1205 21303 case BFD_RELOC_16:
2fc8bdac 21304 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 21305 md_number_to_chars (buf, value, 2);
c19d1205 21306 break;
a737bd4d 21307
c19d1205 21308#ifdef OBJ_ELF
0855e32b
NS
21309 case BFD_RELOC_ARM_TLS_CALL:
21310 case BFD_RELOC_ARM_THM_TLS_CALL:
21311 case BFD_RELOC_ARM_TLS_DESCSEQ:
21312 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
21313 S_SET_THREAD_LOCAL (fixP->fx_addsy);
21314 break;
21315
21316 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
21317 case BFD_RELOC_ARM_TLS_GD32:
21318 case BFD_RELOC_ARM_TLS_LE32:
21319 case BFD_RELOC_ARM_TLS_IE32:
21320 case BFD_RELOC_ARM_TLS_LDM32:
21321 case BFD_RELOC_ARM_TLS_LDO32:
21322 S_SET_THREAD_LOCAL (fixP->fx_addsy);
21323 /* fall through */
6c43fab6 21324
c19d1205
ZW
21325 case BFD_RELOC_ARM_GOT32:
21326 case BFD_RELOC_ARM_GOTOFF:
2fc8bdac
ZW
21327 if (fixP->fx_done || !seg->use_rela_p)
21328 md_number_to_chars (buf, 0, 4);
c19d1205 21329 break;
b43420e6
NC
21330
21331 case BFD_RELOC_ARM_GOT_PREL:
21332 if (fixP->fx_done || !seg->use_rela_p)
21333 md_number_to_chars (buf, value, 4);
21334 break;
21335
9a6f4e97
NS
21336 case BFD_RELOC_ARM_TARGET2:
21337 /* TARGET2 is not partial-inplace, so we need to write the
21338 addend here for REL targets, because it won't be written out
21339 during reloc processing later. */
21340 if (fixP->fx_done || !seg->use_rela_p)
21341 md_number_to_chars (buf, fixP->fx_offset, 4);
21342 break;
c19d1205 21343#endif
6c43fab6 21344
c19d1205
ZW
21345 case BFD_RELOC_RVA:
21346 case BFD_RELOC_32:
21347 case BFD_RELOC_ARM_TARGET1:
21348 case BFD_RELOC_ARM_ROSEGREL32:
21349 case BFD_RELOC_ARM_SBREL32:
21350 case BFD_RELOC_32_PCREL:
f0927246
NC
21351#ifdef TE_PE
21352 case BFD_RELOC_32_SECREL:
21353#endif
2fc8bdac 21354 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
21355#ifdef TE_WINCE
21356 /* For WinCE we only do this for pcrel fixups. */
21357 if (fixP->fx_done || fixP->fx_pcrel)
21358#endif
21359 md_number_to_chars (buf, value, 4);
c19d1205 21360 break;
6c43fab6 21361
c19d1205
ZW
21362#ifdef OBJ_ELF
21363 case BFD_RELOC_ARM_PREL31:
2fc8bdac 21364 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
21365 {
21366 newval = md_chars_to_number (buf, 4) & 0x80000000;
21367 if ((value ^ (value >> 1)) & 0x40000000)
21368 {
21369 as_bad_where (fixP->fx_file, fixP->fx_line,
21370 _("rel31 relocation overflow"));
21371 }
21372 newval |= value & 0x7fffffff;
21373 md_number_to_chars (buf, newval, 4);
21374 }
21375 break;
c19d1205 21376#endif
a737bd4d 21377
c19d1205 21378 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 21379 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
c19d1205
ZW
21380 if (value < -1023 || value > 1023 || (value & 3))
21381 as_bad_where (fixP->fx_file, fixP->fx_line,
21382 _("co-processor offset out of range"));
21383 cp_off_common:
26d97720 21384 sign = value > 0;
c19d1205
ZW
21385 if (value < 0)
21386 value = -value;
8f06b2d8
PB
21387 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
21388 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
21389 newval = md_chars_to_number (buf, INSN_SIZE);
21390 else
21391 newval = get_thumb32_insn (buf);
26d97720
NS
21392 if (value == 0)
21393 newval &= 0xffffff00;
21394 else
21395 {
21396 newval &= 0xff7fff00;
21397 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
21398 }
8f06b2d8
PB
21399 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
21400 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
21401 md_number_to_chars (buf, newval, INSN_SIZE);
21402 else
21403 put_thumb32_insn (buf, newval);
c19d1205 21404 break;
a737bd4d 21405
c19d1205 21406 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 21407 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
21408 if (value < -255 || value > 255)
21409 as_bad_where (fixP->fx_file, fixP->fx_line,
21410 _("co-processor offset out of range"));
df7849c5 21411 value *= 4;
c19d1205 21412 goto cp_off_common;
6c43fab6 21413
c19d1205
ZW
21414 case BFD_RELOC_ARM_THUMB_OFFSET:
21415 newval = md_chars_to_number (buf, THUMB_SIZE);
21416 /* Exactly what ranges, and where the offset is inserted depends
21417 on the type of instruction, we can establish this from the
21418 top 4 bits. */
21419 switch (newval >> 12)
21420 {
21421 case 4: /* PC load. */
21422 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
21423 forced to zero for these loads; md_pcrel_from has already
21424 compensated for this. */
21425 if (value & 3)
21426 as_bad_where (fixP->fx_file, fixP->fx_line,
21427 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
21428 (((unsigned long) fixP->fx_frag->fr_address
21429 + (unsigned long) fixP->fx_where) & ~3)
21430 + (unsigned long) value);
a737bd4d 21431
c19d1205
ZW
21432 if (value & ~0x3fc)
21433 as_bad_where (fixP->fx_file, fixP->fx_line,
21434 _("invalid offset, value too big (0x%08lX)"),
21435 (long) value);
a737bd4d 21436
c19d1205
ZW
21437 newval |= value >> 2;
21438 break;
a737bd4d 21439
c19d1205
ZW
21440 case 9: /* SP load/store. */
21441 if (value & ~0x3fc)
21442 as_bad_where (fixP->fx_file, fixP->fx_line,
21443 _("invalid offset, value too big (0x%08lX)"),
21444 (long) value);
21445 newval |= value >> 2;
21446 break;
6c43fab6 21447
c19d1205
ZW
21448 case 6: /* Word load/store. */
21449 if (value & ~0x7c)
21450 as_bad_where (fixP->fx_file, fixP->fx_line,
21451 _("invalid offset, value too big (0x%08lX)"),
21452 (long) value);
21453 newval |= value << 4; /* 6 - 2. */
21454 break;
a737bd4d 21455
c19d1205
ZW
21456 case 7: /* Byte load/store. */
21457 if (value & ~0x1f)
21458 as_bad_where (fixP->fx_file, fixP->fx_line,
21459 _("invalid offset, value too big (0x%08lX)"),
21460 (long) value);
21461 newval |= value << 6;
21462 break;
a737bd4d 21463
c19d1205
ZW
21464 case 8: /* Halfword load/store. */
21465 if (value & ~0x3e)
21466 as_bad_where (fixP->fx_file, fixP->fx_line,
21467 _("invalid offset, value too big (0x%08lX)"),
21468 (long) value);
21469 newval |= value << 5; /* 6 - 1. */
21470 break;
a737bd4d 21471
c19d1205
ZW
21472 default:
21473 as_bad_where (fixP->fx_file, fixP->fx_line,
21474 "Unable to process relocation for thumb opcode: %lx",
21475 (unsigned long) newval);
21476 break;
21477 }
21478 md_number_to_chars (buf, newval, THUMB_SIZE);
21479 break;
a737bd4d 21480
c19d1205
ZW
21481 case BFD_RELOC_ARM_THUMB_ADD:
21482 /* This is a complicated relocation, since we use it for all of
21483 the following immediate relocations:
a737bd4d 21484
c19d1205
ZW
21485 3bit ADD/SUB
21486 8bit ADD/SUB
21487 9bit ADD/SUB SP word-aligned
21488 10bit ADD PC/SP word-aligned
a737bd4d 21489
c19d1205
ZW
21490 The type of instruction being processed is encoded in the
21491 instruction field:
a737bd4d 21492
c19d1205
ZW
21493 0x8000 SUB
21494 0x00F0 Rd
21495 0x000F Rs
21496 */
21497 newval = md_chars_to_number (buf, THUMB_SIZE);
21498 {
21499 int rd = (newval >> 4) & 0xf;
21500 int rs = newval & 0xf;
21501 int subtract = !!(newval & 0x8000);
a737bd4d 21502
c19d1205
ZW
21503 /* Check for HI regs, only very restricted cases allowed:
21504 Adjusting SP, and using PC or SP to get an address. */
21505 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
21506 || (rs > 7 && rs != REG_SP && rs != REG_PC))
21507 as_bad_where (fixP->fx_file, fixP->fx_line,
21508 _("invalid Hi register with immediate"));
a737bd4d 21509
c19d1205
ZW
21510 /* If value is negative, choose the opposite instruction. */
21511 if (value < 0)
21512 {
21513 value = -value;
21514 subtract = !subtract;
21515 if (value < 0)
21516 as_bad_where (fixP->fx_file, fixP->fx_line,
21517 _("immediate value out of range"));
21518 }
a737bd4d 21519
c19d1205
ZW
21520 if (rd == REG_SP)
21521 {
21522 if (value & ~0x1fc)
21523 as_bad_where (fixP->fx_file, fixP->fx_line,
21524 _("invalid immediate for stack address calculation"));
21525 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
21526 newval |= value >> 2;
21527 }
21528 else if (rs == REG_PC || rs == REG_SP)
21529 {
21530 if (subtract || value & ~0x3fc)
21531 as_bad_where (fixP->fx_file, fixP->fx_line,
21532 _("invalid immediate for address calculation (value = 0x%08lX)"),
21533 (unsigned long) value);
21534 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
21535 newval |= rd << 8;
21536 newval |= value >> 2;
21537 }
21538 else if (rs == rd)
21539 {
21540 if (value & ~0xff)
21541 as_bad_where (fixP->fx_file, fixP->fx_line,
21542 _("immediate value out of range"));
21543 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
21544 newval |= (rd << 8) | value;
21545 }
21546 else
21547 {
21548 if (value & ~0x7)
21549 as_bad_where (fixP->fx_file, fixP->fx_line,
21550 _("immediate value out of range"));
21551 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
21552 newval |= rd | (rs << 3) | (value << 6);
21553 }
21554 }
21555 md_number_to_chars (buf, newval, THUMB_SIZE);
21556 break;
a737bd4d 21557
c19d1205
ZW
21558 case BFD_RELOC_ARM_THUMB_IMM:
21559 newval = md_chars_to_number (buf, THUMB_SIZE);
21560 if (value < 0 || value > 255)
21561 as_bad_where (fixP->fx_file, fixP->fx_line,
4e6e072b 21562 _("invalid immediate: %ld is out of range"),
c19d1205
ZW
21563 (long) value);
21564 newval |= value;
21565 md_number_to_chars (buf, newval, THUMB_SIZE);
21566 break;
a737bd4d 21567
c19d1205
ZW
21568 case BFD_RELOC_ARM_THUMB_SHIFT:
21569 /* 5bit shift value (0..32). LSL cannot take 32. */
21570 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
21571 temp = newval & 0xf800;
21572 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
21573 as_bad_where (fixP->fx_file, fixP->fx_line,
21574 _("invalid shift value: %ld"), (long) value);
21575 /* Shifts of zero must be encoded as LSL. */
21576 if (value == 0)
21577 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
21578 /* Shifts of 32 are encoded as zero. */
21579 else if (value == 32)
21580 value = 0;
21581 newval |= value << 6;
21582 md_number_to_chars (buf, newval, THUMB_SIZE);
21583 break;
a737bd4d 21584
c19d1205
ZW
21585 case BFD_RELOC_VTABLE_INHERIT:
21586 case BFD_RELOC_VTABLE_ENTRY:
21587 fixP->fx_done = 0;
21588 return;
6c43fab6 21589
b6895b4f
PB
21590 case BFD_RELOC_ARM_MOVW:
21591 case BFD_RELOC_ARM_MOVT:
21592 case BFD_RELOC_ARM_THUMB_MOVW:
21593 case BFD_RELOC_ARM_THUMB_MOVT:
21594 if (fixP->fx_done || !seg->use_rela_p)
21595 {
21596 /* REL format relocations are limited to a 16-bit addend. */
21597 if (!fixP->fx_done)
21598 {
39623e12 21599 if (value < -0x8000 || value > 0x7fff)
b6895b4f 21600 as_bad_where (fixP->fx_file, fixP->fx_line,
ff5075ca 21601 _("offset out of range"));
b6895b4f
PB
21602 }
21603 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
21604 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
21605 {
21606 value >>= 16;
21607 }
21608
21609 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
21610 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
21611 {
21612 newval = get_thumb32_insn (buf);
21613 newval &= 0xfbf08f00;
21614 newval |= (value & 0xf000) << 4;
21615 newval |= (value & 0x0800) << 15;
21616 newval |= (value & 0x0700) << 4;
21617 newval |= (value & 0x00ff);
21618 put_thumb32_insn (buf, newval);
21619 }
21620 else
21621 {
21622 newval = md_chars_to_number (buf, 4);
21623 newval &= 0xfff0f000;
21624 newval |= value & 0x0fff;
21625 newval |= (value & 0xf000) << 4;
21626 md_number_to_chars (buf, newval, 4);
21627 }
21628 }
21629 return;
21630
4962c51a
MS
21631 case BFD_RELOC_ARM_ALU_PC_G0_NC:
21632 case BFD_RELOC_ARM_ALU_PC_G0:
21633 case BFD_RELOC_ARM_ALU_PC_G1_NC:
21634 case BFD_RELOC_ARM_ALU_PC_G1:
21635 case BFD_RELOC_ARM_ALU_PC_G2:
21636 case BFD_RELOC_ARM_ALU_SB_G0_NC:
21637 case BFD_RELOC_ARM_ALU_SB_G0:
21638 case BFD_RELOC_ARM_ALU_SB_G1_NC:
21639 case BFD_RELOC_ARM_ALU_SB_G1:
21640 case BFD_RELOC_ARM_ALU_SB_G2:
9c2799c2 21641 gas_assert (!fixP->fx_done);
4962c51a
MS
21642 if (!seg->use_rela_p)
21643 {
21644 bfd_vma insn;
21645 bfd_vma encoded_addend;
21646 bfd_vma addend_abs = abs (value);
21647
21648 /* Check that the absolute value of the addend can be
21649 expressed as an 8-bit constant plus a rotation. */
21650 encoded_addend = encode_arm_immediate (addend_abs);
21651 if (encoded_addend == (unsigned int) FAIL)
21652 as_bad_where (fixP->fx_file, fixP->fx_line,
21653 _("the offset 0x%08lX is not representable"),
495bde8e 21654 (unsigned long) addend_abs);
4962c51a
MS
21655
21656 /* Extract the instruction. */
21657 insn = md_chars_to_number (buf, INSN_SIZE);
21658
21659 /* If the addend is positive, use an ADD instruction.
21660 Otherwise use a SUB. Take care not to destroy the S bit. */
21661 insn &= 0xff1fffff;
21662 if (value < 0)
21663 insn |= 1 << 22;
21664 else
21665 insn |= 1 << 23;
21666
21667 /* Place the encoded addend into the first 12 bits of the
21668 instruction. */
21669 insn &= 0xfffff000;
21670 insn |= encoded_addend;
5f4273c7
NC
21671
21672 /* Update the instruction. */
4962c51a
MS
21673 md_number_to_chars (buf, insn, INSN_SIZE);
21674 }
21675 break;
21676
21677 case BFD_RELOC_ARM_LDR_PC_G0:
21678 case BFD_RELOC_ARM_LDR_PC_G1:
21679 case BFD_RELOC_ARM_LDR_PC_G2:
21680 case BFD_RELOC_ARM_LDR_SB_G0:
21681 case BFD_RELOC_ARM_LDR_SB_G1:
21682 case BFD_RELOC_ARM_LDR_SB_G2:
9c2799c2 21683 gas_assert (!fixP->fx_done);
4962c51a
MS
21684 if (!seg->use_rela_p)
21685 {
21686 bfd_vma insn;
21687 bfd_vma addend_abs = abs (value);
21688
21689 /* Check that the absolute value of the addend can be
21690 encoded in 12 bits. */
21691 if (addend_abs >= 0x1000)
21692 as_bad_where (fixP->fx_file, fixP->fx_line,
21693 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
495bde8e 21694 (unsigned long) addend_abs);
4962c51a
MS
21695
21696 /* Extract the instruction. */
21697 insn = md_chars_to_number (buf, INSN_SIZE);
21698
21699 /* If the addend is negative, clear bit 23 of the instruction.
21700 Otherwise set it. */
21701 if (value < 0)
21702 insn &= ~(1 << 23);
21703 else
21704 insn |= 1 << 23;
21705
21706 /* Place the absolute value of the addend into the first 12 bits
21707 of the instruction. */
21708 insn &= 0xfffff000;
21709 insn |= addend_abs;
5f4273c7
NC
21710
21711 /* Update the instruction. */
4962c51a
MS
21712 md_number_to_chars (buf, insn, INSN_SIZE);
21713 }
21714 break;
21715
21716 case BFD_RELOC_ARM_LDRS_PC_G0:
21717 case BFD_RELOC_ARM_LDRS_PC_G1:
21718 case BFD_RELOC_ARM_LDRS_PC_G2:
21719 case BFD_RELOC_ARM_LDRS_SB_G0:
21720 case BFD_RELOC_ARM_LDRS_SB_G1:
21721 case BFD_RELOC_ARM_LDRS_SB_G2:
9c2799c2 21722 gas_assert (!fixP->fx_done);
4962c51a
MS
21723 if (!seg->use_rela_p)
21724 {
21725 bfd_vma insn;
21726 bfd_vma addend_abs = abs (value);
21727
21728 /* Check that the absolute value of the addend can be
21729 encoded in 8 bits. */
21730 if (addend_abs >= 0x100)
21731 as_bad_where (fixP->fx_file, fixP->fx_line,
21732 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
495bde8e 21733 (unsigned long) addend_abs);
4962c51a
MS
21734
21735 /* Extract the instruction. */
21736 insn = md_chars_to_number (buf, INSN_SIZE);
21737
21738 /* If the addend is negative, clear bit 23 of the instruction.
21739 Otherwise set it. */
21740 if (value < 0)
21741 insn &= ~(1 << 23);
21742 else
21743 insn |= 1 << 23;
21744
21745 /* Place the first four bits of the absolute value of the addend
21746 into the first 4 bits of the instruction, and the remaining
21747 four into bits 8 .. 11. */
21748 insn &= 0xfffff0f0;
21749 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
5f4273c7
NC
21750
21751 /* Update the instruction. */
4962c51a
MS
21752 md_number_to_chars (buf, insn, INSN_SIZE);
21753 }
21754 break;
21755
21756 case BFD_RELOC_ARM_LDC_PC_G0:
21757 case BFD_RELOC_ARM_LDC_PC_G1:
21758 case BFD_RELOC_ARM_LDC_PC_G2:
21759 case BFD_RELOC_ARM_LDC_SB_G0:
21760 case BFD_RELOC_ARM_LDC_SB_G1:
21761 case BFD_RELOC_ARM_LDC_SB_G2:
9c2799c2 21762 gas_assert (!fixP->fx_done);
4962c51a
MS
21763 if (!seg->use_rela_p)
21764 {
21765 bfd_vma insn;
21766 bfd_vma addend_abs = abs (value);
21767
21768 /* Check that the absolute value of the addend is a multiple of
21769 four and, when divided by four, fits in 8 bits. */
21770 if (addend_abs & 0x3)
21771 as_bad_where (fixP->fx_file, fixP->fx_line,
21772 _("bad offset 0x%08lX (must be word-aligned)"),
495bde8e 21773 (unsigned long) addend_abs);
4962c51a
MS
21774
21775 if ((addend_abs >> 2) > 0xff)
21776 as_bad_where (fixP->fx_file, fixP->fx_line,
21777 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
495bde8e 21778 (unsigned long) addend_abs);
4962c51a
MS
21779
21780 /* Extract the instruction. */
21781 insn = md_chars_to_number (buf, INSN_SIZE);
21782
21783 /* If the addend is negative, clear bit 23 of the instruction.
21784 Otherwise set it. */
21785 if (value < 0)
21786 insn &= ~(1 << 23);
21787 else
21788 insn |= 1 << 23;
21789
21790 /* Place the addend (divided by four) into the first eight
21791 bits of the instruction. */
21792 insn &= 0xfffffff0;
21793 insn |= addend_abs >> 2;
5f4273c7
NC
21794
21795 /* Update the instruction. */
4962c51a
MS
21796 md_number_to_chars (buf, insn, INSN_SIZE);
21797 }
21798 break;
21799
845b51d6
PB
21800 case BFD_RELOC_ARM_V4BX:
21801 /* This will need to go in the object file. */
21802 fixP->fx_done = 0;
21803 break;
21804
c19d1205
ZW
21805 case BFD_RELOC_UNUSED:
21806 default:
21807 as_bad_where (fixP->fx_file, fixP->fx_line,
21808 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
21809 }
6c43fab6
RE
21810}
21811
c19d1205
ZW
21812/* Translate internal representation of relocation info to BFD target
21813 format. */
a737bd4d 21814
c19d1205 21815arelent *
00a97672 21816tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 21817{
c19d1205
ZW
21818 arelent * reloc;
21819 bfd_reloc_code_real_type code;
a737bd4d 21820
21d799b5 21821 reloc = (arelent *) xmalloc (sizeof (arelent));
a737bd4d 21822
21d799b5 21823 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
c19d1205
ZW
21824 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
21825 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 21826
2fc8bdac 21827 if (fixp->fx_pcrel)
00a97672
RS
21828 {
21829 if (section->use_rela_p)
21830 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
21831 else
21832 fixp->fx_offset = reloc->address;
21833 }
c19d1205 21834 reloc->addend = fixp->fx_offset;
a737bd4d 21835
c19d1205 21836 switch (fixp->fx_r_type)
a737bd4d 21837 {
c19d1205
ZW
21838 case BFD_RELOC_8:
21839 if (fixp->fx_pcrel)
21840 {
21841 code = BFD_RELOC_8_PCREL;
21842 break;
21843 }
a737bd4d 21844
c19d1205
ZW
21845 case BFD_RELOC_16:
21846 if (fixp->fx_pcrel)
21847 {
21848 code = BFD_RELOC_16_PCREL;
21849 break;
21850 }
6c43fab6 21851
c19d1205
ZW
21852 case BFD_RELOC_32:
21853 if (fixp->fx_pcrel)
21854 {
21855 code = BFD_RELOC_32_PCREL;
21856 break;
21857 }
a737bd4d 21858
b6895b4f
PB
21859 case BFD_RELOC_ARM_MOVW:
21860 if (fixp->fx_pcrel)
21861 {
21862 code = BFD_RELOC_ARM_MOVW_PCREL;
21863 break;
21864 }
21865
21866 case BFD_RELOC_ARM_MOVT:
21867 if (fixp->fx_pcrel)
21868 {
21869 code = BFD_RELOC_ARM_MOVT_PCREL;
21870 break;
21871 }
21872
21873 case BFD_RELOC_ARM_THUMB_MOVW:
21874 if (fixp->fx_pcrel)
21875 {
21876 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
21877 break;
21878 }
21879
21880 case BFD_RELOC_ARM_THUMB_MOVT:
21881 if (fixp->fx_pcrel)
21882 {
21883 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
21884 break;
21885 }
21886
c19d1205
ZW
21887 case BFD_RELOC_NONE:
21888 case BFD_RELOC_ARM_PCREL_BRANCH:
21889 case BFD_RELOC_ARM_PCREL_BLX:
21890 case BFD_RELOC_RVA:
21891 case BFD_RELOC_THUMB_PCREL_BRANCH7:
21892 case BFD_RELOC_THUMB_PCREL_BRANCH9:
21893 case BFD_RELOC_THUMB_PCREL_BRANCH12:
21894 case BFD_RELOC_THUMB_PCREL_BRANCH20:
21895 case BFD_RELOC_THUMB_PCREL_BRANCH23:
21896 case BFD_RELOC_THUMB_PCREL_BRANCH25:
c19d1205
ZW
21897 case BFD_RELOC_VTABLE_ENTRY:
21898 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
21899#ifdef TE_PE
21900 case BFD_RELOC_32_SECREL:
21901#endif
c19d1205
ZW
21902 code = fixp->fx_r_type;
21903 break;
a737bd4d 21904
00adf2d4
JB
21905 case BFD_RELOC_THUMB_PCREL_BLX:
21906#ifdef OBJ_ELF
21907 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
21908 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
21909 else
21910#endif
21911 code = BFD_RELOC_THUMB_PCREL_BLX;
21912 break;
21913
c19d1205
ZW
21914 case BFD_RELOC_ARM_LITERAL:
21915 case BFD_RELOC_ARM_HWLITERAL:
21916 /* If this is called then the a literal has
21917 been referenced across a section boundary. */
21918 as_bad_where (fixp->fx_file, fixp->fx_line,
21919 _("literal referenced across section boundary"));
21920 return NULL;
a737bd4d 21921
c19d1205 21922#ifdef OBJ_ELF
0855e32b
NS
21923 case BFD_RELOC_ARM_TLS_CALL:
21924 case BFD_RELOC_ARM_THM_TLS_CALL:
21925 case BFD_RELOC_ARM_TLS_DESCSEQ:
21926 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
c19d1205
ZW
21927 case BFD_RELOC_ARM_GOT32:
21928 case BFD_RELOC_ARM_GOTOFF:
b43420e6 21929 case BFD_RELOC_ARM_GOT_PREL:
c19d1205
ZW
21930 case BFD_RELOC_ARM_PLT32:
21931 case BFD_RELOC_ARM_TARGET1:
21932 case BFD_RELOC_ARM_ROSEGREL32:
21933 case BFD_RELOC_ARM_SBREL32:
21934 case BFD_RELOC_ARM_PREL31:
21935 case BFD_RELOC_ARM_TARGET2:
21936 case BFD_RELOC_ARM_TLS_LE32:
21937 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
21938 case BFD_RELOC_ARM_PCREL_CALL:
21939 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
21940 case BFD_RELOC_ARM_ALU_PC_G0_NC:
21941 case BFD_RELOC_ARM_ALU_PC_G0:
21942 case BFD_RELOC_ARM_ALU_PC_G1_NC:
21943 case BFD_RELOC_ARM_ALU_PC_G1:
21944 case BFD_RELOC_ARM_ALU_PC_G2:
21945 case BFD_RELOC_ARM_LDR_PC_G0:
21946 case BFD_RELOC_ARM_LDR_PC_G1:
21947 case BFD_RELOC_ARM_LDR_PC_G2:
21948 case BFD_RELOC_ARM_LDRS_PC_G0:
21949 case BFD_RELOC_ARM_LDRS_PC_G1:
21950 case BFD_RELOC_ARM_LDRS_PC_G2:
21951 case BFD_RELOC_ARM_LDC_PC_G0:
21952 case BFD_RELOC_ARM_LDC_PC_G1:
21953 case BFD_RELOC_ARM_LDC_PC_G2:
21954 case BFD_RELOC_ARM_ALU_SB_G0_NC:
21955 case BFD_RELOC_ARM_ALU_SB_G0:
21956 case BFD_RELOC_ARM_ALU_SB_G1_NC:
21957 case BFD_RELOC_ARM_ALU_SB_G1:
21958 case BFD_RELOC_ARM_ALU_SB_G2:
21959 case BFD_RELOC_ARM_LDR_SB_G0:
21960 case BFD_RELOC_ARM_LDR_SB_G1:
21961 case BFD_RELOC_ARM_LDR_SB_G2:
21962 case BFD_RELOC_ARM_LDRS_SB_G0:
21963 case BFD_RELOC_ARM_LDRS_SB_G1:
21964 case BFD_RELOC_ARM_LDRS_SB_G2:
21965 case BFD_RELOC_ARM_LDC_SB_G0:
21966 case BFD_RELOC_ARM_LDC_SB_G1:
21967 case BFD_RELOC_ARM_LDC_SB_G2:
845b51d6 21968 case BFD_RELOC_ARM_V4BX:
c19d1205
ZW
21969 code = fixp->fx_r_type;
21970 break;
a737bd4d 21971
0855e32b 21972 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
21973 case BFD_RELOC_ARM_TLS_GD32:
21974 case BFD_RELOC_ARM_TLS_IE32:
21975 case BFD_RELOC_ARM_TLS_LDM32:
21976 /* BFD will include the symbol's address in the addend.
21977 But we don't want that, so subtract it out again here. */
21978 if (!S_IS_COMMON (fixp->fx_addsy))
21979 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
21980 code = fixp->fx_r_type;
21981 break;
21982#endif
a737bd4d 21983
c19d1205
ZW
21984 case BFD_RELOC_ARM_IMMEDIATE:
21985 as_bad_where (fixp->fx_file, fixp->fx_line,
21986 _("internal relocation (type: IMMEDIATE) not fixed up"));
21987 return NULL;
a737bd4d 21988
c19d1205
ZW
21989 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
21990 as_bad_where (fixp->fx_file, fixp->fx_line,
21991 _("ADRL used for a symbol not defined in the same file"));
21992 return NULL;
a737bd4d 21993
c19d1205 21994 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
21995 if (section->use_rela_p)
21996 {
21997 code = fixp->fx_r_type;
21998 break;
21999 }
22000
c19d1205
ZW
22001 if (fixp->fx_addsy != NULL
22002 && !S_IS_DEFINED (fixp->fx_addsy)
22003 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 22004 {
c19d1205
ZW
22005 as_bad_where (fixp->fx_file, fixp->fx_line,
22006 _("undefined local label `%s'"),
22007 S_GET_NAME (fixp->fx_addsy));
22008 return NULL;
a737bd4d
NC
22009 }
22010
c19d1205
ZW
22011 as_bad_where (fixp->fx_file, fixp->fx_line,
22012 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
22013 return NULL;
a737bd4d 22014
c19d1205
ZW
22015 default:
22016 {
22017 char * type;
6c43fab6 22018
c19d1205
ZW
22019 switch (fixp->fx_r_type)
22020 {
22021 case BFD_RELOC_NONE: type = "NONE"; break;
22022 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
22023 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 22024 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
22025 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
22026 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
22027 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
db187cb9 22028 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
8f06b2d8 22029 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
22030 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
22031 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
22032 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
22033 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
22034 default: type = _("<unknown>"); break;
22035 }
22036 as_bad_where (fixp->fx_file, fixp->fx_line,
22037 _("cannot represent %s relocation in this object file format"),
22038 type);
22039 return NULL;
22040 }
a737bd4d 22041 }
6c43fab6 22042
c19d1205
ZW
22043#ifdef OBJ_ELF
22044 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
22045 && GOT_symbol
22046 && fixp->fx_addsy == GOT_symbol)
22047 {
22048 code = BFD_RELOC_ARM_GOTPC;
22049 reloc->addend = fixp->fx_offset = reloc->address;
22050 }
22051#endif
6c43fab6 22052
c19d1205 22053 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 22054
c19d1205
ZW
22055 if (reloc->howto == NULL)
22056 {
22057 as_bad_where (fixp->fx_file, fixp->fx_line,
22058 _("cannot represent %s relocation in this object file format"),
22059 bfd_get_reloc_code_name (code));
22060 return NULL;
22061 }
6c43fab6 22062
c19d1205
ZW
22063 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
22064 vtable entry to be used in the relocation's section offset. */
22065 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
22066 reloc->address = fixp->fx_offset;
6c43fab6 22067
c19d1205 22068 return reloc;
6c43fab6
RE
22069}
22070
c19d1205 22071/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 22072
c19d1205
ZW
22073void
22074cons_fix_new_arm (fragS * frag,
22075 int where,
22076 int size,
22077 expressionS * exp)
6c43fab6 22078{
c19d1205
ZW
22079 bfd_reloc_code_real_type type;
22080 int pcrel = 0;
6c43fab6 22081
c19d1205
ZW
22082 /* Pick a reloc.
22083 FIXME: @@ Should look at CPU word size. */
22084 switch (size)
22085 {
22086 case 1:
22087 type = BFD_RELOC_8;
22088 break;
22089 case 2:
22090 type = BFD_RELOC_16;
22091 break;
22092 case 4:
22093 default:
22094 type = BFD_RELOC_32;
22095 break;
22096 case 8:
22097 type = BFD_RELOC_64;
22098 break;
22099 }
6c43fab6 22100
f0927246
NC
22101#ifdef TE_PE
22102 if (exp->X_op == O_secrel)
22103 {
22104 exp->X_op = O_symbol;
22105 type = BFD_RELOC_32_SECREL;
22106 }
22107#endif
22108
c19d1205
ZW
22109 fix_new_exp (frag, where, (int) size, exp, pcrel, type);
22110}
6c43fab6 22111
4343666d 22112#if defined (OBJ_COFF)
c19d1205
ZW
22113void
22114arm_validate_fix (fixS * fixP)
6c43fab6 22115{
c19d1205
ZW
22116 /* If the destination of the branch is a defined symbol which does not have
22117 the THUMB_FUNC attribute, then we must be calling a function which has
22118 the (interfacearm) attribute. We look for the Thumb entry point to that
22119 function and change the branch to refer to that function instead. */
22120 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
22121 && fixP->fx_addsy != NULL
22122 && S_IS_DEFINED (fixP->fx_addsy)
22123 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 22124 {
c19d1205 22125 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 22126 }
c19d1205
ZW
22127}
22128#endif
6c43fab6 22129
267bf995 22130
c19d1205
ZW
22131int
22132arm_force_relocation (struct fix * fixp)
22133{
22134#if defined (OBJ_COFF) && defined (TE_PE)
22135 if (fixp->fx_r_type == BFD_RELOC_RVA)
22136 return 1;
22137#endif
6c43fab6 22138
267bf995
RR
22139 /* In case we have a call or a branch to a function in ARM ISA mode from
22140 a thumb function or vice-versa force the relocation. These relocations
22141 are cleared off for some cores that might have blx and simple transformations
22142 are possible. */
22143
22144#ifdef OBJ_ELF
22145 switch (fixp->fx_r_type)
22146 {
22147 case BFD_RELOC_ARM_PCREL_JUMP:
22148 case BFD_RELOC_ARM_PCREL_CALL:
22149 case BFD_RELOC_THUMB_PCREL_BLX:
22150 if (THUMB_IS_FUNC (fixp->fx_addsy))
22151 return 1;
22152 break;
22153
22154 case BFD_RELOC_ARM_PCREL_BLX:
22155 case BFD_RELOC_THUMB_PCREL_BRANCH25:
22156 case BFD_RELOC_THUMB_PCREL_BRANCH20:
22157 case BFD_RELOC_THUMB_PCREL_BRANCH23:
22158 if (ARM_IS_FUNC (fixp->fx_addsy))
22159 return 1;
22160 break;
22161
22162 default:
22163 break;
22164 }
22165#endif
22166
b5884301
PB
22167 /* Resolve these relocations even if the symbol is extern or weak.
22168 Technically this is probably wrong due to symbol preemption.
22169 In practice these relocations do not have enough range to be useful
22170 at dynamic link time, and some code (e.g. in the Linux kernel)
22171 expects these references to be resolved. */
c19d1205
ZW
22172 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
22173 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
b5884301 22174 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
0110f2b8 22175 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
b5884301
PB
22176 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22177 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
22178 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
16805f35 22179 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
22180 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
22181 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
b5884301
PB
22182 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
22183 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
22184 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
22185 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
c19d1205 22186 return 0;
a737bd4d 22187
4962c51a
MS
22188 /* Always leave these relocations for the linker. */
22189 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
22190 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
22191 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
22192 return 1;
22193
f0291e4c
PB
22194 /* Always generate relocations against function symbols. */
22195 if (fixp->fx_r_type == BFD_RELOC_32
22196 && fixp->fx_addsy
22197 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
22198 return 1;
22199
c19d1205 22200 return generic_force_reloc (fixp);
404ff6b5
AH
22201}
22202
0ffdc86c 22203#if defined (OBJ_ELF) || defined (OBJ_COFF)
e28387c3
PB
22204/* Relocations against function names must be left unadjusted,
22205 so that the linker can use this information to generate interworking
22206 stubs. The MIPS version of this function
c19d1205
ZW
22207 also prevents relocations that are mips-16 specific, but I do not
22208 know why it does this.
404ff6b5 22209
c19d1205
ZW
22210 FIXME:
22211 There is one other problem that ought to be addressed here, but
22212 which currently is not: Taking the address of a label (rather
22213 than a function) and then later jumping to that address. Such
22214 addresses also ought to have their bottom bit set (assuming that
22215 they reside in Thumb code), but at the moment they will not. */
404ff6b5 22216
c19d1205
ZW
22217bfd_boolean
22218arm_fix_adjustable (fixS * fixP)
404ff6b5 22219{
c19d1205
ZW
22220 if (fixP->fx_addsy == NULL)
22221 return 1;
404ff6b5 22222
e28387c3
PB
22223 /* Preserve relocations against symbols with function type. */
22224 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
c921be7d 22225 return FALSE;
e28387c3 22226
c19d1205
ZW
22227 if (THUMB_IS_FUNC (fixP->fx_addsy)
22228 && fixP->fx_subsy == NULL)
c921be7d 22229 return FALSE;
a737bd4d 22230
c19d1205
ZW
22231 /* We need the symbol name for the VTABLE entries. */
22232 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
22233 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
c921be7d 22234 return FALSE;
404ff6b5 22235
c19d1205
ZW
22236 /* Don't allow symbols to be discarded on GOT related relocs. */
22237 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
22238 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
22239 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
22240 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
22241 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
22242 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
22243 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
22244 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
0855e32b
NS
22245 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
22246 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
22247 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
22248 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
22249 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
c19d1205 22250 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
c921be7d 22251 return FALSE;
a737bd4d 22252
4962c51a
MS
22253 /* Similarly for group relocations. */
22254 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
22255 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
22256 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
c921be7d 22257 return FALSE;
4962c51a 22258
79947c54
CD
22259 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
22260 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
22261 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
22262 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
22263 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
22264 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
22265 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
22266 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
22267 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
c921be7d 22268 return FALSE;
79947c54 22269
c921be7d 22270 return TRUE;
a737bd4d 22271}
0ffdc86c
NC
22272#endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
22273
22274#ifdef OBJ_ELF
404ff6b5 22275
c19d1205
ZW
22276const char *
22277elf32_arm_target_format (void)
404ff6b5 22278{
c19d1205
ZW
22279#ifdef TE_SYMBIAN
22280 return (target_big_endian
22281 ? "elf32-bigarm-symbian"
22282 : "elf32-littlearm-symbian");
22283#elif defined (TE_VXWORKS)
22284 return (target_big_endian
22285 ? "elf32-bigarm-vxworks"
22286 : "elf32-littlearm-vxworks");
b38cadfb
NC
22287#elif defined (TE_NACL)
22288 return (target_big_endian
22289 ? "elf32-bigarm-nacl"
22290 : "elf32-littlearm-nacl");
c19d1205
ZW
22291#else
22292 if (target_big_endian)
22293 return "elf32-bigarm";
22294 else
22295 return "elf32-littlearm";
22296#endif
404ff6b5
AH
22297}
22298
c19d1205
ZW
22299void
22300armelf_frob_symbol (symbolS * symp,
22301 int * puntp)
404ff6b5 22302{
c19d1205
ZW
22303 elf_frob_symbol (symp, puntp);
22304}
22305#endif
404ff6b5 22306
c19d1205 22307/* MD interface: Finalization. */
a737bd4d 22308
c19d1205
ZW
22309void
22310arm_cleanup (void)
22311{
22312 literal_pool * pool;
a737bd4d 22313
e07e6e58
NC
22314 /* Ensure that all the IT blocks are properly closed. */
22315 check_it_blocks_finished ();
22316
c19d1205
ZW
22317 for (pool = list_of_pools; pool; pool = pool->next)
22318 {
5f4273c7 22319 /* Put it at the end of the relevant section. */
c19d1205
ZW
22320 subseg_set (pool->section, pool->sub_section);
22321#ifdef OBJ_ELF
22322 arm_elf_change_section ();
22323#endif
22324 s_ltorg (0);
22325 }
404ff6b5
AH
22326}
22327
cd000bff
DJ
22328#ifdef OBJ_ELF
22329/* Remove any excess mapping symbols generated for alignment frags in
22330 SEC. We may have created a mapping symbol before a zero byte
22331 alignment; remove it if there's a mapping symbol after the
22332 alignment. */
22333static void
22334check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
22335 void *dummy ATTRIBUTE_UNUSED)
22336{
22337 segment_info_type *seginfo = seg_info (sec);
22338 fragS *fragp;
22339
22340 if (seginfo == NULL || seginfo->frchainP == NULL)
22341 return;
22342
22343 for (fragp = seginfo->frchainP->frch_root;
22344 fragp != NULL;
22345 fragp = fragp->fr_next)
22346 {
22347 symbolS *sym = fragp->tc_frag_data.last_map;
22348 fragS *next = fragp->fr_next;
22349
22350 /* Variable-sized frags have been converted to fixed size by
22351 this point. But if this was variable-sized to start with,
22352 there will be a fixed-size frag after it. So don't handle
22353 next == NULL. */
22354 if (sym == NULL || next == NULL)
22355 continue;
22356
22357 if (S_GET_VALUE (sym) < next->fr_address)
22358 /* Not at the end of this frag. */
22359 continue;
22360 know (S_GET_VALUE (sym) == next->fr_address);
22361
22362 do
22363 {
22364 if (next->tc_frag_data.first_map != NULL)
22365 {
22366 /* Next frag starts with a mapping symbol. Discard this
22367 one. */
22368 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
22369 break;
22370 }
22371
22372 if (next->fr_next == NULL)
22373 {
22374 /* This mapping symbol is at the end of the section. Discard
22375 it. */
22376 know (next->fr_fix == 0 && next->fr_var == 0);
22377 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
22378 break;
22379 }
22380
22381 /* As long as we have empty frags without any mapping symbols,
22382 keep looking. */
22383 /* If the next frag is non-empty and does not start with a
22384 mapping symbol, then this mapping symbol is required. */
22385 if (next->fr_address != next->fr_next->fr_address)
22386 break;
22387
22388 next = next->fr_next;
22389 }
22390 while (next != NULL);
22391 }
22392}
22393#endif
22394
c19d1205
ZW
22395/* Adjust the symbol table. This marks Thumb symbols as distinct from
22396 ARM ones. */
404ff6b5 22397
c19d1205
ZW
22398void
22399arm_adjust_symtab (void)
404ff6b5 22400{
c19d1205
ZW
22401#ifdef OBJ_COFF
22402 symbolS * sym;
404ff6b5 22403
c19d1205
ZW
22404 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
22405 {
22406 if (ARM_IS_THUMB (sym))
22407 {
22408 if (THUMB_IS_FUNC (sym))
22409 {
22410 /* Mark the symbol as a Thumb function. */
22411 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
22412 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
22413 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 22414
c19d1205
ZW
22415 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
22416 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
22417 else
22418 as_bad (_("%s: unexpected function type: %d"),
22419 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
22420 }
22421 else switch (S_GET_STORAGE_CLASS (sym))
22422 {
22423 case C_EXT:
22424 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
22425 break;
22426 case C_STAT:
22427 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
22428 break;
22429 case C_LABEL:
22430 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
22431 break;
22432 default:
22433 /* Do nothing. */
22434 break;
22435 }
22436 }
a737bd4d 22437
c19d1205
ZW
22438 if (ARM_IS_INTERWORK (sym))
22439 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 22440 }
c19d1205
ZW
22441#endif
22442#ifdef OBJ_ELF
22443 symbolS * sym;
22444 char bind;
404ff6b5 22445
c19d1205 22446 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 22447 {
c19d1205
ZW
22448 if (ARM_IS_THUMB (sym))
22449 {
22450 elf_symbol_type * elf_sym;
404ff6b5 22451
c19d1205
ZW
22452 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
22453 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 22454
b0796911
PB
22455 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
22456 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
22457 {
22458 /* If it's a .thumb_func, declare it as so,
22459 otherwise tag label as .code 16. */
22460 if (THUMB_IS_FUNC (sym))
35fc36a8
RS
22461 elf_sym->internal_elf_sym.st_target_internal
22462 = ST_BRANCH_TO_THUMB;
3ba67470 22463 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
c19d1205
ZW
22464 elf_sym->internal_elf_sym.st_info =
22465 ELF_ST_INFO (bind, STT_ARM_16BIT);
22466 }
22467 }
22468 }
cd000bff
DJ
22469
22470 /* Remove any overlapping mapping symbols generated by alignment frags. */
22471 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
709001e9
MM
22472 /* Now do generic ELF adjustments. */
22473 elf_adjust_symtab ();
c19d1205 22474#endif
404ff6b5
AH
22475}
22476
c19d1205 22477/* MD interface: Initialization. */
404ff6b5 22478
a737bd4d 22479static void
c19d1205 22480set_constant_flonums (void)
a737bd4d 22481{
c19d1205 22482 int i;
404ff6b5 22483
c19d1205
ZW
22484 for (i = 0; i < NUM_FLOAT_VALS; i++)
22485 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
22486 abort ();
a737bd4d 22487}
404ff6b5 22488
3e9e4fcf
JB
22489/* Auto-select Thumb mode if it's the only available instruction set for the
22490 given architecture. */
22491
22492static void
22493autoselect_thumb_from_cpu_variant (void)
22494{
22495 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
22496 opcode_select (16);
22497}
22498
c19d1205
ZW
22499void
22500md_begin (void)
a737bd4d 22501{
c19d1205
ZW
22502 unsigned mach;
22503 unsigned int i;
404ff6b5 22504
c19d1205
ZW
22505 if ( (arm_ops_hsh = hash_new ()) == NULL
22506 || (arm_cond_hsh = hash_new ()) == NULL
22507 || (arm_shift_hsh = hash_new ()) == NULL
22508 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 22509 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 22510 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
22511 || (arm_reloc_hsh = hash_new ()) == NULL
22512 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
22513 as_fatal (_("virtual memory exhausted"));
22514
22515 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
d3ce72d0 22516 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
c19d1205 22517 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
d3ce72d0 22518 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
c19d1205 22519 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
5a49b8ac 22520 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
c19d1205 22521 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 22522 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
62b3e311 22523 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
d3ce72d0
NC
22524 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
22525 (void *) (v7m_psrs + i));
c19d1205 22526 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
5a49b8ac 22527 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
62b3e311
PB
22528 for (i = 0;
22529 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
22530 i++)
d3ce72d0 22531 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
5a49b8ac 22532 (void *) (barrier_opt_names + i));
c19d1205 22533#ifdef OBJ_ELF
3da1d841
NC
22534 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
22535 {
22536 struct reloc_entry * entry = reloc_names + i;
22537
22538 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
22539 /* This makes encode_branch() use the EABI versions of this relocation. */
22540 entry->reloc = BFD_RELOC_UNUSED;
22541
22542 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
22543 }
c19d1205
ZW
22544#endif
22545
22546 set_constant_flonums ();
404ff6b5 22547
c19d1205
ZW
22548 /* Set the cpu variant based on the command-line options. We prefer
22549 -mcpu= over -march= if both are set (as for GCC); and we prefer
22550 -mfpu= over any other way of setting the floating point unit.
22551 Use of legacy options with new options are faulted. */
e74cfd16 22552 if (legacy_cpu)
404ff6b5 22553 {
e74cfd16 22554 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
22555 as_bad (_("use of old and new-style options to set CPU type"));
22556
22557 mcpu_cpu_opt = legacy_cpu;
404ff6b5 22558 }
e74cfd16 22559 else if (!mcpu_cpu_opt)
c19d1205 22560 mcpu_cpu_opt = march_cpu_opt;
404ff6b5 22561
e74cfd16 22562 if (legacy_fpu)
c19d1205 22563 {
e74cfd16 22564 if (mfpu_opt)
c19d1205 22565 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
22566
22567 mfpu_opt = legacy_fpu;
22568 }
e74cfd16 22569 else if (!mfpu_opt)
03b1477f 22570 {
45eb4c1b
NS
22571#if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
22572 || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
22573 /* Some environments specify a default FPU. If they don't, infer it
22574 from the processor. */
e74cfd16 22575 if (mcpu_fpu_opt)
03b1477f
RE
22576 mfpu_opt = mcpu_fpu_opt;
22577 else
22578 mfpu_opt = march_fpu_opt;
39c2da32 22579#else
e74cfd16 22580 mfpu_opt = &fpu_default;
39c2da32 22581#endif
03b1477f
RE
22582 }
22583
e74cfd16 22584 if (!mfpu_opt)
03b1477f 22585 {
493cb6ef 22586 if (mcpu_cpu_opt != NULL)
e74cfd16 22587 mfpu_opt = &fpu_default;
493cb6ef 22588 else if (mcpu_fpu_opt != NULL && ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
e74cfd16 22589 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 22590 else
e74cfd16 22591 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
22592 }
22593
ee065d83 22594#ifdef CPU_DEFAULT
e74cfd16 22595 if (!mcpu_cpu_opt)
ee065d83 22596 {
e74cfd16
PB
22597 mcpu_cpu_opt = &cpu_default;
22598 selected_cpu = cpu_default;
ee065d83 22599 }
e74cfd16
PB
22600#else
22601 if (mcpu_cpu_opt)
22602 selected_cpu = *mcpu_cpu_opt;
ee065d83 22603 else
e74cfd16 22604 mcpu_cpu_opt = &arm_arch_any;
ee065d83 22605#endif
03b1477f 22606
e74cfd16 22607 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
03b1477f 22608
3e9e4fcf
JB
22609 autoselect_thumb_from_cpu_variant ();
22610
e74cfd16 22611 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 22612
f17c130b 22613#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 22614 {
7cc69913
NC
22615 unsigned int flags = 0;
22616
22617#if defined OBJ_ELF
22618 flags = meabi_flags;
d507cf36
PB
22619
22620 switch (meabi_flags)
33a392fb 22621 {
d507cf36 22622 case EF_ARM_EABI_UNKNOWN:
7cc69913 22623#endif
d507cf36
PB
22624 /* Set the flags in the private structure. */
22625 if (uses_apcs_26) flags |= F_APCS26;
22626 if (support_interwork) flags |= F_INTERWORK;
22627 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 22628 if (pic_code) flags |= F_PIC;
e74cfd16 22629 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
22630 flags |= F_SOFT_FLOAT;
22631
d507cf36
PB
22632 switch (mfloat_abi_opt)
22633 {
22634 case ARM_FLOAT_ABI_SOFT:
22635 case ARM_FLOAT_ABI_SOFTFP:
22636 flags |= F_SOFT_FLOAT;
22637 break;
33a392fb 22638
d507cf36
PB
22639 case ARM_FLOAT_ABI_HARD:
22640 if (flags & F_SOFT_FLOAT)
22641 as_bad (_("hard-float conflicts with specified fpu"));
22642 break;
22643 }
03b1477f 22644
e74cfd16
PB
22645 /* Using pure-endian doubles (even if soft-float). */
22646 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 22647 flags |= F_VFP_FLOAT;
f17c130b 22648
fde78edd 22649#if defined OBJ_ELF
e74cfd16 22650 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 22651 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
22652 break;
22653
8cb51566 22654 case EF_ARM_EABI_VER4:
3a4a14e9 22655 case EF_ARM_EABI_VER5:
c19d1205 22656 /* No additional flags to set. */
d507cf36
PB
22657 break;
22658
22659 default:
22660 abort ();
22661 }
7cc69913 22662#endif
b99bd4ef
NC
22663 bfd_set_private_flags (stdoutput, flags);
22664
22665 /* We have run out flags in the COFF header to encode the
22666 status of ATPCS support, so instead we create a dummy,
c19d1205 22667 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
22668 if (atpcs)
22669 {
22670 asection * sec;
22671
22672 sec = bfd_make_section (stdoutput, ".arm.atpcs");
22673
22674 if (sec != NULL)
22675 {
22676 bfd_set_section_flags
22677 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
22678 bfd_set_section_size (stdoutput, sec, 0);
22679 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
22680 }
22681 }
7cc69913 22682 }
f17c130b 22683#endif
b99bd4ef
NC
22684
22685 /* Record the CPU type as well. */
2d447fca
JM
22686 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
22687 mach = bfd_mach_arm_iWMMXt2;
22688 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 22689 mach = bfd_mach_arm_iWMMXt;
e74cfd16 22690 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 22691 mach = bfd_mach_arm_XScale;
e74cfd16 22692 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 22693 mach = bfd_mach_arm_ep9312;
e74cfd16 22694 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 22695 mach = bfd_mach_arm_5TE;
e74cfd16 22696 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 22697 {
e74cfd16 22698 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
22699 mach = bfd_mach_arm_5T;
22700 else
22701 mach = bfd_mach_arm_5;
22702 }
e74cfd16 22703 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 22704 {
e74cfd16 22705 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
22706 mach = bfd_mach_arm_4T;
22707 else
22708 mach = bfd_mach_arm_4;
22709 }
e74cfd16 22710 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 22711 mach = bfd_mach_arm_3M;
e74cfd16
PB
22712 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
22713 mach = bfd_mach_arm_3;
22714 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
22715 mach = bfd_mach_arm_2a;
22716 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
22717 mach = bfd_mach_arm_2;
22718 else
22719 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
22720
22721 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
22722}
22723
c19d1205 22724/* Command line processing. */
b99bd4ef 22725
c19d1205
ZW
22726/* md_parse_option
22727 Invocation line includes a switch not recognized by the base assembler.
22728 See if it's a processor-specific option.
b99bd4ef 22729
c19d1205
ZW
22730 This routine is somewhat complicated by the need for backwards
22731 compatibility (since older releases of gcc can't be changed).
22732 The new options try to make the interface as compatible as
22733 possible with GCC.
b99bd4ef 22734
c19d1205 22735 New options (supported) are:
b99bd4ef 22736
c19d1205
ZW
22737 -mcpu=<cpu name> Assemble for selected processor
22738 -march=<architecture name> Assemble for selected architecture
22739 -mfpu=<fpu architecture> Assemble for selected FPU.
22740 -EB/-mbig-endian Big-endian
22741 -EL/-mlittle-endian Little-endian
22742 -k Generate PIC code
22743 -mthumb Start in Thumb mode
22744 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 22745
278df34e 22746 -m[no-]warn-deprecated Warn about deprecated features
267bf995 22747
c19d1205 22748 For now we will also provide support for:
b99bd4ef 22749
c19d1205
ZW
22750 -mapcs-32 32-bit Program counter
22751 -mapcs-26 26-bit Program counter
22752 -macps-float Floats passed in FP registers
22753 -mapcs-reentrant Reentrant code
22754 -matpcs
22755 (sometime these will probably be replaced with -mapcs=<list of options>
22756 and -matpcs=<list of options>)
b99bd4ef 22757
c19d1205
ZW
22758 The remaining options are only supported for back-wards compatibility.
22759 Cpu variants, the arm part is optional:
22760 -m[arm]1 Currently not supported.
22761 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
22762 -m[arm]3 Arm 3 processor
22763 -m[arm]6[xx], Arm 6 processors
22764 -m[arm]7[xx][t][[d]m] Arm 7 processors
22765 -m[arm]8[10] Arm 8 processors
22766 -m[arm]9[20][tdmi] Arm 9 processors
22767 -mstrongarm[110[0]] StrongARM processors
22768 -mxscale XScale processors
22769 -m[arm]v[2345[t[e]]] Arm architectures
22770 -mall All (except the ARM1)
22771 FP variants:
22772 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
22773 -mfpe-old (No float load/store multiples)
22774 -mvfpxd VFP Single precision
22775 -mvfp All VFP
22776 -mno-fpu Disable all floating point instructions
b99bd4ef 22777
c19d1205
ZW
22778 The following CPU names are recognized:
22779 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
22780 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
22781 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
22782 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
22783 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
22784 arm10t arm10e, arm1020t, arm1020e, arm10200e,
22785 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 22786
c19d1205 22787 */
b99bd4ef 22788
c19d1205 22789const char * md_shortopts = "m:k";
b99bd4ef 22790
c19d1205
ZW
22791#ifdef ARM_BI_ENDIAN
22792#define OPTION_EB (OPTION_MD_BASE + 0)
22793#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 22794#else
c19d1205
ZW
22795#if TARGET_BYTES_BIG_ENDIAN
22796#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 22797#else
c19d1205
ZW
22798#define OPTION_EL (OPTION_MD_BASE + 1)
22799#endif
b99bd4ef 22800#endif
845b51d6 22801#define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
b99bd4ef 22802
c19d1205 22803struct option md_longopts[] =
b99bd4ef 22804{
c19d1205
ZW
22805#ifdef OPTION_EB
22806 {"EB", no_argument, NULL, OPTION_EB},
22807#endif
22808#ifdef OPTION_EL
22809 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 22810#endif
845b51d6 22811 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
c19d1205
ZW
22812 {NULL, no_argument, NULL, 0}
22813};
b99bd4ef 22814
c19d1205 22815size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 22816
c19d1205 22817struct arm_option_table
b99bd4ef 22818{
c19d1205
ZW
22819 char *option; /* Option name to match. */
22820 char *help; /* Help information. */
22821 int *var; /* Variable to change. */
22822 int value; /* What to change it to. */
22823 char *deprecated; /* If non-null, print this message. */
22824};
b99bd4ef 22825
c19d1205
ZW
22826struct arm_option_table arm_opts[] =
22827{
22828 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
22829 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
22830 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
22831 &support_interwork, 1, NULL},
22832 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
22833 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
22834 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
22835 1, NULL},
22836 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
22837 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
22838 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
22839 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
22840 NULL},
b99bd4ef 22841
c19d1205
ZW
22842 /* These are recognized by the assembler, but have no affect on code. */
22843 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
22844 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
278df34e
NS
22845
22846 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
22847 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
22848 &warn_on_deprecated, 0, NULL},
e74cfd16
PB
22849 {NULL, NULL, NULL, 0, NULL}
22850};
22851
22852struct arm_legacy_option_table
22853{
22854 char *option; /* Option name to match. */
22855 const arm_feature_set **var; /* Variable to change. */
22856 const arm_feature_set value; /* What to change it to. */
22857 char *deprecated; /* If non-null, print this message. */
22858};
b99bd4ef 22859
e74cfd16
PB
22860const struct arm_legacy_option_table arm_legacy_opts[] =
22861{
c19d1205
ZW
22862 /* DON'T add any new processors to this list -- we want the whole list
22863 to go away... Add them to the processors table instead. */
e74cfd16
PB
22864 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
22865 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
22866 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
22867 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
22868 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
22869 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
22870 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
22871 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
22872 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
22873 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
22874 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
22875 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
22876 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
22877 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
22878 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
22879 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
22880 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
22881 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
22882 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
22883 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
22884 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
22885 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
22886 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
22887 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
22888 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
22889 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
22890 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
22891 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
22892 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
22893 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
22894 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
22895 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
22896 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
22897 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
22898 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
22899 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
22900 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
22901 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
22902 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
22903 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
22904 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
22905 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
22906 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
22907 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
22908 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
22909 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
22910 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
22911 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
22912 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
22913 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
22914 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
22915 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
22916 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
22917 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
22918 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
22919 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
22920 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
22921 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
22922 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
22923 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
22924 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
22925 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
22926 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
22927 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
22928 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
22929 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
22930 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
22931 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
22932 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
22933 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 22934 N_("use -mcpu=strongarm110")},
e74cfd16 22935 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 22936 N_("use -mcpu=strongarm1100")},
e74cfd16 22937 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 22938 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
22939 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
22940 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
22941 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 22942
c19d1205 22943 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
22944 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
22945 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
22946 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
22947 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
22948 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
22949 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
22950 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
22951 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
22952 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
22953 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
22954 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
22955 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
22956 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
22957 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
22958 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
22959 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
22960 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
22961 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 22962
c19d1205 22963 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
22964 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
22965 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
22966 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
22967 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 22968 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 22969
e74cfd16 22970 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 22971};
7ed4c4c5 22972
c19d1205 22973struct arm_cpu_option_table
7ed4c4c5 22974{
c19d1205 22975 char *name;
f3bad469 22976 size_t name_len;
e74cfd16 22977 const arm_feature_set value;
c19d1205
ZW
22978 /* For some CPUs we assume an FPU unless the user explicitly sets
22979 -mfpu=... */
e74cfd16 22980 const arm_feature_set default_fpu;
ee065d83
PB
22981 /* The canonical name of the CPU, or NULL to use NAME converted to upper
22982 case. */
22983 const char *canonical_name;
c19d1205 22984};
7ed4c4c5 22985
c19d1205
ZW
22986/* This list should, at a minimum, contain all the cpu names
22987 recognized by GCC. */
f3bad469 22988#define ARM_CPU_OPT(N, V, DF, CN) { N, sizeof (N) - 1, V, DF, CN }
e74cfd16 22989static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 22990{
f3bad469
MGD
22991 ARM_CPU_OPT ("all", ARM_ANY, FPU_ARCH_FPA, NULL),
22992 ARM_CPU_OPT ("arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL),
22993 ARM_CPU_OPT ("arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL),
22994 ARM_CPU_OPT ("arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
22995 ARM_CPU_OPT ("arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
22996 ARM_CPU_OPT ("arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
22997 ARM_CPU_OPT ("arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
22998 ARM_CPU_OPT ("arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
22999 ARM_CPU_OPT ("arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23000 ARM_CPU_OPT ("arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23001 ARM_CPU_OPT ("arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23002 ARM_CPU_OPT ("arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23003 ARM_CPU_OPT ("arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23004 ARM_CPU_OPT ("arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23005 ARM_CPU_OPT ("arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23006 ARM_CPU_OPT ("arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23007 ARM_CPU_OPT ("arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23008 ARM_CPU_OPT ("arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23009 ARM_CPU_OPT ("arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23010 ARM_CPU_OPT ("arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23011 ARM_CPU_OPT ("arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23012 ARM_CPU_OPT ("arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23013 ARM_CPU_OPT ("arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23014 ARM_CPU_OPT ("arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23015 ARM_CPU_OPT ("arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23016 ARM_CPU_OPT ("arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23017 ARM_CPU_OPT ("arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23018 ARM_CPU_OPT ("arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23019 ARM_CPU_OPT ("arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23020 ARM_CPU_OPT ("arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23021 ARM_CPU_OPT ("arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23022 ARM_CPU_OPT ("arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23023 ARM_CPU_OPT ("arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23024 ARM_CPU_OPT ("strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23025 ARM_CPU_OPT ("strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23026 ARM_CPU_OPT ("strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23027 ARM_CPU_OPT ("strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23028 ARM_CPU_OPT ("strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23029 ARM_CPU_OPT ("arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23030 ARM_CPU_OPT ("arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"),
23031 ARM_CPU_OPT ("arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23032 ARM_CPU_OPT ("arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23033 ARM_CPU_OPT ("arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23034 ARM_CPU_OPT ("arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23035 ARM_CPU_OPT ("fa526", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23036 ARM_CPU_OPT ("fa626", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
c19d1205
ZW
23037 /* For V5 or later processors we default to using VFP; but the user
23038 should really set the FPU type explicitly. */
f3bad469
MGD
23039 ARM_CPU_OPT ("arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23040 ARM_CPU_OPT ("arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23041 ARM_CPU_OPT ("arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23042 ARM_CPU_OPT ("arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23043 ARM_CPU_OPT ("arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23044 ARM_CPU_OPT ("arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23045 ARM_CPU_OPT ("arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"),
23046 ARM_CPU_OPT ("arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23047 ARM_CPU_OPT ("arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23048 ARM_CPU_OPT ("arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"),
23049 ARM_CPU_OPT ("arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23050 ARM_CPU_OPT ("arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23051 ARM_CPU_OPT ("arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23052 ARM_CPU_OPT ("arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23053 ARM_CPU_OPT ("arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23054 ARM_CPU_OPT ("arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"),
23055 ARM_CPU_OPT ("arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23056 ARM_CPU_OPT ("arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23057 ARM_CPU_OPT ("arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23058 ARM_CPU_OPT ("arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2,
23059 "ARM1026EJ-S"),
23060 ARM_CPU_OPT ("arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23061 ARM_CPU_OPT ("fa606te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23062 ARM_CPU_OPT ("fa616te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23063 ARM_CPU_OPT ("fa626te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23064 ARM_CPU_OPT ("fmp626", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23065 ARM_CPU_OPT ("fa726te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23066 ARM_CPU_OPT ("arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"),
23067 ARM_CPU_OPT ("arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL),
23068 ARM_CPU_OPT ("arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2,
23069 "ARM1136JF-S"),
23070 ARM_CPU_OPT ("arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL),
23071 ARM_CPU_OPT ("mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, "MPCore"),
23072 ARM_CPU_OPT ("mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, "MPCore"),
23073 ARM_CPU_OPT ("arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL),
23074 ARM_CPU_OPT ("arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL),
23075 ARM_CPU_OPT ("arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL),
23076 ARM_CPU_OPT ("arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL),
23077 ARM_CPU_OPT ("cortex-a5", ARM_ARCH_V7A_MP_SEC,
23078 FPU_NONE, "Cortex-A5"),
23079 ARM_CPU_OPT ("cortex-a7", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23080 FPU_ARCH_NEON_VFP_V4,
23081 "Cortex-A7"),
23082 ARM_CPU_OPT ("cortex-a8", ARM_ARCH_V7A_SEC,
23083 ARM_FEATURE (0, FPU_VFP_V3
5287ad62 23084 | FPU_NEON_EXT_V1),
f3bad469
MGD
23085 "Cortex-A8"),
23086 ARM_CPU_OPT ("cortex-a9", ARM_ARCH_V7A_MP_SEC,
23087 ARM_FEATURE (0, FPU_VFP_V3
15290f0a 23088 | FPU_NEON_EXT_V1),
f3bad469
MGD
23089 "Cortex-A9"),
23090 ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23091 FPU_ARCH_NEON_VFP_V4,
23092 "Cortex-A15"),
23093 ARM_CPU_OPT ("cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"),
23094 ARM_CPU_OPT ("cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16,
23095 "Cortex-R4F"),
23096 ARM_CPU_OPT ("cortex-r5", ARM_ARCH_V7R_IDIV,
23097 FPU_NONE, "Cortex-R5"),
23098 ARM_CPU_OPT ("cortex-m4", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M4"),
23099 ARM_CPU_OPT ("cortex-m3", ARM_ARCH_V7M, FPU_NONE, "Cortex-M3"),
23100 ARM_CPU_OPT ("cortex-m1", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M1"),
23101 ARM_CPU_OPT ("cortex-m0", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0"),
ce32bd10 23102 ARM_CPU_OPT ("cortex-m0plus", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0+"),
c19d1205 23103 /* ??? XSCALE is really an architecture. */
f3bad469 23104 ARM_CPU_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 23105 /* ??? iwmmxt is not a processor. */
f3bad469
MGD
23106 ARM_CPU_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL),
23107 ARM_CPU_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP_V2, NULL),
23108 ARM_CPU_OPT ("i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 23109 /* Maverick */
f3bad469
MGD
23110 ARM_CPU_OPT ("ep9312", ARM_FEATURE (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
23111 FPU_ARCH_MAVERICK,
23112 "ARM920T"),
23113 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
c19d1205 23114};
f3bad469 23115#undef ARM_CPU_OPT
7ed4c4c5 23116
c19d1205 23117struct arm_arch_option_table
7ed4c4c5 23118{
c19d1205 23119 char *name;
f3bad469 23120 size_t name_len;
e74cfd16
PB
23121 const arm_feature_set value;
23122 const arm_feature_set default_fpu;
c19d1205 23123};
7ed4c4c5 23124
c19d1205
ZW
23125/* This list should, at a minimum, contain all the architecture names
23126 recognized by GCC. */
f3bad469 23127#define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF }
e74cfd16 23128static const struct arm_arch_option_table arm_archs[] =
c19d1205 23129{
f3bad469
MGD
23130 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
23131 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
23132 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
23133 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
23134 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
23135 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
23136 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
23137 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
23138 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
23139 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
23140 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
23141 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
23142 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
23143 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
23144 ARM_ARCH_OPT ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP),
23145 ARM_ARCH_OPT ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP),
23146 ARM_ARCH_OPT ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP),
23147 ARM_ARCH_OPT ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP),
23148 ARM_ARCH_OPT ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP),
23149 ARM_ARCH_OPT ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP),
23150 ARM_ARCH_OPT ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP),
23151 ARM_ARCH_OPT ("armv6zk", ARM_ARCH_V6ZK, FPU_ARCH_VFP),
23152 ARM_ARCH_OPT ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP),
23153 ARM_ARCH_OPT ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP),
23154 ARM_ARCH_OPT ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP),
23155 ARM_ARCH_OPT ("armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP),
23156 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
23157 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
23158 ARM_ARCH_OPT ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP),
c450d570
PB
23159 /* The official spelling of the ARMv7 profile variants is the dashed form.
23160 Accept the non-dashed form for compatibility with old toolchains. */
f3bad469
MGD
23161 ARM_ARCH_OPT ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP),
23162 ARM_ARCH_OPT ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP),
23163 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
23164 ARM_ARCH_OPT ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP),
23165 ARM_ARCH_OPT ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP),
23166 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
23167 ARM_ARCH_OPT ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP),
23168 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
23169 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
23170 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP),
23171 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
c19d1205 23172};
f3bad469 23173#undef ARM_ARCH_OPT
7ed4c4c5 23174
69133863
MGD
23175/* ISA extensions in the co-processor and main instruction set space. */
23176struct arm_option_extension_value_table
c19d1205
ZW
23177{
23178 char *name;
f3bad469 23179 size_t name_len;
e74cfd16 23180 const arm_feature_set value;
69133863 23181 const arm_feature_set allowed_archs;
c19d1205 23182};
7ed4c4c5 23183
69133863
MGD
23184/* The following table must be in alphabetical order with a NULL last entry.
23185 */
f3bad469 23186#define ARM_EXT_OPT(N, V, AA) { N, sizeof (N) - 1, V, AA }
69133863 23187static const struct arm_option_extension_value_table arm_extensions[] =
c19d1205 23188{
f3bad469
MGD
23189 ARM_EXT_OPT ("idiv", ARM_FEATURE (ARM_EXT_ADIV | ARM_EXT_DIV, 0),
23190 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
23191 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE (0, ARM_CEXT_IWMMXT), ARM_ANY),
23192 ARM_EXT_OPT ("iwmmxt2",
23193 ARM_FEATURE (0, ARM_CEXT_IWMMXT2), ARM_ANY),
23194 ARM_EXT_OPT ("maverick",
23195 ARM_FEATURE (0, ARM_CEXT_MAVERICK), ARM_ANY),
23196 ARM_EXT_OPT ("mp", ARM_FEATURE (ARM_EXT_MP, 0),
23197 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
23198 ARM_EXT_OPT ("os", ARM_FEATURE (ARM_EXT_OS, 0),
23199 ARM_FEATURE (ARM_EXT_V6M, 0)),
23200 ARM_EXT_OPT ("sec", ARM_FEATURE (ARM_EXT_SEC, 0),
23201 ARM_FEATURE (ARM_EXT_V6K | ARM_EXT_V7A, 0)),
23202 ARM_EXT_OPT ("virt", ARM_FEATURE (ARM_EXT_VIRT | ARM_EXT_ADIV
23203 | ARM_EXT_DIV, 0),
23204 ARM_FEATURE (ARM_EXT_V7A, 0)),
23205 ARM_EXT_OPT ("xscale",ARM_FEATURE (0, ARM_CEXT_XSCALE), ARM_ANY),
23206 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
69133863 23207};
f3bad469 23208#undef ARM_EXT_OPT
69133863
MGD
23209
23210/* ISA floating-point and Advanced SIMD extensions. */
23211struct arm_option_fpu_value_table
23212{
23213 char *name;
23214 const arm_feature_set value;
c19d1205 23215};
7ed4c4c5 23216
c19d1205
ZW
23217/* This list should, at a minimum, contain all the fpu names
23218 recognized by GCC. */
69133863 23219static const struct arm_option_fpu_value_table arm_fpus[] =
c19d1205
ZW
23220{
23221 {"softfpa", FPU_NONE},
23222 {"fpe", FPU_ARCH_FPE},
23223 {"fpe2", FPU_ARCH_FPE},
23224 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
23225 {"fpa", FPU_ARCH_FPA},
23226 {"fpa10", FPU_ARCH_FPA},
23227 {"fpa11", FPU_ARCH_FPA},
23228 {"arm7500fe", FPU_ARCH_FPA},
23229 {"softvfp", FPU_ARCH_VFP},
23230 {"softvfp+vfp", FPU_ARCH_VFP_V2},
23231 {"vfp", FPU_ARCH_VFP_V2},
23232 {"vfp9", FPU_ARCH_VFP_V2},
b1cc4aeb 23233 {"vfp3", FPU_ARCH_VFP_V3}, /* For backwards compatbility. */
c19d1205
ZW
23234 {"vfp10", FPU_ARCH_VFP_V2},
23235 {"vfp10-r0", FPU_ARCH_VFP_V1},
23236 {"vfpxd", FPU_ARCH_VFP_V1xD},
b1cc4aeb
PB
23237 {"vfpv2", FPU_ARCH_VFP_V2},
23238 {"vfpv3", FPU_ARCH_VFP_V3},
62f3b8c8 23239 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
b1cc4aeb 23240 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
62f3b8c8
PB
23241 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
23242 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
23243 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
c19d1205
ZW
23244 {"arm1020t", FPU_ARCH_VFP_V1},
23245 {"arm1020e", FPU_ARCH_VFP_V2},
23246 {"arm1136jfs", FPU_ARCH_VFP_V2},
23247 {"arm1136jf-s", FPU_ARCH_VFP_V2},
23248 {"maverick", FPU_ARCH_MAVERICK},
5287ad62 23249 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
8e79c3df 23250 {"neon-fp16", FPU_ARCH_NEON_FP16},
62f3b8c8
PB
23251 {"vfpv4", FPU_ARCH_VFP_V4},
23252 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
ada65aa3 23253 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
62f3b8c8 23254 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
e74cfd16
PB
23255 {NULL, ARM_ARCH_NONE}
23256};
23257
23258struct arm_option_value_table
23259{
23260 char *name;
23261 long value;
c19d1205 23262};
7ed4c4c5 23263
e74cfd16 23264static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
23265{
23266 {"hard", ARM_FLOAT_ABI_HARD},
23267 {"softfp", ARM_FLOAT_ABI_SOFTFP},
23268 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 23269 {NULL, 0}
c19d1205 23270};
7ed4c4c5 23271
c19d1205 23272#ifdef OBJ_ELF
3a4a14e9 23273/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 23274static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
23275{
23276 {"gnu", EF_ARM_EABI_UNKNOWN},
23277 {"4", EF_ARM_EABI_VER4},
3a4a14e9 23278 {"5", EF_ARM_EABI_VER5},
e74cfd16 23279 {NULL, 0}
c19d1205
ZW
23280};
23281#endif
7ed4c4c5 23282
c19d1205
ZW
23283struct arm_long_option_table
23284{
23285 char * option; /* Substring to match. */
23286 char * help; /* Help information. */
23287 int (* func) (char * subopt); /* Function to decode sub-option. */
23288 char * deprecated; /* If non-null, print this message. */
23289};
7ed4c4c5 23290
c921be7d 23291static bfd_boolean
f3bad469 23292arm_parse_extension (char *str, const arm_feature_set **opt_p)
7ed4c4c5 23293{
21d799b5
NC
23294 arm_feature_set *ext_set = (arm_feature_set *)
23295 xmalloc (sizeof (arm_feature_set));
e74cfd16 23296
69133863 23297 /* We insist on extensions being specified in alphabetical order, and with
fa94de6b
RM
23298 extensions being added before being removed. We achieve this by having
23299 the global ARM_EXTENSIONS table in alphabetical order, and using the
69133863 23300 ADDING_VALUE variable to indicate whether we are adding an extension (1)
fa94de6b 23301 or removing it (0) and only allowing it to change in the order
69133863
MGD
23302 -1 -> 1 -> 0. */
23303 const struct arm_option_extension_value_table * opt = NULL;
23304 int adding_value = -1;
23305
e74cfd16
PB
23306 /* Copy the feature set, so that we can modify it. */
23307 *ext_set = **opt_p;
23308 *opt_p = ext_set;
23309
c19d1205 23310 while (str != NULL && *str != 0)
7ed4c4c5 23311 {
f3bad469
MGD
23312 char *ext;
23313 size_t len;
7ed4c4c5 23314
c19d1205
ZW
23315 if (*str != '+')
23316 {
23317 as_bad (_("invalid architectural extension"));
c921be7d 23318 return FALSE;
c19d1205 23319 }
7ed4c4c5 23320
c19d1205
ZW
23321 str++;
23322 ext = strchr (str, '+');
7ed4c4c5 23323
c19d1205 23324 if (ext != NULL)
f3bad469 23325 len = ext - str;
c19d1205 23326 else
f3bad469 23327 len = strlen (str);
7ed4c4c5 23328
f3bad469 23329 if (len >= 2 && strncmp (str, "no", 2) == 0)
69133863
MGD
23330 {
23331 if (adding_value != 0)
23332 {
23333 adding_value = 0;
23334 opt = arm_extensions;
23335 }
23336
f3bad469 23337 len -= 2;
69133863
MGD
23338 str += 2;
23339 }
f3bad469 23340 else if (len > 0)
69133863
MGD
23341 {
23342 if (adding_value == -1)
23343 {
23344 adding_value = 1;
23345 opt = arm_extensions;
23346 }
23347 else if (adding_value != 1)
23348 {
23349 as_bad (_("must specify extensions to add before specifying "
23350 "those to remove"));
23351 return FALSE;
23352 }
23353 }
23354
f3bad469 23355 if (len == 0)
c19d1205
ZW
23356 {
23357 as_bad (_("missing architectural extension"));
c921be7d 23358 return FALSE;
c19d1205 23359 }
7ed4c4c5 23360
69133863
MGD
23361 gas_assert (adding_value != -1);
23362 gas_assert (opt != NULL);
23363
23364 /* Scan over the options table trying to find an exact match. */
23365 for (; opt->name != NULL; opt++)
f3bad469 23366 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 23367 {
69133863
MGD
23368 /* Check we can apply the extension to this architecture. */
23369 if (!ARM_CPU_HAS_FEATURE (*ext_set, opt->allowed_archs))
23370 {
23371 as_bad (_("extension does not apply to the base architecture"));
23372 return FALSE;
23373 }
23374
23375 /* Add or remove the extension. */
23376 if (adding_value)
23377 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value);
23378 else
23379 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->value);
23380
c19d1205
ZW
23381 break;
23382 }
7ed4c4c5 23383
c19d1205
ZW
23384 if (opt->name == NULL)
23385 {
69133863
MGD
23386 /* Did we fail to find an extension because it wasn't specified in
23387 alphabetical order, or because it does not exist? */
23388
23389 for (opt = arm_extensions; opt->name != NULL; opt++)
f3bad469 23390 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
69133863
MGD
23391 break;
23392
23393 if (opt->name == NULL)
23394 as_bad (_("unknown architectural extension `%s'"), str);
23395 else
23396 as_bad (_("architectural extensions must be specified in "
23397 "alphabetical order"));
23398
c921be7d 23399 return FALSE;
c19d1205 23400 }
69133863
MGD
23401 else
23402 {
23403 /* We should skip the extension we've just matched the next time
23404 round. */
23405 opt++;
23406 }
7ed4c4c5 23407
c19d1205
ZW
23408 str = ext;
23409 };
7ed4c4c5 23410
c921be7d 23411 return TRUE;
c19d1205 23412}
7ed4c4c5 23413
c921be7d 23414static bfd_boolean
f3bad469 23415arm_parse_cpu (char *str)
7ed4c4c5 23416{
f3bad469
MGD
23417 const struct arm_cpu_option_table *opt;
23418 char *ext = strchr (str, '+');
23419 size_t len;
7ed4c4c5 23420
c19d1205 23421 if (ext != NULL)
f3bad469 23422 len = ext - str;
7ed4c4c5 23423 else
f3bad469 23424 len = strlen (str);
7ed4c4c5 23425
f3bad469 23426 if (len == 0)
7ed4c4c5 23427 {
c19d1205 23428 as_bad (_("missing cpu name `%s'"), str);
c921be7d 23429 return FALSE;
7ed4c4c5
NC
23430 }
23431
c19d1205 23432 for (opt = arm_cpus; opt->name != NULL; opt++)
f3bad469 23433 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 23434 {
e74cfd16
PB
23435 mcpu_cpu_opt = &opt->value;
23436 mcpu_fpu_opt = &opt->default_fpu;
ee065d83 23437 if (opt->canonical_name)
5f4273c7 23438 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
23439 else
23440 {
f3bad469 23441 size_t i;
c921be7d 23442
f3bad469 23443 for (i = 0; i < len; i++)
ee065d83
PB
23444 selected_cpu_name[i] = TOUPPER (opt->name[i]);
23445 selected_cpu_name[i] = 0;
23446 }
7ed4c4c5 23447
c19d1205
ZW
23448 if (ext != NULL)
23449 return arm_parse_extension (ext, &mcpu_cpu_opt);
7ed4c4c5 23450
c921be7d 23451 return TRUE;
c19d1205 23452 }
7ed4c4c5 23453
c19d1205 23454 as_bad (_("unknown cpu `%s'"), str);
c921be7d 23455 return FALSE;
7ed4c4c5
NC
23456}
23457
c921be7d 23458static bfd_boolean
f3bad469 23459arm_parse_arch (char *str)
7ed4c4c5 23460{
e74cfd16 23461 const struct arm_arch_option_table *opt;
c19d1205 23462 char *ext = strchr (str, '+');
f3bad469 23463 size_t len;
7ed4c4c5 23464
c19d1205 23465 if (ext != NULL)
f3bad469 23466 len = ext - str;
7ed4c4c5 23467 else
f3bad469 23468 len = strlen (str);
7ed4c4c5 23469
f3bad469 23470 if (len == 0)
7ed4c4c5 23471 {
c19d1205 23472 as_bad (_("missing architecture name `%s'"), str);
c921be7d 23473 return FALSE;
7ed4c4c5
NC
23474 }
23475
c19d1205 23476 for (opt = arm_archs; opt->name != NULL; opt++)
f3bad469 23477 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 23478 {
e74cfd16
PB
23479 march_cpu_opt = &opt->value;
23480 march_fpu_opt = &opt->default_fpu;
5f4273c7 23481 strcpy (selected_cpu_name, opt->name);
7ed4c4c5 23482
c19d1205
ZW
23483 if (ext != NULL)
23484 return arm_parse_extension (ext, &march_cpu_opt);
7ed4c4c5 23485
c921be7d 23486 return TRUE;
c19d1205
ZW
23487 }
23488
23489 as_bad (_("unknown architecture `%s'\n"), str);
c921be7d 23490 return FALSE;
7ed4c4c5 23491}
eb043451 23492
c921be7d 23493static bfd_boolean
c19d1205
ZW
23494arm_parse_fpu (char * str)
23495{
69133863 23496 const struct arm_option_fpu_value_table * opt;
b99bd4ef 23497
c19d1205
ZW
23498 for (opt = arm_fpus; opt->name != NULL; opt++)
23499 if (streq (opt->name, str))
23500 {
e74cfd16 23501 mfpu_opt = &opt->value;
c921be7d 23502 return TRUE;
c19d1205 23503 }
b99bd4ef 23504
c19d1205 23505 as_bad (_("unknown floating point format `%s'\n"), str);
c921be7d 23506 return FALSE;
c19d1205
ZW
23507}
23508
c921be7d 23509static bfd_boolean
c19d1205 23510arm_parse_float_abi (char * str)
b99bd4ef 23511{
e74cfd16 23512 const struct arm_option_value_table * opt;
b99bd4ef 23513
c19d1205
ZW
23514 for (opt = arm_float_abis; opt->name != NULL; opt++)
23515 if (streq (opt->name, str))
23516 {
23517 mfloat_abi_opt = opt->value;
c921be7d 23518 return TRUE;
c19d1205 23519 }
cc8a6dd0 23520
c19d1205 23521 as_bad (_("unknown floating point abi `%s'\n"), str);
c921be7d 23522 return FALSE;
c19d1205 23523}
b99bd4ef 23524
c19d1205 23525#ifdef OBJ_ELF
c921be7d 23526static bfd_boolean
c19d1205
ZW
23527arm_parse_eabi (char * str)
23528{
e74cfd16 23529 const struct arm_option_value_table *opt;
cc8a6dd0 23530
c19d1205
ZW
23531 for (opt = arm_eabis; opt->name != NULL; opt++)
23532 if (streq (opt->name, str))
23533 {
23534 meabi_flags = opt->value;
c921be7d 23535 return TRUE;
c19d1205
ZW
23536 }
23537 as_bad (_("unknown EABI `%s'\n"), str);
c921be7d 23538 return FALSE;
c19d1205
ZW
23539}
23540#endif
cc8a6dd0 23541
c921be7d 23542static bfd_boolean
e07e6e58
NC
23543arm_parse_it_mode (char * str)
23544{
c921be7d 23545 bfd_boolean ret = TRUE;
e07e6e58
NC
23546
23547 if (streq ("arm", str))
23548 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
23549 else if (streq ("thumb", str))
23550 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
23551 else if (streq ("always", str))
23552 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
23553 else if (streq ("never", str))
23554 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
23555 else
23556 {
23557 as_bad (_("unknown implicit IT mode `%s', should be "\
23558 "arm, thumb, always, or never."), str);
c921be7d 23559 ret = FALSE;
e07e6e58
NC
23560 }
23561
23562 return ret;
23563}
23564
c19d1205
ZW
23565struct arm_long_option_table arm_long_opts[] =
23566{
23567 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
23568 arm_parse_cpu, NULL},
23569 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
23570 arm_parse_arch, NULL},
23571 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
23572 arm_parse_fpu, NULL},
23573 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
23574 arm_parse_float_abi, NULL},
23575#ifdef OBJ_ELF
7fac0536 23576 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
c19d1205
ZW
23577 arm_parse_eabi, NULL},
23578#endif
e07e6e58
NC
23579 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
23580 arm_parse_it_mode, NULL},
c19d1205
ZW
23581 {NULL, NULL, 0, NULL}
23582};
cc8a6dd0 23583
c19d1205
ZW
23584int
23585md_parse_option (int c, char * arg)
23586{
23587 struct arm_option_table *opt;
e74cfd16 23588 const struct arm_legacy_option_table *fopt;
c19d1205 23589 struct arm_long_option_table *lopt;
b99bd4ef 23590
c19d1205 23591 switch (c)
b99bd4ef 23592 {
c19d1205
ZW
23593#ifdef OPTION_EB
23594 case OPTION_EB:
23595 target_big_endian = 1;
23596 break;
23597#endif
cc8a6dd0 23598
c19d1205
ZW
23599#ifdef OPTION_EL
23600 case OPTION_EL:
23601 target_big_endian = 0;
23602 break;
23603#endif
b99bd4ef 23604
845b51d6
PB
23605 case OPTION_FIX_V4BX:
23606 fix_v4bx = TRUE;
23607 break;
23608
c19d1205
ZW
23609 case 'a':
23610 /* Listing option. Just ignore these, we don't support additional
23611 ones. */
23612 return 0;
b99bd4ef 23613
c19d1205
ZW
23614 default:
23615 for (opt = arm_opts; opt->option != NULL; opt++)
23616 {
23617 if (c == opt->option[0]
23618 && ((arg == NULL && opt->option[1] == 0)
23619 || streq (arg, opt->option + 1)))
23620 {
c19d1205 23621 /* If the option is deprecated, tell the user. */
278df34e 23622 if (warn_on_deprecated && opt->deprecated != NULL)
c19d1205
ZW
23623 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
23624 arg ? arg : "", _(opt->deprecated));
b99bd4ef 23625
c19d1205
ZW
23626 if (opt->var != NULL)
23627 *opt->var = opt->value;
cc8a6dd0 23628
c19d1205
ZW
23629 return 1;
23630 }
23631 }
b99bd4ef 23632
e74cfd16
PB
23633 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
23634 {
23635 if (c == fopt->option[0]
23636 && ((arg == NULL && fopt->option[1] == 0)
23637 || streq (arg, fopt->option + 1)))
23638 {
e74cfd16 23639 /* If the option is deprecated, tell the user. */
278df34e 23640 if (warn_on_deprecated && fopt->deprecated != NULL)
e74cfd16
PB
23641 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
23642 arg ? arg : "", _(fopt->deprecated));
e74cfd16
PB
23643
23644 if (fopt->var != NULL)
23645 *fopt->var = &fopt->value;
23646
23647 return 1;
23648 }
23649 }
23650
c19d1205
ZW
23651 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
23652 {
23653 /* These options are expected to have an argument. */
23654 if (c == lopt->option[0]
23655 && arg != NULL
23656 && strncmp (arg, lopt->option + 1,
23657 strlen (lopt->option + 1)) == 0)
23658 {
c19d1205 23659 /* If the option is deprecated, tell the user. */
278df34e 23660 if (warn_on_deprecated && lopt->deprecated != NULL)
c19d1205
ZW
23661 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
23662 _(lopt->deprecated));
b99bd4ef 23663
c19d1205
ZW
23664 /* Call the sup-option parser. */
23665 return lopt->func (arg + strlen (lopt->option) - 1);
23666 }
23667 }
a737bd4d 23668
c19d1205
ZW
23669 return 0;
23670 }
a394c00f 23671
c19d1205
ZW
23672 return 1;
23673}
a394c00f 23674
c19d1205
ZW
23675void
23676md_show_usage (FILE * fp)
a394c00f 23677{
c19d1205
ZW
23678 struct arm_option_table *opt;
23679 struct arm_long_option_table *lopt;
a394c00f 23680
c19d1205 23681 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 23682
c19d1205
ZW
23683 for (opt = arm_opts; opt->option != NULL; opt++)
23684 if (opt->help != NULL)
23685 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 23686
c19d1205
ZW
23687 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
23688 if (lopt->help != NULL)
23689 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 23690
c19d1205
ZW
23691#ifdef OPTION_EB
23692 fprintf (fp, _("\
23693 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
23694#endif
23695
c19d1205
ZW
23696#ifdef OPTION_EL
23697 fprintf (fp, _("\
23698 -EL assemble code for a little-endian cpu\n"));
a737bd4d 23699#endif
845b51d6
PB
23700
23701 fprintf (fp, _("\
23702 --fix-v4bx Allow BX in ARMv4 code\n"));
c19d1205 23703}
ee065d83
PB
23704
23705
23706#ifdef OBJ_ELF
62b3e311
PB
23707typedef struct
23708{
23709 int val;
23710 arm_feature_set flags;
23711} cpu_arch_ver_table;
23712
23713/* Mapping from CPU features to EABI CPU arch values. Table must be sorted
23714 least features first. */
23715static const cpu_arch_ver_table cpu_arch_ver[] =
23716{
23717 {1, ARM_ARCH_V4},
23718 {2, ARM_ARCH_V4T},
23719 {3, ARM_ARCH_V5},
ee3c0378 23720 {3, ARM_ARCH_V5T},
62b3e311
PB
23721 {4, ARM_ARCH_V5TE},
23722 {5, ARM_ARCH_V5TEJ},
23723 {6, ARM_ARCH_V6},
7e806470 23724 {9, ARM_ARCH_V6K},
f4c65163 23725 {7, ARM_ARCH_V6Z},
91e22acd 23726 {11, ARM_ARCH_V6M},
b2a5fbdc 23727 {12, ARM_ARCH_V6SM},
7e806470 23728 {8, ARM_ARCH_V6T2},
62b3e311
PB
23729 {10, ARM_ARCH_V7A},
23730 {10, ARM_ARCH_V7R},
23731 {10, ARM_ARCH_V7M},
23732 {0, ARM_ARCH_NONE}
23733};
23734
ee3c0378
AS
23735/* Set an attribute if it has not already been set by the user. */
23736static void
23737aeabi_set_attribute_int (int tag, int value)
23738{
23739 if (tag < 1
23740 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
23741 || !attributes_set_explicitly[tag])
23742 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
23743}
23744
23745static void
23746aeabi_set_attribute_string (int tag, const char *value)
23747{
23748 if (tag < 1
23749 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
23750 || !attributes_set_explicitly[tag])
23751 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
23752}
23753
ee065d83
PB
23754/* Set the public EABI object attributes. */
23755static void
23756aeabi_set_public_attributes (void)
23757{
23758 int arch;
69239280 23759 char profile;
90ec0d68 23760 int virt_sec = 0;
e74cfd16 23761 arm_feature_set flags;
62b3e311
PB
23762 arm_feature_set tmp;
23763 const cpu_arch_ver_table *p;
ee065d83
PB
23764
23765 /* Choose the architecture based on the capabilities of the requested cpu
23766 (if any) and/or the instructions actually used. */
e74cfd16
PB
23767 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
23768 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
23769 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
ddd7f988
RE
23770
23771 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
23772 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
23773
23774 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
23775 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
23776
23777 /* Allow the user to override the reported architecture. */
7a1d4c38
PB
23778 if (object_arch)
23779 {
23780 ARM_CLEAR_FEATURE (flags, flags, arm_arch_any);
23781 ARM_MERGE_FEATURE_SETS (flags, flags, *object_arch);
23782 }
23783
251665fc
MGD
23784 /* We need to make sure that the attributes do not identify us as v6S-M
23785 when the only v6S-M feature in use is the Operating System Extensions. */
23786 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_os))
23787 if (!ARM_CPU_HAS_FEATURE (flags, arm_arch_v6m_only))
23788 ARM_CLEAR_FEATURE (flags, flags, arm_ext_os);
23789
62b3e311
PB
23790 tmp = flags;
23791 arch = 0;
23792 for (p = cpu_arch_ver; p->val; p++)
23793 {
23794 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
23795 {
23796 arch = p->val;
23797 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
23798 }
23799 }
ee065d83 23800
9e3c6df6
PB
23801 /* The table lookup above finds the last architecture to contribute
23802 a new feature. Unfortunately, Tag13 is a subset of the union of
23803 v6T2 and v7-M, so it is never seen as contributing a new feature.
23804 We can not search for the last entry which is entirely used,
23805 because if no CPU is specified we build up only those flags
23806 actually used. Perhaps we should separate out the specified
23807 and implicit cases. Avoid taking this path for -march=all by
23808 checking for contradictory v7-A / v7-M features. */
23809 if (arch == 10
23810 && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
23811 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m)
23812 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v6_dsp))
23813 arch = 13;
23814
ee065d83
PB
23815 /* Tag_CPU_name. */
23816 if (selected_cpu_name[0])
23817 {
91d6fa6a 23818 char *q;
ee065d83 23819
91d6fa6a
NC
23820 q = selected_cpu_name;
23821 if (strncmp (q, "armv", 4) == 0)
ee065d83
PB
23822 {
23823 int i;
5f4273c7 23824
91d6fa6a
NC
23825 q += 4;
23826 for (i = 0; q[i]; i++)
23827 q[i] = TOUPPER (q[i]);
ee065d83 23828 }
91d6fa6a 23829 aeabi_set_attribute_string (Tag_CPU_name, q);
ee065d83 23830 }
62f3b8c8 23831
ee065d83 23832 /* Tag_CPU_arch. */
ee3c0378 23833 aeabi_set_attribute_int (Tag_CPU_arch, arch);
62f3b8c8 23834
62b3e311
PB
23835 /* Tag_CPU_arch_profile. */
23836 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
69239280 23837 profile = 'A';
62b3e311 23838 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
69239280 23839 profile = 'R';
7e806470 23840 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_m))
69239280
MGD
23841 profile = 'M';
23842 else
23843 profile = '\0';
23844
23845 if (profile != '\0')
23846 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
62f3b8c8 23847
ee065d83 23848 /* Tag_ARM_ISA_use. */
ee3c0378
AS
23849 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
23850 || arch == 0)
23851 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
62f3b8c8 23852
ee065d83 23853 /* Tag_THUMB_ISA_use. */
ee3c0378
AS
23854 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
23855 || arch == 0)
23856 aeabi_set_attribute_int (Tag_THUMB_ISA_use,
23857 ARM_CPU_HAS_FEATURE (flags, arm_arch_t2) ? 2 : 1);
62f3b8c8 23858
ee065d83 23859 /* Tag_VFP_arch. */
62f3b8c8
PB
23860 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
23861 aeabi_set_attribute_int (Tag_VFP_arch,
23862 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
23863 ? 5 : 6);
23864 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
ee3c0378 23865 aeabi_set_attribute_int (Tag_VFP_arch, 3);
ada65aa3 23866 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
ee3c0378
AS
23867 aeabi_set_attribute_int (Tag_VFP_arch, 4);
23868 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
23869 aeabi_set_attribute_int (Tag_VFP_arch, 2);
23870 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
23871 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
23872 aeabi_set_attribute_int (Tag_VFP_arch, 1);
62f3b8c8 23873
4547cb56
NC
23874 /* Tag_ABI_HardFP_use. */
23875 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
23876 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
23877 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
23878
ee065d83 23879 /* Tag_WMMX_arch. */
ee3c0378
AS
23880 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
23881 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
23882 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
23883 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
62f3b8c8 23884
ee3c0378 23885 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
8e79c3df 23886 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
62f3b8c8
PB
23887 aeabi_set_attribute_int
23888 (Tag_Advanced_SIMD_arch, (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma)
23889 ? 2 : 1));
fa94de6b 23890
ee3c0378 23891 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
62f3b8c8 23892 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16))
ee3c0378 23893 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
4547cb56 23894
69239280
MGD
23895 /* Tag_DIV_use.
23896
23897 We set Tag_DIV_use to two when integer divide instructions have been used
23898 in ARM state, or when Thumb integer divide instructions have been used,
23899 but we have no architecture profile set, nor have we any ARM instructions.
23900
23901 For new architectures we will have to check these tests. */
23902 gas_assert (arch <= TAG_CPU_ARCH_V7E_M);
23903 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
23904 || (profile == '\0'
23905 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
23906 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
eea54501 23907 aeabi_set_attribute_int (Tag_DIV_use, 2);
60e5ef9f
MGD
23908
23909 /* Tag_MP_extension_use. */
23910 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
23911 aeabi_set_attribute_int (Tag_MPextension_use, 1);
f4c65163
MGD
23912
23913 /* Tag Virtualization_use. */
23914 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
90ec0d68
MGD
23915 virt_sec |= 1;
23916 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
23917 virt_sec |= 2;
23918 if (virt_sec != 0)
23919 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
ee065d83
PB
23920}
23921
104d59d1 23922/* Add the default contents for the .ARM.attributes section. */
ee065d83
PB
23923void
23924arm_md_end (void)
23925{
ee065d83
PB
23926 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
23927 return;
23928
23929 aeabi_set_public_attributes ();
ee065d83 23930}
8463be01 23931#endif /* OBJ_ELF */
ee065d83
PB
23932
23933
23934/* Parse a .cpu directive. */
23935
23936static void
23937s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
23938{
e74cfd16 23939 const struct arm_cpu_option_table *opt;
ee065d83
PB
23940 char *name;
23941 char saved_char;
23942
23943 name = input_line_pointer;
5f4273c7 23944 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
23945 input_line_pointer++;
23946 saved_char = *input_line_pointer;
23947 *input_line_pointer = 0;
23948
23949 /* Skip the first "all" entry. */
23950 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
23951 if (streq (opt->name, name))
23952 {
e74cfd16
PB
23953 mcpu_cpu_opt = &opt->value;
23954 selected_cpu = opt->value;
ee065d83 23955 if (opt->canonical_name)
5f4273c7 23956 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
23957 else
23958 {
23959 int i;
23960 for (i = 0; opt->name[i]; i++)
23961 selected_cpu_name[i] = TOUPPER (opt->name[i]);
f3bad469 23962
ee065d83
PB
23963 selected_cpu_name[i] = 0;
23964 }
e74cfd16 23965 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
23966 *input_line_pointer = saved_char;
23967 demand_empty_rest_of_line ();
23968 return;
23969 }
23970 as_bad (_("unknown cpu `%s'"), name);
23971 *input_line_pointer = saved_char;
23972 ignore_rest_of_line ();
23973}
23974
23975
23976/* Parse a .arch directive. */
23977
23978static void
23979s_arm_arch (int ignored ATTRIBUTE_UNUSED)
23980{
e74cfd16 23981 const struct arm_arch_option_table *opt;
ee065d83
PB
23982 char saved_char;
23983 char *name;
23984
23985 name = input_line_pointer;
5f4273c7 23986 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
23987 input_line_pointer++;
23988 saved_char = *input_line_pointer;
23989 *input_line_pointer = 0;
23990
23991 /* Skip the first "all" entry. */
23992 for (opt = arm_archs + 1; opt->name != NULL; opt++)
23993 if (streq (opt->name, name))
23994 {
e74cfd16
PB
23995 mcpu_cpu_opt = &opt->value;
23996 selected_cpu = opt->value;
5f4273c7 23997 strcpy (selected_cpu_name, opt->name);
e74cfd16 23998 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
23999 *input_line_pointer = saved_char;
24000 demand_empty_rest_of_line ();
24001 return;
24002 }
24003
24004 as_bad (_("unknown architecture `%s'\n"), name);
24005 *input_line_pointer = saved_char;
24006 ignore_rest_of_line ();
24007}
24008
24009
7a1d4c38
PB
24010/* Parse a .object_arch directive. */
24011
24012static void
24013s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
24014{
24015 const struct arm_arch_option_table *opt;
24016 char saved_char;
24017 char *name;
24018
24019 name = input_line_pointer;
5f4273c7 24020 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
7a1d4c38
PB
24021 input_line_pointer++;
24022 saved_char = *input_line_pointer;
24023 *input_line_pointer = 0;
24024
24025 /* Skip the first "all" entry. */
24026 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24027 if (streq (opt->name, name))
24028 {
24029 object_arch = &opt->value;
24030 *input_line_pointer = saved_char;
24031 demand_empty_rest_of_line ();
24032 return;
24033 }
24034
24035 as_bad (_("unknown architecture `%s'\n"), name);
24036 *input_line_pointer = saved_char;
24037 ignore_rest_of_line ();
24038}
24039
69133863
MGD
24040/* Parse a .arch_extension directive. */
24041
24042static void
24043s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
24044{
24045 const struct arm_option_extension_value_table *opt;
24046 char saved_char;
24047 char *name;
24048 int adding_value = 1;
24049
24050 name = input_line_pointer;
24051 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
24052 input_line_pointer++;
24053 saved_char = *input_line_pointer;
24054 *input_line_pointer = 0;
24055
24056 if (strlen (name) >= 2
24057 && strncmp (name, "no", 2) == 0)
24058 {
24059 adding_value = 0;
24060 name += 2;
24061 }
24062
24063 for (opt = arm_extensions; opt->name != NULL; opt++)
24064 if (streq (opt->name, name))
24065 {
24066 if (!ARM_CPU_HAS_FEATURE (*mcpu_cpu_opt, opt->allowed_archs))
24067 {
24068 as_bad (_("architectural extension `%s' is not allowed for the "
24069 "current base architecture"), name);
24070 break;
24071 }
24072
24073 if (adding_value)
24074 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu, opt->value);
24075 else
24076 ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->value);
24077
24078 mcpu_cpu_opt = &selected_cpu;
24079 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
24080 *input_line_pointer = saved_char;
24081 demand_empty_rest_of_line ();
24082 return;
24083 }
24084
24085 if (opt->name == NULL)
24086 as_bad (_("unknown architecture `%s'\n"), name);
24087
24088 *input_line_pointer = saved_char;
24089 ignore_rest_of_line ();
24090}
24091
ee065d83
PB
24092/* Parse a .fpu directive. */
24093
24094static void
24095s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
24096{
69133863 24097 const struct arm_option_fpu_value_table *opt;
ee065d83
PB
24098 char saved_char;
24099 char *name;
24100
24101 name = input_line_pointer;
5f4273c7 24102 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24103 input_line_pointer++;
24104 saved_char = *input_line_pointer;
24105 *input_line_pointer = 0;
5f4273c7 24106
ee065d83
PB
24107 for (opt = arm_fpus; opt->name != NULL; opt++)
24108 if (streq (opt->name, name))
24109 {
e74cfd16
PB
24110 mfpu_opt = &opt->value;
24111 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24112 *input_line_pointer = saved_char;
24113 demand_empty_rest_of_line ();
24114 return;
24115 }
24116
24117 as_bad (_("unknown floating point format `%s'\n"), name);
24118 *input_line_pointer = saved_char;
24119 ignore_rest_of_line ();
24120}
ee065d83 24121
794ba86a 24122/* Copy symbol information. */
f31fef98 24123
794ba86a
DJ
24124void
24125arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
24126{
24127 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
24128}
e04befd0 24129
f31fef98 24130#ifdef OBJ_ELF
e04befd0
AS
24131/* Given a symbolic attribute NAME, return the proper integer value.
24132 Returns -1 if the attribute is not known. */
f31fef98 24133
e04befd0
AS
24134int
24135arm_convert_symbolic_attribute (const char *name)
24136{
f31fef98
NC
24137 static const struct
24138 {
24139 const char * name;
24140 const int tag;
24141 }
24142 attribute_table[] =
24143 {
24144 /* When you modify this table you should
24145 also modify the list in doc/c-arm.texi. */
e04befd0 24146#define T(tag) {#tag, tag}
f31fef98
NC
24147 T (Tag_CPU_raw_name),
24148 T (Tag_CPU_name),
24149 T (Tag_CPU_arch),
24150 T (Tag_CPU_arch_profile),
24151 T (Tag_ARM_ISA_use),
24152 T (Tag_THUMB_ISA_use),
75375b3e 24153 T (Tag_FP_arch),
f31fef98
NC
24154 T (Tag_VFP_arch),
24155 T (Tag_WMMX_arch),
24156 T (Tag_Advanced_SIMD_arch),
24157 T (Tag_PCS_config),
24158 T (Tag_ABI_PCS_R9_use),
24159 T (Tag_ABI_PCS_RW_data),
24160 T (Tag_ABI_PCS_RO_data),
24161 T (Tag_ABI_PCS_GOT_use),
24162 T (Tag_ABI_PCS_wchar_t),
24163 T (Tag_ABI_FP_rounding),
24164 T (Tag_ABI_FP_denormal),
24165 T (Tag_ABI_FP_exceptions),
24166 T (Tag_ABI_FP_user_exceptions),
24167 T (Tag_ABI_FP_number_model),
75375b3e 24168 T (Tag_ABI_align_needed),
f31fef98 24169 T (Tag_ABI_align8_needed),
75375b3e 24170 T (Tag_ABI_align_preserved),
f31fef98
NC
24171 T (Tag_ABI_align8_preserved),
24172 T (Tag_ABI_enum_size),
24173 T (Tag_ABI_HardFP_use),
24174 T (Tag_ABI_VFP_args),
24175 T (Tag_ABI_WMMX_args),
24176 T (Tag_ABI_optimization_goals),
24177 T (Tag_ABI_FP_optimization_goals),
24178 T (Tag_compatibility),
24179 T (Tag_CPU_unaligned_access),
75375b3e 24180 T (Tag_FP_HP_extension),
f31fef98
NC
24181 T (Tag_VFP_HP_extension),
24182 T (Tag_ABI_FP_16bit_format),
cd21e546
MGD
24183 T (Tag_MPextension_use),
24184 T (Tag_DIV_use),
f31fef98
NC
24185 T (Tag_nodefaults),
24186 T (Tag_also_compatible_with),
24187 T (Tag_conformance),
24188 T (Tag_T2EE_use),
24189 T (Tag_Virtualization_use),
cd21e546 24190 /* We deliberately do not include Tag_MPextension_use_legacy. */
e04befd0 24191#undef T
f31fef98 24192 };
e04befd0
AS
24193 unsigned int i;
24194
24195 if (name == NULL)
24196 return -1;
24197
f31fef98 24198 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
c921be7d 24199 if (streq (name, attribute_table[i].name))
e04befd0
AS
24200 return attribute_table[i].tag;
24201
24202 return -1;
24203}
267bf995
RR
24204
24205
24206/* Apply sym value for relocations only in the case that
24207 they are for local symbols and you have the respective
24208 architectural feature for blx and simple switches. */
24209int
24210arm_apply_sym_value (struct fix * fixP)
24211{
24212 if (fixP->fx_addsy
24213 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
34e77a92 24214 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
267bf995
RR
24215 {
24216 switch (fixP->fx_r_type)
24217 {
24218 case BFD_RELOC_ARM_PCREL_BLX:
24219 case BFD_RELOC_THUMB_PCREL_BRANCH23:
24220 if (ARM_IS_FUNC (fixP->fx_addsy))
24221 return 1;
24222 break;
24223
24224 case BFD_RELOC_ARM_PCREL_CALL:
24225 case BFD_RELOC_THUMB_PCREL_BLX:
24226 if (THUMB_IS_FUNC (fixP->fx_addsy))
24227 return 1;
24228 break;
24229
24230 default:
24231 break;
24232 }
24233
24234 }
24235 return 0;
24236}
f31fef98 24237#endif /* OBJ_ELF */
This page took 4.213979 seconds and 4 git commands to generate.