PR gas/15623
[deliverable/binutils-gdb.git] / gas / config / tc-arm.c
CommitLineData
b99bd4ef 1/* tc-arm.c -- Assemble for the ARM
da4339ed 2 Copyright 1994-2013 Free Software Foundation, Inc.
b99bd4ef
NC
3 Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
4 Modified by David Taylor (dtaylor@armltd.co.uk)
22d9c8c5 5 Cirrus coprocessor mods by Aldy Hernandez (aldyh@redhat.com)
34920d91
NC
6 Cirrus coprocessor fixes by Petko Manolov (petkan@nucleusys.com)
7 Cirrus coprocessor fixes by Vladimir Ivanov (vladitx@nucleusys.com)
b99bd4ef
NC
8
9 This file is part of GAS, the GNU Assembler.
10
11 GAS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
ec2655a6 13 the Free Software Foundation; either version 3, or (at your option)
b99bd4ef
NC
14 any later version.
15
16 GAS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
c19d1205 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b99bd4ef
NC
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GAS; see the file COPYING. If not, write to the Free
699d2810
NC
23 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */
b99bd4ef 25
42a68e18 26#include "as.h"
5287ad62 27#include <limits.h>
037e8744 28#include <stdarg.h>
c19d1205 29#define NO_RELOC 0
3882b010 30#include "safe-ctype.h"
b99bd4ef
NC
31#include "subsegs.h"
32#include "obstack.h"
3da1d841 33#include "libiberty.h"
f263249b
RE
34#include "opcode/arm.h"
35
b99bd4ef
NC
36#ifdef OBJ_ELF
37#include "elf/arm.h"
a394c00f 38#include "dw2gencfi.h"
b99bd4ef
NC
39#endif
40
f0927246
NC
41#include "dwarf2dbg.h"
42
7ed4c4c5
NC
43#ifdef OBJ_ELF
44/* Must be at least the size of the largest unwind opcode (currently two). */
45#define ARM_OPCODE_CHUNK_SIZE 8
46
47/* This structure holds the unwinding state. */
48
49static struct
50{
c19d1205
ZW
51 symbolS * proc_start;
52 symbolS * table_entry;
53 symbolS * personality_routine;
54 int personality_index;
7ed4c4c5 55 /* The segment containing the function. */
c19d1205
ZW
56 segT saved_seg;
57 subsegT saved_subseg;
7ed4c4c5
NC
58 /* Opcodes generated from this function. */
59 unsigned char * opcodes;
c19d1205
ZW
60 int opcode_count;
61 int opcode_alloc;
7ed4c4c5 62 /* The number of bytes pushed to the stack. */
c19d1205 63 offsetT frame_size;
7ed4c4c5
NC
64 /* We don't add stack adjustment opcodes immediately so that we can merge
65 multiple adjustments. We can also omit the final adjustment
66 when using a frame pointer. */
c19d1205 67 offsetT pending_offset;
7ed4c4c5 68 /* These two fields are set by both unwind_movsp and unwind_setfp. They
c19d1205
ZW
69 hold the reg+offset to use when restoring sp from a frame pointer. */
70 offsetT fp_offset;
71 int fp_reg;
7ed4c4c5 72 /* Nonzero if an unwind_setfp directive has been seen. */
c19d1205 73 unsigned fp_used:1;
7ed4c4c5 74 /* Nonzero if the last opcode restores sp from fp_reg. */
c19d1205 75 unsigned sp_restored:1;
7ed4c4c5
NC
76} unwind;
77
8b1ad454
NC
78#endif /* OBJ_ELF */
79
4962c51a
MS
80/* Results from operand parsing worker functions. */
81
82typedef enum
83{
84 PARSE_OPERAND_SUCCESS,
85 PARSE_OPERAND_FAIL,
86 PARSE_OPERAND_FAIL_NO_BACKTRACK
87} parse_operand_result;
88
33a392fb
PB
89enum arm_float_abi
90{
91 ARM_FLOAT_ABI_HARD,
92 ARM_FLOAT_ABI_SOFTFP,
93 ARM_FLOAT_ABI_SOFT
94};
95
c19d1205 96/* Types of processor to assemble for. */
b99bd4ef 97#ifndef CPU_DEFAULT
8a59fff3 98/* The code that was here used to select a default CPU depending on compiler
fa94de6b 99 pre-defines which were only present when doing native builds, thus
8a59fff3
MGD
100 changing gas' default behaviour depending upon the build host.
101
102 If you have a target that requires a default CPU option then the you
103 should define CPU_DEFAULT here. */
b99bd4ef
NC
104#endif
105
106#ifndef FPU_DEFAULT
c820d418
MM
107# ifdef TE_LINUX
108# define FPU_DEFAULT FPU_ARCH_FPA
109# elif defined (TE_NetBSD)
110# ifdef OBJ_ELF
111# define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, but VFP order. */
112# else
113 /* Legacy a.out format. */
114# define FPU_DEFAULT FPU_ARCH_FPA /* Soft-float, but FPA order. */
115# endif
4e7fd91e
PB
116# elif defined (TE_VXWORKS)
117# define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, VFP order. */
c820d418
MM
118# else
119 /* For backwards compatibility, default to FPA. */
120# define FPU_DEFAULT FPU_ARCH_FPA
121# endif
122#endif /* ifndef FPU_DEFAULT */
b99bd4ef 123
c19d1205 124#define streq(a, b) (strcmp (a, b) == 0)
b99bd4ef 125
e74cfd16
PB
126static arm_feature_set cpu_variant;
127static arm_feature_set arm_arch_used;
128static arm_feature_set thumb_arch_used;
b99bd4ef 129
b99bd4ef 130/* Flags stored in private area of BFD structure. */
c19d1205
ZW
131static int uses_apcs_26 = FALSE;
132static int atpcs = FALSE;
b34976b6
AM
133static int support_interwork = FALSE;
134static int uses_apcs_float = FALSE;
c19d1205 135static int pic_code = FALSE;
845b51d6 136static int fix_v4bx = FALSE;
278df34e
NS
137/* Warn on using deprecated features. */
138static int warn_on_deprecated = TRUE;
139
03b1477f
RE
140
141/* Variables that we set while parsing command-line options. Once all
142 options have been read we re-process these values to set the real
143 assembly flags. */
e74cfd16
PB
144static const arm_feature_set *legacy_cpu = NULL;
145static const arm_feature_set *legacy_fpu = NULL;
146
147static const arm_feature_set *mcpu_cpu_opt = NULL;
148static const arm_feature_set *mcpu_fpu_opt = NULL;
149static const arm_feature_set *march_cpu_opt = NULL;
150static const arm_feature_set *march_fpu_opt = NULL;
151static const arm_feature_set *mfpu_opt = NULL;
7a1d4c38 152static const arm_feature_set *object_arch = NULL;
e74cfd16
PB
153
154/* Constants for known architecture features. */
155static const arm_feature_set fpu_default = FPU_DEFAULT;
156static const arm_feature_set fpu_arch_vfp_v1 = FPU_ARCH_VFP_V1;
157static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
5287ad62
JB
158static const arm_feature_set fpu_arch_vfp_v3 = FPU_ARCH_VFP_V3;
159static const arm_feature_set fpu_arch_neon_v1 = FPU_ARCH_NEON_V1;
e74cfd16
PB
160static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
161static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
162static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
163static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
164
165#ifdef CPU_DEFAULT
166static const arm_feature_set cpu_default = CPU_DEFAULT;
167#endif
168
169static const arm_feature_set arm_ext_v1 = ARM_FEATURE (ARM_EXT_V1, 0);
170static const arm_feature_set arm_ext_v2 = ARM_FEATURE (ARM_EXT_V1, 0);
171static const arm_feature_set arm_ext_v2s = ARM_FEATURE (ARM_EXT_V2S, 0);
172static const arm_feature_set arm_ext_v3 = ARM_FEATURE (ARM_EXT_V3, 0);
173static const arm_feature_set arm_ext_v3m = ARM_FEATURE (ARM_EXT_V3M, 0);
174static const arm_feature_set arm_ext_v4 = ARM_FEATURE (ARM_EXT_V4, 0);
175static const arm_feature_set arm_ext_v4t = ARM_FEATURE (ARM_EXT_V4T, 0);
176static const arm_feature_set arm_ext_v5 = ARM_FEATURE (ARM_EXT_V5, 0);
177static const arm_feature_set arm_ext_v4t_5 =
178 ARM_FEATURE (ARM_EXT_V4T | ARM_EXT_V5, 0);
179static const arm_feature_set arm_ext_v5t = ARM_FEATURE (ARM_EXT_V5T, 0);
180static const arm_feature_set arm_ext_v5e = ARM_FEATURE (ARM_EXT_V5E, 0);
181static const arm_feature_set arm_ext_v5exp = ARM_FEATURE (ARM_EXT_V5ExP, 0);
182static const arm_feature_set arm_ext_v5j = ARM_FEATURE (ARM_EXT_V5J, 0);
183static const arm_feature_set arm_ext_v6 = ARM_FEATURE (ARM_EXT_V6, 0);
184static const arm_feature_set arm_ext_v6k = ARM_FEATURE (ARM_EXT_V6K, 0);
e74cfd16 185static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE (ARM_EXT_V6T2, 0);
b2a5fbdc 186static const arm_feature_set arm_ext_v6m = ARM_FEATURE (ARM_EXT_V6M, 0);
62b3e311 187static const arm_feature_set arm_ext_v6_notm = ARM_FEATURE (ARM_EXT_V6_NOTM, 0);
9e3c6df6 188static const arm_feature_set arm_ext_v6_dsp = ARM_FEATURE (ARM_EXT_V6_DSP, 0);
7e806470
PB
189static const arm_feature_set arm_ext_barrier = ARM_FEATURE (ARM_EXT_BARRIER, 0);
190static const arm_feature_set arm_ext_msr = ARM_FEATURE (ARM_EXT_THUMB_MSR, 0);
62b3e311
PB
191static const arm_feature_set arm_ext_div = ARM_FEATURE (ARM_EXT_DIV, 0);
192static const arm_feature_set arm_ext_v7 = ARM_FEATURE (ARM_EXT_V7, 0);
193static const arm_feature_set arm_ext_v7a = ARM_FEATURE (ARM_EXT_V7A, 0);
194static const arm_feature_set arm_ext_v7r = ARM_FEATURE (ARM_EXT_V7R, 0);
9e3c6df6 195static const arm_feature_set arm_ext_v7m = ARM_FEATURE (ARM_EXT_V7M, 0);
bca38921 196static const arm_feature_set arm_ext_v8 = ARM_FEATURE (ARM_EXT_V8, 0);
7e806470 197static const arm_feature_set arm_ext_m =
b2a5fbdc 198 ARM_FEATURE (ARM_EXT_V6M | ARM_EXT_OS | ARM_EXT_V7M, 0);
60e5ef9f 199static const arm_feature_set arm_ext_mp = ARM_FEATURE (ARM_EXT_MP, 0);
f4c65163 200static const arm_feature_set arm_ext_sec = ARM_FEATURE (ARM_EXT_SEC, 0);
b2a5fbdc 201static const arm_feature_set arm_ext_os = ARM_FEATURE (ARM_EXT_OS, 0);
eea54501 202static const arm_feature_set arm_ext_adiv = ARM_FEATURE (ARM_EXT_ADIV, 0);
90ec0d68 203static const arm_feature_set arm_ext_virt = ARM_FEATURE (ARM_EXT_VIRT, 0);
e74cfd16
PB
204
205static const arm_feature_set arm_arch_any = ARM_ANY;
206static const arm_feature_set arm_arch_full = ARM_FEATURE (-1, -1);
207static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
208static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
251665fc 209static const arm_feature_set arm_arch_v6m_only = ARM_ARCH_V6M_ONLY;
e74cfd16 210
2d447fca
JM
211static const arm_feature_set arm_cext_iwmmxt2 =
212 ARM_FEATURE (0, ARM_CEXT_IWMMXT2);
e74cfd16
PB
213static const arm_feature_set arm_cext_iwmmxt =
214 ARM_FEATURE (0, ARM_CEXT_IWMMXT);
215static const arm_feature_set arm_cext_xscale =
216 ARM_FEATURE (0, ARM_CEXT_XSCALE);
217static const arm_feature_set arm_cext_maverick =
218 ARM_FEATURE (0, ARM_CEXT_MAVERICK);
219static const arm_feature_set fpu_fpa_ext_v1 = ARM_FEATURE (0, FPU_FPA_EXT_V1);
220static const arm_feature_set fpu_fpa_ext_v2 = ARM_FEATURE (0, FPU_FPA_EXT_V2);
221static const arm_feature_set fpu_vfp_ext_v1xd =
222 ARM_FEATURE (0, FPU_VFP_EXT_V1xD);
223static const arm_feature_set fpu_vfp_ext_v1 = ARM_FEATURE (0, FPU_VFP_EXT_V1);
224static const arm_feature_set fpu_vfp_ext_v2 = ARM_FEATURE (0, FPU_VFP_EXT_V2);
62f3b8c8 225static const arm_feature_set fpu_vfp_ext_v3xd = ARM_FEATURE (0, FPU_VFP_EXT_V3xD);
5287ad62 226static const arm_feature_set fpu_vfp_ext_v3 = ARM_FEATURE (0, FPU_VFP_EXT_V3);
b1cc4aeb
PB
227static const arm_feature_set fpu_vfp_ext_d32 =
228 ARM_FEATURE (0, FPU_VFP_EXT_D32);
5287ad62
JB
229static const arm_feature_set fpu_neon_ext_v1 = ARM_FEATURE (0, FPU_NEON_EXT_V1);
230static const arm_feature_set fpu_vfp_v3_or_neon_ext =
231 ARM_FEATURE (0, FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
62f3b8c8
PB
232static const arm_feature_set fpu_vfp_fp16 = ARM_FEATURE (0, FPU_VFP_EXT_FP16);
233static const arm_feature_set fpu_neon_ext_fma = ARM_FEATURE (0, FPU_NEON_EXT_FMA);
234static const arm_feature_set fpu_vfp_ext_fma = ARM_FEATURE (0, FPU_VFP_EXT_FMA);
bca38921
MGD
235static const arm_feature_set fpu_vfp_ext_armv8 =
236 ARM_FEATURE (0, FPU_VFP_EXT_ARMV8);
237static const arm_feature_set fpu_neon_ext_armv8 =
238 ARM_FEATURE (0, FPU_NEON_EXT_ARMV8);
239static const arm_feature_set fpu_crypto_ext_armv8 =
240 ARM_FEATURE (0, FPU_CRYPTO_EXT_ARMV8);
dd5181d5
KT
241static const arm_feature_set crc_ext_armv8 =
242 ARM_FEATURE (0, CRC_EXT_ARMV8);
e74cfd16 243
33a392fb 244static int mfloat_abi_opt = -1;
e74cfd16
PB
245/* Record user cpu selection for object attributes. */
246static arm_feature_set selected_cpu = ARM_ARCH_NONE;
ee065d83
PB
247/* Must be long enough to hold any of the names in arm_cpus. */
248static char selected_cpu_name[16];
8d67f500
NC
249
250/* Return if no cpu was selected on command-line. */
251static bfd_boolean
252no_cpu_selected (void)
253{
254 return selected_cpu.core == arm_arch_none.core
255 && selected_cpu.coproc == arm_arch_none.coproc;
256}
257
7cc69913 258#ifdef OBJ_ELF
deeaaff8
DJ
259# ifdef EABI_DEFAULT
260static int meabi_flags = EABI_DEFAULT;
261# else
d507cf36 262static int meabi_flags = EF_ARM_EABI_UNKNOWN;
deeaaff8 263# endif
e1da3f5b 264
ee3c0378
AS
265static int attributes_set_explicitly[NUM_KNOWN_OBJ_ATTRIBUTES];
266
e1da3f5b 267bfd_boolean
5f4273c7 268arm_is_eabi (void)
e1da3f5b
PB
269{
270 return (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4);
271}
7cc69913 272#endif
b99bd4ef 273
b99bd4ef 274#ifdef OBJ_ELF
c19d1205 275/* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
b99bd4ef
NC
276symbolS * GOT_symbol;
277#endif
278
b99bd4ef
NC
279/* 0: assemble for ARM,
280 1: assemble for Thumb,
281 2: assemble for Thumb even though target CPU does not support thumb
282 instructions. */
283static int thumb_mode = 0;
8dc2430f
NC
284/* A value distinct from the possible values for thumb_mode that we
285 can use to record whether thumb_mode has been copied into the
286 tc_frag_data field of a frag. */
287#define MODE_RECORDED (1 << 4)
b99bd4ef 288
e07e6e58
NC
289/* Specifies the intrinsic IT insn behavior mode. */
290enum implicit_it_mode
291{
292 IMPLICIT_IT_MODE_NEVER = 0x00,
293 IMPLICIT_IT_MODE_ARM = 0x01,
294 IMPLICIT_IT_MODE_THUMB = 0x02,
295 IMPLICIT_IT_MODE_ALWAYS = (IMPLICIT_IT_MODE_ARM | IMPLICIT_IT_MODE_THUMB)
296};
297static int implicit_it_mode = IMPLICIT_IT_MODE_ARM;
298
c19d1205
ZW
299/* If unified_syntax is true, we are processing the new unified
300 ARM/Thumb syntax. Important differences from the old ARM mode:
301
302 - Immediate operands do not require a # prefix.
303 - Conditional affixes always appear at the end of the
304 instruction. (For backward compatibility, those instructions
305 that formerly had them in the middle, continue to accept them
306 there.)
307 - The IT instruction may appear, and if it does is validated
308 against subsequent conditional affixes. It does not generate
309 machine code.
310
311 Important differences from the old Thumb mode:
312
313 - Immediate operands do not require a # prefix.
314 - Most of the V6T2 instructions are only available in unified mode.
315 - The .N and .W suffixes are recognized and honored (it is an error
316 if they cannot be honored).
317 - All instructions set the flags if and only if they have an 's' affix.
318 - Conditional affixes may be used. They are validated against
319 preceding IT instructions. Unlike ARM mode, you cannot use a
320 conditional affix except in the scope of an IT instruction. */
321
322static bfd_boolean unified_syntax = FALSE;
b99bd4ef 323
bacebabc
RM
324/* An immediate operand can start with #, and ld*, st*, pld operands
325 can contain [ and ]. We need to tell APP not to elide whitespace
326 before a [, which can appear as the first operand for pld. */
327const char arm_symbol_chars[] = "#[]";
328
5287ad62
JB
329enum neon_el_type
330{
dcbf9037 331 NT_invtype,
5287ad62
JB
332 NT_untyped,
333 NT_integer,
334 NT_float,
335 NT_poly,
336 NT_signed,
dcbf9037 337 NT_unsigned
5287ad62
JB
338};
339
340struct neon_type_el
341{
342 enum neon_el_type type;
343 unsigned size;
344};
345
346#define NEON_MAX_TYPE_ELS 4
347
348struct neon_type
349{
350 struct neon_type_el el[NEON_MAX_TYPE_ELS];
351 unsigned elems;
352};
353
e07e6e58
NC
354enum it_instruction_type
355{
356 OUTSIDE_IT_INSN,
357 INSIDE_IT_INSN,
358 INSIDE_IT_LAST_INSN,
359 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
360 if inside, should be the last one. */
361 NEUTRAL_IT_INSN, /* This could be either inside or outside,
362 i.e. BKPT and NOP. */
363 IT_INSN /* The IT insn has been parsed. */
364};
365
ad6cec43
MGD
366/* The maximum number of operands we need. */
367#define ARM_IT_MAX_OPERANDS 6
368
b99bd4ef
NC
369struct arm_it
370{
c19d1205 371 const char * error;
b99bd4ef 372 unsigned long instruction;
c19d1205
ZW
373 int size;
374 int size_req;
375 int cond;
037e8744
JB
376 /* "uncond_value" is set to the value in place of the conditional field in
377 unconditional versions of the instruction, or -1 if nothing is
378 appropriate. */
379 int uncond_value;
5287ad62 380 struct neon_type vectype;
88714cb8
DG
381 /* This does not indicate an actual NEON instruction, only that
382 the mnemonic accepts neon-style type suffixes. */
383 int is_neon;
0110f2b8
PB
384 /* Set to the opcode if the instruction needs relaxation.
385 Zero if the instruction is not relaxed. */
386 unsigned long relax;
b99bd4ef
NC
387 struct
388 {
389 bfd_reloc_code_real_type type;
c19d1205
ZW
390 expressionS exp;
391 int pc_rel;
b99bd4ef 392 } reloc;
b99bd4ef 393
e07e6e58
NC
394 enum it_instruction_type it_insn_type;
395
c19d1205
ZW
396 struct
397 {
398 unsigned reg;
ca3f61f7 399 signed int imm;
dcbf9037 400 struct neon_type_el vectype;
ca3f61f7
NC
401 unsigned present : 1; /* Operand present. */
402 unsigned isreg : 1; /* Operand was a register. */
403 unsigned immisreg : 1; /* .imm field is a second register. */
5287ad62
JB
404 unsigned isscalar : 1; /* Operand is a (Neon) scalar. */
405 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
c96612cc 406 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
5287ad62
JB
407 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
408 instructions. This allows us to disambiguate ARM <-> vector insns. */
409 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
037e8744 410 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
5287ad62 411 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
037e8744 412 unsigned issingle : 1; /* Operand is VFP single-precision register. */
ca3f61f7
NC
413 unsigned hasreloc : 1; /* Operand has relocation suffix. */
414 unsigned writeback : 1; /* Operand has trailing ! */
415 unsigned preind : 1; /* Preindexed address. */
416 unsigned postind : 1; /* Postindexed address. */
417 unsigned negative : 1; /* Index register was negated. */
418 unsigned shifted : 1; /* Shift applied to operation. */
419 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
ad6cec43 420 } operands[ARM_IT_MAX_OPERANDS];
b99bd4ef
NC
421};
422
c19d1205 423static struct arm_it inst;
b99bd4ef
NC
424
425#define NUM_FLOAT_VALS 8
426
05d2d07e 427const char * fp_const[] =
b99bd4ef
NC
428{
429 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
430};
431
c19d1205 432/* Number of littlenums required to hold an extended precision number. */
b99bd4ef
NC
433#define MAX_LITTLENUMS 6
434
435LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
436
437#define FAIL (-1)
438#define SUCCESS (0)
439
440#define SUFF_S 1
441#define SUFF_D 2
442#define SUFF_E 3
443#define SUFF_P 4
444
c19d1205
ZW
445#define CP_T_X 0x00008000
446#define CP_T_Y 0x00400000
b99bd4ef 447
c19d1205
ZW
448#define CONDS_BIT 0x00100000
449#define LOAD_BIT 0x00100000
b99bd4ef
NC
450
451#define DOUBLE_LOAD_FLAG 0x00000001
452
453struct asm_cond
454{
d3ce72d0 455 const char * template_name;
c921be7d 456 unsigned long value;
b99bd4ef
NC
457};
458
c19d1205 459#define COND_ALWAYS 0xE
b99bd4ef 460
b99bd4ef
NC
461struct asm_psr
462{
d3ce72d0 463 const char * template_name;
c921be7d 464 unsigned long field;
b99bd4ef
NC
465};
466
62b3e311
PB
467struct asm_barrier_opt
468{
e797f7e0
MGD
469 const char * template_name;
470 unsigned long value;
471 const arm_feature_set arch;
62b3e311
PB
472};
473
2d2255b5 474/* The bit that distinguishes CPSR and SPSR. */
b99bd4ef
NC
475#define SPSR_BIT (1 << 22)
476
c19d1205
ZW
477/* The individual PSR flag bits. */
478#define PSR_c (1 << 16)
479#define PSR_x (1 << 17)
480#define PSR_s (1 << 18)
481#define PSR_f (1 << 19)
b99bd4ef 482
c19d1205 483struct reloc_entry
bfae80f2 484{
c921be7d
NC
485 char * name;
486 bfd_reloc_code_real_type reloc;
bfae80f2
RE
487};
488
5287ad62 489enum vfp_reg_pos
bfae80f2 490{
5287ad62
JB
491 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
492 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
bfae80f2
RE
493};
494
495enum vfp_ldstm_type
496{
497 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
498};
499
dcbf9037
JB
500/* Bits for DEFINED field in neon_typed_alias. */
501#define NTA_HASTYPE 1
502#define NTA_HASINDEX 2
503
504struct neon_typed_alias
505{
c921be7d
NC
506 unsigned char defined;
507 unsigned char index;
508 struct neon_type_el eltype;
dcbf9037
JB
509};
510
c19d1205
ZW
511/* ARM register categories. This includes coprocessor numbers and various
512 architecture extensions' registers. */
513enum arm_reg_type
bfae80f2 514{
c19d1205
ZW
515 REG_TYPE_RN,
516 REG_TYPE_CP,
517 REG_TYPE_CN,
518 REG_TYPE_FN,
519 REG_TYPE_VFS,
520 REG_TYPE_VFD,
5287ad62 521 REG_TYPE_NQ,
037e8744 522 REG_TYPE_VFSD,
5287ad62 523 REG_TYPE_NDQ,
037e8744 524 REG_TYPE_NSDQ,
c19d1205
ZW
525 REG_TYPE_VFC,
526 REG_TYPE_MVF,
527 REG_TYPE_MVD,
528 REG_TYPE_MVFX,
529 REG_TYPE_MVDX,
530 REG_TYPE_MVAX,
531 REG_TYPE_DSPSC,
532 REG_TYPE_MMXWR,
533 REG_TYPE_MMXWC,
534 REG_TYPE_MMXWCG,
535 REG_TYPE_XSCALE,
90ec0d68 536 REG_TYPE_RNB
bfae80f2
RE
537};
538
dcbf9037
JB
539/* Structure for a hash table entry for a register.
540 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
541 information which states whether a vector type or index is specified (for a
542 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
6c43fab6
RE
543struct reg_entry
544{
c921be7d 545 const char * name;
90ec0d68 546 unsigned int number;
c921be7d
NC
547 unsigned char type;
548 unsigned char builtin;
549 struct neon_typed_alias * neon;
6c43fab6
RE
550};
551
c19d1205 552/* Diagnostics used when we don't get a register of the expected type. */
c921be7d 553const char * const reg_expected_msgs[] =
c19d1205
ZW
554{
555 N_("ARM register expected"),
556 N_("bad or missing co-processor number"),
557 N_("co-processor register expected"),
558 N_("FPA register expected"),
559 N_("VFP single precision register expected"),
5287ad62
JB
560 N_("VFP/Neon double precision register expected"),
561 N_("Neon quad precision register expected"),
037e8744 562 N_("VFP single or double precision register expected"),
5287ad62 563 N_("Neon double or quad precision register expected"),
037e8744 564 N_("VFP single, double or Neon quad precision register expected"),
c19d1205
ZW
565 N_("VFP system register expected"),
566 N_("Maverick MVF register expected"),
567 N_("Maverick MVD register expected"),
568 N_("Maverick MVFX register expected"),
569 N_("Maverick MVDX register expected"),
570 N_("Maverick MVAX register expected"),
571 N_("Maverick DSPSC register expected"),
572 N_("iWMMXt data register expected"),
573 N_("iWMMXt control register expected"),
574 N_("iWMMXt scalar register expected"),
575 N_("XScale accumulator register expected"),
6c43fab6
RE
576};
577
c19d1205 578/* Some well known registers that we refer to directly elsewhere. */
bd340a04 579#define REG_R12 12
c19d1205
ZW
580#define REG_SP 13
581#define REG_LR 14
582#define REG_PC 15
404ff6b5 583
b99bd4ef
NC
584/* ARM instructions take 4bytes in the object file, Thumb instructions
585 take 2: */
c19d1205 586#define INSN_SIZE 4
b99bd4ef
NC
587
588struct asm_opcode
589{
590 /* Basic string to match. */
d3ce72d0 591 const char * template_name;
c19d1205
ZW
592
593 /* Parameters to instruction. */
5be8be5d 594 unsigned int operands[8];
c19d1205
ZW
595
596 /* Conditional tag - see opcode_lookup. */
597 unsigned int tag : 4;
b99bd4ef
NC
598
599 /* Basic instruction code. */
c19d1205 600 unsigned int avalue : 28;
b99bd4ef 601
c19d1205
ZW
602 /* Thumb-format instruction code. */
603 unsigned int tvalue;
b99bd4ef 604
90e4755a 605 /* Which architecture variant provides this instruction. */
c921be7d
NC
606 const arm_feature_set * avariant;
607 const arm_feature_set * tvariant;
c19d1205
ZW
608
609 /* Function to call to encode instruction in ARM format. */
610 void (* aencode) (void);
b99bd4ef 611
c19d1205
ZW
612 /* Function to call to encode instruction in Thumb format. */
613 void (* tencode) (void);
b99bd4ef
NC
614};
615
a737bd4d
NC
616/* Defines for various bits that we will want to toggle. */
617#define INST_IMMEDIATE 0x02000000
618#define OFFSET_REG 0x02000000
c19d1205 619#define HWOFFSET_IMM 0x00400000
a737bd4d
NC
620#define SHIFT_BY_REG 0x00000010
621#define PRE_INDEX 0x01000000
622#define INDEX_UP 0x00800000
623#define WRITE_BACK 0x00200000
624#define LDM_TYPE_2_OR_3 0x00400000
a028a6f5 625#define CPSI_MMOD 0x00020000
90e4755a 626
a737bd4d
NC
627#define LITERAL_MASK 0xf000f000
628#define OPCODE_MASK 0xfe1fffff
629#define V4_STR_BIT 0x00000020
90e4755a 630
efd81785
PB
631#define T2_SUBS_PC_LR 0xf3de8f00
632
a737bd4d 633#define DATA_OP_SHIFT 21
90e4755a 634
ef8d22e6
PB
635#define T2_OPCODE_MASK 0xfe1fffff
636#define T2_DATA_OP_SHIFT 21
637
6530b175
NC
638#define A_COND_MASK 0xf0000000
639#define A_PUSH_POP_OP_MASK 0x0fff0000
640
641/* Opcodes for pushing/poping registers to/from the stack. */
642#define A1_OPCODE_PUSH 0x092d0000
643#define A2_OPCODE_PUSH 0x052d0004
644#define A2_OPCODE_POP 0x049d0004
645
a737bd4d
NC
646/* Codes to distinguish the arithmetic instructions. */
647#define OPCODE_AND 0
648#define OPCODE_EOR 1
649#define OPCODE_SUB 2
650#define OPCODE_RSB 3
651#define OPCODE_ADD 4
652#define OPCODE_ADC 5
653#define OPCODE_SBC 6
654#define OPCODE_RSC 7
655#define OPCODE_TST 8
656#define OPCODE_TEQ 9
657#define OPCODE_CMP 10
658#define OPCODE_CMN 11
659#define OPCODE_ORR 12
660#define OPCODE_MOV 13
661#define OPCODE_BIC 14
662#define OPCODE_MVN 15
90e4755a 663
ef8d22e6
PB
664#define T2_OPCODE_AND 0
665#define T2_OPCODE_BIC 1
666#define T2_OPCODE_ORR 2
667#define T2_OPCODE_ORN 3
668#define T2_OPCODE_EOR 4
669#define T2_OPCODE_ADD 8
670#define T2_OPCODE_ADC 10
671#define T2_OPCODE_SBC 11
672#define T2_OPCODE_SUB 13
673#define T2_OPCODE_RSB 14
674
a737bd4d
NC
675#define T_OPCODE_MUL 0x4340
676#define T_OPCODE_TST 0x4200
677#define T_OPCODE_CMN 0x42c0
678#define T_OPCODE_NEG 0x4240
679#define T_OPCODE_MVN 0x43c0
90e4755a 680
a737bd4d
NC
681#define T_OPCODE_ADD_R3 0x1800
682#define T_OPCODE_SUB_R3 0x1a00
683#define T_OPCODE_ADD_HI 0x4400
684#define T_OPCODE_ADD_ST 0xb000
685#define T_OPCODE_SUB_ST 0xb080
686#define T_OPCODE_ADD_SP 0xa800
687#define T_OPCODE_ADD_PC 0xa000
688#define T_OPCODE_ADD_I8 0x3000
689#define T_OPCODE_SUB_I8 0x3800
690#define T_OPCODE_ADD_I3 0x1c00
691#define T_OPCODE_SUB_I3 0x1e00
b99bd4ef 692
a737bd4d
NC
693#define T_OPCODE_ASR_R 0x4100
694#define T_OPCODE_LSL_R 0x4080
c19d1205
ZW
695#define T_OPCODE_LSR_R 0x40c0
696#define T_OPCODE_ROR_R 0x41c0
a737bd4d
NC
697#define T_OPCODE_ASR_I 0x1000
698#define T_OPCODE_LSL_I 0x0000
699#define T_OPCODE_LSR_I 0x0800
b99bd4ef 700
a737bd4d
NC
701#define T_OPCODE_MOV_I8 0x2000
702#define T_OPCODE_CMP_I8 0x2800
703#define T_OPCODE_CMP_LR 0x4280
704#define T_OPCODE_MOV_HR 0x4600
705#define T_OPCODE_CMP_HR 0x4500
b99bd4ef 706
a737bd4d
NC
707#define T_OPCODE_LDR_PC 0x4800
708#define T_OPCODE_LDR_SP 0x9800
709#define T_OPCODE_STR_SP 0x9000
710#define T_OPCODE_LDR_IW 0x6800
711#define T_OPCODE_STR_IW 0x6000
712#define T_OPCODE_LDR_IH 0x8800
713#define T_OPCODE_STR_IH 0x8000
714#define T_OPCODE_LDR_IB 0x7800
715#define T_OPCODE_STR_IB 0x7000
716#define T_OPCODE_LDR_RW 0x5800
717#define T_OPCODE_STR_RW 0x5000
718#define T_OPCODE_LDR_RH 0x5a00
719#define T_OPCODE_STR_RH 0x5200
720#define T_OPCODE_LDR_RB 0x5c00
721#define T_OPCODE_STR_RB 0x5400
c9b604bd 722
a737bd4d
NC
723#define T_OPCODE_PUSH 0xb400
724#define T_OPCODE_POP 0xbc00
b99bd4ef 725
2fc8bdac 726#define T_OPCODE_BRANCH 0xe000
b99bd4ef 727
a737bd4d 728#define THUMB_SIZE 2 /* Size of thumb instruction. */
a737bd4d 729#define THUMB_PP_PC_LR 0x0100
c19d1205 730#define THUMB_LOAD_BIT 0x0800
53365c0d 731#define THUMB2_LOAD_BIT 0x00100000
c19d1205
ZW
732
733#define BAD_ARGS _("bad arguments to instruction")
fdfde340 734#define BAD_SP _("r13 not allowed here")
c19d1205
ZW
735#define BAD_PC _("r15 not allowed here")
736#define BAD_COND _("instruction cannot be conditional")
737#define BAD_OVERLAP _("registers may not be the same")
738#define BAD_HIREG _("lo register required")
739#define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
01cfc07f 740#define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
dfa9f0d5
PB
741#define BAD_BRANCH _("branch must be last instruction in IT block")
742#define BAD_NOT_IT _("instruction not allowed in IT block")
037e8744 743#define BAD_FPU _("selected FPU does not support instruction")
e07e6e58
NC
744#define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
745#define BAD_IT_COND _("incorrect condition in IT block")
746#define BAD_IT_IT _("IT falling in the range of a previous IT block")
921e5f0a 747#define MISSING_FNSTART _("missing .fnstart before unwinding directive")
5be8be5d
DG
748#define BAD_PC_ADDRESSING \
749 _("cannot use register index with PC-relative addressing")
750#define BAD_PC_WRITEBACK \
751 _("cannot use writeback with PC-relative addressing")
08f10d51 752#define BAD_RANGE _("branch out of range")
dd5181d5 753#define UNPRED_REG(R) _("using " R " results in unpredictable behaviour")
c19d1205 754
c921be7d
NC
755static struct hash_control * arm_ops_hsh;
756static struct hash_control * arm_cond_hsh;
757static struct hash_control * arm_shift_hsh;
758static struct hash_control * arm_psr_hsh;
759static struct hash_control * arm_v7m_psr_hsh;
760static struct hash_control * arm_reg_hsh;
761static struct hash_control * arm_reloc_hsh;
762static struct hash_control * arm_barrier_opt_hsh;
b99bd4ef 763
b99bd4ef
NC
764/* Stuff needed to resolve the label ambiguity
765 As:
766 ...
767 label: <insn>
768 may differ from:
769 ...
770 label:
5f4273c7 771 <insn> */
b99bd4ef
NC
772
773symbolS * last_label_seen;
b34976b6 774static int label_is_thumb_function_name = FALSE;
e07e6e58 775
3d0c9500
NC
776/* Literal pool structure. Held on a per-section
777 and per-sub-section basis. */
a737bd4d 778
c19d1205 779#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 780typedef struct literal_pool
b99bd4ef 781{
c921be7d
NC
782 expressionS literals [MAX_LITERAL_POOL_SIZE];
783 unsigned int next_free_entry;
784 unsigned int id;
785 symbolS * symbol;
786 segT section;
787 subsegT sub_section;
a8040cf2
NC
788#ifdef OBJ_ELF
789 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
790#endif
c921be7d 791 struct literal_pool * next;
3d0c9500 792} literal_pool;
b99bd4ef 793
3d0c9500
NC
794/* Pointer to a linked list of literal pools. */
795literal_pool * list_of_pools = NULL;
e27ec89e 796
e07e6e58
NC
797#ifdef OBJ_ELF
798# define now_it seg_info (now_seg)->tc_segment_info_data.current_it
799#else
800static struct current_it now_it;
801#endif
802
803static inline int
804now_it_compatible (int cond)
805{
806 return (cond & ~1) == (now_it.cc & ~1);
807}
808
809static inline int
810conditional_insn (void)
811{
812 return inst.cond != COND_ALWAYS;
813}
814
815static int in_it_block (void);
816
817static int handle_it_state (void);
818
819static void force_automatic_it_block_close (void);
820
c921be7d
NC
821static void it_fsm_post_encode (void);
822
e07e6e58
NC
823#define set_it_insn_type(type) \
824 do \
825 { \
826 inst.it_insn_type = type; \
827 if (handle_it_state () == FAIL) \
828 return; \
829 } \
830 while (0)
831
c921be7d
NC
832#define set_it_insn_type_nonvoid(type, failret) \
833 do \
834 { \
835 inst.it_insn_type = type; \
836 if (handle_it_state () == FAIL) \
837 return failret; \
838 } \
839 while(0)
840
e07e6e58
NC
841#define set_it_insn_type_last() \
842 do \
843 { \
844 if (inst.cond == COND_ALWAYS) \
845 set_it_insn_type (IF_INSIDE_IT_LAST_INSN); \
846 else \
847 set_it_insn_type (INSIDE_IT_LAST_INSN); \
848 } \
849 while (0)
850
c19d1205 851/* Pure syntax. */
b99bd4ef 852
c19d1205
ZW
853/* This array holds the chars that always start a comment. If the
854 pre-processor is disabled, these aren't very useful. */
855const char comment_chars[] = "@";
3d0c9500 856
c19d1205
ZW
857/* This array holds the chars that only start a comment at the beginning of
858 a line. If the line seems to have the form '# 123 filename'
859 .line and .file directives will appear in the pre-processed output. */
860/* Note that input_file.c hand checks for '#' at the beginning of the
861 first line of the input file. This is because the compiler outputs
862 #NO_APP at the beginning of its output. */
863/* Also note that comments like this one will always work. */
864const char line_comment_chars[] = "#";
3d0c9500 865
c19d1205 866const char line_separator_chars[] = ";";
b99bd4ef 867
c19d1205
ZW
868/* Chars that can be used to separate mant
869 from exp in floating point numbers. */
870const char EXP_CHARS[] = "eE";
3d0c9500 871
c19d1205
ZW
872/* Chars that mean this number is a floating point constant. */
873/* As in 0f12.456 */
874/* or 0d1.2345e12 */
b99bd4ef 875
c19d1205 876const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 877
c19d1205
ZW
878/* Prefix characters that indicate the start of an immediate
879 value. */
880#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 881
c19d1205
ZW
882/* Separator character handling. */
883
884#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
885
886static inline int
887skip_past_char (char ** str, char c)
888{
8ab8155f
NC
889 /* PR gas/14987: Allow for whitespace before the expected character. */
890 skip_whitespace (*str);
427d0db6 891
c19d1205
ZW
892 if (**str == c)
893 {
894 (*str)++;
895 return SUCCESS;
3d0c9500 896 }
c19d1205
ZW
897 else
898 return FAIL;
899}
c921be7d 900
c19d1205 901#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 902
c19d1205
ZW
903/* Arithmetic expressions (possibly involving symbols). */
904
905/* Return TRUE if anything in the expression is a bignum. */
906
907static int
908walk_no_bignums (symbolS * sp)
909{
910 if (symbol_get_value_expression (sp)->X_op == O_big)
911 return 1;
912
913 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 914 {
c19d1205
ZW
915 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
916 || (symbol_get_value_expression (sp)->X_op_symbol
917 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
918 }
919
c19d1205 920 return 0;
3d0c9500
NC
921}
922
c19d1205
ZW
923static int in_my_get_expression = 0;
924
925/* Third argument to my_get_expression. */
926#define GE_NO_PREFIX 0
927#define GE_IMM_PREFIX 1
928#define GE_OPT_PREFIX 2
5287ad62
JB
929/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
930 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
931#define GE_OPT_PREFIX_BIG 3
a737bd4d 932
b99bd4ef 933static int
c19d1205 934my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 935{
c19d1205
ZW
936 char * save_in;
937 segT seg;
b99bd4ef 938
c19d1205
ZW
939 /* In unified syntax, all prefixes are optional. */
940 if (unified_syntax)
5287ad62
JB
941 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
942 : GE_OPT_PREFIX;
b99bd4ef 943
c19d1205 944 switch (prefix_mode)
b99bd4ef 945 {
c19d1205
ZW
946 case GE_NO_PREFIX: break;
947 case GE_IMM_PREFIX:
948 if (!is_immediate_prefix (**str))
949 {
950 inst.error = _("immediate expression requires a # prefix");
951 return FAIL;
952 }
953 (*str)++;
954 break;
955 case GE_OPT_PREFIX:
5287ad62 956 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
957 if (is_immediate_prefix (**str))
958 (*str)++;
959 break;
960 default: abort ();
961 }
b99bd4ef 962
c19d1205 963 memset (ep, 0, sizeof (expressionS));
b99bd4ef 964
c19d1205
ZW
965 save_in = input_line_pointer;
966 input_line_pointer = *str;
967 in_my_get_expression = 1;
968 seg = expression (ep);
969 in_my_get_expression = 0;
970
f86adc07 971 if (ep->X_op == O_illegal || ep->X_op == O_absent)
b99bd4ef 972 {
f86adc07 973 /* We found a bad or missing expression in md_operand(). */
c19d1205
ZW
974 *str = input_line_pointer;
975 input_line_pointer = save_in;
976 if (inst.error == NULL)
f86adc07
NS
977 inst.error = (ep->X_op == O_absent
978 ? _("missing expression") :_("bad expression"));
c19d1205
ZW
979 return 1;
980 }
b99bd4ef 981
c19d1205
ZW
982#ifdef OBJ_AOUT
983 if (seg != absolute_section
984 && seg != text_section
985 && seg != data_section
986 && seg != bss_section
987 && seg != undefined_section)
988 {
989 inst.error = _("bad segment");
990 *str = input_line_pointer;
991 input_line_pointer = save_in;
992 return 1;
b99bd4ef 993 }
87975d2a
AM
994#else
995 (void) seg;
c19d1205 996#endif
b99bd4ef 997
c19d1205
ZW
998 /* Get rid of any bignums now, so that we don't generate an error for which
999 we can't establish a line number later on. Big numbers are never valid
1000 in instructions, which is where this routine is always called. */
5287ad62
JB
1001 if (prefix_mode != GE_OPT_PREFIX_BIG
1002 && (ep->X_op == O_big
1003 || (ep->X_add_symbol
1004 && (walk_no_bignums (ep->X_add_symbol)
1005 || (ep->X_op_symbol
1006 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
1007 {
1008 inst.error = _("invalid constant");
1009 *str = input_line_pointer;
1010 input_line_pointer = save_in;
1011 return 1;
1012 }
b99bd4ef 1013
c19d1205
ZW
1014 *str = input_line_pointer;
1015 input_line_pointer = save_in;
1016 return 0;
b99bd4ef
NC
1017}
1018
c19d1205
ZW
1019/* Turn a string in input_line_pointer into a floating point constant
1020 of type TYPE, and store the appropriate bytes in *LITP. The number
1021 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1022 returned, or NULL on OK.
b99bd4ef 1023
c19d1205
ZW
1024 Note that fp constants aren't represent in the normal way on the ARM.
1025 In big endian mode, things are as expected. However, in little endian
1026 mode fp constants are big-endian word-wise, and little-endian byte-wise
1027 within the words. For example, (double) 1.1 in big endian mode is
1028 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1029 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 1030
c19d1205 1031 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 1032
c19d1205
ZW
1033char *
1034md_atof (int type, char * litP, int * sizeP)
1035{
1036 int prec;
1037 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1038 char *t;
1039 int i;
b99bd4ef 1040
c19d1205
ZW
1041 switch (type)
1042 {
1043 case 'f':
1044 case 'F':
1045 case 's':
1046 case 'S':
1047 prec = 2;
1048 break;
b99bd4ef 1049
c19d1205
ZW
1050 case 'd':
1051 case 'D':
1052 case 'r':
1053 case 'R':
1054 prec = 4;
1055 break;
b99bd4ef 1056
c19d1205
ZW
1057 case 'x':
1058 case 'X':
499ac353 1059 prec = 5;
c19d1205 1060 break;
b99bd4ef 1061
c19d1205
ZW
1062 case 'p':
1063 case 'P':
499ac353 1064 prec = 5;
c19d1205 1065 break;
a737bd4d 1066
c19d1205
ZW
1067 default:
1068 *sizeP = 0;
499ac353 1069 return _("Unrecognized or unsupported floating point constant");
c19d1205 1070 }
b99bd4ef 1071
c19d1205
ZW
1072 t = atof_ieee (input_line_pointer, type, words);
1073 if (t)
1074 input_line_pointer = t;
499ac353 1075 *sizeP = prec * sizeof (LITTLENUM_TYPE);
b99bd4ef 1076
c19d1205
ZW
1077 if (target_big_endian)
1078 {
1079 for (i = 0; i < prec; i++)
1080 {
499ac353
NC
1081 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1082 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1083 }
1084 }
1085 else
1086 {
e74cfd16 1087 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
1088 for (i = prec - 1; i >= 0; i--)
1089 {
499ac353
NC
1090 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1091 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1092 }
1093 else
1094 /* For a 4 byte float the order of elements in `words' is 1 0.
1095 For an 8 byte float the order is 1 0 3 2. */
1096 for (i = 0; i < prec; i += 2)
1097 {
499ac353
NC
1098 md_number_to_chars (litP, (valueT) words[i + 1],
1099 sizeof (LITTLENUM_TYPE));
1100 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1101 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1102 litP += 2 * sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1103 }
1104 }
b99bd4ef 1105
499ac353 1106 return NULL;
c19d1205 1107}
b99bd4ef 1108
c19d1205
ZW
1109/* We handle all bad expressions here, so that we can report the faulty
1110 instruction in the error message. */
1111void
91d6fa6a 1112md_operand (expressionS * exp)
c19d1205
ZW
1113{
1114 if (in_my_get_expression)
91d6fa6a 1115 exp->X_op = O_illegal;
b99bd4ef
NC
1116}
1117
c19d1205 1118/* Immediate values. */
b99bd4ef 1119
c19d1205
ZW
1120/* Generic immediate-value read function for use in directives.
1121 Accepts anything that 'expression' can fold to a constant.
1122 *val receives the number. */
1123#ifdef OBJ_ELF
1124static int
1125immediate_for_directive (int *val)
b99bd4ef 1126{
c19d1205
ZW
1127 expressionS exp;
1128 exp.X_op = O_illegal;
b99bd4ef 1129
c19d1205
ZW
1130 if (is_immediate_prefix (*input_line_pointer))
1131 {
1132 input_line_pointer++;
1133 expression (&exp);
1134 }
b99bd4ef 1135
c19d1205
ZW
1136 if (exp.X_op != O_constant)
1137 {
1138 as_bad (_("expected #constant"));
1139 ignore_rest_of_line ();
1140 return FAIL;
1141 }
1142 *val = exp.X_add_number;
1143 return SUCCESS;
b99bd4ef 1144}
c19d1205 1145#endif
b99bd4ef 1146
c19d1205 1147/* Register parsing. */
b99bd4ef 1148
c19d1205
ZW
1149/* Generic register parser. CCP points to what should be the
1150 beginning of a register name. If it is indeed a valid register
1151 name, advance CCP over it and return the reg_entry structure;
1152 otherwise return NULL. Does not issue diagnostics. */
1153
1154static struct reg_entry *
1155arm_reg_parse_multi (char **ccp)
b99bd4ef 1156{
c19d1205
ZW
1157 char *start = *ccp;
1158 char *p;
1159 struct reg_entry *reg;
b99bd4ef 1160
c19d1205
ZW
1161#ifdef REGISTER_PREFIX
1162 if (*start != REGISTER_PREFIX)
01cfc07f 1163 return NULL;
c19d1205
ZW
1164 start++;
1165#endif
1166#ifdef OPTIONAL_REGISTER_PREFIX
1167 if (*start == OPTIONAL_REGISTER_PREFIX)
1168 start++;
1169#endif
b99bd4ef 1170
c19d1205
ZW
1171 p = start;
1172 if (!ISALPHA (*p) || !is_name_beginner (*p))
1173 return NULL;
b99bd4ef 1174
c19d1205
ZW
1175 do
1176 p++;
1177 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1178
1179 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1180
1181 if (!reg)
1182 return NULL;
1183
1184 *ccp = p;
1185 return reg;
b99bd4ef
NC
1186}
1187
1188static int
dcbf9037
JB
1189arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
1190 enum arm_reg_type type)
b99bd4ef 1191{
c19d1205
ZW
1192 /* Alternative syntaxes are accepted for a few register classes. */
1193 switch (type)
1194 {
1195 case REG_TYPE_MVF:
1196 case REG_TYPE_MVD:
1197 case REG_TYPE_MVFX:
1198 case REG_TYPE_MVDX:
1199 /* Generic coprocessor register names are allowed for these. */
79134647 1200 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1201 return reg->number;
1202 break;
69b97547 1203
c19d1205
ZW
1204 case REG_TYPE_CP:
1205 /* For backward compatibility, a bare number is valid here. */
1206 {
1207 unsigned long processor = strtoul (start, ccp, 10);
1208 if (*ccp != start && processor <= 15)
1209 return processor;
1210 }
6057a28f 1211
c19d1205
ZW
1212 case REG_TYPE_MMXWC:
1213 /* WC includes WCG. ??? I'm not sure this is true for all
1214 instructions that take WC registers. */
79134647 1215 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1216 return reg->number;
6057a28f 1217 break;
c19d1205 1218
6057a28f 1219 default:
c19d1205 1220 break;
6057a28f
NC
1221 }
1222
dcbf9037
JB
1223 return FAIL;
1224}
1225
1226/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1227 return value is the register number or FAIL. */
1228
1229static int
1230arm_reg_parse (char **ccp, enum arm_reg_type type)
1231{
1232 char *start = *ccp;
1233 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1234 int ret;
1235
1236 /* Do not allow a scalar (reg+index) to parse as a register. */
1237 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1238 return FAIL;
1239
1240 if (reg && reg->type == type)
1241 return reg->number;
1242
1243 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1244 return ret;
1245
c19d1205
ZW
1246 *ccp = start;
1247 return FAIL;
1248}
69b97547 1249
dcbf9037
JB
1250/* Parse a Neon type specifier. *STR should point at the leading '.'
1251 character. Does no verification at this stage that the type fits the opcode
1252 properly. E.g.,
1253
1254 .i32.i32.s16
1255 .s32.f32
1256 .u16
1257
1258 Can all be legally parsed by this function.
1259
1260 Fills in neon_type struct pointer with parsed information, and updates STR
1261 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1262 type, FAIL if not. */
1263
1264static int
1265parse_neon_type (struct neon_type *type, char **str)
1266{
1267 char *ptr = *str;
1268
1269 if (type)
1270 type->elems = 0;
1271
1272 while (type->elems < NEON_MAX_TYPE_ELS)
1273 {
1274 enum neon_el_type thistype = NT_untyped;
1275 unsigned thissize = -1u;
1276
1277 if (*ptr != '.')
1278 break;
1279
1280 ptr++;
1281
1282 /* Just a size without an explicit type. */
1283 if (ISDIGIT (*ptr))
1284 goto parsesize;
1285
1286 switch (TOLOWER (*ptr))
1287 {
1288 case 'i': thistype = NT_integer; break;
1289 case 'f': thistype = NT_float; break;
1290 case 'p': thistype = NT_poly; break;
1291 case 's': thistype = NT_signed; break;
1292 case 'u': thistype = NT_unsigned; break;
037e8744
JB
1293 case 'd':
1294 thistype = NT_float;
1295 thissize = 64;
1296 ptr++;
1297 goto done;
dcbf9037
JB
1298 default:
1299 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1300 return FAIL;
1301 }
1302
1303 ptr++;
1304
1305 /* .f is an abbreviation for .f32. */
1306 if (thistype == NT_float && !ISDIGIT (*ptr))
1307 thissize = 32;
1308 else
1309 {
1310 parsesize:
1311 thissize = strtoul (ptr, &ptr, 10);
1312
1313 if (thissize != 8 && thissize != 16 && thissize != 32
1314 && thissize != 64)
1315 {
1316 as_bad (_("bad size %d in type specifier"), thissize);
1317 return FAIL;
1318 }
1319 }
1320
037e8744 1321 done:
dcbf9037
JB
1322 if (type)
1323 {
1324 type->el[type->elems].type = thistype;
1325 type->el[type->elems].size = thissize;
1326 type->elems++;
1327 }
1328 }
1329
1330 /* Empty/missing type is not a successful parse. */
1331 if (type->elems == 0)
1332 return FAIL;
1333
1334 *str = ptr;
1335
1336 return SUCCESS;
1337}
1338
1339/* Errors may be set multiple times during parsing or bit encoding
1340 (particularly in the Neon bits), but usually the earliest error which is set
1341 will be the most meaningful. Avoid overwriting it with later (cascading)
1342 errors by calling this function. */
1343
1344static void
1345first_error (const char *err)
1346{
1347 if (!inst.error)
1348 inst.error = err;
1349}
1350
1351/* Parse a single type, e.g. ".s32", leading period included. */
1352static int
1353parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1354{
1355 char *str = *ccp;
1356 struct neon_type optype;
1357
1358 if (*str == '.')
1359 {
1360 if (parse_neon_type (&optype, &str) == SUCCESS)
1361 {
1362 if (optype.elems == 1)
1363 *vectype = optype.el[0];
1364 else
1365 {
1366 first_error (_("only one type should be specified for operand"));
1367 return FAIL;
1368 }
1369 }
1370 else
1371 {
1372 first_error (_("vector type expected"));
1373 return FAIL;
1374 }
1375 }
1376 else
1377 return FAIL;
5f4273c7 1378
dcbf9037 1379 *ccp = str;
5f4273c7 1380
dcbf9037
JB
1381 return SUCCESS;
1382}
1383
1384/* Special meanings for indices (which have a range of 0-7), which will fit into
1385 a 4-bit integer. */
1386
1387#define NEON_ALL_LANES 15
1388#define NEON_INTERLEAVE_LANES 14
1389
1390/* Parse either a register or a scalar, with an optional type. Return the
1391 register number, and optionally fill in the actual type of the register
1392 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1393 type/index information in *TYPEINFO. */
1394
1395static int
1396parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
1397 enum arm_reg_type *rtype,
1398 struct neon_typed_alias *typeinfo)
1399{
1400 char *str = *ccp;
1401 struct reg_entry *reg = arm_reg_parse_multi (&str);
1402 struct neon_typed_alias atype;
1403 struct neon_type_el parsetype;
1404
1405 atype.defined = 0;
1406 atype.index = -1;
1407 atype.eltype.type = NT_invtype;
1408 atype.eltype.size = -1;
1409
1410 /* Try alternate syntax for some types of register. Note these are mutually
1411 exclusive with the Neon syntax extensions. */
1412 if (reg == NULL)
1413 {
1414 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1415 if (altreg != FAIL)
1416 *ccp = str;
1417 if (typeinfo)
1418 *typeinfo = atype;
1419 return altreg;
1420 }
1421
037e8744
JB
1422 /* Undo polymorphism when a set of register types may be accepted. */
1423 if ((type == REG_TYPE_NDQ
1424 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1425 || (type == REG_TYPE_VFSD
1426 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1427 || (type == REG_TYPE_NSDQ
1428 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
f512f76f
NC
1429 || reg->type == REG_TYPE_NQ))
1430 || (type == REG_TYPE_MMXWC
1431 && (reg->type == REG_TYPE_MMXWCG)))
21d799b5 1432 type = (enum arm_reg_type) reg->type;
dcbf9037
JB
1433
1434 if (type != reg->type)
1435 return FAIL;
1436
1437 if (reg->neon)
1438 atype = *reg->neon;
5f4273c7 1439
dcbf9037
JB
1440 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1441 {
1442 if ((atype.defined & NTA_HASTYPE) != 0)
1443 {
1444 first_error (_("can't redefine type for operand"));
1445 return FAIL;
1446 }
1447 atype.defined |= NTA_HASTYPE;
1448 atype.eltype = parsetype;
1449 }
5f4273c7 1450
dcbf9037
JB
1451 if (skip_past_char (&str, '[') == SUCCESS)
1452 {
1453 if (type != REG_TYPE_VFD)
1454 {
1455 first_error (_("only D registers may be indexed"));
1456 return FAIL;
1457 }
5f4273c7 1458
dcbf9037
JB
1459 if ((atype.defined & NTA_HASINDEX) != 0)
1460 {
1461 first_error (_("can't change index for operand"));
1462 return FAIL;
1463 }
1464
1465 atype.defined |= NTA_HASINDEX;
1466
1467 if (skip_past_char (&str, ']') == SUCCESS)
1468 atype.index = NEON_ALL_LANES;
1469 else
1470 {
1471 expressionS exp;
1472
1473 my_get_expression (&exp, &str, GE_NO_PREFIX);
1474
1475 if (exp.X_op != O_constant)
1476 {
1477 first_error (_("constant expression required"));
1478 return FAIL;
1479 }
1480
1481 if (skip_past_char (&str, ']') == FAIL)
1482 return FAIL;
1483
1484 atype.index = exp.X_add_number;
1485 }
1486 }
5f4273c7 1487
dcbf9037
JB
1488 if (typeinfo)
1489 *typeinfo = atype;
5f4273c7 1490
dcbf9037
JB
1491 if (rtype)
1492 *rtype = type;
5f4273c7 1493
dcbf9037 1494 *ccp = str;
5f4273c7 1495
dcbf9037
JB
1496 return reg->number;
1497}
1498
1499/* Like arm_reg_parse, but allow allow the following extra features:
1500 - If RTYPE is non-zero, return the (possibly restricted) type of the
1501 register (e.g. Neon double or quad reg when either has been requested).
1502 - If this is a Neon vector type with additional type information, fill
1503 in the struct pointed to by VECTYPE (if non-NULL).
5f4273c7 1504 This function will fault on encountering a scalar. */
dcbf9037
JB
1505
1506static int
1507arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
1508 enum arm_reg_type *rtype, struct neon_type_el *vectype)
1509{
1510 struct neon_typed_alias atype;
1511 char *str = *ccp;
1512 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1513
1514 if (reg == FAIL)
1515 return FAIL;
1516
0855e32b
NS
1517 /* Do not allow regname(... to parse as a register. */
1518 if (*str == '(')
1519 return FAIL;
1520
dcbf9037
JB
1521 /* Do not allow a scalar (reg+index) to parse as a register. */
1522 if ((atype.defined & NTA_HASINDEX) != 0)
1523 {
1524 first_error (_("register operand expected, but got scalar"));
1525 return FAIL;
1526 }
1527
1528 if (vectype)
1529 *vectype = atype.eltype;
1530
1531 *ccp = str;
1532
1533 return reg;
1534}
1535
1536#define NEON_SCALAR_REG(X) ((X) >> 4)
1537#define NEON_SCALAR_INDEX(X) ((X) & 15)
1538
5287ad62
JB
1539/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1540 have enough information to be able to do a good job bounds-checking. So, we
1541 just do easy checks here, and do further checks later. */
1542
1543static int
dcbf9037 1544parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1545{
dcbf9037 1546 int reg;
5287ad62 1547 char *str = *ccp;
dcbf9037 1548 struct neon_typed_alias atype;
5f4273c7 1549
dcbf9037 1550 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5f4273c7 1551
dcbf9037 1552 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62 1553 return FAIL;
5f4273c7 1554
dcbf9037 1555 if (atype.index == NEON_ALL_LANES)
5287ad62 1556 {
dcbf9037 1557 first_error (_("scalar must have an index"));
5287ad62
JB
1558 return FAIL;
1559 }
dcbf9037 1560 else if (atype.index >= 64 / elsize)
5287ad62 1561 {
dcbf9037 1562 first_error (_("scalar index out of range"));
5287ad62
JB
1563 return FAIL;
1564 }
5f4273c7 1565
dcbf9037
JB
1566 if (type)
1567 *type = atype.eltype;
5f4273c7 1568
5287ad62 1569 *ccp = str;
5f4273c7 1570
dcbf9037 1571 return reg * 16 + atype.index;
5287ad62
JB
1572}
1573
c19d1205 1574/* Parse an ARM register list. Returns the bitmask, or FAIL. */
e07e6e58 1575
c19d1205
ZW
1576static long
1577parse_reg_list (char ** strp)
1578{
1579 char * str = * strp;
1580 long range = 0;
1581 int another_range;
a737bd4d 1582
c19d1205
ZW
1583 /* We come back here if we get ranges concatenated by '+' or '|'. */
1584 do
6057a28f 1585 {
c19d1205 1586 another_range = 0;
a737bd4d 1587
c19d1205
ZW
1588 if (*str == '{')
1589 {
1590 int in_range = 0;
1591 int cur_reg = -1;
a737bd4d 1592
c19d1205
ZW
1593 str++;
1594 do
1595 {
1596 int reg;
6057a28f 1597
dcbf9037 1598 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1599 {
dcbf9037 1600 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1601 return FAIL;
1602 }
a737bd4d 1603
c19d1205
ZW
1604 if (in_range)
1605 {
1606 int i;
a737bd4d 1607
c19d1205
ZW
1608 if (reg <= cur_reg)
1609 {
dcbf9037 1610 first_error (_("bad range in register list"));
c19d1205
ZW
1611 return FAIL;
1612 }
40a18ebd 1613
c19d1205
ZW
1614 for (i = cur_reg + 1; i < reg; i++)
1615 {
1616 if (range & (1 << i))
1617 as_tsktsk
1618 (_("Warning: duplicated register (r%d) in register list"),
1619 i);
1620 else
1621 range |= 1 << i;
1622 }
1623 in_range = 0;
1624 }
a737bd4d 1625
c19d1205
ZW
1626 if (range & (1 << reg))
1627 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1628 reg);
1629 else if (reg <= cur_reg)
1630 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1631
c19d1205
ZW
1632 range |= 1 << reg;
1633 cur_reg = reg;
1634 }
1635 while (skip_past_comma (&str) != FAIL
1636 || (in_range = 1, *str++ == '-'));
1637 str--;
a737bd4d 1638
c19d1205
ZW
1639 if (*str++ != '}')
1640 {
dcbf9037 1641 first_error (_("missing `}'"));
c19d1205
ZW
1642 return FAIL;
1643 }
1644 }
1645 else
1646 {
91d6fa6a 1647 expressionS exp;
40a18ebd 1648
91d6fa6a 1649 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
c19d1205 1650 return FAIL;
40a18ebd 1651
91d6fa6a 1652 if (exp.X_op == O_constant)
c19d1205 1653 {
91d6fa6a
NC
1654 if (exp.X_add_number
1655 != (exp.X_add_number & 0x0000ffff))
c19d1205
ZW
1656 {
1657 inst.error = _("invalid register mask");
1658 return FAIL;
1659 }
a737bd4d 1660
91d6fa6a 1661 if ((range & exp.X_add_number) != 0)
c19d1205 1662 {
91d6fa6a 1663 int regno = range & exp.X_add_number;
a737bd4d 1664
c19d1205
ZW
1665 regno &= -regno;
1666 regno = (1 << regno) - 1;
1667 as_tsktsk
1668 (_("Warning: duplicated register (r%d) in register list"),
1669 regno);
1670 }
a737bd4d 1671
91d6fa6a 1672 range |= exp.X_add_number;
c19d1205
ZW
1673 }
1674 else
1675 {
1676 if (inst.reloc.type != 0)
1677 {
1678 inst.error = _("expression too complex");
1679 return FAIL;
1680 }
a737bd4d 1681
91d6fa6a 1682 memcpy (&inst.reloc.exp, &exp, sizeof (expressionS));
c19d1205
ZW
1683 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1684 inst.reloc.pc_rel = 0;
1685 }
1686 }
a737bd4d 1687
c19d1205
ZW
1688 if (*str == '|' || *str == '+')
1689 {
1690 str++;
1691 another_range = 1;
1692 }
a737bd4d 1693 }
c19d1205 1694 while (another_range);
a737bd4d 1695
c19d1205
ZW
1696 *strp = str;
1697 return range;
a737bd4d
NC
1698}
1699
5287ad62
JB
1700/* Types of registers in a list. */
1701
1702enum reg_list_els
1703{
1704 REGLIST_VFP_S,
1705 REGLIST_VFP_D,
1706 REGLIST_NEON_D
1707};
1708
c19d1205
ZW
1709/* Parse a VFP register list. If the string is invalid return FAIL.
1710 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1711 register. Parses registers of type ETYPE.
1712 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1713 - Q registers can be used to specify pairs of D registers
1714 - { } can be omitted from around a singleton register list
1715 FIXME: This is not implemented, as it would require backtracking in
1716 some cases, e.g.:
1717 vtbl.8 d3,d4,d5
1718 This could be done (the meaning isn't really ambiguous), but doesn't
1719 fit in well with the current parsing framework.
dcbf9037
JB
1720 - 32 D registers may be used (also true for VFPv3).
1721 FIXME: Types are ignored in these register lists, which is probably a
1722 bug. */
6057a28f 1723
c19d1205 1724static int
037e8744 1725parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1726{
037e8744 1727 char *str = *ccp;
c19d1205
ZW
1728 int base_reg;
1729 int new_base;
21d799b5 1730 enum arm_reg_type regtype = (enum arm_reg_type) 0;
5287ad62 1731 int max_regs = 0;
c19d1205
ZW
1732 int count = 0;
1733 int warned = 0;
1734 unsigned long mask = 0;
a737bd4d 1735 int i;
6057a28f 1736
037e8744 1737 if (*str != '{')
5287ad62
JB
1738 {
1739 inst.error = _("expecting {");
1740 return FAIL;
1741 }
6057a28f 1742
037e8744 1743 str++;
6057a28f 1744
5287ad62 1745 switch (etype)
c19d1205 1746 {
5287ad62 1747 case REGLIST_VFP_S:
c19d1205
ZW
1748 regtype = REG_TYPE_VFS;
1749 max_regs = 32;
5287ad62 1750 break;
5f4273c7 1751
5287ad62
JB
1752 case REGLIST_VFP_D:
1753 regtype = REG_TYPE_VFD;
b7fc2769 1754 break;
5f4273c7 1755
b7fc2769
JB
1756 case REGLIST_NEON_D:
1757 regtype = REG_TYPE_NDQ;
1758 break;
1759 }
1760
1761 if (etype != REGLIST_VFP_S)
1762 {
b1cc4aeb
PB
1763 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
1764 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
5287ad62
JB
1765 {
1766 max_regs = 32;
1767 if (thumb_mode)
1768 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
b1cc4aeb 1769 fpu_vfp_ext_d32);
5287ad62
JB
1770 else
1771 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
b1cc4aeb 1772 fpu_vfp_ext_d32);
5287ad62
JB
1773 }
1774 else
1775 max_regs = 16;
c19d1205 1776 }
6057a28f 1777
c19d1205 1778 base_reg = max_regs;
a737bd4d 1779
c19d1205
ZW
1780 do
1781 {
5287ad62 1782 int setmask = 1, addregs = 1;
dcbf9037 1783
037e8744 1784 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1785
c19d1205 1786 if (new_base == FAIL)
a737bd4d 1787 {
dcbf9037 1788 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1789 return FAIL;
1790 }
5f4273c7 1791
b7fc2769
JB
1792 if (new_base >= max_regs)
1793 {
1794 first_error (_("register out of range in list"));
1795 return FAIL;
1796 }
5f4273c7 1797
5287ad62
JB
1798 /* Note: a value of 2 * n is returned for the register Q<n>. */
1799 if (regtype == REG_TYPE_NQ)
1800 {
1801 setmask = 3;
1802 addregs = 2;
1803 }
1804
c19d1205
ZW
1805 if (new_base < base_reg)
1806 base_reg = new_base;
a737bd4d 1807
5287ad62 1808 if (mask & (setmask << new_base))
c19d1205 1809 {
dcbf9037 1810 first_error (_("invalid register list"));
c19d1205 1811 return FAIL;
a737bd4d 1812 }
a737bd4d 1813
c19d1205
ZW
1814 if ((mask >> new_base) != 0 && ! warned)
1815 {
1816 as_tsktsk (_("register list not in ascending order"));
1817 warned = 1;
1818 }
0bbf2aa4 1819
5287ad62
JB
1820 mask |= setmask << new_base;
1821 count += addregs;
0bbf2aa4 1822
037e8744 1823 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1824 {
1825 int high_range;
0bbf2aa4 1826
037e8744 1827 str++;
0bbf2aa4 1828
037e8744 1829 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
dcbf9037 1830 == FAIL)
c19d1205
ZW
1831 {
1832 inst.error = gettext (reg_expected_msgs[regtype]);
1833 return FAIL;
1834 }
0bbf2aa4 1835
b7fc2769
JB
1836 if (high_range >= max_regs)
1837 {
1838 first_error (_("register out of range in list"));
1839 return FAIL;
1840 }
1841
5287ad62
JB
1842 if (regtype == REG_TYPE_NQ)
1843 high_range = high_range + 1;
1844
c19d1205
ZW
1845 if (high_range <= new_base)
1846 {
1847 inst.error = _("register range not in ascending order");
1848 return FAIL;
1849 }
0bbf2aa4 1850
5287ad62 1851 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1852 {
5287ad62 1853 if (mask & (setmask << new_base))
0bbf2aa4 1854 {
c19d1205
ZW
1855 inst.error = _("invalid register list");
1856 return FAIL;
0bbf2aa4 1857 }
c19d1205 1858
5287ad62
JB
1859 mask |= setmask << new_base;
1860 count += addregs;
0bbf2aa4 1861 }
0bbf2aa4 1862 }
0bbf2aa4 1863 }
037e8744 1864 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1865
037e8744 1866 str++;
0bbf2aa4 1867
c19d1205
ZW
1868 /* Sanity check -- should have raised a parse error above. */
1869 if (count == 0 || count > max_regs)
1870 abort ();
1871
1872 *pbase = base_reg;
1873
1874 /* Final test -- the registers must be consecutive. */
1875 mask >>= base_reg;
1876 for (i = 0; i < count; i++)
1877 {
1878 if ((mask & (1u << i)) == 0)
1879 {
1880 inst.error = _("non-contiguous register range");
1881 return FAIL;
1882 }
1883 }
1884
037e8744
JB
1885 *ccp = str;
1886
c19d1205 1887 return count;
b99bd4ef
NC
1888}
1889
dcbf9037
JB
1890/* True if two alias types are the same. */
1891
c921be7d 1892static bfd_boolean
dcbf9037
JB
1893neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1894{
1895 if (!a && !b)
c921be7d 1896 return TRUE;
5f4273c7 1897
dcbf9037 1898 if (!a || !b)
c921be7d 1899 return FALSE;
dcbf9037
JB
1900
1901 if (a->defined != b->defined)
c921be7d 1902 return FALSE;
5f4273c7 1903
dcbf9037
JB
1904 if ((a->defined & NTA_HASTYPE) != 0
1905 && (a->eltype.type != b->eltype.type
1906 || a->eltype.size != b->eltype.size))
c921be7d 1907 return FALSE;
dcbf9037
JB
1908
1909 if ((a->defined & NTA_HASINDEX) != 0
1910 && (a->index != b->index))
c921be7d 1911 return FALSE;
5f4273c7 1912
c921be7d 1913 return TRUE;
dcbf9037
JB
1914}
1915
5287ad62
JB
1916/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1917 The base register is put in *PBASE.
dcbf9037 1918 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1919 the return value.
1920 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1921 Bits [6:5] encode the list length (minus one).
1922 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1923
5287ad62 1924#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1925#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1926#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1927
1928static int
dcbf9037
JB
1929parse_neon_el_struct_list (char **str, unsigned *pbase,
1930 struct neon_type_el *eltype)
5287ad62
JB
1931{
1932 char *ptr = *str;
1933 int base_reg = -1;
1934 int reg_incr = -1;
1935 int count = 0;
1936 int lane = -1;
1937 int leading_brace = 0;
1938 enum arm_reg_type rtype = REG_TYPE_NDQ;
20203fb9
NC
1939 const char *const incr_error = _("register stride must be 1 or 2");
1940 const char *const type_error = _("mismatched element/structure types in list");
dcbf9037 1941 struct neon_typed_alias firsttype;
5f4273c7 1942
5287ad62
JB
1943 if (skip_past_char (&ptr, '{') == SUCCESS)
1944 leading_brace = 1;
5f4273c7 1945
5287ad62
JB
1946 do
1947 {
dcbf9037
JB
1948 struct neon_typed_alias atype;
1949 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
1950
5287ad62
JB
1951 if (getreg == FAIL)
1952 {
dcbf9037 1953 first_error (_(reg_expected_msgs[rtype]));
5287ad62
JB
1954 return FAIL;
1955 }
5f4273c7 1956
5287ad62
JB
1957 if (base_reg == -1)
1958 {
1959 base_reg = getreg;
1960 if (rtype == REG_TYPE_NQ)
1961 {
1962 reg_incr = 1;
5287ad62 1963 }
dcbf9037 1964 firsttype = atype;
5287ad62
JB
1965 }
1966 else if (reg_incr == -1)
1967 {
1968 reg_incr = getreg - base_reg;
1969 if (reg_incr < 1 || reg_incr > 2)
1970 {
dcbf9037 1971 first_error (_(incr_error));
5287ad62
JB
1972 return FAIL;
1973 }
1974 }
1975 else if (getreg != base_reg + reg_incr * count)
1976 {
dcbf9037
JB
1977 first_error (_(incr_error));
1978 return FAIL;
1979 }
1980
c921be7d 1981 if (! neon_alias_types_same (&atype, &firsttype))
dcbf9037
JB
1982 {
1983 first_error (_(type_error));
5287ad62
JB
1984 return FAIL;
1985 }
5f4273c7 1986
5287ad62
JB
1987 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
1988 modes. */
1989 if (ptr[0] == '-')
1990 {
dcbf9037 1991 struct neon_typed_alias htype;
5287ad62
JB
1992 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
1993 if (lane == -1)
1994 lane = NEON_INTERLEAVE_LANES;
1995 else if (lane != NEON_INTERLEAVE_LANES)
1996 {
dcbf9037 1997 first_error (_(type_error));
5287ad62
JB
1998 return FAIL;
1999 }
2000 if (reg_incr == -1)
2001 reg_incr = 1;
2002 else if (reg_incr != 1)
2003 {
dcbf9037 2004 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
5287ad62
JB
2005 return FAIL;
2006 }
2007 ptr++;
dcbf9037 2008 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
5287ad62
JB
2009 if (hireg == FAIL)
2010 {
dcbf9037
JB
2011 first_error (_(reg_expected_msgs[rtype]));
2012 return FAIL;
2013 }
c921be7d 2014 if (! neon_alias_types_same (&htype, &firsttype))
dcbf9037
JB
2015 {
2016 first_error (_(type_error));
5287ad62
JB
2017 return FAIL;
2018 }
2019 count += hireg + dregs - getreg;
2020 continue;
2021 }
5f4273c7 2022
5287ad62
JB
2023 /* If we're using Q registers, we can't use [] or [n] syntax. */
2024 if (rtype == REG_TYPE_NQ)
2025 {
2026 count += 2;
2027 continue;
2028 }
5f4273c7 2029
dcbf9037 2030 if ((atype.defined & NTA_HASINDEX) != 0)
5287ad62 2031 {
dcbf9037
JB
2032 if (lane == -1)
2033 lane = atype.index;
2034 else if (lane != atype.index)
5287ad62 2035 {
dcbf9037
JB
2036 first_error (_(type_error));
2037 return FAIL;
5287ad62
JB
2038 }
2039 }
2040 else if (lane == -1)
2041 lane = NEON_INTERLEAVE_LANES;
2042 else if (lane != NEON_INTERLEAVE_LANES)
2043 {
dcbf9037 2044 first_error (_(type_error));
5287ad62
JB
2045 return FAIL;
2046 }
2047 count++;
2048 }
2049 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
5f4273c7 2050
5287ad62
JB
2051 /* No lane set by [x]. We must be interleaving structures. */
2052 if (lane == -1)
2053 lane = NEON_INTERLEAVE_LANES;
5f4273c7 2054
5287ad62
JB
2055 /* Sanity check. */
2056 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
2057 || (count > 1 && reg_incr == -1))
2058 {
dcbf9037 2059 first_error (_("error parsing element/structure list"));
5287ad62
JB
2060 return FAIL;
2061 }
2062
2063 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2064 {
dcbf9037 2065 first_error (_("expected }"));
5287ad62
JB
2066 return FAIL;
2067 }
5f4273c7 2068
5287ad62
JB
2069 if (reg_incr == -1)
2070 reg_incr = 1;
2071
dcbf9037
JB
2072 if (eltype)
2073 *eltype = firsttype.eltype;
2074
5287ad62
JB
2075 *pbase = base_reg;
2076 *str = ptr;
5f4273c7 2077
5287ad62
JB
2078 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2079}
2080
c19d1205
ZW
2081/* Parse an explicit relocation suffix on an expression. This is
2082 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2083 arm_reloc_hsh contains no entries, so this function can only
2084 succeed if there is no () after the word. Returns -1 on error,
2085 BFD_RELOC_UNUSED if there wasn't any suffix. */
3da1d841 2086
c19d1205
ZW
2087static int
2088parse_reloc (char **str)
b99bd4ef 2089{
c19d1205
ZW
2090 struct reloc_entry *r;
2091 char *p, *q;
b99bd4ef 2092
c19d1205
ZW
2093 if (**str != '(')
2094 return BFD_RELOC_UNUSED;
b99bd4ef 2095
c19d1205
ZW
2096 p = *str + 1;
2097 q = p;
2098
2099 while (*q && *q != ')' && *q != ',')
2100 q++;
2101 if (*q != ')')
2102 return -1;
2103
21d799b5
NC
2104 if ((r = (struct reloc_entry *)
2105 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
c19d1205
ZW
2106 return -1;
2107
2108 *str = q + 1;
2109 return r->reloc;
b99bd4ef
NC
2110}
2111
c19d1205
ZW
2112/* Directives: register aliases. */
2113
dcbf9037 2114static struct reg_entry *
90ec0d68 2115insert_reg_alias (char *str, unsigned number, int type)
b99bd4ef 2116{
d3ce72d0 2117 struct reg_entry *new_reg;
c19d1205 2118 const char *name;
b99bd4ef 2119
d3ce72d0 2120 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
c19d1205 2121 {
d3ce72d0 2122 if (new_reg->builtin)
c19d1205 2123 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 2124
c19d1205
ZW
2125 /* Only warn about a redefinition if it's not defined as the
2126 same register. */
d3ce72d0 2127 else if (new_reg->number != number || new_reg->type != type)
c19d1205 2128 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 2129
d929913e 2130 return NULL;
c19d1205 2131 }
b99bd4ef 2132
c19d1205 2133 name = xstrdup (str);
d3ce72d0 2134 new_reg = (struct reg_entry *) xmalloc (sizeof (struct reg_entry));
b99bd4ef 2135
d3ce72d0
NC
2136 new_reg->name = name;
2137 new_reg->number = number;
2138 new_reg->type = type;
2139 new_reg->builtin = FALSE;
2140 new_reg->neon = NULL;
b99bd4ef 2141
d3ce72d0 2142 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
c19d1205 2143 abort ();
5f4273c7 2144
d3ce72d0 2145 return new_reg;
dcbf9037
JB
2146}
2147
2148static void
2149insert_neon_reg_alias (char *str, int number, int type,
2150 struct neon_typed_alias *atype)
2151{
2152 struct reg_entry *reg = insert_reg_alias (str, number, type);
5f4273c7 2153
dcbf9037
JB
2154 if (!reg)
2155 {
2156 first_error (_("attempt to redefine typed alias"));
2157 return;
2158 }
5f4273c7 2159
dcbf9037
JB
2160 if (atype)
2161 {
21d799b5
NC
2162 reg->neon = (struct neon_typed_alias *)
2163 xmalloc (sizeof (struct neon_typed_alias));
dcbf9037
JB
2164 *reg->neon = *atype;
2165 }
c19d1205 2166}
b99bd4ef 2167
c19d1205 2168/* Look for the .req directive. This is of the form:
b99bd4ef 2169
c19d1205 2170 new_register_name .req existing_register_name
b99bd4ef 2171
c19d1205 2172 If we find one, or if it looks sufficiently like one that we want to
d929913e 2173 handle any error here, return TRUE. Otherwise return FALSE. */
b99bd4ef 2174
d929913e 2175static bfd_boolean
c19d1205
ZW
2176create_register_alias (char * newname, char *p)
2177{
2178 struct reg_entry *old;
2179 char *oldname, *nbuf;
2180 size_t nlen;
b99bd4ef 2181
c19d1205
ZW
2182 /* The input scrubber ensures that whitespace after the mnemonic is
2183 collapsed to single spaces. */
2184 oldname = p;
2185 if (strncmp (oldname, " .req ", 6) != 0)
d929913e 2186 return FALSE;
b99bd4ef 2187
c19d1205
ZW
2188 oldname += 6;
2189 if (*oldname == '\0')
d929913e 2190 return FALSE;
b99bd4ef 2191
21d799b5 2192 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
c19d1205 2193 if (!old)
b99bd4ef 2194 {
c19d1205 2195 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
d929913e 2196 return TRUE;
b99bd4ef
NC
2197 }
2198
c19d1205
ZW
2199 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2200 the desired alias name, and p points to its end. If not, then
2201 the desired alias name is in the global original_case_string. */
2202#ifdef TC_CASE_SENSITIVE
2203 nlen = p - newname;
2204#else
2205 newname = original_case_string;
2206 nlen = strlen (newname);
2207#endif
b99bd4ef 2208
21d799b5 2209 nbuf = (char *) alloca (nlen + 1);
c19d1205
ZW
2210 memcpy (nbuf, newname, nlen);
2211 nbuf[nlen] = '\0';
b99bd4ef 2212
c19d1205
ZW
2213 /* Create aliases under the new name as stated; an all-lowercase
2214 version of the new name; and an all-uppercase version of the new
2215 name. */
d929913e
NC
2216 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2217 {
2218 for (p = nbuf; *p; p++)
2219 *p = TOUPPER (*p);
c19d1205 2220
d929913e
NC
2221 if (strncmp (nbuf, newname, nlen))
2222 {
2223 /* If this attempt to create an additional alias fails, do not bother
2224 trying to create the all-lower case alias. We will fail and issue
2225 a second, duplicate error message. This situation arises when the
2226 programmer does something like:
2227 foo .req r0
2228 Foo .req r1
2229 The second .req creates the "Foo" alias but then fails to create
5f4273c7 2230 the artificial FOO alias because it has already been created by the
d929913e
NC
2231 first .req. */
2232 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
2233 return TRUE;
2234 }
c19d1205 2235
d929913e
NC
2236 for (p = nbuf; *p; p++)
2237 *p = TOLOWER (*p);
c19d1205 2238
d929913e
NC
2239 if (strncmp (nbuf, newname, nlen))
2240 insert_reg_alias (nbuf, old->number, old->type);
2241 }
c19d1205 2242
d929913e 2243 return TRUE;
b99bd4ef
NC
2244}
2245
dcbf9037
JB
2246/* Create a Neon typed/indexed register alias using directives, e.g.:
2247 X .dn d5.s32[1]
2248 Y .qn 6.s16
2249 Z .dn d7
2250 T .dn Z[0]
2251 These typed registers can be used instead of the types specified after the
2252 Neon mnemonic, so long as all operands given have types. Types can also be
2253 specified directly, e.g.:
5f4273c7 2254 vadd d0.s32, d1.s32, d2.s32 */
dcbf9037 2255
c921be7d 2256static bfd_boolean
dcbf9037
JB
2257create_neon_reg_alias (char *newname, char *p)
2258{
2259 enum arm_reg_type basetype;
2260 struct reg_entry *basereg;
2261 struct reg_entry mybasereg;
2262 struct neon_type ntype;
2263 struct neon_typed_alias typeinfo;
12d6b0b7 2264 char *namebuf, *nameend ATTRIBUTE_UNUSED;
dcbf9037 2265 int namelen;
5f4273c7 2266
dcbf9037
JB
2267 typeinfo.defined = 0;
2268 typeinfo.eltype.type = NT_invtype;
2269 typeinfo.eltype.size = -1;
2270 typeinfo.index = -1;
5f4273c7 2271
dcbf9037 2272 nameend = p;
5f4273c7 2273
dcbf9037
JB
2274 if (strncmp (p, " .dn ", 5) == 0)
2275 basetype = REG_TYPE_VFD;
2276 else if (strncmp (p, " .qn ", 5) == 0)
2277 basetype = REG_TYPE_NQ;
2278 else
c921be7d 2279 return FALSE;
5f4273c7 2280
dcbf9037 2281 p += 5;
5f4273c7 2282
dcbf9037 2283 if (*p == '\0')
c921be7d 2284 return FALSE;
5f4273c7 2285
dcbf9037
JB
2286 basereg = arm_reg_parse_multi (&p);
2287
2288 if (basereg && basereg->type != basetype)
2289 {
2290 as_bad (_("bad type for register"));
c921be7d 2291 return FALSE;
dcbf9037
JB
2292 }
2293
2294 if (basereg == NULL)
2295 {
2296 expressionS exp;
2297 /* Try parsing as an integer. */
2298 my_get_expression (&exp, &p, GE_NO_PREFIX);
2299 if (exp.X_op != O_constant)
2300 {
2301 as_bad (_("expression must be constant"));
c921be7d 2302 return FALSE;
dcbf9037
JB
2303 }
2304 basereg = &mybasereg;
2305 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
2306 : exp.X_add_number;
2307 basereg->neon = 0;
2308 }
2309
2310 if (basereg->neon)
2311 typeinfo = *basereg->neon;
2312
2313 if (parse_neon_type (&ntype, &p) == SUCCESS)
2314 {
2315 /* We got a type. */
2316 if (typeinfo.defined & NTA_HASTYPE)
2317 {
2318 as_bad (_("can't redefine the type of a register alias"));
c921be7d 2319 return FALSE;
dcbf9037 2320 }
5f4273c7 2321
dcbf9037
JB
2322 typeinfo.defined |= NTA_HASTYPE;
2323 if (ntype.elems != 1)
2324 {
2325 as_bad (_("you must specify a single type only"));
c921be7d 2326 return FALSE;
dcbf9037
JB
2327 }
2328 typeinfo.eltype = ntype.el[0];
2329 }
5f4273c7 2330
dcbf9037
JB
2331 if (skip_past_char (&p, '[') == SUCCESS)
2332 {
2333 expressionS exp;
2334 /* We got a scalar index. */
5f4273c7 2335
dcbf9037
JB
2336 if (typeinfo.defined & NTA_HASINDEX)
2337 {
2338 as_bad (_("can't redefine the index of a scalar alias"));
c921be7d 2339 return FALSE;
dcbf9037 2340 }
5f4273c7 2341
dcbf9037 2342 my_get_expression (&exp, &p, GE_NO_PREFIX);
5f4273c7 2343
dcbf9037
JB
2344 if (exp.X_op != O_constant)
2345 {
2346 as_bad (_("scalar index must be constant"));
c921be7d 2347 return FALSE;
dcbf9037 2348 }
5f4273c7 2349
dcbf9037
JB
2350 typeinfo.defined |= NTA_HASINDEX;
2351 typeinfo.index = exp.X_add_number;
5f4273c7 2352
dcbf9037
JB
2353 if (skip_past_char (&p, ']') == FAIL)
2354 {
2355 as_bad (_("expecting ]"));
c921be7d 2356 return FALSE;
dcbf9037
JB
2357 }
2358 }
2359
15735687
NS
2360 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2361 the desired alias name, and p points to its end. If not, then
2362 the desired alias name is in the global original_case_string. */
2363#ifdef TC_CASE_SENSITIVE
dcbf9037 2364 namelen = nameend - newname;
15735687
NS
2365#else
2366 newname = original_case_string;
2367 namelen = strlen (newname);
2368#endif
2369
21d799b5 2370 namebuf = (char *) alloca (namelen + 1);
dcbf9037
JB
2371 strncpy (namebuf, newname, namelen);
2372 namebuf[namelen] = '\0';
5f4273c7 2373
dcbf9037
JB
2374 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2375 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2376
dcbf9037
JB
2377 /* Insert name in all uppercase. */
2378 for (p = namebuf; *p; p++)
2379 *p = TOUPPER (*p);
5f4273c7 2380
dcbf9037
JB
2381 if (strncmp (namebuf, newname, namelen))
2382 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2383 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2384
dcbf9037
JB
2385 /* Insert name in all lowercase. */
2386 for (p = namebuf; *p; p++)
2387 *p = TOLOWER (*p);
5f4273c7 2388
dcbf9037
JB
2389 if (strncmp (namebuf, newname, namelen))
2390 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2391 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2392
c921be7d 2393 return TRUE;
dcbf9037
JB
2394}
2395
c19d1205
ZW
2396/* Should never be called, as .req goes between the alias and the
2397 register name, not at the beginning of the line. */
c921be7d 2398
b99bd4ef 2399static void
c19d1205 2400s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2401{
c19d1205
ZW
2402 as_bad (_("invalid syntax for .req directive"));
2403}
b99bd4ef 2404
dcbf9037
JB
2405static void
2406s_dn (int a ATTRIBUTE_UNUSED)
2407{
2408 as_bad (_("invalid syntax for .dn directive"));
2409}
2410
2411static void
2412s_qn (int a ATTRIBUTE_UNUSED)
2413{
2414 as_bad (_("invalid syntax for .qn directive"));
2415}
2416
c19d1205
ZW
2417/* The .unreq directive deletes an alias which was previously defined
2418 by .req. For example:
b99bd4ef 2419
c19d1205
ZW
2420 my_alias .req r11
2421 .unreq my_alias */
b99bd4ef
NC
2422
2423static void
c19d1205 2424s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2425{
c19d1205
ZW
2426 char * name;
2427 char saved_char;
b99bd4ef 2428
c19d1205
ZW
2429 name = input_line_pointer;
2430
2431 while (*input_line_pointer != 0
2432 && *input_line_pointer != ' '
2433 && *input_line_pointer != '\n')
2434 ++input_line_pointer;
2435
2436 saved_char = *input_line_pointer;
2437 *input_line_pointer = 0;
2438
2439 if (!*name)
2440 as_bad (_("invalid syntax for .unreq directive"));
2441 else
2442 {
21d799b5
NC
2443 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
2444 name);
c19d1205
ZW
2445
2446 if (!reg)
2447 as_bad (_("unknown register alias '%s'"), name);
2448 else if (reg->builtin)
a1727c1a 2449 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
c19d1205
ZW
2450 name);
2451 else
2452 {
d929913e
NC
2453 char * p;
2454 char * nbuf;
2455
db0bc284 2456 hash_delete (arm_reg_hsh, name, FALSE);
c19d1205 2457 free ((char *) reg->name);
dcbf9037
JB
2458 if (reg->neon)
2459 free (reg->neon);
c19d1205 2460 free (reg);
d929913e
NC
2461
2462 /* Also locate the all upper case and all lower case versions.
2463 Do not complain if we cannot find one or the other as it
2464 was probably deleted above. */
5f4273c7 2465
d929913e
NC
2466 nbuf = strdup (name);
2467 for (p = nbuf; *p; p++)
2468 *p = TOUPPER (*p);
21d799b5 2469 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2470 if (reg)
2471 {
db0bc284 2472 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2473 free ((char *) reg->name);
2474 if (reg->neon)
2475 free (reg->neon);
2476 free (reg);
2477 }
2478
2479 for (p = nbuf; *p; p++)
2480 *p = TOLOWER (*p);
21d799b5 2481 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2482 if (reg)
2483 {
db0bc284 2484 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2485 free ((char *) reg->name);
2486 if (reg->neon)
2487 free (reg->neon);
2488 free (reg);
2489 }
2490
2491 free (nbuf);
c19d1205
ZW
2492 }
2493 }
b99bd4ef 2494
c19d1205 2495 *input_line_pointer = saved_char;
b99bd4ef
NC
2496 demand_empty_rest_of_line ();
2497}
2498
c19d1205
ZW
2499/* Directives: Instruction set selection. */
2500
2501#ifdef OBJ_ELF
2502/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2503 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2504 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2505 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2506
cd000bff
DJ
2507/* Create a new mapping symbol for the transition to STATE. */
2508
2509static void
2510make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
b99bd4ef 2511{
a737bd4d 2512 symbolS * symbolP;
c19d1205
ZW
2513 const char * symname;
2514 int type;
b99bd4ef 2515
c19d1205 2516 switch (state)
b99bd4ef 2517 {
c19d1205
ZW
2518 case MAP_DATA:
2519 symname = "$d";
2520 type = BSF_NO_FLAGS;
2521 break;
2522 case MAP_ARM:
2523 symname = "$a";
2524 type = BSF_NO_FLAGS;
2525 break;
2526 case MAP_THUMB:
2527 symname = "$t";
2528 type = BSF_NO_FLAGS;
2529 break;
c19d1205
ZW
2530 default:
2531 abort ();
2532 }
2533
cd000bff 2534 symbolP = symbol_new (symname, now_seg, value, frag);
c19d1205
ZW
2535 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2536
2537 switch (state)
2538 {
2539 case MAP_ARM:
2540 THUMB_SET_FUNC (symbolP, 0);
2541 ARM_SET_THUMB (symbolP, 0);
2542 ARM_SET_INTERWORK (symbolP, support_interwork);
2543 break;
2544
2545 case MAP_THUMB:
2546 THUMB_SET_FUNC (symbolP, 1);
2547 ARM_SET_THUMB (symbolP, 1);
2548 ARM_SET_INTERWORK (symbolP, support_interwork);
2549 break;
2550
2551 case MAP_DATA:
2552 default:
cd000bff
DJ
2553 break;
2554 }
2555
2556 /* Save the mapping symbols for future reference. Also check that
2557 we do not place two mapping symbols at the same offset within a
2558 frag. We'll handle overlap between frags in
2de7820f
JZ
2559 check_mapping_symbols.
2560
2561 If .fill or other data filling directive generates zero sized data,
2562 the mapping symbol for the following code will have the same value
2563 as the one generated for the data filling directive. In this case,
2564 we replace the old symbol with the new one at the same address. */
cd000bff
DJ
2565 if (value == 0)
2566 {
2de7820f
JZ
2567 if (frag->tc_frag_data.first_map != NULL)
2568 {
2569 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2570 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2571 }
cd000bff
DJ
2572 frag->tc_frag_data.first_map = symbolP;
2573 }
2574 if (frag->tc_frag_data.last_map != NULL)
0f020cef
JZ
2575 {
2576 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
0f020cef
JZ
2577 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2578 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2579 }
cd000bff
DJ
2580 frag->tc_frag_data.last_map = symbolP;
2581}
2582
2583/* We must sometimes convert a region marked as code to data during
2584 code alignment, if an odd number of bytes have to be padded. The
2585 code mapping symbol is pushed to an aligned address. */
2586
2587static void
2588insert_data_mapping_symbol (enum mstate state,
2589 valueT value, fragS *frag, offsetT bytes)
2590{
2591 /* If there was already a mapping symbol, remove it. */
2592 if (frag->tc_frag_data.last_map != NULL
2593 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2594 {
2595 symbolS *symp = frag->tc_frag_data.last_map;
2596
2597 if (value == 0)
2598 {
2599 know (frag->tc_frag_data.first_map == symp);
2600 frag->tc_frag_data.first_map = NULL;
2601 }
2602 frag->tc_frag_data.last_map = NULL;
2603 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
c19d1205 2604 }
cd000bff
DJ
2605
2606 make_mapping_symbol (MAP_DATA, value, frag);
2607 make_mapping_symbol (state, value + bytes, frag);
2608}
2609
2610static void mapping_state_2 (enum mstate state, int max_chars);
2611
2612/* Set the mapping state to STATE. Only call this when about to
2613 emit some STATE bytes to the file. */
2614
2615void
2616mapping_state (enum mstate state)
2617{
940b5ce0
DJ
2618 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2619
cd000bff
DJ
2620#define TRANSITION(from, to) (mapstate == (from) && state == (to))
2621
2622 if (mapstate == state)
2623 /* The mapping symbol has already been emitted.
2624 There is nothing else to do. */
2625 return;
49c62a33
NC
2626
2627 if (state == MAP_ARM || state == MAP_THUMB)
2628 /* PR gas/12931
2629 All ARM instructions require 4-byte alignment.
2630 (Almost) all Thumb instructions require 2-byte alignment.
2631
2632 When emitting instructions into any section, mark the section
2633 appropriately.
2634
2635 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2636 but themselves require 2-byte alignment; this applies to some
2637 PC- relative forms. However, these cases will invovle implicit
2638 literal pool generation or an explicit .align >=2, both of
2639 which will cause the section to me marked with sufficient
2640 alignment. Thus, we don't handle those cases here. */
2641 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2642
2643 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
cd000bff
DJ
2644 /* This case will be evaluated later in the next else. */
2645 return;
2646 else if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
2647 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
2648 {
2649 /* Only add the symbol if the offset is > 0:
2650 if we're at the first frag, check it's size > 0;
2651 if we're not at the first frag, then for sure
2652 the offset is > 0. */
2653 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
2654 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
2655
2656 if (add_symbol)
2657 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
2658 }
2659
2660 mapping_state_2 (state, 0);
2661#undef TRANSITION
2662}
2663
2664/* Same as mapping_state, but MAX_CHARS bytes have already been
2665 allocated. Put the mapping symbol that far back. */
2666
2667static void
2668mapping_state_2 (enum mstate state, int max_chars)
2669{
940b5ce0
DJ
2670 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2671
2672 if (!SEG_NORMAL (now_seg))
2673 return;
2674
cd000bff
DJ
2675 if (mapstate == state)
2676 /* The mapping symbol has already been emitted.
2677 There is nothing else to do. */
2678 return;
2679
cd000bff
DJ
2680 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2681 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
c19d1205
ZW
2682}
2683#else
d3106081
NS
2684#define mapping_state(x) ((void)0)
2685#define mapping_state_2(x, y) ((void)0)
c19d1205
ZW
2686#endif
2687
2688/* Find the real, Thumb encoded start of a Thumb function. */
2689
4343666d 2690#ifdef OBJ_COFF
c19d1205
ZW
2691static symbolS *
2692find_real_start (symbolS * symbolP)
2693{
2694 char * real_start;
2695 const char * name = S_GET_NAME (symbolP);
2696 symbolS * new_target;
2697
2698 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2699#define STUB_NAME ".real_start_of"
2700
2701 if (name == NULL)
2702 abort ();
2703
37f6032b
ZW
2704 /* The compiler may generate BL instructions to local labels because
2705 it needs to perform a branch to a far away location. These labels
2706 do not have a corresponding ".real_start_of" label. We check
2707 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2708 the ".real_start_of" convention for nonlocal branches. */
2709 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2710 return symbolP;
2711
37f6032b 2712 real_start = ACONCAT ((STUB_NAME, name, NULL));
c19d1205
ZW
2713 new_target = symbol_find (real_start);
2714
2715 if (new_target == NULL)
2716 {
bd3ba5d1 2717 as_warn (_("Failed to find real start of function: %s\n"), name);
c19d1205
ZW
2718 new_target = symbolP;
2719 }
2720
c19d1205
ZW
2721 return new_target;
2722}
4343666d 2723#endif
c19d1205
ZW
2724
2725static void
2726opcode_select (int width)
2727{
2728 switch (width)
2729 {
2730 case 16:
2731 if (! thumb_mode)
2732 {
e74cfd16 2733 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2734 as_bad (_("selected processor does not support THUMB opcodes"));
2735
2736 thumb_mode = 1;
2737 /* No need to force the alignment, since we will have been
2738 coming from ARM mode, which is word-aligned. */
2739 record_alignment (now_seg, 1);
2740 }
c19d1205
ZW
2741 break;
2742
2743 case 32:
2744 if (thumb_mode)
2745 {
e74cfd16 2746 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2747 as_bad (_("selected processor does not support ARM opcodes"));
2748
2749 thumb_mode = 0;
2750
2751 if (!need_pass_2)
2752 frag_align (2, 0, 0);
2753
2754 record_alignment (now_seg, 1);
2755 }
c19d1205
ZW
2756 break;
2757
2758 default:
2759 as_bad (_("invalid instruction size selected (%d)"), width);
2760 }
2761}
2762
2763static void
2764s_arm (int ignore ATTRIBUTE_UNUSED)
2765{
2766 opcode_select (32);
2767 demand_empty_rest_of_line ();
2768}
2769
2770static void
2771s_thumb (int ignore ATTRIBUTE_UNUSED)
2772{
2773 opcode_select (16);
2774 demand_empty_rest_of_line ();
2775}
2776
2777static void
2778s_code (int unused ATTRIBUTE_UNUSED)
2779{
2780 int temp;
2781
2782 temp = get_absolute_expression ();
2783 switch (temp)
2784 {
2785 case 16:
2786 case 32:
2787 opcode_select (temp);
2788 break;
2789
2790 default:
2791 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2792 }
2793}
2794
2795static void
2796s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2797{
2798 /* If we are not already in thumb mode go into it, EVEN if
2799 the target processor does not support thumb instructions.
2800 This is used by gcc/config/arm/lib1funcs.asm for example
2801 to compile interworking support functions even if the
2802 target processor should not support interworking. */
2803 if (! thumb_mode)
2804 {
2805 thumb_mode = 2;
2806 record_alignment (now_seg, 1);
2807 }
2808
2809 demand_empty_rest_of_line ();
2810}
2811
2812static void
2813s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2814{
2815 s_thumb (0);
2816
2817 /* The following label is the name/address of the start of a Thumb function.
2818 We need to know this for the interworking support. */
2819 label_is_thumb_function_name = TRUE;
2820}
2821
2822/* Perform a .set directive, but also mark the alias as
2823 being a thumb function. */
2824
2825static void
2826s_thumb_set (int equiv)
2827{
2828 /* XXX the following is a duplicate of the code for s_set() in read.c
2829 We cannot just call that code as we need to get at the symbol that
2830 is created. */
2831 char * name;
2832 char delim;
2833 char * end_name;
2834 symbolS * symbolP;
2835
2836 /* Especial apologies for the random logic:
2837 This just grew, and could be parsed much more simply!
2838 Dean - in haste. */
2839 name = input_line_pointer;
2840 delim = get_symbol_end ();
2841 end_name = input_line_pointer;
2842 *end_name = delim;
2843
2844 if (*input_line_pointer != ',')
2845 {
2846 *end_name = 0;
2847 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2848 *end_name = delim;
2849 ignore_rest_of_line ();
2850 return;
2851 }
2852
2853 input_line_pointer++;
2854 *end_name = 0;
2855
2856 if (name[0] == '.' && name[1] == '\0')
2857 {
2858 /* XXX - this should not happen to .thumb_set. */
2859 abort ();
2860 }
2861
2862 if ((symbolP = symbol_find (name)) == NULL
2863 && (symbolP = md_undefined_symbol (name)) == NULL)
2864 {
2865#ifndef NO_LISTING
2866 /* When doing symbol listings, play games with dummy fragments living
2867 outside the normal fragment chain to record the file and line info
c19d1205 2868 for this symbol. */
b99bd4ef
NC
2869 if (listing & LISTING_SYMBOLS)
2870 {
2871 extern struct list_info_struct * listing_tail;
21d799b5 2872 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
b99bd4ef
NC
2873
2874 memset (dummy_frag, 0, sizeof (fragS));
2875 dummy_frag->fr_type = rs_fill;
2876 dummy_frag->line = listing_tail;
2877 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2878 dummy_frag->fr_symbol = symbolP;
2879 }
2880 else
2881#endif
2882 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2883
2884#ifdef OBJ_COFF
2885 /* "set" symbols are local unless otherwise specified. */
2886 SF_SET_LOCAL (symbolP);
2887#endif /* OBJ_COFF */
2888 } /* Make a new symbol. */
2889
2890 symbol_table_insert (symbolP);
2891
2892 * end_name = delim;
2893
2894 if (equiv
2895 && S_IS_DEFINED (symbolP)
2896 && S_GET_SEGMENT (symbolP) != reg_section)
2897 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2898
2899 pseudo_set (symbolP);
2900
2901 demand_empty_rest_of_line ();
2902
c19d1205 2903 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2904
2905 THUMB_SET_FUNC (symbolP, 1);
2906 ARM_SET_THUMB (symbolP, 1);
2907#if defined OBJ_ELF || defined OBJ_COFF
2908 ARM_SET_INTERWORK (symbolP, support_interwork);
2909#endif
2910}
2911
c19d1205 2912/* Directives: Mode selection. */
b99bd4ef 2913
c19d1205
ZW
2914/* .syntax [unified|divided] - choose the new unified syntax
2915 (same for Arm and Thumb encoding, modulo slight differences in what
2916 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2917static void
c19d1205 2918s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2919{
c19d1205
ZW
2920 char *name, delim;
2921
2922 name = input_line_pointer;
2923 delim = get_symbol_end ();
2924
2925 if (!strcasecmp (name, "unified"))
2926 unified_syntax = TRUE;
2927 else if (!strcasecmp (name, "divided"))
2928 unified_syntax = FALSE;
2929 else
2930 {
2931 as_bad (_("unrecognized syntax mode \"%s\""), name);
2932 return;
2933 }
2934 *input_line_pointer = delim;
b99bd4ef
NC
2935 demand_empty_rest_of_line ();
2936}
2937
c19d1205
ZW
2938/* Directives: sectioning and alignment. */
2939
2940/* Same as s_align_ptwo but align 0 => align 2. */
2941
b99bd4ef 2942static void
c19d1205 2943s_align (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2944{
a737bd4d 2945 int temp;
dce323d1 2946 bfd_boolean fill_p;
c19d1205
ZW
2947 long temp_fill;
2948 long max_alignment = 15;
b99bd4ef
NC
2949
2950 temp = get_absolute_expression ();
c19d1205
ZW
2951 if (temp > max_alignment)
2952 as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
2953 else if (temp < 0)
b99bd4ef 2954 {
c19d1205
ZW
2955 as_bad (_("alignment negative. 0 assumed."));
2956 temp = 0;
2957 }
b99bd4ef 2958
c19d1205
ZW
2959 if (*input_line_pointer == ',')
2960 {
2961 input_line_pointer++;
2962 temp_fill = get_absolute_expression ();
dce323d1 2963 fill_p = TRUE;
b99bd4ef 2964 }
c19d1205 2965 else
dce323d1
PB
2966 {
2967 fill_p = FALSE;
2968 temp_fill = 0;
2969 }
b99bd4ef 2970
c19d1205
ZW
2971 if (!temp)
2972 temp = 2;
b99bd4ef 2973
c19d1205
ZW
2974 /* Only make a frag if we HAVE to. */
2975 if (temp && !need_pass_2)
dce323d1
PB
2976 {
2977 if (!fill_p && subseg_text_p (now_seg))
2978 frag_align_code (temp, 0);
2979 else
2980 frag_align (temp, (int) temp_fill, 0);
2981 }
c19d1205
ZW
2982 demand_empty_rest_of_line ();
2983
2984 record_alignment (now_seg, temp);
b99bd4ef
NC
2985}
2986
c19d1205
ZW
2987static void
2988s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 2989{
c19d1205
ZW
2990 /* We don't support putting frags in the BSS segment, we fake it by
2991 marking in_bss, then looking at s_skip for clues. */
2992 subseg_set (bss_section, 0);
2993 demand_empty_rest_of_line ();
cd000bff
DJ
2994
2995#ifdef md_elf_section_change_hook
2996 md_elf_section_change_hook ();
2997#endif
c19d1205 2998}
b99bd4ef 2999
c19d1205
ZW
3000static void
3001s_even (int ignore ATTRIBUTE_UNUSED)
3002{
3003 /* Never make frag if expect extra pass. */
3004 if (!need_pass_2)
3005 frag_align (1, 0, 0);
b99bd4ef 3006
c19d1205 3007 record_alignment (now_seg, 1);
b99bd4ef 3008
c19d1205 3009 demand_empty_rest_of_line ();
b99bd4ef
NC
3010}
3011
c19d1205 3012/* Directives: Literal pools. */
a737bd4d 3013
c19d1205
ZW
3014static literal_pool *
3015find_literal_pool (void)
a737bd4d 3016{
c19d1205 3017 literal_pool * pool;
a737bd4d 3018
c19d1205 3019 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 3020 {
c19d1205
ZW
3021 if (pool->section == now_seg
3022 && pool->sub_section == now_subseg)
3023 break;
a737bd4d
NC
3024 }
3025
c19d1205 3026 return pool;
a737bd4d
NC
3027}
3028
c19d1205
ZW
3029static literal_pool *
3030find_or_make_literal_pool (void)
a737bd4d 3031{
c19d1205
ZW
3032 /* Next literal pool ID number. */
3033 static unsigned int latest_pool_num = 1;
3034 literal_pool * pool;
a737bd4d 3035
c19d1205 3036 pool = find_literal_pool ();
a737bd4d 3037
c19d1205 3038 if (pool == NULL)
a737bd4d 3039 {
c19d1205 3040 /* Create a new pool. */
21d799b5 3041 pool = (literal_pool *) xmalloc (sizeof (* pool));
c19d1205
ZW
3042 if (! pool)
3043 return NULL;
a737bd4d 3044
c19d1205
ZW
3045 pool->next_free_entry = 0;
3046 pool->section = now_seg;
3047 pool->sub_section = now_subseg;
3048 pool->next = list_of_pools;
3049 pool->symbol = NULL;
3050
3051 /* Add it to the list. */
3052 list_of_pools = pool;
a737bd4d 3053 }
a737bd4d 3054
c19d1205
ZW
3055 /* New pools, and emptied pools, will have a NULL symbol. */
3056 if (pool->symbol == NULL)
a737bd4d 3057 {
c19d1205
ZW
3058 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3059 (valueT) 0, &zero_address_frag);
3060 pool->id = latest_pool_num ++;
a737bd4d
NC
3061 }
3062
c19d1205
ZW
3063 /* Done. */
3064 return pool;
a737bd4d
NC
3065}
3066
c19d1205 3067/* Add the literal in the global 'inst'
5f4273c7 3068 structure to the relevant literal pool. */
b99bd4ef
NC
3069
3070static int
c19d1205 3071add_to_lit_pool (void)
b99bd4ef 3072{
c19d1205
ZW
3073 literal_pool * pool;
3074 unsigned int entry;
b99bd4ef 3075
c19d1205
ZW
3076 pool = find_or_make_literal_pool ();
3077
3078 /* Check if this literal value is already in the pool. */
3079 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 3080 {
c19d1205
ZW
3081 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3082 && (inst.reloc.exp.X_op == O_constant)
3083 && (pool->literals[entry].X_add_number
3084 == inst.reloc.exp.X_add_number)
3085 && (pool->literals[entry].X_unsigned
3086 == inst.reloc.exp.X_unsigned))
3087 break;
3088
3089 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3090 && (inst.reloc.exp.X_op == O_symbol)
3091 && (pool->literals[entry].X_add_number
3092 == inst.reloc.exp.X_add_number)
3093 && (pool->literals[entry].X_add_symbol
3094 == inst.reloc.exp.X_add_symbol)
3095 && (pool->literals[entry].X_op_symbol
3096 == inst.reloc.exp.X_op_symbol))
3097 break;
b99bd4ef
NC
3098 }
3099
c19d1205
ZW
3100 /* Do we need to create a new entry? */
3101 if (entry == pool->next_free_entry)
3102 {
3103 if (entry >= MAX_LITERAL_POOL_SIZE)
3104 {
3105 inst.error = _("literal pool overflow");
3106 return FAIL;
3107 }
3108
3109 pool->literals[entry] = inst.reloc.exp;
a8040cf2
NC
3110#ifdef OBJ_ELF
3111 /* PR ld/12974: Record the location of the first source line to reference
3112 this entry in the literal pool. If it turns out during linking that the
3113 symbol does not exist we will be able to give an accurate line number for
3114 the (first use of the) missing reference. */
3115 if (debug_type == DEBUG_DWARF2)
3116 dwarf2_where (pool->locs + entry);
3117#endif
c19d1205
ZW
3118 pool->next_free_entry += 1;
3119 }
b99bd4ef 3120
c19d1205
ZW
3121 inst.reloc.exp.X_op = O_symbol;
3122 inst.reloc.exp.X_add_number = ((int) entry) * 4;
3123 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 3124
c19d1205 3125 return SUCCESS;
b99bd4ef
NC
3126}
3127
c19d1205
ZW
3128/* Can't use symbol_new here, so have to create a symbol and then at
3129 a later date assign it a value. Thats what these functions do. */
e16bb312 3130
c19d1205
ZW
3131static void
3132symbol_locate (symbolS * symbolP,
3133 const char * name, /* It is copied, the caller can modify. */
3134 segT segment, /* Segment identifier (SEG_<something>). */
3135 valueT valu, /* Symbol value. */
3136 fragS * frag) /* Associated fragment. */
3137{
3138 unsigned int name_length;
3139 char * preserved_copy_of_name;
e16bb312 3140
c19d1205
ZW
3141 name_length = strlen (name) + 1; /* +1 for \0. */
3142 obstack_grow (&notes, name, name_length);
21d799b5 3143 preserved_copy_of_name = (char *) obstack_finish (&notes);
e16bb312 3144
c19d1205
ZW
3145#ifdef tc_canonicalize_symbol_name
3146 preserved_copy_of_name =
3147 tc_canonicalize_symbol_name (preserved_copy_of_name);
3148#endif
b99bd4ef 3149
c19d1205 3150 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 3151
c19d1205
ZW
3152 S_SET_SEGMENT (symbolP, segment);
3153 S_SET_VALUE (symbolP, valu);
3154 symbol_clear_list_pointers (symbolP);
b99bd4ef 3155
c19d1205 3156 symbol_set_frag (symbolP, frag);
b99bd4ef 3157
c19d1205
ZW
3158 /* Link to end of symbol chain. */
3159 {
3160 extern int symbol_table_frozen;
b99bd4ef 3161
c19d1205
ZW
3162 if (symbol_table_frozen)
3163 abort ();
3164 }
b99bd4ef 3165
c19d1205 3166 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 3167
c19d1205 3168 obj_symbol_new_hook (symbolP);
b99bd4ef 3169
c19d1205
ZW
3170#ifdef tc_symbol_new_hook
3171 tc_symbol_new_hook (symbolP);
3172#endif
3173
3174#ifdef DEBUG_SYMS
3175 verify_symbol_chain (symbol_rootP, symbol_lastP);
3176#endif /* DEBUG_SYMS */
b99bd4ef
NC
3177}
3178
b99bd4ef 3179
c19d1205
ZW
3180static void
3181s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3182{
c19d1205
ZW
3183 unsigned int entry;
3184 literal_pool * pool;
3185 char sym_name[20];
b99bd4ef 3186
c19d1205
ZW
3187 pool = find_literal_pool ();
3188 if (pool == NULL
3189 || pool->symbol == NULL
3190 || pool->next_free_entry == 0)
3191 return;
b99bd4ef 3192
c19d1205 3193 mapping_state (MAP_DATA);
b99bd4ef 3194
c19d1205
ZW
3195 /* Align pool as you have word accesses.
3196 Only make a frag if we have to. */
3197 if (!need_pass_2)
3198 frag_align (2, 0, 0);
b99bd4ef 3199
c19d1205 3200 record_alignment (now_seg, 2);
b99bd4ef 3201
c19d1205 3202 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 3203
c19d1205
ZW
3204 symbol_locate (pool->symbol, sym_name, now_seg,
3205 (valueT) frag_now_fix (), frag_now);
3206 symbol_table_insert (pool->symbol);
b99bd4ef 3207
c19d1205 3208 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 3209
c19d1205
ZW
3210#if defined OBJ_COFF || defined OBJ_ELF
3211 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3212#endif
6c43fab6 3213
c19d1205 3214 for (entry = 0; entry < pool->next_free_entry; entry ++)
a8040cf2
NC
3215 {
3216#ifdef OBJ_ELF
3217 if (debug_type == DEBUG_DWARF2)
3218 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3219#endif
3220 /* First output the expression in the instruction to the pool. */
3221 emit_expr (&(pool->literals[entry]), 4); /* .word */
3222 }
b99bd4ef 3223
c19d1205
ZW
3224 /* Mark the pool as empty. */
3225 pool->next_free_entry = 0;
3226 pool->symbol = NULL;
b99bd4ef
NC
3227}
3228
c19d1205
ZW
3229#ifdef OBJ_ELF
3230/* Forward declarations for functions below, in the MD interface
3231 section. */
3232static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3233static valueT create_unwind_entry (int);
3234static void start_unwind_section (const segT, int);
3235static void add_unwind_opcode (valueT, int);
3236static void flush_pending_unwind (void);
b99bd4ef 3237
c19d1205 3238/* Directives: Data. */
b99bd4ef 3239
c19d1205
ZW
3240static void
3241s_arm_elf_cons (int nbytes)
3242{
3243 expressionS exp;
b99bd4ef 3244
c19d1205
ZW
3245#ifdef md_flush_pending_output
3246 md_flush_pending_output ();
3247#endif
b99bd4ef 3248
c19d1205 3249 if (is_it_end_of_statement ())
b99bd4ef 3250 {
c19d1205
ZW
3251 demand_empty_rest_of_line ();
3252 return;
b99bd4ef
NC
3253 }
3254
c19d1205
ZW
3255#ifdef md_cons_align
3256 md_cons_align (nbytes);
3257#endif
b99bd4ef 3258
c19d1205
ZW
3259 mapping_state (MAP_DATA);
3260 do
b99bd4ef 3261 {
c19d1205
ZW
3262 int reloc;
3263 char *base = input_line_pointer;
b99bd4ef 3264
c19d1205 3265 expression (& exp);
b99bd4ef 3266
c19d1205
ZW
3267 if (exp.X_op != O_symbol)
3268 emit_expr (&exp, (unsigned int) nbytes);
3269 else
3270 {
3271 char *before_reloc = input_line_pointer;
3272 reloc = parse_reloc (&input_line_pointer);
3273 if (reloc == -1)
3274 {
3275 as_bad (_("unrecognized relocation suffix"));
3276 ignore_rest_of_line ();
3277 return;
3278 }
3279 else if (reloc == BFD_RELOC_UNUSED)
3280 emit_expr (&exp, (unsigned int) nbytes);
3281 else
3282 {
21d799b5
NC
3283 reloc_howto_type *howto = (reloc_howto_type *)
3284 bfd_reloc_type_lookup (stdoutput,
3285 (bfd_reloc_code_real_type) reloc);
c19d1205 3286 int size = bfd_get_reloc_size (howto);
b99bd4ef 3287
2fc8bdac
ZW
3288 if (reloc == BFD_RELOC_ARM_PLT32)
3289 {
3290 as_bad (_("(plt) is only valid on branch targets"));
3291 reloc = BFD_RELOC_UNUSED;
3292 size = 0;
3293 }
3294
c19d1205 3295 if (size > nbytes)
2fc8bdac 3296 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
3297 howto->name, nbytes);
3298 else
3299 {
3300 /* We've parsed an expression stopping at O_symbol.
3301 But there may be more expression left now that we
3302 have parsed the relocation marker. Parse it again.
3303 XXX Surely there is a cleaner way to do this. */
3304 char *p = input_line_pointer;
3305 int offset;
21d799b5 3306 char *save_buf = (char *) alloca (input_line_pointer - base);
c19d1205
ZW
3307 memcpy (save_buf, base, input_line_pointer - base);
3308 memmove (base + (input_line_pointer - before_reloc),
3309 base, before_reloc - base);
3310
3311 input_line_pointer = base + (input_line_pointer-before_reloc);
3312 expression (&exp);
3313 memcpy (base, save_buf, p - base);
3314
3315 offset = nbytes - size;
3316 p = frag_more ((int) nbytes);
3317 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
21d799b5 3318 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
c19d1205
ZW
3319 }
3320 }
3321 }
b99bd4ef 3322 }
c19d1205 3323 while (*input_line_pointer++ == ',');
b99bd4ef 3324
c19d1205
ZW
3325 /* Put terminator back into stream. */
3326 input_line_pointer --;
3327 demand_empty_rest_of_line ();
b99bd4ef
NC
3328}
3329
c921be7d
NC
3330/* Emit an expression containing a 32-bit thumb instruction.
3331 Implementation based on put_thumb32_insn. */
3332
3333static void
3334emit_thumb32_expr (expressionS * exp)
3335{
3336 expressionS exp_high = *exp;
3337
3338 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3339 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3340 exp->X_add_number &= 0xffff;
3341 emit_expr (exp, (unsigned int) THUMB_SIZE);
3342}
3343
3344/* Guess the instruction size based on the opcode. */
3345
3346static int
3347thumb_insn_size (int opcode)
3348{
3349 if ((unsigned int) opcode < 0xe800u)
3350 return 2;
3351 else if ((unsigned int) opcode >= 0xe8000000u)
3352 return 4;
3353 else
3354 return 0;
3355}
3356
3357static bfd_boolean
3358emit_insn (expressionS *exp, int nbytes)
3359{
3360 int size = 0;
3361
3362 if (exp->X_op == O_constant)
3363 {
3364 size = nbytes;
3365
3366 if (size == 0)
3367 size = thumb_insn_size (exp->X_add_number);
3368
3369 if (size != 0)
3370 {
3371 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3372 {
3373 as_bad (_(".inst.n operand too big. "\
3374 "Use .inst.w instead"));
3375 size = 0;
3376 }
3377 else
3378 {
3379 if (now_it.state == AUTOMATIC_IT_BLOCK)
3380 set_it_insn_type_nonvoid (OUTSIDE_IT_INSN, 0);
3381 else
3382 set_it_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3383
3384 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3385 emit_thumb32_expr (exp);
3386 else
3387 emit_expr (exp, (unsigned int) size);
3388
3389 it_fsm_post_encode ();
3390 }
3391 }
3392 else
3393 as_bad (_("cannot determine Thumb instruction size. " \
3394 "Use .inst.n/.inst.w instead"));
3395 }
3396 else
3397 as_bad (_("constant expression required"));
3398
3399 return (size != 0);
3400}
3401
3402/* Like s_arm_elf_cons but do not use md_cons_align and
3403 set the mapping state to MAP_ARM/MAP_THUMB. */
3404
3405static void
3406s_arm_elf_inst (int nbytes)
3407{
3408 if (is_it_end_of_statement ())
3409 {
3410 demand_empty_rest_of_line ();
3411 return;
3412 }
3413
3414 /* Calling mapping_state () here will not change ARM/THUMB,
3415 but will ensure not to be in DATA state. */
3416
3417 if (thumb_mode)
3418 mapping_state (MAP_THUMB);
3419 else
3420 {
3421 if (nbytes != 0)
3422 {
3423 as_bad (_("width suffixes are invalid in ARM mode"));
3424 ignore_rest_of_line ();
3425 return;
3426 }
3427
3428 nbytes = 4;
3429
3430 mapping_state (MAP_ARM);
3431 }
3432
3433 do
3434 {
3435 expressionS exp;
3436
3437 expression (& exp);
3438
3439 if (! emit_insn (& exp, nbytes))
3440 {
3441 ignore_rest_of_line ();
3442 return;
3443 }
3444 }
3445 while (*input_line_pointer++ == ',');
3446
3447 /* Put terminator back into stream. */
3448 input_line_pointer --;
3449 demand_empty_rest_of_line ();
3450}
b99bd4ef 3451
c19d1205 3452/* Parse a .rel31 directive. */
b99bd4ef 3453
c19d1205
ZW
3454static void
3455s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3456{
3457 expressionS exp;
3458 char *p;
3459 valueT highbit;
b99bd4ef 3460
c19d1205
ZW
3461 highbit = 0;
3462 if (*input_line_pointer == '1')
3463 highbit = 0x80000000;
3464 else if (*input_line_pointer != '0')
3465 as_bad (_("expected 0 or 1"));
b99bd4ef 3466
c19d1205
ZW
3467 input_line_pointer++;
3468 if (*input_line_pointer != ',')
3469 as_bad (_("missing comma"));
3470 input_line_pointer++;
b99bd4ef 3471
c19d1205
ZW
3472#ifdef md_flush_pending_output
3473 md_flush_pending_output ();
3474#endif
b99bd4ef 3475
c19d1205
ZW
3476#ifdef md_cons_align
3477 md_cons_align (4);
3478#endif
b99bd4ef 3479
c19d1205 3480 mapping_state (MAP_DATA);
b99bd4ef 3481
c19d1205 3482 expression (&exp);
b99bd4ef 3483
c19d1205
ZW
3484 p = frag_more (4);
3485 md_number_to_chars (p, highbit, 4);
3486 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
3487 BFD_RELOC_ARM_PREL31);
b99bd4ef 3488
c19d1205 3489 demand_empty_rest_of_line ();
b99bd4ef
NC
3490}
3491
c19d1205 3492/* Directives: AEABI stack-unwind tables. */
b99bd4ef 3493
c19d1205 3494/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3495
c19d1205
ZW
3496static void
3497s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3498{
3499 demand_empty_rest_of_line ();
921e5f0a
PB
3500 if (unwind.proc_start)
3501 {
c921be7d 3502 as_bad (_("duplicate .fnstart directive"));
921e5f0a
PB
3503 return;
3504 }
3505
c19d1205
ZW
3506 /* Mark the start of the function. */
3507 unwind.proc_start = expr_build_dot ();
b99bd4ef 3508
c19d1205
ZW
3509 /* Reset the rest of the unwind info. */
3510 unwind.opcode_count = 0;
3511 unwind.table_entry = NULL;
3512 unwind.personality_routine = NULL;
3513 unwind.personality_index = -1;
3514 unwind.frame_size = 0;
3515 unwind.fp_offset = 0;
fdfde340 3516 unwind.fp_reg = REG_SP;
c19d1205
ZW
3517 unwind.fp_used = 0;
3518 unwind.sp_restored = 0;
3519}
b99bd4ef 3520
b99bd4ef 3521
c19d1205
ZW
3522/* Parse a handlerdata directive. Creates the exception handling table entry
3523 for the function. */
b99bd4ef 3524
c19d1205
ZW
3525static void
3526s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3527{
3528 demand_empty_rest_of_line ();
921e5f0a 3529 if (!unwind.proc_start)
c921be7d 3530 as_bad (MISSING_FNSTART);
921e5f0a 3531
c19d1205 3532 if (unwind.table_entry)
6decc662 3533 as_bad (_("duplicate .handlerdata directive"));
f02232aa 3534
c19d1205
ZW
3535 create_unwind_entry (1);
3536}
a737bd4d 3537
c19d1205 3538/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3539
c19d1205
ZW
3540static void
3541s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3542{
3543 long where;
3544 char *ptr;
3545 valueT val;
940b5ce0 3546 unsigned int marked_pr_dependency;
f02232aa 3547
c19d1205 3548 demand_empty_rest_of_line ();
f02232aa 3549
921e5f0a
PB
3550 if (!unwind.proc_start)
3551 {
c921be7d 3552 as_bad (_(".fnend directive without .fnstart"));
921e5f0a
PB
3553 return;
3554 }
3555
c19d1205
ZW
3556 /* Add eh table entry. */
3557 if (unwind.table_entry == NULL)
3558 val = create_unwind_entry (0);
3559 else
3560 val = 0;
f02232aa 3561
c19d1205
ZW
3562 /* Add index table entry. This is two words. */
3563 start_unwind_section (unwind.saved_seg, 1);
3564 frag_align (2, 0, 0);
3565 record_alignment (now_seg, 2);
b99bd4ef 3566
c19d1205 3567 ptr = frag_more (8);
5011093d 3568 memset (ptr, 0, 8);
c19d1205 3569 where = frag_now_fix () - 8;
f02232aa 3570
c19d1205
ZW
3571 /* Self relative offset of the function start. */
3572 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3573 BFD_RELOC_ARM_PREL31);
f02232aa 3574
c19d1205
ZW
3575 /* Indicate dependency on EHABI-defined personality routines to the
3576 linker, if it hasn't been done already. */
940b5ce0
DJ
3577 marked_pr_dependency
3578 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
c19d1205
ZW
3579 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3580 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3581 {
5f4273c7
NC
3582 static const char *const name[] =
3583 {
3584 "__aeabi_unwind_cpp_pr0",
3585 "__aeabi_unwind_cpp_pr1",
3586 "__aeabi_unwind_cpp_pr2"
3587 };
c19d1205
ZW
3588 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3589 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
c19d1205 3590 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
940b5ce0 3591 |= 1 << unwind.personality_index;
c19d1205 3592 }
f02232aa 3593
c19d1205
ZW
3594 if (val)
3595 /* Inline exception table entry. */
3596 md_number_to_chars (ptr + 4, val, 4);
3597 else
3598 /* Self relative offset of the table entry. */
3599 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3600 BFD_RELOC_ARM_PREL31);
f02232aa 3601
c19d1205
ZW
3602 /* Restore the original section. */
3603 subseg_set (unwind.saved_seg, unwind.saved_subseg);
921e5f0a
PB
3604
3605 unwind.proc_start = NULL;
c19d1205 3606}
f02232aa 3607
f02232aa 3608
c19d1205 3609/* Parse an unwind_cantunwind directive. */
b99bd4ef 3610
c19d1205
ZW
3611static void
3612s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3613{
3614 demand_empty_rest_of_line ();
921e5f0a 3615 if (!unwind.proc_start)
c921be7d 3616 as_bad (MISSING_FNSTART);
921e5f0a 3617
c19d1205
ZW
3618 if (unwind.personality_routine || unwind.personality_index != -1)
3619 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3620
c19d1205
ZW
3621 unwind.personality_index = -2;
3622}
b99bd4ef 3623
b99bd4ef 3624
c19d1205 3625/* Parse a personalityindex directive. */
b99bd4ef 3626
c19d1205
ZW
3627static void
3628s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3629{
3630 expressionS exp;
b99bd4ef 3631
921e5f0a 3632 if (!unwind.proc_start)
c921be7d 3633 as_bad (MISSING_FNSTART);
921e5f0a 3634
c19d1205
ZW
3635 if (unwind.personality_routine || unwind.personality_index != -1)
3636 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3637
c19d1205 3638 expression (&exp);
b99bd4ef 3639
c19d1205
ZW
3640 if (exp.X_op != O_constant
3641 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3642 {
c19d1205
ZW
3643 as_bad (_("bad personality routine number"));
3644 ignore_rest_of_line ();
3645 return;
b99bd4ef
NC
3646 }
3647
c19d1205 3648 unwind.personality_index = exp.X_add_number;
b99bd4ef 3649
c19d1205
ZW
3650 demand_empty_rest_of_line ();
3651}
e16bb312 3652
e16bb312 3653
c19d1205 3654/* Parse a personality directive. */
e16bb312 3655
c19d1205
ZW
3656static void
3657s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3658{
3659 char *name, *p, c;
a737bd4d 3660
921e5f0a 3661 if (!unwind.proc_start)
c921be7d 3662 as_bad (MISSING_FNSTART);
921e5f0a 3663
c19d1205
ZW
3664 if (unwind.personality_routine || unwind.personality_index != -1)
3665 as_bad (_("duplicate .personality directive"));
a737bd4d 3666
c19d1205
ZW
3667 name = input_line_pointer;
3668 c = get_symbol_end ();
3669 p = input_line_pointer;
3670 unwind.personality_routine = symbol_find_or_make (name);
3671 *p = c;
3672 demand_empty_rest_of_line ();
3673}
e16bb312 3674
e16bb312 3675
c19d1205 3676/* Parse a directive saving core registers. */
e16bb312 3677
c19d1205
ZW
3678static void
3679s_arm_unwind_save_core (void)
e16bb312 3680{
c19d1205
ZW
3681 valueT op;
3682 long range;
3683 int n;
e16bb312 3684
c19d1205
ZW
3685 range = parse_reg_list (&input_line_pointer);
3686 if (range == FAIL)
e16bb312 3687 {
c19d1205
ZW
3688 as_bad (_("expected register list"));
3689 ignore_rest_of_line ();
3690 return;
3691 }
e16bb312 3692
c19d1205 3693 demand_empty_rest_of_line ();
e16bb312 3694
c19d1205
ZW
3695 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3696 into .unwind_save {..., sp...}. We aren't bothered about the value of
3697 ip because it is clobbered by calls. */
3698 if (unwind.sp_restored && unwind.fp_reg == 12
3699 && (range & 0x3000) == 0x1000)
3700 {
3701 unwind.opcode_count--;
3702 unwind.sp_restored = 0;
3703 range = (range | 0x2000) & ~0x1000;
3704 unwind.pending_offset = 0;
3705 }
e16bb312 3706
01ae4198
DJ
3707 /* Pop r4-r15. */
3708 if (range & 0xfff0)
c19d1205 3709 {
01ae4198
DJ
3710 /* See if we can use the short opcodes. These pop a block of up to 8
3711 registers starting with r4, plus maybe r14. */
3712 for (n = 0; n < 8; n++)
3713 {
3714 /* Break at the first non-saved register. */
3715 if ((range & (1 << (n + 4))) == 0)
3716 break;
3717 }
3718 /* See if there are any other bits set. */
3719 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3720 {
3721 /* Use the long form. */
3722 op = 0x8000 | ((range >> 4) & 0xfff);
3723 add_unwind_opcode (op, 2);
3724 }
0dd132b6 3725 else
01ae4198
DJ
3726 {
3727 /* Use the short form. */
3728 if (range & 0x4000)
3729 op = 0xa8; /* Pop r14. */
3730 else
3731 op = 0xa0; /* Do not pop r14. */
3732 op |= (n - 1);
3733 add_unwind_opcode (op, 1);
3734 }
c19d1205 3735 }
0dd132b6 3736
c19d1205
ZW
3737 /* Pop r0-r3. */
3738 if (range & 0xf)
3739 {
3740 op = 0xb100 | (range & 0xf);
3741 add_unwind_opcode (op, 2);
0dd132b6
NC
3742 }
3743
c19d1205
ZW
3744 /* Record the number of bytes pushed. */
3745 for (n = 0; n < 16; n++)
3746 {
3747 if (range & (1 << n))
3748 unwind.frame_size += 4;
3749 }
0dd132b6
NC
3750}
3751
c19d1205
ZW
3752
3753/* Parse a directive saving FPA registers. */
b99bd4ef
NC
3754
3755static void
c19d1205 3756s_arm_unwind_save_fpa (int reg)
b99bd4ef 3757{
c19d1205
ZW
3758 expressionS exp;
3759 int num_regs;
3760 valueT op;
b99bd4ef 3761
c19d1205
ZW
3762 /* Get Number of registers to transfer. */
3763 if (skip_past_comma (&input_line_pointer) != FAIL)
3764 expression (&exp);
3765 else
3766 exp.X_op = O_illegal;
b99bd4ef 3767
c19d1205 3768 if (exp.X_op != O_constant)
b99bd4ef 3769 {
c19d1205
ZW
3770 as_bad (_("expected , <constant>"));
3771 ignore_rest_of_line ();
b99bd4ef
NC
3772 return;
3773 }
3774
c19d1205
ZW
3775 num_regs = exp.X_add_number;
3776
3777 if (num_regs < 1 || num_regs > 4)
b99bd4ef 3778 {
c19d1205
ZW
3779 as_bad (_("number of registers must be in the range [1:4]"));
3780 ignore_rest_of_line ();
b99bd4ef
NC
3781 return;
3782 }
3783
c19d1205 3784 demand_empty_rest_of_line ();
b99bd4ef 3785
c19d1205
ZW
3786 if (reg == 4)
3787 {
3788 /* Short form. */
3789 op = 0xb4 | (num_regs - 1);
3790 add_unwind_opcode (op, 1);
3791 }
b99bd4ef
NC
3792 else
3793 {
c19d1205
ZW
3794 /* Long form. */
3795 op = 0xc800 | (reg << 4) | (num_regs - 1);
3796 add_unwind_opcode (op, 2);
b99bd4ef 3797 }
c19d1205 3798 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
3799}
3800
c19d1205 3801
fa073d69
MS
3802/* Parse a directive saving VFP registers for ARMv6 and above. */
3803
3804static void
3805s_arm_unwind_save_vfp_armv6 (void)
3806{
3807 int count;
3808 unsigned int start;
3809 valueT op;
3810 int num_vfpv3_regs = 0;
3811 int num_regs_below_16;
3812
3813 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
3814 if (count == FAIL)
3815 {
3816 as_bad (_("expected register list"));
3817 ignore_rest_of_line ();
3818 return;
3819 }
3820
3821 demand_empty_rest_of_line ();
3822
3823 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
3824 than FSTMX/FLDMX-style ones). */
3825
3826 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
3827 if (start >= 16)
3828 num_vfpv3_regs = count;
3829 else if (start + count > 16)
3830 num_vfpv3_regs = start + count - 16;
3831
3832 if (num_vfpv3_regs > 0)
3833 {
3834 int start_offset = start > 16 ? start - 16 : 0;
3835 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
3836 add_unwind_opcode (op, 2);
3837 }
3838
3839 /* Generate opcode for registers numbered in the range 0 .. 15. */
3840 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
9c2799c2 3841 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
fa073d69
MS
3842 if (num_regs_below_16 > 0)
3843 {
3844 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
3845 add_unwind_opcode (op, 2);
3846 }
3847
3848 unwind.frame_size += count * 8;
3849}
3850
3851
3852/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
3853
3854static void
c19d1205 3855s_arm_unwind_save_vfp (void)
b99bd4ef 3856{
c19d1205 3857 int count;
ca3f61f7 3858 unsigned int reg;
c19d1205 3859 valueT op;
b99bd4ef 3860
5287ad62 3861 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 3862 if (count == FAIL)
b99bd4ef 3863 {
c19d1205
ZW
3864 as_bad (_("expected register list"));
3865 ignore_rest_of_line ();
b99bd4ef
NC
3866 return;
3867 }
3868
c19d1205 3869 demand_empty_rest_of_line ();
b99bd4ef 3870
c19d1205 3871 if (reg == 8)
b99bd4ef 3872 {
c19d1205
ZW
3873 /* Short form. */
3874 op = 0xb8 | (count - 1);
3875 add_unwind_opcode (op, 1);
b99bd4ef 3876 }
c19d1205 3877 else
b99bd4ef 3878 {
c19d1205
ZW
3879 /* Long form. */
3880 op = 0xb300 | (reg << 4) | (count - 1);
3881 add_unwind_opcode (op, 2);
b99bd4ef 3882 }
c19d1205
ZW
3883 unwind.frame_size += count * 8 + 4;
3884}
b99bd4ef 3885
b99bd4ef 3886
c19d1205
ZW
3887/* Parse a directive saving iWMMXt data registers. */
3888
3889static void
3890s_arm_unwind_save_mmxwr (void)
3891{
3892 int reg;
3893 int hi_reg;
3894 int i;
3895 unsigned mask = 0;
3896 valueT op;
b99bd4ef 3897
c19d1205
ZW
3898 if (*input_line_pointer == '{')
3899 input_line_pointer++;
b99bd4ef 3900
c19d1205 3901 do
b99bd4ef 3902 {
dcbf9037 3903 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 3904
c19d1205 3905 if (reg == FAIL)
b99bd4ef 3906 {
9b7132d3 3907 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205 3908 goto error;
b99bd4ef
NC
3909 }
3910
c19d1205
ZW
3911 if (mask >> reg)
3912 as_tsktsk (_("register list not in ascending order"));
3913 mask |= 1 << reg;
b99bd4ef 3914
c19d1205
ZW
3915 if (*input_line_pointer == '-')
3916 {
3917 input_line_pointer++;
dcbf9037 3918 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
3919 if (hi_reg == FAIL)
3920 {
9b7132d3 3921 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205
ZW
3922 goto error;
3923 }
3924 else if (reg >= hi_reg)
3925 {
3926 as_bad (_("bad register range"));
3927 goto error;
3928 }
3929 for (; reg < hi_reg; reg++)
3930 mask |= 1 << reg;
3931 }
3932 }
3933 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 3934
c19d1205
ZW
3935 if (*input_line_pointer == '}')
3936 input_line_pointer++;
b99bd4ef 3937
c19d1205 3938 demand_empty_rest_of_line ();
b99bd4ef 3939
708587a4 3940 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
3941 the list. */
3942 flush_pending_unwind ();
b99bd4ef 3943
c19d1205 3944 for (i = 0; i < 16; i++)
b99bd4ef 3945 {
c19d1205
ZW
3946 if (mask & (1 << i))
3947 unwind.frame_size += 8;
b99bd4ef
NC
3948 }
3949
c19d1205
ZW
3950 /* Attempt to combine with a previous opcode. We do this because gcc
3951 likes to output separate unwind directives for a single block of
3952 registers. */
3953 if (unwind.opcode_count > 0)
b99bd4ef 3954 {
c19d1205
ZW
3955 i = unwind.opcodes[unwind.opcode_count - 1];
3956 if ((i & 0xf8) == 0xc0)
3957 {
3958 i &= 7;
3959 /* Only merge if the blocks are contiguous. */
3960 if (i < 6)
3961 {
3962 if ((mask & 0xfe00) == (1 << 9))
3963 {
3964 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
3965 unwind.opcode_count--;
3966 }
3967 }
3968 else if (i == 6 && unwind.opcode_count >= 2)
3969 {
3970 i = unwind.opcodes[unwind.opcode_count - 2];
3971 reg = i >> 4;
3972 i &= 0xf;
b99bd4ef 3973
c19d1205
ZW
3974 op = 0xffff << (reg - 1);
3975 if (reg > 0
87a1fd79 3976 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
3977 {
3978 op = (1 << (reg + i + 1)) - 1;
3979 op &= ~((1 << reg) - 1);
3980 mask |= op;
3981 unwind.opcode_count -= 2;
3982 }
3983 }
3984 }
b99bd4ef
NC
3985 }
3986
c19d1205
ZW
3987 hi_reg = 15;
3988 /* We want to generate opcodes in the order the registers have been
3989 saved, ie. descending order. */
3990 for (reg = 15; reg >= -1; reg--)
b99bd4ef 3991 {
c19d1205
ZW
3992 /* Save registers in blocks. */
3993 if (reg < 0
3994 || !(mask & (1 << reg)))
3995 {
3996 /* We found an unsaved reg. Generate opcodes to save the
5f4273c7 3997 preceding block. */
c19d1205
ZW
3998 if (reg != hi_reg)
3999 {
4000 if (reg == 9)
4001 {
4002 /* Short form. */
4003 op = 0xc0 | (hi_reg - 10);
4004 add_unwind_opcode (op, 1);
4005 }
4006 else
4007 {
4008 /* Long form. */
4009 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4010 add_unwind_opcode (op, 2);
4011 }
4012 }
4013 hi_reg = reg - 1;
4014 }
b99bd4ef
NC
4015 }
4016
c19d1205
ZW
4017 return;
4018error:
4019 ignore_rest_of_line ();
b99bd4ef
NC
4020}
4021
4022static void
c19d1205 4023s_arm_unwind_save_mmxwcg (void)
b99bd4ef 4024{
c19d1205
ZW
4025 int reg;
4026 int hi_reg;
4027 unsigned mask = 0;
4028 valueT op;
b99bd4ef 4029
c19d1205
ZW
4030 if (*input_line_pointer == '{')
4031 input_line_pointer++;
b99bd4ef 4032
c19d1205 4033 do
b99bd4ef 4034 {
dcbf9037 4035 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 4036
c19d1205
ZW
4037 if (reg == FAIL)
4038 {
9b7132d3 4039 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4040 goto error;
4041 }
b99bd4ef 4042
c19d1205
ZW
4043 reg -= 8;
4044 if (mask >> reg)
4045 as_tsktsk (_("register list not in ascending order"));
4046 mask |= 1 << reg;
b99bd4ef 4047
c19d1205
ZW
4048 if (*input_line_pointer == '-')
4049 {
4050 input_line_pointer++;
dcbf9037 4051 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
4052 if (hi_reg == FAIL)
4053 {
9b7132d3 4054 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4055 goto error;
4056 }
4057 else if (reg >= hi_reg)
4058 {
4059 as_bad (_("bad register range"));
4060 goto error;
4061 }
4062 for (; reg < hi_reg; reg++)
4063 mask |= 1 << reg;
4064 }
b99bd4ef 4065 }
c19d1205 4066 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4067
c19d1205
ZW
4068 if (*input_line_pointer == '}')
4069 input_line_pointer++;
b99bd4ef 4070
c19d1205
ZW
4071 demand_empty_rest_of_line ();
4072
708587a4 4073 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4074 the list. */
4075 flush_pending_unwind ();
b99bd4ef 4076
c19d1205 4077 for (reg = 0; reg < 16; reg++)
b99bd4ef 4078 {
c19d1205
ZW
4079 if (mask & (1 << reg))
4080 unwind.frame_size += 4;
b99bd4ef 4081 }
c19d1205
ZW
4082 op = 0xc700 | mask;
4083 add_unwind_opcode (op, 2);
4084 return;
4085error:
4086 ignore_rest_of_line ();
b99bd4ef
NC
4087}
4088
c19d1205 4089
fa073d69
MS
4090/* Parse an unwind_save directive.
4091 If the argument is non-zero, this is a .vsave directive. */
c19d1205 4092
b99bd4ef 4093static void
fa073d69 4094s_arm_unwind_save (int arch_v6)
b99bd4ef 4095{
c19d1205
ZW
4096 char *peek;
4097 struct reg_entry *reg;
4098 bfd_boolean had_brace = FALSE;
b99bd4ef 4099
921e5f0a 4100 if (!unwind.proc_start)
c921be7d 4101 as_bad (MISSING_FNSTART);
921e5f0a 4102
c19d1205
ZW
4103 /* Figure out what sort of save we have. */
4104 peek = input_line_pointer;
b99bd4ef 4105
c19d1205 4106 if (*peek == '{')
b99bd4ef 4107 {
c19d1205
ZW
4108 had_brace = TRUE;
4109 peek++;
b99bd4ef
NC
4110 }
4111
c19d1205 4112 reg = arm_reg_parse_multi (&peek);
b99bd4ef 4113
c19d1205 4114 if (!reg)
b99bd4ef 4115 {
c19d1205
ZW
4116 as_bad (_("register expected"));
4117 ignore_rest_of_line ();
b99bd4ef
NC
4118 return;
4119 }
4120
c19d1205 4121 switch (reg->type)
b99bd4ef 4122 {
c19d1205
ZW
4123 case REG_TYPE_FN:
4124 if (had_brace)
4125 {
4126 as_bad (_("FPA .unwind_save does not take a register list"));
4127 ignore_rest_of_line ();
4128 return;
4129 }
93ac2687 4130 input_line_pointer = peek;
c19d1205 4131 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 4132 return;
c19d1205
ZW
4133
4134 case REG_TYPE_RN: s_arm_unwind_save_core (); return;
fa073d69
MS
4135 case REG_TYPE_VFD:
4136 if (arch_v6)
4137 s_arm_unwind_save_vfp_armv6 ();
4138 else
4139 s_arm_unwind_save_vfp ();
4140 return;
c19d1205
ZW
4141 case REG_TYPE_MMXWR: s_arm_unwind_save_mmxwr (); return;
4142 case REG_TYPE_MMXWCG: s_arm_unwind_save_mmxwcg (); return;
4143
4144 default:
4145 as_bad (_(".unwind_save does not support this kind of register"));
4146 ignore_rest_of_line ();
b99bd4ef 4147 }
c19d1205 4148}
b99bd4ef 4149
b99bd4ef 4150
c19d1205
ZW
4151/* Parse an unwind_movsp directive. */
4152
4153static void
4154s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4155{
4156 int reg;
4157 valueT op;
4fa3602b 4158 int offset;
c19d1205 4159
921e5f0a 4160 if (!unwind.proc_start)
c921be7d 4161 as_bad (MISSING_FNSTART);
921e5f0a 4162
dcbf9037 4163 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 4164 if (reg == FAIL)
b99bd4ef 4165 {
9b7132d3 4166 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
c19d1205 4167 ignore_rest_of_line ();
b99bd4ef
NC
4168 return;
4169 }
4fa3602b
PB
4170
4171 /* Optional constant. */
4172 if (skip_past_comma (&input_line_pointer) != FAIL)
4173 {
4174 if (immediate_for_directive (&offset) == FAIL)
4175 return;
4176 }
4177 else
4178 offset = 0;
4179
c19d1205 4180 demand_empty_rest_of_line ();
b99bd4ef 4181
c19d1205 4182 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 4183 {
c19d1205 4184 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
4185 return;
4186 }
4187
c19d1205
ZW
4188 if (unwind.fp_reg != REG_SP)
4189 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 4190
c19d1205
ZW
4191 /* Generate opcode to restore the value. */
4192 op = 0x90 | reg;
4193 add_unwind_opcode (op, 1);
4194
4195 /* Record the information for later. */
4196 unwind.fp_reg = reg;
4fa3602b 4197 unwind.fp_offset = unwind.frame_size - offset;
c19d1205 4198 unwind.sp_restored = 1;
b05fe5cf
ZW
4199}
4200
c19d1205
ZW
4201/* Parse an unwind_pad directive. */
4202
b05fe5cf 4203static void
c19d1205 4204s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 4205{
c19d1205 4206 int offset;
b05fe5cf 4207
921e5f0a 4208 if (!unwind.proc_start)
c921be7d 4209 as_bad (MISSING_FNSTART);
921e5f0a 4210
c19d1205
ZW
4211 if (immediate_for_directive (&offset) == FAIL)
4212 return;
b99bd4ef 4213
c19d1205
ZW
4214 if (offset & 3)
4215 {
4216 as_bad (_("stack increment must be multiple of 4"));
4217 ignore_rest_of_line ();
4218 return;
4219 }
b99bd4ef 4220
c19d1205
ZW
4221 /* Don't generate any opcodes, just record the details for later. */
4222 unwind.frame_size += offset;
4223 unwind.pending_offset += offset;
4224
4225 demand_empty_rest_of_line ();
4226}
4227
4228/* Parse an unwind_setfp directive. */
4229
4230static void
4231s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 4232{
c19d1205
ZW
4233 int sp_reg;
4234 int fp_reg;
4235 int offset;
4236
921e5f0a 4237 if (!unwind.proc_start)
c921be7d 4238 as_bad (MISSING_FNSTART);
921e5f0a 4239
dcbf9037 4240 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
4241 if (skip_past_comma (&input_line_pointer) == FAIL)
4242 sp_reg = FAIL;
4243 else
dcbf9037 4244 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 4245
c19d1205
ZW
4246 if (fp_reg == FAIL || sp_reg == FAIL)
4247 {
4248 as_bad (_("expected <reg>, <reg>"));
4249 ignore_rest_of_line ();
4250 return;
4251 }
b99bd4ef 4252
c19d1205
ZW
4253 /* Optional constant. */
4254 if (skip_past_comma (&input_line_pointer) != FAIL)
4255 {
4256 if (immediate_for_directive (&offset) == FAIL)
4257 return;
4258 }
4259 else
4260 offset = 0;
a737bd4d 4261
c19d1205 4262 demand_empty_rest_of_line ();
a737bd4d 4263
fdfde340 4264 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
a737bd4d 4265 {
c19d1205
ZW
4266 as_bad (_("register must be either sp or set by a previous"
4267 "unwind_movsp directive"));
4268 return;
a737bd4d
NC
4269 }
4270
c19d1205
ZW
4271 /* Don't generate any opcodes, just record the information for later. */
4272 unwind.fp_reg = fp_reg;
4273 unwind.fp_used = 1;
fdfde340 4274 if (sp_reg == REG_SP)
c19d1205
ZW
4275 unwind.fp_offset = unwind.frame_size - offset;
4276 else
4277 unwind.fp_offset -= offset;
a737bd4d
NC
4278}
4279
c19d1205
ZW
4280/* Parse an unwind_raw directive. */
4281
4282static void
4283s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 4284{
c19d1205 4285 expressionS exp;
708587a4 4286 /* This is an arbitrary limit. */
c19d1205
ZW
4287 unsigned char op[16];
4288 int count;
a737bd4d 4289
921e5f0a 4290 if (!unwind.proc_start)
c921be7d 4291 as_bad (MISSING_FNSTART);
921e5f0a 4292
c19d1205
ZW
4293 expression (&exp);
4294 if (exp.X_op == O_constant
4295 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 4296 {
c19d1205
ZW
4297 unwind.frame_size += exp.X_add_number;
4298 expression (&exp);
4299 }
4300 else
4301 exp.X_op = O_illegal;
a737bd4d 4302
c19d1205
ZW
4303 if (exp.X_op != O_constant)
4304 {
4305 as_bad (_("expected <offset>, <opcode>"));
4306 ignore_rest_of_line ();
4307 return;
4308 }
a737bd4d 4309
c19d1205 4310 count = 0;
a737bd4d 4311
c19d1205
ZW
4312 /* Parse the opcode. */
4313 for (;;)
4314 {
4315 if (count >= 16)
4316 {
4317 as_bad (_("unwind opcode too long"));
4318 ignore_rest_of_line ();
a737bd4d 4319 }
c19d1205 4320 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 4321 {
c19d1205
ZW
4322 as_bad (_("invalid unwind opcode"));
4323 ignore_rest_of_line ();
4324 return;
a737bd4d 4325 }
c19d1205 4326 op[count++] = exp.X_add_number;
a737bd4d 4327
c19d1205
ZW
4328 /* Parse the next byte. */
4329 if (skip_past_comma (&input_line_pointer) == FAIL)
4330 break;
a737bd4d 4331
c19d1205
ZW
4332 expression (&exp);
4333 }
b99bd4ef 4334
c19d1205
ZW
4335 /* Add the opcode bytes in reverse order. */
4336 while (count--)
4337 add_unwind_opcode (op[count], 1);
b99bd4ef 4338
c19d1205 4339 demand_empty_rest_of_line ();
b99bd4ef 4340}
ee065d83
PB
4341
4342
4343/* Parse a .eabi_attribute directive. */
4344
4345static void
4346s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4347{
0420f52b 4348 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
ee3c0378
AS
4349
4350 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4351 attributes_set_explicitly[tag] = 1;
ee065d83
PB
4352}
4353
0855e32b
NS
4354/* Emit a tls fix for the symbol. */
4355
4356static void
4357s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4358{
4359 char *p;
4360 expressionS exp;
4361#ifdef md_flush_pending_output
4362 md_flush_pending_output ();
4363#endif
4364
4365#ifdef md_cons_align
4366 md_cons_align (4);
4367#endif
4368
4369 /* Since we're just labelling the code, there's no need to define a
4370 mapping symbol. */
4371 expression (&exp);
4372 p = obstack_next_free (&frchain_now->frch_obstack);
4373 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4374 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4375 : BFD_RELOC_ARM_TLS_DESCSEQ);
4376}
cdf9ccec 4377#endif /* OBJ_ELF */
0855e32b 4378
ee065d83 4379static void s_arm_arch (int);
7a1d4c38 4380static void s_arm_object_arch (int);
ee065d83
PB
4381static void s_arm_cpu (int);
4382static void s_arm_fpu (int);
69133863 4383static void s_arm_arch_extension (int);
b99bd4ef 4384
f0927246
NC
4385#ifdef TE_PE
4386
4387static void
5f4273c7 4388pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
f0927246
NC
4389{
4390 expressionS exp;
4391
4392 do
4393 {
4394 expression (&exp);
4395 if (exp.X_op == O_symbol)
4396 exp.X_op = O_secrel;
4397
4398 emit_expr (&exp, 4);
4399 }
4400 while (*input_line_pointer++ == ',');
4401
4402 input_line_pointer--;
4403 demand_empty_rest_of_line ();
4404}
4405#endif /* TE_PE */
4406
c19d1205
ZW
4407/* This table describes all the machine specific pseudo-ops the assembler
4408 has to support. The fields are:
4409 pseudo-op name without dot
4410 function to call to execute this pseudo-op
4411 Integer arg to pass to the function. */
b99bd4ef 4412
c19d1205 4413const pseudo_typeS md_pseudo_table[] =
b99bd4ef 4414{
c19d1205
ZW
4415 /* Never called because '.req' does not start a line. */
4416 { "req", s_req, 0 },
dcbf9037
JB
4417 /* Following two are likewise never called. */
4418 { "dn", s_dn, 0 },
4419 { "qn", s_qn, 0 },
c19d1205
ZW
4420 { "unreq", s_unreq, 0 },
4421 { "bss", s_bss, 0 },
4422 { "align", s_align, 0 },
4423 { "arm", s_arm, 0 },
4424 { "thumb", s_thumb, 0 },
4425 { "code", s_code, 0 },
4426 { "force_thumb", s_force_thumb, 0 },
4427 { "thumb_func", s_thumb_func, 0 },
4428 { "thumb_set", s_thumb_set, 0 },
4429 { "even", s_even, 0 },
4430 { "ltorg", s_ltorg, 0 },
4431 { "pool", s_ltorg, 0 },
4432 { "syntax", s_syntax, 0 },
8463be01
PB
4433 { "cpu", s_arm_cpu, 0 },
4434 { "arch", s_arm_arch, 0 },
7a1d4c38 4435 { "object_arch", s_arm_object_arch, 0 },
8463be01 4436 { "fpu", s_arm_fpu, 0 },
69133863 4437 { "arch_extension", s_arm_arch_extension, 0 },
c19d1205 4438#ifdef OBJ_ELF
c921be7d
NC
4439 { "word", s_arm_elf_cons, 4 },
4440 { "long", s_arm_elf_cons, 4 },
4441 { "inst.n", s_arm_elf_inst, 2 },
4442 { "inst.w", s_arm_elf_inst, 4 },
4443 { "inst", s_arm_elf_inst, 0 },
4444 { "rel31", s_arm_rel31, 0 },
c19d1205
ZW
4445 { "fnstart", s_arm_unwind_fnstart, 0 },
4446 { "fnend", s_arm_unwind_fnend, 0 },
4447 { "cantunwind", s_arm_unwind_cantunwind, 0 },
4448 { "personality", s_arm_unwind_personality, 0 },
4449 { "personalityindex", s_arm_unwind_personalityindex, 0 },
4450 { "handlerdata", s_arm_unwind_handlerdata, 0 },
4451 { "save", s_arm_unwind_save, 0 },
fa073d69 4452 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
4453 { "movsp", s_arm_unwind_movsp, 0 },
4454 { "pad", s_arm_unwind_pad, 0 },
4455 { "setfp", s_arm_unwind_setfp, 0 },
4456 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 4457 { "eabi_attribute", s_arm_eabi_attribute, 0 },
0855e32b 4458 { "tlsdescseq", s_arm_tls_descseq, 0 },
c19d1205
ZW
4459#else
4460 { "word", cons, 4},
f0927246
NC
4461
4462 /* These are used for dwarf. */
4463 {"2byte", cons, 2},
4464 {"4byte", cons, 4},
4465 {"8byte", cons, 8},
4466 /* These are used for dwarf2. */
4467 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
4468 { "loc", dwarf2_directive_loc, 0 },
4469 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
4470#endif
4471 { "extend", float_cons, 'x' },
4472 { "ldouble", float_cons, 'x' },
4473 { "packed", float_cons, 'p' },
f0927246
NC
4474#ifdef TE_PE
4475 {"secrel32", pe_directive_secrel, 0},
4476#endif
c19d1205
ZW
4477 { 0, 0, 0 }
4478};
4479\f
4480/* Parser functions used exclusively in instruction operands. */
b99bd4ef 4481
c19d1205
ZW
4482/* Generic immediate-value read function for use in insn parsing.
4483 STR points to the beginning of the immediate (the leading #);
4484 VAL receives the value; if the value is outside [MIN, MAX]
4485 issue an error. PREFIX_OPT is true if the immediate prefix is
4486 optional. */
b99bd4ef 4487
c19d1205
ZW
4488static int
4489parse_immediate (char **str, int *val, int min, int max,
4490 bfd_boolean prefix_opt)
4491{
4492 expressionS exp;
4493 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
4494 if (exp.X_op != O_constant)
b99bd4ef 4495 {
c19d1205
ZW
4496 inst.error = _("constant expression required");
4497 return FAIL;
4498 }
b99bd4ef 4499
c19d1205
ZW
4500 if (exp.X_add_number < min || exp.X_add_number > max)
4501 {
4502 inst.error = _("immediate value out of range");
4503 return FAIL;
4504 }
b99bd4ef 4505
c19d1205
ZW
4506 *val = exp.X_add_number;
4507 return SUCCESS;
4508}
b99bd4ef 4509
5287ad62 4510/* Less-generic immediate-value read function with the possibility of loading a
036dc3f7 4511 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5287ad62
JB
4512 instructions. Puts the result directly in inst.operands[i]. */
4513
4514static int
4515parse_big_immediate (char **str, int i)
4516{
4517 expressionS exp;
4518 char *ptr = *str;
4519
4520 my_get_expression (&exp, &ptr, GE_OPT_PREFIX_BIG);
4521
4522 if (exp.X_op == O_constant)
036dc3f7
PB
4523 {
4524 inst.operands[i].imm = exp.X_add_number & 0xffffffff;
4525 /* If we're on a 64-bit host, then a 64-bit number can be returned using
4526 O_constant. We have to be careful not to break compilation for
4527 32-bit X_add_number, though. */
58ad575f 4528 if ((exp.X_add_number & ~(offsetT)(0xffffffffU)) != 0)
036dc3f7
PB
4529 {
4530 /* X >> 32 is illegal if sizeof (exp.X_add_number) == 4. */
4531 inst.operands[i].reg = ((exp.X_add_number >> 16) >> 16) & 0xffffffff;
4532 inst.operands[i].regisimm = 1;
4533 }
4534 }
5287ad62 4535 else if (exp.X_op == O_big
95b75c01 4536 && LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 32)
5287ad62
JB
4537 {
4538 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
95b75c01 4539
5287ad62
JB
4540 /* Bignums have their least significant bits in
4541 generic_bignum[0]. Make sure we put 32 bits in imm and
4542 32 bits in reg, in a (hopefully) portable way. */
9c2799c2 4543 gas_assert (parts != 0);
95b75c01
NC
4544
4545 /* Make sure that the number is not too big.
4546 PR 11972: Bignums can now be sign-extended to the
4547 size of a .octa so check that the out of range bits
4548 are all zero or all one. */
4549 if (LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 64)
4550 {
4551 LITTLENUM_TYPE m = -1;
4552
4553 if (generic_bignum[parts * 2] != 0
4554 && generic_bignum[parts * 2] != m)
4555 return FAIL;
4556
4557 for (j = parts * 2 + 1; j < (unsigned) exp.X_add_number; j++)
4558 if (generic_bignum[j] != generic_bignum[j-1])
4559 return FAIL;
4560 }
4561
5287ad62
JB
4562 inst.operands[i].imm = 0;
4563 for (j = 0; j < parts; j++, idx++)
4564 inst.operands[i].imm |= generic_bignum[idx]
4565 << (LITTLENUM_NUMBER_OF_BITS * j);
4566 inst.operands[i].reg = 0;
4567 for (j = 0; j < parts; j++, idx++)
4568 inst.operands[i].reg |= generic_bignum[idx]
4569 << (LITTLENUM_NUMBER_OF_BITS * j);
4570 inst.operands[i].regisimm = 1;
4571 }
4572 else
4573 return FAIL;
5f4273c7 4574
5287ad62
JB
4575 *str = ptr;
4576
4577 return SUCCESS;
4578}
4579
c19d1205
ZW
4580/* Returns the pseudo-register number of an FPA immediate constant,
4581 or FAIL if there isn't a valid constant here. */
b99bd4ef 4582
c19d1205
ZW
4583static int
4584parse_fpa_immediate (char ** str)
4585{
4586 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4587 char * save_in;
4588 expressionS exp;
4589 int i;
4590 int j;
b99bd4ef 4591
c19d1205
ZW
4592 /* First try and match exact strings, this is to guarantee
4593 that some formats will work even for cross assembly. */
b99bd4ef 4594
c19d1205
ZW
4595 for (i = 0; fp_const[i]; i++)
4596 {
4597 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4598 {
c19d1205 4599 char *start = *str;
b99bd4ef 4600
c19d1205
ZW
4601 *str += strlen (fp_const[i]);
4602 if (is_end_of_line[(unsigned char) **str])
4603 return i + 8;
4604 *str = start;
4605 }
4606 }
b99bd4ef 4607
c19d1205
ZW
4608 /* Just because we didn't get a match doesn't mean that the constant
4609 isn't valid, just that it is in a format that we don't
4610 automatically recognize. Try parsing it with the standard
4611 expression routines. */
b99bd4ef 4612
c19d1205 4613 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4614
c19d1205
ZW
4615 /* Look for a raw floating point number. */
4616 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4617 && is_end_of_line[(unsigned char) *save_in])
4618 {
4619 for (i = 0; i < NUM_FLOAT_VALS; i++)
4620 {
4621 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4622 {
c19d1205
ZW
4623 if (words[j] != fp_values[i][j])
4624 break;
b99bd4ef
NC
4625 }
4626
c19d1205 4627 if (j == MAX_LITTLENUMS)
b99bd4ef 4628 {
c19d1205
ZW
4629 *str = save_in;
4630 return i + 8;
b99bd4ef
NC
4631 }
4632 }
4633 }
b99bd4ef 4634
c19d1205
ZW
4635 /* Try and parse a more complex expression, this will probably fail
4636 unless the code uses a floating point prefix (eg "0f"). */
4637 save_in = input_line_pointer;
4638 input_line_pointer = *str;
4639 if (expression (&exp) == absolute_section
4640 && exp.X_op == O_big
4641 && exp.X_add_number < 0)
4642 {
4643 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4644 Ditto for 15. */
4645 if (gen_to_words (words, 5, (long) 15) == 0)
4646 {
4647 for (i = 0; i < NUM_FLOAT_VALS; i++)
4648 {
4649 for (j = 0; j < MAX_LITTLENUMS; j++)
4650 {
4651 if (words[j] != fp_values[i][j])
4652 break;
4653 }
b99bd4ef 4654
c19d1205
ZW
4655 if (j == MAX_LITTLENUMS)
4656 {
4657 *str = input_line_pointer;
4658 input_line_pointer = save_in;
4659 return i + 8;
4660 }
4661 }
4662 }
b99bd4ef
NC
4663 }
4664
c19d1205
ZW
4665 *str = input_line_pointer;
4666 input_line_pointer = save_in;
4667 inst.error = _("invalid FPA immediate expression");
4668 return FAIL;
b99bd4ef
NC
4669}
4670
136da414
JB
4671/* Returns 1 if a number has "quarter-precision" float format
4672 0baBbbbbbc defgh000 00000000 00000000. */
4673
4674static int
4675is_quarter_float (unsigned imm)
4676{
4677 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4678 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4679}
4680
4681/* Parse an 8-bit "quarter-precision" floating point number of the form:
4682 0baBbbbbbc defgh000 00000000 00000000.
c96612cc
JB
4683 The zero and minus-zero cases need special handling, since they can't be
4684 encoded in the "quarter-precision" float format, but can nonetheless be
4685 loaded as integer constants. */
136da414
JB
4686
4687static unsigned
4688parse_qfloat_immediate (char **ccp, int *immed)
4689{
4690 char *str = *ccp;
c96612cc 4691 char *fpnum;
136da414 4692 LITTLENUM_TYPE words[MAX_LITTLENUMS];
c96612cc 4693 int found_fpchar = 0;
5f4273c7 4694
136da414 4695 skip_past_char (&str, '#');
5f4273c7 4696
c96612cc
JB
4697 /* We must not accidentally parse an integer as a floating-point number. Make
4698 sure that the value we parse is not an integer by checking for special
4699 characters '.' or 'e'.
4700 FIXME: This is a horrible hack, but doing better is tricky because type
4701 information isn't in a very usable state at parse time. */
4702 fpnum = str;
4703 skip_whitespace (fpnum);
4704
4705 if (strncmp (fpnum, "0x", 2) == 0)
4706 return FAIL;
4707 else
4708 {
4709 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
4710 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
4711 {
4712 found_fpchar = 1;
4713 break;
4714 }
4715
4716 if (!found_fpchar)
4717 return FAIL;
4718 }
5f4273c7 4719
136da414
JB
4720 if ((str = atof_ieee (str, 's', words)) != NULL)
4721 {
4722 unsigned fpword = 0;
4723 int i;
5f4273c7 4724
136da414
JB
4725 /* Our FP word must be 32 bits (single-precision FP). */
4726 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
4727 {
4728 fpword <<= LITTLENUM_NUMBER_OF_BITS;
4729 fpword |= words[i];
4730 }
5f4273c7 4731
c96612cc 4732 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
136da414
JB
4733 *immed = fpword;
4734 else
4735 return FAIL;
4736
4737 *ccp = str;
5f4273c7 4738
136da414
JB
4739 return SUCCESS;
4740 }
5f4273c7 4741
136da414
JB
4742 return FAIL;
4743}
4744
c19d1205
ZW
4745/* Shift operands. */
4746enum shift_kind
b99bd4ef 4747{
c19d1205
ZW
4748 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
4749};
b99bd4ef 4750
c19d1205
ZW
4751struct asm_shift_name
4752{
4753 const char *name;
4754 enum shift_kind kind;
4755};
b99bd4ef 4756
c19d1205
ZW
4757/* Third argument to parse_shift. */
4758enum parse_shift_mode
4759{
4760 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
4761 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
4762 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
4763 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
4764 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
4765};
b99bd4ef 4766
c19d1205
ZW
4767/* Parse a <shift> specifier on an ARM data processing instruction.
4768 This has three forms:
b99bd4ef 4769
c19d1205
ZW
4770 (LSL|LSR|ASL|ASR|ROR) Rs
4771 (LSL|LSR|ASL|ASR|ROR) #imm
4772 RRX
b99bd4ef 4773
c19d1205
ZW
4774 Note that ASL is assimilated to LSL in the instruction encoding, and
4775 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 4776
c19d1205
ZW
4777static int
4778parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 4779{
c19d1205
ZW
4780 const struct asm_shift_name *shift_name;
4781 enum shift_kind shift;
4782 char *s = *str;
4783 char *p = s;
4784 int reg;
b99bd4ef 4785
c19d1205
ZW
4786 for (p = *str; ISALPHA (*p); p++)
4787 ;
b99bd4ef 4788
c19d1205 4789 if (p == *str)
b99bd4ef 4790 {
c19d1205
ZW
4791 inst.error = _("shift expression expected");
4792 return FAIL;
b99bd4ef
NC
4793 }
4794
21d799b5
NC
4795 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
4796 p - *str);
c19d1205
ZW
4797
4798 if (shift_name == NULL)
b99bd4ef 4799 {
c19d1205
ZW
4800 inst.error = _("shift expression expected");
4801 return FAIL;
b99bd4ef
NC
4802 }
4803
c19d1205 4804 shift = shift_name->kind;
b99bd4ef 4805
c19d1205
ZW
4806 switch (mode)
4807 {
4808 case NO_SHIFT_RESTRICT:
4809 case SHIFT_IMMEDIATE: break;
b99bd4ef 4810
c19d1205
ZW
4811 case SHIFT_LSL_OR_ASR_IMMEDIATE:
4812 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
4813 {
4814 inst.error = _("'LSL' or 'ASR' required");
4815 return FAIL;
4816 }
4817 break;
b99bd4ef 4818
c19d1205
ZW
4819 case SHIFT_LSL_IMMEDIATE:
4820 if (shift != SHIFT_LSL)
4821 {
4822 inst.error = _("'LSL' required");
4823 return FAIL;
4824 }
4825 break;
b99bd4ef 4826
c19d1205
ZW
4827 case SHIFT_ASR_IMMEDIATE:
4828 if (shift != SHIFT_ASR)
4829 {
4830 inst.error = _("'ASR' required");
4831 return FAIL;
4832 }
4833 break;
b99bd4ef 4834
c19d1205
ZW
4835 default: abort ();
4836 }
b99bd4ef 4837
c19d1205
ZW
4838 if (shift != SHIFT_RRX)
4839 {
4840 /* Whitespace can appear here if the next thing is a bare digit. */
4841 skip_whitespace (p);
b99bd4ef 4842
c19d1205 4843 if (mode == NO_SHIFT_RESTRICT
dcbf9037 4844 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4845 {
4846 inst.operands[i].imm = reg;
4847 inst.operands[i].immisreg = 1;
4848 }
4849 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4850 return FAIL;
4851 }
4852 inst.operands[i].shift_kind = shift;
4853 inst.operands[i].shifted = 1;
4854 *str = p;
4855 return SUCCESS;
b99bd4ef
NC
4856}
4857
c19d1205 4858/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 4859
c19d1205
ZW
4860 #<immediate>
4861 #<immediate>, <rotate>
4862 <Rm>
4863 <Rm>, <shift>
b99bd4ef 4864
c19d1205
ZW
4865 where <shift> is defined by parse_shift above, and <rotate> is a
4866 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 4867 is deferred to md_apply_fix. */
b99bd4ef 4868
c19d1205
ZW
4869static int
4870parse_shifter_operand (char **str, int i)
4871{
4872 int value;
91d6fa6a 4873 expressionS exp;
b99bd4ef 4874
dcbf9037 4875 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4876 {
4877 inst.operands[i].reg = value;
4878 inst.operands[i].isreg = 1;
b99bd4ef 4879
c19d1205
ZW
4880 /* parse_shift will override this if appropriate */
4881 inst.reloc.exp.X_op = O_constant;
4882 inst.reloc.exp.X_add_number = 0;
b99bd4ef 4883
c19d1205
ZW
4884 if (skip_past_comma (str) == FAIL)
4885 return SUCCESS;
b99bd4ef 4886
c19d1205
ZW
4887 /* Shift operation on register. */
4888 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
4889 }
4890
c19d1205
ZW
4891 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
4892 return FAIL;
b99bd4ef 4893
c19d1205 4894 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 4895 {
c19d1205 4896 /* #x, y -- ie explicit rotation by Y. */
91d6fa6a 4897 if (my_get_expression (&exp, str, GE_NO_PREFIX))
c19d1205 4898 return FAIL;
b99bd4ef 4899
91d6fa6a 4900 if (exp.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
c19d1205
ZW
4901 {
4902 inst.error = _("constant expression expected");
4903 return FAIL;
4904 }
b99bd4ef 4905
91d6fa6a 4906 value = exp.X_add_number;
c19d1205
ZW
4907 if (value < 0 || value > 30 || value % 2 != 0)
4908 {
4909 inst.error = _("invalid rotation");
4910 return FAIL;
4911 }
4912 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
4913 {
4914 inst.error = _("invalid constant");
4915 return FAIL;
4916 }
09d92015 4917
a415b1cd
JB
4918 /* Encode as specified. */
4919 inst.operands[i].imm = inst.reloc.exp.X_add_number | value << 7;
4920 return SUCCESS;
09d92015
MM
4921 }
4922
c19d1205
ZW
4923 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
4924 inst.reloc.pc_rel = 0;
4925 return SUCCESS;
09d92015
MM
4926}
4927
4962c51a
MS
4928/* Group relocation information. Each entry in the table contains the
4929 textual name of the relocation as may appear in assembler source
4930 and must end with a colon.
4931 Along with this textual name are the relocation codes to be used if
4932 the corresponding instruction is an ALU instruction (ADD or SUB only),
4933 an LDR, an LDRS, or an LDC. */
4934
4935struct group_reloc_table_entry
4936{
4937 const char *name;
4938 int alu_code;
4939 int ldr_code;
4940 int ldrs_code;
4941 int ldc_code;
4942};
4943
4944typedef enum
4945{
4946 /* Varieties of non-ALU group relocation. */
4947
4948 GROUP_LDR,
4949 GROUP_LDRS,
4950 GROUP_LDC
4951} group_reloc_type;
4952
4953static struct group_reloc_table_entry group_reloc_table[] =
4954 { /* Program counter relative: */
4955 { "pc_g0_nc",
4956 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
4957 0, /* LDR */
4958 0, /* LDRS */
4959 0 }, /* LDC */
4960 { "pc_g0",
4961 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
4962 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
4963 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
4964 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
4965 { "pc_g1_nc",
4966 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
4967 0, /* LDR */
4968 0, /* LDRS */
4969 0 }, /* LDC */
4970 { "pc_g1",
4971 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
4972 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
4973 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
4974 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
4975 { "pc_g2",
4976 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
4977 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
4978 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
4979 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
4980 /* Section base relative */
4981 { "sb_g0_nc",
4982 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
4983 0, /* LDR */
4984 0, /* LDRS */
4985 0 }, /* LDC */
4986 { "sb_g0",
4987 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
4988 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
4989 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
4990 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
4991 { "sb_g1_nc",
4992 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
4993 0, /* LDR */
4994 0, /* LDRS */
4995 0 }, /* LDC */
4996 { "sb_g1",
4997 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
4998 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
4999 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
5000 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
5001 { "sb_g2",
5002 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
5003 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5004 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
5005 BFD_RELOC_ARM_LDC_SB_G2 } }; /* LDC */
5006
5007/* Given the address of a pointer pointing to the textual name of a group
5008 relocation as may appear in assembler source, attempt to find its details
5009 in group_reloc_table. The pointer will be updated to the character after
5010 the trailing colon. On failure, FAIL will be returned; SUCCESS
5011 otherwise. On success, *entry will be updated to point at the relevant
5012 group_reloc_table entry. */
5013
5014static int
5015find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5016{
5017 unsigned int i;
5018 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5019 {
5020 int length = strlen (group_reloc_table[i].name);
5021
5f4273c7
NC
5022 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5023 && (*str)[length] == ':')
4962c51a
MS
5024 {
5025 *out = &group_reloc_table[i];
5026 *str += (length + 1);
5027 return SUCCESS;
5028 }
5029 }
5030
5031 return FAIL;
5032}
5033
5034/* Parse a <shifter_operand> for an ARM data processing instruction
5035 (as for parse_shifter_operand) where group relocations are allowed:
5036
5037 #<immediate>
5038 #<immediate>, <rotate>
5039 #:<group_reloc>:<expression>
5040 <Rm>
5041 <Rm>, <shift>
5042
5043 where <group_reloc> is one of the strings defined in group_reloc_table.
5044 The hashes are optional.
5045
5046 Everything else is as for parse_shifter_operand. */
5047
5048static parse_operand_result
5049parse_shifter_operand_group_reloc (char **str, int i)
5050{
5051 /* Determine if we have the sequence of characters #: or just :
5052 coming next. If we do, then we check for a group relocation.
5053 If we don't, punt the whole lot to parse_shifter_operand. */
5054
5055 if (((*str)[0] == '#' && (*str)[1] == ':')
5056 || (*str)[0] == ':')
5057 {
5058 struct group_reloc_table_entry *entry;
5059
5060 if ((*str)[0] == '#')
5061 (*str) += 2;
5062 else
5063 (*str)++;
5064
5065 /* Try to parse a group relocation. Anything else is an error. */
5066 if (find_group_reloc_table_entry (str, &entry) == FAIL)
5067 {
5068 inst.error = _("unknown group relocation");
5069 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5070 }
5071
5072 /* We now have the group relocation table entry corresponding to
5073 the name in the assembler source. Next, we parse the expression. */
5074 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
5075 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5076
5077 /* Record the relocation type (always the ALU variant here). */
21d799b5 5078 inst.reloc.type = (bfd_reloc_code_real_type) entry->alu_code;
9c2799c2 5079 gas_assert (inst.reloc.type != 0);
4962c51a
MS
5080
5081 return PARSE_OPERAND_SUCCESS;
5082 }
5083 else
5084 return parse_shifter_operand (str, i) == SUCCESS
5085 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
5086
5087 /* Never reached. */
5088}
5089
8e560766
MGD
5090/* Parse a Neon alignment expression. Information is written to
5091 inst.operands[i]. We assume the initial ':' has been skipped.
fa94de6b 5092
8e560766
MGD
5093 align .imm = align << 8, .immisalign=1, .preind=0 */
5094static parse_operand_result
5095parse_neon_alignment (char **str, int i)
5096{
5097 char *p = *str;
5098 expressionS exp;
5099
5100 my_get_expression (&exp, &p, GE_NO_PREFIX);
5101
5102 if (exp.X_op != O_constant)
5103 {
5104 inst.error = _("alignment must be constant");
5105 return PARSE_OPERAND_FAIL;
5106 }
5107
5108 inst.operands[i].imm = exp.X_add_number << 8;
5109 inst.operands[i].immisalign = 1;
5110 /* Alignments are not pre-indexes. */
5111 inst.operands[i].preind = 0;
5112
5113 *str = p;
5114 return PARSE_OPERAND_SUCCESS;
5115}
5116
c19d1205
ZW
5117/* Parse all forms of an ARM address expression. Information is written
5118 to inst.operands[i] and/or inst.reloc.
09d92015 5119
c19d1205 5120 Preindexed addressing (.preind=1):
09d92015 5121
c19d1205
ZW
5122 [Rn, #offset] .reg=Rn .reloc.exp=offset
5123 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5124 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5125 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5126
c19d1205 5127 These three may have a trailing ! which causes .writeback to be set also.
09d92015 5128
c19d1205 5129 Postindexed addressing (.postind=1, .writeback=1):
09d92015 5130
c19d1205
ZW
5131 [Rn], #offset .reg=Rn .reloc.exp=offset
5132 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5133 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5134 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5135
c19d1205 5136 Unindexed addressing (.preind=0, .postind=0):
09d92015 5137
c19d1205 5138 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 5139
c19d1205 5140 Other:
09d92015 5141
c19d1205
ZW
5142 [Rn]{!} shorthand for [Rn,#0]{!}
5143 =immediate .isreg=0 .reloc.exp=immediate
5144 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 5145
c19d1205
ZW
5146 It is the caller's responsibility to check for addressing modes not
5147 supported by the instruction, and to set inst.reloc.type. */
5148
4962c51a
MS
5149static parse_operand_result
5150parse_address_main (char **str, int i, int group_relocations,
5151 group_reloc_type group_type)
09d92015 5152{
c19d1205
ZW
5153 char *p = *str;
5154 int reg;
09d92015 5155
c19d1205 5156 if (skip_past_char (&p, '[') == FAIL)
09d92015 5157 {
c19d1205
ZW
5158 if (skip_past_char (&p, '=') == FAIL)
5159 {
974da60d 5160 /* Bare address - translate to PC-relative offset. */
c19d1205
ZW
5161 inst.reloc.pc_rel = 1;
5162 inst.operands[i].reg = REG_PC;
5163 inst.operands[i].isreg = 1;
5164 inst.operands[i].preind = 1;
5165 }
974da60d 5166 /* Otherwise a load-constant pseudo op, no special treatment needed here. */
09d92015 5167
c19d1205 5168 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4962c51a 5169 return PARSE_OPERAND_FAIL;
09d92015 5170
c19d1205 5171 *str = p;
4962c51a 5172 return PARSE_OPERAND_SUCCESS;
09d92015
MM
5173 }
5174
8ab8155f
NC
5175 /* PR gas/14887: Allow for whitespace after the opening bracket. */
5176 skip_whitespace (p);
5177
dcbf9037 5178 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 5179 {
c19d1205 5180 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 5181 return PARSE_OPERAND_FAIL;
09d92015 5182 }
c19d1205
ZW
5183 inst.operands[i].reg = reg;
5184 inst.operands[i].isreg = 1;
09d92015 5185
c19d1205 5186 if (skip_past_comma (&p) == SUCCESS)
09d92015 5187 {
c19d1205 5188 inst.operands[i].preind = 1;
09d92015 5189
c19d1205
ZW
5190 if (*p == '+') p++;
5191 else if (*p == '-') p++, inst.operands[i].negative = 1;
5192
dcbf9037 5193 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 5194 {
c19d1205
ZW
5195 inst.operands[i].imm = reg;
5196 inst.operands[i].immisreg = 1;
5197
5198 if (skip_past_comma (&p) == SUCCESS)
5199 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5200 return PARSE_OPERAND_FAIL;
c19d1205 5201 }
5287ad62 5202 else if (skip_past_char (&p, ':') == SUCCESS)
8e560766
MGD
5203 {
5204 /* FIXME: '@' should be used here, but it's filtered out by generic
5205 code before we get to see it here. This may be subject to
5206 change. */
5207 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5208
8e560766
MGD
5209 if (result != PARSE_OPERAND_SUCCESS)
5210 return result;
5211 }
c19d1205
ZW
5212 else
5213 {
5214 if (inst.operands[i].negative)
5215 {
5216 inst.operands[i].negative = 0;
5217 p--;
5218 }
4962c51a 5219
5f4273c7
NC
5220 if (group_relocations
5221 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4962c51a
MS
5222 {
5223 struct group_reloc_table_entry *entry;
5224
5225 /* Skip over the #: or : sequence. */
5226 if (*p == '#')
5227 p += 2;
5228 else
5229 p++;
5230
5231 /* Try to parse a group relocation. Anything else is an
5232 error. */
5233 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5234 {
5235 inst.error = _("unknown group relocation");
5236 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5237 }
5238
5239 /* We now have the group relocation table entry corresponding to
5240 the name in the assembler source. Next, we parse the
5241 expression. */
5242 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5243 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5244
5245 /* Record the relocation type. */
5246 switch (group_type)
5247 {
5248 case GROUP_LDR:
21d799b5 5249 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldr_code;
4962c51a
MS
5250 break;
5251
5252 case GROUP_LDRS:
21d799b5 5253 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldrs_code;
4962c51a
MS
5254 break;
5255
5256 case GROUP_LDC:
21d799b5 5257 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldc_code;
4962c51a
MS
5258 break;
5259
5260 default:
9c2799c2 5261 gas_assert (0);
4962c51a
MS
5262 }
5263
5264 if (inst.reloc.type == 0)
5265 {
5266 inst.error = _("this group relocation is not allowed on this instruction");
5267 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5268 }
5269 }
5270 else
26d97720
NS
5271 {
5272 char *q = p;
5273 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5274 return PARSE_OPERAND_FAIL;
5275 /* If the offset is 0, find out if it's a +0 or -0. */
5276 if (inst.reloc.exp.X_op == O_constant
5277 && inst.reloc.exp.X_add_number == 0)
5278 {
5279 skip_whitespace (q);
5280 if (*q == '#')
5281 {
5282 q++;
5283 skip_whitespace (q);
5284 }
5285 if (*q == '-')
5286 inst.operands[i].negative = 1;
5287 }
5288 }
09d92015
MM
5289 }
5290 }
8e560766
MGD
5291 else if (skip_past_char (&p, ':') == SUCCESS)
5292 {
5293 /* FIXME: '@' should be used here, but it's filtered out by generic code
5294 before we get to see it here. This may be subject to change. */
5295 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5296
8e560766
MGD
5297 if (result != PARSE_OPERAND_SUCCESS)
5298 return result;
5299 }
09d92015 5300
c19d1205 5301 if (skip_past_char (&p, ']') == FAIL)
09d92015 5302 {
c19d1205 5303 inst.error = _("']' expected");
4962c51a 5304 return PARSE_OPERAND_FAIL;
09d92015
MM
5305 }
5306
c19d1205
ZW
5307 if (skip_past_char (&p, '!') == SUCCESS)
5308 inst.operands[i].writeback = 1;
09d92015 5309
c19d1205 5310 else if (skip_past_comma (&p) == SUCCESS)
09d92015 5311 {
c19d1205
ZW
5312 if (skip_past_char (&p, '{') == SUCCESS)
5313 {
5314 /* [Rn], {expr} - unindexed, with option */
5315 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 5316 0, 255, TRUE) == FAIL)
4962c51a 5317 return PARSE_OPERAND_FAIL;
09d92015 5318
c19d1205
ZW
5319 if (skip_past_char (&p, '}') == FAIL)
5320 {
5321 inst.error = _("'}' expected at end of 'option' field");
4962c51a 5322 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5323 }
5324 if (inst.operands[i].preind)
5325 {
5326 inst.error = _("cannot combine index with option");
4962c51a 5327 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5328 }
5329 *str = p;
4962c51a 5330 return PARSE_OPERAND_SUCCESS;
09d92015 5331 }
c19d1205
ZW
5332 else
5333 {
5334 inst.operands[i].postind = 1;
5335 inst.operands[i].writeback = 1;
09d92015 5336
c19d1205
ZW
5337 if (inst.operands[i].preind)
5338 {
5339 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 5340 return PARSE_OPERAND_FAIL;
c19d1205 5341 }
09d92015 5342
c19d1205
ZW
5343 if (*p == '+') p++;
5344 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 5345
dcbf9037 5346 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 5347 {
5287ad62
JB
5348 /* We might be using the immediate for alignment already. If we
5349 are, OR the register number into the low-order bits. */
5350 if (inst.operands[i].immisalign)
5351 inst.operands[i].imm |= reg;
5352 else
5353 inst.operands[i].imm = reg;
c19d1205 5354 inst.operands[i].immisreg = 1;
a737bd4d 5355
c19d1205
ZW
5356 if (skip_past_comma (&p) == SUCCESS)
5357 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5358 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5359 }
5360 else
5361 {
26d97720 5362 char *q = p;
c19d1205
ZW
5363 if (inst.operands[i].negative)
5364 {
5365 inst.operands[i].negative = 0;
5366 p--;
5367 }
5368 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 5369 return PARSE_OPERAND_FAIL;
26d97720
NS
5370 /* If the offset is 0, find out if it's a +0 or -0. */
5371 if (inst.reloc.exp.X_op == O_constant
5372 && inst.reloc.exp.X_add_number == 0)
5373 {
5374 skip_whitespace (q);
5375 if (*q == '#')
5376 {
5377 q++;
5378 skip_whitespace (q);
5379 }
5380 if (*q == '-')
5381 inst.operands[i].negative = 1;
5382 }
c19d1205
ZW
5383 }
5384 }
a737bd4d
NC
5385 }
5386
c19d1205
ZW
5387 /* If at this point neither .preind nor .postind is set, we have a
5388 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
5389 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
5390 {
5391 inst.operands[i].preind = 1;
5392 inst.reloc.exp.X_op = O_constant;
5393 inst.reloc.exp.X_add_number = 0;
5394 }
5395 *str = p;
4962c51a
MS
5396 return PARSE_OPERAND_SUCCESS;
5397}
5398
5399static int
5400parse_address (char **str, int i)
5401{
21d799b5 5402 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
4962c51a
MS
5403 ? SUCCESS : FAIL;
5404}
5405
5406static parse_operand_result
5407parse_address_group_reloc (char **str, int i, group_reloc_type type)
5408{
5409 return parse_address_main (str, i, 1, type);
a737bd4d
NC
5410}
5411
b6895b4f
PB
5412/* Parse an operand for a MOVW or MOVT instruction. */
5413static int
5414parse_half (char **str)
5415{
5416 char * p;
5f4273c7 5417
b6895b4f
PB
5418 p = *str;
5419 skip_past_char (&p, '#');
5f4273c7 5420 if (strncasecmp (p, ":lower16:", 9) == 0)
b6895b4f
PB
5421 inst.reloc.type = BFD_RELOC_ARM_MOVW;
5422 else if (strncasecmp (p, ":upper16:", 9) == 0)
5423 inst.reloc.type = BFD_RELOC_ARM_MOVT;
5424
5425 if (inst.reloc.type != BFD_RELOC_UNUSED)
5426 {
5427 p += 9;
5f4273c7 5428 skip_whitespace (p);
b6895b4f
PB
5429 }
5430
5431 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5432 return FAIL;
5433
5434 if (inst.reloc.type == BFD_RELOC_UNUSED)
5435 {
5436 if (inst.reloc.exp.X_op != O_constant)
5437 {
5438 inst.error = _("constant expression expected");
5439 return FAIL;
5440 }
5441 if (inst.reloc.exp.X_add_number < 0
5442 || inst.reloc.exp.X_add_number > 0xffff)
5443 {
5444 inst.error = _("immediate value out of range");
5445 return FAIL;
5446 }
5447 }
5448 *str = p;
5449 return SUCCESS;
5450}
5451
c19d1205 5452/* Miscellaneous. */
a737bd4d 5453
c19d1205
ZW
5454/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
5455 or a bitmask suitable to be or-ed into the ARM msr instruction. */
5456static int
d2cd1205 5457parse_psr (char **str, bfd_boolean lhs)
09d92015 5458{
c19d1205
ZW
5459 char *p;
5460 unsigned long psr_field;
62b3e311
PB
5461 const struct asm_psr *psr;
5462 char *start;
d2cd1205 5463 bfd_boolean is_apsr = FALSE;
ac7f631b 5464 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
09d92015 5465
a4482bb6
NC
5466 /* PR gas/12698: If the user has specified -march=all then m_profile will
5467 be TRUE, but we want to ignore it in this case as we are building for any
5468 CPU type, including non-m variants. */
5469 if (selected_cpu.core == arm_arch_any.core)
5470 m_profile = FALSE;
5471
c19d1205
ZW
5472 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
5473 feature for ease of use and backwards compatibility. */
5474 p = *str;
62b3e311 5475 if (strncasecmp (p, "SPSR", 4) == 0)
d2cd1205
JB
5476 {
5477 if (m_profile)
5478 goto unsupported_psr;
fa94de6b 5479
d2cd1205
JB
5480 psr_field = SPSR_BIT;
5481 }
5482 else if (strncasecmp (p, "CPSR", 4) == 0)
5483 {
5484 if (m_profile)
5485 goto unsupported_psr;
5486
5487 psr_field = 0;
5488 }
5489 else if (strncasecmp (p, "APSR", 4) == 0)
5490 {
5491 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
5492 and ARMv7-R architecture CPUs. */
5493 is_apsr = TRUE;
5494 psr_field = 0;
5495 }
5496 else if (m_profile)
62b3e311
PB
5497 {
5498 start = p;
5499 do
5500 p++;
5501 while (ISALNUM (*p) || *p == '_');
5502
d2cd1205
JB
5503 if (strncasecmp (start, "iapsr", 5) == 0
5504 || strncasecmp (start, "eapsr", 5) == 0
5505 || strncasecmp (start, "xpsr", 4) == 0
5506 || strncasecmp (start, "psr", 3) == 0)
5507 p = start + strcspn (start, "rR") + 1;
5508
21d799b5
NC
5509 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
5510 p - start);
d2cd1205 5511
62b3e311
PB
5512 if (!psr)
5513 return FAIL;
09d92015 5514
d2cd1205
JB
5515 /* If APSR is being written, a bitfield may be specified. Note that
5516 APSR itself is handled above. */
5517 if (psr->field <= 3)
5518 {
5519 psr_field = psr->field;
5520 is_apsr = TRUE;
5521 goto check_suffix;
5522 }
5523
62b3e311 5524 *str = p;
d2cd1205
JB
5525 /* M-profile MSR instructions have the mask field set to "10", except
5526 *PSR variants which modify APSR, which may use a different mask (and
5527 have been handled already). Do that by setting the PSR_f field
5528 here. */
5529 return psr->field | (lhs ? PSR_f : 0);
62b3e311 5530 }
d2cd1205
JB
5531 else
5532 goto unsupported_psr;
09d92015 5533
62b3e311 5534 p += 4;
d2cd1205 5535check_suffix:
c19d1205
ZW
5536 if (*p == '_')
5537 {
5538 /* A suffix follows. */
c19d1205
ZW
5539 p++;
5540 start = p;
a737bd4d 5541
c19d1205
ZW
5542 do
5543 p++;
5544 while (ISALNUM (*p) || *p == '_');
a737bd4d 5545
d2cd1205
JB
5546 if (is_apsr)
5547 {
5548 /* APSR uses a notation for bits, rather than fields. */
5549 unsigned int nzcvq_bits = 0;
5550 unsigned int g_bit = 0;
5551 char *bit;
fa94de6b 5552
d2cd1205
JB
5553 for (bit = start; bit != p; bit++)
5554 {
5555 switch (TOLOWER (*bit))
5556 {
5557 case 'n':
5558 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
5559 break;
5560
5561 case 'z':
5562 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
5563 break;
5564
5565 case 'c':
5566 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
5567 break;
5568
5569 case 'v':
5570 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
5571 break;
fa94de6b 5572
d2cd1205
JB
5573 case 'q':
5574 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
5575 break;
fa94de6b 5576
d2cd1205
JB
5577 case 'g':
5578 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
5579 break;
fa94de6b 5580
d2cd1205
JB
5581 default:
5582 inst.error = _("unexpected bit specified after APSR");
5583 return FAIL;
5584 }
5585 }
fa94de6b 5586
d2cd1205
JB
5587 if (nzcvq_bits == 0x1f)
5588 psr_field |= PSR_f;
fa94de6b 5589
d2cd1205
JB
5590 if (g_bit == 0x1)
5591 {
5592 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
5593 {
5594 inst.error = _("selected processor does not "
5595 "support DSP extension");
5596 return FAIL;
5597 }
5598
5599 psr_field |= PSR_s;
5600 }
fa94de6b 5601
d2cd1205
JB
5602 if ((nzcvq_bits & 0x20) != 0
5603 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
5604 || (g_bit & 0x2) != 0)
5605 {
5606 inst.error = _("bad bitmask specified after APSR");
5607 return FAIL;
5608 }
5609 }
5610 else
5611 {
5612 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
5613 p - start);
5614 if (!psr)
5615 goto error;
a737bd4d 5616
d2cd1205
JB
5617 psr_field |= psr->field;
5618 }
a737bd4d 5619 }
c19d1205 5620 else
a737bd4d 5621 {
c19d1205
ZW
5622 if (ISALNUM (*p))
5623 goto error; /* Garbage after "[CS]PSR". */
5624
d2cd1205
JB
5625 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
5626 is deprecated, but allow it anyway. */
5627 if (is_apsr && lhs)
5628 {
5629 psr_field |= PSR_f;
5630 as_tsktsk (_("writing to APSR without specifying a bitmask is "
5631 "deprecated"));
5632 }
5633 else if (!m_profile)
5634 /* These bits are never right for M-profile devices: don't set them
5635 (only code paths which read/write APSR reach here). */
5636 psr_field |= (PSR_c | PSR_f);
a737bd4d 5637 }
c19d1205
ZW
5638 *str = p;
5639 return psr_field;
a737bd4d 5640
d2cd1205
JB
5641 unsupported_psr:
5642 inst.error = _("selected processor does not support requested special "
5643 "purpose register");
5644 return FAIL;
5645
c19d1205
ZW
5646 error:
5647 inst.error = _("flag for {c}psr instruction expected");
5648 return FAIL;
a737bd4d
NC
5649}
5650
c19d1205
ZW
5651/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
5652 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 5653
c19d1205
ZW
5654static int
5655parse_cps_flags (char **str)
a737bd4d 5656{
c19d1205
ZW
5657 int val = 0;
5658 int saw_a_flag = 0;
5659 char *s = *str;
a737bd4d 5660
c19d1205
ZW
5661 for (;;)
5662 switch (*s++)
5663 {
5664 case '\0': case ',':
5665 goto done;
a737bd4d 5666
c19d1205
ZW
5667 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
5668 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
5669 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 5670
c19d1205
ZW
5671 default:
5672 inst.error = _("unrecognized CPS flag");
5673 return FAIL;
5674 }
a737bd4d 5675
c19d1205
ZW
5676 done:
5677 if (saw_a_flag == 0)
a737bd4d 5678 {
c19d1205
ZW
5679 inst.error = _("missing CPS flags");
5680 return FAIL;
a737bd4d 5681 }
a737bd4d 5682
c19d1205
ZW
5683 *str = s - 1;
5684 return val;
a737bd4d
NC
5685}
5686
c19d1205
ZW
5687/* Parse an endian specifier ("BE" or "LE", case insensitive);
5688 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
5689
5690static int
c19d1205 5691parse_endian_specifier (char **str)
a737bd4d 5692{
c19d1205
ZW
5693 int little_endian;
5694 char *s = *str;
a737bd4d 5695
c19d1205
ZW
5696 if (strncasecmp (s, "BE", 2))
5697 little_endian = 0;
5698 else if (strncasecmp (s, "LE", 2))
5699 little_endian = 1;
5700 else
a737bd4d 5701 {
c19d1205 5702 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5703 return FAIL;
5704 }
5705
c19d1205 5706 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 5707 {
c19d1205 5708 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
5709 return FAIL;
5710 }
5711
c19d1205
ZW
5712 *str = s + 2;
5713 return little_endian;
5714}
a737bd4d 5715
c19d1205
ZW
5716/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
5717 value suitable for poking into the rotate field of an sxt or sxta
5718 instruction, or FAIL on error. */
5719
5720static int
5721parse_ror (char **str)
5722{
5723 int rot;
5724 char *s = *str;
5725
5726 if (strncasecmp (s, "ROR", 3) == 0)
5727 s += 3;
5728 else
a737bd4d 5729 {
c19d1205 5730 inst.error = _("missing rotation field after comma");
a737bd4d
NC
5731 return FAIL;
5732 }
c19d1205
ZW
5733
5734 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
5735 return FAIL;
5736
5737 switch (rot)
a737bd4d 5738 {
c19d1205
ZW
5739 case 0: *str = s; return 0x0;
5740 case 8: *str = s; return 0x1;
5741 case 16: *str = s; return 0x2;
5742 case 24: *str = s; return 0x3;
5743
5744 default:
5745 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
5746 return FAIL;
5747 }
c19d1205 5748}
a737bd4d 5749
c19d1205
ZW
5750/* Parse a conditional code (from conds[] below). The value returned is in the
5751 range 0 .. 14, or FAIL. */
5752static int
5753parse_cond (char **str)
5754{
c462b453 5755 char *q;
c19d1205 5756 const struct asm_cond *c;
c462b453
PB
5757 int n;
5758 /* Condition codes are always 2 characters, so matching up to
5759 3 characters is sufficient. */
5760 char cond[3];
a737bd4d 5761
c462b453
PB
5762 q = *str;
5763 n = 0;
5764 while (ISALPHA (*q) && n < 3)
5765 {
e07e6e58 5766 cond[n] = TOLOWER (*q);
c462b453
PB
5767 q++;
5768 n++;
5769 }
a737bd4d 5770
21d799b5 5771 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
c19d1205 5772 if (!c)
a737bd4d 5773 {
c19d1205 5774 inst.error = _("condition required");
a737bd4d
NC
5775 return FAIL;
5776 }
5777
c19d1205
ZW
5778 *str = q;
5779 return c->value;
5780}
5781
e797f7e0
MGD
5782/* If the given feature available in the selected CPU, mark it as used.
5783 Returns TRUE iff feature is available. */
5784static bfd_boolean
5785mark_feature_used (const arm_feature_set *feature)
5786{
5787 /* Ensure the option is valid on the current architecture. */
5788 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
5789 return FALSE;
5790
5791 /* Add the appropriate architecture feature for the barrier option used.
5792 */
5793 if (thumb_mode)
5794 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
5795 else
5796 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
5797
5798 return TRUE;
5799}
5800
62b3e311
PB
5801/* Parse an option for a barrier instruction. Returns the encoding for the
5802 option, or FAIL. */
5803static int
5804parse_barrier (char **str)
5805{
5806 char *p, *q;
5807 const struct asm_barrier_opt *o;
5808
5809 p = q = *str;
5810 while (ISALPHA (*q))
5811 q++;
5812
21d799b5
NC
5813 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
5814 q - p);
62b3e311
PB
5815 if (!o)
5816 return FAIL;
5817
e797f7e0
MGD
5818 if (!mark_feature_used (&o->arch))
5819 return FAIL;
5820
62b3e311
PB
5821 *str = q;
5822 return o->value;
5823}
5824
92e90b6e
PB
5825/* Parse the operands of a table branch instruction. Similar to a memory
5826 operand. */
5827static int
5828parse_tb (char **str)
5829{
5830 char * p = *str;
5831 int reg;
5832
5833 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
5834 {
5835 inst.error = _("'[' expected");
5836 return FAIL;
5837 }
92e90b6e 5838
dcbf9037 5839 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5840 {
5841 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5842 return FAIL;
5843 }
5844 inst.operands[0].reg = reg;
5845
5846 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
5847 {
5848 inst.error = _("',' expected");
5849 return FAIL;
5850 }
5f4273c7 5851
dcbf9037 5852 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5853 {
5854 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5855 return FAIL;
5856 }
5857 inst.operands[0].imm = reg;
5858
5859 if (skip_past_comma (&p) == SUCCESS)
5860 {
5861 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
5862 return FAIL;
5863 if (inst.reloc.exp.X_add_number != 1)
5864 {
5865 inst.error = _("invalid shift");
5866 return FAIL;
5867 }
5868 inst.operands[0].shifted = 1;
5869 }
5870
5871 if (skip_past_char (&p, ']') == FAIL)
5872 {
5873 inst.error = _("']' expected");
5874 return FAIL;
5875 }
5876 *str = p;
5877 return SUCCESS;
5878}
5879
5287ad62
JB
5880/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
5881 information on the types the operands can take and how they are encoded.
037e8744
JB
5882 Up to four operands may be read; this function handles setting the
5883 ".present" field for each read operand itself.
5287ad62
JB
5884 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
5885 else returns FAIL. */
5886
5887static int
5888parse_neon_mov (char **str, int *which_operand)
5889{
5890 int i = *which_operand, val;
5891 enum arm_reg_type rtype;
5892 char *ptr = *str;
dcbf9037 5893 struct neon_type_el optype;
5f4273c7 5894
dcbf9037 5895 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
5896 {
5897 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
5898 inst.operands[i].reg = val;
5899 inst.operands[i].isscalar = 1;
dcbf9037 5900 inst.operands[i].vectype = optype;
5287ad62
JB
5901 inst.operands[i++].present = 1;
5902
5903 if (skip_past_comma (&ptr) == FAIL)
5904 goto wanted_comma;
5f4273c7 5905
dcbf9037 5906 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5287ad62 5907 goto wanted_arm;
5f4273c7 5908
5287ad62
JB
5909 inst.operands[i].reg = val;
5910 inst.operands[i].isreg = 1;
5911 inst.operands[i].present = 1;
5912 }
037e8744 5913 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
dcbf9037 5914 != FAIL)
5287ad62
JB
5915 {
5916 /* Cases 0, 1, 2, 3, 5 (D only). */
5917 if (skip_past_comma (&ptr) == FAIL)
5918 goto wanted_comma;
5f4273c7 5919
5287ad62
JB
5920 inst.operands[i].reg = val;
5921 inst.operands[i].isreg = 1;
5922 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5923 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5924 inst.operands[i].isvec = 1;
dcbf9037 5925 inst.operands[i].vectype = optype;
5287ad62
JB
5926 inst.operands[i++].present = 1;
5927
dcbf9037 5928 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62 5929 {
037e8744
JB
5930 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
5931 Case 13: VMOV <Sd>, <Rm> */
5287ad62
JB
5932 inst.operands[i].reg = val;
5933 inst.operands[i].isreg = 1;
037e8744 5934 inst.operands[i].present = 1;
5287ad62
JB
5935
5936 if (rtype == REG_TYPE_NQ)
5937 {
dcbf9037 5938 first_error (_("can't use Neon quad register here"));
5287ad62
JB
5939 return FAIL;
5940 }
037e8744
JB
5941 else if (rtype != REG_TYPE_VFS)
5942 {
5943 i++;
5944 if (skip_past_comma (&ptr) == FAIL)
5945 goto wanted_comma;
5946 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5947 goto wanted_arm;
5948 inst.operands[i].reg = val;
5949 inst.operands[i].isreg = 1;
5950 inst.operands[i].present = 1;
5951 }
5287ad62 5952 }
037e8744
JB
5953 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
5954 &optype)) != FAIL)
5287ad62
JB
5955 {
5956 /* Case 0: VMOV<c><q> <Qd>, <Qm>
037e8744
JB
5957 Case 1: VMOV<c><q> <Dd>, <Dm>
5958 Case 8: VMOV.F32 <Sd>, <Sm>
5959 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
5287ad62
JB
5960
5961 inst.operands[i].reg = val;
5962 inst.operands[i].isreg = 1;
5963 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5964 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5965 inst.operands[i].isvec = 1;
dcbf9037 5966 inst.operands[i].vectype = optype;
5287ad62 5967 inst.operands[i].present = 1;
5f4273c7 5968
037e8744
JB
5969 if (skip_past_comma (&ptr) == SUCCESS)
5970 {
5971 /* Case 15. */
5972 i++;
5973
5974 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5975 goto wanted_arm;
5976
5977 inst.operands[i].reg = val;
5978 inst.operands[i].isreg = 1;
5979 inst.operands[i++].present = 1;
5f4273c7 5980
037e8744
JB
5981 if (skip_past_comma (&ptr) == FAIL)
5982 goto wanted_comma;
5f4273c7 5983
037e8744
JB
5984 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5985 goto wanted_arm;
5f4273c7 5986
037e8744
JB
5987 inst.operands[i].reg = val;
5988 inst.operands[i].isreg = 1;
1b11b49f 5989 inst.operands[i].present = 1;
037e8744 5990 }
5287ad62 5991 }
4641781c
PB
5992 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
5993 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
5994 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
5995 Case 10: VMOV.F32 <Sd>, #<imm>
5996 Case 11: VMOV.F64 <Dd>, #<imm> */
5997 inst.operands[i].immisfloat = 1;
5998 else if (parse_big_immediate (&ptr, i) == SUCCESS)
5999 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
6000 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
6001 ;
5287ad62
JB
6002 else
6003 {
dcbf9037 6004 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
5287ad62
JB
6005 return FAIL;
6006 }
6007 }
dcbf9037 6008 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6009 {
6010 /* Cases 6, 7. */
6011 inst.operands[i].reg = val;
6012 inst.operands[i].isreg = 1;
6013 inst.operands[i++].present = 1;
5f4273c7 6014
5287ad62
JB
6015 if (skip_past_comma (&ptr) == FAIL)
6016 goto wanted_comma;
5f4273c7 6017
dcbf9037 6018 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
6019 {
6020 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6021 inst.operands[i].reg = val;
6022 inst.operands[i].isscalar = 1;
6023 inst.operands[i].present = 1;
dcbf9037 6024 inst.operands[i].vectype = optype;
5287ad62 6025 }
dcbf9037 6026 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6027 {
6028 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6029 inst.operands[i].reg = val;
6030 inst.operands[i].isreg = 1;
6031 inst.operands[i++].present = 1;
5f4273c7 6032
5287ad62
JB
6033 if (skip_past_comma (&ptr) == FAIL)
6034 goto wanted_comma;
5f4273c7 6035
037e8744 6036 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
dcbf9037 6037 == FAIL)
5287ad62 6038 {
037e8744 6039 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
5287ad62
JB
6040 return FAIL;
6041 }
6042
6043 inst.operands[i].reg = val;
6044 inst.operands[i].isreg = 1;
037e8744
JB
6045 inst.operands[i].isvec = 1;
6046 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
dcbf9037 6047 inst.operands[i].vectype = optype;
5287ad62 6048 inst.operands[i].present = 1;
5f4273c7 6049
037e8744
JB
6050 if (rtype == REG_TYPE_VFS)
6051 {
6052 /* Case 14. */
6053 i++;
6054 if (skip_past_comma (&ptr) == FAIL)
6055 goto wanted_comma;
6056 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6057 &optype)) == FAIL)
6058 {
6059 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6060 return FAIL;
6061 }
6062 inst.operands[i].reg = val;
6063 inst.operands[i].isreg = 1;
6064 inst.operands[i].isvec = 1;
6065 inst.operands[i].issingle = 1;
6066 inst.operands[i].vectype = optype;
6067 inst.operands[i].present = 1;
6068 }
6069 }
6070 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
6071 != FAIL)
6072 {
6073 /* Case 13. */
6074 inst.operands[i].reg = val;
6075 inst.operands[i].isreg = 1;
6076 inst.operands[i].isvec = 1;
6077 inst.operands[i].issingle = 1;
6078 inst.operands[i].vectype = optype;
1b11b49f 6079 inst.operands[i].present = 1;
5287ad62
JB
6080 }
6081 }
6082 else
6083 {
dcbf9037 6084 first_error (_("parse error"));
5287ad62
JB
6085 return FAIL;
6086 }
6087
6088 /* Successfully parsed the operands. Update args. */
6089 *which_operand = i;
6090 *str = ptr;
6091 return SUCCESS;
6092
5f4273c7 6093 wanted_comma:
dcbf9037 6094 first_error (_("expected comma"));
5287ad62 6095 return FAIL;
5f4273c7
NC
6096
6097 wanted_arm:
dcbf9037 6098 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 6099 return FAIL;
5287ad62
JB
6100}
6101
5be8be5d
DG
6102/* Use this macro when the operand constraints are different
6103 for ARM and THUMB (e.g. ldrd). */
6104#define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6105 ((arm_operand) | ((thumb_operand) << 16))
6106
c19d1205
ZW
6107/* Matcher codes for parse_operands. */
6108enum operand_parse_code
6109{
6110 OP_stop, /* end of line */
6111
6112 OP_RR, /* ARM register */
6113 OP_RRnpc, /* ARM register, not r15 */
5be8be5d 6114 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
c19d1205 6115 OP_RRnpcb, /* ARM register, not r15, in square brackets */
fa94de6b 6116 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
55881a11 6117 optional trailing ! */
c19d1205
ZW
6118 OP_RRw, /* ARM register, not r15, optional trailing ! */
6119 OP_RCP, /* Coprocessor number */
6120 OP_RCN, /* Coprocessor register */
6121 OP_RF, /* FPA register */
6122 OP_RVS, /* VFP single precision register */
5287ad62
JB
6123 OP_RVD, /* VFP double precision register (0..15) */
6124 OP_RND, /* Neon double precision register (0..31) */
6125 OP_RNQ, /* Neon quad precision register */
037e8744 6126 OP_RVSD, /* VFP single or double precision register */
5287ad62 6127 OP_RNDQ, /* Neon double or quad precision register */
037e8744 6128 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 6129 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
6130 OP_RVC, /* VFP control register */
6131 OP_RMF, /* Maverick F register */
6132 OP_RMD, /* Maverick D register */
6133 OP_RMFX, /* Maverick FX register */
6134 OP_RMDX, /* Maverick DX register */
6135 OP_RMAX, /* Maverick AX register */
6136 OP_RMDS, /* Maverick DSPSC register */
6137 OP_RIWR, /* iWMMXt wR register */
6138 OP_RIWC, /* iWMMXt wC register */
6139 OP_RIWG, /* iWMMXt wCG register */
6140 OP_RXA, /* XScale accumulator register */
6141
6142 OP_REGLST, /* ARM register list */
6143 OP_VRSLST, /* VFP single-precision register list */
6144 OP_VRDLST, /* VFP double-precision register list */
037e8744 6145 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
6146 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
6147 OP_NSTRLST, /* Neon element/structure list */
6148
5287ad62 6149 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 6150 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
5287ad62 6151 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 6152 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
6153 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
6154 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
6155 OP_VMOV, /* Neon VMOV operands. */
4316f0d2 6156 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
5287ad62 6157 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
2d447fca 6158 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
5287ad62
JB
6159
6160 OP_I0, /* immediate zero */
c19d1205
ZW
6161 OP_I7, /* immediate value 0 .. 7 */
6162 OP_I15, /* 0 .. 15 */
6163 OP_I16, /* 1 .. 16 */
5287ad62 6164 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
6165 OP_I31, /* 0 .. 31 */
6166 OP_I31w, /* 0 .. 31, optional trailing ! */
6167 OP_I32, /* 1 .. 32 */
5287ad62
JB
6168 OP_I32z, /* 0 .. 32 */
6169 OP_I63, /* 0 .. 63 */
c19d1205 6170 OP_I63s, /* -64 .. 63 */
5287ad62
JB
6171 OP_I64, /* 1 .. 64 */
6172 OP_I64z, /* 0 .. 64 */
c19d1205 6173 OP_I255, /* 0 .. 255 */
c19d1205
ZW
6174
6175 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
6176 OP_I7b, /* 0 .. 7 */
6177 OP_I15b, /* 0 .. 15 */
6178 OP_I31b, /* 0 .. 31 */
6179
6180 OP_SH, /* shifter operand */
4962c51a 6181 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 6182 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
6183 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
6184 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
6185 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
6186 OP_EXP, /* arbitrary expression */
6187 OP_EXPi, /* same, with optional immediate prefix */
6188 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 6189 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c19d1205
ZW
6190
6191 OP_CPSF, /* CPS flags */
6192 OP_ENDI, /* Endianness specifier */
d2cd1205
JB
6193 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
6194 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
c19d1205 6195 OP_COND, /* conditional code */
92e90b6e 6196 OP_TB, /* Table branch. */
c19d1205 6197
037e8744
JB
6198 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
6199
c19d1205
ZW
6200 OP_RRnpc_I0, /* ARM register or literal 0 */
6201 OP_RR_EXr, /* ARM register or expression with opt. reloc suff. */
6202 OP_RR_EXi, /* ARM register or expression with imm prefix */
6203 OP_RF_IF, /* FPA register or immediate */
6204 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 6205 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
6206
6207 /* Optional operands. */
6208 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
6209 OP_oI31b, /* 0 .. 31 */
5287ad62 6210 OP_oI32b, /* 1 .. 32 */
5f1af56b 6211 OP_oI32z, /* 0 .. 32 */
c19d1205
ZW
6212 OP_oIffffb, /* 0 .. 65535 */
6213 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
6214
6215 OP_oRR, /* ARM register */
6216 OP_oRRnpc, /* ARM register, not the PC */
5be8be5d 6217 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
b6702015 6218 OP_oRRw, /* ARM register, not r15, optional trailing ! */
5287ad62
JB
6219 OP_oRND, /* Optional Neon double precision register */
6220 OP_oRNQ, /* Optional Neon quad precision register */
6221 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 6222 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
6223 OP_oSHll, /* LSL immediate */
6224 OP_oSHar, /* ASR immediate */
6225 OP_oSHllar, /* LSL or ASR immediate */
6226 OP_oROR, /* ROR 0/8/16/24 */
52e7f43d 6227 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
c19d1205 6228
5be8be5d
DG
6229 /* Some pre-defined mixed (ARM/THUMB) operands. */
6230 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
6231 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
6232 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
6233
c19d1205
ZW
6234 OP_FIRST_OPTIONAL = OP_oI7b
6235};
a737bd4d 6236
c19d1205
ZW
6237/* Generic instruction operand parser. This does no encoding and no
6238 semantic validation; it merely squirrels values away in the inst
6239 structure. Returns SUCCESS or FAIL depending on whether the
6240 specified grammar matched. */
6241static int
5be8be5d 6242parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
c19d1205 6243{
5be8be5d 6244 unsigned const int *upat = pattern;
c19d1205
ZW
6245 char *backtrack_pos = 0;
6246 const char *backtrack_error = 0;
99aad254 6247 int i, val = 0, backtrack_index = 0;
5287ad62 6248 enum arm_reg_type rtype;
4962c51a 6249 parse_operand_result result;
5be8be5d 6250 unsigned int op_parse_code;
c19d1205 6251
e07e6e58
NC
6252#define po_char_or_fail(chr) \
6253 do \
6254 { \
6255 if (skip_past_char (&str, chr) == FAIL) \
6256 goto bad_args; \
6257 } \
6258 while (0)
c19d1205 6259
e07e6e58
NC
6260#define po_reg_or_fail(regtype) \
6261 do \
dcbf9037 6262 { \
e07e6e58
NC
6263 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6264 & inst.operands[i].vectype); \
6265 if (val == FAIL) \
6266 { \
6267 first_error (_(reg_expected_msgs[regtype])); \
6268 goto failure; \
6269 } \
6270 inst.operands[i].reg = val; \
6271 inst.operands[i].isreg = 1; \
6272 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6273 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6274 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
6275 || rtype == REG_TYPE_VFD \
6276 || rtype == REG_TYPE_NQ); \
dcbf9037 6277 } \
e07e6e58
NC
6278 while (0)
6279
6280#define po_reg_or_goto(regtype, label) \
6281 do \
6282 { \
6283 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6284 & inst.operands[i].vectype); \
6285 if (val == FAIL) \
6286 goto label; \
dcbf9037 6287 \
e07e6e58
NC
6288 inst.operands[i].reg = val; \
6289 inst.operands[i].isreg = 1; \
6290 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6291 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6292 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
6293 || rtype == REG_TYPE_VFD \
6294 || rtype == REG_TYPE_NQ); \
6295 } \
6296 while (0)
6297
6298#define po_imm_or_fail(min, max, popt) \
6299 do \
6300 { \
6301 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
6302 goto failure; \
6303 inst.operands[i].imm = val; \
6304 } \
6305 while (0)
6306
6307#define po_scalar_or_goto(elsz, label) \
6308 do \
6309 { \
6310 val = parse_scalar (& str, elsz, & inst.operands[i].vectype); \
6311 if (val == FAIL) \
6312 goto label; \
6313 inst.operands[i].reg = val; \
6314 inst.operands[i].isscalar = 1; \
6315 } \
6316 while (0)
6317
6318#define po_misc_or_fail(expr) \
6319 do \
6320 { \
6321 if (expr) \
6322 goto failure; \
6323 } \
6324 while (0)
6325
6326#define po_misc_or_fail_no_backtrack(expr) \
6327 do \
6328 { \
6329 result = expr; \
6330 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
6331 backtrack_pos = 0; \
6332 if (result != PARSE_OPERAND_SUCCESS) \
6333 goto failure; \
6334 } \
6335 while (0)
4962c51a 6336
52e7f43d
RE
6337#define po_barrier_or_imm(str) \
6338 do \
6339 { \
6340 val = parse_barrier (&str); \
ccb84d65
JB
6341 if (val == FAIL && ! ISALPHA (*str)) \
6342 goto immediate; \
6343 if (val == FAIL \
6344 /* ISB can only take SY as an option. */ \
6345 || ((inst.instruction & 0xf0) == 0x60 \
6346 && val != 0xf)) \
52e7f43d 6347 { \
ccb84d65
JB
6348 inst.error = _("invalid barrier type"); \
6349 backtrack_pos = 0; \
6350 goto failure; \
52e7f43d
RE
6351 } \
6352 } \
6353 while (0)
6354
c19d1205
ZW
6355 skip_whitespace (str);
6356
6357 for (i = 0; upat[i] != OP_stop; i++)
6358 {
5be8be5d
DG
6359 op_parse_code = upat[i];
6360 if (op_parse_code >= 1<<16)
6361 op_parse_code = thumb ? (op_parse_code >> 16)
6362 : (op_parse_code & ((1<<16)-1));
6363
6364 if (op_parse_code >= OP_FIRST_OPTIONAL)
c19d1205
ZW
6365 {
6366 /* Remember where we are in case we need to backtrack. */
9c2799c2 6367 gas_assert (!backtrack_pos);
c19d1205
ZW
6368 backtrack_pos = str;
6369 backtrack_error = inst.error;
6370 backtrack_index = i;
6371 }
6372
b6702015 6373 if (i > 0 && (i > 1 || inst.operands[0].present))
c19d1205
ZW
6374 po_char_or_fail (',');
6375
5be8be5d 6376 switch (op_parse_code)
c19d1205
ZW
6377 {
6378 /* Registers */
6379 case OP_oRRnpc:
5be8be5d 6380 case OP_oRRnpcsp:
c19d1205 6381 case OP_RRnpc:
5be8be5d 6382 case OP_RRnpcsp:
c19d1205
ZW
6383 case OP_oRR:
6384 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
6385 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
6386 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
6387 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
6388 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
6389 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
5287ad62
JB
6390 case OP_oRND:
6391 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
cd2cf30b
PB
6392 case OP_RVC:
6393 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
6394 break;
6395 /* Also accept generic coprocessor regs for unknown registers. */
6396 coproc_reg:
6397 po_reg_or_fail (REG_TYPE_CN);
6398 break;
c19d1205
ZW
6399 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
6400 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
6401 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
6402 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
6403 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
6404 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
6405 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
6406 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
6407 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
6408 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
5287ad62
JB
6409 case OP_oRNQ:
6410 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
6411 case OP_oRNDQ:
6412 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
037e8744
JB
6413 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
6414 case OP_oRNSDQ:
6415 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
5287ad62
JB
6416
6417 /* Neon scalar. Using an element size of 8 means that some invalid
6418 scalars are accepted here, so deal with those in later code. */
6419 case OP_RNSC: po_scalar_or_goto (8, failure); break;
6420
5287ad62
JB
6421 case OP_RNDQ_I0:
6422 {
6423 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
6424 break;
6425 try_imm0:
6426 po_imm_or_fail (0, 0, TRUE);
6427 }
6428 break;
6429
037e8744
JB
6430 case OP_RVSD_I0:
6431 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
6432 break;
6433
5287ad62
JB
6434 case OP_RR_RNSC:
6435 {
6436 po_scalar_or_goto (8, try_rr);
6437 break;
6438 try_rr:
6439 po_reg_or_fail (REG_TYPE_RN);
6440 }
6441 break;
6442
037e8744
JB
6443 case OP_RNSDQ_RNSC:
6444 {
6445 po_scalar_or_goto (8, try_nsdq);
6446 break;
6447 try_nsdq:
6448 po_reg_or_fail (REG_TYPE_NSDQ);
6449 }
6450 break;
6451
5287ad62
JB
6452 case OP_RNDQ_RNSC:
6453 {
6454 po_scalar_or_goto (8, try_ndq);
6455 break;
6456 try_ndq:
6457 po_reg_or_fail (REG_TYPE_NDQ);
6458 }
6459 break;
6460
6461 case OP_RND_RNSC:
6462 {
6463 po_scalar_or_goto (8, try_vfd);
6464 break;
6465 try_vfd:
6466 po_reg_or_fail (REG_TYPE_VFD);
6467 }
6468 break;
6469
6470 case OP_VMOV:
6471 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
6472 not careful then bad things might happen. */
6473 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
6474 break;
6475
4316f0d2 6476 case OP_RNDQ_Ibig:
5287ad62 6477 {
4316f0d2 6478 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
5287ad62 6479 break;
4316f0d2 6480 try_immbig:
5287ad62
JB
6481 /* There's a possibility of getting a 64-bit immediate here, so
6482 we need special handling. */
6483 if (parse_big_immediate (&str, i) == FAIL)
6484 {
6485 inst.error = _("immediate value is out of range");
6486 goto failure;
6487 }
6488 }
6489 break;
6490
6491 case OP_RNDQ_I63b:
6492 {
6493 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
6494 break;
6495 try_shimm:
6496 po_imm_or_fail (0, 63, TRUE);
6497 }
6498 break;
c19d1205
ZW
6499
6500 case OP_RRnpcb:
6501 po_char_or_fail ('[');
6502 po_reg_or_fail (REG_TYPE_RN);
6503 po_char_or_fail (']');
6504 break;
a737bd4d 6505
55881a11 6506 case OP_RRnpctw:
c19d1205 6507 case OP_RRw:
b6702015 6508 case OP_oRRw:
c19d1205
ZW
6509 po_reg_or_fail (REG_TYPE_RN);
6510 if (skip_past_char (&str, '!') == SUCCESS)
6511 inst.operands[i].writeback = 1;
6512 break;
6513
6514 /* Immediates */
6515 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
6516 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
6517 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
5287ad62 6518 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
6519 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
6520 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
5287ad62 6521 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 6522 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
5287ad62
JB
6523 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
6524 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
6525 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 6526 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
6527
6528 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
6529 case OP_oI7b:
6530 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
6531 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
6532 case OP_oI31b:
6533 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
5287ad62 6534 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
5f1af56b 6535 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
c19d1205
ZW
6536 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
6537
6538 /* Immediate variants */
6539 case OP_oI255c:
6540 po_char_or_fail ('{');
6541 po_imm_or_fail (0, 255, TRUE);
6542 po_char_or_fail ('}');
6543 break;
6544
6545 case OP_I31w:
6546 /* The expression parser chokes on a trailing !, so we have
6547 to find it first and zap it. */
6548 {
6549 char *s = str;
6550 while (*s && *s != ',')
6551 s++;
6552 if (s[-1] == '!')
6553 {
6554 s[-1] = '\0';
6555 inst.operands[i].writeback = 1;
6556 }
6557 po_imm_or_fail (0, 31, TRUE);
6558 if (str == s - 1)
6559 str = s;
6560 }
6561 break;
6562
6563 /* Expressions */
6564 case OP_EXPi: EXPi:
6565 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6566 GE_OPT_PREFIX));
6567 break;
6568
6569 case OP_EXP:
6570 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6571 GE_NO_PREFIX));
6572 break;
6573
6574 case OP_EXPr: EXPr:
6575 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6576 GE_NO_PREFIX));
6577 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 6578 {
c19d1205
ZW
6579 val = parse_reloc (&str);
6580 if (val == -1)
6581 {
6582 inst.error = _("unrecognized relocation suffix");
6583 goto failure;
6584 }
6585 else if (val != BFD_RELOC_UNUSED)
6586 {
6587 inst.operands[i].imm = val;
6588 inst.operands[i].hasreloc = 1;
6589 }
a737bd4d 6590 }
c19d1205 6591 break;
a737bd4d 6592
b6895b4f
PB
6593 /* Operand for MOVW or MOVT. */
6594 case OP_HALF:
6595 po_misc_or_fail (parse_half (&str));
6596 break;
6597
e07e6e58 6598 /* Register or expression. */
c19d1205
ZW
6599 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
6600 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 6601
e07e6e58 6602 /* Register or immediate. */
c19d1205
ZW
6603 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
6604 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 6605
c19d1205
ZW
6606 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
6607 IF:
6608 if (!is_immediate_prefix (*str))
6609 goto bad_args;
6610 str++;
6611 val = parse_fpa_immediate (&str);
6612 if (val == FAIL)
6613 goto failure;
6614 /* FPA immediates are encoded as registers 8-15.
6615 parse_fpa_immediate has already applied the offset. */
6616 inst.operands[i].reg = val;
6617 inst.operands[i].isreg = 1;
6618 break;
09d92015 6619
2d447fca
JM
6620 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
6621 I32z: po_imm_or_fail (0, 32, FALSE); break;
6622
e07e6e58 6623 /* Two kinds of register. */
c19d1205
ZW
6624 case OP_RIWR_RIWC:
6625 {
6626 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
6627 if (!rege
6628 || (rege->type != REG_TYPE_MMXWR
6629 && rege->type != REG_TYPE_MMXWC
6630 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
6631 {
6632 inst.error = _("iWMMXt data or control register expected");
6633 goto failure;
6634 }
6635 inst.operands[i].reg = rege->number;
6636 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
6637 }
6638 break;
09d92015 6639
41adaa5c
JM
6640 case OP_RIWC_RIWG:
6641 {
6642 struct reg_entry *rege = arm_reg_parse_multi (&str);
6643 if (!rege
6644 || (rege->type != REG_TYPE_MMXWC
6645 && rege->type != REG_TYPE_MMXWCG))
6646 {
6647 inst.error = _("iWMMXt control register expected");
6648 goto failure;
6649 }
6650 inst.operands[i].reg = rege->number;
6651 inst.operands[i].isreg = 1;
6652 }
6653 break;
6654
c19d1205
ZW
6655 /* Misc */
6656 case OP_CPSF: val = parse_cps_flags (&str); break;
6657 case OP_ENDI: val = parse_endian_specifier (&str); break;
6658 case OP_oROR: val = parse_ror (&str); break;
c19d1205 6659 case OP_COND: val = parse_cond (&str); break;
52e7f43d
RE
6660 case OP_oBARRIER_I15:
6661 po_barrier_or_imm (str); break;
6662 immediate:
6663 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
6664 goto failure;
6665 break;
c19d1205 6666
fa94de6b 6667 case OP_wPSR:
d2cd1205 6668 case OP_rPSR:
90ec0d68
MGD
6669 po_reg_or_goto (REG_TYPE_RNB, try_psr);
6670 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
6671 {
6672 inst.error = _("Banked registers are not available with this "
6673 "architecture.");
6674 goto failure;
6675 }
6676 break;
d2cd1205
JB
6677 try_psr:
6678 val = parse_psr (&str, op_parse_code == OP_wPSR);
6679 break;
037e8744
JB
6680
6681 case OP_APSR_RR:
6682 po_reg_or_goto (REG_TYPE_RN, try_apsr);
6683 break;
6684 try_apsr:
6685 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
6686 instruction). */
6687 if (strncasecmp (str, "APSR_", 5) == 0)
6688 {
6689 unsigned found = 0;
6690 str += 5;
6691 while (found < 15)
6692 switch (*str++)
6693 {
6694 case 'c': found = (found & 1) ? 16 : found | 1; break;
6695 case 'n': found = (found & 2) ? 16 : found | 2; break;
6696 case 'z': found = (found & 4) ? 16 : found | 4; break;
6697 case 'v': found = (found & 8) ? 16 : found | 8; break;
6698 default: found = 16;
6699 }
6700 if (found != 15)
6701 goto failure;
6702 inst.operands[i].isvec = 1;
f7c21dc7
NC
6703 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
6704 inst.operands[i].reg = REG_PC;
037e8744
JB
6705 }
6706 else
6707 goto failure;
6708 break;
6709
92e90b6e
PB
6710 case OP_TB:
6711 po_misc_or_fail (parse_tb (&str));
6712 break;
6713
e07e6e58 6714 /* Register lists. */
c19d1205
ZW
6715 case OP_REGLST:
6716 val = parse_reg_list (&str);
6717 if (*str == '^')
6718 {
6719 inst.operands[1].writeback = 1;
6720 str++;
6721 }
6722 break;
09d92015 6723
c19d1205 6724 case OP_VRSLST:
5287ad62 6725 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 6726 break;
09d92015 6727
c19d1205 6728 case OP_VRDLST:
5287ad62 6729 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 6730 break;
a737bd4d 6731
037e8744
JB
6732 case OP_VRSDLST:
6733 /* Allow Q registers too. */
6734 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6735 REGLIST_NEON_D);
6736 if (val == FAIL)
6737 {
6738 inst.error = NULL;
6739 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6740 REGLIST_VFP_S);
6741 inst.operands[i].issingle = 1;
6742 }
6743 break;
6744
5287ad62
JB
6745 case OP_NRDLST:
6746 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
6747 REGLIST_NEON_D);
6748 break;
6749
6750 case OP_NSTRLST:
dcbf9037
JB
6751 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
6752 &inst.operands[i].vectype);
5287ad62
JB
6753 break;
6754
c19d1205
ZW
6755 /* Addressing modes */
6756 case OP_ADDR:
6757 po_misc_or_fail (parse_address (&str, i));
6758 break;
09d92015 6759
4962c51a
MS
6760 case OP_ADDRGLDR:
6761 po_misc_or_fail_no_backtrack (
6762 parse_address_group_reloc (&str, i, GROUP_LDR));
6763 break;
6764
6765 case OP_ADDRGLDRS:
6766 po_misc_or_fail_no_backtrack (
6767 parse_address_group_reloc (&str, i, GROUP_LDRS));
6768 break;
6769
6770 case OP_ADDRGLDC:
6771 po_misc_or_fail_no_backtrack (
6772 parse_address_group_reloc (&str, i, GROUP_LDC));
6773 break;
6774
c19d1205
ZW
6775 case OP_SH:
6776 po_misc_or_fail (parse_shifter_operand (&str, i));
6777 break;
09d92015 6778
4962c51a
MS
6779 case OP_SHG:
6780 po_misc_or_fail_no_backtrack (
6781 parse_shifter_operand_group_reloc (&str, i));
6782 break;
6783
c19d1205
ZW
6784 case OP_oSHll:
6785 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
6786 break;
09d92015 6787
c19d1205
ZW
6788 case OP_oSHar:
6789 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
6790 break;
09d92015 6791
c19d1205
ZW
6792 case OP_oSHllar:
6793 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
6794 break;
09d92015 6795
c19d1205 6796 default:
5be8be5d 6797 as_fatal (_("unhandled operand code %d"), op_parse_code);
c19d1205 6798 }
09d92015 6799
c19d1205
ZW
6800 /* Various value-based sanity checks and shared operations. We
6801 do not signal immediate failures for the register constraints;
6802 this allows a syntax error to take precedence. */
5be8be5d 6803 switch (op_parse_code)
c19d1205
ZW
6804 {
6805 case OP_oRRnpc:
6806 case OP_RRnpc:
6807 case OP_RRnpcb:
6808 case OP_RRw:
b6702015 6809 case OP_oRRw:
c19d1205
ZW
6810 case OP_RRnpc_I0:
6811 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
6812 inst.error = BAD_PC;
6813 break;
09d92015 6814
5be8be5d
DG
6815 case OP_oRRnpcsp:
6816 case OP_RRnpcsp:
6817 if (inst.operands[i].isreg)
6818 {
6819 if (inst.operands[i].reg == REG_PC)
6820 inst.error = BAD_PC;
6821 else if (inst.operands[i].reg == REG_SP)
6822 inst.error = BAD_SP;
6823 }
6824 break;
6825
55881a11 6826 case OP_RRnpctw:
fa94de6b
RM
6827 if (inst.operands[i].isreg
6828 && inst.operands[i].reg == REG_PC
55881a11
MGD
6829 && (inst.operands[i].writeback || thumb))
6830 inst.error = BAD_PC;
6831 break;
6832
c19d1205
ZW
6833 case OP_CPSF:
6834 case OP_ENDI:
6835 case OP_oROR:
d2cd1205
JB
6836 case OP_wPSR:
6837 case OP_rPSR:
c19d1205 6838 case OP_COND:
52e7f43d 6839 case OP_oBARRIER_I15:
c19d1205
ZW
6840 case OP_REGLST:
6841 case OP_VRSLST:
6842 case OP_VRDLST:
037e8744 6843 case OP_VRSDLST:
5287ad62
JB
6844 case OP_NRDLST:
6845 case OP_NSTRLST:
c19d1205
ZW
6846 if (val == FAIL)
6847 goto failure;
6848 inst.operands[i].imm = val;
6849 break;
a737bd4d 6850
c19d1205
ZW
6851 default:
6852 break;
6853 }
09d92015 6854
c19d1205
ZW
6855 /* If we get here, this operand was successfully parsed. */
6856 inst.operands[i].present = 1;
6857 continue;
09d92015 6858
c19d1205 6859 bad_args:
09d92015 6860 inst.error = BAD_ARGS;
c19d1205
ZW
6861
6862 failure:
6863 if (!backtrack_pos)
d252fdde
PB
6864 {
6865 /* The parse routine should already have set inst.error, but set a
5f4273c7 6866 default here just in case. */
d252fdde
PB
6867 if (!inst.error)
6868 inst.error = _("syntax error");
6869 return FAIL;
6870 }
c19d1205
ZW
6871
6872 /* Do not backtrack over a trailing optional argument that
6873 absorbed some text. We will only fail again, with the
6874 'garbage following instruction' error message, which is
6875 probably less helpful than the current one. */
6876 if (backtrack_index == i && backtrack_pos != str
6877 && upat[i+1] == OP_stop)
d252fdde
PB
6878 {
6879 if (!inst.error)
6880 inst.error = _("syntax error");
6881 return FAIL;
6882 }
c19d1205
ZW
6883
6884 /* Try again, skipping the optional argument at backtrack_pos. */
6885 str = backtrack_pos;
6886 inst.error = backtrack_error;
6887 inst.operands[backtrack_index].present = 0;
6888 i = backtrack_index;
6889 backtrack_pos = 0;
09d92015 6890 }
09d92015 6891
c19d1205
ZW
6892 /* Check that we have parsed all the arguments. */
6893 if (*str != '\0' && !inst.error)
6894 inst.error = _("garbage following instruction");
09d92015 6895
c19d1205 6896 return inst.error ? FAIL : SUCCESS;
09d92015
MM
6897}
6898
c19d1205
ZW
6899#undef po_char_or_fail
6900#undef po_reg_or_fail
6901#undef po_reg_or_goto
6902#undef po_imm_or_fail
5287ad62 6903#undef po_scalar_or_fail
52e7f43d 6904#undef po_barrier_or_imm
e07e6e58 6905
c19d1205 6906/* Shorthand macro for instruction encoding functions issuing errors. */
e07e6e58
NC
6907#define constraint(expr, err) \
6908 do \
c19d1205 6909 { \
e07e6e58
NC
6910 if (expr) \
6911 { \
6912 inst.error = err; \
6913 return; \
6914 } \
c19d1205 6915 } \
e07e6e58 6916 while (0)
c19d1205 6917
fdfde340
JM
6918/* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
6919 instructions are unpredictable if these registers are used. This
6920 is the BadReg predicate in ARM's Thumb-2 documentation. */
6921#define reject_bad_reg(reg) \
6922 do \
6923 if (reg == REG_SP || reg == REG_PC) \
6924 { \
6925 inst.error = (reg == REG_SP) ? BAD_SP : BAD_PC; \
6926 return; \
6927 } \
6928 while (0)
6929
94206790
MM
6930/* If REG is R13 (the stack pointer), warn that its use is
6931 deprecated. */
6932#define warn_deprecated_sp(reg) \
6933 do \
6934 if (warn_on_deprecated && reg == REG_SP) \
6935 as_warn (_("use of r13 is deprecated")); \
6936 while (0)
6937
c19d1205
ZW
6938/* Functions for operand encoding. ARM, then Thumb. */
6939
6940#define rotate_left(v, n) (v << n | v >> (32 - n))
6941
6942/* If VAL can be encoded in the immediate field of an ARM instruction,
6943 return the encoded form. Otherwise, return FAIL. */
6944
6945static unsigned int
6946encode_arm_immediate (unsigned int val)
09d92015 6947{
c19d1205
ZW
6948 unsigned int a, i;
6949
6950 for (i = 0; i < 32; i += 2)
6951 if ((a = rotate_left (val, i)) <= 0xff)
6952 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
6953
6954 return FAIL;
09d92015
MM
6955}
6956
c19d1205
ZW
6957/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
6958 return the encoded form. Otherwise, return FAIL. */
6959static unsigned int
6960encode_thumb32_immediate (unsigned int val)
09d92015 6961{
c19d1205 6962 unsigned int a, i;
09d92015 6963
9c3c69f2 6964 if (val <= 0xff)
c19d1205 6965 return val;
a737bd4d 6966
9c3c69f2 6967 for (i = 1; i <= 24; i++)
09d92015 6968 {
9c3c69f2
PB
6969 a = val >> i;
6970 if ((val & ~(0xff << i)) == 0)
6971 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 6972 }
a737bd4d 6973
c19d1205
ZW
6974 a = val & 0xff;
6975 if (val == ((a << 16) | a))
6976 return 0x100 | a;
6977 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
6978 return 0x300 | a;
09d92015 6979
c19d1205
ZW
6980 a = val & 0xff00;
6981 if (val == ((a << 16) | a))
6982 return 0x200 | (a >> 8);
a737bd4d 6983
c19d1205 6984 return FAIL;
09d92015 6985}
5287ad62 6986/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
6987
6988static void
5287ad62
JB
6989encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
6990{
6991 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
6992 && reg > 15)
6993 {
b1cc4aeb 6994 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
5287ad62
JB
6995 {
6996 if (thumb_mode)
6997 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
b1cc4aeb 6998 fpu_vfp_ext_d32);
5287ad62
JB
6999 else
7000 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
b1cc4aeb 7001 fpu_vfp_ext_d32);
5287ad62
JB
7002 }
7003 else
7004 {
dcbf9037 7005 first_error (_("D register out of range for selected VFP version"));
5287ad62
JB
7006 return;
7007 }
7008 }
7009
c19d1205 7010 switch (pos)
09d92015 7011 {
c19d1205
ZW
7012 case VFP_REG_Sd:
7013 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
7014 break;
7015
7016 case VFP_REG_Sn:
7017 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
7018 break;
7019
7020 case VFP_REG_Sm:
7021 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
7022 break;
7023
5287ad62
JB
7024 case VFP_REG_Dd:
7025 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
7026 break;
5f4273c7 7027
5287ad62
JB
7028 case VFP_REG_Dn:
7029 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
7030 break;
5f4273c7 7031
5287ad62
JB
7032 case VFP_REG_Dm:
7033 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
7034 break;
7035
c19d1205
ZW
7036 default:
7037 abort ();
09d92015 7038 }
09d92015
MM
7039}
7040
c19d1205 7041/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 7042 if any, is handled by md_apply_fix. */
09d92015 7043static void
c19d1205 7044encode_arm_shift (int i)
09d92015 7045{
c19d1205
ZW
7046 if (inst.operands[i].shift_kind == SHIFT_RRX)
7047 inst.instruction |= SHIFT_ROR << 5;
7048 else
09d92015 7049 {
c19d1205
ZW
7050 inst.instruction |= inst.operands[i].shift_kind << 5;
7051 if (inst.operands[i].immisreg)
7052 {
7053 inst.instruction |= SHIFT_BY_REG;
7054 inst.instruction |= inst.operands[i].imm << 8;
7055 }
7056 else
7057 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 7058 }
c19d1205 7059}
09d92015 7060
c19d1205
ZW
7061static void
7062encode_arm_shifter_operand (int i)
7063{
7064 if (inst.operands[i].isreg)
09d92015 7065 {
c19d1205
ZW
7066 inst.instruction |= inst.operands[i].reg;
7067 encode_arm_shift (i);
09d92015 7068 }
c19d1205 7069 else
a415b1cd
JB
7070 {
7071 inst.instruction |= INST_IMMEDIATE;
7072 if (inst.reloc.type != BFD_RELOC_ARM_IMMEDIATE)
7073 inst.instruction |= inst.operands[i].imm;
7074 }
09d92015
MM
7075}
7076
c19d1205 7077/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 7078static void
c19d1205 7079encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 7080{
2b2f5df9
NC
7081 /* PR 14260:
7082 Generate an error if the operand is not a register. */
7083 constraint (!inst.operands[i].isreg,
7084 _("Instruction does not support =N addresses"));
7085
c19d1205 7086 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7087
c19d1205 7088 if (inst.operands[i].preind)
09d92015 7089 {
c19d1205
ZW
7090 if (is_t)
7091 {
7092 inst.error = _("instruction does not accept preindexed addressing");
7093 return;
7094 }
7095 inst.instruction |= PRE_INDEX;
7096 if (inst.operands[i].writeback)
7097 inst.instruction |= WRITE_BACK;
09d92015 7098
c19d1205
ZW
7099 }
7100 else if (inst.operands[i].postind)
7101 {
9c2799c2 7102 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
7103 if (is_t)
7104 inst.instruction |= WRITE_BACK;
7105 }
7106 else /* unindexed - only for coprocessor */
09d92015 7107 {
c19d1205 7108 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
7109 return;
7110 }
7111
c19d1205
ZW
7112 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
7113 && (((inst.instruction & 0x000f0000) >> 16)
7114 == ((inst.instruction & 0x0000f000) >> 12)))
7115 as_warn ((inst.instruction & LOAD_BIT)
7116 ? _("destination register same as write-back base")
7117 : _("source register same as write-back base"));
09d92015
MM
7118}
7119
c19d1205
ZW
7120/* inst.operands[i] was set up by parse_address. Encode it into an
7121 ARM-format mode 2 load or store instruction. If is_t is true,
7122 reject forms that cannot be used with a T instruction (i.e. not
7123 post-indexed). */
a737bd4d 7124static void
c19d1205 7125encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 7126{
5be8be5d
DG
7127 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
7128
c19d1205 7129 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7130
c19d1205 7131 if (inst.operands[i].immisreg)
09d92015 7132 {
5be8be5d
DG
7133 constraint ((inst.operands[i].imm == REG_PC
7134 || (is_pc && inst.operands[i].writeback)),
7135 BAD_PC_ADDRESSING);
c19d1205
ZW
7136 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
7137 inst.instruction |= inst.operands[i].imm;
7138 if (!inst.operands[i].negative)
7139 inst.instruction |= INDEX_UP;
7140 if (inst.operands[i].shifted)
7141 {
7142 if (inst.operands[i].shift_kind == SHIFT_RRX)
7143 inst.instruction |= SHIFT_ROR << 5;
7144 else
7145 {
7146 inst.instruction |= inst.operands[i].shift_kind << 5;
7147 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7148 }
7149 }
09d92015 7150 }
c19d1205 7151 else /* immediate offset in inst.reloc */
09d92015 7152 {
5be8be5d
DG
7153 if (is_pc && !inst.reloc.pc_rel)
7154 {
7155 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
23a10334
JZ
7156
7157 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
7158 cannot use PC in addressing.
7159 PC cannot be used in writeback addressing, either. */
7160 constraint ((is_t || inst.operands[i].writeback),
5be8be5d 7161 BAD_PC_ADDRESSING);
23a10334 7162
dc5ec521 7163 /* Use of PC in str is deprecated for ARMv7. */
23a10334
JZ
7164 if (warn_on_deprecated
7165 && !is_load
7166 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
7167 as_warn (_("use of PC in this instruction is deprecated"));
5be8be5d
DG
7168 }
7169
c19d1205 7170 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7171 {
7172 /* Prefer + for zero encoded value. */
7173 if (!inst.operands[i].negative)
7174 inst.instruction |= INDEX_UP;
7175 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
7176 }
09d92015 7177 }
09d92015
MM
7178}
7179
c19d1205
ZW
7180/* inst.operands[i] was set up by parse_address. Encode it into an
7181 ARM-format mode 3 load or store instruction. Reject forms that
7182 cannot be used with such instructions. If is_t is true, reject
7183 forms that cannot be used with a T instruction (i.e. not
7184 post-indexed). */
7185static void
7186encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 7187{
c19d1205 7188 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 7189 {
c19d1205
ZW
7190 inst.error = _("instruction does not accept scaled register index");
7191 return;
09d92015 7192 }
a737bd4d 7193
c19d1205 7194 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7195
c19d1205
ZW
7196 if (inst.operands[i].immisreg)
7197 {
5be8be5d 7198 constraint ((inst.operands[i].imm == REG_PC
eb9f3f00 7199 || (is_t && inst.operands[i].reg == REG_PC)),
5be8be5d 7200 BAD_PC_ADDRESSING);
eb9f3f00
JB
7201 constraint (inst.operands[i].reg == REG_PC && inst.operands[i].writeback,
7202 BAD_PC_WRITEBACK);
c19d1205
ZW
7203 inst.instruction |= inst.operands[i].imm;
7204 if (!inst.operands[i].negative)
7205 inst.instruction |= INDEX_UP;
7206 }
7207 else /* immediate offset in inst.reloc */
7208 {
5be8be5d
DG
7209 constraint ((inst.operands[i].reg == REG_PC && !inst.reloc.pc_rel
7210 && inst.operands[i].writeback),
7211 BAD_PC_WRITEBACK);
c19d1205
ZW
7212 inst.instruction |= HWOFFSET_IMM;
7213 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7214 {
7215 /* Prefer + for zero encoded value. */
7216 if (!inst.operands[i].negative)
7217 inst.instruction |= INDEX_UP;
7218
7219 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
7220 }
c19d1205 7221 }
a737bd4d
NC
7222}
7223
c19d1205
ZW
7224/* inst.operands[i] was set up by parse_address. Encode it into an
7225 ARM-format instruction. Reject all forms which cannot be encoded
7226 into a coprocessor load/store instruction. If wb_ok is false,
7227 reject use of writeback; if unind_ok is false, reject use of
7228 unindexed addressing. If reloc_override is not 0, use it instead
4962c51a
MS
7229 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
7230 (in which case it is preserved). */
09d92015 7231
c19d1205
ZW
7232static int
7233encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
09d92015 7234{
c19d1205 7235 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7236
9c2799c2 7237 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
09d92015 7238
c19d1205 7239 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
09d92015 7240 {
9c2799c2 7241 gas_assert (!inst.operands[i].writeback);
c19d1205
ZW
7242 if (!unind_ok)
7243 {
7244 inst.error = _("instruction does not support unindexed addressing");
7245 return FAIL;
7246 }
7247 inst.instruction |= inst.operands[i].imm;
7248 inst.instruction |= INDEX_UP;
7249 return SUCCESS;
09d92015 7250 }
a737bd4d 7251
c19d1205
ZW
7252 if (inst.operands[i].preind)
7253 inst.instruction |= PRE_INDEX;
a737bd4d 7254
c19d1205 7255 if (inst.operands[i].writeback)
09d92015 7256 {
c19d1205
ZW
7257 if (inst.operands[i].reg == REG_PC)
7258 {
7259 inst.error = _("pc may not be used with write-back");
7260 return FAIL;
7261 }
7262 if (!wb_ok)
7263 {
7264 inst.error = _("instruction does not support writeback");
7265 return FAIL;
7266 }
7267 inst.instruction |= WRITE_BACK;
09d92015 7268 }
a737bd4d 7269
c19d1205 7270 if (reloc_override)
21d799b5 7271 inst.reloc.type = (bfd_reloc_code_real_type) reloc_override;
4962c51a
MS
7272 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
7273 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
7274 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
7275 {
7276 if (thumb_mode)
7277 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
7278 else
7279 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
7280 }
7281
26d97720
NS
7282 /* Prefer + for zero encoded value. */
7283 if (!inst.operands[i].negative)
7284 inst.instruction |= INDEX_UP;
7285
c19d1205
ZW
7286 return SUCCESS;
7287}
a737bd4d 7288
c19d1205
ZW
7289/* inst.reloc.exp describes an "=expr" load pseudo-operation.
7290 Determine whether it can be performed with a move instruction; if
7291 it can, convert inst.instruction to that move instruction and
c921be7d
NC
7292 return TRUE; if it can't, convert inst.instruction to a literal-pool
7293 load and return FALSE. If this is not a valid thing to do in the
7294 current context, set inst.error and return TRUE.
a737bd4d 7295
c19d1205
ZW
7296 inst.operands[i] describes the destination register. */
7297
c921be7d 7298static bfd_boolean
c19d1205
ZW
7299move_or_literal_pool (int i, bfd_boolean thumb_p, bfd_boolean mode_3)
7300{
53365c0d
PB
7301 unsigned long tbit;
7302
7303 if (thumb_p)
7304 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
7305 else
7306 tbit = LOAD_BIT;
7307
7308 if ((inst.instruction & tbit) == 0)
09d92015 7309 {
c19d1205 7310 inst.error = _("invalid pseudo operation");
c921be7d 7311 return TRUE;
09d92015 7312 }
c19d1205 7313 if (inst.reloc.exp.X_op != O_constant && inst.reloc.exp.X_op != O_symbol)
09d92015
MM
7314 {
7315 inst.error = _("constant expression expected");
c921be7d 7316 return TRUE;
09d92015 7317 }
c19d1205 7318 if (inst.reloc.exp.X_op == O_constant)
09d92015 7319 {
c19d1205
ZW
7320 if (thumb_p)
7321 {
53365c0d 7322 if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
c19d1205
ZW
7323 {
7324 /* This can be done with a mov(1) instruction. */
7325 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
7326 inst.instruction |= inst.reloc.exp.X_add_number;
c921be7d 7327 return TRUE;
c19d1205
ZW
7328 }
7329 }
7330 else
7331 {
7332 int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
7333 if (value != FAIL)
7334 {
7335 /* This can be done with a mov instruction. */
7336 inst.instruction &= LITERAL_MASK;
7337 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
7338 inst.instruction |= value & 0xfff;
c921be7d 7339 return TRUE;
c19d1205 7340 }
09d92015 7341
c19d1205
ZW
7342 value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
7343 if (value != FAIL)
7344 {
7345 /* This can be done with a mvn instruction. */
7346 inst.instruction &= LITERAL_MASK;
7347 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
7348 inst.instruction |= value & 0xfff;
c921be7d 7349 return TRUE;
c19d1205
ZW
7350 }
7351 }
09d92015
MM
7352 }
7353
c19d1205
ZW
7354 if (add_to_lit_pool () == FAIL)
7355 {
7356 inst.error = _("literal pool insertion failed");
c921be7d 7357 return TRUE;
c19d1205
ZW
7358 }
7359 inst.operands[1].reg = REG_PC;
7360 inst.operands[1].isreg = 1;
7361 inst.operands[1].preind = 1;
7362 inst.reloc.pc_rel = 1;
7363 inst.reloc.type = (thumb_p
7364 ? BFD_RELOC_ARM_THUMB_OFFSET
7365 : (mode_3
7366 ? BFD_RELOC_ARM_HWLITERAL
7367 : BFD_RELOC_ARM_LITERAL));
c921be7d 7368 return FALSE;
09d92015
MM
7369}
7370
5f4273c7 7371/* Functions for instruction encoding, sorted by sub-architecture.
c19d1205
ZW
7372 First some generics; their names are taken from the conventional
7373 bit positions for register arguments in ARM format instructions. */
09d92015 7374
a737bd4d 7375static void
c19d1205 7376do_noargs (void)
09d92015 7377{
c19d1205 7378}
a737bd4d 7379
c19d1205
ZW
7380static void
7381do_rd (void)
7382{
7383 inst.instruction |= inst.operands[0].reg << 12;
7384}
a737bd4d 7385
c19d1205
ZW
7386static void
7387do_rd_rm (void)
7388{
7389 inst.instruction |= inst.operands[0].reg << 12;
7390 inst.instruction |= inst.operands[1].reg;
7391}
09d92015 7392
9eb6c0f1
MGD
7393static void
7394do_rm_rn (void)
7395{
7396 inst.instruction |= inst.operands[0].reg;
7397 inst.instruction |= inst.operands[1].reg << 16;
7398}
7399
c19d1205
ZW
7400static void
7401do_rd_rn (void)
7402{
7403 inst.instruction |= inst.operands[0].reg << 12;
7404 inst.instruction |= inst.operands[1].reg << 16;
7405}
a737bd4d 7406
c19d1205
ZW
7407static void
7408do_rn_rd (void)
7409{
7410 inst.instruction |= inst.operands[0].reg << 16;
7411 inst.instruction |= inst.operands[1].reg << 12;
7412}
09d92015 7413
59d09be6
MGD
7414static bfd_boolean
7415check_obsolete (const arm_feature_set *feature, const char *msg)
7416{
7417 if (ARM_CPU_IS_ANY (cpu_variant))
7418 {
7419 as_warn ("%s", msg);
7420 return TRUE;
7421 }
7422 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
7423 {
7424 as_bad ("%s", msg);
7425 return TRUE;
7426 }
7427
7428 return FALSE;
7429}
7430
c19d1205
ZW
7431static void
7432do_rd_rm_rn (void)
7433{
9a64e435 7434 unsigned Rn = inst.operands[2].reg;
708587a4 7435 /* Enforce restrictions on SWP instruction. */
9a64e435 7436 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
56adecf4
DG
7437 {
7438 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
7439 _("Rn must not overlap other operands"));
7440
59d09be6
MGD
7441 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
7442 */
7443 if (!check_obsolete (&arm_ext_v8,
7444 _("swp{b} use is obsoleted for ARMv8 and later"))
7445 && warn_on_deprecated
7446 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
7447 as_warn (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
56adecf4 7448 }
59d09be6 7449
c19d1205
ZW
7450 inst.instruction |= inst.operands[0].reg << 12;
7451 inst.instruction |= inst.operands[1].reg;
9a64e435 7452 inst.instruction |= Rn << 16;
c19d1205 7453}
09d92015 7454
c19d1205
ZW
7455static void
7456do_rd_rn_rm (void)
7457{
7458 inst.instruction |= inst.operands[0].reg << 12;
7459 inst.instruction |= inst.operands[1].reg << 16;
7460 inst.instruction |= inst.operands[2].reg;
7461}
a737bd4d 7462
c19d1205
ZW
7463static void
7464do_rm_rd_rn (void)
7465{
5be8be5d
DG
7466 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
7467 constraint (((inst.reloc.exp.X_op != O_constant
7468 && inst.reloc.exp.X_op != O_illegal)
7469 || inst.reloc.exp.X_add_number != 0),
7470 BAD_ADDR_MODE);
c19d1205
ZW
7471 inst.instruction |= inst.operands[0].reg;
7472 inst.instruction |= inst.operands[1].reg << 12;
7473 inst.instruction |= inst.operands[2].reg << 16;
7474}
09d92015 7475
c19d1205
ZW
7476static void
7477do_imm0 (void)
7478{
7479 inst.instruction |= inst.operands[0].imm;
7480}
09d92015 7481
c19d1205
ZW
7482static void
7483do_rd_cpaddr (void)
7484{
7485 inst.instruction |= inst.operands[0].reg << 12;
7486 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 7487}
a737bd4d 7488
c19d1205
ZW
7489/* ARM instructions, in alphabetical order by function name (except
7490 that wrapper functions appear immediately after the function they
7491 wrap). */
09d92015 7492
c19d1205
ZW
7493/* This is a pseudo-op of the form "adr rd, label" to be converted
7494 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
7495
7496static void
c19d1205 7497do_adr (void)
09d92015 7498{
c19d1205 7499 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7500
c19d1205
ZW
7501 /* Frag hacking will turn this into a sub instruction if the offset turns
7502 out to be negative. */
7503 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 7504 inst.reloc.pc_rel = 1;
2fc8bdac 7505 inst.reloc.exp.X_add_number -= 8;
c19d1205 7506}
b99bd4ef 7507
c19d1205
ZW
7508/* This is a pseudo-op of the form "adrl rd, label" to be converted
7509 into a relative address of the form:
7510 add rd, pc, #low(label-.-8)"
7511 add rd, rd, #high(label-.-8)" */
b99bd4ef 7512
c19d1205
ZW
7513static void
7514do_adrl (void)
7515{
7516 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 7517
c19d1205
ZW
7518 /* Frag hacking will turn this into a sub instruction if the offset turns
7519 out to be negative. */
7520 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
7521 inst.reloc.pc_rel = 1;
7522 inst.size = INSN_SIZE * 2;
2fc8bdac 7523 inst.reloc.exp.X_add_number -= 8;
b99bd4ef
NC
7524}
7525
b99bd4ef 7526static void
c19d1205 7527do_arit (void)
b99bd4ef 7528{
c19d1205
ZW
7529 if (!inst.operands[1].present)
7530 inst.operands[1].reg = inst.operands[0].reg;
7531 inst.instruction |= inst.operands[0].reg << 12;
7532 inst.instruction |= inst.operands[1].reg << 16;
7533 encode_arm_shifter_operand (2);
7534}
b99bd4ef 7535
62b3e311
PB
7536static void
7537do_barrier (void)
7538{
7539 if (inst.operands[0].present)
ccb84d65 7540 inst.instruction |= inst.operands[0].imm;
62b3e311
PB
7541 else
7542 inst.instruction |= 0xf;
7543}
7544
c19d1205
ZW
7545static void
7546do_bfc (void)
7547{
7548 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
7549 constraint (msb > 32, _("bit-field extends past end of register"));
7550 /* The instruction encoding stores the LSB and MSB,
7551 not the LSB and width. */
7552 inst.instruction |= inst.operands[0].reg << 12;
7553 inst.instruction |= inst.operands[1].imm << 7;
7554 inst.instruction |= (msb - 1) << 16;
7555}
b99bd4ef 7556
c19d1205
ZW
7557static void
7558do_bfi (void)
7559{
7560 unsigned int msb;
b99bd4ef 7561
c19d1205
ZW
7562 /* #0 in second position is alternative syntax for bfc, which is
7563 the same instruction but with REG_PC in the Rm field. */
7564 if (!inst.operands[1].isreg)
7565 inst.operands[1].reg = REG_PC;
b99bd4ef 7566
c19d1205
ZW
7567 msb = inst.operands[2].imm + inst.operands[3].imm;
7568 constraint (msb > 32, _("bit-field extends past end of register"));
7569 /* The instruction encoding stores the LSB and MSB,
7570 not the LSB and width. */
7571 inst.instruction |= inst.operands[0].reg << 12;
7572 inst.instruction |= inst.operands[1].reg;
7573 inst.instruction |= inst.operands[2].imm << 7;
7574 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
7575}
7576
b99bd4ef 7577static void
c19d1205 7578do_bfx (void)
b99bd4ef 7579{
c19d1205
ZW
7580 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
7581 _("bit-field extends past end of register"));
7582 inst.instruction |= inst.operands[0].reg << 12;
7583 inst.instruction |= inst.operands[1].reg;
7584 inst.instruction |= inst.operands[2].imm << 7;
7585 inst.instruction |= (inst.operands[3].imm - 1) << 16;
7586}
09d92015 7587
c19d1205
ZW
7588/* ARM V5 breakpoint instruction (argument parse)
7589 BKPT <16 bit unsigned immediate>
7590 Instruction is not conditional.
7591 The bit pattern given in insns[] has the COND_ALWAYS condition,
7592 and it is an error if the caller tried to override that. */
b99bd4ef 7593
c19d1205
ZW
7594static void
7595do_bkpt (void)
7596{
7597 /* Top 12 of 16 bits to bits 19:8. */
7598 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 7599
c19d1205
ZW
7600 /* Bottom 4 of 16 bits to bits 3:0. */
7601 inst.instruction |= inst.operands[0].imm & 0xf;
7602}
09d92015 7603
c19d1205
ZW
7604static void
7605encode_branch (int default_reloc)
7606{
7607 if (inst.operands[0].hasreloc)
7608 {
0855e32b
NS
7609 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
7610 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
7611 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
7612 inst.reloc.type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
7613 ? BFD_RELOC_ARM_PLT32
7614 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
c19d1205 7615 }
b99bd4ef 7616 else
9ae92b05 7617 inst.reloc.type = (bfd_reloc_code_real_type) default_reloc;
2fc8bdac 7618 inst.reloc.pc_rel = 1;
b99bd4ef
NC
7619}
7620
b99bd4ef 7621static void
c19d1205 7622do_branch (void)
b99bd4ef 7623{
39b41c9c
PB
7624#ifdef OBJ_ELF
7625 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7626 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7627 else
7628#endif
7629 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
7630}
7631
7632static void
7633do_bl (void)
7634{
7635#ifdef OBJ_ELF
7636 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
7637 {
7638 if (inst.cond == COND_ALWAYS)
7639 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
7640 else
7641 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
7642 }
7643 else
7644#endif
7645 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 7646}
b99bd4ef 7647
c19d1205
ZW
7648/* ARM V5 branch-link-exchange instruction (argument parse)
7649 BLX <target_addr> ie BLX(1)
7650 BLX{<condition>} <Rm> ie BLX(2)
7651 Unfortunately, there are two different opcodes for this mnemonic.
7652 So, the insns[].value is not used, and the code here zaps values
7653 into inst.instruction.
7654 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 7655
c19d1205
ZW
7656static void
7657do_blx (void)
7658{
7659 if (inst.operands[0].isreg)
b99bd4ef 7660 {
c19d1205
ZW
7661 /* Arg is a register; the opcode provided by insns[] is correct.
7662 It is not illegal to do "blx pc", just useless. */
7663 if (inst.operands[0].reg == REG_PC)
7664 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 7665
c19d1205
ZW
7666 inst.instruction |= inst.operands[0].reg;
7667 }
7668 else
b99bd4ef 7669 {
c19d1205 7670 /* Arg is an address; this instruction cannot be executed
267bf995
RR
7671 conditionally, and the opcode must be adjusted.
7672 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
7673 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
c19d1205 7674 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 7675 inst.instruction = 0xfa000000;
267bf995 7676 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 7677 }
c19d1205
ZW
7678}
7679
7680static void
7681do_bx (void)
7682{
845b51d6
PB
7683 bfd_boolean want_reloc;
7684
c19d1205
ZW
7685 if (inst.operands[0].reg == REG_PC)
7686 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 7687
c19d1205 7688 inst.instruction |= inst.operands[0].reg;
845b51d6
PB
7689 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
7690 it is for ARMv4t or earlier. */
7691 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
7692 if (object_arch && !ARM_CPU_HAS_FEATURE (*object_arch, arm_ext_v5))
7693 want_reloc = TRUE;
7694
5ad34203 7695#ifdef OBJ_ELF
845b51d6 7696 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
5ad34203 7697#endif
584206db 7698 want_reloc = FALSE;
845b51d6
PB
7699
7700 if (want_reloc)
7701 inst.reloc.type = BFD_RELOC_ARM_V4BX;
09d92015
MM
7702}
7703
c19d1205
ZW
7704
7705/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
7706
7707static void
c19d1205 7708do_bxj (void)
a737bd4d 7709{
c19d1205
ZW
7710 if (inst.operands[0].reg == REG_PC)
7711 as_tsktsk (_("use of r15 in bxj is not really useful"));
7712
7713 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
7714}
7715
c19d1205
ZW
7716/* Co-processor data operation:
7717 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
7718 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
7719static void
7720do_cdp (void)
7721{
7722 inst.instruction |= inst.operands[0].reg << 8;
7723 inst.instruction |= inst.operands[1].imm << 20;
7724 inst.instruction |= inst.operands[2].reg << 12;
7725 inst.instruction |= inst.operands[3].reg << 16;
7726 inst.instruction |= inst.operands[4].reg;
7727 inst.instruction |= inst.operands[5].imm << 5;
7728}
a737bd4d
NC
7729
7730static void
c19d1205 7731do_cmp (void)
a737bd4d 7732{
c19d1205
ZW
7733 inst.instruction |= inst.operands[0].reg << 16;
7734 encode_arm_shifter_operand (1);
a737bd4d
NC
7735}
7736
c19d1205
ZW
7737/* Transfer between coprocessor and ARM registers.
7738 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
7739 MRC2
7740 MCR{cond}
7741 MCR2
7742
7743 No special properties. */
09d92015 7744
dcbd0d71
MGD
7745struct deprecated_coproc_regs_s
7746{
7747 unsigned cp;
7748 int opc1;
7749 unsigned crn;
7750 unsigned crm;
7751 int opc2;
7752 arm_feature_set deprecated;
7753 arm_feature_set obsoleted;
7754 const char *dep_msg;
7755 const char *obs_msg;
7756};
7757
7758#define DEPR_ACCESS_V8 \
7759 N_("This coprocessor register access is deprecated in ARMv8")
7760
7761/* Table of all deprecated coprocessor registers. */
7762static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
7763{
7764 {15, 0, 7, 10, 5, /* CP15DMB. */
7765 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7766 DEPR_ACCESS_V8, NULL},
7767 {15, 0, 7, 10, 4, /* CP15DSB. */
7768 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7769 DEPR_ACCESS_V8, NULL},
7770 {15, 0, 7, 5, 4, /* CP15ISB. */
7771 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7772 DEPR_ACCESS_V8, NULL},
7773 {14, 6, 1, 0, 0, /* TEEHBR. */
7774 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7775 DEPR_ACCESS_V8, NULL},
7776 {14, 6, 0, 0, 0, /* TEECR. */
7777 ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
7778 DEPR_ACCESS_V8, NULL},
7779};
7780
7781#undef DEPR_ACCESS_V8
7782
7783static const size_t deprecated_coproc_reg_count =
7784 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
7785
09d92015 7786static void
c19d1205 7787do_co_reg (void)
09d92015 7788{
fdfde340 7789 unsigned Rd;
dcbd0d71 7790 size_t i;
fdfde340
JM
7791
7792 Rd = inst.operands[2].reg;
7793 if (thumb_mode)
7794 {
7795 if (inst.instruction == 0xee000010
7796 || inst.instruction == 0xfe000010)
7797 /* MCR, MCR2 */
7798 reject_bad_reg (Rd);
7799 else
7800 /* MRC, MRC2 */
7801 constraint (Rd == REG_SP, BAD_SP);
7802 }
7803 else
7804 {
7805 /* MCR */
7806 if (inst.instruction == 0xe000010)
7807 constraint (Rd == REG_PC, BAD_PC);
7808 }
7809
dcbd0d71
MGD
7810 for (i = 0; i < deprecated_coproc_reg_count; ++i)
7811 {
7812 const struct deprecated_coproc_regs_s *r =
7813 deprecated_coproc_regs + i;
7814
7815 if (inst.operands[0].reg == r->cp
7816 && inst.operands[1].imm == r->opc1
7817 && inst.operands[3].reg == r->crn
7818 && inst.operands[4].reg == r->crm
7819 && inst.operands[5].imm == r->opc2)
7820 {
b10bf8c5 7821 if (! ARM_CPU_IS_ANY (cpu_variant)
dcbd0d71
MGD
7822 && warn_on_deprecated
7823 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
7824 as_warn ("%s", r->dep_msg);
7825 }
7826 }
fdfde340 7827
c19d1205
ZW
7828 inst.instruction |= inst.operands[0].reg << 8;
7829 inst.instruction |= inst.operands[1].imm << 21;
fdfde340 7830 inst.instruction |= Rd << 12;
c19d1205
ZW
7831 inst.instruction |= inst.operands[3].reg << 16;
7832 inst.instruction |= inst.operands[4].reg;
7833 inst.instruction |= inst.operands[5].imm << 5;
7834}
09d92015 7835
c19d1205
ZW
7836/* Transfer between coprocessor register and pair of ARM registers.
7837 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
7838 MCRR2
7839 MRRC{cond}
7840 MRRC2
b99bd4ef 7841
c19d1205 7842 Two XScale instructions are special cases of these:
09d92015 7843
c19d1205
ZW
7844 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
7845 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 7846
5f4273c7 7847 Result unpredictable if Rd or Rn is R15. */
a737bd4d 7848
c19d1205
ZW
7849static void
7850do_co_reg2c (void)
7851{
fdfde340
JM
7852 unsigned Rd, Rn;
7853
7854 Rd = inst.operands[2].reg;
7855 Rn = inst.operands[3].reg;
7856
7857 if (thumb_mode)
7858 {
7859 reject_bad_reg (Rd);
7860 reject_bad_reg (Rn);
7861 }
7862 else
7863 {
7864 constraint (Rd == REG_PC, BAD_PC);
7865 constraint (Rn == REG_PC, BAD_PC);
7866 }
7867
c19d1205
ZW
7868 inst.instruction |= inst.operands[0].reg << 8;
7869 inst.instruction |= inst.operands[1].imm << 4;
fdfde340
JM
7870 inst.instruction |= Rd << 12;
7871 inst.instruction |= Rn << 16;
c19d1205 7872 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
7873}
7874
c19d1205
ZW
7875static void
7876do_cpsi (void)
7877{
7878 inst.instruction |= inst.operands[0].imm << 6;
a028a6f5
PB
7879 if (inst.operands[1].present)
7880 {
7881 inst.instruction |= CPSI_MMOD;
7882 inst.instruction |= inst.operands[1].imm;
7883 }
c19d1205 7884}
b99bd4ef 7885
62b3e311
PB
7886static void
7887do_dbg (void)
7888{
7889 inst.instruction |= inst.operands[0].imm;
7890}
7891
eea54501
MGD
7892static void
7893do_div (void)
7894{
7895 unsigned Rd, Rn, Rm;
7896
7897 Rd = inst.operands[0].reg;
7898 Rn = (inst.operands[1].present
7899 ? inst.operands[1].reg : Rd);
7900 Rm = inst.operands[2].reg;
7901
7902 constraint ((Rd == REG_PC), BAD_PC);
7903 constraint ((Rn == REG_PC), BAD_PC);
7904 constraint ((Rm == REG_PC), BAD_PC);
7905
7906 inst.instruction |= Rd << 16;
7907 inst.instruction |= Rn << 0;
7908 inst.instruction |= Rm << 8;
7909}
7910
b99bd4ef 7911static void
c19d1205 7912do_it (void)
b99bd4ef 7913{
c19d1205 7914 /* There is no IT instruction in ARM mode. We
e07e6e58
NC
7915 process it to do the validation as if in
7916 thumb mode, just in case the code gets
7917 assembled for thumb using the unified syntax. */
7918
c19d1205 7919 inst.size = 0;
e07e6e58
NC
7920 if (unified_syntax)
7921 {
7922 set_it_insn_type (IT_INSN);
7923 now_it.mask = (inst.instruction & 0xf) | 0x10;
7924 now_it.cc = inst.operands[0].imm;
7925 }
09d92015 7926}
b99bd4ef 7927
6530b175
NC
7928/* If there is only one register in the register list,
7929 then return its register number. Otherwise return -1. */
7930static int
7931only_one_reg_in_list (int range)
7932{
7933 int i = ffs (range) - 1;
7934 return (i > 15 || range != (1 << i)) ? -1 : i;
7935}
7936
09d92015 7937static void
6530b175 7938encode_ldmstm(int from_push_pop_mnem)
ea6ef066 7939{
c19d1205
ZW
7940 int base_reg = inst.operands[0].reg;
7941 int range = inst.operands[1].imm;
6530b175 7942 int one_reg;
ea6ef066 7943
c19d1205
ZW
7944 inst.instruction |= base_reg << 16;
7945 inst.instruction |= range;
ea6ef066 7946
c19d1205
ZW
7947 if (inst.operands[1].writeback)
7948 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 7949
c19d1205 7950 if (inst.operands[0].writeback)
ea6ef066 7951 {
c19d1205
ZW
7952 inst.instruction |= WRITE_BACK;
7953 /* Check for unpredictable uses of writeback. */
7954 if (inst.instruction & LOAD_BIT)
09d92015 7955 {
c19d1205
ZW
7956 /* Not allowed in LDM type 2. */
7957 if ((inst.instruction & LDM_TYPE_2_OR_3)
7958 && ((range & (1 << REG_PC)) == 0))
7959 as_warn (_("writeback of base register is UNPREDICTABLE"));
7960 /* Only allowed if base reg not in list for other types. */
7961 else if (range & (1 << base_reg))
7962 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
7963 }
7964 else /* STM. */
7965 {
7966 /* Not allowed for type 2. */
7967 if (inst.instruction & LDM_TYPE_2_OR_3)
7968 as_warn (_("writeback of base register is UNPREDICTABLE"));
7969 /* Only allowed if base reg not in list, or first in list. */
7970 else if ((range & (1 << base_reg))
7971 && (range & ((1 << base_reg) - 1)))
7972 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 7973 }
ea6ef066 7974 }
6530b175
NC
7975
7976 /* If PUSH/POP has only one register, then use the A2 encoding. */
7977 one_reg = only_one_reg_in_list (range);
7978 if (from_push_pop_mnem && one_reg >= 0)
7979 {
7980 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
7981
7982 inst.instruction &= A_COND_MASK;
7983 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
7984 inst.instruction |= one_reg << 12;
7985 }
7986}
7987
7988static void
7989do_ldmstm (void)
7990{
7991 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
a737bd4d
NC
7992}
7993
c19d1205
ZW
7994/* ARMv5TE load-consecutive (argument parse)
7995 Mode is like LDRH.
7996
7997 LDRccD R, mode
7998 STRccD R, mode. */
7999
a737bd4d 8000static void
c19d1205 8001do_ldrd (void)
a737bd4d 8002{
c19d1205 8003 constraint (inst.operands[0].reg % 2 != 0,
c56791bb 8004 _("first transfer register must be even"));
c19d1205
ZW
8005 constraint (inst.operands[1].present
8006 && inst.operands[1].reg != inst.operands[0].reg + 1,
c56791bb 8007 _("can only transfer two consecutive registers"));
c19d1205
ZW
8008 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
8009 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 8010
c19d1205
ZW
8011 if (!inst.operands[1].present)
8012 inst.operands[1].reg = inst.operands[0].reg + 1;
5f4273c7 8013
c56791bb
RE
8014 /* encode_arm_addr_mode_3 will diagnose overlap between the base
8015 register and the first register written; we have to diagnose
8016 overlap between the base and the second register written here. */
ea6ef066 8017
c56791bb
RE
8018 if (inst.operands[2].reg == inst.operands[1].reg
8019 && (inst.operands[2].writeback || inst.operands[2].postind))
8020 as_warn (_("base register written back, and overlaps "
8021 "second transfer register"));
b05fe5cf 8022
c56791bb
RE
8023 if (!(inst.instruction & V4_STR_BIT))
8024 {
c19d1205 8025 /* For an index-register load, the index register must not overlap the
c56791bb
RE
8026 destination (even if not write-back). */
8027 if (inst.operands[2].immisreg
8028 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
8029 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
8030 as_warn (_("index register overlaps transfer register"));
b05fe5cf 8031 }
c19d1205
ZW
8032 inst.instruction |= inst.operands[0].reg << 12;
8033 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
8034}
8035
8036static void
c19d1205 8037do_ldrex (void)
b05fe5cf 8038{
c19d1205
ZW
8039 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
8040 || inst.operands[1].postind || inst.operands[1].writeback
8041 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
8042 || inst.operands[1].negative
8043 /* This can arise if the programmer has written
8044 strex rN, rM, foo
8045 or if they have mistakenly used a register name as the last
8046 operand, eg:
8047 strex rN, rM, rX
8048 It is very difficult to distinguish between these two cases
8049 because "rX" might actually be a label. ie the register
8050 name has been occluded by a symbol of the same name. So we
8051 just generate a general 'bad addressing mode' type error
8052 message and leave it up to the programmer to discover the
8053 true cause and fix their mistake. */
8054 || (inst.operands[1].reg == REG_PC),
8055 BAD_ADDR_MODE);
b05fe5cf 8056
c19d1205
ZW
8057 constraint (inst.reloc.exp.X_op != O_constant
8058 || inst.reloc.exp.X_add_number != 0,
8059 _("offset must be zero in ARM encoding"));
b05fe5cf 8060
5be8be5d
DG
8061 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
8062
c19d1205
ZW
8063 inst.instruction |= inst.operands[0].reg << 12;
8064 inst.instruction |= inst.operands[1].reg << 16;
8065 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
8066}
8067
8068static void
c19d1205 8069do_ldrexd (void)
b05fe5cf 8070{
c19d1205
ZW
8071 constraint (inst.operands[0].reg % 2 != 0,
8072 _("even register required"));
8073 constraint (inst.operands[1].present
8074 && inst.operands[1].reg != inst.operands[0].reg + 1,
8075 _("can only load two consecutive registers"));
8076 /* If op 1 were present and equal to PC, this function wouldn't
8077 have been called in the first place. */
8078 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 8079
c19d1205
ZW
8080 inst.instruction |= inst.operands[0].reg << 12;
8081 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
8082}
8083
1be5fd2e
NC
8084/* In both ARM and thumb state 'ldr pc, #imm' with an immediate
8085 which is not a multiple of four is UNPREDICTABLE. */
8086static void
8087check_ldr_r15_aligned (void)
8088{
8089 constraint (!(inst.operands[1].immisreg)
8090 && (inst.operands[0].reg == REG_PC
8091 && inst.operands[1].reg == REG_PC
8092 && (inst.reloc.exp.X_add_number & 0x3)),
8093 _("ldr to register 15 must be 4-byte alligned"));
8094}
8095
b05fe5cf 8096static void
c19d1205 8097do_ldst (void)
b05fe5cf 8098{
c19d1205
ZW
8099 inst.instruction |= inst.operands[0].reg << 12;
8100 if (!inst.operands[1].isreg)
8101 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/FALSE))
b05fe5cf 8102 return;
c19d1205 8103 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
1be5fd2e 8104 check_ldr_r15_aligned ();
b05fe5cf
ZW
8105}
8106
8107static void
c19d1205 8108do_ldstt (void)
b05fe5cf 8109{
c19d1205
ZW
8110 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8111 reject [Rn,...]. */
8112 if (inst.operands[1].preind)
b05fe5cf 8113 {
bd3ba5d1
NC
8114 constraint (inst.reloc.exp.X_op != O_constant
8115 || inst.reloc.exp.X_add_number != 0,
c19d1205 8116 _("this instruction requires a post-indexed address"));
b05fe5cf 8117
c19d1205
ZW
8118 inst.operands[1].preind = 0;
8119 inst.operands[1].postind = 1;
8120 inst.operands[1].writeback = 1;
b05fe5cf 8121 }
c19d1205
ZW
8122 inst.instruction |= inst.operands[0].reg << 12;
8123 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
8124}
b05fe5cf 8125
c19d1205 8126/* Halfword and signed-byte load/store operations. */
b05fe5cf 8127
c19d1205
ZW
8128static void
8129do_ldstv4 (void)
8130{
ff4a8d2b 8131 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205
ZW
8132 inst.instruction |= inst.operands[0].reg << 12;
8133 if (!inst.operands[1].isreg)
8134 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/TRUE))
b05fe5cf 8135 return;
c19d1205 8136 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
8137}
8138
8139static void
c19d1205 8140do_ldsttv4 (void)
b05fe5cf 8141{
c19d1205
ZW
8142 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8143 reject [Rn,...]. */
8144 if (inst.operands[1].preind)
b05fe5cf 8145 {
bd3ba5d1
NC
8146 constraint (inst.reloc.exp.X_op != O_constant
8147 || inst.reloc.exp.X_add_number != 0,
c19d1205 8148 _("this instruction requires a post-indexed address"));
b05fe5cf 8149
c19d1205
ZW
8150 inst.operands[1].preind = 0;
8151 inst.operands[1].postind = 1;
8152 inst.operands[1].writeback = 1;
b05fe5cf 8153 }
c19d1205
ZW
8154 inst.instruction |= inst.operands[0].reg << 12;
8155 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
8156}
b05fe5cf 8157
c19d1205
ZW
8158/* Co-processor register load/store.
8159 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
8160static void
8161do_lstc (void)
8162{
8163 inst.instruction |= inst.operands[0].reg << 8;
8164 inst.instruction |= inst.operands[1].reg << 12;
8165 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
8166}
8167
b05fe5cf 8168static void
c19d1205 8169do_mlas (void)
b05fe5cf 8170{
8fb9d7b9 8171 /* This restriction does not apply to mls (nor to mla in v6 or later). */
c19d1205 8172 if (inst.operands[0].reg == inst.operands[1].reg
8fb9d7b9 8173 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
c19d1205 8174 && !(inst.instruction & 0x00400000))
8fb9d7b9 8175 as_tsktsk (_("Rd and Rm should be different in mla"));
b05fe5cf 8176
c19d1205
ZW
8177 inst.instruction |= inst.operands[0].reg << 16;
8178 inst.instruction |= inst.operands[1].reg;
8179 inst.instruction |= inst.operands[2].reg << 8;
8180 inst.instruction |= inst.operands[3].reg << 12;
c19d1205 8181}
b05fe5cf 8182
c19d1205
ZW
8183static void
8184do_mov (void)
8185{
8186 inst.instruction |= inst.operands[0].reg << 12;
8187 encode_arm_shifter_operand (1);
8188}
b05fe5cf 8189
c19d1205
ZW
8190/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
8191static void
8192do_mov16 (void)
8193{
b6895b4f
PB
8194 bfd_vma imm;
8195 bfd_boolean top;
8196
8197 top = (inst.instruction & 0x00400000) != 0;
8198 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
8199 _(":lower16: not allowed this instruction"));
8200 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
8201 _(":upper16: not allowed instruction"));
c19d1205 8202 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
8203 if (inst.reloc.type == BFD_RELOC_UNUSED)
8204 {
8205 imm = inst.reloc.exp.X_add_number;
8206 /* The value is in two pieces: 0:11, 16:19. */
8207 inst.instruction |= (imm & 0x00000fff);
8208 inst.instruction |= (imm & 0x0000f000) << 4;
8209 }
b05fe5cf 8210}
b99bd4ef 8211
037e8744
JB
8212static void do_vfp_nsyn_opcode (const char *);
8213
8214static int
8215do_vfp_nsyn_mrs (void)
8216{
8217 if (inst.operands[0].isvec)
8218 {
8219 if (inst.operands[1].reg != 1)
8220 first_error (_("operand 1 must be FPSCR"));
8221 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
8222 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
8223 do_vfp_nsyn_opcode ("fmstat");
8224 }
8225 else if (inst.operands[1].isvec)
8226 do_vfp_nsyn_opcode ("fmrx");
8227 else
8228 return FAIL;
5f4273c7 8229
037e8744
JB
8230 return SUCCESS;
8231}
8232
8233static int
8234do_vfp_nsyn_msr (void)
8235{
8236 if (inst.operands[0].isvec)
8237 do_vfp_nsyn_opcode ("fmxr");
8238 else
8239 return FAIL;
8240
8241 return SUCCESS;
8242}
8243
f7c21dc7
NC
8244static void
8245do_vmrs (void)
8246{
8247 unsigned Rt = inst.operands[0].reg;
fa94de6b 8248
16d02dc9 8249 if (thumb_mode && Rt == REG_SP)
f7c21dc7
NC
8250 {
8251 inst.error = BAD_SP;
8252 return;
8253 }
8254
8255 /* APSR_ sets isvec. All other refs to PC are illegal. */
16d02dc9 8256 if (!inst.operands[0].isvec && Rt == REG_PC)
f7c21dc7
NC
8257 {
8258 inst.error = BAD_PC;
8259 return;
8260 }
8261
16d02dc9
JB
8262 /* If we get through parsing the register name, we just insert the number
8263 generated into the instruction without further validation. */
8264 inst.instruction |= (inst.operands[1].reg << 16);
f7c21dc7
NC
8265 inst.instruction |= (Rt << 12);
8266}
8267
8268static void
8269do_vmsr (void)
8270{
8271 unsigned Rt = inst.operands[1].reg;
fa94de6b 8272
f7c21dc7
NC
8273 if (thumb_mode)
8274 reject_bad_reg (Rt);
8275 else if (Rt == REG_PC)
8276 {
8277 inst.error = BAD_PC;
8278 return;
8279 }
8280
16d02dc9
JB
8281 /* If we get through parsing the register name, we just insert the number
8282 generated into the instruction without further validation. */
8283 inst.instruction |= (inst.operands[0].reg << 16);
f7c21dc7
NC
8284 inst.instruction |= (Rt << 12);
8285}
8286
b99bd4ef 8287static void
c19d1205 8288do_mrs (void)
b99bd4ef 8289{
90ec0d68
MGD
8290 unsigned br;
8291
037e8744
JB
8292 if (do_vfp_nsyn_mrs () == SUCCESS)
8293 return;
8294
ff4a8d2b 8295 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205 8296 inst.instruction |= inst.operands[0].reg << 12;
90ec0d68
MGD
8297
8298 if (inst.operands[1].isreg)
8299 {
8300 br = inst.operands[1].reg;
8301 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf000))
8302 as_bad (_("bad register for mrs"));
8303 }
8304 else
8305 {
8306 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
8307 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
8308 != (PSR_c|PSR_f),
d2cd1205 8309 _("'APSR', 'CPSR' or 'SPSR' expected"));
90ec0d68
MGD
8310 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
8311 }
8312
8313 inst.instruction |= br;
c19d1205 8314}
b99bd4ef 8315
c19d1205
ZW
8316/* Two possible forms:
8317 "{C|S}PSR_<field>, Rm",
8318 "{C|S}PSR_f, #expression". */
b99bd4ef 8319
c19d1205
ZW
8320static void
8321do_msr (void)
8322{
037e8744
JB
8323 if (do_vfp_nsyn_msr () == SUCCESS)
8324 return;
8325
c19d1205
ZW
8326 inst.instruction |= inst.operands[0].imm;
8327 if (inst.operands[1].isreg)
8328 inst.instruction |= inst.operands[1].reg;
8329 else
b99bd4ef 8330 {
c19d1205
ZW
8331 inst.instruction |= INST_IMMEDIATE;
8332 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
8333 inst.reloc.pc_rel = 0;
b99bd4ef 8334 }
b99bd4ef
NC
8335}
8336
c19d1205
ZW
8337static void
8338do_mul (void)
a737bd4d 8339{
ff4a8d2b
NC
8340 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
8341
c19d1205
ZW
8342 if (!inst.operands[2].present)
8343 inst.operands[2].reg = inst.operands[0].reg;
8344 inst.instruction |= inst.operands[0].reg << 16;
8345 inst.instruction |= inst.operands[1].reg;
8346 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 8347
8fb9d7b9
MS
8348 if (inst.operands[0].reg == inst.operands[1].reg
8349 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
8350 as_tsktsk (_("Rd and Rm should be different in mul"));
a737bd4d
NC
8351}
8352
c19d1205
ZW
8353/* Long Multiply Parser
8354 UMULL RdLo, RdHi, Rm, Rs
8355 SMULL RdLo, RdHi, Rm, Rs
8356 UMLAL RdLo, RdHi, Rm, Rs
8357 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
8358
8359static void
c19d1205 8360do_mull (void)
b99bd4ef 8361{
c19d1205
ZW
8362 inst.instruction |= inst.operands[0].reg << 12;
8363 inst.instruction |= inst.operands[1].reg << 16;
8364 inst.instruction |= inst.operands[2].reg;
8365 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 8366
682b27ad
PB
8367 /* rdhi and rdlo must be different. */
8368 if (inst.operands[0].reg == inst.operands[1].reg)
8369 as_tsktsk (_("rdhi and rdlo must be different"));
8370
8371 /* rdhi, rdlo and rm must all be different before armv6. */
8372 if ((inst.operands[0].reg == inst.operands[2].reg
c19d1205 8373 || inst.operands[1].reg == inst.operands[2].reg)
682b27ad 8374 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
c19d1205
ZW
8375 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
8376}
b99bd4ef 8377
c19d1205
ZW
8378static void
8379do_nop (void)
8380{
e7495e45
NS
8381 if (inst.operands[0].present
8382 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
c19d1205
ZW
8383 {
8384 /* Architectural NOP hints are CPSR sets with no bits selected. */
8385 inst.instruction &= 0xf0000000;
e7495e45
NS
8386 inst.instruction |= 0x0320f000;
8387 if (inst.operands[0].present)
8388 inst.instruction |= inst.operands[0].imm;
c19d1205 8389 }
b99bd4ef
NC
8390}
8391
c19d1205
ZW
8392/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
8393 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
8394 Condition defaults to COND_ALWAYS.
8395 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
8396
8397static void
c19d1205 8398do_pkhbt (void)
b99bd4ef 8399{
c19d1205
ZW
8400 inst.instruction |= inst.operands[0].reg << 12;
8401 inst.instruction |= inst.operands[1].reg << 16;
8402 inst.instruction |= inst.operands[2].reg;
8403 if (inst.operands[3].present)
8404 encode_arm_shift (3);
8405}
b99bd4ef 8406
c19d1205 8407/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 8408
c19d1205
ZW
8409static void
8410do_pkhtb (void)
8411{
8412 if (!inst.operands[3].present)
b99bd4ef 8413 {
c19d1205
ZW
8414 /* If the shift specifier is omitted, turn the instruction
8415 into pkhbt rd, rm, rn. */
8416 inst.instruction &= 0xfff00010;
8417 inst.instruction |= inst.operands[0].reg << 12;
8418 inst.instruction |= inst.operands[1].reg;
8419 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
8420 }
8421 else
8422 {
c19d1205
ZW
8423 inst.instruction |= inst.operands[0].reg << 12;
8424 inst.instruction |= inst.operands[1].reg << 16;
8425 inst.instruction |= inst.operands[2].reg;
8426 encode_arm_shift (3);
b99bd4ef
NC
8427 }
8428}
8429
c19d1205 8430/* ARMv5TE: Preload-Cache
60e5ef9f 8431 MP Extensions: Preload for write
c19d1205 8432
60e5ef9f 8433 PLD(W) <addr_mode>
c19d1205
ZW
8434
8435 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
8436
8437static void
c19d1205 8438do_pld (void)
b99bd4ef 8439{
c19d1205
ZW
8440 constraint (!inst.operands[0].isreg,
8441 _("'[' expected after PLD mnemonic"));
8442 constraint (inst.operands[0].postind,
8443 _("post-indexed expression used in preload instruction"));
8444 constraint (inst.operands[0].writeback,
8445 _("writeback used in preload instruction"));
8446 constraint (!inst.operands[0].preind,
8447 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
8448 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8449}
b99bd4ef 8450
62b3e311
PB
8451/* ARMv7: PLI <addr_mode> */
8452static void
8453do_pli (void)
8454{
8455 constraint (!inst.operands[0].isreg,
8456 _("'[' expected after PLI mnemonic"));
8457 constraint (inst.operands[0].postind,
8458 _("post-indexed expression used in preload instruction"));
8459 constraint (inst.operands[0].writeback,
8460 _("writeback used in preload instruction"));
8461 constraint (!inst.operands[0].preind,
8462 _("unindexed addressing used in preload instruction"));
8463 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
8464 inst.instruction &= ~PRE_INDEX;
8465}
8466
c19d1205
ZW
8467static void
8468do_push_pop (void)
8469{
8470 inst.operands[1] = inst.operands[0];
8471 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
8472 inst.operands[0].isreg = 1;
8473 inst.operands[0].writeback = 1;
8474 inst.operands[0].reg = REG_SP;
6530b175 8475 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
c19d1205 8476}
b99bd4ef 8477
c19d1205
ZW
8478/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
8479 word at the specified address and the following word
8480 respectively.
8481 Unconditionally executed.
8482 Error if Rn is R15. */
b99bd4ef 8483
c19d1205
ZW
8484static void
8485do_rfe (void)
8486{
8487 inst.instruction |= inst.operands[0].reg << 16;
8488 if (inst.operands[0].writeback)
8489 inst.instruction |= WRITE_BACK;
8490}
b99bd4ef 8491
c19d1205 8492/* ARM V6 ssat (argument parse). */
b99bd4ef 8493
c19d1205
ZW
8494static void
8495do_ssat (void)
8496{
8497 inst.instruction |= inst.operands[0].reg << 12;
8498 inst.instruction |= (inst.operands[1].imm - 1) << 16;
8499 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8500
c19d1205
ZW
8501 if (inst.operands[3].present)
8502 encode_arm_shift (3);
b99bd4ef
NC
8503}
8504
c19d1205 8505/* ARM V6 usat (argument parse). */
b99bd4ef
NC
8506
8507static void
c19d1205 8508do_usat (void)
b99bd4ef 8509{
c19d1205
ZW
8510 inst.instruction |= inst.operands[0].reg << 12;
8511 inst.instruction |= inst.operands[1].imm << 16;
8512 inst.instruction |= inst.operands[2].reg;
b99bd4ef 8513
c19d1205
ZW
8514 if (inst.operands[3].present)
8515 encode_arm_shift (3);
b99bd4ef
NC
8516}
8517
c19d1205 8518/* ARM V6 ssat16 (argument parse). */
09d92015
MM
8519
8520static void
c19d1205 8521do_ssat16 (void)
09d92015 8522{
c19d1205
ZW
8523 inst.instruction |= inst.operands[0].reg << 12;
8524 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
8525 inst.instruction |= inst.operands[2].reg;
09d92015
MM
8526}
8527
c19d1205
ZW
8528static void
8529do_usat16 (void)
a737bd4d 8530{
c19d1205
ZW
8531 inst.instruction |= inst.operands[0].reg << 12;
8532 inst.instruction |= inst.operands[1].imm << 16;
8533 inst.instruction |= inst.operands[2].reg;
8534}
a737bd4d 8535
c19d1205
ZW
8536/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
8537 preserving the other bits.
a737bd4d 8538
c19d1205
ZW
8539 setend <endian_specifier>, where <endian_specifier> is either
8540 BE or LE. */
a737bd4d 8541
c19d1205
ZW
8542static void
8543do_setend (void)
8544{
12e37cbc
MGD
8545 if (warn_on_deprecated
8546 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
8547 as_warn (_("setend use is deprecated for ARMv8"));
8548
c19d1205
ZW
8549 if (inst.operands[0].imm)
8550 inst.instruction |= 0x200;
a737bd4d
NC
8551}
8552
8553static void
c19d1205 8554do_shift (void)
a737bd4d 8555{
c19d1205
ZW
8556 unsigned int Rm = (inst.operands[1].present
8557 ? inst.operands[1].reg
8558 : inst.operands[0].reg);
a737bd4d 8559
c19d1205
ZW
8560 inst.instruction |= inst.operands[0].reg << 12;
8561 inst.instruction |= Rm;
8562 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 8563 {
c19d1205
ZW
8564 inst.instruction |= inst.operands[2].reg << 8;
8565 inst.instruction |= SHIFT_BY_REG;
94342ec3
NC
8566 /* PR 12854: Error on extraneous shifts. */
8567 constraint (inst.operands[2].shifted,
8568 _("extraneous shift as part of operand to shift insn"));
a737bd4d
NC
8569 }
8570 else
c19d1205 8571 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
8572}
8573
09d92015 8574static void
3eb17e6b 8575do_smc (void)
09d92015 8576{
3eb17e6b 8577 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 8578 inst.reloc.pc_rel = 0;
09d92015
MM
8579}
8580
90ec0d68
MGD
8581static void
8582do_hvc (void)
8583{
8584 inst.reloc.type = BFD_RELOC_ARM_HVC;
8585 inst.reloc.pc_rel = 0;
8586}
8587
09d92015 8588static void
c19d1205 8589do_swi (void)
09d92015 8590{
c19d1205
ZW
8591 inst.reloc.type = BFD_RELOC_ARM_SWI;
8592 inst.reloc.pc_rel = 0;
09d92015
MM
8593}
8594
c19d1205
ZW
8595/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
8596 SMLAxy{cond} Rd,Rm,Rs,Rn
8597 SMLAWy{cond} Rd,Rm,Rs,Rn
8598 Error if any register is R15. */
e16bb312 8599
c19d1205
ZW
8600static void
8601do_smla (void)
e16bb312 8602{
c19d1205
ZW
8603 inst.instruction |= inst.operands[0].reg << 16;
8604 inst.instruction |= inst.operands[1].reg;
8605 inst.instruction |= inst.operands[2].reg << 8;
8606 inst.instruction |= inst.operands[3].reg << 12;
8607}
a737bd4d 8608
c19d1205
ZW
8609/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
8610 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
8611 Error if any register is R15.
8612 Warning if Rdlo == Rdhi. */
a737bd4d 8613
c19d1205
ZW
8614static void
8615do_smlal (void)
8616{
8617 inst.instruction |= inst.operands[0].reg << 12;
8618 inst.instruction |= inst.operands[1].reg << 16;
8619 inst.instruction |= inst.operands[2].reg;
8620 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 8621
c19d1205
ZW
8622 if (inst.operands[0].reg == inst.operands[1].reg)
8623 as_tsktsk (_("rdhi and rdlo must be different"));
8624}
a737bd4d 8625
c19d1205
ZW
8626/* ARM V5E (El Segundo) signed-multiply (argument parse)
8627 SMULxy{cond} Rd,Rm,Rs
8628 Error if any register is R15. */
a737bd4d 8629
c19d1205
ZW
8630static void
8631do_smul (void)
8632{
8633 inst.instruction |= inst.operands[0].reg << 16;
8634 inst.instruction |= inst.operands[1].reg;
8635 inst.instruction |= inst.operands[2].reg << 8;
8636}
a737bd4d 8637
b6702015
PB
8638/* ARM V6 srs (argument parse). The variable fields in the encoding are
8639 the same for both ARM and Thumb-2. */
a737bd4d 8640
c19d1205
ZW
8641static void
8642do_srs (void)
8643{
b6702015
PB
8644 int reg;
8645
8646 if (inst.operands[0].present)
8647 {
8648 reg = inst.operands[0].reg;
fdfde340 8649 constraint (reg != REG_SP, _("SRS base register must be r13"));
b6702015
PB
8650 }
8651 else
fdfde340 8652 reg = REG_SP;
b6702015
PB
8653
8654 inst.instruction |= reg << 16;
8655 inst.instruction |= inst.operands[1].imm;
8656 if (inst.operands[0].writeback || inst.operands[1].writeback)
c19d1205
ZW
8657 inst.instruction |= WRITE_BACK;
8658}
a737bd4d 8659
c19d1205 8660/* ARM V6 strex (argument parse). */
a737bd4d 8661
c19d1205
ZW
8662static void
8663do_strex (void)
8664{
8665 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8666 || inst.operands[2].postind || inst.operands[2].writeback
8667 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
8668 || inst.operands[2].negative
8669 /* See comment in do_ldrex(). */
8670 || (inst.operands[2].reg == REG_PC),
8671 BAD_ADDR_MODE);
a737bd4d 8672
c19d1205
ZW
8673 constraint (inst.operands[0].reg == inst.operands[1].reg
8674 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 8675
c19d1205
ZW
8676 constraint (inst.reloc.exp.X_op != O_constant
8677 || inst.reloc.exp.X_add_number != 0,
8678 _("offset must be zero in ARM encoding"));
a737bd4d 8679
c19d1205
ZW
8680 inst.instruction |= inst.operands[0].reg << 12;
8681 inst.instruction |= inst.operands[1].reg;
8682 inst.instruction |= inst.operands[2].reg << 16;
8683 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
8684}
8685
877807f8
NC
8686static void
8687do_t_strexbh (void)
8688{
8689 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
8690 || inst.operands[2].postind || inst.operands[2].writeback
8691 || inst.operands[2].immisreg || inst.operands[2].shifted
8692 || inst.operands[2].negative,
8693 BAD_ADDR_MODE);
8694
8695 constraint (inst.operands[0].reg == inst.operands[1].reg
8696 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8697
8698 do_rm_rd_rn ();
8699}
8700
e16bb312 8701static void
c19d1205 8702do_strexd (void)
e16bb312 8703{
c19d1205
ZW
8704 constraint (inst.operands[1].reg % 2 != 0,
8705 _("even register required"));
8706 constraint (inst.operands[2].present
8707 && inst.operands[2].reg != inst.operands[1].reg + 1,
8708 _("can only store two consecutive registers"));
8709 /* If op 2 were present and equal to PC, this function wouldn't
8710 have been called in the first place. */
8711 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 8712
c19d1205
ZW
8713 constraint (inst.operands[0].reg == inst.operands[1].reg
8714 || inst.operands[0].reg == inst.operands[1].reg + 1
8715 || inst.operands[0].reg == inst.operands[3].reg,
8716 BAD_OVERLAP);
e16bb312 8717
c19d1205
ZW
8718 inst.instruction |= inst.operands[0].reg << 12;
8719 inst.instruction |= inst.operands[1].reg;
8720 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
8721}
8722
9eb6c0f1
MGD
8723/* ARM V8 STRL. */
8724static void
4b8c8c02 8725do_stlex (void)
9eb6c0f1
MGD
8726{
8727 constraint (inst.operands[0].reg == inst.operands[1].reg
8728 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8729
8730 do_rd_rm_rn ();
8731}
8732
8733static void
4b8c8c02 8734do_t_stlex (void)
9eb6c0f1
MGD
8735{
8736 constraint (inst.operands[0].reg == inst.operands[1].reg
8737 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
8738
8739 do_rm_rd_rn ();
8740}
8741
c19d1205
ZW
8742/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
8743 extends it to 32-bits, and adds the result to a value in another
8744 register. You can specify a rotation by 0, 8, 16, or 24 bits
8745 before extracting the 16-bit value.
8746 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
8747 Condition defaults to COND_ALWAYS.
8748 Error if any register uses R15. */
8749
e16bb312 8750static void
c19d1205 8751do_sxtah (void)
e16bb312 8752{
c19d1205
ZW
8753 inst.instruction |= inst.operands[0].reg << 12;
8754 inst.instruction |= inst.operands[1].reg << 16;
8755 inst.instruction |= inst.operands[2].reg;
8756 inst.instruction |= inst.operands[3].imm << 10;
8757}
e16bb312 8758
c19d1205 8759/* ARM V6 SXTH.
e16bb312 8760
c19d1205
ZW
8761 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
8762 Condition defaults to COND_ALWAYS.
8763 Error if any register uses R15. */
e16bb312
NC
8764
8765static void
c19d1205 8766do_sxth (void)
e16bb312 8767{
c19d1205
ZW
8768 inst.instruction |= inst.operands[0].reg << 12;
8769 inst.instruction |= inst.operands[1].reg;
8770 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 8771}
c19d1205
ZW
8772\f
8773/* VFP instructions. In a logical order: SP variant first, monad
8774 before dyad, arithmetic then move then load/store. */
e16bb312
NC
8775
8776static void
c19d1205 8777do_vfp_sp_monadic (void)
e16bb312 8778{
5287ad62
JB
8779 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8780 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8781}
8782
8783static void
c19d1205 8784do_vfp_sp_dyadic (void)
e16bb312 8785{
5287ad62
JB
8786 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8787 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
8788 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8789}
8790
8791static void
c19d1205 8792do_vfp_sp_compare_z (void)
e16bb312 8793{
5287ad62 8794 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
8795}
8796
8797static void
c19d1205 8798do_vfp_dp_sp_cvt (void)
e16bb312 8799{
5287ad62
JB
8800 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8801 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
8802}
8803
8804static void
c19d1205 8805do_vfp_sp_dp_cvt (void)
e16bb312 8806{
5287ad62
JB
8807 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
8808 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
8809}
8810
8811static void
c19d1205 8812do_vfp_reg_from_sp (void)
e16bb312 8813{
c19d1205 8814 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 8815 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
8816}
8817
8818static void
c19d1205 8819do_vfp_reg2_from_sp2 (void)
e16bb312 8820{
c19d1205
ZW
8821 constraint (inst.operands[2].imm != 2,
8822 _("only two consecutive VFP SP registers allowed here"));
8823 inst.instruction |= inst.operands[0].reg << 12;
8824 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 8825 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
8826}
8827
8828static void
c19d1205 8829do_vfp_sp_from_reg (void)
e16bb312 8830{
5287ad62 8831 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 8832 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
8833}
8834
8835static void
c19d1205 8836do_vfp_sp2_from_reg2 (void)
e16bb312 8837{
c19d1205
ZW
8838 constraint (inst.operands[0].imm != 2,
8839 _("only two consecutive VFP SP registers allowed here"));
5287ad62 8840 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
8841 inst.instruction |= inst.operands[1].reg << 12;
8842 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
8843}
8844
8845static void
c19d1205 8846do_vfp_sp_ldst (void)
e16bb312 8847{
5287ad62 8848 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 8849 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8850}
8851
8852static void
c19d1205 8853do_vfp_dp_ldst (void)
e16bb312 8854{
5287ad62 8855 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 8856 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
8857}
8858
c19d1205 8859
e16bb312 8860static void
c19d1205 8861vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8862{
c19d1205
ZW
8863 if (inst.operands[0].writeback)
8864 inst.instruction |= WRITE_BACK;
8865 else
8866 constraint (ldstm_type != VFP_LDSTMIA,
8867 _("this addressing mode requires base-register writeback"));
8868 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8869 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 8870 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
8871}
8872
8873static void
c19d1205 8874vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 8875{
c19d1205 8876 int count;
e16bb312 8877
c19d1205
ZW
8878 if (inst.operands[0].writeback)
8879 inst.instruction |= WRITE_BACK;
8880 else
8881 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
8882 _("this addressing mode requires base-register writeback"));
e16bb312 8883
c19d1205 8884 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 8885 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 8886
c19d1205
ZW
8887 count = inst.operands[1].imm << 1;
8888 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
8889 count += 1;
e16bb312 8890
c19d1205 8891 inst.instruction |= count;
e16bb312
NC
8892}
8893
8894static void
c19d1205 8895do_vfp_sp_ldstmia (void)
e16bb312 8896{
c19d1205 8897 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8898}
8899
8900static void
c19d1205 8901do_vfp_sp_ldstmdb (void)
e16bb312 8902{
c19d1205 8903 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8904}
8905
8906static void
c19d1205 8907do_vfp_dp_ldstmia (void)
e16bb312 8908{
c19d1205 8909 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
8910}
8911
8912static void
c19d1205 8913do_vfp_dp_ldstmdb (void)
e16bb312 8914{
c19d1205 8915 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
8916}
8917
8918static void
c19d1205 8919do_vfp_xp_ldstmia (void)
e16bb312 8920{
c19d1205
ZW
8921 vfp_dp_ldstm (VFP_LDSTMIAX);
8922}
e16bb312 8923
c19d1205
ZW
8924static void
8925do_vfp_xp_ldstmdb (void)
8926{
8927 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 8928}
5287ad62
JB
8929
8930static void
8931do_vfp_dp_rd_rm (void)
8932{
8933 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8934 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
8935}
8936
8937static void
8938do_vfp_dp_rn_rd (void)
8939{
8940 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
8941 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8942}
8943
8944static void
8945do_vfp_dp_rd_rn (void)
8946{
8947 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8948 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8949}
8950
8951static void
8952do_vfp_dp_rd_rn_rm (void)
8953{
8954 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8955 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
8956 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
8957}
8958
8959static void
8960do_vfp_dp_rd (void)
8961{
8962 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
8963}
8964
8965static void
8966do_vfp_dp_rm_rd_rn (void)
8967{
8968 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
8969 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
8970 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
8971}
8972
8973/* VFPv3 instructions. */
8974static void
8975do_vfp_sp_const (void)
8976{
8977 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
00249aaa
PB
8978 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
8979 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
8980}
8981
8982static void
8983do_vfp_dp_const (void)
8984{
8985 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
00249aaa
PB
8986 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
8987 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
8988}
8989
8990static void
8991vfp_conv (int srcsize)
8992{
5f1af56b
MGD
8993 int immbits = srcsize - inst.operands[1].imm;
8994
fa94de6b
RM
8995 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
8996 {
5f1af56b
MGD
8997 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
8998 i.e. immbits must be in range 0 - 16. */
8999 inst.error = _("immediate value out of range, expected range [0, 16]");
9000 return;
9001 }
fa94de6b 9002 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
5f1af56b
MGD
9003 {
9004 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
9005 i.e. immbits must be in range 0 - 31. */
9006 inst.error = _("immediate value out of range, expected range [1, 32]");
9007 return;
9008 }
9009
5287ad62
JB
9010 inst.instruction |= (immbits & 1) << 5;
9011 inst.instruction |= (immbits >> 1);
9012}
9013
9014static void
9015do_vfp_sp_conv_16 (void)
9016{
9017 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9018 vfp_conv (16);
9019}
9020
9021static void
9022do_vfp_dp_conv_16 (void)
9023{
9024 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9025 vfp_conv (16);
9026}
9027
9028static void
9029do_vfp_sp_conv_32 (void)
9030{
9031 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9032 vfp_conv (32);
9033}
9034
9035static void
9036do_vfp_dp_conv_32 (void)
9037{
9038 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9039 vfp_conv (32);
9040}
c19d1205
ZW
9041\f
9042/* FPA instructions. Also in a logical order. */
e16bb312 9043
c19d1205
ZW
9044static void
9045do_fpa_cmp (void)
9046{
9047 inst.instruction |= inst.operands[0].reg << 16;
9048 inst.instruction |= inst.operands[1].reg;
9049}
b99bd4ef
NC
9050
9051static void
c19d1205 9052do_fpa_ldmstm (void)
b99bd4ef 9053{
c19d1205
ZW
9054 inst.instruction |= inst.operands[0].reg << 12;
9055 switch (inst.operands[1].imm)
9056 {
9057 case 1: inst.instruction |= CP_T_X; break;
9058 case 2: inst.instruction |= CP_T_Y; break;
9059 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
9060 case 4: break;
9061 default: abort ();
9062 }
b99bd4ef 9063
c19d1205
ZW
9064 if (inst.instruction & (PRE_INDEX | INDEX_UP))
9065 {
9066 /* The instruction specified "ea" or "fd", so we can only accept
9067 [Rn]{!}. The instruction does not really support stacking or
9068 unstacking, so we have to emulate these by setting appropriate
9069 bits and offsets. */
9070 constraint (inst.reloc.exp.X_op != O_constant
9071 || inst.reloc.exp.X_add_number != 0,
9072 _("this instruction does not support indexing"));
b99bd4ef 9073
c19d1205
ZW
9074 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
9075 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 9076
c19d1205
ZW
9077 if (!(inst.instruction & INDEX_UP))
9078 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 9079
c19d1205
ZW
9080 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
9081 {
9082 inst.operands[2].preind = 0;
9083 inst.operands[2].postind = 1;
9084 }
9085 }
b99bd4ef 9086
c19d1205 9087 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 9088}
c19d1205
ZW
9089\f
9090/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 9091
c19d1205
ZW
9092static void
9093do_iwmmxt_tandorc (void)
9094{
9095 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
9096}
b99bd4ef 9097
c19d1205
ZW
9098static void
9099do_iwmmxt_textrc (void)
9100{
9101 inst.instruction |= inst.operands[0].reg << 12;
9102 inst.instruction |= inst.operands[1].imm;
9103}
b99bd4ef
NC
9104
9105static void
c19d1205 9106do_iwmmxt_textrm (void)
b99bd4ef 9107{
c19d1205
ZW
9108 inst.instruction |= inst.operands[0].reg << 12;
9109 inst.instruction |= inst.operands[1].reg << 16;
9110 inst.instruction |= inst.operands[2].imm;
9111}
b99bd4ef 9112
c19d1205
ZW
9113static void
9114do_iwmmxt_tinsr (void)
9115{
9116 inst.instruction |= inst.operands[0].reg << 16;
9117 inst.instruction |= inst.operands[1].reg << 12;
9118 inst.instruction |= inst.operands[2].imm;
9119}
b99bd4ef 9120
c19d1205
ZW
9121static void
9122do_iwmmxt_tmia (void)
9123{
9124 inst.instruction |= inst.operands[0].reg << 5;
9125 inst.instruction |= inst.operands[1].reg;
9126 inst.instruction |= inst.operands[2].reg << 12;
9127}
b99bd4ef 9128
c19d1205
ZW
9129static void
9130do_iwmmxt_waligni (void)
9131{
9132 inst.instruction |= inst.operands[0].reg << 12;
9133 inst.instruction |= inst.operands[1].reg << 16;
9134 inst.instruction |= inst.operands[2].reg;
9135 inst.instruction |= inst.operands[3].imm << 20;
9136}
b99bd4ef 9137
2d447fca
JM
9138static void
9139do_iwmmxt_wmerge (void)
9140{
9141 inst.instruction |= inst.operands[0].reg << 12;
9142 inst.instruction |= inst.operands[1].reg << 16;
9143 inst.instruction |= inst.operands[2].reg;
9144 inst.instruction |= inst.operands[3].imm << 21;
9145}
9146
c19d1205
ZW
9147static void
9148do_iwmmxt_wmov (void)
9149{
9150 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
9151 inst.instruction |= inst.operands[0].reg << 12;
9152 inst.instruction |= inst.operands[1].reg << 16;
9153 inst.instruction |= inst.operands[1].reg;
9154}
b99bd4ef 9155
c19d1205
ZW
9156static void
9157do_iwmmxt_wldstbh (void)
9158{
8f06b2d8 9159 int reloc;
c19d1205 9160 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
9161 if (thumb_mode)
9162 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
9163 else
9164 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
9165 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
9166}
9167
c19d1205
ZW
9168static void
9169do_iwmmxt_wldstw (void)
9170{
9171 /* RIWR_RIWC clears .isreg for a control register. */
9172 if (!inst.operands[0].isreg)
9173 {
9174 constraint (inst.cond != COND_ALWAYS, BAD_COND);
9175 inst.instruction |= 0xf0000000;
9176 }
b99bd4ef 9177
c19d1205
ZW
9178 inst.instruction |= inst.operands[0].reg << 12;
9179 encode_arm_cp_address (1, TRUE, TRUE, 0);
9180}
b99bd4ef
NC
9181
9182static void
c19d1205 9183do_iwmmxt_wldstd (void)
b99bd4ef 9184{
c19d1205 9185 inst.instruction |= inst.operands[0].reg << 12;
2d447fca
JM
9186 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
9187 && inst.operands[1].immisreg)
9188 {
9189 inst.instruction &= ~0x1a000ff;
9190 inst.instruction |= (0xf << 28);
9191 if (inst.operands[1].preind)
9192 inst.instruction |= PRE_INDEX;
9193 if (!inst.operands[1].negative)
9194 inst.instruction |= INDEX_UP;
9195 if (inst.operands[1].writeback)
9196 inst.instruction |= WRITE_BACK;
9197 inst.instruction |= inst.operands[1].reg << 16;
9198 inst.instruction |= inst.reloc.exp.X_add_number << 4;
9199 inst.instruction |= inst.operands[1].imm;
9200 }
9201 else
9202 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 9203}
b99bd4ef 9204
c19d1205
ZW
9205static void
9206do_iwmmxt_wshufh (void)
9207{
9208 inst.instruction |= inst.operands[0].reg << 12;
9209 inst.instruction |= inst.operands[1].reg << 16;
9210 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
9211 inst.instruction |= (inst.operands[2].imm & 0x0f);
9212}
b99bd4ef 9213
c19d1205
ZW
9214static void
9215do_iwmmxt_wzero (void)
9216{
9217 /* WZERO reg is an alias for WANDN reg, reg, reg. */
9218 inst.instruction |= inst.operands[0].reg;
9219 inst.instruction |= inst.operands[0].reg << 12;
9220 inst.instruction |= inst.operands[0].reg << 16;
9221}
2d447fca
JM
9222
9223static void
9224do_iwmmxt_wrwrwr_or_imm5 (void)
9225{
9226 if (inst.operands[2].isreg)
9227 do_rd_rn_rm ();
9228 else {
9229 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
9230 _("immediate operand requires iWMMXt2"));
9231 do_rd_rn ();
9232 if (inst.operands[2].imm == 0)
9233 {
9234 switch ((inst.instruction >> 20) & 0xf)
9235 {
9236 case 4:
9237 case 5:
9238 case 6:
5f4273c7 9239 case 7:
2d447fca
JM
9240 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
9241 inst.operands[2].imm = 16;
9242 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
9243 break;
9244 case 8:
9245 case 9:
9246 case 10:
9247 case 11:
9248 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
9249 inst.operands[2].imm = 32;
9250 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
9251 break;
9252 case 12:
9253 case 13:
9254 case 14:
9255 case 15:
9256 {
9257 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
9258 unsigned long wrn;
9259 wrn = (inst.instruction >> 16) & 0xf;
9260 inst.instruction &= 0xff0fff0f;
9261 inst.instruction |= wrn;
9262 /* Bail out here; the instruction is now assembled. */
9263 return;
9264 }
9265 }
9266 }
9267 /* Map 32 -> 0, etc. */
9268 inst.operands[2].imm &= 0x1f;
9269 inst.instruction |= (0xf << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
9270 }
9271}
c19d1205
ZW
9272\f
9273/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
9274 operations first, then control, shift, and load/store. */
b99bd4ef 9275
c19d1205 9276/* Insns like "foo X,Y,Z". */
b99bd4ef 9277
c19d1205
ZW
9278static void
9279do_mav_triple (void)
9280{
9281 inst.instruction |= inst.operands[0].reg << 16;
9282 inst.instruction |= inst.operands[1].reg;
9283 inst.instruction |= inst.operands[2].reg << 12;
9284}
b99bd4ef 9285
c19d1205
ZW
9286/* Insns like "foo W,X,Y,Z".
9287 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 9288
c19d1205
ZW
9289static void
9290do_mav_quad (void)
9291{
9292 inst.instruction |= inst.operands[0].reg << 5;
9293 inst.instruction |= inst.operands[1].reg << 12;
9294 inst.instruction |= inst.operands[2].reg << 16;
9295 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
9296}
9297
c19d1205
ZW
9298/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
9299static void
9300do_mav_dspsc (void)
a737bd4d 9301{
c19d1205
ZW
9302 inst.instruction |= inst.operands[1].reg << 12;
9303}
a737bd4d 9304
c19d1205
ZW
9305/* Maverick shift immediate instructions.
9306 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
9307 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 9308
c19d1205
ZW
9309static void
9310do_mav_shift (void)
9311{
9312 int imm = inst.operands[2].imm;
a737bd4d 9313
c19d1205
ZW
9314 inst.instruction |= inst.operands[0].reg << 12;
9315 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 9316
c19d1205
ZW
9317 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
9318 Bits 5-7 of the insn should have bits 4-6 of the immediate.
9319 Bit 4 should be 0. */
9320 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 9321
c19d1205
ZW
9322 inst.instruction |= imm;
9323}
9324\f
9325/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 9326
c19d1205
ZW
9327/* Xscale multiply-accumulate (argument parse)
9328 MIAcc acc0,Rm,Rs
9329 MIAPHcc acc0,Rm,Rs
9330 MIAxycc acc0,Rm,Rs. */
a737bd4d 9331
c19d1205
ZW
9332static void
9333do_xsc_mia (void)
9334{
9335 inst.instruction |= inst.operands[1].reg;
9336 inst.instruction |= inst.operands[2].reg << 12;
9337}
a737bd4d 9338
c19d1205 9339/* Xscale move-accumulator-register (argument parse)
a737bd4d 9340
c19d1205 9341 MARcc acc0,RdLo,RdHi. */
b99bd4ef 9342
c19d1205
ZW
9343static void
9344do_xsc_mar (void)
9345{
9346 inst.instruction |= inst.operands[1].reg << 12;
9347 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9348}
9349
c19d1205 9350/* Xscale move-register-accumulator (argument parse)
b99bd4ef 9351
c19d1205 9352 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
9353
9354static void
c19d1205 9355do_xsc_mra (void)
b99bd4ef 9356{
c19d1205
ZW
9357 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
9358 inst.instruction |= inst.operands[0].reg << 12;
9359 inst.instruction |= inst.operands[1].reg << 16;
9360}
9361\f
9362/* Encoding functions relevant only to Thumb. */
b99bd4ef 9363
c19d1205
ZW
9364/* inst.operands[i] is a shifted-register operand; encode
9365 it into inst.instruction in the format used by Thumb32. */
9366
9367static void
9368encode_thumb32_shifted_operand (int i)
9369{
9370 unsigned int value = inst.reloc.exp.X_add_number;
9371 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 9372
9c3c69f2
PB
9373 constraint (inst.operands[i].immisreg,
9374 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
9375 inst.instruction |= inst.operands[i].reg;
9376 if (shift == SHIFT_RRX)
9377 inst.instruction |= SHIFT_ROR << 4;
9378 else
b99bd4ef 9379 {
c19d1205
ZW
9380 constraint (inst.reloc.exp.X_op != O_constant,
9381 _("expression too complex"));
9382
9383 constraint (value > 32
9384 || (value == 32 && (shift == SHIFT_LSL
9385 || shift == SHIFT_ROR)),
9386 _("shift expression is too large"));
9387
9388 if (value == 0)
9389 shift = SHIFT_LSL;
9390 else if (value == 32)
9391 value = 0;
9392
9393 inst.instruction |= shift << 4;
9394 inst.instruction |= (value & 0x1c) << 10;
9395 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 9396 }
c19d1205 9397}
b99bd4ef 9398
b99bd4ef 9399
c19d1205
ZW
9400/* inst.operands[i] was set up by parse_address. Encode it into a
9401 Thumb32 format load or store instruction. Reject forms that cannot
9402 be used with such instructions. If is_t is true, reject forms that
9403 cannot be used with a T instruction; if is_d is true, reject forms
5be8be5d
DG
9404 that cannot be used with a D instruction. If it is a store insn,
9405 reject PC in Rn. */
b99bd4ef 9406
c19d1205
ZW
9407static void
9408encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
9409{
5be8be5d 9410 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
c19d1205
ZW
9411
9412 constraint (!inst.operands[i].isreg,
53365c0d 9413 _("Instruction does not support =N addresses"));
b99bd4ef 9414
c19d1205
ZW
9415 inst.instruction |= inst.operands[i].reg << 16;
9416 if (inst.operands[i].immisreg)
b99bd4ef 9417 {
5be8be5d 9418 constraint (is_pc, BAD_PC_ADDRESSING);
c19d1205
ZW
9419 constraint (is_t || is_d, _("cannot use register index with this instruction"));
9420 constraint (inst.operands[i].negative,
9421 _("Thumb does not support negative register indexing"));
9422 constraint (inst.operands[i].postind,
9423 _("Thumb does not support register post-indexing"));
9424 constraint (inst.operands[i].writeback,
9425 _("Thumb does not support register indexing with writeback"));
9426 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
9427 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 9428
f40d1643 9429 inst.instruction |= inst.operands[i].imm;
c19d1205 9430 if (inst.operands[i].shifted)
b99bd4ef 9431 {
c19d1205
ZW
9432 constraint (inst.reloc.exp.X_op != O_constant,
9433 _("expression too complex"));
9c3c69f2
PB
9434 constraint (inst.reloc.exp.X_add_number < 0
9435 || inst.reloc.exp.X_add_number > 3,
c19d1205 9436 _("shift out of range"));
9c3c69f2 9437 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
9438 }
9439 inst.reloc.type = BFD_RELOC_UNUSED;
9440 }
9441 else if (inst.operands[i].preind)
9442 {
5be8be5d 9443 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
f40d1643 9444 constraint (is_t && inst.operands[i].writeback,
c19d1205 9445 _("cannot use writeback with this instruction"));
4755303e
WN
9446 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0),
9447 BAD_PC_ADDRESSING);
c19d1205
ZW
9448
9449 if (is_d)
9450 {
9451 inst.instruction |= 0x01000000;
9452 if (inst.operands[i].writeback)
9453 inst.instruction |= 0x00200000;
b99bd4ef 9454 }
c19d1205 9455 else
b99bd4ef 9456 {
c19d1205
ZW
9457 inst.instruction |= 0x00000c00;
9458 if (inst.operands[i].writeback)
9459 inst.instruction |= 0x00000100;
b99bd4ef 9460 }
c19d1205 9461 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 9462 }
c19d1205 9463 else if (inst.operands[i].postind)
b99bd4ef 9464 {
9c2799c2 9465 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
9466 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
9467 constraint (is_t, _("cannot use post-indexing with this instruction"));
9468
9469 if (is_d)
9470 inst.instruction |= 0x00200000;
9471 else
9472 inst.instruction |= 0x00000900;
9473 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
9474 }
9475 else /* unindexed - only for coprocessor */
9476 inst.error = _("instruction does not accept unindexed addressing");
9477}
9478
9479/* Table of Thumb instructions which exist in both 16- and 32-bit
9480 encodings (the latter only in post-V6T2 cores). The index is the
9481 value used in the insns table below. When there is more than one
9482 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
9483 holds variant (1).
9484 Also contains several pseudo-instructions used during relaxation. */
c19d1205 9485#define T16_32_TAB \
21d799b5
NC
9486 X(_adc, 4140, eb400000), \
9487 X(_adcs, 4140, eb500000), \
9488 X(_add, 1c00, eb000000), \
9489 X(_adds, 1c00, eb100000), \
9490 X(_addi, 0000, f1000000), \
9491 X(_addis, 0000, f1100000), \
9492 X(_add_pc,000f, f20f0000), \
9493 X(_add_sp,000d, f10d0000), \
9494 X(_adr, 000f, f20f0000), \
9495 X(_and, 4000, ea000000), \
9496 X(_ands, 4000, ea100000), \
9497 X(_asr, 1000, fa40f000), \
9498 X(_asrs, 1000, fa50f000), \
9499 X(_b, e000, f000b000), \
9500 X(_bcond, d000, f0008000), \
9501 X(_bic, 4380, ea200000), \
9502 X(_bics, 4380, ea300000), \
9503 X(_cmn, 42c0, eb100f00), \
9504 X(_cmp, 2800, ebb00f00), \
9505 X(_cpsie, b660, f3af8400), \
9506 X(_cpsid, b670, f3af8600), \
9507 X(_cpy, 4600, ea4f0000), \
9508 X(_dec_sp,80dd, f1ad0d00), \
9509 X(_eor, 4040, ea800000), \
9510 X(_eors, 4040, ea900000), \
9511 X(_inc_sp,00dd, f10d0d00), \
9512 X(_ldmia, c800, e8900000), \
9513 X(_ldr, 6800, f8500000), \
9514 X(_ldrb, 7800, f8100000), \
9515 X(_ldrh, 8800, f8300000), \
9516 X(_ldrsb, 5600, f9100000), \
9517 X(_ldrsh, 5e00, f9300000), \
9518 X(_ldr_pc,4800, f85f0000), \
9519 X(_ldr_pc2,4800, f85f0000), \
9520 X(_ldr_sp,9800, f85d0000), \
9521 X(_lsl, 0000, fa00f000), \
9522 X(_lsls, 0000, fa10f000), \
9523 X(_lsr, 0800, fa20f000), \
9524 X(_lsrs, 0800, fa30f000), \
9525 X(_mov, 2000, ea4f0000), \
9526 X(_movs, 2000, ea5f0000), \
9527 X(_mul, 4340, fb00f000), \
9528 X(_muls, 4340, ffffffff), /* no 32b muls */ \
9529 X(_mvn, 43c0, ea6f0000), \
9530 X(_mvns, 43c0, ea7f0000), \
9531 X(_neg, 4240, f1c00000), /* rsb #0 */ \
9532 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
9533 X(_orr, 4300, ea400000), \
9534 X(_orrs, 4300, ea500000), \
9535 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
9536 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
9537 X(_rev, ba00, fa90f080), \
9538 X(_rev16, ba40, fa90f090), \
9539 X(_revsh, bac0, fa90f0b0), \
9540 X(_ror, 41c0, fa60f000), \
9541 X(_rors, 41c0, fa70f000), \
9542 X(_sbc, 4180, eb600000), \
9543 X(_sbcs, 4180, eb700000), \
9544 X(_stmia, c000, e8800000), \
9545 X(_str, 6000, f8400000), \
9546 X(_strb, 7000, f8000000), \
9547 X(_strh, 8000, f8200000), \
9548 X(_str_sp,9000, f84d0000), \
9549 X(_sub, 1e00, eba00000), \
9550 X(_subs, 1e00, ebb00000), \
9551 X(_subi, 8000, f1a00000), \
9552 X(_subis, 8000, f1b00000), \
9553 X(_sxtb, b240, fa4ff080), \
9554 X(_sxth, b200, fa0ff080), \
9555 X(_tst, 4200, ea100f00), \
9556 X(_uxtb, b2c0, fa5ff080), \
9557 X(_uxth, b280, fa1ff080), \
9558 X(_nop, bf00, f3af8000), \
9559 X(_yield, bf10, f3af8001), \
9560 X(_wfe, bf20, f3af8002), \
9561 X(_wfi, bf30, f3af8003), \
53c4b28b
MGD
9562 X(_sev, bf40, f3af8004), \
9563 X(_sevl, bf50, f3af8005)
c19d1205
ZW
9564
9565/* To catch errors in encoding functions, the codes are all offset by
9566 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
9567 as 16-bit instructions. */
21d799b5 9568#define X(a,b,c) T_MNEM##a
c19d1205
ZW
9569enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
9570#undef X
9571
9572#define X(a,b,c) 0x##b
9573static const unsigned short thumb_op16[] = { T16_32_TAB };
9574#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
9575#undef X
9576
9577#define X(a,b,c) 0x##c
9578static const unsigned int thumb_op32[] = { T16_32_TAB };
c921be7d
NC
9579#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
9580#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
c19d1205
ZW
9581#undef X
9582#undef T16_32_TAB
9583
9584/* Thumb instruction encoders, in alphabetical order. */
9585
92e90b6e 9586/* ADDW or SUBW. */
c921be7d 9587
92e90b6e
PB
9588static void
9589do_t_add_sub_w (void)
9590{
9591 int Rd, Rn;
9592
9593 Rd = inst.operands[0].reg;
9594 Rn = inst.operands[1].reg;
9595
539d4391
NC
9596 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
9597 is the SP-{plus,minus}-immediate form of the instruction. */
9598 if (Rn == REG_SP)
9599 constraint (Rd == REG_PC, BAD_PC);
9600 else
9601 reject_bad_reg (Rd);
fdfde340 9602
92e90b6e
PB
9603 inst.instruction |= (Rn << 16) | (Rd << 8);
9604 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9605}
9606
c19d1205
ZW
9607/* Parse an add or subtract instruction. We get here with inst.instruction
9608 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
9609
9610static void
9611do_t_add_sub (void)
9612{
9613 int Rd, Rs, Rn;
9614
9615 Rd = inst.operands[0].reg;
9616 Rs = (inst.operands[1].present
9617 ? inst.operands[1].reg /* Rd, Rs, foo */
9618 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9619
e07e6e58
NC
9620 if (Rd == REG_PC)
9621 set_it_insn_type_last ();
9622
c19d1205
ZW
9623 if (unified_syntax)
9624 {
0110f2b8
PB
9625 bfd_boolean flags;
9626 bfd_boolean narrow;
9627 int opcode;
9628
9629 flags = (inst.instruction == T_MNEM_adds
9630 || inst.instruction == T_MNEM_subs);
9631 if (flags)
e07e6e58 9632 narrow = !in_it_block ();
0110f2b8 9633 else
e07e6e58 9634 narrow = in_it_block ();
c19d1205 9635 if (!inst.operands[2].isreg)
b99bd4ef 9636 {
16805f35
PB
9637 int add;
9638
fdfde340
JM
9639 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9640
16805f35
PB
9641 add = (inst.instruction == T_MNEM_add
9642 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
9643 opcode = 0;
9644 if (inst.size_req != 4)
9645 {
0110f2b8
PB
9646 /* Attempt to use a narrow opcode, with relaxation if
9647 appropriate. */
9648 if (Rd == REG_SP && Rs == REG_SP && !flags)
9649 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
9650 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
9651 opcode = T_MNEM_add_sp;
9652 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
9653 opcode = T_MNEM_add_pc;
9654 else if (Rd <= 7 && Rs <= 7 && narrow)
9655 {
9656 if (flags)
9657 opcode = add ? T_MNEM_addis : T_MNEM_subis;
9658 else
9659 opcode = add ? T_MNEM_addi : T_MNEM_subi;
9660 }
9661 if (opcode)
9662 {
9663 inst.instruction = THUMB_OP16(opcode);
9664 inst.instruction |= (Rd << 4) | Rs;
9665 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9666 if (inst.size_req != 2)
9667 inst.relax = opcode;
9668 }
9669 else
9670 constraint (inst.size_req == 2, BAD_HIREG);
9671 }
9672 if (inst.size_req == 4
9673 || (inst.size_req != 2 && !opcode))
9674 {
efd81785
PB
9675 if (Rd == REG_PC)
9676 {
fdfde340 9677 constraint (add, BAD_PC);
efd81785
PB
9678 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
9679 _("only SUBS PC, LR, #const allowed"));
9680 constraint (inst.reloc.exp.X_op != O_constant,
9681 _("expression too complex"));
9682 constraint (inst.reloc.exp.X_add_number < 0
9683 || inst.reloc.exp.X_add_number > 0xff,
9684 _("immediate value out of range"));
9685 inst.instruction = T2_SUBS_PC_LR
9686 | inst.reloc.exp.X_add_number;
9687 inst.reloc.type = BFD_RELOC_UNUSED;
9688 return;
9689 }
9690 else if (Rs == REG_PC)
16805f35
PB
9691 {
9692 /* Always use addw/subw. */
9693 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
9694 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
9695 }
9696 else
9697 {
9698 inst.instruction = THUMB_OP32 (inst.instruction);
9699 inst.instruction = (inst.instruction & 0xe1ffffff)
9700 | 0x10000000;
9701 if (flags)
9702 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9703 else
9704 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
9705 }
dc4503c6
PB
9706 inst.instruction |= Rd << 8;
9707 inst.instruction |= Rs << 16;
0110f2b8 9708 }
b99bd4ef 9709 }
c19d1205
ZW
9710 else
9711 {
5f4cb198
NC
9712 unsigned int value = inst.reloc.exp.X_add_number;
9713 unsigned int shift = inst.operands[2].shift_kind;
9714
c19d1205
ZW
9715 Rn = inst.operands[2].reg;
9716 /* See if we can do this with a 16-bit instruction. */
9717 if (!inst.operands[2].shifted && inst.size_req != 4)
9718 {
e27ec89e
PB
9719 if (Rd > 7 || Rs > 7 || Rn > 7)
9720 narrow = FALSE;
9721
9722 if (narrow)
c19d1205 9723 {
e27ec89e
PB
9724 inst.instruction = ((inst.instruction == T_MNEM_adds
9725 || inst.instruction == T_MNEM_add)
c19d1205
ZW
9726 ? T_OPCODE_ADD_R3
9727 : T_OPCODE_SUB_R3);
9728 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
9729 return;
9730 }
b99bd4ef 9731
7e806470 9732 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
c19d1205 9733 {
7e806470
PB
9734 /* Thumb-1 cores (except v6-M) require at least one high
9735 register in a narrow non flag setting add. */
9736 if (Rd > 7 || Rn > 7
9737 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
9738 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
c19d1205 9739 {
7e806470
PB
9740 if (Rd == Rn)
9741 {
9742 Rn = Rs;
9743 Rs = Rd;
9744 }
c19d1205
ZW
9745 inst.instruction = T_OPCODE_ADD_HI;
9746 inst.instruction |= (Rd & 8) << 4;
9747 inst.instruction |= (Rd & 7);
9748 inst.instruction |= Rn << 3;
9749 return;
9750 }
c19d1205
ZW
9751 }
9752 }
c921be7d 9753
fdfde340
JM
9754 constraint (Rd == REG_PC, BAD_PC);
9755 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
9756 constraint (Rs == REG_PC, BAD_PC);
9757 reject_bad_reg (Rn);
9758
c19d1205
ZW
9759 /* If we get here, it can't be done in 16 bits. */
9760 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
9761 _("shift must be constant"));
9762 inst.instruction = THUMB_OP32 (inst.instruction);
9763 inst.instruction |= Rd << 8;
9764 inst.instruction |= Rs << 16;
5f4cb198
NC
9765 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
9766 _("shift value over 3 not allowed in thumb mode"));
9767 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
9768 _("only LSL shift allowed in thumb mode"));
c19d1205
ZW
9769 encode_thumb32_shifted_operand (2);
9770 }
9771 }
9772 else
9773 {
9774 constraint (inst.instruction == T_MNEM_adds
9775 || inst.instruction == T_MNEM_subs,
9776 BAD_THUMB32);
b99bd4ef 9777
c19d1205 9778 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 9779 {
c19d1205
ZW
9780 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
9781 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
9782 BAD_HIREG);
9783
9784 inst.instruction = (inst.instruction == T_MNEM_add
9785 ? 0x0000 : 0x8000);
9786 inst.instruction |= (Rd << 4) | Rs;
9787 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
9788 return;
9789 }
9790
c19d1205
ZW
9791 Rn = inst.operands[2].reg;
9792 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 9793
c19d1205
ZW
9794 /* We now have Rd, Rs, and Rn set to registers. */
9795 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 9796 {
c19d1205
ZW
9797 /* Can't do this for SUB. */
9798 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
9799 inst.instruction = T_OPCODE_ADD_HI;
9800 inst.instruction |= (Rd & 8) << 4;
9801 inst.instruction |= (Rd & 7);
9802 if (Rs == Rd)
9803 inst.instruction |= Rn << 3;
9804 else if (Rn == Rd)
9805 inst.instruction |= Rs << 3;
9806 else
9807 constraint (1, _("dest must overlap one source register"));
9808 }
9809 else
9810 {
9811 inst.instruction = (inst.instruction == T_MNEM_add
9812 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
9813 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 9814 }
b99bd4ef 9815 }
b99bd4ef
NC
9816}
9817
c19d1205
ZW
9818static void
9819do_t_adr (void)
9820{
fdfde340
JM
9821 unsigned Rd;
9822
9823 Rd = inst.operands[0].reg;
9824 reject_bad_reg (Rd);
9825
9826 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
0110f2b8
PB
9827 {
9828 /* Defer to section relaxation. */
9829 inst.relax = inst.instruction;
9830 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 9831 inst.instruction |= Rd << 4;
0110f2b8
PB
9832 }
9833 else if (unified_syntax && inst.size_req != 2)
e9f89963 9834 {
0110f2b8 9835 /* Generate a 32-bit opcode. */
e9f89963 9836 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 9837 inst.instruction |= Rd << 8;
e9f89963
PB
9838 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
9839 inst.reloc.pc_rel = 1;
9840 }
9841 else
9842 {
0110f2b8 9843 /* Generate a 16-bit opcode. */
e9f89963
PB
9844 inst.instruction = THUMB_OP16 (inst.instruction);
9845 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
9846 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
9847 inst.reloc.pc_rel = 1;
b99bd4ef 9848
fdfde340 9849 inst.instruction |= Rd << 4;
e9f89963 9850 }
c19d1205 9851}
b99bd4ef 9852
c19d1205
ZW
9853/* Arithmetic instructions for which there is just one 16-bit
9854 instruction encoding, and it allows only two low registers.
9855 For maximal compatibility with ARM syntax, we allow three register
9856 operands even when Thumb-32 instructions are not available, as long
9857 as the first two are identical. For instance, both "sbc r0,r1" and
9858 "sbc r0,r0,r1" are allowed. */
b99bd4ef 9859static void
c19d1205 9860do_t_arit3 (void)
b99bd4ef 9861{
c19d1205 9862 int Rd, Rs, Rn;
b99bd4ef 9863
c19d1205
ZW
9864 Rd = inst.operands[0].reg;
9865 Rs = (inst.operands[1].present
9866 ? inst.operands[1].reg /* Rd, Rs, foo */
9867 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9868 Rn = inst.operands[2].reg;
b99bd4ef 9869
fdfde340
JM
9870 reject_bad_reg (Rd);
9871 reject_bad_reg (Rs);
9872 if (inst.operands[2].isreg)
9873 reject_bad_reg (Rn);
9874
c19d1205 9875 if (unified_syntax)
b99bd4ef 9876 {
c19d1205
ZW
9877 if (!inst.operands[2].isreg)
9878 {
9879 /* For an immediate, we always generate a 32-bit opcode;
9880 section relaxation will shrink it later if possible. */
9881 inst.instruction = THUMB_OP32 (inst.instruction);
9882 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9883 inst.instruction |= Rd << 8;
9884 inst.instruction |= Rs << 16;
9885 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9886 }
9887 else
9888 {
e27ec89e
PB
9889 bfd_boolean narrow;
9890
c19d1205 9891 /* See if we can do this with a 16-bit instruction. */
e27ec89e 9892 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 9893 narrow = !in_it_block ();
e27ec89e 9894 else
e07e6e58 9895 narrow = in_it_block ();
e27ec89e
PB
9896
9897 if (Rd > 7 || Rn > 7 || Rs > 7)
9898 narrow = FALSE;
9899 if (inst.operands[2].shifted)
9900 narrow = FALSE;
9901 if (inst.size_req == 4)
9902 narrow = FALSE;
9903
9904 if (narrow
c19d1205
ZW
9905 && Rd == Rs)
9906 {
9907 inst.instruction = THUMB_OP16 (inst.instruction);
9908 inst.instruction |= Rd;
9909 inst.instruction |= Rn << 3;
9910 return;
9911 }
b99bd4ef 9912
c19d1205
ZW
9913 /* If we get here, it can't be done in 16 bits. */
9914 constraint (inst.operands[2].shifted
9915 && inst.operands[2].immisreg,
9916 _("shift must be constant"));
9917 inst.instruction = THUMB_OP32 (inst.instruction);
9918 inst.instruction |= Rd << 8;
9919 inst.instruction |= Rs << 16;
9920 encode_thumb32_shifted_operand (2);
9921 }
a737bd4d 9922 }
c19d1205 9923 else
b99bd4ef 9924 {
c19d1205
ZW
9925 /* On its face this is a lie - the instruction does set the
9926 flags. However, the only supported mnemonic in this mode
9927 says it doesn't. */
9928 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 9929
c19d1205
ZW
9930 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
9931 _("unshifted register required"));
9932 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
9933 constraint (Rd != Rs,
9934 _("dest and source1 must be the same register"));
a737bd4d 9935
c19d1205
ZW
9936 inst.instruction = THUMB_OP16 (inst.instruction);
9937 inst.instruction |= Rd;
9938 inst.instruction |= Rn << 3;
b99bd4ef 9939 }
a737bd4d 9940}
b99bd4ef 9941
c19d1205
ZW
9942/* Similarly, but for instructions where the arithmetic operation is
9943 commutative, so we can allow either of them to be different from
9944 the destination operand in a 16-bit instruction. For instance, all
9945 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
9946 accepted. */
9947static void
9948do_t_arit3c (void)
a737bd4d 9949{
c19d1205 9950 int Rd, Rs, Rn;
b99bd4ef 9951
c19d1205
ZW
9952 Rd = inst.operands[0].reg;
9953 Rs = (inst.operands[1].present
9954 ? inst.operands[1].reg /* Rd, Rs, foo */
9955 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9956 Rn = inst.operands[2].reg;
c921be7d 9957
fdfde340
JM
9958 reject_bad_reg (Rd);
9959 reject_bad_reg (Rs);
9960 if (inst.operands[2].isreg)
9961 reject_bad_reg (Rn);
a737bd4d 9962
c19d1205 9963 if (unified_syntax)
a737bd4d 9964 {
c19d1205 9965 if (!inst.operands[2].isreg)
b99bd4ef 9966 {
c19d1205
ZW
9967 /* For an immediate, we always generate a 32-bit opcode;
9968 section relaxation will shrink it later if possible. */
9969 inst.instruction = THUMB_OP32 (inst.instruction);
9970 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9971 inst.instruction |= Rd << 8;
9972 inst.instruction |= Rs << 16;
9973 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 9974 }
c19d1205 9975 else
a737bd4d 9976 {
e27ec89e
PB
9977 bfd_boolean narrow;
9978
c19d1205 9979 /* See if we can do this with a 16-bit instruction. */
e27ec89e 9980 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 9981 narrow = !in_it_block ();
e27ec89e 9982 else
e07e6e58 9983 narrow = in_it_block ();
e27ec89e
PB
9984
9985 if (Rd > 7 || Rn > 7 || Rs > 7)
9986 narrow = FALSE;
9987 if (inst.operands[2].shifted)
9988 narrow = FALSE;
9989 if (inst.size_req == 4)
9990 narrow = FALSE;
9991
9992 if (narrow)
a737bd4d 9993 {
c19d1205 9994 if (Rd == Rs)
a737bd4d 9995 {
c19d1205
ZW
9996 inst.instruction = THUMB_OP16 (inst.instruction);
9997 inst.instruction |= Rd;
9998 inst.instruction |= Rn << 3;
9999 return;
a737bd4d 10000 }
c19d1205 10001 if (Rd == Rn)
a737bd4d 10002 {
c19d1205
ZW
10003 inst.instruction = THUMB_OP16 (inst.instruction);
10004 inst.instruction |= Rd;
10005 inst.instruction |= Rs << 3;
10006 return;
a737bd4d
NC
10007 }
10008 }
c19d1205
ZW
10009
10010 /* If we get here, it can't be done in 16 bits. */
10011 constraint (inst.operands[2].shifted
10012 && inst.operands[2].immisreg,
10013 _("shift must be constant"));
10014 inst.instruction = THUMB_OP32 (inst.instruction);
10015 inst.instruction |= Rd << 8;
10016 inst.instruction |= Rs << 16;
10017 encode_thumb32_shifted_operand (2);
a737bd4d 10018 }
b99bd4ef 10019 }
c19d1205
ZW
10020 else
10021 {
10022 /* On its face this is a lie - the instruction does set the
10023 flags. However, the only supported mnemonic in this mode
10024 says it doesn't. */
10025 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10026
c19d1205
ZW
10027 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10028 _("unshifted register required"));
10029 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10030
10031 inst.instruction = THUMB_OP16 (inst.instruction);
10032 inst.instruction |= Rd;
10033
10034 if (Rd == Rs)
10035 inst.instruction |= Rn << 3;
10036 else if (Rd == Rn)
10037 inst.instruction |= Rs << 3;
10038 else
10039 constraint (1, _("dest must overlap one source register"));
10040 }
a737bd4d
NC
10041}
10042
c19d1205
ZW
10043static void
10044do_t_bfc (void)
a737bd4d 10045{
fdfde340 10046 unsigned Rd;
c19d1205
ZW
10047 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
10048 constraint (msb > 32, _("bit-field extends past end of register"));
10049 /* The instruction encoding stores the LSB and MSB,
10050 not the LSB and width. */
fdfde340
JM
10051 Rd = inst.operands[0].reg;
10052 reject_bad_reg (Rd);
10053 inst.instruction |= Rd << 8;
c19d1205
ZW
10054 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
10055 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
10056 inst.instruction |= msb - 1;
b99bd4ef
NC
10057}
10058
c19d1205
ZW
10059static void
10060do_t_bfi (void)
b99bd4ef 10061{
fdfde340 10062 int Rd, Rn;
c19d1205 10063 unsigned int msb;
b99bd4ef 10064
fdfde340
JM
10065 Rd = inst.operands[0].reg;
10066 reject_bad_reg (Rd);
10067
c19d1205
ZW
10068 /* #0 in second position is alternative syntax for bfc, which is
10069 the same instruction but with REG_PC in the Rm field. */
10070 if (!inst.operands[1].isreg)
fdfde340
JM
10071 Rn = REG_PC;
10072 else
10073 {
10074 Rn = inst.operands[1].reg;
10075 reject_bad_reg (Rn);
10076 }
b99bd4ef 10077
c19d1205
ZW
10078 msb = inst.operands[2].imm + inst.operands[3].imm;
10079 constraint (msb > 32, _("bit-field extends past end of register"));
10080 /* The instruction encoding stores the LSB and MSB,
10081 not the LSB and width. */
fdfde340
JM
10082 inst.instruction |= Rd << 8;
10083 inst.instruction |= Rn << 16;
c19d1205
ZW
10084 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10085 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10086 inst.instruction |= msb - 1;
b99bd4ef
NC
10087}
10088
c19d1205
ZW
10089static void
10090do_t_bfx (void)
b99bd4ef 10091{
fdfde340
JM
10092 unsigned Rd, Rn;
10093
10094 Rd = inst.operands[0].reg;
10095 Rn = inst.operands[1].reg;
10096
10097 reject_bad_reg (Rd);
10098 reject_bad_reg (Rn);
10099
c19d1205
ZW
10100 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
10101 _("bit-field extends past end of register"));
fdfde340
JM
10102 inst.instruction |= Rd << 8;
10103 inst.instruction |= Rn << 16;
c19d1205
ZW
10104 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
10105 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
10106 inst.instruction |= inst.operands[3].imm - 1;
10107}
b99bd4ef 10108
c19d1205
ZW
10109/* ARM V5 Thumb BLX (argument parse)
10110 BLX <target_addr> which is BLX(1)
10111 BLX <Rm> which is BLX(2)
10112 Unfortunately, there are two different opcodes for this mnemonic.
10113 So, the insns[].value is not used, and the code here zaps values
10114 into inst.instruction.
b99bd4ef 10115
c19d1205
ZW
10116 ??? How to take advantage of the additional two bits of displacement
10117 available in Thumb32 mode? Need new relocation? */
b99bd4ef 10118
c19d1205
ZW
10119static void
10120do_t_blx (void)
10121{
e07e6e58
NC
10122 set_it_insn_type_last ();
10123
c19d1205 10124 if (inst.operands[0].isreg)
fdfde340
JM
10125 {
10126 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10127 /* We have a register, so this is BLX(2). */
10128 inst.instruction |= inst.operands[0].reg << 3;
10129 }
b99bd4ef
NC
10130 else
10131 {
c19d1205 10132 /* No register. This must be BLX(1). */
2fc8bdac 10133 inst.instruction = 0xf000e800;
0855e32b 10134 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
b99bd4ef
NC
10135 }
10136}
10137
c19d1205
ZW
10138static void
10139do_t_branch (void)
b99bd4ef 10140{
0110f2b8 10141 int opcode;
dfa9f0d5 10142 int cond;
9ae92b05 10143 int reloc;
dfa9f0d5 10144
e07e6e58
NC
10145 cond = inst.cond;
10146 set_it_insn_type (IF_INSIDE_IT_LAST_INSN);
10147
10148 if (in_it_block ())
dfa9f0d5
PB
10149 {
10150 /* Conditional branches inside IT blocks are encoded as unconditional
10151 branches. */
10152 cond = COND_ALWAYS;
dfa9f0d5
PB
10153 }
10154 else
10155 cond = inst.cond;
10156
10157 if (cond != COND_ALWAYS)
0110f2b8
PB
10158 opcode = T_MNEM_bcond;
10159 else
10160 opcode = inst.instruction;
10161
12d6b0b7
RS
10162 if (unified_syntax
10163 && (inst.size_req == 4
10960bfb
PB
10164 || (inst.size_req != 2
10165 && (inst.operands[0].hasreloc
10166 || inst.reloc.exp.X_op == O_constant))))
c19d1205 10167 {
0110f2b8 10168 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 10169 if (cond == COND_ALWAYS)
9ae92b05 10170 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
10171 else
10172 {
9c2799c2 10173 gas_assert (cond != 0xF);
dfa9f0d5 10174 inst.instruction |= cond << 22;
9ae92b05 10175 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
c19d1205
ZW
10176 }
10177 }
b99bd4ef
NC
10178 else
10179 {
0110f2b8 10180 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 10181 if (cond == COND_ALWAYS)
9ae92b05 10182 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
c19d1205 10183 else
b99bd4ef 10184 {
dfa9f0d5 10185 inst.instruction |= cond << 8;
9ae92b05 10186 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 10187 }
0110f2b8
PB
10188 /* Allow section relaxation. */
10189 if (unified_syntax && inst.size_req != 2)
10190 inst.relax = opcode;
b99bd4ef 10191 }
9ae92b05 10192 inst.reloc.type = reloc;
c19d1205 10193 inst.reloc.pc_rel = 1;
b99bd4ef
NC
10194}
10195
8884b720 10196/* Actually do the work for Thumb state bkpt and hlt. The only difference
bacebabc 10197 between the two is the maximum immediate allowed - which is passed in
8884b720 10198 RANGE. */
b99bd4ef 10199static void
8884b720 10200do_t_bkpt_hlt1 (int range)
b99bd4ef 10201{
dfa9f0d5
PB
10202 constraint (inst.cond != COND_ALWAYS,
10203 _("instruction is always unconditional"));
c19d1205 10204 if (inst.operands[0].present)
b99bd4ef 10205 {
8884b720 10206 constraint (inst.operands[0].imm > range,
c19d1205
ZW
10207 _("immediate value out of range"));
10208 inst.instruction |= inst.operands[0].imm;
b99bd4ef 10209 }
8884b720
MGD
10210
10211 set_it_insn_type (NEUTRAL_IT_INSN);
10212}
10213
10214static void
10215do_t_hlt (void)
10216{
10217 do_t_bkpt_hlt1 (63);
10218}
10219
10220static void
10221do_t_bkpt (void)
10222{
10223 do_t_bkpt_hlt1 (255);
b99bd4ef
NC
10224}
10225
10226static void
c19d1205 10227do_t_branch23 (void)
b99bd4ef 10228{
e07e6e58 10229 set_it_insn_type_last ();
0855e32b 10230 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
fa94de6b 10231
0855e32b
NS
10232 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
10233 this file. We used to simply ignore the PLT reloc type here --
10234 the branch encoding is now needed to deal with TLSCALL relocs.
10235 So if we see a PLT reloc now, put it back to how it used to be to
10236 keep the preexisting behaviour. */
10237 if (inst.reloc.type == BFD_RELOC_ARM_PLT32)
10238 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a 10239
4343666d 10240#if defined(OBJ_COFF)
c19d1205
ZW
10241 /* If the destination of the branch is a defined symbol which does not have
10242 the THUMB_FUNC attribute, then we must be calling a function which has
10243 the (interfacearm) attribute. We look for the Thumb entry point to that
10244 function and change the branch to refer to that function instead. */
10245 if ( inst.reloc.exp.X_op == O_symbol
10246 && inst.reloc.exp.X_add_symbol != NULL
10247 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
10248 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
10249 inst.reloc.exp.X_add_symbol =
10250 find_real_start (inst.reloc.exp.X_add_symbol);
4343666d 10251#endif
90e4755a
RE
10252}
10253
10254static void
c19d1205 10255do_t_bx (void)
90e4755a 10256{
e07e6e58 10257 set_it_insn_type_last ();
c19d1205
ZW
10258 inst.instruction |= inst.operands[0].reg << 3;
10259 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
10260 should cause the alignment to be checked once it is known. This is
10261 because BX PC only works if the instruction is word aligned. */
10262}
90e4755a 10263
c19d1205
ZW
10264static void
10265do_t_bxj (void)
10266{
fdfde340 10267 int Rm;
90e4755a 10268
e07e6e58 10269 set_it_insn_type_last ();
fdfde340
JM
10270 Rm = inst.operands[0].reg;
10271 reject_bad_reg (Rm);
10272 inst.instruction |= Rm << 16;
90e4755a
RE
10273}
10274
10275static void
c19d1205 10276do_t_clz (void)
90e4755a 10277{
fdfde340
JM
10278 unsigned Rd;
10279 unsigned Rm;
10280
10281 Rd = inst.operands[0].reg;
10282 Rm = inst.operands[1].reg;
10283
10284 reject_bad_reg (Rd);
10285 reject_bad_reg (Rm);
10286
10287 inst.instruction |= Rd << 8;
10288 inst.instruction |= Rm << 16;
10289 inst.instruction |= Rm;
c19d1205 10290}
90e4755a 10291
dfa9f0d5
PB
10292static void
10293do_t_cps (void)
10294{
e07e6e58 10295 set_it_insn_type (OUTSIDE_IT_INSN);
dfa9f0d5
PB
10296 inst.instruction |= inst.operands[0].imm;
10297}
10298
c19d1205
ZW
10299static void
10300do_t_cpsi (void)
10301{
e07e6e58 10302 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205 10303 if (unified_syntax
62b3e311
PB
10304 && (inst.operands[1].present || inst.size_req == 4)
10305 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 10306 {
c19d1205
ZW
10307 unsigned int imod = (inst.instruction & 0x0030) >> 4;
10308 inst.instruction = 0xf3af8000;
10309 inst.instruction |= imod << 9;
10310 inst.instruction |= inst.operands[0].imm << 5;
10311 if (inst.operands[1].present)
10312 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 10313 }
c19d1205 10314 else
90e4755a 10315 {
62b3e311
PB
10316 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
10317 && (inst.operands[0].imm & 4),
10318 _("selected processor does not support 'A' form "
10319 "of this instruction"));
10320 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
10321 _("Thumb does not support the 2-argument "
10322 "form of this instruction"));
10323 inst.instruction |= inst.operands[0].imm;
90e4755a 10324 }
90e4755a
RE
10325}
10326
c19d1205
ZW
10327/* THUMB CPY instruction (argument parse). */
10328
90e4755a 10329static void
c19d1205 10330do_t_cpy (void)
90e4755a 10331{
c19d1205 10332 if (inst.size_req == 4)
90e4755a 10333 {
c19d1205
ZW
10334 inst.instruction = THUMB_OP32 (T_MNEM_mov);
10335 inst.instruction |= inst.operands[0].reg << 8;
10336 inst.instruction |= inst.operands[1].reg;
90e4755a 10337 }
c19d1205 10338 else
90e4755a 10339 {
c19d1205
ZW
10340 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
10341 inst.instruction |= (inst.operands[0].reg & 0x7);
10342 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 10343 }
90e4755a
RE
10344}
10345
90e4755a 10346static void
25fe350b 10347do_t_cbz (void)
90e4755a 10348{
e07e6e58 10349 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
10350 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10351 inst.instruction |= inst.operands[0].reg;
10352 inst.reloc.pc_rel = 1;
10353 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
10354}
90e4755a 10355
62b3e311
PB
10356static void
10357do_t_dbg (void)
10358{
10359 inst.instruction |= inst.operands[0].imm;
10360}
10361
10362static void
10363do_t_div (void)
10364{
fdfde340
JM
10365 unsigned Rd, Rn, Rm;
10366
10367 Rd = inst.operands[0].reg;
10368 Rn = (inst.operands[1].present
10369 ? inst.operands[1].reg : Rd);
10370 Rm = inst.operands[2].reg;
10371
10372 reject_bad_reg (Rd);
10373 reject_bad_reg (Rn);
10374 reject_bad_reg (Rm);
10375
10376 inst.instruction |= Rd << 8;
10377 inst.instruction |= Rn << 16;
10378 inst.instruction |= Rm;
62b3e311
PB
10379}
10380
c19d1205
ZW
10381static void
10382do_t_hint (void)
10383{
10384 if (unified_syntax && inst.size_req == 4)
10385 inst.instruction = THUMB_OP32 (inst.instruction);
10386 else
10387 inst.instruction = THUMB_OP16 (inst.instruction);
10388}
90e4755a 10389
c19d1205
ZW
10390static void
10391do_t_it (void)
10392{
10393 unsigned int cond = inst.operands[0].imm;
e27ec89e 10394
e07e6e58
NC
10395 set_it_insn_type (IT_INSN);
10396 now_it.mask = (inst.instruction & 0xf) | 0x10;
10397 now_it.cc = cond;
5a01bb1d 10398 now_it.warn_deprecated = FALSE;
e27ec89e
PB
10399
10400 /* If the condition is a negative condition, invert the mask. */
c19d1205 10401 if ((cond & 0x1) == 0x0)
90e4755a 10402 {
c19d1205 10403 unsigned int mask = inst.instruction & 0x000f;
90e4755a 10404
c19d1205 10405 if ((mask & 0x7) == 0)
5a01bb1d
MGD
10406 {
10407 /* No conversion needed. */
10408 now_it.block_length = 1;
10409 }
c19d1205 10410 else if ((mask & 0x3) == 0)
5a01bb1d
MGD
10411 {
10412 mask ^= 0x8;
10413 now_it.block_length = 2;
10414 }
e27ec89e 10415 else if ((mask & 0x1) == 0)
5a01bb1d
MGD
10416 {
10417 mask ^= 0xC;
10418 now_it.block_length = 3;
10419 }
c19d1205 10420 else
5a01bb1d
MGD
10421 {
10422 mask ^= 0xE;
10423 now_it.block_length = 4;
10424 }
90e4755a 10425
e27ec89e
PB
10426 inst.instruction &= 0xfff0;
10427 inst.instruction |= mask;
c19d1205 10428 }
90e4755a 10429
c19d1205
ZW
10430 inst.instruction |= cond << 4;
10431}
90e4755a 10432
3c707909
PB
10433/* Helper function used for both push/pop and ldm/stm. */
10434static void
10435encode_thumb2_ldmstm (int base, unsigned mask, bfd_boolean writeback)
10436{
10437 bfd_boolean load;
10438
10439 load = (inst.instruction & (1 << 20)) != 0;
10440
10441 if (mask & (1 << 13))
10442 inst.error = _("SP not allowed in register list");
1e5b0379
NC
10443
10444 if ((mask & (1 << base)) != 0
10445 && writeback)
10446 inst.error = _("having the base register in the register list when "
10447 "using write back is UNPREDICTABLE");
10448
3c707909
PB
10449 if (load)
10450 {
e07e6e58
NC
10451 if (mask & (1 << 15))
10452 {
10453 if (mask & (1 << 14))
10454 inst.error = _("LR and PC should not both be in register list");
10455 else
10456 set_it_insn_type_last ();
10457 }
3c707909
PB
10458 }
10459 else
10460 {
10461 if (mask & (1 << 15))
10462 inst.error = _("PC not allowed in register list");
3c707909
PB
10463 }
10464
10465 if ((mask & (mask - 1)) == 0)
10466 {
10467 /* Single register transfers implemented as str/ldr. */
10468 if (writeback)
10469 {
10470 if (inst.instruction & (1 << 23))
10471 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
10472 else
10473 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
10474 }
10475 else
10476 {
10477 if (inst.instruction & (1 << 23))
10478 inst.instruction = 0x00800000; /* ia -> [base] */
10479 else
10480 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
10481 }
10482
10483 inst.instruction |= 0xf8400000;
10484 if (load)
10485 inst.instruction |= 0x00100000;
10486
5f4273c7 10487 mask = ffs (mask) - 1;
3c707909
PB
10488 mask <<= 12;
10489 }
10490 else if (writeback)
10491 inst.instruction |= WRITE_BACK;
10492
10493 inst.instruction |= mask;
10494 inst.instruction |= base << 16;
10495}
10496
c19d1205
ZW
10497static void
10498do_t_ldmstm (void)
10499{
10500 /* This really doesn't seem worth it. */
10501 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
10502 _("expression too complex"));
10503 constraint (inst.operands[1].writeback,
10504 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 10505
c19d1205
ZW
10506 if (unified_syntax)
10507 {
3c707909
PB
10508 bfd_boolean narrow;
10509 unsigned mask;
10510
10511 narrow = FALSE;
c19d1205
ZW
10512 /* See if we can use a 16-bit instruction. */
10513 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
10514 && inst.size_req != 4
3c707909 10515 && !(inst.operands[1].imm & ~0xff))
90e4755a 10516 {
3c707909 10517 mask = 1 << inst.operands[0].reg;
90e4755a 10518
eab4f823 10519 if (inst.operands[0].reg <= 7)
90e4755a 10520 {
3c707909 10521 if (inst.instruction == T_MNEM_stmia
eab4f823
MGD
10522 ? inst.operands[0].writeback
10523 : (inst.operands[0].writeback
10524 == !(inst.operands[1].imm & mask)))
10525 {
10526 if (inst.instruction == T_MNEM_stmia
10527 && (inst.operands[1].imm & mask)
10528 && (inst.operands[1].imm & (mask - 1)))
10529 as_warn (_("value stored for r%d is UNKNOWN"),
10530 inst.operands[0].reg);
3c707909 10531
eab4f823
MGD
10532 inst.instruction = THUMB_OP16 (inst.instruction);
10533 inst.instruction |= inst.operands[0].reg << 8;
10534 inst.instruction |= inst.operands[1].imm;
10535 narrow = TRUE;
10536 }
10537 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10538 {
10539 /* This means 1 register in reg list one of 3 situations:
10540 1. Instruction is stmia, but without writeback.
10541 2. lmdia without writeback, but with Rn not in
10542 reglist.
10543 3. ldmia with writeback, but with Rn in reglist.
10544 Case 3 is UNPREDICTABLE behaviour, so we handle
10545 case 1 and 2 which can be converted into a 16-bit
10546 str or ldr. The SP cases are handled below. */
10547 unsigned long opcode;
10548 /* First, record an error for Case 3. */
10549 if (inst.operands[1].imm & mask
10550 && inst.operands[0].writeback)
fa94de6b 10551 inst.error =
eab4f823
MGD
10552 _("having the base register in the register list when "
10553 "using write back is UNPREDICTABLE");
fa94de6b
RM
10554
10555 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
eab4f823
MGD
10556 : T_MNEM_ldr);
10557 inst.instruction = THUMB_OP16 (opcode);
10558 inst.instruction |= inst.operands[0].reg << 3;
10559 inst.instruction |= (ffs (inst.operands[1].imm)-1);
10560 narrow = TRUE;
10561 }
90e4755a 10562 }
eab4f823 10563 else if (inst.operands[0] .reg == REG_SP)
90e4755a 10564 {
eab4f823
MGD
10565 if (inst.operands[0].writeback)
10566 {
fa94de6b 10567 inst.instruction =
eab4f823
MGD
10568 THUMB_OP16 (inst.instruction == T_MNEM_stmia
10569 ? T_MNEM_push : T_MNEM_pop);
10570 inst.instruction |= inst.operands[1].imm;
10571 narrow = TRUE;
10572 }
10573 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
10574 {
fa94de6b 10575 inst.instruction =
eab4f823
MGD
10576 THUMB_OP16 (inst.instruction == T_MNEM_stmia
10577 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
10578 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
10579 narrow = TRUE;
10580 }
90e4755a 10581 }
3c707909
PB
10582 }
10583
10584 if (!narrow)
10585 {
c19d1205
ZW
10586 if (inst.instruction < 0xffff)
10587 inst.instruction = THUMB_OP32 (inst.instruction);
3c707909 10588
5f4273c7
NC
10589 encode_thumb2_ldmstm (inst.operands[0].reg, inst.operands[1].imm,
10590 inst.operands[0].writeback);
90e4755a
RE
10591 }
10592 }
c19d1205 10593 else
90e4755a 10594 {
c19d1205
ZW
10595 constraint (inst.operands[0].reg > 7
10596 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
1198ca51
PB
10597 constraint (inst.instruction != T_MNEM_ldmia
10598 && inst.instruction != T_MNEM_stmia,
10599 _("Thumb-2 instruction only valid in unified syntax"));
c19d1205 10600 if (inst.instruction == T_MNEM_stmia)
f03698e6 10601 {
c19d1205
ZW
10602 if (!inst.operands[0].writeback)
10603 as_warn (_("this instruction will write back the base register"));
10604 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
10605 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
1e5b0379 10606 as_warn (_("value stored for r%d is UNKNOWN"),
c19d1205 10607 inst.operands[0].reg);
f03698e6 10608 }
c19d1205 10609 else
90e4755a 10610 {
c19d1205
ZW
10611 if (!inst.operands[0].writeback
10612 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
10613 as_warn (_("this instruction will write back the base register"));
10614 else if (inst.operands[0].writeback
10615 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
10616 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
10617 }
10618
c19d1205
ZW
10619 inst.instruction = THUMB_OP16 (inst.instruction);
10620 inst.instruction |= inst.operands[0].reg << 8;
10621 inst.instruction |= inst.operands[1].imm;
10622 }
10623}
e28cd48c 10624
c19d1205
ZW
10625static void
10626do_t_ldrex (void)
10627{
10628 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
10629 || inst.operands[1].postind || inst.operands[1].writeback
10630 || inst.operands[1].immisreg || inst.operands[1].shifted
10631 || inst.operands[1].negative,
01cfc07f 10632 BAD_ADDR_MODE);
e28cd48c 10633
5be8be5d
DG
10634 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
10635
c19d1205
ZW
10636 inst.instruction |= inst.operands[0].reg << 12;
10637 inst.instruction |= inst.operands[1].reg << 16;
10638 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
10639}
e28cd48c 10640
c19d1205
ZW
10641static void
10642do_t_ldrexd (void)
10643{
10644 if (!inst.operands[1].present)
1cac9012 10645 {
c19d1205
ZW
10646 constraint (inst.operands[0].reg == REG_LR,
10647 _("r14 not allowed as first register "
10648 "when second register is omitted"));
10649 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 10650 }
c19d1205
ZW
10651 constraint (inst.operands[0].reg == inst.operands[1].reg,
10652 BAD_OVERLAP);
b99bd4ef 10653
c19d1205
ZW
10654 inst.instruction |= inst.operands[0].reg << 12;
10655 inst.instruction |= inst.operands[1].reg << 8;
10656 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
10657}
10658
10659static void
c19d1205 10660do_t_ldst (void)
b99bd4ef 10661{
0110f2b8
PB
10662 unsigned long opcode;
10663 int Rn;
10664
e07e6e58
NC
10665 if (inst.operands[0].isreg
10666 && !inst.operands[0].preind
10667 && inst.operands[0].reg == REG_PC)
10668 set_it_insn_type_last ();
10669
0110f2b8 10670 opcode = inst.instruction;
c19d1205 10671 if (unified_syntax)
b99bd4ef 10672 {
53365c0d
PB
10673 if (!inst.operands[1].isreg)
10674 {
10675 if (opcode <= 0xffff)
10676 inst.instruction = THUMB_OP32 (opcode);
10677 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10678 return;
10679 }
0110f2b8
PB
10680 if (inst.operands[1].isreg
10681 && !inst.operands[1].writeback
c19d1205
ZW
10682 && !inst.operands[1].shifted && !inst.operands[1].postind
10683 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
10684 && opcode <= 0xffff
10685 && inst.size_req != 4)
c19d1205 10686 {
0110f2b8
PB
10687 /* Insn may have a 16-bit form. */
10688 Rn = inst.operands[1].reg;
10689 if (inst.operands[1].immisreg)
10690 {
10691 inst.instruction = THUMB_OP16 (opcode);
5f4273c7 10692 /* [Rn, Rik] */
0110f2b8
PB
10693 if (Rn <= 7 && inst.operands[1].imm <= 7)
10694 goto op16;
5be8be5d
DG
10695 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
10696 reject_bad_reg (inst.operands[1].imm);
0110f2b8
PB
10697 }
10698 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
10699 && opcode != T_MNEM_ldrsb)
10700 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
10701 || (Rn == REG_SP && opcode == T_MNEM_str))
10702 {
10703 /* [Rn, #const] */
10704 if (Rn > 7)
10705 {
10706 if (Rn == REG_PC)
10707 {
10708 if (inst.reloc.pc_rel)
10709 opcode = T_MNEM_ldr_pc2;
10710 else
10711 opcode = T_MNEM_ldr_pc;
10712 }
10713 else
10714 {
10715 if (opcode == T_MNEM_ldr)
10716 opcode = T_MNEM_ldr_sp;
10717 else
10718 opcode = T_MNEM_str_sp;
10719 }
10720 inst.instruction = inst.operands[0].reg << 8;
10721 }
10722 else
10723 {
10724 inst.instruction = inst.operands[0].reg;
10725 inst.instruction |= inst.operands[1].reg << 3;
10726 }
10727 inst.instruction |= THUMB_OP16 (opcode);
10728 if (inst.size_req == 2)
10729 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10730 else
10731 inst.relax = opcode;
10732 return;
10733 }
c19d1205 10734 }
0110f2b8 10735 /* Definitely a 32-bit variant. */
5be8be5d 10736
8d67f500
NC
10737 /* Warning for Erratum 752419. */
10738 if (opcode == T_MNEM_ldr
10739 && inst.operands[0].reg == REG_SP
10740 && inst.operands[1].writeback == 1
10741 && !inst.operands[1].immisreg)
10742 {
10743 if (no_cpu_selected ()
10744 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
10745 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
10746 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
10747 as_warn (_("This instruction may be unpredictable "
10748 "if executed on M-profile cores "
10749 "with interrupts enabled."));
10750 }
10751
5be8be5d 10752 /* Do some validations regarding addressing modes. */
1be5fd2e 10753 if (inst.operands[1].immisreg)
5be8be5d
DG
10754 reject_bad_reg (inst.operands[1].imm);
10755
1be5fd2e
NC
10756 constraint (inst.operands[1].writeback == 1
10757 && inst.operands[0].reg == inst.operands[1].reg,
10758 BAD_OVERLAP);
10759
0110f2b8 10760 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
10761 inst.instruction |= inst.operands[0].reg << 12;
10762 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
1be5fd2e 10763 check_ldr_r15_aligned ();
b99bd4ef
NC
10764 return;
10765 }
10766
c19d1205
ZW
10767 constraint (inst.operands[0].reg > 7, BAD_HIREG);
10768
10769 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 10770 {
c19d1205
ZW
10771 /* Only [Rn,Rm] is acceptable. */
10772 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
10773 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
10774 || inst.operands[1].postind || inst.operands[1].shifted
10775 || inst.operands[1].negative,
10776 _("Thumb does not support this addressing mode"));
10777 inst.instruction = THUMB_OP16 (inst.instruction);
10778 goto op16;
b99bd4ef 10779 }
5f4273c7 10780
c19d1205
ZW
10781 inst.instruction = THUMB_OP16 (inst.instruction);
10782 if (!inst.operands[1].isreg)
10783 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
10784 return;
b99bd4ef 10785
c19d1205
ZW
10786 constraint (!inst.operands[1].preind
10787 || inst.operands[1].shifted
10788 || inst.operands[1].writeback,
10789 _("Thumb does not support this addressing mode"));
10790 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 10791 {
c19d1205
ZW
10792 constraint (inst.instruction & 0x0600,
10793 _("byte or halfword not valid for base register"));
10794 constraint (inst.operands[1].reg == REG_PC
10795 && !(inst.instruction & THUMB_LOAD_BIT),
10796 _("r15 based store not allowed"));
10797 constraint (inst.operands[1].immisreg,
10798 _("invalid base register for register offset"));
b99bd4ef 10799
c19d1205
ZW
10800 if (inst.operands[1].reg == REG_PC)
10801 inst.instruction = T_OPCODE_LDR_PC;
10802 else if (inst.instruction & THUMB_LOAD_BIT)
10803 inst.instruction = T_OPCODE_LDR_SP;
10804 else
10805 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 10806
c19d1205
ZW
10807 inst.instruction |= inst.operands[0].reg << 8;
10808 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10809 return;
10810 }
90e4755a 10811
c19d1205
ZW
10812 constraint (inst.operands[1].reg > 7, BAD_HIREG);
10813 if (!inst.operands[1].immisreg)
10814 {
10815 /* Immediate offset. */
10816 inst.instruction |= inst.operands[0].reg;
10817 inst.instruction |= inst.operands[1].reg << 3;
10818 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
10819 return;
10820 }
90e4755a 10821
c19d1205
ZW
10822 /* Register offset. */
10823 constraint (inst.operands[1].imm > 7, BAD_HIREG);
10824 constraint (inst.operands[1].negative,
10825 _("Thumb does not support this addressing mode"));
90e4755a 10826
c19d1205
ZW
10827 op16:
10828 switch (inst.instruction)
10829 {
10830 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
10831 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
10832 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
10833 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
10834 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
10835 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
10836 case 0x5600 /* ldrsb */:
10837 case 0x5e00 /* ldrsh */: break;
10838 default: abort ();
10839 }
90e4755a 10840
c19d1205
ZW
10841 inst.instruction |= inst.operands[0].reg;
10842 inst.instruction |= inst.operands[1].reg << 3;
10843 inst.instruction |= inst.operands[1].imm << 6;
10844}
90e4755a 10845
c19d1205
ZW
10846static void
10847do_t_ldstd (void)
10848{
10849 if (!inst.operands[1].present)
b99bd4ef 10850 {
c19d1205
ZW
10851 inst.operands[1].reg = inst.operands[0].reg + 1;
10852 constraint (inst.operands[0].reg == REG_LR,
10853 _("r14 not allowed here"));
bd340a04
MGD
10854 constraint (inst.operands[0].reg == REG_R12,
10855 _("r12 not allowed here"));
b99bd4ef 10856 }
bd340a04
MGD
10857
10858 if (inst.operands[2].writeback
10859 && (inst.operands[0].reg == inst.operands[2].reg
10860 || inst.operands[1].reg == inst.operands[2].reg))
10861 as_warn (_("base register written back, and overlaps "
10862 "one of transfer registers"));
10863
c19d1205
ZW
10864 inst.instruction |= inst.operands[0].reg << 12;
10865 inst.instruction |= inst.operands[1].reg << 8;
10866 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
b99bd4ef
NC
10867}
10868
c19d1205
ZW
10869static void
10870do_t_ldstt (void)
10871{
10872 inst.instruction |= inst.operands[0].reg << 12;
10873 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
10874}
a737bd4d 10875
b99bd4ef 10876static void
c19d1205 10877do_t_mla (void)
b99bd4ef 10878{
fdfde340 10879 unsigned Rd, Rn, Rm, Ra;
c921be7d 10880
fdfde340
JM
10881 Rd = inst.operands[0].reg;
10882 Rn = inst.operands[1].reg;
10883 Rm = inst.operands[2].reg;
10884 Ra = inst.operands[3].reg;
10885
10886 reject_bad_reg (Rd);
10887 reject_bad_reg (Rn);
10888 reject_bad_reg (Rm);
10889 reject_bad_reg (Ra);
10890
10891 inst.instruction |= Rd << 8;
10892 inst.instruction |= Rn << 16;
10893 inst.instruction |= Rm;
10894 inst.instruction |= Ra << 12;
c19d1205 10895}
b99bd4ef 10896
c19d1205
ZW
10897static void
10898do_t_mlal (void)
10899{
fdfde340
JM
10900 unsigned RdLo, RdHi, Rn, Rm;
10901
10902 RdLo = inst.operands[0].reg;
10903 RdHi = inst.operands[1].reg;
10904 Rn = inst.operands[2].reg;
10905 Rm = inst.operands[3].reg;
10906
10907 reject_bad_reg (RdLo);
10908 reject_bad_reg (RdHi);
10909 reject_bad_reg (Rn);
10910 reject_bad_reg (Rm);
10911
10912 inst.instruction |= RdLo << 12;
10913 inst.instruction |= RdHi << 8;
10914 inst.instruction |= Rn << 16;
10915 inst.instruction |= Rm;
c19d1205 10916}
b99bd4ef 10917
c19d1205
ZW
10918static void
10919do_t_mov_cmp (void)
10920{
fdfde340
JM
10921 unsigned Rn, Rm;
10922
10923 Rn = inst.operands[0].reg;
10924 Rm = inst.operands[1].reg;
10925
e07e6e58
NC
10926 if (Rn == REG_PC)
10927 set_it_insn_type_last ();
10928
c19d1205 10929 if (unified_syntax)
b99bd4ef 10930 {
c19d1205
ZW
10931 int r0off = (inst.instruction == T_MNEM_mov
10932 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 10933 unsigned long opcode;
3d388997
PB
10934 bfd_boolean narrow;
10935 bfd_boolean low_regs;
10936
fdfde340 10937 low_regs = (Rn <= 7 && Rm <= 7);
0110f2b8 10938 opcode = inst.instruction;
e07e6e58 10939 if (in_it_block ())
0110f2b8 10940 narrow = opcode != T_MNEM_movs;
3d388997 10941 else
0110f2b8 10942 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
10943 if (inst.size_req == 4
10944 || inst.operands[1].shifted)
10945 narrow = FALSE;
10946
efd81785
PB
10947 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
10948 if (opcode == T_MNEM_movs && inst.operands[1].isreg
10949 && !inst.operands[1].shifted
fdfde340
JM
10950 && Rn == REG_PC
10951 && Rm == REG_LR)
efd81785
PB
10952 {
10953 inst.instruction = T2_SUBS_PC_LR;
10954 return;
10955 }
10956
fdfde340
JM
10957 if (opcode == T_MNEM_cmp)
10958 {
10959 constraint (Rn == REG_PC, BAD_PC);
94206790
MM
10960 if (narrow)
10961 {
10962 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
10963 but valid. */
10964 warn_deprecated_sp (Rm);
10965 /* R15 was documented as a valid choice for Rm in ARMv6,
10966 but as UNPREDICTABLE in ARMv7. ARM's proprietary
10967 tools reject R15, so we do too. */
10968 constraint (Rm == REG_PC, BAD_PC);
10969 }
10970 else
10971 reject_bad_reg (Rm);
fdfde340
JM
10972 }
10973 else if (opcode == T_MNEM_mov
10974 || opcode == T_MNEM_movs)
10975 {
10976 if (inst.operands[1].isreg)
10977 {
10978 if (opcode == T_MNEM_movs)
10979 {
10980 reject_bad_reg (Rn);
10981 reject_bad_reg (Rm);
10982 }
76fa04a4
MGD
10983 else if (narrow)
10984 {
10985 /* This is mov.n. */
10986 if ((Rn == REG_SP || Rn == REG_PC)
10987 && (Rm == REG_SP || Rm == REG_PC))
10988 {
10989 as_warn (_("Use of r%u as a source register is "
10990 "deprecated when r%u is the destination "
10991 "register."), Rm, Rn);
10992 }
10993 }
10994 else
10995 {
10996 /* This is mov.w. */
10997 constraint (Rn == REG_PC, BAD_PC);
10998 constraint (Rm == REG_PC, BAD_PC);
10999 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
11000 }
fdfde340
JM
11001 }
11002 else
11003 reject_bad_reg (Rn);
11004 }
11005
c19d1205
ZW
11006 if (!inst.operands[1].isreg)
11007 {
0110f2b8 11008 /* Immediate operand. */
e07e6e58 11009 if (!in_it_block () && opcode == T_MNEM_mov)
0110f2b8
PB
11010 narrow = 0;
11011 if (low_regs && narrow)
11012 {
11013 inst.instruction = THUMB_OP16 (opcode);
fdfde340 11014 inst.instruction |= Rn << 8;
0110f2b8
PB
11015 if (inst.size_req == 2)
11016 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11017 else
11018 inst.relax = opcode;
11019 }
11020 else
11021 {
11022 inst.instruction = THUMB_OP32 (inst.instruction);
11023 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11024 inst.instruction |= Rn << r0off;
0110f2b8
PB
11025 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11026 }
c19d1205 11027 }
728ca7c9
PB
11028 else if (inst.operands[1].shifted && inst.operands[1].immisreg
11029 && (inst.instruction == T_MNEM_mov
11030 || inst.instruction == T_MNEM_movs))
11031 {
11032 /* Register shifts are encoded as separate shift instructions. */
11033 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
11034
e07e6e58 11035 if (in_it_block ())
728ca7c9
PB
11036 narrow = !flags;
11037 else
11038 narrow = flags;
11039
11040 if (inst.size_req == 4)
11041 narrow = FALSE;
11042
11043 if (!low_regs || inst.operands[1].imm > 7)
11044 narrow = FALSE;
11045
fdfde340 11046 if (Rn != Rm)
728ca7c9
PB
11047 narrow = FALSE;
11048
11049 switch (inst.operands[1].shift_kind)
11050 {
11051 case SHIFT_LSL:
11052 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
11053 break;
11054 case SHIFT_ASR:
11055 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
11056 break;
11057 case SHIFT_LSR:
11058 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
11059 break;
11060 case SHIFT_ROR:
11061 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
11062 break;
11063 default:
5f4273c7 11064 abort ();
728ca7c9
PB
11065 }
11066
11067 inst.instruction = opcode;
11068 if (narrow)
11069 {
fdfde340 11070 inst.instruction |= Rn;
728ca7c9
PB
11071 inst.instruction |= inst.operands[1].imm << 3;
11072 }
11073 else
11074 {
11075 if (flags)
11076 inst.instruction |= CONDS_BIT;
11077
fdfde340
JM
11078 inst.instruction |= Rn << 8;
11079 inst.instruction |= Rm << 16;
728ca7c9
PB
11080 inst.instruction |= inst.operands[1].imm;
11081 }
11082 }
3d388997 11083 else if (!narrow)
c19d1205 11084 {
728ca7c9
PB
11085 /* Some mov with immediate shift have narrow variants.
11086 Register shifts are handled above. */
11087 if (low_regs && inst.operands[1].shifted
11088 && (inst.instruction == T_MNEM_mov
11089 || inst.instruction == T_MNEM_movs))
11090 {
e07e6e58 11091 if (in_it_block ())
728ca7c9
PB
11092 narrow = (inst.instruction == T_MNEM_mov);
11093 else
11094 narrow = (inst.instruction == T_MNEM_movs);
11095 }
11096
11097 if (narrow)
11098 {
11099 switch (inst.operands[1].shift_kind)
11100 {
11101 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11102 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
11103 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11104 default: narrow = FALSE; break;
11105 }
11106 }
11107
11108 if (narrow)
11109 {
fdfde340
JM
11110 inst.instruction |= Rn;
11111 inst.instruction |= Rm << 3;
728ca7c9
PB
11112 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11113 }
11114 else
11115 {
11116 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11117 inst.instruction |= Rn << r0off;
728ca7c9
PB
11118 encode_thumb32_shifted_operand (1);
11119 }
c19d1205
ZW
11120 }
11121 else
11122 switch (inst.instruction)
11123 {
11124 case T_MNEM_mov:
837b3435 11125 /* In v4t or v5t a move of two lowregs produces unpredictable
c6400f8a
MGD
11126 results. Don't allow this. */
11127 if (low_regs)
11128 {
11129 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
11130 "MOV Rd, Rs with two low registers is not "
11131 "permitted on this architecture");
fa94de6b 11132 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
c6400f8a
MGD
11133 arm_ext_v6);
11134 }
11135
c19d1205 11136 inst.instruction = T_OPCODE_MOV_HR;
fdfde340
JM
11137 inst.instruction |= (Rn & 0x8) << 4;
11138 inst.instruction |= (Rn & 0x7);
11139 inst.instruction |= Rm << 3;
c19d1205 11140 break;
b99bd4ef 11141
c19d1205
ZW
11142 case T_MNEM_movs:
11143 /* We know we have low registers at this point.
941a8a52
MGD
11144 Generate LSLS Rd, Rs, #0. */
11145 inst.instruction = T_OPCODE_LSL_I;
fdfde340
JM
11146 inst.instruction |= Rn;
11147 inst.instruction |= Rm << 3;
c19d1205
ZW
11148 break;
11149
11150 case T_MNEM_cmp:
3d388997 11151 if (low_regs)
c19d1205
ZW
11152 {
11153 inst.instruction = T_OPCODE_CMP_LR;
fdfde340
JM
11154 inst.instruction |= Rn;
11155 inst.instruction |= Rm << 3;
c19d1205
ZW
11156 }
11157 else
11158 {
11159 inst.instruction = T_OPCODE_CMP_HR;
fdfde340
JM
11160 inst.instruction |= (Rn & 0x8) << 4;
11161 inst.instruction |= (Rn & 0x7);
11162 inst.instruction |= Rm << 3;
c19d1205
ZW
11163 }
11164 break;
11165 }
b99bd4ef
NC
11166 return;
11167 }
11168
c19d1205 11169 inst.instruction = THUMB_OP16 (inst.instruction);
539d4391
NC
11170
11171 /* PR 10443: Do not silently ignore shifted operands. */
11172 constraint (inst.operands[1].shifted,
11173 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
11174
c19d1205 11175 if (inst.operands[1].isreg)
b99bd4ef 11176 {
fdfde340 11177 if (Rn < 8 && Rm < 8)
b99bd4ef 11178 {
c19d1205
ZW
11179 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
11180 since a MOV instruction produces unpredictable results. */
11181 if (inst.instruction == T_OPCODE_MOV_I8)
11182 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 11183 else
c19d1205 11184 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 11185
fdfde340
JM
11186 inst.instruction |= Rn;
11187 inst.instruction |= Rm << 3;
b99bd4ef
NC
11188 }
11189 else
11190 {
c19d1205
ZW
11191 if (inst.instruction == T_OPCODE_MOV_I8)
11192 inst.instruction = T_OPCODE_MOV_HR;
11193 else
11194 inst.instruction = T_OPCODE_CMP_HR;
11195 do_t_cpy ();
b99bd4ef
NC
11196 }
11197 }
c19d1205 11198 else
b99bd4ef 11199 {
fdfde340 11200 constraint (Rn > 7,
c19d1205 11201 _("only lo regs allowed with immediate"));
fdfde340 11202 inst.instruction |= Rn << 8;
c19d1205
ZW
11203 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
11204 }
11205}
b99bd4ef 11206
c19d1205
ZW
11207static void
11208do_t_mov16 (void)
11209{
fdfde340 11210 unsigned Rd;
b6895b4f
PB
11211 bfd_vma imm;
11212 bfd_boolean top;
11213
11214 top = (inst.instruction & 0x00800000) != 0;
11215 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
11216 {
11217 constraint (top, _(":lower16: not allowed this instruction"));
11218 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
11219 }
11220 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
11221 {
11222 constraint (!top, _(":upper16: not allowed this instruction"));
11223 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
11224 }
11225
fdfde340
JM
11226 Rd = inst.operands[0].reg;
11227 reject_bad_reg (Rd);
11228
11229 inst.instruction |= Rd << 8;
b6895b4f
PB
11230 if (inst.reloc.type == BFD_RELOC_UNUSED)
11231 {
11232 imm = inst.reloc.exp.X_add_number;
11233 inst.instruction |= (imm & 0xf000) << 4;
11234 inst.instruction |= (imm & 0x0800) << 15;
11235 inst.instruction |= (imm & 0x0700) << 4;
11236 inst.instruction |= (imm & 0x00ff);
11237 }
c19d1205 11238}
b99bd4ef 11239
c19d1205
ZW
11240static void
11241do_t_mvn_tst (void)
11242{
fdfde340 11243 unsigned Rn, Rm;
c921be7d 11244
fdfde340
JM
11245 Rn = inst.operands[0].reg;
11246 Rm = inst.operands[1].reg;
11247
11248 if (inst.instruction == T_MNEM_cmp
11249 || inst.instruction == T_MNEM_cmn)
11250 constraint (Rn == REG_PC, BAD_PC);
11251 else
11252 reject_bad_reg (Rn);
11253 reject_bad_reg (Rm);
11254
c19d1205
ZW
11255 if (unified_syntax)
11256 {
11257 int r0off = (inst.instruction == T_MNEM_mvn
11258 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
11259 bfd_boolean narrow;
11260
11261 if (inst.size_req == 4
11262 || inst.instruction > 0xffff
11263 || inst.operands[1].shifted
fdfde340 11264 || Rn > 7 || Rm > 7)
3d388997
PB
11265 narrow = FALSE;
11266 else if (inst.instruction == T_MNEM_cmn)
11267 narrow = TRUE;
11268 else if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11269 narrow = !in_it_block ();
3d388997 11270 else
e07e6e58 11271 narrow = in_it_block ();
3d388997 11272
c19d1205 11273 if (!inst.operands[1].isreg)
b99bd4ef 11274 {
c19d1205
ZW
11275 /* For an immediate, we always generate a 32-bit opcode;
11276 section relaxation will shrink it later if possible. */
11277 if (inst.instruction < 0xffff)
11278 inst.instruction = THUMB_OP32 (inst.instruction);
11279 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11280 inst.instruction |= Rn << r0off;
c19d1205 11281 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 11282 }
c19d1205 11283 else
b99bd4ef 11284 {
c19d1205 11285 /* See if we can do this with a 16-bit instruction. */
3d388997 11286 if (narrow)
b99bd4ef 11287 {
c19d1205 11288 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11289 inst.instruction |= Rn;
11290 inst.instruction |= Rm << 3;
b99bd4ef 11291 }
c19d1205 11292 else
b99bd4ef 11293 {
c19d1205
ZW
11294 constraint (inst.operands[1].shifted
11295 && inst.operands[1].immisreg,
11296 _("shift must be constant"));
11297 if (inst.instruction < 0xffff)
11298 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 11299 inst.instruction |= Rn << r0off;
c19d1205 11300 encode_thumb32_shifted_operand (1);
b99bd4ef 11301 }
b99bd4ef
NC
11302 }
11303 }
11304 else
11305 {
c19d1205
ZW
11306 constraint (inst.instruction > 0xffff
11307 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
11308 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
11309 _("unshifted register required"));
fdfde340 11310 constraint (Rn > 7 || Rm > 7,
c19d1205 11311 BAD_HIREG);
b99bd4ef 11312
c19d1205 11313 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11314 inst.instruction |= Rn;
11315 inst.instruction |= Rm << 3;
b99bd4ef 11316 }
b99bd4ef
NC
11317}
11318
b05fe5cf 11319static void
c19d1205 11320do_t_mrs (void)
b05fe5cf 11321{
fdfde340 11322 unsigned Rd;
037e8744
JB
11323
11324 if (do_vfp_nsyn_mrs () == SUCCESS)
11325 return;
11326
90ec0d68
MGD
11327 Rd = inst.operands[0].reg;
11328 reject_bad_reg (Rd);
11329 inst.instruction |= Rd << 8;
11330
11331 if (inst.operands[1].isreg)
62b3e311 11332 {
90ec0d68
MGD
11333 unsigned br = inst.operands[1].reg;
11334 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
11335 as_bad (_("bad register for mrs"));
11336
11337 inst.instruction |= br & (0xf << 16);
11338 inst.instruction |= (br & 0x300) >> 4;
11339 inst.instruction |= (br & SPSR_BIT) >> 2;
62b3e311
PB
11340 }
11341 else
11342 {
90ec0d68 11343 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
5f4273c7 11344
d2cd1205 11345 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
1a43faaf
NC
11346 {
11347 /* PR gas/12698: The constraint is only applied for m_profile.
11348 If the user has specified -march=all, we want to ignore it as
11349 we are building for any CPU type, including non-m variants. */
11350 bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
11351 constraint ((flags != 0) && m_profile, _("selected processor does "
11352 "not support requested special purpose register"));
11353 }
90ec0d68 11354 else
d2cd1205
JB
11355 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
11356 devices). */
11357 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
11358 _("'APSR', 'CPSR' or 'SPSR' expected"));
fdfde340 11359
90ec0d68
MGD
11360 inst.instruction |= (flags & SPSR_BIT) >> 2;
11361 inst.instruction |= inst.operands[1].imm & 0xff;
11362 inst.instruction |= 0xf0000;
11363 }
c19d1205 11364}
b05fe5cf 11365
c19d1205
ZW
11366static void
11367do_t_msr (void)
11368{
62b3e311 11369 int flags;
fdfde340 11370 unsigned Rn;
62b3e311 11371
037e8744
JB
11372 if (do_vfp_nsyn_msr () == SUCCESS)
11373 return;
11374
c19d1205
ZW
11375 constraint (!inst.operands[1].isreg,
11376 _("Thumb encoding does not support an immediate here"));
90ec0d68
MGD
11377
11378 if (inst.operands[0].isreg)
11379 flags = (int)(inst.operands[0].reg);
11380 else
11381 flags = inst.operands[0].imm;
11382
d2cd1205 11383 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
62b3e311 11384 {
d2cd1205
JB
11385 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
11386
1a43faaf
NC
11387 /* PR gas/12698: The constraint is only applied for m_profile.
11388 If the user has specified -march=all, we want to ignore it as
11389 we are building for any CPU type, including non-m variants. */
11390 bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
11391 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11392 && (bits & ~(PSR_s | PSR_f)) != 0)
11393 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
11394 && bits != PSR_f)) && m_profile,
11395 _("selected processor does not support requested special "
11396 "purpose register"));
62b3e311
PB
11397 }
11398 else
d2cd1205
JB
11399 constraint ((flags & 0xff) != 0, _("selected processor does not support "
11400 "requested special purpose register"));
c921be7d 11401
fdfde340
JM
11402 Rn = inst.operands[1].reg;
11403 reject_bad_reg (Rn);
11404
62b3e311 11405 inst.instruction |= (flags & SPSR_BIT) >> 2;
90ec0d68
MGD
11406 inst.instruction |= (flags & 0xf0000) >> 8;
11407 inst.instruction |= (flags & 0x300) >> 4;
62b3e311 11408 inst.instruction |= (flags & 0xff);
fdfde340 11409 inst.instruction |= Rn << 16;
c19d1205 11410}
b05fe5cf 11411
c19d1205
ZW
11412static void
11413do_t_mul (void)
11414{
17828f45 11415 bfd_boolean narrow;
fdfde340 11416 unsigned Rd, Rn, Rm;
17828f45 11417
c19d1205
ZW
11418 if (!inst.operands[2].present)
11419 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 11420
fdfde340
JM
11421 Rd = inst.operands[0].reg;
11422 Rn = inst.operands[1].reg;
11423 Rm = inst.operands[2].reg;
11424
17828f45 11425 if (unified_syntax)
b05fe5cf 11426 {
17828f45 11427 if (inst.size_req == 4
fdfde340
JM
11428 || (Rd != Rn
11429 && Rd != Rm)
11430 || Rn > 7
11431 || Rm > 7)
17828f45
JM
11432 narrow = FALSE;
11433 else if (inst.instruction == T_MNEM_muls)
e07e6e58 11434 narrow = !in_it_block ();
17828f45 11435 else
e07e6e58 11436 narrow = in_it_block ();
b05fe5cf 11437 }
c19d1205 11438 else
b05fe5cf 11439 {
17828f45 11440 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
fdfde340 11441 constraint (Rn > 7 || Rm > 7,
c19d1205 11442 BAD_HIREG);
17828f45
JM
11443 narrow = TRUE;
11444 }
b05fe5cf 11445
17828f45
JM
11446 if (narrow)
11447 {
11448 /* 16-bit MULS/Conditional MUL. */
c19d1205 11449 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 11450 inst.instruction |= Rd;
b05fe5cf 11451
fdfde340
JM
11452 if (Rd == Rn)
11453 inst.instruction |= Rm << 3;
11454 else if (Rd == Rm)
11455 inst.instruction |= Rn << 3;
c19d1205
ZW
11456 else
11457 constraint (1, _("dest must overlap one source register"));
11458 }
17828f45
JM
11459 else
11460 {
e07e6e58
NC
11461 constraint (inst.instruction != T_MNEM_mul,
11462 _("Thumb-2 MUL must not set flags"));
17828f45
JM
11463 /* 32-bit MUL. */
11464 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11465 inst.instruction |= Rd << 8;
11466 inst.instruction |= Rn << 16;
11467 inst.instruction |= Rm << 0;
11468
11469 reject_bad_reg (Rd);
11470 reject_bad_reg (Rn);
11471 reject_bad_reg (Rm);
17828f45 11472 }
c19d1205 11473}
b05fe5cf 11474
c19d1205
ZW
11475static void
11476do_t_mull (void)
11477{
fdfde340 11478 unsigned RdLo, RdHi, Rn, Rm;
b05fe5cf 11479
fdfde340
JM
11480 RdLo = inst.operands[0].reg;
11481 RdHi = inst.operands[1].reg;
11482 Rn = inst.operands[2].reg;
11483 Rm = inst.operands[3].reg;
11484
11485 reject_bad_reg (RdLo);
11486 reject_bad_reg (RdHi);
11487 reject_bad_reg (Rn);
11488 reject_bad_reg (Rm);
11489
11490 inst.instruction |= RdLo << 12;
11491 inst.instruction |= RdHi << 8;
11492 inst.instruction |= Rn << 16;
11493 inst.instruction |= Rm;
11494
11495 if (RdLo == RdHi)
c19d1205
ZW
11496 as_tsktsk (_("rdhi and rdlo must be different"));
11497}
b05fe5cf 11498
c19d1205
ZW
11499static void
11500do_t_nop (void)
11501{
e07e6e58
NC
11502 set_it_insn_type (NEUTRAL_IT_INSN);
11503
c19d1205
ZW
11504 if (unified_syntax)
11505 {
11506 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 11507 {
c19d1205
ZW
11508 inst.instruction = THUMB_OP32 (inst.instruction);
11509 inst.instruction |= inst.operands[0].imm;
11510 }
11511 else
11512 {
bc2d1808
NC
11513 /* PR9722: Check for Thumb2 availability before
11514 generating a thumb2 nop instruction. */
afa62d5e 11515 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
bc2d1808
NC
11516 {
11517 inst.instruction = THUMB_OP16 (inst.instruction);
11518 inst.instruction |= inst.operands[0].imm << 4;
11519 }
11520 else
11521 inst.instruction = 0x46c0;
c19d1205
ZW
11522 }
11523 }
11524 else
11525 {
11526 constraint (inst.operands[0].present,
11527 _("Thumb does not support NOP with hints"));
11528 inst.instruction = 0x46c0;
11529 }
11530}
b05fe5cf 11531
c19d1205
ZW
11532static void
11533do_t_neg (void)
11534{
11535 if (unified_syntax)
11536 {
3d388997
PB
11537 bfd_boolean narrow;
11538
11539 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11540 narrow = !in_it_block ();
3d388997 11541 else
e07e6e58 11542 narrow = in_it_block ();
3d388997
PB
11543 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11544 narrow = FALSE;
11545 if (inst.size_req == 4)
11546 narrow = FALSE;
11547
11548 if (!narrow)
c19d1205
ZW
11549 {
11550 inst.instruction = THUMB_OP32 (inst.instruction);
11551 inst.instruction |= inst.operands[0].reg << 8;
11552 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
11553 }
11554 else
11555 {
c19d1205
ZW
11556 inst.instruction = THUMB_OP16 (inst.instruction);
11557 inst.instruction |= inst.operands[0].reg;
11558 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
11559 }
11560 }
11561 else
11562 {
c19d1205
ZW
11563 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
11564 BAD_HIREG);
11565 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11566
11567 inst.instruction = THUMB_OP16 (inst.instruction);
11568 inst.instruction |= inst.operands[0].reg;
11569 inst.instruction |= inst.operands[1].reg << 3;
11570 }
11571}
11572
1c444d06
JM
11573static void
11574do_t_orn (void)
11575{
11576 unsigned Rd, Rn;
11577
11578 Rd = inst.operands[0].reg;
11579 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
11580
fdfde340
JM
11581 reject_bad_reg (Rd);
11582 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
11583 reject_bad_reg (Rn);
11584
1c444d06
JM
11585 inst.instruction |= Rd << 8;
11586 inst.instruction |= Rn << 16;
11587
11588 if (!inst.operands[2].isreg)
11589 {
11590 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11591 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11592 }
11593 else
11594 {
11595 unsigned Rm;
11596
11597 Rm = inst.operands[2].reg;
fdfde340 11598 reject_bad_reg (Rm);
1c444d06
JM
11599
11600 constraint (inst.operands[2].shifted
11601 && inst.operands[2].immisreg,
11602 _("shift must be constant"));
11603 encode_thumb32_shifted_operand (2);
11604 }
11605}
11606
c19d1205
ZW
11607static void
11608do_t_pkhbt (void)
11609{
fdfde340
JM
11610 unsigned Rd, Rn, Rm;
11611
11612 Rd = inst.operands[0].reg;
11613 Rn = inst.operands[1].reg;
11614 Rm = inst.operands[2].reg;
11615
11616 reject_bad_reg (Rd);
11617 reject_bad_reg (Rn);
11618 reject_bad_reg (Rm);
11619
11620 inst.instruction |= Rd << 8;
11621 inst.instruction |= Rn << 16;
11622 inst.instruction |= Rm;
c19d1205
ZW
11623 if (inst.operands[3].present)
11624 {
11625 unsigned int val = inst.reloc.exp.X_add_number;
11626 constraint (inst.reloc.exp.X_op != O_constant,
11627 _("expression too complex"));
11628 inst.instruction |= (val & 0x1c) << 10;
11629 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 11630 }
c19d1205 11631}
b05fe5cf 11632
c19d1205
ZW
11633static void
11634do_t_pkhtb (void)
11635{
11636 if (!inst.operands[3].present)
1ef52f49
NC
11637 {
11638 unsigned Rtmp;
11639
11640 inst.instruction &= ~0x00000020;
11641
11642 /* PR 10168. Swap the Rm and Rn registers. */
11643 Rtmp = inst.operands[1].reg;
11644 inst.operands[1].reg = inst.operands[2].reg;
11645 inst.operands[2].reg = Rtmp;
11646 }
c19d1205 11647 do_t_pkhbt ();
b05fe5cf
ZW
11648}
11649
c19d1205
ZW
11650static void
11651do_t_pld (void)
11652{
fdfde340
JM
11653 if (inst.operands[0].immisreg)
11654 reject_bad_reg (inst.operands[0].imm);
11655
c19d1205
ZW
11656 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
11657}
b05fe5cf 11658
c19d1205
ZW
11659static void
11660do_t_push_pop (void)
b99bd4ef 11661{
e9f89963 11662 unsigned mask;
5f4273c7 11663
c19d1205
ZW
11664 constraint (inst.operands[0].writeback,
11665 _("push/pop do not support {reglist}^"));
11666 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
11667 _("expression too complex"));
b99bd4ef 11668
e9f89963
PB
11669 mask = inst.operands[0].imm;
11670 if ((mask & ~0xff) == 0)
3c707909 11671 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
c19d1205 11672 else if ((inst.instruction == T_MNEM_push
e9f89963 11673 && (mask & ~0xff) == 1 << REG_LR)
c19d1205 11674 || (inst.instruction == T_MNEM_pop
e9f89963 11675 && (mask & ~0xff) == 1 << REG_PC))
b99bd4ef 11676 {
c19d1205
ZW
11677 inst.instruction = THUMB_OP16 (inst.instruction);
11678 inst.instruction |= THUMB_PP_PC_LR;
3c707909 11679 inst.instruction |= mask & 0xff;
c19d1205
ZW
11680 }
11681 else if (unified_syntax)
11682 {
3c707909 11683 inst.instruction = THUMB_OP32 (inst.instruction);
5f4273c7 11684 encode_thumb2_ldmstm (13, mask, TRUE);
c19d1205
ZW
11685 }
11686 else
11687 {
11688 inst.error = _("invalid register list to push/pop instruction");
11689 return;
11690 }
c19d1205 11691}
b99bd4ef 11692
c19d1205
ZW
11693static void
11694do_t_rbit (void)
11695{
fdfde340
JM
11696 unsigned Rd, Rm;
11697
11698 Rd = inst.operands[0].reg;
11699 Rm = inst.operands[1].reg;
11700
11701 reject_bad_reg (Rd);
11702 reject_bad_reg (Rm);
11703
11704 inst.instruction |= Rd << 8;
11705 inst.instruction |= Rm << 16;
11706 inst.instruction |= Rm;
c19d1205 11707}
b99bd4ef 11708
c19d1205
ZW
11709static void
11710do_t_rev (void)
11711{
fdfde340
JM
11712 unsigned Rd, Rm;
11713
11714 Rd = inst.operands[0].reg;
11715 Rm = inst.operands[1].reg;
11716
11717 reject_bad_reg (Rd);
11718 reject_bad_reg (Rm);
11719
11720 if (Rd <= 7 && Rm <= 7
c19d1205
ZW
11721 && inst.size_req != 4)
11722 {
11723 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
11724 inst.instruction |= Rd;
11725 inst.instruction |= Rm << 3;
c19d1205
ZW
11726 }
11727 else if (unified_syntax)
11728 {
11729 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
11730 inst.instruction |= Rd << 8;
11731 inst.instruction |= Rm << 16;
11732 inst.instruction |= Rm;
c19d1205
ZW
11733 }
11734 else
11735 inst.error = BAD_HIREG;
11736}
b99bd4ef 11737
1c444d06
JM
11738static void
11739do_t_rrx (void)
11740{
11741 unsigned Rd, Rm;
11742
11743 Rd = inst.operands[0].reg;
11744 Rm = inst.operands[1].reg;
11745
fdfde340
JM
11746 reject_bad_reg (Rd);
11747 reject_bad_reg (Rm);
c921be7d 11748
1c444d06
JM
11749 inst.instruction |= Rd << 8;
11750 inst.instruction |= Rm;
11751}
11752
c19d1205
ZW
11753static void
11754do_t_rsb (void)
11755{
fdfde340 11756 unsigned Rd, Rs;
b99bd4ef 11757
c19d1205
ZW
11758 Rd = inst.operands[0].reg;
11759 Rs = (inst.operands[1].present
11760 ? inst.operands[1].reg /* Rd, Rs, foo */
11761 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 11762
fdfde340
JM
11763 reject_bad_reg (Rd);
11764 reject_bad_reg (Rs);
11765 if (inst.operands[2].isreg)
11766 reject_bad_reg (inst.operands[2].reg);
11767
c19d1205
ZW
11768 inst.instruction |= Rd << 8;
11769 inst.instruction |= Rs << 16;
11770 if (!inst.operands[2].isreg)
11771 {
026d3abb
PB
11772 bfd_boolean narrow;
11773
11774 if ((inst.instruction & 0x00100000) != 0)
e07e6e58 11775 narrow = !in_it_block ();
026d3abb 11776 else
e07e6e58 11777 narrow = in_it_block ();
026d3abb
PB
11778
11779 if (Rd > 7 || Rs > 7)
11780 narrow = FALSE;
11781
11782 if (inst.size_req == 4 || !unified_syntax)
11783 narrow = FALSE;
11784
11785 if (inst.reloc.exp.X_op != O_constant
11786 || inst.reloc.exp.X_add_number != 0)
11787 narrow = FALSE;
11788
11789 /* Turn rsb #0 into 16-bit neg. We should probably do this via
11790 relaxation, but it doesn't seem worth the hassle. */
11791 if (narrow)
11792 {
11793 inst.reloc.type = BFD_RELOC_UNUSED;
11794 inst.instruction = THUMB_OP16 (T_MNEM_negs);
11795 inst.instruction |= Rs << 3;
11796 inst.instruction |= Rd;
11797 }
11798 else
11799 {
11800 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11801 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11802 }
c19d1205
ZW
11803 }
11804 else
11805 encode_thumb32_shifted_operand (2);
11806}
b99bd4ef 11807
c19d1205
ZW
11808static void
11809do_t_setend (void)
11810{
12e37cbc
MGD
11811 if (warn_on_deprecated
11812 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11813 as_warn (_("setend use is deprecated for ARMv8"));
11814
e07e6e58 11815 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
11816 if (inst.operands[0].imm)
11817 inst.instruction |= 0x8;
11818}
b99bd4ef 11819
c19d1205
ZW
11820static void
11821do_t_shift (void)
11822{
11823 if (!inst.operands[1].present)
11824 inst.operands[1].reg = inst.operands[0].reg;
11825
11826 if (unified_syntax)
11827 {
3d388997
PB
11828 bfd_boolean narrow;
11829 int shift_kind;
11830
11831 switch (inst.instruction)
11832 {
11833 case T_MNEM_asr:
11834 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
11835 case T_MNEM_lsl:
11836 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
11837 case T_MNEM_lsr:
11838 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
11839 case T_MNEM_ror:
11840 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
11841 default: abort ();
11842 }
11843
11844 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 11845 narrow = !in_it_block ();
3d388997 11846 else
e07e6e58 11847 narrow = in_it_block ();
3d388997
PB
11848 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
11849 narrow = FALSE;
11850 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
11851 narrow = FALSE;
11852 if (inst.operands[2].isreg
11853 && (inst.operands[1].reg != inst.operands[0].reg
11854 || inst.operands[2].reg > 7))
11855 narrow = FALSE;
11856 if (inst.size_req == 4)
11857 narrow = FALSE;
11858
fdfde340
JM
11859 reject_bad_reg (inst.operands[0].reg);
11860 reject_bad_reg (inst.operands[1].reg);
c921be7d 11861
3d388997 11862 if (!narrow)
c19d1205
ZW
11863 {
11864 if (inst.operands[2].isreg)
b99bd4ef 11865 {
fdfde340 11866 reject_bad_reg (inst.operands[2].reg);
c19d1205
ZW
11867 inst.instruction = THUMB_OP32 (inst.instruction);
11868 inst.instruction |= inst.operands[0].reg << 8;
11869 inst.instruction |= inst.operands[1].reg << 16;
11870 inst.instruction |= inst.operands[2].reg;
94342ec3
NC
11871
11872 /* PR 12854: Error on extraneous shifts. */
11873 constraint (inst.operands[2].shifted,
11874 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11875 }
11876 else
11877 {
11878 inst.operands[1].shifted = 1;
3d388997 11879 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
11880 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
11881 ? T_MNEM_movs : T_MNEM_mov);
11882 inst.instruction |= inst.operands[0].reg << 8;
11883 encode_thumb32_shifted_operand (1);
11884 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
11885 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
11886 }
11887 }
11888 else
11889 {
c19d1205 11890 if (inst.operands[2].isreg)
b99bd4ef 11891 {
3d388997 11892 switch (shift_kind)
b99bd4ef 11893 {
3d388997
PB
11894 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
11895 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
11896 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
11897 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 11898 default: abort ();
b99bd4ef 11899 }
5f4273c7 11900
c19d1205
ZW
11901 inst.instruction |= inst.operands[0].reg;
11902 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11903
11904 /* PR 12854: Error on extraneous shifts. */
11905 constraint (inst.operands[2].shifted,
11906 _("extraneous shift as part of operand to shift insn"));
b99bd4ef
NC
11907 }
11908 else
11909 {
3d388997 11910 switch (shift_kind)
b99bd4ef 11911 {
3d388997
PB
11912 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
11913 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
11914 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 11915 default: abort ();
b99bd4ef 11916 }
c19d1205
ZW
11917 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11918 inst.instruction |= inst.operands[0].reg;
11919 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
11920 }
11921 }
c19d1205
ZW
11922 }
11923 else
11924 {
11925 constraint (inst.operands[0].reg > 7
11926 || inst.operands[1].reg > 7, BAD_HIREG);
11927 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 11928
c19d1205
ZW
11929 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
11930 {
11931 constraint (inst.operands[2].reg > 7, BAD_HIREG);
11932 constraint (inst.operands[0].reg != inst.operands[1].reg,
11933 _("source1 and dest must be same register"));
b99bd4ef 11934
c19d1205
ZW
11935 switch (inst.instruction)
11936 {
11937 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
11938 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
11939 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
11940 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
11941 default: abort ();
11942 }
5f4273c7 11943
c19d1205
ZW
11944 inst.instruction |= inst.operands[0].reg;
11945 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
11946
11947 /* PR 12854: Error on extraneous shifts. */
11948 constraint (inst.operands[2].shifted,
11949 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
11950 }
11951 else
b99bd4ef 11952 {
c19d1205
ZW
11953 switch (inst.instruction)
11954 {
11955 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
11956 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
11957 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
11958 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
11959 default: abort ();
11960 }
11961 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
11962 inst.instruction |= inst.operands[0].reg;
11963 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
11964 }
11965 }
b99bd4ef
NC
11966}
11967
11968static void
c19d1205 11969do_t_simd (void)
b99bd4ef 11970{
fdfde340
JM
11971 unsigned Rd, Rn, Rm;
11972
11973 Rd = inst.operands[0].reg;
11974 Rn = inst.operands[1].reg;
11975 Rm = inst.operands[2].reg;
11976
11977 reject_bad_reg (Rd);
11978 reject_bad_reg (Rn);
11979 reject_bad_reg (Rm);
11980
11981 inst.instruction |= Rd << 8;
11982 inst.instruction |= Rn << 16;
11983 inst.instruction |= Rm;
c19d1205 11984}
b99bd4ef 11985
03ee1b7f
NC
11986static void
11987do_t_simd2 (void)
11988{
11989 unsigned Rd, Rn, Rm;
11990
11991 Rd = inst.operands[0].reg;
11992 Rm = inst.operands[1].reg;
11993 Rn = inst.operands[2].reg;
11994
11995 reject_bad_reg (Rd);
11996 reject_bad_reg (Rn);
11997 reject_bad_reg (Rm);
11998
11999 inst.instruction |= Rd << 8;
12000 inst.instruction |= Rn << 16;
12001 inst.instruction |= Rm;
12002}
12003
c19d1205 12004static void
3eb17e6b 12005do_t_smc (void)
c19d1205
ZW
12006{
12007 unsigned int value = inst.reloc.exp.X_add_number;
f4c65163
MGD
12008 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
12009 _("SMC is not permitted on this architecture"));
c19d1205
ZW
12010 constraint (inst.reloc.exp.X_op != O_constant,
12011 _("expression too complex"));
12012 inst.reloc.type = BFD_RELOC_UNUSED;
12013 inst.instruction |= (value & 0xf000) >> 12;
12014 inst.instruction |= (value & 0x0ff0);
12015 inst.instruction |= (value & 0x000f) << 16;
24382199
NC
12016 /* PR gas/15623: SMC instructions must be last in an IT block. */
12017 set_it_insn_type_last ();
c19d1205 12018}
b99bd4ef 12019
90ec0d68
MGD
12020static void
12021do_t_hvc (void)
12022{
12023 unsigned int value = inst.reloc.exp.X_add_number;
12024
12025 inst.reloc.type = BFD_RELOC_UNUSED;
12026 inst.instruction |= (value & 0x0fff);
12027 inst.instruction |= (value & 0xf000) << 4;
12028}
12029
c19d1205 12030static void
3a21c15a 12031do_t_ssat_usat (int bias)
c19d1205 12032{
fdfde340
JM
12033 unsigned Rd, Rn;
12034
12035 Rd = inst.operands[0].reg;
12036 Rn = inst.operands[2].reg;
12037
12038 reject_bad_reg (Rd);
12039 reject_bad_reg (Rn);
12040
12041 inst.instruction |= Rd << 8;
3a21c15a 12042 inst.instruction |= inst.operands[1].imm - bias;
fdfde340 12043 inst.instruction |= Rn << 16;
b99bd4ef 12044
c19d1205 12045 if (inst.operands[3].present)
b99bd4ef 12046 {
3a21c15a
NC
12047 offsetT shift_amount = inst.reloc.exp.X_add_number;
12048
12049 inst.reloc.type = BFD_RELOC_UNUSED;
12050
c19d1205
ZW
12051 constraint (inst.reloc.exp.X_op != O_constant,
12052 _("expression too complex"));
b99bd4ef 12053
3a21c15a 12054 if (shift_amount != 0)
6189168b 12055 {
3a21c15a
NC
12056 constraint (shift_amount > 31,
12057 _("shift expression is too large"));
12058
c19d1205 12059 if (inst.operands[3].shift_kind == SHIFT_ASR)
3a21c15a
NC
12060 inst.instruction |= 0x00200000; /* sh bit. */
12061
12062 inst.instruction |= (shift_amount & 0x1c) << 10;
12063 inst.instruction |= (shift_amount & 0x03) << 6;
6189168b
NC
12064 }
12065 }
b99bd4ef 12066}
c921be7d 12067
3a21c15a
NC
12068static void
12069do_t_ssat (void)
12070{
12071 do_t_ssat_usat (1);
12072}
b99bd4ef 12073
0dd132b6 12074static void
c19d1205 12075do_t_ssat16 (void)
0dd132b6 12076{
fdfde340
JM
12077 unsigned Rd, Rn;
12078
12079 Rd = inst.operands[0].reg;
12080 Rn = inst.operands[2].reg;
12081
12082 reject_bad_reg (Rd);
12083 reject_bad_reg (Rn);
12084
12085 inst.instruction |= Rd << 8;
c19d1205 12086 inst.instruction |= inst.operands[1].imm - 1;
fdfde340 12087 inst.instruction |= Rn << 16;
c19d1205 12088}
0dd132b6 12089
c19d1205
ZW
12090static void
12091do_t_strex (void)
12092{
12093 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
12094 || inst.operands[2].postind || inst.operands[2].writeback
12095 || inst.operands[2].immisreg || inst.operands[2].shifted
12096 || inst.operands[2].negative,
01cfc07f 12097 BAD_ADDR_MODE);
0dd132b6 12098
5be8be5d
DG
12099 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
12100
c19d1205
ZW
12101 inst.instruction |= inst.operands[0].reg << 8;
12102 inst.instruction |= inst.operands[1].reg << 12;
12103 inst.instruction |= inst.operands[2].reg << 16;
12104 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
12105}
12106
b99bd4ef 12107static void
c19d1205 12108do_t_strexd (void)
b99bd4ef 12109{
c19d1205
ZW
12110 if (!inst.operands[2].present)
12111 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 12112
c19d1205
ZW
12113 constraint (inst.operands[0].reg == inst.operands[1].reg
12114 || inst.operands[0].reg == inst.operands[2].reg
f8a8e9d6 12115 || inst.operands[0].reg == inst.operands[3].reg,
c19d1205 12116 BAD_OVERLAP);
b99bd4ef 12117
c19d1205
ZW
12118 inst.instruction |= inst.operands[0].reg;
12119 inst.instruction |= inst.operands[1].reg << 12;
12120 inst.instruction |= inst.operands[2].reg << 8;
12121 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
12122}
12123
12124static void
c19d1205 12125do_t_sxtah (void)
b99bd4ef 12126{
fdfde340
JM
12127 unsigned Rd, Rn, Rm;
12128
12129 Rd = inst.operands[0].reg;
12130 Rn = inst.operands[1].reg;
12131 Rm = inst.operands[2].reg;
12132
12133 reject_bad_reg (Rd);
12134 reject_bad_reg (Rn);
12135 reject_bad_reg (Rm);
12136
12137 inst.instruction |= Rd << 8;
12138 inst.instruction |= Rn << 16;
12139 inst.instruction |= Rm;
c19d1205
ZW
12140 inst.instruction |= inst.operands[3].imm << 4;
12141}
b99bd4ef 12142
c19d1205
ZW
12143static void
12144do_t_sxth (void)
12145{
fdfde340
JM
12146 unsigned Rd, Rm;
12147
12148 Rd = inst.operands[0].reg;
12149 Rm = inst.operands[1].reg;
12150
12151 reject_bad_reg (Rd);
12152 reject_bad_reg (Rm);
c921be7d
NC
12153
12154 if (inst.instruction <= 0xffff
12155 && inst.size_req != 4
fdfde340 12156 && Rd <= 7 && Rm <= 7
c19d1205 12157 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 12158 {
c19d1205 12159 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12160 inst.instruction |= Rd;
12161 inst.instruction |= Rm << 3;
b99bd4ef 12162 }
c19d1205 12163 else if (unified_syntax)
b99bd4ef 12164 {
c19d1205
ZW
12165 if (inst.instruction <= 0xffff)
12166 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12167 inst.instruction |= Rd << 8;
12168 inst.instruction |= Rm;
c19d1205 12169 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 12170 }
c19d1205 12171 else
b99bd4ef 12172 {
c19d1205
ZW
12173 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
12174 _("Thumb encoding does not support rotation"));
12175 constraint (1, BAD_HIREG);
b99bd4ef 12176 }
c19d1205 12177}
b99bd4ef 12178
c19d1205
ZW
12179static void
12180do_t_swi (void)
12181{
b2a5fbdc
MGD
12182 /* We have to do the following check manually as ARM_EXT_OS only applies
12183 to ARM_EXT_V6M. */
12184 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6m))
12185 {
ac7f631b
NC
12186 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_os)
12187 /* This only applies to the v6m howver, not later architectures. */
12188 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7))
b2a5fbdc
MGD
12189 as_bad (_("SVC is not permitted on this architecture"));
12190 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, arm_ext_os);
12191 }
12192
c19d1205
ZW
12193 inst.reloc.type = BFD_RELOC_ARM_SWI;
12194}
b99bd4ef 12195
92e90b6e
PB
12196static void
12197do_t_tb (void)
12198{
fdfde340 12199 unsigned Rn, Rm;
92e90b6e
PB
12200 int half;
12201
12202 half = (inst.instruction & 0x10) != 0;
e07e6e58 12203 set_it_insn_type_last ();
dfa9f0d5
PB
12204 constraint (inst.operands[0].immisreg,
12205 _("instruction requires register index"));
fdfde340
JM
12206
12207 Rn = inst.operands[0].reg;
12208 Rm = inst.operands[0].imm;
c921be7d 12209
fdfde340
JM
12210 constraint (Rn == REG_SP, BAD_SP);
12211 reject_bad_reg (Rm);
12212
92e90b6e
PB
12213 constraint (!half && inst.operands[0].shifted,
12214 _("instruction does not allow shifted index"));
fdfde340 12215 inst.instruction |= (Rn << 16) | Rm;
92e90b6e
PB
12216}
12217
c19d1205
ZW
12218static void
12219do_t_usat (void)
12220{
3a21c15a 12221 do_t_ssat_usat (0);
b99bd4ef
NC
12222}
12223
12224static void
c19d1205 12225do_t_usat16 (void)
b99bd4ef 12226{
fdfde340
JM
12227 unsigned Rd, Rn;
12228
12229 Rd = inst.operands[0].reg;
12230 Rn = inst.operands[2].reg;
12231
12232 reject_bad_reg (Rd);
12233 reject_bad_reg (Rn);
12234
12235 inst.instruction |= Rd << 8;
c19d1205 12236 inst.instruction |= inst.operands[1].imm;
fdfde340 12237 inst.instruction |= Rn << 16;
b99bd4ef 12238}
c19d1205 12239
5287ad62 12240/* Neon instruction encoder helpers. */
5f4273c7 12241
5287ad62 12242/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 12243
5287ad62
JB
12244/* An "invalid" code for the following tables. */
12245#define N_INV -1u
12246
12247struct neon_tab_entry
b99bd4ef 12248{
5287ad62
JB
12249 unsigned integer;
12250 unsigned float_or_poly;
12251 unsigned scalar_or_imm;
12252};
5f4273c7 12253
5287ad62
JB
12254/* Map overloaded Neon opcodes to their respective encodings. */
12255#define NEON_ENC_TAB \
12256 X(vabd, 0x0000700, 0x1200d00, N_INV), \
12257 X(vmax, 0x0000600, 0x0000f00, N_INV), \
12258 X(vmin, 0x0000610, 0x0200f00, N_INV), \
12259 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
12260 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
12261 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
12262 X(vadd, 0x0000800, 0x0000d00, N_INV), \
12263 X(vsub, 0x1000800, 0x0200d00, N_INV), \
12264 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
12265 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
12266 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
12267 /* Register variants of the following two instructions are encoded as
e07e6e58 12268 vcge / vcgt with the operands reversed. */ \
92559b5b
PB
12269 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
12270 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
62f3b8c8
PB
12271 X(vfma, N_INV, 0x0000c10, N_INV), \
12272 X(vfms, N_INV, 0x0200c10, N_INV), \
5287ad62
JB
12273 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
12274 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
12275 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
12276 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
12277 X(vmlal, 0x0800800, N_INV, 0x0800240), \
12278 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
12279 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
12280 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
12281 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
12282 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
12283 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
12284 X(vshl, 0x0000400, N_INV, 0x0800510), \
12285 X(vqshl, 0x0000410, N_INV, 0x0800710), \
12286 X(vand, 0x0000110, N_INV, 0x0800030), \
12287 X(vbic, 0x0100110, N_INV, 0x0800030), \
12288 X(veor, 0x1000110, N_INV, N_INV), \
12289 X(vorn, 0x0300110, N_INV, 0x0800010), \
12290 X(vorr, 0x0200110, N_INV, 0x0800010), \
12291 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
12292 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
12293 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
12294 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
12295 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
12296 X(vst1, 0x0000000, 0x0800000, N_INV), \
12297 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
12298 X(vst2, 0x0000100, 0x0800100, N_INV), \
12299 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
12300 X(vst3, 0x0000200, 0x0800200, N_INV), \
12301 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
12302 X(vst4, 0x0000300, 0x0800300, N_INV), \
12303 X(vmovn, 0x1b20200, N_INV, N_INV), \
12304 X(vtrn, 0x1b20080, N_INV, N_INV), \
12305 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
12306 X(vqmovun, 0x1b20240, N_INV, N_INV), \
12307 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
e6655fda
PB
12308 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
12309 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
62f3b8c8
PB
12310 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
12311 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
037e8744
JB
12312 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
12313 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
12314 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
33399f07
MGD
12315 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
12316 X(vseleq, 0xe000a00, N_INV, N_INV), \
12317 X(vselvs, 0xe100a00, N_INV, N_INV), \
12318 X(vselge, 0xe200a00, N_INV, N_INV), \
73924fbc
MGD
12319 X(vselgt, 0xe300a00, N_INV, N_INV), \
12320 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
7e8e6784 12321 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
30bdf752
MGD
12322 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
12323 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
91ff7894 12324 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
48adcd8e 12325 X(aes, 0x3b00300, N_INV, N_INV), \
3c9017d2
MGD
12326 X(sha3op, 0x2000c00, N_INV, N_INV), \
12327 X(sha1h, 0x3b902c0, N_INV, N_INV), \
12328 X(sha2op, 0x3ba0380, N_INV, N_INV)
5287ad62
JB
12329
12330enum neon_opc
12331{
12332#define X(OPC,I,F,S) N_MNEM_##OPC
12333NEON_ENC_TAB
12334#undef X
12335};
b99bd4ef 12336
5287ad62
JB
12337static const struct neon_tab_entry neon_enc_tab[] =
12338{
12339#define X(OPC,I,F,S) { (I), (F), (S) }
12340NEON_ENC_TAB
12341#undef X
12342};
b99bd4ef 12343
88714cb8
DG
12344/* Do not use these macros; instead, use NEON_ENCODE defined below. */
12345#define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12346#define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12347#define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12348#define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12349#define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12350#define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12351#define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
12352#define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
12353#define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
12354#define NEON_ENC_SINGLE_(X) \
037e8744 12355 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
88714cb8 12356#define NEON_ENC_DOUBLE_(X) \
037e8744 12357 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
33399f07
MGD
12358#define NEON_ENC_FPV8_(X) \
12359 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
5287ad62 12360
88714cb8
DG
12361#define NEON_ENCODE(type, inst) \
12362 do \
12363 { \
12364 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
12365 inst.is_neon = 1; \
12366 } \
12367 while (0)
12368
12369#define check_neon_suffixes \
12370 do \
12371 { \
12372 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
12373 { \
12374 as_bad (_("invalid neon suffix for non neon instruction")); \
12375 return; \
12376 } \
12377 } \
12378 while (0)
12379
037e8744
JB
12380/* Define shapes for instruction operands. The following mnemonic characters
12381 are used in this table:
5287ad62 12382
037e8744 12383 F - VFP S<n> register
5287ad62
JB
12384 D - Neon D<n> register
12385 Q - Neon Q<n> register
12386 I - Immediate
12387 S - Scalar
12388 R - ARM register
12389 L - D<n> register list
5f4273c7 12390
037e8744
JB
12391 This table is used to generate various data:
12392 - enumerations of the form NS_DDR to be used as arguments to
12393 neon_select_shape.
12394 - a table classifying shapes into single, double, quad, mixed.
5f4273c7 12395 - a table used to drive neon_select_shape. */
b99bd4ef 12396
037e8744
JB
12397#define NEON_SHAPE_DEF \
12398 X(3, (D, D, D), DOUBLE), \
12399 X(3, (Q, Q, Q), QUAD), \
12400 X(3, (D, D, I), DOUBLE), \
12401 X(3, (Q, Q, I), QUAD), \
12402 X(3, (D, D, S), DOUBLE), \
12403 X(3, (Q, Q, S), QUAD), \
12404 X(2, (D, D), DOUBLE), \
12405 X(2, (Q, Q), QUAD), \
12406 X(2, (D, S), DOUBLE), \
12407 X(2, (Q, S), QUAD), \
12408 X(2, (D, R), DOUBLE), \
12409 X(2, (Q, R), QUAD), \
12410 X(2, (D, I), DOUBLE), \
12411 X(2, (Q, I), QUAD), \
12412 X(3, (D, L, D), DOUBLE), \
12413 X(2, (D, Q), MIXED), \
12414 X(2, (Q, D), MIXED), \
12415 X(3, (D, Q, I), MIXED), \
12416 X(3, (Q, D, I), MIXED), \
12417 X(3, (Q, D, D), MIXED), \
12418 X(3, (D, Q, Q), MIXED), \
12419 X(3, (Q, Q, D), MIXED), \
12420 X(3, (Q, D, S), MIXED), \
12421 X(3, (D, Q, S), MIXED), \
12422 X(4, (D, D, D, I), DOUBLE), \
12423 X(4, (Q, Q, Q, I), QUAD), \
12424 X(2, (F, F), SINGLE), \
12425 X(3, (F, F, F), SINGLE), \
12426 X(2, (F, I), SINGLE), \
12427 X(2, (F, D), MIXED), \
12428 X(2, (D, F), MIXED), \
12429 X(3, (F, F, I), MIXED), \
12430 X(4, (R, R, F, F), SINGLE), \
12431 X(4, (F, F, R, R), SINGLE), \
12432 X(3, (D, R, R), DOUBLE), \
12433 X(3, (R, R, D), DOUBLE), \
12434 X(2, (S, R), SINGLE), \
12435 X(2, (R, S), SINGLE), \
12436 X(2, (F, R), SINGLE), \
12437 X(2, (R, F), SINGLE)
12438
12439#define S2(A,B) NS_##A##B
12440#define S3(A,B,C) NS_##A##B##C
12441#define S4(A,B,C,D) NS_##A##B##C##D
12442
12443#define X(N, L, C) S##N L
12444
5287ad62
JB
12445enum neon_shape
12446{
037e8744
JB
12447 NEON_SHAPE_DEF,
12448 NS_NULL
5287ad62 12449};
b99bd4ef 12450
037e8744
JB
12451#undef X
12452#undef S2
12453#undef S3
12454#undef S4
12455
12456enum neon_shape_class
12457{
12458 SC_SINGLE,
12459 SC_DOUBLE,
12460 SC_QUAD,
12461 SC_MIXED
12462};
12463
12464#define X(N, L, C) SC_##C
12465
12466static enum neon_shape_class neon_shape_class[] =
12467{
12468 NEON_SHAPE_DEF
12469};
12470
12471#undef X
12472
12473enum neon_shape_el
12474{
12475 SE_F,
12476 SE_D,
12477 SE_Q,
12478 SE_I,
12479 SE_S,
12480 SE_R,
12481 SE_L
12482};
12483
12484/* Register widths of above. */
12485static unsigned neon_shape_el_size[] =
12486{
12487 32,
12488 64,
12489 128,
12490 0,
12491 32,
12492 32,
12493 0
12494};
12495
12496struct neon_shape_info
12497{
12498 unsigned els;
12499 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
12500};
12501
12502#define S2(A,B) { SE_##A, SE_##B }
12503#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
12504#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
12505
12506#define X(N, L, C) { N, S##N L }
12507
12508static struct neon_shape_info neon_shape_tab[] =
12509{
12510 NEON_SHAPE_DEF
12511};
12512
12513#undef X
12514#undef S2
12515#undef S3
12516#undef S4
12517
5287ad62
JB
12518/* Bit masks used in type checking given instructions.
12519 'N_EQK' means the type must be the same as (or based on in some way) the key
12520 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
12521 set, various other bits can be set as well in order to modify the meaning of
12522 the type constraint. */
12523
12524enum neon_type_mask
12525{
8e79c3df
CM
12526 N_S8 = 0x0000001,
12527 N_S16 = 0x0000002,
12528 N_S32 = 0x0000004,
12529 N_S64 = 0x0000008,
12530 N_U8 = 0x0000010,
12531 N_U16 = 0x0000020,
12532 N_U32 = 0x0000040,
12533 N_U64 = 0x0000080,
12534 N_I8 = 0x0000100,
12535 N_I16 = 0x0000200,
12536 N_I32 = 0x0000400,
12537 N_I64 = 0x0000800,
12538 N_8 = 0x0001000,
12539 N_16 = 0x0002000,
12540 N_32 = 0x0004000,
12541 N_64 = 0x0008000,
12542 N_P8 = 0x0010000,
12543 N_P16 = 0x0020000,
12544 N_F16 = 0x0040000,
12545 N_F32 = 0x0080000,
12546 N_F64 = 0x0100000,
4f51b4bd 12547 N_P64 = 0x0200000,
c921be7d
NC
12548 N_KEY = 0x1000000, /* Key element (main type specifier). */
12549 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
8e79c3df 12550 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
91ff7894 12551 N_UNT = 0x8000000, /* Must be explicitly untyped. */
c921be7d
NC
12552 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
12553 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
12554 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
12555 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
12556 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
12557 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
12558 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
5287ad62 12559 N_UTYP = 0,
4f51b4bd 12560 N_MAX_NONSPECIAL = N_P64
5287ad62
JB
12561};
12562
dcbf9037
JB
12563#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
12564
5287ad62
JB
12565#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
12566#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
12567#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
12568#define N_SUF_32 (N_SU_32 | N_F32)
12569#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
12570#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F32)
12571
12572/* Pass this as the first type argument to neon_check_type to ignore types
12573 altogether. */
12574#define N_IGNORE_TYPE (N_KEY | N_EQK)
12575
037e8744
JB
12576/* Select a "shape" for the current instruction (describing register types or
12577 sizes) from a list of alternatives. Return NS_NULL if the current instruction
12578 doesn't fit. For non-polymorphic shapes, checking is usually done as a
12579 function of operand parsing, so this function doesn't need to be called.
12580 Shapes should be listed in order of decreasing length. */
5287ad62
JB
12581
12582static enum neon_shape
037e8744 12583neon_select_shape (enum neon_shape shape, ...)
5287ad62 12584{
037e8744
JB
12585 va_list ap;
12586 enum neon_shape first_shape = shape;
5287ad62
JB
12587
12588 /* Fix missing optional operands. FIXME: we don't know at this point how
12589 many arguments we should have, so this makes the assumption that we have
12590 > 1. This is true of all current Neon opcodes, I think, but may not be
12591 true in the future. */
12592 if (!inst.operands[1].present)
12593 inst.operands[1] = inst.operands[0];
12594
037e8744 12595 va_start (ap, shape);
5f4273c7 12596
21d799b5 12597 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
037e8744
JB
12598 {
12599 unsigned j;
12600 int matches = 1;
12601
12602 for (j = 0; j < neon_shape_tab[shape].els; j++)
12603 {
12604 if (!inst.operands[j].present)
12605 {
12606 matches = 0;
12607 break;
12608 }
12609
12610 switch (neon_shape_tab[shape].el[j])
12611 {
12612 case SE_F:
12613 if (!(inst.operands[j].isreg
12614 && inst.operands[j].isvec
12615 && inst.operands[j].issingle
12616 && !inst.operands[j].isquad))
12617 matches = 0;
12618 break;
12619
12620 case SE_D:
12621 if (!(inst.operands[j].isreg
12622 && inst.operands[j].isvec
12623 && !inst.operands[j].isquad
12624 && !inst.operands[j].issingle))
12625 matches = 0;
12626 break;
12627
12628 case SE_R:
12629 if (!(inst.operands[j].isreg
12630 && !inst.operands[j].isvec))
12631 matches = 0;
12632 break;
12633
12634 case SE_Q:
12635 if (!(inst.operands[j].isreg
12636 && inst.operands[j].isvec
12637 && inst.operands[j].isquad
12638 && !inst.operands[j].issingle))
12639 matches = 0;
12640 break;
12641
12642 case SE_I:
12643 if (!(!inst.operands[j].isreg
12644 && !inst.operands[j].isscalar))
12645 matches = 0;
12646 break;
12647
12648 case SE_S:
12649 if (!(!inst.operands[j].isreg
12650 && inst.operands[j].isscalar))
12651 matches = 0;
12652 break;
12653
12654 case SE_L:
12655 break;
12656 }
3fde54a2
JZ
12657 if (!matches)
12658 break;
037e8744 12659 }
ad6cec43
MGD
12660 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
12661 /* We've matched all the entries in the shape table, and we don't
12662 have any left over operands which have not been matched. */
5287ad62 12663 break;
037e8744 12664 }
5f4273c7 12665
037e8744 12666 va_end (ap);
5287ad62 12667
037e8744
JB
12668 if (shape == NS_NULL && first_shape != NS_NULL)
12669 first_error (_("invalid instruction shape"));
5287ad62 12670
037e8744
JB
12671 return shape;
12672}
5287ad62 12673
037e8744
JB
12674/* True if SHAPE is predominantly a quadword operation (most of the time, this
12675 means the Q bit should be set). */
12676
12677static int
12678neon_quad (enum neon_shape shape)
12679{
12680 return neon_shape_class[shape] == SC_QUAD;
5287ad62 12681}
037e8744 12682
5287ad62
JB
12683static void
12684neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
12685 unsigned *g_size)
12686{
12687 /* Allow modification to be made to types which are constrained to be
12688 based on the key element, based on bits set alongside N_EQK. */
12689 if ((typebits & N_EQK) != 0)
12690 {
12691 if ((typebits & N_HLF) != 0)
12692 *g_size /= 2;
12693 else if ((typebits & N_DBL) != 0)
12694 *g_size *= 2;
12695 if ((typebits & N_SGN) != 0)
12696 *g_type = NT_signed;
12697 else if ((typebits & N_UNS) != 0)
12698 *g_type = NT_unsigned;
12699 else if ((typebits & N_INT) != 0)
12700 *g_type = NT_integer;
12701 else if ((typebits & N_FLT) != 0)
12702 *g_type = NT_float;
dcbf9037
JB
12703 else if ((typebits & N_SIZ) != 0)
12704 *g_type = NT_untyped;
5287ad62
JB
12705 }
12706}
5f4273c7 12707
5287ad62
JB
12708/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
12709 operand type, i.e. the single type specified in a Neon instruction when it
12710 is the only one given. */
12711
12712static struct neon_type_el
12713neon_type_promote (struct neon_type_el *key, unsigned thisarg)
12714{
12715 struct neon_type_el dest = *key;
5f4273c7 12716
9c2799c2 12717 gas_assert ((thisarg & N_EQK) != 0);
5f4273c7 12718
5287ad62
JB
12719 neon_modify_type_size (thisarg, &dest.type, &dest.size);
12720
12721 return dest;
12722}
12723
12724/* Convert Neon type and size into compact bitmask representation. */
12725
12726static enum neon_type_mask
12727type_chk_of_el_type (enum neon_el_type type, unsigned size)
12728{
12729 switch (type)
12730 {
12731 case NT_untyped:
12732 switch (size)
12733 {
12734 case 8: return N_8;
12735 case 16: return N_16;
12736 case 32: return N_32;
12737 case 64: return N_64;
12738 default: ;
12739 }
12740 break;
12741
12742 case NT_integer:
12743 switch (size)
12744 {
12745 case 8: return N_I8;
12746 case 16: return N_I16;
12747 case 32: return N_I32;
12748 case 64: return N_I64;
12749 default: ;
12750 }
12751 break;
12752
12753 case NT_float:
037e8744
JB
12754 switch (size)
12755 {
8e79c3df 12756 case 16: return N_F16;
037e8744
JB
12757 case 32: return N_F32;
12758 case 64: return N_F64;
12759 default: ;
12760 }
5287ad62
JB
12761 break;
12762
12763 case NT_poly:
12764 switch (size)
12765 {
12766 case 8: return N_P8;
12767 case 16: return N_P16;
4f51b4bd 12768 case 64: return N_P64;
5287ad62
JB
12769 default: ;
12770 }
12771 break;
12772
12773 case NT_signed:
12774 switch (size)
12775 {
12776 case 8: return N_S8;
12777 case 16: return N_S16;
12778 case 32: return N_S32;
12779 case 64: return N_S64;
12780 default: ;
12781 }
12782 break;
12783
12784 case NT_unsigned:
12785 switch (size)
12786 {
12787 case 8: return N_U8;
12788 case 16: return N_U16;
12789 case 32: return N_U32;
12790 case 64: return N_U64;
12791 default: ;
12792 }
12793 break;
12794
12795 default: ;
12796 }
5f4273c7 12797
5287ad62
JB
12798 return N_UTYP;
12799}
12800
12801/* Convert compact Neon bitmask type representation to a type and size. Only
12802 handles the case where a single bit is set in the mask. */
12803
dcbf9037 12804static int
5287ad62
JB
12805el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
12806 enum neon_type_mask mask)
12807{
dcbf9037
JB
12808 if ((mask & N_EQK) != 0)
12809 return FAIL;
12810
5287ad62
JB
12811 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
12812 *size = 8;
c70a8987 12813 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16)) != 0)
5287ad62 12814 *size = 16;
dcbf9037 12815 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 12816 *size = 32;
4f51b4bd 12817 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
5287ad62 12818 *size = 64;
dcbf9037
JB
12819 else
12820 return FAIL;
12821
5287ad62
JB
12822 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
12823 *type = NT_signed;
dcbf9037 12824 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 12825 *type = NT_unsigned;
dcbf9037 12826 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 12827 *type = NT_integer;
dcbf9037 12828 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 12829 *type = NT_untyped;
4f51b4bd 12830 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
5287ad62 12831 *type = NT_poly;
c70a8987 12832 else if ((mask & (N_F16 | N_F32 | N_F64)) != 0)
5287ad62 12833 *type = NT_float;
dcbf9037
JB
12834 else
12835 return FAIL;
5f4273c7 12836
dcbf9037 12837 return SUCCESS;
5287ad62
JB
12838}
12839
12840/* Modify a bitmask of allowed types. This is only needed for type
12841 relaxation. */
12842
12843static unsigned
12844modify_types_allowed (unsigned allowed, unsigned mods)
12845{
12846 unsigned size;
12847 enum neon_el_type type;
12848 unsigned destmask;
12849 int i;
5f4273c7 12850
5287ad62 12851 destmask = 0;
5f4273c7 12852
5287ad62
JB
12853 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
12854 {
21d799b5
NC
12855 if (el_type_of_type_chk (&type, &size,
12856 (enum neon_type_mask) (allowed & i)) == SUCCESS)
dcbf9037
JB
12857 {
12858 neon_modify_type_size (mods, &type, &size);
12859 destmask |= type_chk_of_el_type (type, size);
12860 }
5287ad62 12861 }
5f4273c7 12862
5287ad62
JB
12863 return destmask;
12864}
12865
12866/* Check type and return type classification.
12867 The manual states (paraphrase): If one datatype is given, it indicates the
12868 type given in:
12869 - the second operand, if there is one
12870 - the operand, if there is no second operand
12871 - the result, if there are no operands.
12872 This isn't quite good enough though, so we use a concept of a "key" datatype
12873 which is set on a per-instruction basis, which is the one which matters when
12874 only one data type is written.
12875 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 12876 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
12877
12878static struct neon_type_el
12879neon_check_type (unsigned els, enum neon_shape ns, ...)
12880{
12881 va_list ap;
12882 unsigned i, pass, key_el = 0;
12883 unsigned types[NEON_MAX_TYPE_ELS];
12884 enum neon_el_type k_type = NT_invtype;
12885 unsigned k_size = -1u;
12886 struct neon_type_el badtype = {NT_invtype, -1};
12887 unsigned key_allowed = 0;
12888
12889 /* Optional registers in Neon instructions are always (not) in operand 1.
12890 Fill in the missing operand here, if it was omitted. */
12891 if (els > 1 && !inst.operands[1].present)
12892 inst.operands[1] = inst.operands[0];
12893
12894 /* Suck up all the varargs. */
12895 va_start (ap, ns);
12896 for (i = 0; i < els; i++)
12897 {
12898 unsigned thisarg = va_arg (ap, unsigned);
12899 if (thisarg == N_IGNORE_TYPE)
12900 {
12901 va_end (ap);
12902 return badtype;
12903 }
12904 types[i] = thisarg;
12905 if ((thisarg & N_KEY) != 0)
12906 key_el = i;
12907 }
12908 va_end (ap);
12909
dcbf9037
JB
12910 if (inst.vectype.elems > 0)
12911 for (i = 0; i < els; i++)
12912 if (inst.operands[i].vectype.type != NT_invtype)
12913 {
12914 first_error (_("types specified in both the mnemonic and operands"));
12915 return badtype;
12916 }
12917
5287ad62
JB
12918 /* Duplicate inst.vectype elements here as necessary.
12919 FIXME: No idea if this is exactly the same as the ARM assembler,
12920 particularly when an insn takes one register and one non-register
12921 operand. */
12922 if (inst.vectype.elems == 1 && els > 1)
12923 {
12924 unsigned j;
12925 inst.vectype.elems = els;
12926 inst.vectype.el[key_el] = inst.vectype.el[0];
12927 for (j = 0; j < els; j++)
dcbf9037
JB
12928 if (j != key_el)
12929 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12930 types[j]);
12931 }
12932 else if (inst.vectype.elems == 0 && els > 0)
12933 {
12934 unsigned j;
12935 /* No types were given after the mnemonic, so look for types specified
12936 after each operand. We allow some flexibility here; as long as the
12937 "key" operand has a type, we can infer the others. */
12938 for (j = 0; j < els; j++)
12939 if (inst.operands[j].vectype.type != NT_invtype)
12940 inst.vectype.el[j] = inst.operands[j].vectype;
12941
12942 if (inst.operands[key_el].vectype.type != NT_invtype)
5287ad62 12943 {
dcbf9037
JB
12944 for (j = 0; j < els; j++)
12945 if (inst.operands[j].vectype.type == NT_invtype)
12946 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
12947 types[j]);
12948 }
12949 else
12950 {
12951 first_error (_("operand types can't be inferred"));
12952 return badtype;
5287ad62
JB
12953 }
12954 }
12955 else if (inst.vectype.elems != els)
12956 {
dcbf9037 12957 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
12958 return badtype;
12959 }
12960
12961 for (pass = 0; pass < 2; pass++)
12962 {
12963 for (i = 0; i < els; i++)
12964 {
12965 unsigned thisarg = types[i];
12966 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
12967 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
12968 enum neon_el_type g_type = inst.vectype.el[i].type;
12969 unsigned g_size = inst.vectype.el[i].size;
12970
12971 /* Decay more-specific signed & unsigned types to sign-insensitive
12972 integer types if sign-specific variants are unavailable. */
12973 if ((g_type == NT_signed || g_type == NT_unsigned)
12974 && (types_allowed & N_SU_ALL) == 0)
12975 g_type = NT_integer;
12976
12977 /* If only untyped args are allowed, decay any more specific types to
12978 them. Some instructions only care about signs for some element
12979 sizes, so handle that properly. */
91ff7894
MGD
12980 if (((types_allowed & N_UNT) == 0)
12981 && ((g_size == 8 && (types_allowed & N_8) != 0)
12982 || (g_size == 16 && (types_allowed & N_16) != 0)
12983 || (g_size == 32 && (types_allowed & N_32) != 0)
12984 || (g_size == 64 && (types_allowed & N_64) != 0)))
5287ad62
JB
12985 g_type = NT_untyped;
12986
12987 if (pass == 0)
12988 {
12989 if ((thisarg & N_KEY) != 0)
12990 {
12991 k_type = g_type;
12992 k_size = g_size;
12993 key_allowed = thisarg & ~N_KEY;
12994 }
12995 }
12996 else
12997 {
037e8744
JB
12998 if ((thisarg & N_VFP) != 0)
12999 {
99b253c5
NC
13000 enum neon_shape_el regshape;
13001 unsigned regwidth, match;
13002
13003 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
13004 if (ns == NS_NULL)
13005 {
13006 first_error (_("invalid instruction shape"));
13007 return badtype;
13008 }
13009 regshape = neon_shape_tab[ns].el[i];
13010 regwidth = neon_shape_el_size[regshape];
037e8744
JB
13011
13012 /* In VFP mode, operands must match register widths. If we
13013 have a key operand, use its width, else use the width of
13014 the current operand. */
13015 if (k_size != -1u)
13016 match = k_size;
13017 else
13018 match = g_size;
13019
13020 if (regwidth != match)
13021 {
13022 first_error (_("operand size must match register width"));
13023 return badtype;
13024 }
13025 }
5f4273c7 13026
5287ad62
JB
13027 if ((thisarg & N_EQK) == 0)
13028 {
13029 unsigned given_type = type_chk_of_el_type (g_type, g_size);
13030
13031 if ((given_type & types_allowed) == 0)
13032 {
dcbf9037 13033 first_error (_("bad type in Neon instruction"));
5287ad62
JB
13034 return badtype;
13035 }
13036 }
13037 else
13038 {
13039 enum neon_el_type mod_k_type = k_type;
13040 unsigned mod_k_size = k_size;
13041 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
13042 if (g_type != mod_k_type || g_size != mod_k_size)
13043 {
dcbf9037 13044 first_error (_("inconsistent types in Neon instruction"));
5287ad62
JB
13045 return badtype;
13046 }
13047 }
13048 }
13049 }
13050 }
13051
13052 return inst.vectype.el[key_el];
13053}
13054
037e8744 13055/* Neon-style VFP instruction forwarding. */
5287ad62 13056
037e8744
JB
13057/* Thumb VFP instructions have 0xE in the condition field. */
13058
13059static void
13060do_vfp_cond_or_thumb (void)
5287ad62 13061{
88714cb8
DG
13062 inst.is_neon = 1;
13063
5287ad62 13064 if (thumb_mode)
037e8744 13065 inst.instruction |= 0xe0000000;
5287ad62 13066 else
037e8744 13067 inst.instruction |= inst.cond << 28;
5287ad62
JB
13068}
13069
037e8744
JB
13070/* Look up and encode a simple mnemonic, for use as a helper function for the
13071 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
13072 etc. It is assumed that operand parsing has already been done, and that the
13073 operands are in the form expected by the given opcode (this isn't necessarily
13074 the same as the form in which they were parsed, hence some massaging must
13075 take place before this function is called).
13076 Checks current arch version against that in the looked-up opcode. */
5287ad62 13077
037e8744
JB
13078static void
13079do_vfp_nsyn_opcode (const char *opname)
5287ad62 13080{
037e8744 13081 const struct asm_opcode *opcode;
5f4273c7 13082
21d799b5 13083 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
5287ad62 13084
037e8744
JB
13085 if (!opcode)
13086 abort ();
5287ad62 13087
037e8744
JB
13088 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
13089 thumb_mode ? *opcode->tvariant : *opcode->avariant),
13090 _(BAD_FPU));
5287ad62 13091
88714cb8
DG
13092 inst.is_neon = 1;
13093
037e8744
JB
13094 if (thumb_mode)
13095 {
13096 inst.instruction = opcode->tvalue;
13097 opcode->tencode ();
13098 }
13099 else
13100 {
13101 inst.instruction = (inst.cond << 28) | opcode->avalue;
13102 opcode->aencode ();
13103 }
13104}
5287ad62
JB
13105
13106static void
037e8744 13107do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 13108{
037e8744
JB
13109 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
13110
13111 if (rs == NS_FFF)
13112 {
13113 if (is_add)
13114 do_vfp_nsyn_opcode ("fadds");
13115 else
13116 do_vfp_nsyn_opcode ("fsubs");
13117 }
13118 else
13119 {
13120 if (is_add)
13121 do_vfp_nsyn_opcode ("faddd");
13122 else
13123 do_vfp_nsyn_opcode ("fsubd");
13124 }
13125}
13126
13127/* Check operand types to see if this is a VFP instruction, and if so call
13128 PFN (). */
13129
13130static int
13131try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
13132{
13133 enum neon_shape rs;
13134 struct neon_type_el et;
13135
13136 switch (args)
13137 {
13138 case 2:
13139 rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13140 et = neon_check_type (2, rs,
13141 N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
13142 break;
5f4273c7 13143
037e8744
JB
13144 case 3:
13145 rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13146 et = neon_check_type (3, rs,
13147 N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
13148 break;
13149
13150 default:
13151 abort ();
13152 }
13153
13154 if (et.type != NT_invtype)
13155 {
13156 pfn (rs);
13157 return SUCCESS;
13158 }
037e8744 13159
99b253c5 13160 inst.error = NULL;
037e8744
JB
13161 return FAIL;
13162}
13163
13164static void
13165do_vfp_nsyn_mla_mls (enum neon_shape rs)
13166{
13167 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
5f4273c7 13168
037e8744
JB
13169 if (rs == NS_FFF)
13170 {
13171 if (is_mla)
13172 do_vfp_nsyn_opcode ("fmacs");
13173 else
1ee69515 13174 do_vfp_nsyn_opcode ("fnmacs");
037e8744
JB
13175 }
13176 else
13177 {
13178 if (is_mla)
13179 do_vfp_nsyn_opcode ("fmacd");
13180 else
1ee69515 13181 do_vfp_nsyn_opcode ("fnmacd");
037e8744
JB
13182 }
13183}
13184
62f3b8c8
PB
13185static void
13186do_vfp_nsyn_fma_fms (enum neon_shape rs)
13187{
13188 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
13189
13190 if (rs == NS_FFF)
13191 {
13192 if (is_fma)
13193 do_vfp_nsyn_opcode ("ffmas");
13194 else
13195 do_vfp_nsyn_opcode ("ffnmas");
13196 }
13197 else
13198 {
13199 if (is_fma)
13200 do_vfp_nsyn_opcode ("ffmad");
13201 else
13202 do_vfp_nsyn_opcode ("ffnmad");
13203 }
13204}
13205
037e8744
JB
13206static void
13207do_vfp_nsyn_mul (enum neon_shape rs)
13208{
13209 if (rs == NS_FFF)
13210 do_vfp_nsyn_opcode ("fmuls");
13211 else
13212 do_vfp_nsyn_opcode ("fmuld");
13213}
13214
13215static void
13216do_vfp_nsyn_abs_neg (enum neon_shape rs)
13217{
13218 int is_neg = (inst.instruction & 0x80) != 0;
13219 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
13220
13221 if (rs == NS_FF)
13222 {
13223 if (is_neg)
13224 do_vfp_nsyn_opcode ("fnegs");
13225 else
13226 do_vfp_nsyn_opcode ("fabss");
13227 }
13228 else
13229 {
13230 if (is_neg)
13231 do_vfp_nsyn_opcode ("fnegd");
13232 else
13233 do_vfp_nsyn_opcode ("fabsd");
13234 }
13235}
13236
13237/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
13238 insns belong to Neon, and are handled elsewhere. */
13239
13240static void
13241do_vfp_nsyn_ldm_stm (int is_dbmode)
13242{
13243 int is_ldm = (inst.instruction & (1 << 20)) != 0;
13244 if (is_ldm)
13245 {
13246 if (is_dbmode)
13247 do_vfp_nsyn_opcode ("fldmdbs");
13248 else
13249 do_vfp_nsyn_opcode ("fldmias");
13250 }
13251 else
13252 {
13253 if (is_dbmode)
13254 do_vfp_nsyn_opcode ("fstmdbs");
13255 else
13256 do_vfp_nsyn_opcode ("fstmias");
13257 }
13258}
13259
037e8744
JB
13260static void
13261do_vfp_nsyn_sqrt (void)
13262{
13263 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13264 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13265
037e8744
JB
13266 if (rs == NS_FF)
13267 do_vfp_nsyn_opcode ("fsqrts");
13268 else
13269 do_vfp_nsyn_opcode ("fsqrtd");
13270}
13271
13272static void
13273do_vfp_nsyn_div (void)
13274{
13275 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13276 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13277 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13278
037e8744
JB
13279 if (rs == NS_FFF)
13280 do_vfp_nsyn_opcode ("fdivs");
13281 else
13282 do_vfp_nsyn_opcode ("fdivd");
13283}
13284
13285static void
13286do_vfp_nsyn_nmul (void)
13287{
13288 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
13289 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
13290 N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13291
037e8744
JB
13292 if (rs == NS_FFF)
13293 {
88714cb8 13294 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13295 do_vfp_sp_dyadic ();
13296 }
13297 else
13298 {
88714cb8 13299 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13300 do_vfp_dp_rd_rn_rm ();
13301 }
13302 do_vfp_cond_or_thumb ();
13303}
13304
13305static void
13306do_vfp_nsyn_cmp (void)
13307{
13308 if (inst.operands[1].isreg)
13309 {
13310 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
13311 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
5f4273c7 13312
037e8744
JB
13313 if (rs == NS_FF)
13314 {
88714cb8 13315 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13316 do_vfp_sp_monadic ();
13317 }
13318 else
13319 {
88714cb8 13320 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13321 do_vfp_dp_rd_rm ();
13322 }
13323 }
13324 else
13325 {
13326 enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
13327 neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
13328
13329 switch (inst.instruction & 0x0fffffff)
13330 {
13331 case N_MNEM_vcmp:
13332 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
13333 break;
13334 case N_MNEM_vcmpe:
13335 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
13336 break;
13337 default:
13338 abort ();
13339 }
5f4273c7 13340
037e8744
JB
13341 if (rs == NS_FI)
13342 {
88714cb8 13343 NEON_ENCODE (SINGLE, inst);
037e8744
JB
13344 do_vfp_sp_compare_z ();
13345 }
13346 else
13347 {
88714cb8 13348 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
13349 do_vfp_dp_rd ();
13350 }
13351 }
13352 do_vfp_cond_or_thumb ();
13353}
13354
13355static void
13356nsyn_insert_sp (void)
13357{
13358 inst.operands[1] = inst.operands[0];
13359 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
fdfde340 13360 inst.operands[0].reg = REG_SP;
037e8744
JB
13361 inst.operands[0].isreg = 1;
13362 inst.operands[0].writeback = 1;
13363 inst.operands[0].present = 1;
13364}
13365
13366static void
13367do_vfp_nsyn_push (void)
13368{
13369 nsyn_insert_sp ();
13370 if (inst.operands[1].issingle)
13371 do_vfp_nsyn_opcode ("fstmdbs");
13372 else
13373 do_vfp_nsyn_opcode ("fstmdbd");
13374}
13375
13376static void
13377do_vfp_nsyn_pop (void)
13378{
13379 nsyn_insert_sp ();
13380 if (inst.operands[1].issingle)
22b5b651 13381 do_vfp_nsyn_opcode ("fldmias");
037e8744 13382 else
22b5b651 13383 do_vfp_nsyn_opcode ("fldmiad");
037e8744
JB
13384}
13385
13386/* Fix up Neon data-processing instructions, ORing in the correct bits for
13387 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
13388
88714cb8
DG
13389static void
13390neon_dp_fixup (struct arm_it* insn)
037e8744 13391{
88714cb8
DG
13392 unsigned int i = insn->instruction;
13393 insn->is_neon = 1;
13394
037e8744
JB
13395 if (thumb_mode)
13396 {
13397 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
13398 if (i & (1 << 24))
13399 i |= 1 << 28;
5f4273c7 13400
037e8744 13401 i &= ~(1 << 24);
5f4273c7 13402
037e8744
JB
13403 i |= 0xef000000;
13404 }
13405 else
13406 i |= 0xf2000000;
5f4273c7 13407
88714cb8 13408 insn->instruction = i;
037e8744
JB
13409}
13410
13411/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
13412 (0, 1, 2, 3). */
13413
13414static unsigned
13415neon_logbits (unsigned x)
13416{
13417 return ffs (x) - 4;
13418}
13419
13420#define LOW4(R) ((R) & 0xf)
13421#define HI1(R) (((R) >> 4) & 1)
13422
13423/* Encode insns with bit pattern:
13424
13425 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
13426 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
5f4273c7 13427
037e8744
JB
13428 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
13429 different meaning for some instruction. */
13430
13431static void
13432neon_three_same (int isquad, int ubit, int size)
13433{
13434 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13435 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13436 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
13437 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
13438 inst.instruction |= LOW4 (inst.operands[2].reg);
13439 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
13440 inst.instruction |= (isquad != 0) << 6;
13441 inst.instruction |= (ubit != 0) << 24;
13442 if (size != -1)
13443 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 13444
88714cb8 13445 neon_dp_fixup (&inst);
037e8744
JB
13446}
13447
13448/* Encode instructions of the form:
13449
13450 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
13451 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
13452
13453 Don't write size if SIZE == -1. */
13454
13455static void
13456neon_two_same (int qbit, int ubit, int size)
13457{
13458 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13459 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13460 inst.instruction |= LOW4 (inst.operands[1].reg);
13461 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13462 inst.instruction |= (qbit != 0) << 6;
13463 inst.instruction |= (ubit != 0) << 24;
13464
13465 if (size != -1)
13466 inst.instruction |= neon_logbits (size) << 18;
13467
88714cb8 13468 neon_dp_fixup (&inst);
5287ad62
JB
13469}
13470
13471/* Neon instruction encoders, in approximate order of appearance. */
13472
13473static void
13474do_neon_dyadic_i_su (void)
13475{
037e8744 13476 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13477 struct neon_type_el et = neon_check_type (3, rs,
13478 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 13479 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13480}
13481
13482static void
13483do_neon_dyadic_i64_su (void)
13484{
037e8744 13485 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13486 struct neon_type_el et = neon_check_type (3, rs,
13487 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 13488 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13489}
13490
13491static void
13492neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
13493 unsigned immbits)
13494{
13495 unsigned size = et.size >> 3;
13496 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13497 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13498 inst.instruction |= LOW4 (inst.operands[1].reg);
13499 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
13500 inst.instruction |= (isquad != 0) << 6;
13501 inst.instruction |= immbits << 16;
13502 inst.instruction |= (size >> 3) << 7;
13503 inst.instruction |= (size & 0x7) << 19;
13504 if (write_ubit)
13505 inst.instruction |= (uval != 0) << 24;
13506
88714cb8 13507 neon_dp_fixup (&inst);
5287ad62
JB
13508}
13509
13510static void
13511do_neon_shl_imm (void)
13512{
13513 if (!inst.operands[2].isreg)
13514 {
037e8744 13515 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13516 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
88714cb8 13517 NEON_ENCODE (IMMED, inst);
037e8744 13518 neon_imm_shift (FALSE, 0, neon_quad (rs), et, inst.operands[2].imm);
5287ad62
JB
13519 }
13520 else
13521 {
037e8744 13522 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13523 struct neon_type_el et = neon_check_type (3, rs,
13524 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13525 unsigned int tmp;
13526
13527 /* VSHL/VQSHL 3-register variants have syntax such as:
13528 vshl.xx Dd, Dm, Dn
13529 whereas other 3-register operations encoded by neon_three_same have
13530 syntax like:
13531 vadd.xx Dd, Dn, Dm
13532 (i.e. with Dn & Dm reversed). Swap operands[1].reg and operands[2].reg
13533 here. */
13534 tmp = inst.operands[2].reg;
13535 inst.operands[2].reg = inst.operands[1].reg;
13536 inst.operands[1].reg = tmp;
88714cb8 13537 NEON_ENCODE (INTEGER, inst);
037e8744 13538 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13539 }
13540}
13541
13542static void
13543do_neon_qshl_imm (void)
13544{
13545 if (!inst.operands[2].isreg)
13546 {
037e8744 13547 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 13548 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
627907b7 13549
88714cb8 13550 NEON_ENCODE (IMMED, inst);
037e8744 13551 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
13552 inst.operands[2].imm);
13553 }
13554 else
13555 {
037e8744 13556 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13557 struct neon_type_el et = neon_check_type (3, rs,
13558 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
13559 unsigned int tmp;
13560
13561 /* See note in do_neon_shl_imm. */
13562 tmp = inst.operands[2].reg;
13563 inst.operands[2].reg = inst.operands[1].reg;
13564 inst.operands[1].reg = tmp;
88714cb8 13565 NEON_ENCODE (INTEGER, inst);
037e8744 13566 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
13567 }
13568}
13569
627907b7
JB
13570static void
13571do_neon_rshl (void)
13572{
13573 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
13574 struct neon_type_el et = neon_check_type (3, rs,
13575 N_EQK, N_EQK, N_SU_ALL | N_KEY);
13576 unsigned int tmp;
13577
13578 tmp = inst.operands[2].reg;
13579 inst.operands[2].reg = inst.operands[1].reg;
13580 inst.operands[1].reg = tmp;
13581 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
13582}
13583
5287ad62
JB
13584static int
13585neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
13586{
036dc3f7
PB
13587 /* Handle .I8 pseudo-instructions. */
13588 if (size == 8)
5287ad62 13589 {
5287ad62
JB
13590 /* Unfortunately, this will make everything apart from zero out-of-range.
13591 FIXME is this the intended semantics? There doesn't seem much point in
13592 accepting .I8 if so. */
13593 immediate |= immediate << 8;
13594 size = 16;
036dc3f7
PB
13595 }
13596
13597 if (size >= 32)
13598 {
13599 if (immediate == (immediate & 0x000000ff))
13600 {
13601 *immbits = immediate;
13602 return 0x1;
13603 }
13604 else if (immediate == (immediate & 0x0000ff00))
13605 {
13606 *immbits = immediate >> 8;
13607 return 0x3;
13608 }
13609 else if (immediate == (immediate & 0x00ff0000))
13610 {
13611 *immbits = immediate >> 16;
13612 return 0x5;
13613 }
13614 else if (immediate == (immediate & 0xff000000))
13615 {
13616 *immbits = immediate >> 24;
13617 return 0x7;
13618 }
13619 if ((immediate & 0xffff) != (immediate >> 16))
13620 goto bad_immediate;
13621 immediate &= 0xffff;
5287ad62
JB
13622 }
13623
13624 if (immediate == (immediate & 0x000000ff))
13625 {
13626 *immbits = immediate;
036dc3f7 13627 return 0x9;
5287ad62
JB
13628 }
13629 else if (immediate == (immediate & 0x0000ff00))
13630 {
13631 *immbits = immediate >> 8;
036dc3f7 13632 return 0xb;
5287ad62
JB
13633 }
13634
13635 bad_immediate:
dcbf9037 13636 first_error (_("immediate value out of range"));
5287ad62
JB
13637 return FAIL;
13638}
13639
13640/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
13641 A, B, C, D. */
13642
13643static int
13644neon_bits_same_in_bytes (unsigned imm)
13645{
13646 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
13647 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
13648 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
13649 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
13650}
13651
13652/* For immediate of above form, return 0bABCD. */
13653
13654static unsigned
13655neon_squash_bits (unsigned imm)
13656{
13657 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
13658 | ((imm & 0x01000000) >> 21);
13659}
13660
136da414 13661/* Compress quarter-float representation to 0b...000 abcdefgh. */
5287ad62
JB
13662
13663static unsigned
13664neon_qfloat_bits (unsigned imm)
13665{
136da414 13666 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
5287ad62
JB
13667}
13668
13669/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
13670 the instruction. *OP is passed as the initial value of the op field, and
13671 may be set to a different value depending on the constant (i.e.
13672 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
5f4273c7 13673 MVN). If the immediate looks like a repeated pattern then also
036dc3f7 13674 try smaller element sizes. */
5287ad62
JB
13675
13676static int
c96612cc
JB
13677neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
13678 unsigned *immbits, int *op, int size,
13679 enum neon_el_type type)
5287ad62 13680{
c96612cc
JB
13681 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
13682 float. */
13683 if (type == NT_float && !float_p)
13684 return FAIL;
13685
136da414
JB
13686 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
13687 {
13688 if (size != 32 || *op == 1)
13689 return FAIL;
13690 *immbits = neon_qfloat_bits (immlo);
13691 return 0xf;
13692 }
036dc3f7
PB
13693
13694 if (size == 64)
5287ad62 13695 {
036dc3f7
PB
13696 if (neon_bits_same_in_bytes (immhi)
13697 && neon_bits_same_in_bytes (immlo))
13698 {
13699 if (*op == 1)
13700 return FAIL;
13701 *immbits = (neon_squash_bits (immhi) << 4)
13702 | neon_squash_bits (immlo);
13703 *op = 1;
13704 return 0xe;
13705 }
13706
13707 if (immhi != immlo)
13708 return FAIL;
5287ad62 13709 }
036dc3f7
PB
13710
13711 if (size >= 32)
5287ad62 13712 {
036dc3f7
PB
13713 if (immlo == (immlo & 0x000000ff))
13714 {
13715 *immbits = immlo;
13716 return 0x0;
13717 }
13718 else if (immlo == (immlo & 0x0000ff00))
13719 {
13720 *immbits = immlo >> 8;
13721 return 0x2;
13722 }
13723 else if (immlo == (immlo & 0x00ff0000))
13724 {
13725 *immbits = immlo >> 16;
13726 return 0x4;
13727 }
13728 else if (immlo == (immlo & 0xff000000))
13729 {
13730 *immbits = immlo >> 24;
13731 return 0x6;
13732 }
13733 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
13734 {
13735 *immbits = (immlo >> 8) & 0xff;
13736 return 0xc;
13737 }
13738 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
13739 {
13740 *immbits = (immlo >> 16) & 0xff;
13741 return 0xd;
13742 }
13743
13744 if ((immlo & 0xffff) != (immlo >> 16))
13745 return FAIL;
13746 immlo &= 0xffff;
5287ad62 13747 }
036dc3f7
PB
13748
13749 if (size >= 16)
5287ad62 13750 {
036dc3f7
PB
13751 if (immlo == (immlo & 0x000000ff))
13752 {
13753 *immbits = immlo;
13754 return 0x8;
13755 }
13756 else if (immlo == (immlo & 0x0000ff00))
13757 {
13758 *immbits = immlo >> 8;
13759 return 0xa;
13760 }
13761
13762 if ((immlo & 0xff) != (immlo >> 8))
13763 return FAIL;
13764 immlo &= 0xff;
5287ad62 13765 }
036dc3f7
PB
13766
13767 if (immlo == (immlo & 0x000000ff))
5287ad62 13768 {
036dc3f7
PB
13769 /* Don't allow MVN with 8-bit immediate. */
13770 if (*op == 1)
13771 return FAIL;
13772 *immbits = immlo;
13773 return 0xe;
5287ad62 13774 }
5287ad62
JB
13775
13776 return FAIL;
13777}
13778
13779/* Write immediate bits [7:0] to the following locations:
13780
13781 |28/24|23 19|18 16|15 4|3 0|
13782 | 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|
13783
13784 This function is used by VMOV/VMVN/VORR/VBIC. */
13785
13786static void
13787neon_write_immbits (unsigned immbits)
13788{
13789 inst.instruction |= immbits & 0xf;
13790 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
13791 inst.instruction |= ((immbits >> 7) & 0x1) << 24;
13792}
13793
13794/* Invert low-order SIZE bits of XHI:XLO. */
13795
13796static void
13797neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
13798{
13799 unsigned immlo = xlo ? *xlo : 0;
13800 unsigned immhi = xhi ? *xhi : 0;
13801
13802 switch (size)
13803 {
13804 case 8:
13805 immlo = (~immlo) & 0xff;
13806 break;
13807
13808 case 16:
13809 immlo = (~immlo) & 0xffff;
13810 break;
13811
13812 case 64:
13813 immhi = (~immhi) & 0xffffffff;
13814 /* fall through. */
13815
13816 case 32:
13817 immlo = (~immlo) & 0xffffffff;
13818 break;
13819
13820 default:
13821 abort ();
13822 }
13823
13824 if (xlo)
13825 *xlo = immlo;
13826
13827 if (xhi)
13828 *xhi = immhi;
13829}
13830
13831static void
13832do_neon_logic (void)
13833{
13834 if (inst.operands[2].present && inst.operands[2].isreg)
13835 {
037e8744 13836 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
13837 neon_check_type (3, rs, N_IGNORE_TYPE);
13838 /* U bit and size field were set as part of the bitmask. */
88714cb8 13839 NEON_ENCODE (INTEGER, inst);
037e8744 13840 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13841 }
13842 else
13843 {
4316f0d2
DG
13844 const int three_ops_form = (inst.operands[2].present
13845 && !inst.operands[2].isreg);
13846 const int immoperand = (three_ops_form ? 2 : 1);
13847 enum neon_shape rs = (three_ops_form
13848 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
13849 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
037e8744
JB
13850 struct neon_type_el et = neon_check_type (2, rs,
13851 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
21d799b5 13852 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
5287ad62
JB
13853 unsigned immbits;
13854 int cmode;
5f4273c7 13855
5287ad62
JB
13856 if (et.type == NT_invtype)
13857 return;
5f4273c7 13858
4316f0d2
DG
13859 if (three_ops_form)
13860 constraint (inst.operands[0].reg != inst.operands[1].reg,
13861 _("first and second operands shall be the same register"));
13862
88714cb8 13863 NEON_ENCODE (IMMED, inst);
5287ad62 13864
4316f0d2 13865 immbits = inst.operands[immoperand].imm;
036dc3f7
PB
13866 if (et.size == 64)
13867 {
13868 /* .i64 is a pseudo-op, so the immediate must be a repeating
13869 pattern. */
4316f0d2
DG
13870 if (immbits != (inst.operands[immoperand].regisimm ?
13871 inst.operands[immoperand].reg : 0))
036dc3f7
PB
13872 {
13873 /* Set immbits to an invalid constant. */
13874 immbits = 0xdeadbeef;
13875 }
13876 }
13877
5287ad62
JB
13878 switch (opcode)
13879 {
13880 case N_MNEM_vbic:
036dc3f7 13881 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
5287ad62 13882 break;
5f4273c7 13883
5287ad62 13884 case N_MNEM_vorr:
036dc3f7 13885 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
5287ad62 13886 break;
5f4273c7 13887
5287ad62
JB
13888 case N_MNEM_vand:
13889 /* Pseudo-instruction for VBIC. */
5287ad62
JB
13890 neon_invert_size (&immbits, 0, et.size);
13891 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13892 break;
5f4273c7 13893
5287ad62
JB
13894 case N_MNEM_vorn:
13895 /* Pseudo-instruction for VORR. */
5287ad62
JB
13896 neon_invert_size (&immbits, 0, et.size);
13897 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
13898 break;
5f4273c7 13899
5287ad62
JB
13900 default:
13901 abort ();
13902 }
13903
13904 if (cmode == FAIL)
13905 return;
13906
037e8744 13907 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
13908 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13909 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13910 inst.instruction |= cmode << 8;
13911 neon_write_immbits (immbits);
5f4273c7 13912
88714cb8 13913 neon_dp_fixup (&inst);
5287ad62
JB
13914 }
13915}
13916
13917static void
13918do_neon_bitfield (void)
13919{
037e8744 13920 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 13921 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 13922 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13923}
13924
13925static void
dcbf9037
JB
13926neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
13927 unsigned destbits)
5287ad62 13928{
037e8744 13929 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037
JB
13930 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
13931 types | N_KEY);
5287ad62
JB
13932 if (et.type == NT_float)
13933 {
88714cb8 13934 NEON_ENCODE (FLOAT, inst);
037e8744 13935 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
13936 }
13937 else
13938 {
88714cb8 13939 NEON_ENCODE (INTEGER, inst);
037e8744 13940 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
13941 }
13942}
13943
13944static void
13945do_neon_dyadic_if_su (void)
13946{
dcbf9037 13947 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13948}
13949
13950static void
13951do_neon_dyadic_if_su_d (void)
13952{
13953 /* This version only allow D registers, but that constraint is enforced during
13954 operand parsing so we don't need to do anything extra here. */
dcbf9037 13955 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
13956}
13957
5287ad62
JB
13958static void
13959do_neon_dyadic_if_i_d (void)
13960{
428e3f1f
PB
13961 /* The "untyped" case can't happen. Do this to stop the "U" bit being
13962 affected if we specify unsigned args. */
13963 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
13964}
13965
037e8744
JB
13966enum vfp_or_neon_is_neon_bits
13967{
13968 NEON_CHECK_CC = 1,
73924fbc
MGD
13969 NEON_CHECK_ARCH = 2,
13970 NEON_CHECK_ARCH8 = 4
037e8744
JB
13971};
13972
13973/* Call this function if an instruction which may have belonged to the VFP or
13974 Neon instruction sets, but turned out to be a Neon instruction (due to the
13975 operand types involved, etc.). We have to check and/or fix-up a couple of
13976 things:
13977
13978 - Make sure the user hasn't attempted to make a Neon instruction
13979 conditional.
13980 - Alter the value in the condition code field if necessary.
13981 - Make sure that the arch supports Neon instructions.
13982
13983 Which of these operations take place depends on bits from enum
13984 vfp_or_neon_is_neon_bits.
13985
13986 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
13987 current instruction's condition is COND_ALWAYS, the condition field is
13988 changed to inst.uncond_value. This is necessary because instructions shared
13989 between VFP and Neon may be conditional for the VFP variants only, and the
13990 unconditional Neon version must have, e.g., 0xF in the condition field. */
13991
13992static int
13993vfp_or_neon_is_neon (unsigned check)
13994{
13995 /* Conditions are always legal in Thumb mode (IT blocks). */
13996 if (!thumb_mode && (check & NEON_CHECK_CC))
13997 {
13998 if (inst.cond != COND_ALWAYS)
13999 {
14000 first_error (_(BAD_COND));
14001 return FAIL;
14002 }
14003 if (inst.uncond_value != -1)
14004 inst.instruction |= inst.uncond_value << 28;
14005 }
5f4273c7 14006
037e8744 14007 if ((check & NEON_CHECK_ARCH)
73924fbc
MGD
14008 && !mark_feature_used (&fpu_neon_ext_v1))
14009 {
14010 first_error (_(BAD_FPU));
14011 return FAIL;
14012 }
14013
14014 if ((check & NEON_CHECK_ARCH8)
14015 && !mark_feature_used (&fpu_neon_ext_armv8))
037e8744
JB
14016 {
14017 first_error (_(BAD_FPU));
14018 return FAIL;
14019 }
5f4273c7 14020
037e8744
JB
14021 return SUCCESS;
14022}
14023
5287ad62
JB
14024static void
14025do_neon_addsub_if_i (void)
14026{
037e8744
JB
14027 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
14028 return;
14029
14030 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14031 return;
14032
5287ad62
JB
14033 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14034 affected if we specify unsigned args. */
dcbf9037 14035 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
14036}
14037
14038/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
14039 result to be:
14040 V<op> A,B (A is operand 0, B is operand 2)
14041 to mean:
14042 V<op> A,B,A
14043 not:
14044 V<op> A,B,B
14045 so handle that case specially. */
14046
14047static void
14048neon_exchange_operands (void)
14049{
14050 void *scratch = alloca (sizeof (inst.operands[0]));
14051 if (inst.operands[1].present)
14052 {
14053 /* Swap operands[1] and operands[2]. */
14054 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
14055 inst.operands[1] = inst.operands[2];
14056 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
14057 }
14058 else
14059 {
14060 inst.operands[1] = inst.operands[2];
14061 inst.operands[2] = inst.operands[0];
14062 }
14063}
14064
14065static void
14066neon_compare (unsigned regtypes, unsigned immtypes, int invert)
14067{
14068 if (inst.operands[2].isreg)
14069 {
14070 if (invert)
14071 neon_exchange_operands ();
dcbf9037 14072 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
14073 }
14074 else
14075 {
037e8744 14076 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037
JB
14077 struct neon_type_el et = neon_check_type (2, rs,
14078 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62 14079
88714cb8 14080 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14081 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14082 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14083 inst.instruction |= LOW4 (inst.operands[1].reg);
14084 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14085 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14086 inst.instruction |= (et.type == NT_float) << 10;
14087 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14088
88714cb8 14089 neon_dp_fixup (&inst);
5287ad62
JB
14090 }
14091}
14092
14093static void
14094do_neon_cmp (void)
14095{
14096 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
14097}
14098
14099static void
14100do_neon_cmp_inv (void)
14101{
14102 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
14103}
14104
14105static void
14106do_neon_ceq (void)
14107{
14108 neon_compare (N_IF_32, N_IF_32, FALSE);
14109}
14110
14111/* For multiply instructions, we have the possibility of 16-bit or 32-bit
14112 scalars, which are encoded in 5 bits, M : Rm.
14113 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
14114 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
14115 index in M. */
14116
14117static unsigned
14118neon_scalar_for_mul (unsigned scalar, unsigned elsize)
14119{
dcbf9037
JB
14120 unsigned regno = NEON_SCALAR_REG (scalar);
14121 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
14122
14123 switch (elsize)
14124 {
14125 case 16:
14126 if (regno > 7 || elno > 3)
14127 goto bad_scalar;
14128 return regno | (elno << 3);
5f4273c7 14129
5287ad62
JB
14130 case 32:
14131 if (regno > 15 || elno > 1)
14132 goto bad_scalar;
14133 return regno | (elno << 4);
14134
14135 default:
14136 bad_scalar:
dcbf9037 14137 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
14138 }
14139
14140 return 0;
14141}
14142
14143/* Encode multiply / multiply-accumulate scalar instructions. */
14144
14145static void
14146neon_mul_mac (struct neon_type_el et, int ubit)
14147{
dcbf9037
JB
14148 unsigned scalar;
14149
14150 /* Give a more helpful error message if we have an invalid type. */
14151 if (et.type == NT_invtype)
14152 return;
5f4273c7 14153
dcbf9037 14154 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
14155 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14156 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14157 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14158 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14159 inst.instruction |= LOW4 (scalar);
14160 inst.instruction |= HI1 (scalar) << 5;
14161 inst.instruction |= (et.type == NT_float) << 8;
14162 inst.instruction |= neon_logbits (et.size) << 20;
14163 inst.instruction |= (ubit != 0) << 24;
14164
88714cb8 14165 neon_dp_fixup (&inst);
5287ad62
JB
14166}
14167
14168static void
14169do_neon_mac_maybe_scalar (void)
14170{
037e8744
JB
14171 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
14172 return;
14173
14174 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14175 return;
14176
5287ad62
JB
14177 if (inst.operands[2].isscalar)
14178 {
037e8744 14179 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
14180 struct neon_type_el et = neon_check_type (3, rs,
14181 N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
88714cb8 14182 NEON_ENCODE (SCALAR, inst);
037e8744 14183 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14184 }
14185 else
428e3f1f
PB
14186 {
14187 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14188 affected if we specify unsigned args. */
14189 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14190 }
5287ad62
JB
14191}
14192
62f3b8c8
PB
14193static void
14194do_neon_fmac (void)
14195{
14196 if (try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
14197 return;
14198
14199 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14200 return;
14201
14202 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
14203}
14204
5287ad62
JB
14205static void
14206do_neon_tst (void)
14207{
037e8744 14208 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14209 struct neon_type_el et = neon_check_type (3, rs,
14210 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 14211 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14212}
14213
14214/* VMUL with 3 registers allows the P8 type. The scalar version supports the
14215 same types as the MAC equivalents. The polynomial type for this instruction
14216 is encoded the same as the integer type. */
14217
14218static void
14219do_neon_mul (void)
14220{
037e8744
JB
14221 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
14222 return;
14223
14224 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14225 return;
14226
5287ad62
JB
14227 if (inst.operands[2].isscalar)
14228 do_neon_mac_maybe_scalar ();
14229 else
dcbf9037 14230 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
5287ad62
JB
14231}
14232
14233static void
14234do_neon_qdmulh (void)
14235{
14236 if (inst.operands[2].isscalar)
14237 {
037e8744 14238 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
14239 struct neon_type_el et = neon_check_type (3, rs,
14240 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14241 NEON_ENCODE (SCALAR, inst);
037e8744 14242 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
14243 }
14244 else
14245 {
037e8744 14246 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14247 struct neon_type_el et = neon_check_type (3, rs,
14248 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 14249 NEON_ENCODE (INTEGER, inst);
5287ad62 14250 /* The U bit (rounding) comes from bit mask. */
037e8744 14251 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
14252 }
14253}
14254
14255static void
14256do_neon_fcmp_absolute (void)
14257{
037e8744 14258 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14259 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
14260 /* Size field comes from bit mask. */
037e8744 14261 neon_three_same (neon_quad (rs), 1, -1);
5287ad62
JB
14262}
14263
14264static void
14265do_neon_fcmp_absolute_inv (void)
14266{
14267 neon_exchange_operands ();
14268 do_neon_fcmp_absolute ();
14269}
14270
14271static void
14272do_neon_step (void)
14273{
037e8744 14274 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14275 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
037e8744 14276 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14277}
14278
14279static void
14280do_neon_abs_neg (void)
14281{
037e8744
JB
14282 enum neon_shape rs;
14283 struct neon_type_el et;
5f4273c7 14284
037e8744
JB
14285 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
14286 return;
14287
14288 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14289 return;
14290
14291 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
14292 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
5f4273c7 14293
5287ad62
JB
14294 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14295 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14296 inst.instruction |= LOW4 (inst.operands[1].reg);
14297 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14298 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14299 inst.instruction |= (et.type == NT_float) << 10;
14300 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14301
88714cb8 14302 neon_dp_fixup (&inst);
5287ad62
JB
14303}
14304
14305static void
14306do_neon_sli (void)
14307{
037e8744 14308 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14309 struct neon_type_el et = neon_check_type (2, rs,
14310 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14311 int imm = inst.operands[2].imm;
14312 constraint (imm < 0 || (unsigned)imm >= et.size,
14313 _("immediate out of range for insert"));
037e8744 14314 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14315}
14316
14317static void
14318do_neon_sri (void)
14319{
037e8744 14320 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14321 struct neon_type_el et = neon_check_type (2, rs,
14322 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
14323 int imm = inst.operands[2].imm;
14324 constraint (imm < 1 || (unsigned)imm > et.size,
14325 _("immediate out of range for insert"));
037e8744 14326 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
14327}
14328
14329static void
14330do_neon_qshlu_imm (void)
14331{
037e8744 14332 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
14333 struct neon_type_el et = neon_check_type (2, rs,
14334 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
14335 int imm = inst.operands[2].imm;
14336 constraint (imm < 0 || (unsigned)imm >= et.size,
14337 _("immediate out of range for shift"));
14338 /* Only encodes the 'U present' variant of the instruction.
14339 In this case, signed types have OP (bit 8) set to 0.
14340 Unsigned types have OP set to 1. */
14341 inst.instruction |= (et.type == NT_unsigned) << 8;
14342 /* The rest of the bits are the same as other immediate shifts. */
037e8744 14343 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14344}
14345
14346static void
14347do_neon_qmovn (void)
14348{
14349 struct neon_type_el et = neon_check_type (2, NS_DQ,
14350 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14351 /* Saturating move where operands can be signed or unsigned, and the
14352 destination has the same signedness. */
88714cb8 14353 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14354 if (et.type == NT_unsigned)
14355 inst.instruction |= 0xc0;
14356 else
14357 inst.instruction |= 0x80;
14358 neon_two_same (0, 1, et.size / 2);
14359}
14360
14361static void
14362do_neon_qmovun (void)
14363{
14364 struct neon_type_el et = neon_check_type (2, NS_DQ,
14365 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14366 /* Saturating move with unsigned results. Operands must be signed. */
88714cb8 14367 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14368 neon_two_same (0, 1, et.size / 2);
14369}
14370
14371static void
14372do_neon_rshift_sat_narrow (void)
14373{
14374 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14375 or unsigned. If operands are unsigned, results must also be unsigned. */
14376 struct neon_type_el et = neon_check_type (2, NS_DQI,
14377 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
14378 int imm = inst.operands[2].imm;
14379 /* This gets the bounds check, size encoding and immediate bits calculation
14380 right. */
14381 et.size /= 2;
5f4273c7 14382
5287ad62
JB
14383 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
14384 VQMOVN.I<size> <Dd>, <Qm>. */
14385 if (imm == 0)
14386 {
14387 inst.operands[2].present = 0;
14388 inst.instruction = N_MNEM_vqmovn;
14389 do_neon_qmovn ();
14390 return;
14391 }
5f4273c7 14392
5287ad62
JB
14393 constraint (imm < 1 || (unsigned)imm > et.size,
14394 _("immediate out of range"));
14395 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
14396}
14397
14398static void
14399do_neon_rshift_sat_narrow_u (void)
14400{
14401 /* FIXME: Types for narrowing. If operands are signed, results can be signed
14402 or unsigned. If operands are unsigned, results must also be unsigned. */
14403 struct neon_type_el et = neon_check_type (2, NS_DQI,
14404 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
14405 int imm = inst.operands[2].imm;
14406 /* This gets the bounds check, size encoding and immediate bits calculation
14407 right. */
14408 et.size /= 2;
14409
14410 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
14411 VQMOVUN.I<size> <Dd>, <Qm>. */
14412 if (imm == 0)
14413 {
14414 inst.operands[2].present = 0;
14415 inst.instruction = N_MNEM_vqmovun;
14416 do_neon_qmovun ();
14417 return;
14418 }
14419
14420 constraint (imm < 1 || (unsigned)imm > et.size,
14421 _("immediate out of range"));
14422 /* FIXME: The manual is kind of unclear about what value U should have in
14423 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
14424 must be 1. */
14425 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
14426}
14427
14428static void
14429do_neon_movn (void)
14430{
14431 struct neon_type_el et = neon_check_type (2, NS_DQ,
14432 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
88714cb8 14433 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14434 neon_two_same (0, 1, et.size / 2);
14435}
14436
14437static void
14438do_neon_rshift_narrow (void)
14439{
14440 struct neon_type_el et = neon_check_type (2, NS_DQI,
14441 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
14442 int imm = inst.operands[2].imm;
14443 /* This gets the bounds check, size encoding and immediate bits calculation
14444 right. */
14445 et.size /= 2;
5f4273c7 14446
5287ad62
JB
14447 /* If immediate is zero then we are a pseudo-instruction for
14448 VMOVN.I<size> <Dd>, <Qm> */
14449 if (imm == 0)
14450 {
14451 inst.operands[2].present = 0;
14452 inst.instruction = N_MNEM_vmovn;
14453 do_neon_movn ();
14454 return;
14455 }
5f4273c7 14456
5287ad62
JB
14457 constraint (imm < 1 || (unsigned)imm > et.size,
14458 _("immediate out of range for narrowing operation"));
14459 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
14460}
14461
14462static void
14463do_neon_shll (void)
14464{
14465 /* FIXME: Type checking when lengthening. */
14466 struct neon_type_el et = neon_check_type (2, NS_QDI,
14467 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
14468 unsigned imm = inst.operands[2].imm;
14469
14470 if (imm == et.size)
14471 {
14472 /* Maximum shift variant. */
88714cb8 14473 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14474 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14475 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14476 inst.instruction |= LOW4 (inst.operands[1].reg);
14477 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14478 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14479
88714cb8 14480 neon_dp_fixup (&inst);
5287ad62
JB
14481 }
14482 else
14483 {
14484 /* A more-specific type check for non-max versions. */
14485 et = neon_check_type (2, NS_QDI,
14486 N_EQK | N_DBL, N_SU_32 | N_KEY);
88714cb8 14487 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14488 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
14489 }
14490}
14491
037e8744 14492/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
14493 the current instruction is. */
14494
6b9a8b67
MGD
14495#define CVT_FLAVOUR_VAR \
14496 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
14497 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
14498 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
14499 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
14500 /* Half-precision conversions. */ \
14501 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
14502 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
14503 /* VFP instructions. */ \
14504 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
14505 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
14506 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
14507 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
14508 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
14509 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
14510 /* VFP instructions with bitshift. */ \
14511 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
14512 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
14513 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
14514 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
14515 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
14516 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
14517 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
14518 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
14519
14520#define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
14521 neon_cvt_flavour_##C,
14522
14523/* The different types of conversions we can do. */
14524enum neon_cvt_flavour
14525{
14526 CVT_FLAVOUR_VAR
14527 neon_cvt_flavour_invalid,
14528 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
14529};
14530
14531#undef CVT_VAR
14532
14533static enum neon_cvt_flavour
14534get_neon_cvt_flavour (enum neon_shape rs)
5287ad62 14535{
6b9a8b67
MGD
14536#define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
14537 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
14538 if (et.type != NT_invtype) \
14539 { \
14540 inst.error = NULL; \
14541 return (neon_cvt_flavour_##C); \
5287ad62 14542 }
6b9a8b67 14543
5287ad62 14544 struct neon_type_el et;
037e8744
JB
14545 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
14546 || rs == NS_FF) ? N_VFP : 0;
14547 /* The instruction versions which take an immediate take one register
14548 argument, which is extended to the width of the full register. Thus the
14549 "source" and "destination" registers must have the same width. Hack that
14550 here by making the size equal to the key (wider, in this case) operand. */
14551 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5f4273c7 14552
6b9a8b67
MGD
14553 CVT_FLAVOUR_VAR;
14554
14555 return neon_cvt_flavour_invalid;
5287ad62
JB
14556#undef CVT_VAR
14557}
14558
7e8e6784
MGD
14559enum neon_cvt_mode
14560{
14561 neon_cvt_mode_a,
14562 neon_cvt_mode_n,
14563 neon_cvt_mode_p,
14564 neon_cvt_mode_m,
14565 neon_cvt_mode_z,
30bdf752
MGD
14566 neon_cvt_mode_x,
14567 neon_cvt_mode_r
7e8e6784
MGD
14568};
14569
037e8744
JB
14570/* Neon-syntax VFP conversions. */
14571
5287ad62 14572static void
6b9a8b67 14573do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
5287ad62 14574{
037e8744 14575 const char *opname = 0;
5f4273c7 14576
037e8744 14577 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
5287ad62 14578 {
037e8744
JB
14579 /* Conversions with immediate bitshift. */
14580 const char *enc[] =
14581 {
6b9a8b67
MGD
14582#define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
14583 CVT_FLAVOUR_VAR
14584 NULL
14585#undef CVT_VAR
037e8744
JB
14586 };
14587
6b9a8b67 14588 if (flavour < (int) ARRAY_SIZE (enc))
037e8744
JB
14589 {
14590 opname = enc[flavour];
14591 constraint (inst.operands[0].reg != inst.operands[1].reg,
14592 _("operands 0 and 1 must be the same register"));
14593 inst.operands[1] = inst.operands[2];
14594 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
14595 }
5287ad62
JB
14596 }
14597 else
14598 {
037e8744
JB
14599 /* Conversions without bitshift. */
14600 const char *enc[] =
14601 {
6b9a8b67
MGD
14602#define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
14603 CVT_FLAVOUR_VAR
14604 NULL
14605#undef CVT_VAR
037e8744
JB
14606 };
14607
6b9a8b67 14608 if (flavour < (int) ARRAY_SIZE (enc))
037e8744
JB
14609 opname = enc[flavour];
14610 }
14611
14612 if (opname)
14613 do_vfp_nsyn_opcode (opname);
14614}
14615
14616static void
14617do_vfp_nsyn_cvtz (void)
14618{
14619 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
6b9a8b67 14620 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744
JB
14621 const char *enc[] =
14622 {
6b9a8b67
MGD
14623#define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
14624 CVT_FLAVOUR_VAR
14625 NULL
14626#undef CVT_VAR
037e8744
JB
14627 };
14628
6b9a8b67 14629 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
037e8744
JB
14630 do_vfp_nsyn_opcode (enc[flavour]);
14631}
f31fef98 14632
037e8744 14633static void
bacebabc 14634do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
7e8e6784
MGD
14635 enum neon_cvt_mode mode)
14636{
14637 int sz, op;
14638 int rm;
14639
14640 set_it_insn_type (OUTSIDE_IT_INSN);
14641
14642 switch (flavour)
14643 {
14644 case neon_cvt_flavour_s32_f64:
14645 sz = 1;
14646 op = 0;
14647 break;
14648 case neon_cvt_flavour_s32_f32:
14649 sz = 0;
14650 op = 1;
14651 break;
14652 case neon_cvt_flavour_u32_f64:
14653 sz = 1;
14654 op = 0;
14655 break;
14656 case neon_cvt_flavour_u32_f32:
14657 sz = 0;
14658 op = 0;
14659 break;
14660 default:
14661 first_error (_("invalid instruction shape"));
14662 return;
14663 }
14664
14665 switch (mode)
14666 {
14667 case neon_cvt_mode_a: rm = 0; break;
14668 case neon_cvt_mode_n: rm = 1; break;
14669 case neon_cvt_mode_p: rm = 2; break;
14670 case neon_cvt_mode_m: rm = 3; break;
14671 default: first_error (_("invalid rounding mode")); return;
14672 }
14673
14674 NEON_ENCODE (FPV8, inst);
14675 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
14676 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
14677 inst.instruction |= sz << 8;
14678 inst.instruction |= op << 7;
14679 inst.instruction |= rm << 16;
14680 inst.instruction |= 0xf0000000;
14681 inst.is_neon = TRUE;
14682}
14683
14684static void
14685do_neon_cvt_1 (enum neon_cvt_mode mode)
037e8744
JB
14686{
14687 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
8e79c3df 14688 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ, NS_NULL);
6b9a8b67 14689 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744 14690
e3e535bc 14691 /* PR11109: Handle round-to-zero for VCVT conversions. */
7e8e6784 14692 if (mode == neon_cvt_mode_z
e3e535bc 14693 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
bacebabc
RM
14694 && (flavour == neon_cvt_flavour_s32_f32
14695 || flavour == neon_cvt_flavour_u32_f32
14696 || flavour == neon_cvt_flavour_s32_f64
6b9a8b67 14697 || flavour == neon_cvt_flavour_u32_f64)
e3e535bc
NC
14698 && (rs == NS_FD || rs == NS_FF))
14699 {
14700 do_vfp_nsyn_cvtz ();
14701 return;
14702 }
14703
037e8744 14704 /* VFP rather than Neon conversions. */
6b9a8b67 14705 if (flavour >= neon_cvt_flavour_first_fp)
037e8744 14706 {
7e8e6784
MGD
14707 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
14708 do_vfp_nsyn_cvt (rs, flavour);
14709 else
14710 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
14711
037e8744
JB
14712 return;
14713 }
14714
14715 switch (rs)
14716 {
14717 case NS_DDI:
14718 case NS_QQI:
14719 {
35997600
NC
14720 unsigned immbits;
14721 unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
14722
037e8744
JB
14723 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14724 return;
14725
14726 /* Fixed-point conversion with #0 immediate is encoded as an
14727 integer conversion. */
14728 if (inst.operands[2].present && inst.operands[2].imm == 0)
14729 goto int_encode;
35997600 14730 immbits = 32 - inst.operands[2].imm;
88714cb8 14731 NEON_ENCODE (IMMED, inst);
6b9a8b67 14732 if (flavour != neon_cvt_flavour_invalid)
037e8744
JB
14733 inst.instruction |= enctab[flavour];
14734 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14735 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14736 inst.instruction |= LOW4 (inst.operands[1].reg);
14737 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14738 inst.instruction |= neon_quad (rs) << 6;
14739 inst.instruction |= 1 << 21;
14740 inst.instruction |= immbits << 16;
14741
88714cb8 14742 neon_dp_fixup (&inst);
037e8744
JB
14743 }
14744 break;
14745
14746 case NS_DD:
14747 case NS_QQ:
7e8e6784
MGD
14748 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
14749 {
14750 NEON_ENCODE (FLOAT, inst);
14751 set_it_insn_type (OUTSIDE_IT_INSN);
14752
14753 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
14754 return;
14755
14756 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14757 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14758 inst.instruction |= LOW4 (inst.operands[1].reg);
14759 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14760 inst.instruction |= neon_quad (rs) << 6;
14761 inst.instruction |= (flavour == neon_cvt_flavour_u32_f32) << 7;
14762 inst.instruction |= mode << 8;
14763 if (thumb_mode)
14764 inst.instruction |= 0xfc000000;
14765 else
14766 inst.instruction |= 0xf0000000;
14767 }
14768 else
14769 {
037e8744 14770 int_encode:
7e8e6784
MGD
14771 {
14772 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
037e8744 14773
7e8e6784 14774 NEON_ENCODE (INTEGER, inst);
037e8744 14775
7e8e6784
MGD
14776 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14777 return;
037e8744 14778
7e8e6784
MGD
14779 if (flavour != neon_cvt_flavour_invalid)
14780 inst.instruction |= enctab[flavour];
037e8744 14781
7e8e6784
MGD
14782 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14783 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14784 inst.instruction |= LOW4 (inst.operands[1].reg);
14785 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14786 inst.instruction |= neon_quad (rs) << 6;
14787 inst.instruction |= 2 << 18;
037e8744 14788
7e8e6784
MGD
14789 neon_dp_fixup (&inst);
14790 }
14791 }
14792 break;
037e8744 14793
8e79c3df
CM
14794 /* Half-precision conversions for Advanced SIMD -- neon. */
14795 case NS_QD:
14796 case NS_DQ:
14797
14798 if ((rs == NS_DQ)
14799 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
14800 {
14801 as_bad (_("operand size must match register width"));
14802 break;
14803 }
14804
14805 if ((rs == NS_QD)
14806 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
14807 {
14808 as_bad (_("operand size must match register width"));
14809 break;
14810 }
14811
14812 if (rs == NS_DQ)
14813 inst.instruction = 0x3b60600;
14814 else
14815 inst.instruction = 0x3b60700;
14816
14817 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14818 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14819 inst.instruction |= LOW4 (inst.operands[1].reg);
14820 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
88714cb8 14821 neon_dp_fixup (&inst);
8e79c3df
CM
14822 break;
14823
037e8744
JB
14824 default:
14825 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
7e8e6784
MGD
14826 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
14827 do_vfp_nsyn_cvt (rs, flavour);
14828 else
14829 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
5287ad62 14830 }
5287ad62
JB
14831}
14832
e3e535bc
NC
14833static void
14834do_neon_cvtr (void)
14835{
7e8e6784 14836 do_neon_cvt_1 (neon_cvt_mode_x);
e3e535bc
NC
14837}
14838
14839static void
14840do_neon_cvt (void)
14841{
7e8e6784
MGD
14842 do_neon_cvt_1 (neon_cvt_mode_z);
14843}
14844
14845static void
14846do_neon_cvta (void)
14847{
14848 do_neon_cvt_1 (neon_cvt_mode_a);
14849}
14850
14851static void
14852do_neon_cvtn (void)
14853{
14854 do_neon_cvt_1 (neon_cvt_mode_n);
14855}
14856
14857static void
14858do_neon_cvtp (void)
14859{
14860 do_neon_cvt_1 (neon_cvt_mode_p);
14861}
14862
14863static void
14864do_neon_cvtm (void)
14865{
14866 do_neon_cvt_1 (neon_cvt_mode_m);
e3e535bc
NC
14867}
14868
8e79c3df 14869static void
c70a8987 14870do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
8e79c3df 14871{
c70a8987
MGD
14872 if (is_double)
14873 mark_feature_used (&fpu_vfp_ext_armv8);
8e79c3df 14874
c70a8987
MGD
14875 encode_arm_vfp_reg (inst.operands[0].reg,
14876 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
14877 encode_arm_vfp_reg (inst.operands[1].reg,
14878 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
14879 inst.instruction |= to ? 0x10000 : 0;
14880 inst.instruction |= t ? 0x80 : 0;
14881 inst.instruction |= is_double ? 0x100 : 0;
14882 do_vfp_cond_or_thumb ();
14883}
8e79c3df 14884
c70a8987
MGD
14885static void
14886do_neon_cvttb_1 (bfd_boolean t)
14887{
14888 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_DF, NS_NULL);
8e79c3df 14889
c70a8987
MGD
14890 if (rs == NS_NULL)
14891 return;
14892 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
14893 {
14894 inst.error = NULL;
14895 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
14896 }
14897 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
14898 {
14899 inst.error = NULL;
14900 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
14901 }
14902 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
14903 {
14904 inst.error = NULL;
14905 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
14906 }
14907 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
14908 {
14909 inst.error = NULL;
14910 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
14911 }
14912 else
14913 return;
14914}
14915
14916static void
14917do_neon_cvtb (void)
14918{
14919 do_neon_cvttb_1 (FALSE);
8e79c3df
CM
14920}
14921
14922
14923static void
14924do_neon_cvtt (void)
14925{
c70a8987 14926 do_neon_cvttb_1 (TRUE);
8e79c3df
CM
14927}
14928
5287ad62
JB
14929static void
14930neon_move_immediate (void)
14931{
037e8744
JB
14932 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
14933 struct neon_type_el et = neon_check_type (2, rs,
14934 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62 14935 unsigned immlo, immhi = 0, immbits;
c96612cc 14936 int op, cmode, float_p;
5287ad62 14937
037e8744
JB
14938 constraint (et.type == NT_invtype,
14939 _("operand size must be specified for immediate VMOV"));
14940
5287ad62
JB
14941 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
14942 op = (inst.instruction & (1 << 5)) != 0;
14943
14944 immlo = inst.operands[1].imm;
14945 if (inst.operands[1].regisimm)
14946 immhi = inst.operands[1].reg;
14947
14948 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
14949 _("immediate has bits set outside the operand size"));
14950
c96612cc
JB
14951 float_p = inst.operands[1].immisfloat;
14952
14953 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
136da414 14954 et.size, et.type)) == FAIL)
5287ad62
JB
14955 {
14956 /* Invert relevant bits only. */
14957 neon_invert_size (&immlo, &immhi, et.size);
14958 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
14959 with one or the other; those cases are caught by
14960 neon_cmode_for_move_imm. */
14961 op = !op;
c96612cc
JB
14962 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
14963 &op, et.size, et.type)) == FAIL)
5287ad62 14964 {
dcbf9037 14965 first_error (_("immediate out of range"));
5287ad62
JB
14966 return;
14967 }
14968 }
14969
14970 inst.instruction &= ~(1 << 5);
14971 inst.instruction |= op << 5;
14972
14973 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14974 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 14975 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14976 inst.instruction |= cmode << 8;
14977
14978 neon_write_immbits (immbits);
14979}
14980
14981static void
14982do_neon_mvn (void)
14983{
14984 if (inst.operands[1].isreg)
14985 {
037e8744 14986 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5f4273c7 14987
88714cb8 14988 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
14989 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14990 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14991 inst.instruction |= LOW4 (inst.operands[1].reg);
14992 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14993 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14994 }
14995 else
14996 {
88714cb8 14997 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14998 neon_move_immediate ();
14999 }
15000
88714cb8 15001 neon_dp_fixup (&inst);
5287ad62
JB
15002}
15003
15004/* Encode instructions of form:
15005
15006 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
5f4273c7 15007 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
5287ad62
JB
15008
15009static void
15010neon_mixed_length (struct neon_type_el et, unsigned size)
15011{
15012 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15013 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15014 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15015 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15016 inst.instruction |= LOW4 (inst.operands[2].reg);
15017 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15018 inst.instruction |= (et.type == NT_unsigned) << 24;
15019 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 15020
88714cb8 15021 neon_dp_fixup (&inst);
5287ad62
JB
15022}
15023
15024static void
15025do_neon_dyadic_long (void)
15026{
15027 /* FIXME: Type checking for lengthening op. */
15028 struct neon_type_el et = neon_check_type (3, NS_QDD,
15029 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
15030 neon_mixed_length (et, et.size);
15031}
15032
15033static void
15034do_neon_abal (void)
15035{
15036 struct neon_type_el et = neon_check_type (3, NS_QDD,
15037 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
15038 neon_mixed_length (et, et.size);
15039}
15040
15041static void
15042neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
15043{
15044 if (inst.operands[2].isscalar)
15045 {
dcbf9037
JB
15046 struct neon_type_el et = neon_check_type (3, NS_QDS,
15047 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
88714cb8 15048 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15049 neon_mul_mac (et, et.type == NT_unsigned);
15050 }
15051 else
15052 {
15053 struct neon_type_el et = neon_check_type (3, NS_QDD,
15054 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
88714cb8 15055 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15056 neon_mixed_length (et, et.size);
15057 }
15058}
15059
15060static void
15061do_neon_mac_maybe_scalar_long (void)
15062{
15063 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
15064}
15065
15066static void
15067do_neon_dyadic_wide (void)
15068{
15069 struct neon_type_el et = neon_check_type (3, NS_QQD,
15070 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
15071 neon_mixed_length (et, et.size);
15072}
15073
15074static void
15075do_neon_dyadic_narrow (void)
15076{
15077 struct neon_type_el et = neon_check_type (3, NS_QDD,
15078 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
15079 /* Operand sign is unimportant, and the U bit is part of the opcode,
15080 so force the operand type to integer. */
15081 et.type = NT_integer;
5287ad62
JB
15082 neon_mixed_length (et, et.size / 2);
15083}
15084
15085static void
15086do_neon_mul_sat_scalar_long (void)
15087{
15088 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
15089}
15090
15091static void
15092do_neon_vmull (void)
15093{
15094 if (inst.operands[2].isscalar)
15095 do_neon_mac_maybe_scalar_long ();
15096 else
15097 {
15098 struct neon_type_el et = neon_check_type (3, NS_QDD,
4f51b4bd
MGD
15099 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
15100
5287ad62 15101 if (et.type == NT_poly)
88714cb8 15102 NEON_ENCODE (POLY, inst);
5287ad62 15103 else
88714cb8 15104 NEON_ENCODE (INTEGER, inst);
4f51b4bd
MGD
15105
15106 /* For polynomial encoding the U bit must be zero, and the size must
15107 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
15108 obviously, as 0b10). */
15109 if (et.size == 64)
15110 {
15111 /* Check we're on the correct architecture. */
15112 if (!mark_feature_used (&fpu_crypto_ext_armv8))
15113 inst.error =
15114 _("Instruction form not available on this architecture.");
15115
15116 et.size = 32;
15117 }
15118
5287ad62
JB
15119 neon_mixed_length (et, et.size);
15120 }
15121}
15122
15123static void
15124do_neon_ext (void)
15125{
037e8744 15126 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
15127 struct neon_type_el et = neon_check_type (3, rs,
15128 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15129 unsigned imm = (inst.operands[3].imm * et.size) / 8;
35997600
NC
15130
15131 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
15132 _("shift out of range"));
5287ad62
JB
15133 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15134 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15135 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15136 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15137 inst.instruction |= LOW4 (inst.operands[2].reg);
15138 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 15139 inst.instruction |= neon_quad (rs) << 6;
5287ad62 15140 inst.instruction |= imm << 8;
5f4273c7 15141
88714cb8 15142 neon_dp_fixup (&inst);
5287ad62
JB
15143}
15144
15145static void
15146do_neon_rev (void)
15147{
037e8744 15148 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15149 struct neon_type_el et = neon_check_type (2, rs,
15150 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15151 unsigned op = (inst.instruction >> 7) & 3;
15152 /* N (width of reversed regions) is encoded as part of the bitmask. We
15153 extract it here to check the elements to be reversed are smaller.
15154 Otherwise we'd get a reserved instruction. */
15155 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
9c2799c2 15156 gas_assert (elsize != 0);
5287ad62
JB
15157 constraint (et.size >= elsize,
15158 _("elements must be smaller than reversal region"));
037e8744 15159 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15160}
15161
15162static void
15163do_neon_dup (void)
15164{
15165 if (inst.operands[1].isscalar)
15166 {
037e8744 15167 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037
JB
15168 struct neon_type_el et = neon_check_type (2, rs,
15169 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 15170 unsigned sizebits = et.size >> 3;
dcbf9037 15171 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 15172 int logsize = neon_logbits (et.size);
dcbf9037 15173 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
15174
15175 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
15176 return;
15177
88714cb8 15178 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
15179 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15180 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15181 inst.instruction |= LOW4 (dm);
15182 inst.instruction |= HI1 (dm) << 5;
037e8744 15183 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15184 inst.instruction |= x << 17;
15185 inst.instruction |= sizebits << 16;
5f4273c7 15186
88714cb8 15187 neon_dp_fixup (&inst);
5287ad62
JB
15188 }
15189 else
15190 {
037e8744
JB
15191 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
15192 struct neon_type_el et = neon_check_type (2, rs,
15193 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62 15194 /* Duplicate ARM register to lanes of vector. */
88714cb8 15195 NEON_ENCODE (ARMREG, inst);
5287ad62
JB
15196 switch (et.size)
15197 {
15198 case 8: inst.instruction |= 0x400000; break;
15199 case 16: inst.instruction |= 0x000020; break;
15200 case 32: inst.instruction |= 0x000000; break;
15201 default: break;
15202 }
15203 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15204 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
15205 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 15206 inst.instruction |= neon_quad (rs) << 21;
5287ad62
JB
15207 /* The encoding for this instruction is identical for the ARM and Thumb
15208 variants, except for the condition field. */
037e8744 15209 do_vfp_cond_or_thumb ();
5287ad62
JB
15210 }
15211}
15212
15213/* VMOV has particularly many variations. It can be one of:
15214 0. VMOV<c><q> <Qd>, <Qm>
15215 1. VMOV<c><q> <Dd>, <Dm>
15216 (Register operations, which are VORR with Rm = Rn.)
15217 2. VMOV<c><q>.<dt> <Qd>, #<imm>
15218 3. VMOV<c><q>.<dt> <Dd>, #<imm>
15219 (Immediate loads.)
15220 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
15221 (ARM register to scalar.)
15222 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
15223 (Two ARM registers to vector.)
15224 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
15225 (Scalar to ARM register.)
15226 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
15227 (Vector to two ARM registers.)
037e8744
JB
15228 8. VMOV.F32 <Sd>, <Sm>
15229 9. VMOV.F64 <Dd>, <Dm>
15230 (VFP register moves.)
15231 10. VMOV.F32 <Sd>, #imm
15232 11. VMOV.F64 <Dd>, #imm
15233 (VFP float immediate load.)
15234 12. VMOV <Rd>, <Sm>
15235 (VFP single to ARM reg.)
15236 13. VMOV <Sd>, <Rm>
15237 (ARM reg to VFP single.)
15238 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
15239 (Two ARM regs to two VFP singles.)
15240 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
15241 (Two VFP singles to two ARM regs.)
5f4273c7 15242
037e8744
JB
15243 These cases can be disambiguated using neon_select_shape, except cases 1/9
15244 and 3/11 which depend on the operand type too.
5f4273c7 15245
5287ad62 15246 All the encoded bits are hardcoded by this function.
5f4273c7 15247
b7fc2769
JB
15248 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
15249 Cases 5, 7 may be used with VFPv2 and above.
5f4273c7 15250
5287ad62 15251 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
5f4273c7 15252 can specify a type where it doesn't make sense to, and is ignored). */
5287ad62
JB
15253
15254static void
15255do_neon_mov (void)
15256{
037e8744
JB
15257 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
15258 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
15259 NS_NULL);
15260 struct neon_type_el et;
15261 const char *ldconst = 0;
5287ad62 15262
037e8744 15263 switch (rs)
5287ad62 15264 {
037e8744
JB
15265 case NS_DD: /* case 1/9. */
15266 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15267 /* It is not an error here if no type is given. */
15268 inst.error = NULL;
15269 if (et.type == NT_float && et.size == 64)
5287ad62 15270 {
037e8744
JB
15271 do_vfp_nsyn_opcode ("fcpyd");
15272 break;
5287ad62 15273 }
037e8744 15274 /* fall through. */
5287ad62 15275
037e8744
JB
15276 case NS_QQ: /* case 0/1. */
15277 {
15278 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15279 return;
15280 /* The architecture manual I have doesn't explicitly state which
15281 value the U bit should have for register->register moves, but
15282 the equivalent VORR instruction has U = 0, so do that. */
15283 inst.instruction = 0x0200110;
15284 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15285 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15286 inst.instruction |= LOW4 (inst.operands[1].reg);
15287 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15288 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15289 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15290 inst.instruction |= neon_quad (rs) << 6;
15291
88714cb8 15292 neon_dp_fixup (&inst);
037e8744
JB
15293 }
15294 break;
5f4273c7 15295
037e8744
JB
15296 case NS_DI: /* case 3/11. */
15297 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
15298 inst.error = NULL;
15299 if (et.type == NT_float && et.size == 64)
5287ad62 15300 {
037e8744
JB
15301 /* case 11 (fconstd). */
15302 ldconst = "fconstd";
15303 goto encode_fconstd;
5287ad62 15304 }
037e8744
JB
15305 /* fall through. */
15306
15307 case NS_QI: /* case 2/3. */
15308 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15309 return;
15310 inst.instruction = 0x0800010;
15311 neon_move_immediate ();
88714cb8 15312 neon_dp_fixup (&inst);
5287ad62 15313 break;
5f4273c7 15314
037e8744
JB
15315 case NS_SR: /* case 4. */
15316 {
15317 unsigned bcdebits = 0;
91d6fa6a 15318 int logsize;
037e8744
JB
15319 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
15320 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
15321
05ac0ffb
JB
15322 /* .<size> is optional here, defaulting to .32. */
15323 if (inst.vectype.elems == 0
15324 && inst.operands[0].vectype.type == NT_invtype
15325 && inst.operands[1].vectype.type == NT_invtype)
15326 {
15327 inst.vectype.el[0].type = NT_untyped;
15328 inst.vectype.el[0].size = 32;
15329 inst.vectype.elems = 1;
15330 }
15331
91d6fa6a
NC
15332 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
15333 logsize = neon_logbits (et.size);
15334
037e8744
JB
15335 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15336 _(BAD_FPU));
15337 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15338 && et.size != 32, _(BAD_FPU));
15339 constraint (et.type == NT_invtype, _("bad type for scalar"));
15340 constraint (x >= 64 / et.size, _("scalar index out of range"));
15341
15342 switch (et.size)
15343 {
15344 case 8: bcdebits = 0x8; break;
15345 case 16: bcdebits = 0x1; break;
15346 case 32: bcdebits = 0x0; break;
15347 default: ;
15348 }
15349
15350 bcdebits |= x << logsize;
15351
15352 inst.instruction = 0xe000b10;
15353 do_vfp_cond_or_thumb ();
15354 inst.instruction |= LOW4 (dn) << 16;
15355 inst.instruction |= HI1 (dn) << 7;
15356 inst.instruction |= inst.operands[1].reg << 12;
15357 inst.instruction |= (bcdebits & 3) << 5;
15358 inst.instruction |= (bcdebits >> 2) << 21;
15359 }
15360 break;
5f4273c7 15361
037e8744 15362 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 15363 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
037e8744 15364 _(BAD_FPU));
b7fc2769 15365
037e8744
JB
15366 inst.instruction = 0xc400b10;
15367 do_vfp_cond_or_thumb ();
15368 inst.instruction |= LOW4 (inst.operands[0].reg);
15369 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
15370 inst.instruction |= inst.operands[1].reg << 12;
15371 inst.instruction |= inst.operands[2].reg << 16;
15372 break;
5f4273c7 15373
037e8744
JB
15374 case NS_RS: /* case 6. */
15375 {
91d6fa6a 15376 unsigned logsize;
037e8744
JB
15377 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
15378 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
15379 unsigned abcdebits = 0;
15380
05ac0ffb
JB
15381 /* .<dt> is optional here, defaulting to .32. */
15382 if (inst.vectype.elems == 0
15383 && inst.operands[0].vectype.type == NT_invtype
15384 && inst.operands[1].vectype.type == NT_invtype)
15385 {
15386 inst.vectype.el[0].type = NT_untyped;
15387 inst.vectype.el[0].size = 32;
15388 inst.vectype.elems = 1;
15389 }
15390
91d6fa6a
NC
15391 et = neon_check_type (2, NS_NULL,
15392 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
15393 logsize = neon_logbits (et.size);
15394
037e8744
JB
15395 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
15396 _(BAD_FPU));
15397 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
15398 && et.size != 32, _(BAD_FPU));
15399 constraint (et.type == NT_invtype, _("bad type for scalar"));
15400 constraint (x >= 64 / et.size, _("scalar index out of range"));
15401
15402 switch (et.size)
15403 {
15404 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
15405 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
15406 case 32: abcdebits = 0x00; break;
15407 default: ;
15408 }
15409
15410 abcdebits |= x << logsize;
15411 inst.instruction = 0xe100b10;
15412 do_vfp_cond_or_thumb ();
15413 inst.instruction |= LOW4 (dn) << 16;
15414 inst.instruction |= HI1 (dn) << 7;
15415 inst.instruction |= inst.operands[0].reg << 12;
15416 inst.instruction |= (abcdebits & 3) << 5;
15417 inst.instruction |= (abcdebits >> 2) << 21;
15418 }
15419 break;
5f4273c7 15420
037e8744
JB
15421 case NS_RRD: /* case 7 (fmrrd). */
15422 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
15423 _(BAD_FPU));
15424
15425 inst.instruction = 0xc500b10;
15426 do_vfp_cond_or_thumb ();
15427 inst.instruction |= inst.operands[0].reg << 12;
15428 inst.instruction |= inst.operands[1].reg << 16;
15429 inst.instruction |= LOW4 (inst.operands[2].reg);
15430 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15431 break;
5f4273c7 15432
037e8744
JB
15433 case NS_FF: /* case 8 (fcpys). */
15434 do_vfp_nsyn_opcode ("fcpys");
15435 break;
5f4273c7 15436
037e8744
JB
15437 case NS_FI: /* case 10 (fconsts). */
15438 ldconst = "fconsts";
15439 encode_fconstd:
15440 if (is_quarter_float (inst.operands[1].imm))
5287ad62 15441 {
037e8744
JB
15442 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
15443 do_vfp_nsyn_opcode (ldconst);
5287ad62
JB
15444 }
15445 else
037e8744
JB
15446 first_error (_("immediate out of range"));
15447 break;
5f4273c7 15448
037e8744
JB
15449 case NS_RF: /* case 12 (fmrs). */
15450 do_vfp_nsyn_opcode ("fmrs");
15451 break;
5f4273c7 15452
037e8744
JB
15453 case NS_FR: /* case 13 (fmsr). */
15454 do_vfp_nsyn_opcode ("fmsr");
15455 break;
5f4273c7 15456
037e8744
JB
15457 /* The encoders for the fmrrs and fmsrr instructions expect three operands
15458 (one of which is a list), but we have parsed four. Do some fiddling to
15459 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
15460 expect. */
15461 case NS_RRFF: /* case 14 (fmrrs). */
15462 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
15463 _("VFP registers must be adjacent"));
15464 inst.operands[2].imm = 2;
15465 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15466 do_vfp_nsyn_opcode ("fmrrs");
15467 break;
5f4273c7 15468
037e8744
JB
15469 case NS_FFRR: /* case 15 (fmsrr). */
15470 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
15471 _("VFP registers must be adjacent"));
15472 inst.operands[1] = inst.operands[2];
15473 inst.operands[2] = inst.operands[3];
15474 inst.operands[0].imm = 2;
15475 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
15476 do_vfp_nsyn_opcode ("fmsrr");
5287ad62 15477 break;
5f4273c7 15478
4c261dff
NC
15479 case NS_NULL:
15480 /* neon_select_shape has determined that the instruction
15481 shape is wrong and has already set the error message. */
15482 break;
15483
5287ad62
JB
15484 default:
15485 abort ();
15486 }
15487}
15488
15489static void
15490do_neon_rshift_round_imm (void)
15491{
037e8744 15492 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15493 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
15494 int imm = inst.operands[2].imm;
15495
15496 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
15497 if (imm == 0)
15498 {
15499 inst.operands[2].present = 0;
15500 do_neon_mov ();
15501 return;
15502 }
15503
15504 constraint (imm < 1 || (unsigned)imm > et.size,
15505 _("immediate out of range for shift"));
037e8744 15506 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
15507 et.size - imm);
15508}
15509
15510static void
15511do_neon_movl (void)
15512{
15513 struct neon_type_el et = neon_check_type (2, NS_QD,
15514 N_EQK | N_DBL, N_SU_32 | N_KEY);
15515 unsigned sizebits = et.size >> 3;
15516 inst.instruction |= sizebits << 19;
15517 neon_two_same (0, et.type == NT_unsigned, -1);
15518}
15519
15520static void
15521do_neon_trn (void)
15522{
037e8744 15523 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15524 struct neon_type_el et = neon_check_type (2, rs,
15525 N_EQK, N_8 | N_16 | N_32 | N_KEY);
88714cb8 15526 NEON_ENCODE (INTEGER, inst);
037e8744 15527 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15528}
15529
15530static void
15531do_neon_zip_uzp (void)
15532{
037e8744 15533 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15534 struct neon_type_el et = neon_check_type (2, rs,
15535 N_EQK, N_8 | N_16 | N_32 | N_KEY);
15536 if (rs == NS_DD && et.size == 32)
15537 {
15538 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
15539 inst.instruction = N_MNEM_vtrn;
15540 do_neon_trn ();
15541 return;
15542 }
037e8744 15543 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15544}
15545
15546static void
15547do_neon_sat_abs_neg (void)
15548{
037e8744 15549 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15550 struct neon_type_el et = neon_check_type (2, rs,
15551 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15552 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15553}
15554
15555static void
15556do_neon_pair_long (void)
15557{
037e8744 15558 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15559 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
15560 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
15561 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 15562 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15563}
15564
15565static void
15566do_neon_recip_est (void)
15567{
037e8744 15568 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15569 struct neon_type_el et = neon_check_type (2, rs,
15570 N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
15571 inst.instruction |= (et.type == NT_float) << 8;
037e8744 15572 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15573}
15574
15575static void
15576do_neon_cls (void)
15577{
037e8744 15578 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15579 struct neon_type_el et = neon_check_type (2, rs,
15580 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 15581 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15582}
15583
15584static void
15585do_neon_clz (void)
15586{
037e8744 15587 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15588 struct neon_type_el et = neon_check_type (2, rs,
15589 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 15590 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15591}
15592
15593static void
15594do_neon_cnt (void)
15595{
037e8744 15596 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
15597 struct neon_type_el et = neon_check_type (2, rs,
15598 N_EQK | N_INT, N_8 | N_KEY);
037e8744 15599 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
15600}
15601
15602static void
15603do_neon_swp (void)
15604{
037e8744
JB
15605 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
15606 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
15607}
15608
15609static void
15610do_neon_tbl_tbx (void)
15611{
15612 unsigned listlenbits;
dcbf9037 15613 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5f4273c7 15614
5287ad62
JB
15615 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
15616 {
dcbf9037 15617 first_error (_("bad list length for table lookup"));
5287ad62
JB
15618 return;
15619 }
5f4273c7 15620
5287ad62
JB
15621 listlenbits = inst.operands[1].imm - 1;
15622 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15623 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15624 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15625 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15626 inst.instruction |= LOW4 (inst.operands[2].reg);
15627 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15628 inst.instruction |= listlenbits << 8;
5f4273c7 15629
88714cb8 15630 neon_dp_fixup (&inst);
5287ad62
JB
15631}
15632
15633static void
15634do_neon_ldm_stm (void)
15635{
15636 /* P, U and L bits are part of bitmask. */
15637 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
15638 unsigned offsetbits = inst.operands[1].imm * 2;
15639
037e8744
JB
15640 if (inst.operands[1].issingle)
15641 {
15642 do_vfp_nsyn_ldm_stm (is_dbmode);
15643 return;
15644 }
15645
5287ad62
JB
15646 constraint (is_dbmode && !inst.operands[0].writeback,
15647 _("writeback (!) must be used for VLDMDB and VSTMDB"));
15648
15649 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
15650 _("register list must contain at least 1 and at most 16 "
15651 "registers"));
15652
15653 inst.instruction |= inst.operands[0].reg << 16;
15654 inst.instruction |= inst.operands[0].writeback << 21;
15655 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
15656 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
15657
15658 inst.instruction |= offsetbits;
5f4273c7 15659
037e8744 15660 do_vfp_cond_or_thumb ();
5287ad62
JB
15661}
15662
15663static void
15664do_neon_ldr_str (void)
15665{
5287ad62 15666 int is_ldr = (inst.instruction & (1 << 20)) != 0;
5f4273c7 15667
6844b2c2
MGD
15668 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
15669 And is UNPREDICTABLE in thumb mode. */
fa94de6b 15670 if (!is_ldr
6844b2c2 15671 && inst.operands[1].reg == REG_PC
ba86b375 15672 && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode))
6844b2c2 15673 {
94dcf8bf 15674 if (thumb_mode)
6844b2c2 15675 inst.error = _("Use of PC here is UNPREDICTABLE");
94dcf8bf
JB
15676 else if (warn_on_deprecated)
15677 as_warn (_("Use of PC here is deprecated"));
6844b2c2
MGD
15678 }
15679
037e8744
JB
15680 if (inst.operands[0].issingle)
15681 {
cd2f129f
JB
15682 if (is_ldr)
15683 do_vfp_nsyn_opcode ("flds");
15684 else
15685 do_vfp_nsyn_opcode ("fsts");
5287ad62
JB
15686 }
15687 else
5287ad62 15688 {
cd2f129f
JB
15689 if (is_ldr)
15690 do_vfp_nsyn_opcode ("fldd");
5287ad62 15691 else
cd2f129f 15692 do_vfp_nsyn_opcode ("fstd");
5287ad62 15693 }
5287ad62
JB
15694}
15695
15696/* "interleave" version also handles non-interleaving register VLD1/VST1
15697 instructions. */
15698
15699static void
15700do_neon_ld_st_interleave (void)
15701{
037e8744 15702 struct neon_type_el et = neon_check_type (1, NS_NULL,
5287ad62
JB
15703 N_8 | N_16 | N_32 | N_64);
15704 unsigned alignbits = 0;
15705 unsigned idx;
15706 /* The bits in this table go:
15707 0: register stride of one (0) or two (1)
15708 1,2: register list length, minus one (1, 2, 3, 4).
15709 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
15710 We use -1 for invalid entries. */
15711 const int typetable[] =
15712 {
15713 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
15714 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
15715 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
15716 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
15717 };
15718 int typebits;
15719
dcbf9037
JB
15720 if (et.type == NT_invtype)
15721 return;
15722
5287ad62
JB
15723 if (inst.operands[1].immisalign)
15724 switch (inst.operands[1].imm >> 8)
15725 {
15726 case 64: alignbits = 1; break;
15727 case 128:
e23c0ad8
JZ
15728 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
15729 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
5287ad62
JB
15730 goto bad_alignment;
15731 alignbits = 2;
15732 break;
15733 case 256:
e23c0ad8 15734 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
5287ad62
JB
15735 goto bad_alignment;
15736 alignbits = 3;
15737 break;
15738 default:
15739 bad_alignment:
dcbf9037 15740 first_error (_("bad alignment"));
5287ad62
JB
15741 return;
15742 }
15743
15744 inst.instruction |= alignbits << 4;
15745 inst.instruction |= neon_logbits (et.size) << 6;
15746
15747 /* Bits [4:6] of the immediate in a list specifier encode register stride
15748 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
15749 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
15750 up the right value for "type" in a table based on this value and the given
15751 list style, then stick it back. */
15752 idx = ((inst.operands[0].imm >> 4) & 7)
15753 | (((inst.instruction >> 8) & 3) << 3);
15754
15755 typebits = typetable[idx];
5f4273c7 15756
5287ad62
JB
15757 constraint (typebits == -1, _("bad list type for instruction"));
15758
15759 inst.instruction &= ~0xf00;
15760 inst.instruction |= typebits << 8;
15761}
15762
15763/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
15764 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
15765 otherwise. The variable arguments are a list of pairs of legal (size, align)
15766 values, terminated with -1. */
15767
15768static int
15769neon_alignment_bit (int size, int align, int *do_align, ...)
15770{
15771 va_list ap;
15772 int result = FAIL, thissize, thisalign;
5f4273c7 15773
5287ad62
JB
15774 if (!inst.operands[1].immisalign)
15775 {
15776 *do_align = 0;
15777 return SUCCESS;
15778 }
5f4273c7 15779
5287ad62
JB
15780 va_start (ap, do_align);
15781
15782 do
15783 {
15784 thissize = va_arg (ap, int);
15785 if (thissize == -1)
15786 break;
15787 thisalign = va_arg (ap, int);
15788
15789 if (size == thissize && align == thisalign)
15790 result = SUCCESS;
15791 }
15792 while (result != SUCCESS);
15793
15794 va_end (ap);
15795
15796 if (result == SUCCESS)
15797 *do_align = 1;
15798 else
dcbf9037 15799 first_error (_("unsupported alignment for instruction"));
5f4273c7 15800
5287ad62
JB
15801 return result;
15802}
15803
15804static void
15805do_neon_ld_st_lane (void)
15806{
037e8744 15807 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15808 int align_good, do_align = 0;
15809 int logsize = neon_logbits (et.size);
15810 int align = inst.operands[1].imm >> 8;
15811 int n = (inst.instruction >> 8) & 3;
15812 int max_el = 64 / et.size;
5f4273c7 15813
dcbf9037
JB
15814 if (et.type == NT_invtype)
15815 return;
5f4273c7 15816
5287ad62
JB
15817 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
15818 _("bad list length"));
15819 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
15820 _("scalar index out of range"));
15821 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
15822 && et.size == 8,
15823 _("stride of 2 unavailable when element size is 8"));
5f4273c7 15824
5287ad62
JB
15825 switch (n)
15826 {
15827 case 0: /* VLD1 / VST1. */
15828 align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
15829 32, 32, -1);
15830 if (align_good == FAIL)
15831 return;
15832 if (do_align)
15833 {
15834 unsigned alignbits = 0;
15835 switch (et.size)
15836 {
15837 case 16: alignbits = 0x1; break;
15838 case 32: alignbits = 0x3; break;
15839 default: ;
15840 }
15841 inst.instruction |= alignbits << 4;
15842 }
15843 break;
15844
15845 case 1: /* VLD2 / VST2. */
15846 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
15847 32, 64, -1);
15848 if (align_good == FAIL)
15849 return;
15850 if (do_align)
15851 inst.instruction |= 1 << 4;
15852 break;
15853
15854 case 2: /* VLD3 / VST3. */
15855 constraint (inst.operands[1].immisalign,
15856 _("can't use alignment with this instruction"));
15857 break;
15858
15859 case 3: /* VLD4 / VST4. */
15860 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15861 16, 64, 32, 64, 32, 128, -1);
15862 if (align_good == FAIL)
15863 return;
15864 if (do_align)
15865 {
15866 unsigned alignbits = 0;
15867 switch (et.size)
15868 {
15869 case 8: alignbits = 0x1; break;
15870 case 16: alignbits = 0x1; break;
15871 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
15872 default: ;
15873 }
15874 inst.instruction |= alignbits << 4;
15875 }
15876 break;
15877
15878 default: ;
15879 }
15880
15881 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
15882 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15883 inst.instruction |= 1 << (4 + logsize);
5f4273c7 15884
5287ad62
JB
15885 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
15886 inst.instruction |= logsize << 10;
15887}
15888
15889/* Encode single n-element structure to all lanes VLD<n> instructions. */
15890
15891static void
15892do_neon_ld_dup (void)
15893{
037e8744 15894 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
15895 int align_good, do_align = 0;
15896
dcbf9037
JB
15897 if (et.type == NT_invtype)
15898 return;
15899
5287ad62
JB
15900 switch ((inst.instruction >> 8) & 3)
15901 {
15902 case 0: /* VLD1. */
9c2799c2 15903 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
5287ad62
JB
15904 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
15905 &do_align, 16, 16, 32, 32, -1);
15906 if (align_good == FAIL)
15907 return;
15908 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
15909 {
15910 case 1: break;
15911 case 2: inst.instruction |= 1 << 5; break;
dcbf9037 15912 default: first_error (_("bad list length")); return;
5287ad62
JB
15913 }
15914 inst.instruction |= neon_logbits (et.size) << 6;
15915 break;
15916
15917 case 1: /* VLD2. */
15918 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
15919 &do_align, 8, 16, 16, 32, 32, 64, -1);
15920 if (align_good == FAIL)
15921 return;
15922 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
15923 _("bad list length"));
15924 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15925 inst.instruction |= 1 << 5;
15926 inst.instruction |= neon_logbits (et.size) << 6;
15927 break;
15928
15929 case 2: /* VLD3. */
15930 constraint (inst.operands[1].immisalign,
15931 _("can't use alignment with this instruction"));
15932 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
15933 _("bad list length"));
15934 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15935 inst.instruction |= 1 << 5;
15936 inst.instruction |= neon_logbits (et.size) << 6;
15937 break;
15938
15939 case 3: /* VLD4. */
15940 {
15941 int align = inst.operands[1].imm >> 8;
15942 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
15943 16, 64, 32, 64, 32, 128, -1);
15944 if (align_good == FAIL)
15945 return;
15946 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
15947 _("bad list length"));
15948 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
15949 inst.instruction |= 1 << 5;
15950 if (et.size == 32 && align == 128)
15951 inst.instruction |= 0x3 << 6;
15952 else
15953 inst.instruction |= neon_logbits (et.size) << 6;
15954 }
15955 break;
15956
15957 default: ;
15958 }
15959
15960 inst.instruction |= do_align << 4;
15961}
15962
15963/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
15964 apart from bits [11:4]. */
15965
15966static void
15967do_neon_ldx_stx (void)
15968{
b1a769ed
DG
15969 if (inst.operands[1].isreg)
15970 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
15971
5287ad62
JB
15972 switch (NEON_LANE (inst.operands[0].imm))
15973 {
15974 case NEON_INTERLEAVE_LANES:
88714cb8 15975 NEON_ENCODE (INTERLV, inst);
5287ad62
JB
15976 do_neon_ld_st_interleave ();
15977 break;
5f4273c7 15978
5287ad62 15979 case NEON_ALL_LANES:
88714cb8 15980 NEON_ENCODE (DUP, inst);
2d51fb74
JB
15981 if (inst.instruction == N_INV)
15982 {
15983 first_error ("only loads support such operands");
15984 break;
15985 }
5287ad62
JB
15986 do_neon_ld_dup ();
15987 break;
5f4273c7 15988
5287ad62 15989 default:
88714cb8 15990 NEON_ENCODE (LANE, inst);
5287ad62
JB
15991 do_neon_ld_st_lane ();
15992 }
15993
15994 /* L bit comes from bit mask. */
15995 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15996 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15997 inst.instruction |= inst.operands[1].reg << 16;
5f4273c7 15998
5287ad62
JB
15999 if (inst.operands[1].postind)
16000 {
16001 int postreg = inst.operands[1].imm & 0xf;
16002 constraint (!inst.operands[1].immisreg,
16003 _("post-index must be a register"));
16004 constraint (postreg == 0xd || postreg == 0xf,
16005 _("bad register for post-index"));
16006 inst.instruction |= postreg;
16007 }
16008 else if (inst.operands[1].writeback)
16009 {
16010 inst.instruction |= 0xd;
16011 }
16012 else
5f4273c7
NC
16013 inst.instruction |= 0xf;
16014
5287ad62
JB
16015 if (thumb_mode)
16016 inst.instruction |= 0xf9000000;
16017 else
16018 inst.instruction |= 0xf4000000;
16019}
33399f07
MGD
16020
16021/* FP v8. */
16022static void
16023do_vfp_nsyn_fpv8 (enum neon_shape rs)
16024{
16025 NEON_ENCODE (FPV8, inst);
16026
16027 if (rs == NS_FFF)
16028 do_vfp_sp_dyadic ();
16029 else
16030 do_vfp_dp_rd_rn_rm ();
16031
16032 if (rs == NS_DDD)
16033 inst.instruction |= 0x100;
16034
16035 inst.instruction |= 0xf0000000;
16036}
16037
16038static void
16039do_vsel (void)
16040{
16041 set_it_insn_type (OUTSIDE_IT_INSN);
16042
16043 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
16044 first_error (_("invalid instruction shape"));
16045}
16046
73924fbc
MGD
16047static void
16048do_vmaxnm (void)
16049{
16050 set_it_insn_type (OUTSIDE_IT_INSN);
16051
16052 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
16053 return;
16054
16055 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16056 return;
16057
16058 neon_dyadic_misc (NT_untyped, N_F32, 0);
16059}
16060
30bdf752
MGD
16061static void
16062do_vrint_1 (enum neon_cvt_mode mode)
16063{
16064 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_QQ, NS_NULL);
16065 struct neon_type_el et;
16066
16067 if (rs == NS_NULL)
16068 return;
16069
16070 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
16071 if (et.type != NT_invtype)
16072 {
16073 /* VFP encodings. */
16074 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
16075 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
16076 set_it_insn_type (OUTSIDE_IT_INSN);
16077
16078 NEON_ENCODE (FPV8, inst);
16079 if (rs == NS_FF)
16080 do_vfp_sp_monadic ();
16081 else
16082 do_vfp_dp_rd_rm ();
16083
16084 switch (mode)
16085 {
16086 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
16087 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
16088 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
16089 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
16090 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
16091 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
16092 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
16093 default: abort ();
16094 }
16095
16096 inst.instruction |= (rs == NS_DD) << 8;
16097 do_vfp_cond_or_thumb ();
16098 }
16099 else
16100 {
16101 /* Neon encodings (or something broken...). */
16102 inst.error = NULL;
16103 et = neon_check_type (2, rs, N_EQK, N_F32 | N_KEY);
16104
16105 if (et.type == NT_invtype)
16106 return;
16107
16108 set_it_insn_type (OUTSIDE_IT_INSN);
16109 NEON_ENCODE (FLOAT, inst);
16110
16111 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
16112 return;
16113
16114 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16115 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16116 inst.instruction |= LOW4 (inst.operands[1].reg);
16117 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16118 inst.instruction |= neon_quad (rs) << 6;
16119 switch (mode)
16120 {
16121 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
16122 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
16123 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
16124 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
16125 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
16126 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
16127 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
16128 default: abort ();
16129 }
16130
16131 if (thumb_mode)
16132 inst.instruction |= 0xfc000000;
16133 else
16134 inst.instruction |= 0xf0000000;
16135 }
16136}
16137
16138static void
16139do_vrintx (void)
16140{
16141 do_vrint_1 (neon_cvt_mode_x);
16142}
16143
16144static void
16145do_vrintz (void)
16146{
16147 do_vrint_1 (neon_cvt_mode_z);
16148}
16149
16150static void
16151do_vrintr (void)
16152{
16153 do_vrint_1 (neon_cvt_mode_r);
16154}
16155
16156static void
16157do_vrinta (void)
16158{
16159 do_vrint_1 (neon_cvt_mode_a);
16160}
16161
16162static void
16163do_vrintn (void)
16164{
16165 do_vrint_1 (neon_cvt_mode_n);
16166}
16167
16168static void
16169do_vrintp (void)
16170{
16171 do_vrint_1 (neon_cvt_mode_p);
16172}
16173
16174static void
16175do_vrintm (void)
16176{
16177 do_vrint_1 (neon_cvt_mode_m);
16178}
16179
91ff7894
MGD
16180/* Crypto v1 instructions. */
16181static void
16182do_crypto_2op_1 (unsigned elttype, int op)
16183{
16184 set_it_insn_type (OUTSIDE_IT_INSN);
16185
16186 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
16187 == NT_invtype)
16188 return;
16189
16190 inst.error = NULL;
16191
16192 NEON_ENCODE (INTEGER, inst);
16193 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16194 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16195 inst.instruction |= LOW4 (inst.operands[1].reg);
16196 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16197 if (op != -1)
16198 inst.instruction |= op << 6;
16199
16200 if (thumb_mode)
16201 inst.instruction |= 0xfc000000;
16202 else
16203 inst.instruction |= 0xf0000000;
16204}
16205
48adcd8e
MGD
16206static void
16207do_crypto_3op_1 (int u, int op)
16208{
16209 set_it_insn_type (OUTSIDE_IT_INSN);
16210
16211 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
16212 N_32 | N_UNT | N_KEY).type == NT_invtype)
16213 return;
16214
16215 inst.error = NULL;
16216
16217 NEON_ENCODE (INTEGER, inst);
16218 neon_three_same (1, u, 8 << op);
16219}
16220
91ff7894
MGD
16221static void
16222do_aese (void)
16223{
16224 do_crypto_2op_1 (N_8, 0);
16225}
16226
16227static void
16228do_aesd (void)
16229{
16230 do_crypto_2op_1 (N_8, 1);
16231}
16232
16233static void
16234do_aesmc (void)
16235{
16236 do_crypto_2op_1 (N_8, 2);
16237}
16238
16239static void
16240do_aesimc (void)
16241{
16242 do_crypto_2op_1 (N_8, 3);
16243}
16244
48adcd8e
MGD
16245static void
16246do_sha1c (void)
16247{
16248 do_crypto_3op_1 (0, 0);
16249}
16250
16251static void
16252do_sha1p (void)
16253{
16254 do_crypto_3op_1 (0, 1);
16255}
16256
16257static void
16258do_sha1m (void)
16259{
16260 do_crypto_3op_1 (0, 2);
16261}
16262
16263static void
16264do_sha1su0 (void)
16265{
16266 do_crypto_3op_1 (0, 3);
16267}
91ff7894 16268
48adcd8e
MGD
16269static void
16270do_sha256h (void)
16271{
16272 do_crypto_3op_1 (1, 0);
16273}
16274
16275static void
16276do_sha256h2 (void)
16277{
16278 do_crypto_3op_1 (1, 1);
16279}
16280
16281static void
16282do_sha256su1 (void)
16283{
16284 do_crypto_3op_1 (1, 2);
16285}
3c9017d2
MGD
16286
16287static void
16288do_sha1h (void)
16289{
16290 do_crypto_2op_1 (N_32, -1);
16291}
16292
16293static void
16294do_sha1su1 (void)
16295{
16296 do_crypto_2op_1 (N_32, 0);
16297}
16298
16299static void
16300do_sha256su0 (void)
16301{
16302 do_crypto_2op_1 (N_32, 1);
16303}
dd5181d5
KT
16304
16305static void
16306do_crc32_1 (unsigned int poly, unsigned int sz)
16307{
16308 unsigned int Rd = inst.operands[0].reg;
16309 unsigned int Rn = inst.operands[1].reg;
16310 unsigned int Rm = inst.operands[2].reg;
16311
16312 set_it_insn_type (OUTSIDE_IT_INSN);
16313 inst.instruction |= LOW4 (Rd) << (thumb_mode ? 8 : 12);
16314 inst.instruction |= LOW4 (Rn) << 16;
16315 inst.instruction |= LOW4 (Rm);
16316 inst.instruction |= sz << (thumb_mode ? 4 : 21);
16317 inst.instruction |= poly << (thumb_mode ? 20 : 9);
16318
16319 if (Rd == REG_PC || Rn == REG_PC || Rm == REG_PC)
16320 as_warn (UNPRED_REG ("r15"));
16321 if (thumb_mode && (Rd == REG_SP || Rn == REG_SP || Rm == REG_SP))
16322 as_warn (UNPRED_REG ("r13"));
16323}
16324
16325static void
16326do_crc32b (void)
16327{
16328 do_crc32_1 (0, 0);
16329}
16330
16331static void
16332do_crc32h (void)
16333{
16334 do_crc32_1 (0, 1);
16335}
16336
16337static void
16338do_crc32w (void)
16339{
16340 do_crc32_1 (0, 2);
16341}
16342
16343static void
16344do_crc32cb (void)
16345{
16346 do_crc32_1 (1, 0);
16347}
16348
16349static void
16350do_crc32ch (void)
16351{
16352 do_crc32_1 (1, 1);
16353}
16354
16355static void
16356do_crc32cw (void)
16357{
16358 do_crc32_1 (1, 2);
16359}
16360
5287ad62
JB
16361\f
16362/* Overall per-instruction processing. */
16363
16364/* We need to be able to fix up arbitrary expressions in some statements.
16365 This is so that we can handle symbols that are an arbitrary distance from
16366 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
16367 which returns part of an address in a form which will be valid for
16368 a data instruction. We do this by pushing the expression into a symbol
16369 in the expr_section, and creating a fix for that. */
16370
16371static void
16372fix_new_arm (fragS * frag,
16373 int where,
16374 short int size,
16375 expressionS * exp,
16376 int pc_rel,
16377 int reloc)
16378{
16379 fixS * new_fix;
16380
16381 switch (exp->X_op)
16382 {
16383 case O_constant:
6e7ce2cd
PB
16384 if (pc_rel)
16385 {
16386 /* Create an absolute valued symbol, so we have something to
16387 refer to in the object file. Unfortunately for us, gas's
16388 generic expression parsing will already have folded out
16389 any use of .set foo/.type foo %function that may have
16390 been used to set type information of the target location,
16391 that's being specified symbolically. We have to presume
16392 the user knows what they are doing. */
16393 char name[16 + 8];
16394 symbolS *symbol;
16395
16396 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
16397
16398 symbol = symbol_find_or_make (name);
16399 S_SET_SEGMENT (symbol, absolute_section);
16400 symbol_set_frag (symbol, &zero_address_frag);
16401 S_SET_VALUE (symbol, exp->X_add_number);
16402 exp->X_op = O_symbol;
16403 exp->X_add_symbol = symbol;
16404 exp->X_add_number = 0;
16405 }
16406 /* FALLTHROUGH */
5287ad62
JB
16407 case O_symbol:
16408 case O_add:
16409 case O_subtract:
21d799b5
NC
16410 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
16411 (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16412 break;
16413
16414 default:
21d799b5
NC
16415 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
16416 pc_rel, (enum bfd_reloc_code_real) reloc);
5287ad62
JB
16417 break;
16418 }
16419
16420 /* Mark whether the fix is to a THUMB instruction, or an ARM
16421 instruction. */
16422 new_fix->tc_fix_data = thumb_mode;
16423}
16424
16425/* Create a frg for an instruction requiring relaxation. */
16426static void
16427output_relax_insn (void)
16428{
16429 char * to;
16430 symbolS *sym;
0110f2b8
PB
16431 int offset;
16432
6e1cb1a6
PB
16433 /* The size of the instruction is unknown, so tie the debug info to the
16434 start of the instruction. */
16435 dwarf2_emit_insn (0);
6e1cb1a6 16436
0110f2b8
PB
16437 switch (inst.reloc.exp.X_op)
16438 {
16439 case O_symbol:
16440 sym = inst.reloc.exp.X_add_symbol;
16441 offset = inst.reloc.exp.X_add_number;
16442 break;
16443 case O_constant:
16444 sym = NULL;
16445 offset = inst.reloc.exp.X_add_number;
16446 break;
16447 default:
16448 sym = make_expr_symbol (&inst.reloc.exp);
16449 offset = 0;
16450 break;
16451 }
16452 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
16453 inst.relax, sym, offset, NULL/*offset, opcode*/);
16454 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
16455}
16456
16457/* Write a 32-bit thumb instruction to buf. */
16458static void
16459put_thumb32_insn (char * buf, unsigned long insn)
16460{
16461 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
16462 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
16463}
16464
b99bd4ef 16465static void
c19d1205 16466output_inst (const char * str)
b99bd4ef 16467{
c19d1205 16468 char * to = NULL;
b99bd4ef 16469
c19d1205 16470 if (inst.error)
b99bd4ef 16471 {
c19d1205 16472 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
16473 return;
16474 }
5f4273c7
NC
16475 if (inst.relax)
16476 {
16477 output_relax_insn ();
0110f2b8 16478 return;
5f4273c7 16479 }
c19d1205
ZW
16480 if (inst.size == 0)
16481 return;
b99bd4ef 16482
c19d1205 16483 to = frag_more (inst.size);
8dc2430f
NC
16484 /* PR 9814: Record the thumb mode into the current frag so that we know
16485 what type of NOP padding to use, if necessary. We override any previous
16486 setting so that if the mode has changed then the NOPS that we use will
16487 match the encoding of the last instruction in the frag. */
cd000bff 16488 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
c19d1205
ZW
16489
16490 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 16491 {
9c2799c2 16492 gas_assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 16493 put_thumb32_insn (to, inst.instruction);
b99bd4ef 16494 }
c19d1205 16495 else if (inst.size > INSN_SIZE)
b99bd4ef 16496 {
9c2799c2 16497 gas_assert (inst.size == (2 * INSN_SIZE));
c19d1205
ZW
16498 md_number_to_chars (to, inst.instruction, INSN_SIZE);
16499 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 16500 }
c19d1205
ZW
16501 else
16502 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 16503
c19d1205
ZW
16504 if (inst.reloc.type != BFD_RELOC_UNUSED)
16505 fix_new_arm (frag_now, to - frag_now->fr_literal,
16506 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
16507 inst.reloc.type);
b99bd4ef 16508
c19d1205 16509 dwarf2_emit_insn (inst.size);
c19d1205 16510}
b99bd4ef 16511
e07e6e58
NC
16512static char *
16513output_it_inst (int cond, int mask, char * to)
16514{
16515 unsigned long instruction = 0xbf00;
16516
16517 mask &= 0xf;
16518 instruction |= mask;
16519 instruction |= cond << 4;
16520
16521 if (to == NULL)
16522 {
16523 to = frag_more (2);
16524#ifdef OBJ_ELF
16525 dwarf2_emit_insn (2);
16526#endif
16527 }
16528
16529 md_number_to_chars (to, instruction, 2);
16530
16531 return to;
16532}
16533
c19d1205
ZW
16534/* Tag values used in struct asm_opcode's tag field. */
16535enum opcode_tag
16536{
16537 OT_unconditional, /* Instruction cannot be conditionalized.
16538 The ARM condition field is still 0xE. */
16539 OT_unconditionalF, /* Instruction cannot be conditionalized
16540 and carries 0xF in its ARM condition field. */
16541 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744
JB
16542 OT_csuffixF, /* Some forms of the instruction take a conditional
16543 suffix, others place 0xF where the condition field
16544 would be. */
c19d1205
ZW
16545 OT_cinfix3, /* Instruction takes a conditional infix,
16546 beginning at character index 3. (In
16547 unified mode, it becomes a suffix.) */
088fa78e
KH
16548 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
16549 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
16550 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
16551 character index 3, even in unified mode. Used for
16552 legacy instructions where suffix and infix forms
16553 may be ambiguous. */
c19d1205 16554 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 16555 suffix or an infix at character index 3. */
c19d1205
ZW
16556 OT_odd_infix_unc, /* This is the unconditional variant of an
16557 instruction that takes a conditional infix
16558 at an unusual position. In unified mode,
16559 this variant will accept a suffix. */
16560 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
16561 are the conditional variants of instructions that
16562 take conditional infixes in unusual positions.
16563 The infix appears at character index
16564 (tag - OT_odd_infix_0). These are not accepted
16565 in unified mode. */
16566};
b99bd4ef 16567
c19d1205
ZW
16568/* Subroutine of md_assemble, responsible for looking up the primary
16569 opcode from the mnemonic the user wrote. STR points to the
16570 beginning of the mnemonic.
16571
16572 This is not simply a hash table lookup, because of conditional
16573 variants. Most instructions have conditional variants, which are
16574 expressed with a _conditional affix_ to the mnemonic. If we were
16575 to encode each conditional variant as a literal string in the opcode
16576 table, it would have approximately 20,000 entries.
16577
16578 Most mnemonics take this affix as a suffix, and in unified syntax,
16579 'most' is upgraded to 'all'. However, in the divided syntax, some
16580 instructions take the affix as an infix, notably the s-variants of
16581 the arithmetic instructions. Of those instructions, all but six
16582 have the infix appear after the third character of the mnemonic.
16583
16584 Accordingly, the algorithm for looking up primary opcodes given
16585 an identifier is:
16586
16587 1. Look up the identifier in the opcode table.
16588 If we find a match, go to step U.
16589
16590 2. Look up the last two characters of the identifier in the
16591 conditions table. If we find a match, look up the first N-2
16592 characters of the identifier in the opcode table. If we
16593 find a match, go to step CE.
16594
16595 3. Look up the fourth and fifth characters of the identifier in
16596 the conditions table. If we find a match, extract those
16597 characters from the identifier, and look up the remaining
16598 characters in the opcode table. If we find a match, go
16599 to step CM.
16600
16601 4. Fail.
16602
16603 U. Examine the tag field of the opcode structure, in case this is
16604 one of the six instructions with its conditional infix in an
16605 unusual place. If it is, the tag tells us where to find the
16606 infix; look it up in the conditions table and set inst.cond
16607 accordingly. Otherwise, this is an unconditional instruction.
16608 Again set inst.cond accordingly. Return the opcode structure.
16609
16610 CE. Examine the tag field to make sure this is an instruction that
16611 should receive a conditional suffix. If it is not, fail.
16612 Otherwise, set inst.cond from the suffix we already looked up,
16613 and return the opcode structure.
16614
16615 CM. Examine the tag field to make sure this is an instruction that
16616 should receive a conditional infix after the third character.
16617 If it is not, fail. Otherwise, undo the edits to the current
16618 line of input and proceed as for case CE. */
16619
16620static const struct asm_opcode *
16621opcode_lookup (char **str)
16622{
16623 char *end, *base;
16624 char *affix;
16625 const struct asm_opcode *opcode;
16626 const struct asm_cond *cond;
e3cb604e 16627 char save[2];
c19d1205
ZW
16628
16629 /* Scan up to the end of the mnemonic, which must end in white space,
721a8186 16630 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
c19d1205 16631 for (base = end = *str; *end != '\0'; end++)
721a8186 16632 if (*end == ' ' || *end == '.')
c19d1205 16633 break;
b99bd4ef 16634
c19d1205 16635 if (end == base)
c921be7d 16636 return NULL;
b99bd4ef 16637
5287ad62 16638 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 16639 if (end[0] == '.')
b99bd4ef 16640 {
5287ad62 16641 int offset = 2;
5f4273c7 16642
267d2029
JB
16643 /* The .w and .n suffixes are only valid if the unified syntax is in
16644 use. */
16645 if (unified_syntax && end[1] == 'w')
c19d1205 16646 inst.size_req = 4;
267d2029 16647 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
16648 inst.size_req = 2;
16649 else
5287ad62
JB
16650 offset = 0;
16651
16652 inst.vectype.elems = 0;
16653
16654 *str = end + offset;
b99bd4ef 16655
5f4273c7 16656 if (end[offset] == '.')
5287ad62 16657 {
267d2029
JB
16658 /* See if we have a Neon type suffix (possible in either unified or
16659 non-unified ARM syntax mode). */
dcbf9037 16660 if (parse_neon_type (&inst.vectype, str) == FAIL)
c921be7d 16661 return NULL;
5287ad62
JB
16662 }
16663 else if (end[offset] != '\0' && end[offset] != ' ')
c921be7d 16664 return NULL;
b99bd4ef 16665 }
c19d1205
ZW
16666 else
16667 *str = end;
b99bd4ef 16668
c19d1205 16669 /* Look for unaffixed or special-case affixed mnemonic. */
21d799b5
NC
16670 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16671 end - base);
c19d1205 16672 if (opcode)
b99bd4ef 16673 {
c19d1205
ZW
16674 /* step U */
16675 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 16676 {
c19d1205
ZW
16677 inst.cond = COND_ALWAYS;
16678 return opcode;
b99bd4ef 16679 }
b99bd4ef 16680
278df34e 16681 if (warn_on_deprecated && unified_syntax)
c19d1205
ZW
16682 as_warn (_("conditional infixes are deprecated in unified syntax"));
16683 affix = base + (opcode->tag - OT_odd_infix_0);
21d799b5 16684 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
9c2799c2 16685 gas_assert (cond);
b99bd4ef 16686
c19d1205
ZW
16687 inst.cond = cond->value;
16688 return opcode;
16689 }
b99bd4ef 16690
c19d1205
ZW
16691 /* Cannot have a conditional suffix on a mnemonic of less than two
16692 characters. */
16693 if (end - base < 3)
c921be7d 16694 return NULL;
b99bd4ef 16695
c19d1205
ZW
16696 /* Look for suffixed mnemonic. */
16697 affix = end - 2;
21d799b5
NC
16698 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
16699 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16700 affix - base);
c19d1205
ZW
16701 if (opcode && cond)
16702 {
16703 /* step CE */
16704 switch (opcode->tag)
16705 {
e3cb604e
PB
16706 case OT_cinfix3_legacy:
16707 /* Ignore conditional suffixes matched on infix only mnemonics. */
16708 break;
16709
c19d1205 16710 case OT_cinfix3:
088fa78e 16711 case OT_cinfix3_deprecated:
c19d1205
ZW
16712 case OT_odd_infix_unc:
16713 if (!unified_syntax)
e3cb604e 16714 return 0;
c19d1205
ZW
16715 /* else fall through */
16716
16717 case OT_csuffix:
037e8744 16718 case OT_csuffixF:
c19d1205
ZW
16719 case OT_csuf_or_in3:
16720 inst.cond = cond->value;
16721 return opcode;
16722
16723 case OT_unconditional:
16724 case OT_unconditionalF:
dfa9f0d5 16725 if (thumb_mode)
c921be7d 16726 inst.cond = cond->value;
dfa9f0d5
PB
16727 else
16728 {
c921be7d 16729 /* Delayed diagnostic. */
dfa9f0d5
PB
16730 inst.error = BAD_COND;
16731 inst.cond = COND_ALWAYS;
16732 }
c19d1205 16733 return opcode;
b99bd4ef 16734
c19d1205 16735 default:
c921be7d 16736 return NULL;
c19d1205
ZW
16737 }
16738 }
b99bd4ef 16739
c19d1205
ZW
16740 /* Cannot have a usual-position infix on a mnemonic of less than
16741 six characters (five would be a suffix). */
16742 if (end - base < 6)
c921be7d 16743 return NULL;
b99bd4ef 16744
c19d1205
ZW
16745 /* Look for infixed mnemonic in the usual position. */
16746 affix = base + 3;
21d799b5 16747 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e 16748 if (!cond)
c921be7d 16749 return NULL;
e3cb604e
PB
16750
16751 memcpy (save, affix, 2);
16752 memmove (affix, affix + 2, (end - affix) - 2);
21d799b5
NC
16753 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
16754 (end - base) - 2);
e3cb604e
PB
16755 memmove (affix + 2, affix, (end - affix) - 2);
16756 memcpy (affix, save, 2);
16757
088fa78e
KH
16758 if (opcode
16759 && (opcode->tag == OT_cinfix3
16760 || opcode->tag == OT_cinfix3_deprecated
16761 || opcode->tag == OT_csuf_or_in3
16762 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 16763 {
c921be7d 16764 /* Step CM. */
278df34e 16765 if (warn_on_deprecated && unified_syntax
088fa78e
KH
16766 && (opcode->tag == OT_cinfix3
16767 || opcode->tag == OT_cinfix3_deprecated))
c19d1205
ZW
16768 as_warn (_("conditional infixes are deprecated in unified syntax"));
16769
16770 inst.cond = cond->value;
16771 return opcode;
b99bd4ef
NC
16772 }
16773
c921be7d 16774 return NULL;
b99bd4ef
NC
16775}
16776
e07e6e58
NC
16777/* This function generates an initial IT instruction, leaving its block
16778 virtually open for the new instructions. Eventually,
16779 the mask will be updated by now_it_add_mask () each time
16780 a new instruction needs to be included in the IT block.
16781 Finally, the block is closed with close_automatic_it_block ().
16782 The block closure can be requested either from md_assemble (),
16783 a tencode (), or due to a label hook. */
16784
16785static void
16786new_automatic_it_block (int cond)
16787{
16788 now_it.state = AUTOMATIC_IT_BLOCK;
16789 now_it.mask = 0x18;
16790 now_it.cc = cond;
16791 now_it.block_length = 1;
cd000bff 16792 mapping_state (MAP_THUMB);
e07e6e58 16793 now_it.insn = output_it_inst (cond, now_it.mask, NULL);
5a01bb1d
MGD
16794 now_it.warn_deprecated = FALSE;
16795 now_it.insn_cond = TRUE;
e07e6e58
NC
16796}
16797
16798/* Close an automatic IT block.
16799 See comments in new_automatic_it_block (). */
16800
16801static void
16802close_automatic_it_block (void)
16803{
16804 now_it.mask = 0x10;
16805 now_it.block_length = 0;
16806}
16807
16808/* Update the mask of the current automatically-generated IT
16809 instruction. See comments in new_automatic_it_block (). */
16810
16811static void
16812now_it_add_mask (int cond)
16813{
16814#define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
16815#define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
16816 | ((bitvalue) << (nbit)))
e07e6e58 16817 const int resulting_bit = (cond & 1);
c921be7d 16818
e07e6e58
NC
16819 now_it.mask &= 0xf;
16820 now_it.mask = SET_BIT_VALUE (now_it.mask,
16821 resulting_bit,
16822 (5 - now_it.block_length));
16823 now_it.mask = SET_BIT_VALUE (now_it.mask,
16824 1,
16825 ((5 - now_it.block_length) - 1) );
16826 output_it_inst (now_it.cc, now_it.mask, now_it.insn);
16827
16828#undef CLEAR_BIT
16829#undef SET_BIT_VALUE
e07e6e58
NC
16830}
16831
16832/* The IT blocks handling machinery is accessed through the these functions:
16833 it_fsm_pre_encode () from md_assemble ()
16834 set_it_insn_type () optional, from the tencode functions
16835 set_it_insn_type_last () ditto
16836 in_it_block () ditto
16837 it_fsm_post_encode () from md_assemble ()
16838 force_automatic_it_block_close () from label habdling functions
16839
16840 Rationale:
16841 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
16842 initializing the IT insn type with a generic initial value depending
16843 on the inst.condition.
16844 2) During the tencode function, two things may happen:
16845 a) The tencode function overrides the IT insn type by
16846 calling either set_it_insn_type (type) or set_it_insn_type_last ().
16847 b) The tencode function queries the IT block state by
16848 calling in_it_block () (i.e. to determine narrow/not narrow mode).
16849
16850 Both set_it_insn_type and in_it_block run the internal FSM state
16851 handling function (handle_it_state), because: a) setting the IT insn
16852 type may incur in an invalid state (exiting the function),
16853 and b) querying the state requires the FSM to be updated.
16854 Specifically we want to avoid creating an IT block for conditional
16855 branches, so it_fsm_pre_encode is actually a guess and we can't
16856 determine whether an IT block is required until the tencode () routine
16857 has decided what type of instruction this actually it.
16858 Because of this, if set_it_insn_type and in_it_block have to be used,
16859 set_it_insn_type has to be called first.
16860
16861 set_it_insn_type_last () is a wrapper of set_it_insn_type (type), that
16862 determines the insn IT type depending on the inst.cond code.
16863 When a tencode () routine encodes an instruction that can be
16864 either outside an IT block, or, in the case of being inside, has to be
16865 the last one, set_it_insn_type_last () will determine the proper
16866 IT instruction type based on the inst.cond code. Otherwise,
16867 set_it_insn_type can be called for overriding that logic or
16868 for covering other cases.
16869
16870 Calling handle_it_state () may not transition the IT block state to
16871 OUTSIDE_IT_BLOCK immediatelly, since the (current) state could be
16872 still queried. Instead, if the FSM determines that the state should
16873 be transitioned to OUTSIDE_IT_BLOCK, a flag is marked to be closed
16874 after the tencode () function: that's what it_fsm_post_encode () does.
16875
16876 Since in_it_block () calls the state handling function to get an
16877 updated state, an error may occur (due to invalid insns combination).
16878 In that case, inst.error is set.
16879 Therefore, inst.error has to be checked after the execution of
16880 the tencode () routine.
16881
16882 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
16883 any pending state change (if any) that didn't take place in
16884 handle_it_state () as explained above. */
16885
16886static void
16887it_fsm_pre_encode (void)
16888{
16889 if (inst.cond != COND_ALWAYS)
16890 inst.it_insn_type = INSIDE_IT_INSN;
16891 else
16892 inst.it_insn_type = OUTSIDE_IT_INSN;
16893
16894 now_it.state_handled = 0;
16895}
16896
16897/* IT state FSM handling function. */
16898
16899static int
16900handle_it_state (void)
16901{
16902 now_it.state_handled = 1;
5a01bb1d 16903 now_it.insn_cond = FALSE;
e07e6e58
NC
16904
16905 switch (now_it.state)
16906 {
16907 case OUTSIDE_IT_BLOCK:
16908 switch (inst.it_insn_type)
16909 {
16910 case OUTSIDE_IT_INSN:
16911 break;
16912
16913 case INSIDE_IT_INSN:
16914 case INSIDE_IT_LAST_INSN:
16915 if (thumb_mode == 0)
16916 {
c921be7d 16917 if (unified_syntax
e07e6e58
NC
16918 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
16919 as_tsktsk (_("Warning: conditional outside an IT block"\
16920 " for Thumb."));
16921 }
16922 else
16923 {
16924 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
16925 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2))
16926 {
16927 /* Automatically generate the IT instruction. */
16928 new_automatic_it_block (inst.cond);
16929 if (inst.it_insn_type == INSIDE_IT_LAST_INSN)
16930 close_automatic_it_block ();
16931 }
16932 else
16933 {
16934 inst.error = BAD_OUT_IT;
16935 return FAIL;
16936 }
16937 }
16938 break;
16939
16940 case IF_INSIDE_IT_LAST_INSN:
16941 case NEUTRAL_IT_INSN:
16942 break;
16943
16944 case IT_INSN:
16945 now_it.state = MANUAL_IT_BLOCK;
16946 now_it.block_length = 0;
16947 break;
16948 }
16949 break;
16950
16951 case AUTOMATIC_IT_BLOCK:
16952 /* Three things may happen now:
16953 a) We should increment current it block size;
16954 b) We should close current it block (closing insn or 4 insns);
16955 c) We should close current it block and start a new one (due
16956 to incompatible conditions or
16957 4 insns-length block reached). */
16958
16959 switch (inst.it_insn_type)
16960 {
16961 case OUTSIDE_IT_INSN:
16962 /* The closure of the block shall happen immediatelly,
16963 so any in_it_block () call reports the block as closed. */
16964 force_automatic_it_block_close ();
16965 break;
16966
16967 case INSIDE_IT_INSN:
16968 case INSIDE_IT_LAST_INSN:
16969 case IF_INSIDE_IT_LAST_INSN:
16970 now_it.block_length++;
16971
16972 if (now_it.block_length > 4
16973 || !now_it_compatible (inst.cond))
16974 {
16975 force_automatic_it_block_close ();
16976 if (inst.it_insn_type != IF_INSIDE_IT_LAST_INSN)
16977 new_automatic_it_block (inst.cond);
16978 }
16979 else
16980 {
5a01bb1d 16981 now_it.insn_cond = TRUE;
e07e6e58
NC
16982 now_it_add_mask (inst.cond);
16983 }
16984
16985 if (now_it.state == AUTOMATIC_IT_BLOCK
16986 && (inst.it_insn_type == INSIDE_IT_LAST_INSN
16987 || inst.it_insn_type == IF_INSIDE_IT_LAST_INSN))
16988 close_automatic_it_block ();
16989 break;
16990
16991 case NEUTRAL_IT_INSN:
16992 now_it.block_length++;
5a01bb1d 16993 now_it.insn_cond = TRUE;
e07e6e58
NC
16994
16995 if (now_it.block_length > 4)
16996 force_automatic_it_block_close ();
16997 else
16998 now_it_add_mask (now_it.cc & 1);
16999 break;
17000
17001 case IT_INSN:
17002 close_automatic_it_block ();
17003 now_it.state = MANUAL_IT_BLOCK;
17004 break;
17005 }
17006 break;
17007
17008 case MANUAL_IT_BLOCK:
17009 {
17010 /* Check conditional suffixes. */
17011 const int cond = now_it.cc ^ ((now_it.mask >> 4) & 1) ^ 1;
17012 int is_last;
17013 now_it.mask <<= 1;
17014 now_it.mask &= 0x1f;
17015 is_last = (now_it.mask == 0x10);
5a01bb1d 17016 now_it.insn_cond = TRUE;
e07e6e58
NC
17017
17018 switch (inst.it_insn_type)
17019 {
17020 case OUTSIDE_IT_INSN:
17021 inst.error = BAD_NOT_IT;
17022 return FAIL;
17023
17024 case INSIDE_IT_INSN:
17025 if (cond != inst.cond)
17026 {
17027 inst.error = BAD_IT_COND;
17028 return FAIL;
17029 }
17030 break;
17031
17032 case INSIDE_IT_LAST_INSN:
17033 case IF_INSIDE_IT_LAST_INSN:
17034 if (cond != inst.cond)
17035 {
17036 inst.error = BAD_IT_COND;
17037 return FAIL;
17038 }
17039 if (!is_last)
17040 {
17041 inst.error = BAD_BRANCH;
17042 return FAIL;
17043 }
17044 break;
17045
17046 case NEUTRAL_IT_INSN:
17047 /* The BKPT instruction is unconditional even in an IT block. */
17048 break;
17049
17050 case IT_INSN:
17051 inst.error = BAD_IT_IT;
17052 return FAIL;
17053 }
17054 }
17055 break;
17056 }
17057
17058 return SUCCESS;
17059}
17060
5a01bb1d
MGD
17061struct depr_insn_mask
17062{
17063 unsigned long pattern;
17064 unsigned long mask;
17065 const char* description;
17066};
17067
17068/* List of 16-bit instruction patterns deprecated in an IT block in
17069 ARMv8. */
17070static const struct depr_insn_mask depr_it_insns[] = {
17071 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
17072 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
17073 { 0xa000, 0xb800, N_("ADR") },
17074 { 0x4800, 0xf800, N_("Literal loads") },
17075 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
17076 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
17077 { 0, 0, NULL }
17078};
17079
e07e6e58
NC
17080static void
17081it_fsm_post_encode (void)
17082{
17083 int is_last;
17084
17085 if (!now_it.state_handled)
17086 handle_it_state ();
17087
5a01bb1d
MGD
17088 if (now_it.insn_cond
17089 && !now_it.warn_deprecated
17090 && warn_on_deprecated
17091 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
17092 {
17093 if (inst.instruction >= 0x10000)
17094 {
0a8897c7 17095 as_warn (_("IT blocks containing 32-bit Thumb instructions are "
5a01bb1d
MGD
17096 "deprecated in ARMv8"));
17097 now_it.warn_deprecated = TRUE;
17098 }
17099 else
17100 {
17101 const struct depr_insn_mask *p = depr_it_insns;
17102
17103 while (p->mask != 0)
17104 {
17105 if ((inst.instruction & p->mask) == p->pattern)
17106 {
0a8897c7 17107 as_warn (_("IT blocks containing 16-bit Thumb instructions "
5a01bb1d
MGD
17108 "of the following class are deprecated in ARMv8: "
17109 "%s"), p->description);
17110 now_it.warn_deprecated = TRUE;
17111 break;
17112 }
17113
17114 ++p;
17115 }
17116 }
17117
17118 if (now_it.block_length > 1)
17119 {
0a8897c7
KT
17120 as_warn (_("IT blocks containing more than one conditional "
17121 "instruction are deprecated in ARMv8"));
5a01bb1d
MGD
17122 now_it.warn_deprecated = TRUE;
17123 }
17124 }
17125
e07e6e58
NC
17126 is_last = (now_it.mask == 0x10);
17127 if (is_last)
17128 {
17129 now_it.state = OUTSIDE_IT_BLOCK;
17130 now_it.mask = 0;
17131 }
17132}
17133
17134static void
17135force_automatic_it_block_close (void)
17136{
17137 if (now_it.state == AUTOMATIC_IT_BLOCK)
17138 {
17139 close_automatic_it_block ();
17140 now_it.state = OUTSIDE_IT_BLOCK;
17141 now_it.mask = 0;
17142 }
17143}
17144
17145static int
17146in_it_block (void)
17147{
17148 if (!now_it.state_handled)
17149 handle_it_state ();
17150
17151 return now_it.state != OUTSIDE_IT_BLOCK;
17152}
17153
c19d1205
ZW
17154void
17155md_assemble (char *str)
b99bd4ef 17156{
c19d1205
ZW
17157 char *p = str;
17158 const struct asm_opcode * opcode;
b99bd4ef 17159
c19d1205
ZW
17160 /* Align the previous label if needed. */
17161 if (last_label_seen != NULL)
b99bd4ef 17162 {
c19d1205
ZW
17163 symbol_set_frag (last_label_seen, frag_now);
17164 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
17165 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
17166 }
17167
c19d1205
ZW
17168 memset (&inst, '\0', sizeof (inst));
17169 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 17170
c19d1205
ZW
17171 opcode = opcode_lookup (&p);
17172 if (!opcode)
b99bd4ef 17173 {
c19d1205 17174 /* It wasn't an instruction, but it might be a register alias of
dcbf9037 17175 the form alias .req reg, or a Neon .dn/.qn directive. */
c921be7d
NC
17176 if (! create_register_alias (str, p)
17177 && ! create_neon_reg_alias (str, p))
c19d1205 17178 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 17179
b99bd4ef
NC
17180 return;
17181 }
17182
278df34e 17183 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
088fa78e
KH
17184 as_warn (_("s suffix on comparison instruction is deprecated"));
17185
037e8744
JB
17186 /* The value which unconditional instructions should have in place of the
17187 condition field. */
17188 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
17189
c19d1205 17190 if (thumb_mode)
b99bd4ef 17191 {
e74cfd16 17192 arm_feature_set variant;
8f06b2d8
PB
17193
17194 variant = cpu_variant;
17195 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
17196 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
17197 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 17198 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
17199 if (!opcode->tvariant
17200 || (thumb_mode == 1
17201 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 17202 {
bf3eeda7 17203 as_bad (_("selected processor does not support Thumb mode `%s'"), str);
b99bd4ef
NC
17204 return;
17205 }
c19d1205
ZW
17206 if (inst.cond != COND_ALWAYS && !unified_syntax
17207 && opcode->tencode != do_t_branch)
b99bd4ef 17208 {
c19d1205 17209 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
17210 return;
17211 }
17212
752d5da4 17213 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2))
076d447c 17214 {
7e806470 17215 if (opcode->tencode != do_t_blx && opcode->tencode != do_t_branch23
752d5da4
NC
17216 && !(ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_msr)
17217 || ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_barrier)))
17218 {
17219 /* Two things are addressed here.
17220 1) Implicit require narrow instructions on Thumb-1.
17221 This avoids relaxation accidentally introducing Thumb-2
17222 instructions.
17223 2) Reject wide instructions in non Thumb-2 cores. */
17224 if (inst.size_req == 0)
17225 inst.size_req = 2;
17226 else if (inst.size_req == 4)
17227 {
bf3eeda7 17228 as_bad (_("selected processor does not support Thumb-2 mode `%s'"), str);
752d5da4
NC
17229 return;
17230 }
17231 }
076d447c
PB
17232 }
17233
c19d1205
ZW
17234 inst.instruction = opcode->tvalue;
17235
5be8be5d 17236 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
e07e6e58
NC
17237 {
17238 /* Prepare the it_insn_type for those encodings that don't set
17239 it. */
17240 it_fsm_pre_encode ();
c19d1205 17241
e07e6e58
NC
17242 opcode->tencode ();
17243
17244 it_fsm_post_encode ();
17245 }
e27ec89e 17246
0110f2b8 17247 if (!(inst.error || inst.relax))
b99bd4ef 17248 {
9c2799c2 17249 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
c19d1205
ZW
17250 inst.size = (inst.instruction > 0xffff ? 4 : 2);
17251 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 17252 {
c19d1205 17253 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
17254 return;
17255 }
17256 }
076d447c
PB
17257
17258 /* Something has gone badly wrong if we try to relax a fixed size
17259 instruction. */
9c2799c2 17260 gas_assert (inst.size_req == 0 || !inst.relax);
076d447c 17261
e74cfd16
PB
17262 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17263 *opcode->tvariant);
ee065d83 17264 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
708587a4 17265 set those bits when Thumb-2 32-bit instructions are seen. ie.
7e806470 17266 anything other than bl/blx and v6-M instructions.
ee065d83 17267 This is overly pessimistic for relaxable instructions. */
7e806470
PB
17268 if (((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
17269 || inst.relax)
e07e6e58
NC
17270 && !(ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
17271 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier)))
e74cfd16
PB
17272 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
17273 arm_ext_v6t2);
cd000bff 17274
88714cb8
DG
17275 check_neon_suffixes;
17276
cd000bff 17277 if (!inst.error)
c877a2f2
NC
17278 {
17279 mapping_state (MAP_THUMB);
17280 }
c19d1205 17281 }
3e9e4fcf 17282 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205 17283 {
845b51d6
PB
17284 bfd_boolean is_bx;
17285
17286 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
17287 is_bx = (opcode->aencode == do_bx);
17288
c19d1205 17289 /* Check that this instruction is supported for this CPU. */
845b51d6
PB
17290 if (!(is_bx && fix_v4bx)
17291 && !(opcode->avariant &&
17292 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
b99bd4ef 17293 {
bf3eeda7 17294 as_bad (_("selected processor does not support ARM mode `%s'"), str);
c19d1205 17295 return;
b99bd4ef 17296 }
c19d1205 17297 if (inst.size_req)
b99bd4ef 17298 {
c19d1205
ZW
17299 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
17300 return;
b99bd4ef
NC
17301 }
17302
c19d1205
ZW
17303 inst.instruction = opcode->avalue;
17304 if (opcode->tag == OT_unconditionalF)
17305 inst.instruction |= 0xF << 28;
17306 else
17307 inst.instruction |= inst.cond << 28;
17308 inst.size = INSN_SIZE;
5be8be5d 17309 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
e07e6e58
NC
17310 {
17311 it_fsm_pre_encode ();
17312 opcode->aencode ();
17313 it_fsm_post_encode ();
17314 }
ee065d83
PB
17315 /* Arm mode bx is marked as both v4T and v5 because it's still required
17316 on a hypothetical non-thumb v5 core. */
845b51d6 17317 if (is_bx)
e74cfd16 17318 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 17319 else
e74cfd16
PB
17320 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
17321 *opcode->avariant);
88714cb8
DG
17322
17323 check_neon_suffixes;
17324
cd000bff 17325 if (!inst.error)
c877a2f2
NC
17326 {
17327 mapping_state (MAP_ARM);
17328 }
b99bd4ef 17329 }
3e9e4fcf
JB
17330 else
17331 {
17332 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
17333 "-- `%s'"), str);
17334 return;
17335 }
c19d1205
ZW
17336 output_inst (str);
17337}
b99bd4ef 17338
e07e6e58
NC
17339static void
17340check_it_blocks_finished (void)
17341{
17342#ifdef OBJ_ELF
17343 asection *sect;
17344
17345 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
17346 if (seg_info (sect)->tc_segment_info_data.current_it.state
17347 == MANUAL_IT_BLOCK)
17348 {
17349 as_warn (_("section '%s' finished with an open IT block."),
17350 sect->name);
17351 }
17352#else
17353 if (now_it.state == MANUAL_IT_BLOCK)
17354 as_warn (_("file finished with an open IT block."));
17355#endif
17356}
17357
c19d1205
ZW
17358/* Various frobbings of labels and their addresses. */
17359
17360void
17361arm_start_line_hook (void)
17362{
17363 last_label_seen = NULL;
b99bd4ef
NC
17364}
17365
c19d1205
ZW
17366void
17367arm_frob_label (symbolS * sym)
b99bd4ef 17368{
c19d1205 17369 last_label_seen = sym;
b99bd4ef 17370
c19d1205 17371 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 17372
c19d1205
ZW
17373#if defined OBJ_COFF || defined OBJ_ELF
17374 ARM_SET_INTERWORK (sym, support_interwork);
17375#endif
b99bd4ef 17376
e07e6e58
NC
17377 force_automatic_it_block_close ();
17378
5f4273c7 17379 /* Note - do not allow local symbols (.Lxxx) to be labelled
c19d1205
ZW
17380 as Thumb functions. This is because these labels, whilst
17381 they exist inside Thumb code, are not the entry points for
17382 possible ARM->Thumb calls. Also, these labels can be used
17383 as part of a computed goto or switch statement. eg gcc
17384 can generate code that looks like this:
b99bd4ef 17385
c19d1205
ZW
17386 ldr r2, [pc, .Laaa]
17387 lsl r3, r3, #2
17388 ldr r2, [r3, r2]
17389 mov pc, r2
b99bd4ef 17390
c19d1205
ZW
17391 .Lbbb: .word .Lxxx
17392 .Lccc: .word .Lyyy
17393 ..etc...
17394 .Laaa: .word Lbbb
b99bd4ef 17395
c19d1205
ZW
17396 The first instruction loads the address of the jump table.
17397 The second instruction converts a table index into a byte offset.
17398 The third instruction gets the jump address out of the table.
17399 The fourth instruction performs the jump.
b99bd4ef 17400
c19d1205
ZW
17401 If the address stored at .Laaa is that of a symbol which has the
17402 Thumb_Func bit set, then the linker will arrange for this address
17403 to have the bottom bit set, which in turn would mean that the
17404 address computation performed by the third instruction would end
17405 up with the bottom bit set. Since the ARM is capable of unaligned
17406 word loads, the instruction would then load the incorrect address
17407 out of the jump table, and chaos would ensue. */
17408 if (label_is_thumb_function_name
17409 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
17410 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 17411 {
c19d1205
ZW
17412 /* When the address of a Thumb function is taken the bottom
17413 bit of that address should be set. This will allow
17414 interworking between Arm and Thumb functions to work
17415 correctly. */
b99bd4ef 17416
c19d1205 17417 THUMB_SET_FUNC (sym, 1);
b99bd4ef 17418
c19d1205 17419 label_is_thumb_function_name = FALSE;
b99bd4ef 17420 }
07a53e5c 17421
07a53e5c 17422 dwarf2_emit_label (sym);
b99bd4ef
NC
17423}
17424
c921be7d 17425bfd_boolean
c19d1205 17426arm_data_in_code (void)
b99bd4ef 17427{
c19d1205 17428 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 17429 {
c19d1205
ZW
17430 *input_line_pointer = '/';
17431 input_line_pointer += 5;
17432 *input_line_pointer = 0;
c921be7d 17433 return TRUE;
b99bd4ef
NC
17434 }
17435
c921be7d 17436 return FALSE;
b99bd4ef
NC
17437}
17438
c19d1205
ZW
17439char *
17440arm_canonicalize_symbol_name (char * name)
b99bd4ef 17441{
c19d1205 17442 int len;
b99bd4ef 17443
c19d1205
ZW
17444 if (thumb_mode && (len = strlen (name)) > 5
17445 && streq (name + len - 5, "/data"))
17446 *(name + len - 5) = 0;
b99bd4ef 17447
c19d1205 17448 return name;
b99bd4ef 17449}
c19d1205
ZW
17450\f
17451/* Table of all register names defined by default. The user can
17452 define additional names with .req. Note that all register names
17453 should appear in both upper and lowercase variants. Some registers
17454 also have mixed-case names. */
b99bd4ef 17455
dcbf9037 17456#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 17457#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 17458#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
17459#define REGSET(p,t) \
17460 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
17461 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
17462 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
17463 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
17464#define REGSETH(p,t) \
17465 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
17466 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
17467 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
17468 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
17469#define REGSET2(p,t) \
17470 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
17471 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
17472 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
17473 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
90ec0d68
MGD
17474#define SPLRBANK(base,bank,t) \
17475 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
17476 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
17477 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
17478 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
17479 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
17480 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
7ed4c4c5 17481
c19d1205 17482static const struct reg_entry reg_names[] =
7ed4c4c5 17483{
c19d1205
ZW
17484 /* ARM integer registers. */
17485 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 17486
c19d1205
ZW
17487 /* ATPCS synonyms. */
17488 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
17489 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
17490 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 17491
c19d1205
ZW
17492 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
17493 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
17494 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 17495
c19d1205
ZW
17496 /* Well-known aliases. */
17497 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
17498 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
17499
17500 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
17501 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
17502
17503 /* Coprocessor numbers. */
17504 REGSET(p, CP), REGSET(P, CP),
17505
17506 /* Coprocessor register numbers. The "cr" variants are for backward
17507 compatibility. */
17508 REGSET(c, CN), REGSET(C, CN),
17509 REGSET(cr, CN), REGSET(CR, CN),
17510
90ec0d68
MGD
17511 /* ARM banked registers. */
17512 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
17513 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
17514 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
17515 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
17516 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
17517 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
17518 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
17519
17520 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
17521 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
17522 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
17523 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
17524 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
1472d06f 17525 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(sp_fiq,512|(13<<16),RNB),
90ec0d68
MGD
17526 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
17527 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
17528
17529 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
17530 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
17531 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
17532 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
17533 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
17534 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
17535 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
fa94de6b 17536 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
90ec0d68
MGD
17537 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
17538
c19d1205
ZW
17539 /* FPA registers. */
17540 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
17541 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
17542
17543 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
17544 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
17545
17546 /* VFP SP registers. */
5287ad62
JB
17547 REGSET(s,VFS), REGSET(S,VFS),
17548 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
17549
17550 /* VFP DP Registers. */
5287ad62
JB
17551 REGSET(d,VFD), REGSET(D,VFD),
17552 /* Extra Neon DP registers. */
17553 REGSETH(d,VFD), REGSETH(D,VFD),
17554
17555 /* Neon QP registers. */
17556 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
17557
17558 /* VFP control registers. */
17559 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
17560 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
cd2cf30b
PB
17561 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
17562 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
17563 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
17564 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
c19d1205
ZW
17565
17566 /* Maverick DSP coprocessor registers. */
17567 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
17568 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
17569
17570 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
17571 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
17572 REGDEF(dspsc,0,DSPSC),
17573
17574 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
17575 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
17576 REGDEF(DSPSC,0,DSPSC),
17577
17578 /* iWMMXt data registers - p0, c0-15. */
17579 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
17580
17581 /* iWMMXt control registers - p1, c0-3. */
17582 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
17583 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
17584 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
17585 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
17586
17587 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
17588 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
17589 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
17590 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
17591 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
17592
17593 /* XScale accumulator registers. */
17594 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
17595};
17596#undef REGDEF
17597#undef REGNUM
17598#undef REGSET
7ed4c4c5 17599
c19d1205
ZW
17600/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
17601 within psr_required_here. */
17602static const struct asm_psr psrs[] =
17603{
17604 /* Backward compatibility notation. Note that "all" is no longer
17605 truly all possible PSR bits. */
17606 {"all", PSR_c | PSR_f},
17607 {"flg", PSR_f},
17608 {"ctl", PSR_c},
17609
17610 /* Individual flags. */
17611 {"f", PSR_f},
17612 {"c", PSR_c},
17613 {"x", PSR_x},
17614 {"s", PSR_s},
59b42a0d 17615
c19d1205
ZW
17616 /* Combinations of flags. */
17617 {"fs", PSR_f | PSR_s},
17618 {"fx", PSR_f | PSR_x},
17619 {"fc", PSR_f | PSR_c},
17620 {"sf", PSR_s | PSR_f},
17621 {"sx", PSR_s | PSR_x},
17622 {"sc", PSR_s | PSR_c},
17623 {"xf", PSR_x | PSR_f},
17624 {"xs", PSR_x | PSR_s},
17625 {"xc", PSR_x | PSR_c},
17626 {"cf", PSR_c | PSR_f},
17627 {"cs", PSR_c | PSR_s},
17628 {"cx", PSR_c | PSR_x},
17629 {"fsx", PSR_f | PSR_s | PSR_x},
17630 {"fsc", PSR_f | PSR_s | PSR_c},
17631 {"fxs", PSR_f | PSR_x | PSR_s},
17632 {"fxc", PSR_f | PSR_x | PSR_c},
17633 {"fcs", PSR_f | PSR_c | PSR_s},
17634 {"fcx", PSR_f | PSR_c | PSR_x},
17635 {"sfx", PSR_s | PSR_f | PSR_x},
17636 {"sfc", PSR_s | PSR_f | PSR_c},
17637 {"sxf", PSR_s | PSR_x | PSR_f},
17638 {"sxc", PSR_s | PSR_x | PSR_c},
17639 {"scf", PSR_s | PSR_c | PSR_f},
17640 {"scx", PSR_s | PSR_c | PSR_x},
17641 {"xfs", PSR_x | PSR_f | PSR_s},
17642 {"xfc", PSR_x | PSR_f | PSR_c},
17643 {"xsf", PSR_x | PSR_s | PSR_f},
17644 {"xsc", PSR_x | PSR_s | PSR_c},
17645 {"xcf", PSR_x | PSR_c | PSR_f},
17646 {"xcs", PSR_x | PSR_c | PSR_s},
17647 {"cfs", PSR_c | PSR_f | PSR_s},
17648 {"cfx", PSR_c | PSR_f | PSR_x},
17649 {"csf", PSR_c | PSR_s | PSR_f},
17650 {"csx", PSR_c | PSR_s | PSR_x},
17651 {"cxf", PSR_c | PSR_x | PSR_f},
17652 {"cxs", PSR_c | PSR_x | PSR_s},
17653 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
17654 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
17655 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
17656 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
17657 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
17658 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
17659 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
17660 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
17661 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
17662 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
17663 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
17664 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
17665 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
17666 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
17667 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
17668 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
17669 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
17670 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
17671 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
17672 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
17673 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
17674 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
17675 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
17676 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
17677};
17678
62b3e311
PB
17679/* Table of V7M psr names. */
17680static const struct asm_psr v7m_psrs[] =
17681{
2b744c99
PB
17682 {"apsr", 0 }, {"APSR", 0 },
17683 {"iapsr", 1 }, {"IAPSR", 1 },
17684 {"eapsr", 2 }, {"EAPSR", 2 },
17685 {"psr", 3 }, {"PSR", 3 },
17686 {"xpsr", 3 }, {"XPSR", 3 }, {"xPSR", 3 },
17687 {"ipsr", 5 }, {"IPSR", 5 },
17688 {"epsr", 6 }, {"EPSR", 6 },
17689 {"iepsr", 7 }, {"IEPSR", 7 },
17690 {"msp", 8 }, {"MSP", 8 },
17691 {"psp", 9 }, {"PSP", 9 },
17692 {"primask", 16}, {"PRIMASK", 16},
17693 {"basepri", 17}, {"BASEPRI", 17},
00bbc0bd
NC
17694 {"basepri_max", 18}, {"BASEPRI_MAX", 18},
17695 {"basepri_max", 18}, {"BASEPRI_MASK", 18}, /* Typo, preserved for backwards compatibility. */
2b744c99
PB
17696 {"faultmask", 19}, {"FAULTMASK", 19},
17697 {"control", 20}, {"CONTROL", 20}
62b3e311
PB
17698};
17699
c19d1205
ZW
17700/* Table of all shift-in-operand names. */
17701static const struct asm_shift_name shift_names [] =
b99bd4ef 17702{
c19d1205
ZW
17703 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
17704 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
17705 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
17706 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
17707 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
17708 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
17709};
b99bd4ef 17710
c19d1205
ZW
17711/* Table of all explicit relocation names. */
17712#ifdef OBJ_ELF
17713static struct reloc_entry reloc_names[] =
17714{
17715 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
17716 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
17717 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
17718 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
17719 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
17720 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
17721 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
17722 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
17723 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
17724 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
b43420e6 17725 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
0855e32b
NS
17726 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
17727 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
17728 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
17729 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
17730 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
17731 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
17732 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ}
c19d1205
ZW
17733};
17734#endif
b99bd4ef 17735
c19d1205
ZW
17736/* Table of all conditional affixes. 0xF is not defined as a condition code. */
17737static const struct asm_cond conds[] =
17738{
17739 {"eq", 0x0},
17740 {"ne", 0x1},
17741 {"cs", 0x2}, {"hs", 0x2},
17742 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
17743 {"mi", 0x4},
17744 {"pl", 0x5},
17745 {"vs", 0x6},
17746 {"vc", 0x7},
17747 {"hi", 0x8},
17748 {"ls", 0x9},
17749 {"ge", 0xa},
17750 {"lt", 0xb},
17751 {"gt", 0xc},
17752 {"le", 0xd},
17753 {"al", 0xe}
17754};
bfae80f2 17755
e797f7e0
MGD
17756#define UL_BARRIER(L,U,CODE,FEAT) \
17757 { L, CODE, ARM_FEATURE (FEAT, 0) }, \
17758 { U, CODE, ARM_FEATURE (FEAT, 0) }
17759
62b3e311
PB
17760static struct asm_barrier_opt barrier_opt_names[] =
17761{
e797f7e0
MGD
17762 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
17763 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
17764 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
17765 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
17766 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
17767 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
17768 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
17769 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
17770 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
17771 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
17772 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
17773 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
17774 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
17775 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
17776 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
17777 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
62b3e311
PB
17778};
17779
e797f7e0
MGD
17780#undef UL_BARRIER
17781
c19d1205
ZW
17782/* Table of ARM-format instructions. */
17783
17784/* Macros for gluing together operand strings. N.B. In all cases
17785 other than OPS0, the trailing OP_stop comes from default
17786 zero-initialization of the unspecified elements of the array. */
17787#define OPS0() { OP_stop, }
17788#define OPS1(a) { OP_##a, }
17789#define OPS2(a,b) { OP_##a,OP_##b, }
17790#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
17791#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
17792#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
17793#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
17794
5be8be5d
DG
17795/* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
17796 This is useful when mixing operands for ARM and THUMB, i.e. using the
17797 MIX_ARM_THUMB_OPERANDS macro.
17798 In order to use these macros, prefix the number of operands with _
17799 e.g. _3. */
17800#define OPS_1(a) { a, }
17801#define OPS_2(a,b) { a,b, }
17802#define OPS_3(a,b,c) { a,b,c, }
17803#define OPS_4(a,b,c,d) { a,b,c,d, }
17804#define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
17805#define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
17806
c19d1205
ZW
17807/* These macros abstract out the exact format of the mnemonic table and
17808 save some repeated characters. */
17809
17810/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
17811#define TxCE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17812 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 17813 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17814
17815/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
17816 a T_MNEM_xyz enumerator. */
17817#define TCE(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17818 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17819#define tCE(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17820 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
17821
17822/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
17823 infix after the third character. */
17824#define TxC3(mnem, op, top, nops, ops, ae, te) \
21d799b5 17825 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 17826 THUMB_VARIANT, do_##ae, do_##te }
088fa78e 17827#define TxC3w(mnem, op, top, nops, ops, ae, te) \
21d799b5 17828 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
088fa78e 17829 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 17830#define TC3(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17831 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e 17832#define TC3w(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 17833 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 17834#define tC3(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17835 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
088fa78e 17836#define tC3w(mnem, aop, top, nops, ops, ae, te) \
21d799b5 17837 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205 17838
c19d1205 17839/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
17840 field is still 0xE. Many of the Thumb variants can be executed
17841 conditionally, so this is checked separately. */
c19d1205 17842#define TUE(mnem, op, top, nops, ops, ae, te) \
21d799b5 17843 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17844 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 17845
dd5181d5
KT
17846/* Same as TUE but the encoding function for ARM and Thumb modes is the same.
17847 Used by mnemonics that have very minimal differences in the encoding for
17848 ARM and Thumb variants and can be handled in a common function. */
17849#define TUEc(mnem, op, top, nops, ops, en) \
17850 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
17851 THUMB_VARIANT, do_##en, do_##en }
17852
c19d1205
ZW
17853/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
17854 condition code field. */
17855#define TUF(mnem, op, top, nops, ops, ae, te) \
21d799b5 17856 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 17857 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
17858
17859/* ARM-only variants of all the above. */
6a86118a 17860#define CE(mnem, op, nops, ops, ae) \
21d799b5 17861 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
6a86118a
NC
17862
17863#define C3(mnem, op, nops, ops, ae) \
17864 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17865
e3cb604e
PB
17866/* Legacy mnemonics that always have conditional infix after the third
17867 character. */
17868#define CL(mnem, op, nops, ops, ae) \
21d799b5 17869 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17870 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17871
8f06b2d8
PB
17872/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
17873#define cCE(mnem, op, nops, ops, ae) \
21d799b5 17874 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17875
e3cb604e
PB
17876/* Legacy coprocessor instructions where conditional infix and conditional
17877 suffix are ambiguous. For consistency this includes all FPA instructions,
17878 not just the potentially ambiguous ones. */
17879#define cCL(mnem, op, nops, ops, ae) \
21d799b5 17880 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
17881 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
17882
17883/* Coprocessor, takes either a suffix or a position-3 infix
17884 (for an FPA corner case). */
17885#define C3E(mnem, op, nops, ops, ae) \
21d799b5 17886 { mnem, OPS##nops ops, OT_csuf_or_in3, \
e3cb604e 17887 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 17888
6a86118a 17889#define xCM_(m1, m2, m3, op, nops, ops, ae) \
21d799b5
NC
17890 { m1 #m2 m3, OPS##nops ops, \
17891 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
6a86118a
NC
17892 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
17893
17894#define CM(m1, m2, op, nops, ops, ae) \
e07e6e58
NC
17895 xCM_ (m1, , m2, op, nops, ops, ae), \
17896 xCM_ (m1, eq, m2, op, nops, ops, ae), \
17897 xCM_ (m1, ne, m2, op, nops, ops, ae), \
17898 xCM_ (m1, cs, m2, op, nops, ops, ae), \
17899 xCM_ (m1, hs, m2, op, nops, ops, ae), \
17900 xCM_ (m1, cc, m2, op, nops, ops, ae), \
17901 xCM_ (m1, ul, m2, op, nops, ops, ae), \
17902 xCM_ (m1, lo, m2, op, nops, ops, ae), \
17903 xCM_ (m1, mi, m2, op, nops, ops, ae), \
17904 xCM_ (m1, pl, m2, op, nops, ops, ae), \
17905 xCM_ (m1, vs, m2, op, nops, ops, ae), \
17906 xCM_ (m1, vc, m2, op, nops, ops, ae), \
17907 xCM_ (m1, hi, m2, op, nops, ops, ae), \
17908 xCM_ (m1, ls, m2, op, nops, ops, ae), \
17909 xCM_ (m1, ge, m2, op, nops, ops, ae), \
17910 xCM_ (m1, lt, m2, op, nops, ops, ae), \
17911 xCM_ (m1, gt, m2, op, nops, ops, ae), \
17912 xCM_ (m1, le, m2, op, nops, ops, ae), \
17913 xCM_ (m1, al, m2, op, nops, ops, ae)
6a86118a
NC
17914
17915#define UE(mnem, op, nops, ops, ae) \
17916 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17917
17918#define UF(mnem, op, nops, ops, ae) \
17919 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
17920
5287ad62
JB
17921/* Neon data-processing. ARM versions are unconditional with cond=0xf.
17922 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
17923 use the same encoding function for each. */
17924#define NUF(mnem, op, nops, ops, enc) \
17925 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
17926 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17927
17928/* Neon data processing, version which indirects through neon_enc_tab for
17929 the various overloaded versions of opcodes. */
17930#define nUF(mnem, op, nops, ops, enc) \
21d799b5 17931 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17932 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17933
17934/* Neon insn with conditional suffix for the ARM version, non-overloaded
17935 version. */
037e8744
JB
17936#define NCE_tag(mnem, op, nops, ops, enc, tag) \
17937 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
17938 THUMB_VARIANT, do_##enc, do_##enc }
17939
037e8744 17940#define NCE(mnem, op, nops, ops, enc) \
e07e6e58 17941 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17942
17943#define NCEF(mnem, op, nops, ops, enc) \
e07e6e58 17944 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17945
5287ad62 17946/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744 17947#define nCE_tag(mnem, op, nops, ops, enc, tag) \
21d799b5 17948 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
17949 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
17950
037e8744 17951#define nCE(mnem, op, nops, ops, enc) \
e07e6e58 17952 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
17953
17954#define nCEF(mnem, op, nops, ops, enc) \
e07e6e58 17955 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 17956
c19d1205
ZW
17957#define do_0 0
17958
c19d1205 17959static const struct asm_opcode insns[] =
bfae80f2 17960{
e74cfd16
PB
17961#define ARM_VARIANT &arm_ext_v1 /* Core ARM Instructions. */
17962#define THUMB_VARIANT &arm_ext_v4t
21d799b5
NC
17963 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
17964 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
17965 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
17966 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
17967 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
17968 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
17969 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
17970 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
17971 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
17972 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
17973 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
17974 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
17975 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
17976 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
17977 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
17978 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
c19d1205
ZW
17979
17980 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
17981 for setting PSR flag bits. They are obsolete in V6 and do not
17982 have Thumb equivalents. */
21d799b5
NC
17983 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
17984 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
17985 CL("tstp", 110f000, 2, (RR, SH), cmp),
17986 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
17987 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
17988 CL("cmpp", 150f000, 2, (RR, SH), cmp),
17989 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
17990 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
17991 CL("cmnp", 170f000, 2, (RR, SH), cmp),
17992
17993 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
17994 tC3("movs", 1b00000, _movs, 2, (RR, SH), mov, t_mov_cmp),
17995 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
17996 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
17997
17998 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
5be8be5d
DG
17999 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
18000 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
18001 OP_RRnpc),
18002 OP_ADDRGLDR),ldst, t_ldst),
18003 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
21d799b5
NC
18004
18005 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18006 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18007 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18008 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18009 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18010 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18011
18012 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
18013 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
18014 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
18015 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 18016
c19d1205 18017 /* Pseudo ops. */
21d799b5 18018 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac 18019 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
21d799b5 18020 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
c19d1205
ZW
18021
18022 /* Thumb-compatibility pseudo ops. */
21d799b5
NC
18023 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
18024 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
18025 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
18026 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
18027 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
18028 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
18029 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
18030 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
18031 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
18032 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
18033 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
18034 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
c19d1205 18035
16a4cf17 18036 /* These may simplify to neg. */
21d799b5
NC
18037 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
18038 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
16a4cf17 18039
c921be7d
NC
18040#undef THUMB_VARIANT
18041#define THUMB_VARIANT & arm_ext_v6
18042
21d799b5 18043 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
18044
18045 /* V1 instructions with no Thumb analogue prior to V6T2. */
c921be7d
NC
18046#undef THUMB_VARIANT
18047#define THUMB_VARIANT & arm_ext_v6t2
18048
21d799b5
NC
18049 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
18050 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
18051 CL("teqp", 130f000, 2, (RR, SH), cmp),
c19d1205 18052
5be8be5d
DG
18053 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
18054 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
18055 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
18056 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
c19d1205 18057
21d799b5
NC
18058 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18059 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 18060
21d799b5
NC
18061 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
18062 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
18063
18064 /* V1 instructions with no Thumb analogue at all. */
21d799b5 18065 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
c19d1205
ZW
18066 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
18067
18068 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
18069 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
18070 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
18071 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
18072 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
18073 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
18074 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
18075 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
18076
c921be7d
NC
18077#undef ARM_VARIANT
18078#define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
18079#undef THUMB_VARIANT
18080#define THUMB_VARIANT & arm_ext_v4t
18081
21d799b5
NC
18082 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
18083 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
c19d1205 18084
c921be7d
NC
18085#undef THUMB_VARIANT
18086#define THUMB_VARIANT & arm_ext_v6t2
18087
21d799b5 18088 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
c19d1205
ZW
18089 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
18090
18091 /* Generic coprocessor instructions. */
21d799b5
NC
18092 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18093 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18094 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18095 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18096 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18097 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
db472d6f 18098 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18099
c921be7d
NC
18100#undef ARM_VARIANT
18101#define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
18102
21d799b5 18103 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
c19d1205
ZW
18104 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
18105
c921be7d
NC
18106#undef ARM_VARIANT
18107#define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
18108#undef THUMB_VARIANT
18109#define THUMB_VARIANT & arm_ext_msr
18110
d2cd1205
JB
18111 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
18112 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
c19d1205 18113
c921be7d
NC
18114#undef ARM_VARIANT
18115#define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
18116#undef THUMB_VARIANT
18117#define THUMB_VARIANT & arm_ext_v6t2
18118
21d799b5
NC
18119 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18120 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18121 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18122 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18123 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18124 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
18125 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
18126 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
c19d1205 18127
c921be7d
NC
18128#undef ARM_VARIANT
18129#define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
18130#undef THUMB_VARIANT
18131#define THUMB_VARIANT & arm_ext_v4t
18132
5be8be5d
DG
18133 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18134 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18135 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18136 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
56c0a61f
RE
18137 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
18138 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
c19d1205 18139
c921be7d
NC
18140#undef ARM_VARIANT
18141#define ARM_VARIANT & arm_ext_v4t_5
18142
c19d1205
ZW
18143 /* ARM Architecture 4T. */
18144 /* Note: bx (and blx) are required on V5, even if the processor does
18145 not support Thumb. */
21d799b5 18146 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
c19d1205 18147
c921be7d
NC
18148#undef ARM_VARIANT
18149#define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
18150#undef THUMB_VARIANT
18151#define THUMB_VARIANT & arm_ext_v5t
18152
c19d1205
ZW
18153 /* Note: blx has 2 variants; the .value coded here is for
18154 BLX(2). Only this variant has conditional execution. */
21d799b5
NC
18155 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
18156 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
c19d1205 18157
c921be7d
NC
18158#undef THUMB_VARIANT
18159#define THUMB_VARIANT & arm_ext_v6t2
18160
21d799b5
NC
18161 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
18162 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18163 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18164 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18165 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
18166 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
18167 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
18168 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 18169
c921be7d
NC
18170#undef ARM_VARIANT
18171#define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
9e3c6df6
PB
18172#undef THUMB_VARIANT
18173#define THUMB_VARIANT &arm_ext_v5exp
c921be7d 18174
21d799b5
NC
18175 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18176 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18177 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18178 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18179
21d799b5
NC
18180 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
18181 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 18182
21d799b5
NC
18183 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18184 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18185 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
18186 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
c19d1205 18187
21d799b5
NC
18188 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18189 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18190 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18191 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18192
21d799b5
NC
18193 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18194 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 18195
03ee1b7f
NC
18196 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18197 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18198 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
18199 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
c19d1205 18200
c921be7d
NC
18201#undef ARM_VARIANT
18202#define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
9e3c6df6
PB
18203#undef THUMB_VARIANT
18204#define THUMB_VARIANT &arm_ext_v6t2
c921be7d 18205
21d799b5 18206 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
5be8be5d
DG
18207 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
18208 ldrd, t_ldstd),
18209 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
18210 ADDRGLDRS), ldrd, t_ldstd),
c19d1205 18211
21d799b5
NC
18212 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18213 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
c19d1205 18214
c921be7d
NC
18215#undef ARM_VARIANT
18216#define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
18217
21d799b5 18218 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
c19d1205 18219
c921be7d
NC
18220#undef ARM_VARIANT
18221#define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
18222#undef THUMB_VARIANT
18223#define THUMB_VARIANT & arm_ext_v6
18224
21d799b5
NC
18225 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
18226 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
18227 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18228 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18229 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
18230 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18231 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18232 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18233 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18234 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
c19d1205 18235
c921be7d
NC
18236#undef THUMB_VARIANT
18237#define THUMB_VARIANT & arm_ext_v6t2
18238
5be8be5d
DG
18239 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
18240 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
18241 strex, t_strex),
21d799b5
NC
18242 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
18243 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311 18244
21d799b5
NC
18245 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
18246 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
62b3e311 18247
9e3c6df6 18248/* ARM V6 not included in V7M. */
c921be7d
NC
18249#undef THUMB_VARIANT
18250#define THUMB_VARIANT & arm_ext_v6_notm
9e3c6df6 18251 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6 18252 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
9e3c6df6
PB
18253 UF(rfeib, 9900a00, 1, (RRw), rfe),
18254 UF(rfeda, 8100a00, 1, (RRw), rfe),
18255 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18256 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6
RE
18257 UF(rfefa, 8100a00, 1, (RRw), rfe),
18258 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
18259 UF(rfeed, 9900a00, 1, (RRw), rfe),
9e3c6df6 18260 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
d709e4e6
RE
18261 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
18262 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
9e3c6df6 18263 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
d709e4e6 18264 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
9e3c6df6 18265 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
d709e4e6 18266 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
9e3c6df6 18267 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
d709e4e6 18268 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
c921be7d 18269
9e3c6df6
PB
18270/* ARM V6 not included in V7M (eg. integer SIMD). */
18271#undef THUMB_VARIANT
18272#define THUMB_VARIANT & arm_ext_v6_dsp
21d799b5
NC
18273 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
18274 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
18275 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
18276 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18277 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18278 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18279 /* Old name for QASX. */
21d799b5
NC
18280 TCE("qaddsubx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18281 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18282 /* Old name for QSAX. */
21d799b5
NC
18283 TCE("qsubaddx", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18284 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18285 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18286 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18287 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18288 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18289 /* Old name for SASX. */
21d799b5
NC
18290 TCE("saddsubx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18291 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18292 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18293 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18294 /* Old name for SHASX. */
21d799b5
NC
18295 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18296 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18297 /* Old name for SHSAX. */
21d799b5
NC
18298 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18299 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18300 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18301 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18302 /* Old name for SSAX. */
21d799b5
NC
18303 TCE("ssubaddx", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18304 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18305 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18306 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18307 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18308 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18309 /* Old name for UASX. */
21d799b5
NC
18310 TCE("uaddsubx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18311 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18312 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18313 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18314 /* Old name for UHASX. */
21d799b5
NC
18315 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18316 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18317 /* Old name for UHSAX. */
21d799b5
NC
18318 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18319 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18320 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18321 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18322 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18323 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18324 /* Old name for UQASX. */
21d799b5
NC
18325 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18326 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18327 /* Old name for UQSAX. */
21d799b5
NC
18328 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18329 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18330 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18331 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18332 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 18333 /* Old name for USAX. */
21d799b5
NC
18334 TCE("usubaddx", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18335 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
18336 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18337 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18338 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18339 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18340 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18341 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18342 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
18343 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
18344 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
18345 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18346 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18347 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18348 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18349 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18350 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18351 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18352 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
18353 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18354 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18355 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18356 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18357 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18358 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18359 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18360 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18361 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18362 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
21d799b5
NC
18363 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
18364 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
18365 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
18366 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
18367 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
c19d1205 18368
c921be7d
NC
18369#undef ARM_VARIANT
18370#define ARM_VARIANT & arm_ext_v6k
18371#undef THUMB_VARIANT
18372#define THUMB_VARIANT & arm_ext_v6k
18373
21d799b5
NC
18374 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
18375 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
18376 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
18377 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
c19d1205 18378
c921be7d
NC
18379#undef THUMB_VARIANT
18380#define THUMB_VARIANT & arm_ext_v6_notm
5be8be5d
DG
18381 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
18382 ldrexd, t_ldrexd),
18383 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
18384 RRnpcb), strexd, t_strexd),
ebdca51a 18385
c921be7d
NC
18386#undef THUMB_VARIANT
18387#define THUMB_VARIANT & arm_ext_v6t2
5be8be5d
DG
18388 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
18389 rd_rn, rd_rn),
18390 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
18391 rd_rn, rd_rn),
18392 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18393 strex, t_strexbh),
5be8be5d 18394 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 18395 strex, t_strexbh),
21d799b5 18396 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
c19d1205 18397
c921be7d 18398#undef ARM_VARIANT
f4c65163
MGD
18399#define ARM_VARIANT & arm_ext_sec
18400#undef THUMB_VARIANT
18401#define THUMB_VARIANT & arm_ext_sec
c921be7d 18402
21d799b5 18403 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205 18404
90ec0d68
MGD
18405#undef ARM_VARIANT
18406#define ARM_VARIANT & arm_ext_virt
18407#undef THUMB_VARIANT
18408#define THUMB_VARIANT & arm_ext_virt
18409
18410 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
18411 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
18412
c921be7d
NC
18413#undef ARM_VARIANT
18414#define ARM_VARIANT & arm_ext_v6t2
f4c65163
MGD
18415#undef THUMB_VARIANT
18416#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 18417
21d799b5
NC
18418 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
18419 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
18420 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
18421 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
c19d1205 18422
21d799b5
NC
18423 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
18424 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
18425 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
18426 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205 18427
5be8be5d
DG
18428 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18429 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18430 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
18431 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
c19d1205 18432
bf3eeda7
NS
18433 /* Thumb-only instructions. */
18434#undef ARM_VARIANT
18435#define ARM_VARIANT NULL
18436 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
18437 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
c921be7d
NC
18438
18439 /* ARM does not really have an IT instruction, so always allow it.
18440 The opcode is copied from Thumb in order to allow warnings in
18441 -mimplicit-it=[never | arm] modes. */
18442#undef ARM_VARIANT
18443#define ARM_VARIANT & arm_ext_v1
18444
21d799b5
NC
18445 TUE("it", bf08, bf08, 1, (COND), it, t_it),
18446 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
18447 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
18448 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
18449 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
18450 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
18451 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
18452 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
18453 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
18454 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
18455 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
18456 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
18457 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
18458 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
18459 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
1c444d06 18460 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
21d799b5
NC
18461 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
18462 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
c19d1205 18463
92e90b6e 18464 /* Thumb2 only instructions. */
c921be7d
NC
18465#undef ARM_VARIANT
18466#define ARM_VARIANT NULL
92e90b6e 18467
21d799b5
NC
18468 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18469 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
18470 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
18471 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
18472 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
18473 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
92e90b6e 18474
eea54501
MGD
18475 /* Hardware division instructions. */
18476#undef ARM_VARIANT
18477#define ARM_VARIANT & arm_ext_adiv
c921be7d
NC
18478#undef THUMB_VARIANT
18479#define THUMB_VARIANT & arm_ext_div
18480
eea54501
MGD
18481 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
18482 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
62b3e311 18483
7e806470 18484 /* ARM V6M/V7 instructions. */
c921be7d
NC
18485#undef ARM_VARIANT
18486#define ARM_VARIANT & arm_ext_barrier
18487#undef THUMB_VARIANT
18488#define THUMB_VARIANT & arm_ext_barrier
18489
ccb84d65
JB
18490 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, barrier),
18491 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, barrier),
18492 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, barrier),
7e806470 18493
62b3e311 18494 /* ARM V7 instructions. */
c921be7d
NC
18495#undef ARM_VARIANT
18496#define ARM_VARIANT & arm_ext_v7
18497#undef THUMB_VARIANT
18498#define THUMB_VARIANT & arm_ext_v7
18499
21d799b5
NC
18500 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
18501 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
62b3e311 18502
60e5ef9f
MGD
18503#undef ARM_VARIANT
18504#define ARM_VARIANT & arm_ext_mp
18505#undef THUMB_VARIANT
18506#define THUMB_VARIANT & arm_ext_mp
18507
18508 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
18509
53c4b28b
MGD
18510 /* AArchv8 instructions. */
18511#undef ARM_VARIANT
18512#define ARM_VARIANT & arm_ext_v8
18513#undef THUMB_VARIANT
18514#define THUMB_VARIANT & arm_ext_v8
18515
18516 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
8884b720 18517 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
4b8c8c02
RE
18518 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18519 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18520 ldrexd, t_ldrexd),
4b8c8c02
RE
18521 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
18522 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18523 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
18524 stlex, t_stlex),
18525 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
9eb6c0f1 18526 strexd, t_strexd),
4b8c8c02
RE
18527 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
18528 stlex, t_stlex),
18529 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
18530 stlex, t_stlex),
18531 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18532 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18533 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
18534 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
18535 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
18536 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
53c4b28b 18537
8884b720 18538 /* ARMv8 T32 only. */
b79f7053
MGD
18539#undef ARM_VARIANT
18540#define ARM_VARIANT NULL
18541 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
18542 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
18543 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
18544
33399f07
MGD
18545 /* FP for ARMv8. */
18546#undef ARM_VARIANT
18547#define ARM_VARIANT & fpu_vfp_ext_armv8
18548#undef THUMB_VARIANT
18549#define THUMB_VARIANT & fpu_vfp_ext_armv8
18550
18551 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
18552 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
18553 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
18554 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
73924fbc
MGD
18555 nUF(vmaxnm, _vmaxnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
18556 nUF(vminnm, _vminnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
7e8e6784
MGD
18557 nUF(vcvta, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvta),
18558 nUF(vcvtn, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtn),
18559 nUF(vcvtp, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtp),
18560 nUF(vcvtm, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtm),
30bdf752
MGD
18561 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
18562 nCE(vrintz, _vrintr, 2, (RNSDQ, oRNSDQ), vrintz),
18563 nCE(vrintx, _vrintr, 2, (RNSDQ, oRNSDQ), vrintx),
18564 nUF(vrinta, _vrinta, 2, (RNSDQ, oRNSDQ), vrinta),
18565 nUF(vrintn, _vrinta, 2, (RNSDQ, oRNSDQ), vrintn),
18566 nUF(vrintp, _vrinta, 2, (RNSDQ, oRNSDQ), vrintp),
18567 nUF(vrintm, _vrinta, 2, (RNSDQ, oRNSDQ), vrintm),
33399f07 18568
91ff7894
MGD
18569 /* Crypto v1 extensions. */
18570#undef ARM_VARIANT
18571#define ARM_VARIANT & fpu_crypto_ext_armv8
18572#undef THUMB_VARIANT
18573#define THUMB_VARIANT & fpu_crypto_ext_armv8
18574
18575 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
18576 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
18577 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
18578 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
48adcd8e
MGD
18579 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
18580 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
18581 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
18582 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
18583 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
18584 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
18585 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
3c9017d2
MGD
18586 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
18587 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
18588 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
91ff7894 18589
dd5181d5
KT
18590#undef ARM_VARIANT
18591#define ARM_VARIANT & crc_ext_armv8
18592#undef THUMB_VARIANT
18593#define THUMB_VARIANT & crc_ext_armv8
18594 TUEc("crc32b", 1000040, fac0f080, 3, (RR, oRR, RR), crc32b),
18595 TUEc("crc32h", 1200040, fac0f090, 3, (RR, oRR, RR), crc32h),
18596 TUEc("crc32w", 1400040, fac0f0a0, 3, (RR, oRR, RR), crc32w),
18597 TUEc("crc32cb",1000240, fad0f080, 3, (RR, oRR, RR), crc32cb),
18598 TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
18599 TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
18600
c921be7d
NC
18601#undef ARM_VARIANT
18602#define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
53c4b28b
MGD
18603#undef THUMB_VARIANT
18604#define THUMB_VARIANT NULL
c921be7d 18605
21d799b5
NC
18606 cCE("wfs", e200110, 1, (RR), rd),
18607 cCE("rfs", e300110, 1, (RR), rd),
18608 cCE("wfc", e400110, 1, (RR), rd),
18609 cCE("rfc", e500110, 1, (RR), rd),
18610
18611 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
18612 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
18613 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
18614 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
18615
18616 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
18617 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
18618 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
18619 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
18620
18621 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
18622 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
18623 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
18624 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
18625 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
18626 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
18627 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
18628 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
18629 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
18630 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
18631 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
18632 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
18633
18634 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
18635 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
18636 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
18637 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
18638 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
18639 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
18640 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
18641 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
18642 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
18643 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
18644 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
18645 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
18646
18647 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
18648 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
18649 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
18650 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
18651 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
18652 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
18653 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
18654 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
18655 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
18656 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
18657 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
18658 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
18659
18660 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
18661 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
18662 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
18663 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
18664 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
18665 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
18666 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
18667 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
18668 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
18669 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
18670 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
18671 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
18672
18673 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
18674 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
18675 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
18676 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
18677 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
18678 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
18679 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
18680 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
18681 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
18682 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
18683 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
18684 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
18685
18686 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
18687 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
18688 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
18689 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
18690 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
18691 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
18692 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
18693 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
18694 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
18695 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
18696 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
18697 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
18698
18699 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
18700 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
18701 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
18702 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
18703 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
18704 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
18705 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
18706 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
18707 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
18708 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
18709 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
18710 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
18711
18712 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
18713 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
18714 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
18715 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
18716 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
18717 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
18718 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
18719 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
18720 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
18721 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
18722 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
18723 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
18724
18725 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
18726 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
18727 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
18728 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
18729 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
18730 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
18731 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
18732 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
18733 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
18734 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
18735 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
18736 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
18737
18738 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
18739 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
18740 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
18741 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
18742 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
18743 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
18744 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
18745 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
18746 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
18747 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
18748 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
18749 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
18750
18751 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
18752 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
18753 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
18754 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
18755 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
18756 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
18757 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
18758 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
18759 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
18760 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
18761 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
18762 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
18763
18764 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
18765 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
18766 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
18767 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
18768 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
18769 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
18770 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
18771 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
18772 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
18773 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
18774 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
18775 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
18776
18777 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
18778 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
18779 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
18780 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
18781 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
18782 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
18783 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
18784 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
18785 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
18786 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
18787 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
18788 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
18789
18790 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
18791 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
18792 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
18793 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
18794 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
18795 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
18796 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
18797 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
18798 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
18799 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
18800 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
18801 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
18802
18803 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
18804 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
18805 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
18806 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
18807 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
18808 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
18809 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
18810 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
18811 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
18812 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
18813 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
18814 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
18815
18816 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
18817 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
18818 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
18819 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
18820 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
18821 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
18822 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
18823 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
18824 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
18825 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
18826 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
18827 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
18828
18829 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
18830 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
18831 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
18832 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
18833 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
18834 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18835 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18836 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18837 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
18838 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
18839 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
18840 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
18841
18842 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
18843 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
18844 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
18845 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
18846 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
18847 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18848 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18849 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18850 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
18851 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
18852 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
18853 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
18854
18855 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
18856 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
18857 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
18858 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
18859 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
18860 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18861 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18862 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18863 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
18864 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
18865 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
18866 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
18867
18868 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
18869 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
18870 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
18871 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
18872 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
18873 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18874 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18875 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18876 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
18877 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
18878 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
18879 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
18880
18881 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
18882 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
18883 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
18884 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
18885 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
18886 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18887 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18888 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18889 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
18890 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
18891 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
18892 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
18893
18894 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
18895 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
18896 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
18897 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
18898 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
18899 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18900 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18901 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18902 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
18903 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
18904 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
18905 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
18906
18907 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
18908 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
18909 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
18910 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
18911 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
18912 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18913 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18914 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18915 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
18916 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
18917 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
18918 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
18919
18920 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
18921 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
18922 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
18923 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
18924 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
18925 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18926 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18927 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18928 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
18929 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
18930 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
18931 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
18932
18933 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
18934 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
18935 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
18936 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
18937 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
18938 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18939 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18940 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18941 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
18942 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
18943 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
18944 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
18945
18946 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
18947 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
18948 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
18949 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
18950 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
18951 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18952 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18953 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18954 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
18955 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
18956 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
18957 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
18958
18959 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18960 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18961 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18962 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18963 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18964 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18965 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18966 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18967 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18968 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18969 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18970 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18971
18972 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18973 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18974 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18975 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18976 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18977 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18978 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18979 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18980 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18981 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18982 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18983 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18984
18985 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
18986 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
18987 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
18988 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
18989 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
18990 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
18991 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
18992 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
18993 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
18994 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
18995 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
18996 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
18997
18998 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
18999 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
19000 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
19001 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
19002
19003 cCL("flts", e000110, 2, (RF, RR), rn_rd),
19004 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
19005 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
19006 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
19007 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
19008 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
19009 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
19010 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
19011 cCL("flte", e080110, 2, (RF, RR), rn_rd),
19012 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
19013 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
19014 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
b99bd4ef 19015
c19d1205
ZW
19016 /* The implementation of the FIX instruction is broken on some
19017 assemblers, in that it accepts a precision specifier as well as a
19018 rounding specifier, despite the fact that this is meaningless.
19019 To be more compatible, we accept it as well, though of course it
19020 does not set any bits. */
21d799b5
NC
19021 cCE("fix", e100110, 2, (RR, RF), rd_rm),
19022 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
19023 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
19024 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
19025 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
19026 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
19027 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
19028 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
19029 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
19030 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
19031 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
19032 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
19033 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
bfae80f2 19034
c19d1205 19035 /* Instructions that were new with the real FPA, call them V2. */
c921be7d
NC
19036#undef ARM_VARIANT
19037#define ARM_VARIANT & fpu_fpa_ext_v2
19038
21d799b5
NC
19039 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19040 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19041 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19042 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19043 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
19044 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205 19045
c921be7d
NC
19046#undef ARM_VARIANT
19047#define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
19048
c19d1205 19049 /* Moves and type conversions. */
21d799b5
NC
19050 cCE("fcpys", eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
19051 cCE("fmrs", e100a10, 2, (RR, RVS), vfp_reg_from_sp),
19052 cCE("fmsr", e000a10, 2, (RVS, RR), vfp_sp_from_reg),
19053 cCE("fmstat", ef1fa10, 0, (), noargs),
7465e07a
NC
19054 cCE("vmrs", ef00a10, 2, (APSR_RR, RVC), vmrs),
19055 cCE("vmsr", ee00a10, 2, (RVC, RR), vmsr),
21d799b5
NC
19056 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
19057 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
19058 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
19059 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
19060 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
19061 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
19062 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
19063 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
19064
19065 /* Memory operations. */
21d799b5
NC
19066 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
19067 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
55881a11
MGD
19068 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19069 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19070 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19071 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19072 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19073 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19074 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19075 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19076 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19077 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
19078 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19079 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
19080 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19081 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
19082 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
19083 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 19084
c19d1205 19085 /* Monadic operations. */
21d799b5
NC
19086 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
19087 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
19088 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
19089
19090 /* Dyadic operations. */
21d799b5
NC
19091 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19092 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19093 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19094 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19095 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19096 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19097 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19098 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19099 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 19100
c19d1205 19101 /* Comparisons. */
21d799b5
NC
19102 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
19103 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
19104 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
19105 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 19106
62f3b8c8
PB
19107 /* Double precision load/store are still present on single precision
19108 implementations. */
19109 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
19110 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
55881a11
MGD
19111 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19112 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19113 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19114 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19115 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19116 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
19117 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
19118 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
62f3b8c8 19119
c921be7d
NC
19120#undef ARM_VARIANT
19121#define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
19122
c19d1205 19123 /* Moves and type conversions. */
21d799b5
NC
19124 cCE("fcpyd", eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19125 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19126 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19127 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
19128 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
19129 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
19130 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
19131 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
19132 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
19133 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19134 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
19135 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
19136 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205 19137
c19d1205 19138 /* Monadic operations. */
21d799b5
NC
19139 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19140 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19141 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
19142
19143 /* Dyadic operations. */
21d799b5
NC
19144 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19145 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19146 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19147 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19148 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19149 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19150 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19151 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19152 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 19153
c19d1205 19154 /* Comparisons. */
21d799b5
NC
19155 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
19156 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
19157 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
19158 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205 19159
c921be7d
NC
19160#undef ARM_VARIANT
19161#define ARM_VARIANT & fpu_vfp_ext_v2
19162
21d799b5
NC
19163 cCE("fmsrr", c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
19164 cCE("fmrrs", c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
19165 cCE("fmdrr", c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
19166 cCE("fmrrd", c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
5287ad62 19167
037e8744
JB
19168/* Instructions which may belong to either the Neon or VFP instruction sets.
19169 Individual encoder functions perform additional architecture checks. */
c921be7d
NC
19170#undef ARM_VARIANT
19171#define ARM_VARIANT & fpu_vfp_ext_v1xd
19172#undef THUMB_VARIANT
19173#define THUMB_VARIANT & fpu_vfp_ext_v1xd
19174
037e8744
JB
19175 /* These mnemonics are unique to VFP. */
19176 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
19177 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
21d799b5
NC
19178 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19179 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19180 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19181 nCE(vcmp, _vcmp, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
19182 nCE(vcmpe, _vcmpe, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
037e8744
JB
19183 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
19184 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
19185 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
19186
19187 /* Mnemonics shared by Neon and VFP. */
21d799b5
NC
19188 nCEF(vmul, _vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
19189 nCEF(vmla, _vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
19190 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
037e8744 19191
21d799b5
NC
19192 nCEF(vadd, _vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
19193 nCEF(vsub, _vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
037e8744
JB
19194
19195 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19196 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
19197
55881a11
MGD
19198 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19199 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19200 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19201 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19202 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
19203 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
4962c51a
MS
19204 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
19205 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744 19206
5f1af56b 19207 nCEF(vcvt, _vcvt, 3, (RNSDQ, RNSDQ, oI32z), neon_cvt),
e3e535bc 19208 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
c70a8987
MGD
19209 NCEF(vcvtb, eb20a40, 2, (RVSD, RVSD), neon_cvtb),
19210 NCEF(vcvtt, eb20a40, 2, (RVSD, RVSD), neon_cvtt),
f31fef98 19211
037e8744
JB
19212
19213 /* NOTE: All VMOV encoding is special-cased! */
19214 NCE(vmov, 0, 1, (VMOV), neon_mov),
19215 NCE(vmovq, 0, 1, (VMOV), neon_mov),
19216
c921be7d
NC
19217#undef THUMB_VARIANT
19218#define THUMB_VARIANT & fpu_neon_ext_v1
19219#undef ARM_VARIANT
19220#define ARM_VARIANT & fpu_neon_ext_v1
19221
5287ad62
JB
19222 /* Data processing with three registers of the same length. */
19223 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
19224 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
19225 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
19226 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19227 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19228 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19229 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19230 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
19231 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
19232 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
19233 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19234 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
19235 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
19236 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
627907b7
JB
19237 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19238 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
19239 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
19240 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
5287ad62
JB
19241 /* If not immediate, fall back to neon_dyadic_i64_su.
19242 shl_imm should accept I8 I16 I32 I64,
19243 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
21d799b5
NC
19244 nUF(vshl, _vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
19245 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
19246 nUF(vqshl, _vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
19247 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
5287ad62 19248 /* Logic ops, types optional & ignored. */
4316f0d2
DG
19249 nUF(vand, _vand, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19250 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19251 nUF(vbic, _vbic, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19252 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19253 nUF(vorr, _vorr, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19254 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19255 nUF(vorn, _vorn, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
19256 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
19257 nUF(veor, _veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
19258 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
5287ad62
JB
19259 /* Bitfield ops, untyped. */
19260 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19261 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19262 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19263 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19264 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
19265 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
19266 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32. */
21d799b5
NC
19267 nUF(vabd, _vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19268 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19269 nUF(vmax, _vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19270 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
19271 nUF(vmin, _vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
19272 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
5287ad62
JB
19273 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
19274 back to neon_dyadic_if_su. */
21d799b5
NC
19275 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19276 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19277 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
19278 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
19279 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19280 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
19281 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
19282 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 19283 /* Comparison. Type I8 I16 I32 F32. */
21d799b5
NC
19284 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
19285 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
5287ad62 19286 /* As above, D registers only. */
21d799b5
NC
19287 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
19288 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
5287ad62 19289 /* Int and float variants, signedness unimportant. */
21d799b5
NC
19290 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19291 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
19292 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
5287ad62 19293 /* Add/sub take types I8 I16 I32 I64 F32. */
21d799b5
NC
19294 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
19295 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
19296 /* vtst takes sizes 8, 16, 32. */
19297 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
19298 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
19299 /* VMUL takes I8 I16 I32 F32 P8. */
21d799b5 19300 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62 19301 /* VQD{R}MULH takes S16 S32. */
21d799b5
NC
19302 nUF(vqdmulh, _vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19303 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
19304 nUF(vqrdmulh, _vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
19305 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
5287ad62
JB
19306 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19307 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
19308 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
19309 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
92559b5b
PB
19310 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19311 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
19312 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
19313 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
5287ad62
JB
19314 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19315 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19316 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
19317 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
19318
19319 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 19320 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
19321 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
19322
19323 /* Data processing with two registers and a shift amount. */
19324 /* Right shifts, and variants with rounding.
19325 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
19326 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19327 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19328 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
19329 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
19330 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19331 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19332 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
19333 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
19334 /* Shift and insert. Sizes accepted 8 16 32 64. */
19335 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
19336 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
19337 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
19338 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
19339 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
19340 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
19341 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
19342 /* Right shift immediate, saturating & narrowing, with rounding variants.
19343 Types accepted S16 S32 S64 U16 U32 U64. */
19344 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19345 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
19346 /* As above, unsigned. Types accepted S16 S32 S64. */
19347 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19348 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
19349 /* Right shift narrowing. Types accepted I16 I32 I64. */
19350 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19351 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
19352 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
21d799b5 19353 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
5287ad62 19354 /* CVT with optional immediate for fixed-point variant. */
21d799b5 19355 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 19356
4316f0d2
DG
19357 nUF(vmvn, _vmvn, 2, (RNDQ, RNDQ_Ibig), neon_mvn),
19358 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
5287ad62
JB
19359
19360 /* Data processing, three registers of different lengths. */
19361 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
19362 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
19363 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
19364 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
19365 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
19366 /* If not scalar, fall back to neon_dyadic_long.
19367 Vector types as above, scalar types S16 S32 U16 U32. */
21d799b5
NC
19368 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
19369 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
5287ad62
JB
19370 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
19371 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19372 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
19373 /* Dyadic, narrowing insns. Types I16 I32 I64. */
19374 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19375 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19376 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19377 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
19378 /* Saturating doubling multiplies. Types S16 S32. */
21d799b5
NC
19379 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19380 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
19381 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
5287ad62
JB
19382 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
19383 S16 S32 U16 U32. */
21d799b5 19384 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
5287ad62
JB
19385
19386 /* Extract. Size 8. */
3b8d421e
PB
19387 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
19388 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
5287ad62
JB
19389
19390 /* Two registers, miscellaneous. */
19391 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
19392 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
19393 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
19394 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
19395 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
19396 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
19397 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
19398 /* Vector replicate. Sizes 8 16 32. */
21d799b5
NC
19399 nCE(vdup, _vdup, 2, (RNDQ, RR_RNSC), neon_dup),
19400 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
5287ad62
JB
19401 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
19402 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
19403 /* VMOVN. Types I16 I32 I64. */
21d799b5 19404 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
5287ad62 19405 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
21d799b5 19406 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
5287ad62 19407 /* VQMOVUN. Types S16 S32 S64. */
21d799b5 19408 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
5287ad62
JB
19409 /* VZIP / VUZP. Sizes 8 16 32. */
19410 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
19411 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
19412 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
19413 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
19414 /* VQABS / VQNEG. Types S8 S16 S32. */
19415 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19416 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
19417 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
19418 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
19419 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
19420 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
19421 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
19422 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
19423 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
19424 /* Reciprocal estimates. Types U32 F32. */
19425 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
19426 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
19427 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
19428 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
19429 /* VCLS. Types S8 S16 S32. */
19430 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
19431 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
19432 /* VCLZ. Types I8 I16 I32. */
19433 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
19434 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
19435 /* VCNT. Size 8. */
19436 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
19437 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
19438 /* Two address, untyped. */
19439 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
19440 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
19441 /* VTRN. Sizes 8 16 32. */
21d799b5
NC
19442 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
19443 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
5287ad62
JB
19444
19445 /* Table lookup. Size 8. */
19446 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19447 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
19448
c921be7d
NC
19449#undef THUMB_VARIANT
19450#define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
19451#undef ARM_VARIANT
19452#define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
19453
5287ad62 19454 /* Neon element/structure load/store. */
21d799b5
NC
19455 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19456 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
19457 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19458 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
19459 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19460 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
19461 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
19462 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
5287ad62 19463
c921be7d 19464#undef THUMB_VARIANT
62f3b8c8
PB
19465#define THUMB_VARIANT &fpu_vfp_ext_v3xd
19466#undef ARM_VARIANT
19467#define ARM_VARIANT &fpu_vfp_ext_v3xd
19468 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
19469 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19470 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19471 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19472 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19473 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19474 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19475 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
19476 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
19477
19478#undef THUMB_VARIANT
c921be7d
NC
19479#define THUMB_VARIANT & fpu_vfp_ext_v3
19480#undef ARM_VARIANT
19481#define ARM_VARIANT & fpu_vfp_ext_v3
19482
21d799b5 19483 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
21d799b5 19484 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19485 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19486 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19487 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19488 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19489 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 19490 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 19491 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 19492
62f3b8c8
PB
19493#undef ARM_VARIANT
19494#define ARM_VARIANT &fpu_vfp_ext_fma
19495#undef THUMB_VARIANT
19496#define THUMB_VARIANT &fpu_vfp_ext_fma
19497 /* Mnemonics shared by Neon and VFP. These are included in the
19498 VFP FMA variant; NEON and VFP FMA always includes the NEON
19499 FMA instructions. */
19500 nCEF(vfma, _vfma, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19501 nCEF(vfms, _vfms, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
19502 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
19503 the v form should always be used. */
19504 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19505 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
19506 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19507 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
19508 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19509 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
19510
5287ad62 19511#undef THUMB_VARIANT
c921be7d
NC
19512#undef ARM_VARIANT
19513#define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
19514
21d799b5
NC
19515 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19516 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19517 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19518 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19519 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19520 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
19521 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
19522 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205 19523
c921be7d
NC
19524#undef ARM_VARIANT
19525#define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
19526
21d799b5
NC
19527 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
19528 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
19529 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
19530 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
19531 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
19532 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
19533 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
19534 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
19535 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
19536 cCE("textrmub", e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19537 cCE("textrmuh", e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19538 cCE("textrmuw", e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
19539 cCE("textrmsb", e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19540 cCE("textrmsh", e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19541 cCE("textrmsw", e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
19542 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19543 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19544 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
19545 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
19546 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
19547 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19548 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19549 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19550 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19551 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19552 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
19553 cCE("tmovmskb", e100030, 2, (RR, RIWR), rd_rn),
19554 cCE("tmovmskh", e500030, 2, (RR, RIWR), rd_rn),
19555 cCE("tmovmskw", e900030, 2, (RR, RIWR), rd_rn),
19556 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
19557 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
19558 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
19559 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
19560 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
19561 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
19562 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
19563 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
19564 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19565 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19566 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19567 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19568 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19569 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19570 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19571 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19572 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19573 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
19574 cCE("walignr0", e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19575 cCE("walignr1", e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19576 cCE("walignr2", ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19577 cCE("walignr3", eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19578 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19579 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19580 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19581 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19582 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19583 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19584 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19585 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19586 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19587 cCE("wcmpgtub", e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19588 cCE("wcmpgtuh", e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19589 cCE("wcmpgtuw", e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19590 cCE("wcmpgtsb", e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19591 cCE("wcmpgtsh", e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19592 cCE("wcmpgtsw", eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19593 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19594 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19595 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
19596 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
19597 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19598 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19599 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19600 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19601 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19602 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19603 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19604 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19605 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19606 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19607 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19608 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19609 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19610 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19611 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19612 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19613 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19614 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19615 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
19616 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19617 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19618 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19619 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19620 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19621 cCE("wpackhss", e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19622 cCE("wpackhus", e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19623 cCE("wpackwss", eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19624 cCE("wpackwus", e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19625 cCE("wpackdss", ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19626 cCE("wpackdus", ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19627 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19628 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19629 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19630 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19631 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19632 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19633 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19634 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19635 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19636 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19637 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
19638 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19639 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19640 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19641 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19642 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19643 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19644 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19645 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19646 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19647 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19648 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19649 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19650 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19651 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19652 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19653 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19654 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
19655 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
19656 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19657 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
19658 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
19659 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
19660 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19661 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19662 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19663 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19664 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19665 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19666 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19667 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19668 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19669 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
19670 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
19671 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
19672 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
19673 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
19674 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
19675 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19676 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19677 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19678 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
19679 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
19680 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
19681 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
19682 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
19683 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
19684 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19685 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19686 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19687 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19688 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205 19689
c921be7d
NC
19690#undef ARM_VARIANT
19691#define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
19692
21d799b5
NC
19693 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
19694 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
19695 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
19696 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
19697 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
19698 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
19699 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19700 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19701 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19702 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19703 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19704 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19705 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19706 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19707 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19708 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19709 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19710 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19711 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19712 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19713 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
19714 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19715 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19716 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19717 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19718 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19719 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19720 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19721 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19722 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19723 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19724 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19725 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19726 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19727 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19728 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19729 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19730 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19731 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19732 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19733 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19734 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19735 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19736 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19737 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19738 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19739 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19740 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19741 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19742 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19743 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19744 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19745 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19746 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19747 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19748 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
19749 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
2d447fca 19750
c921be7d
NC
19751#undef ARM_VARIANT
19752#define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
19753
21d799b5
NC
19754 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
19755 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
19756 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
19757 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
19758 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
19759 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
19760 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
19761 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
19762 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
19763 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
19764 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
19765 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
19766 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
19767 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
19768 cCE("cfmv64lr", e000510, 2, (RMDX, RR), rn_rd),
19769 cCE("cfmvr64l", e100510, 2, (RR, RMDX), rd_rn),
19770 cCE("cfmv64hr", e000530, 2, (RMDX, RR), rn_rd),
19771 cCE("cfmvr64h", e100530, 2, (RR, RMDX), rd_rn),
19772 cCE("cfmval32", e200440, 2, (RMAX, RMFX), rd_rn),
19773 cCE("cfmv32al", e100440, 2, (RMFX, RMAX), rd_rn),
19774 cCE("cfmvam32", e200460, 2, (RMAX, RMFX), rd_rn),
19775 cCE("cfmv32am", e100460, 2, (RMFX, RMAX), rd_rn),
19776 cCE("cfmvah32", e200480, 2, (RMAX, RMFX), rd_rn),
19777 cCE("cfmv32ah", e100480, 2, (RMFX, RMAX), rd_rn),
19778 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
19779 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
19780 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
19781 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
19782 cCE("cfmvsc32", e2004e0, 2, (RMDS, RMDX), mav_dspsc),
19783 cCE("cfmv32sc", e1004e0, 2, (RMDX, RMDS), rd),
19784 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
19785 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
19786 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
19787 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
19788 cCE("cfcvt32s", e000480, 2, (RMF, RMFX), rd_rn),
19789 cCE("cfcvt32d", e0004a0, 2, (RMD, RMFX), rd_rn),
19790 cCE("cfcvt64s", e0004c0, 2, (RMF, RMDX), rd_rn),
19791 cCE("cfcvt64d", e0004e0, 2, (RMD, RMDX), rd_rn),
19792 cCE("cfcvts32", e100580, 2, (RMFX, RMF), rd_rn),
19793 cCE("cfcvtd32", e1005a0, 2, (RMFX, RMD), rd_rn),
19794 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
19795 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
19796 cCE("cfrshl32", e000550, 3, (RMFX, RMFX, RR), mav_triple),
19797 cCE("cfrshl64", e000570, 3, (RMDX, RMDX, RR), mav_triple),
19798 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
19799 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
19800 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
19801 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
19802 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
19803 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
19804 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
19805 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
19806 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
19807 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
19808 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
19809 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
19810 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
19811 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
19812 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
19813 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
19814 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
19815 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
19816 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
19817 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
19818 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19819 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19820 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19821 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19822 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19823 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
19824 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19825 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
19826 cCE("cfmadd32", e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
19827 cCE("cfmsub32", e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
19828 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
19829 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
c19d1205
ZW
19830};
19831#undef ARM_VARIANT
19832#undef THUMB_VARIANT
19833#undef TCE
c19d1205
ZW
19834#undef TUE
19835#undef TUF
19836#undef TCC
8f06b2d8 19837#undef cCE
e3cb604e
PB
19838#undef cCL
19839#undef C3E
c19d1205
ZW
19840#undef CE
19841#undef CM
19842#undef UE
19843#undef UF
19844#undef UT
5287ad62
JB
19845#undef NUF
19846#undef nUF
19847#undef NCE
19848#undef nCE
c19d1205
ZW
19849#undef OPS0
19850#undef OPS1
19851#undef OPS2
19852#undef OPS3
19853#undef OPS4
19854#undef OPS5
19855#undef OPS6
19856#undef do_0
19857\f
19858/* MD interface: bits in the object file. */
bfae80f2 19859
c19d1205
ZW
19860/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
19861 for use in the a.out file, and stores them in the array pointed to by buf.
19862 This knows about the endian-ness of the target machine and does
19863 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
19864 2 (short) and 4 (long) Floating numbers are put out as a series of
19865 LITTLENUMS (shorts, here at least). */
b99bd4ef 19866
c19d1205
ZW
19867void
19868md_number_to_chars (char * buf, valueT val, int n)
19869{
19870 if (target_big_endian)
19871 number_to_chars_bigendian (buf, val, n);
19872 else
19873 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
19874}
19875
c19d1205
ZW
19876static valueT
19877md_chars_to_number (char * buf, int n)
bfae80f2 19878{
c19d1205
ZW
19879 valueT result = 0;
19880 unsigned char * where = (unsigned char *) buf;
bfae80f2 19881
c19d1205 19882 if (target_big_endian)
b99bd4ef 19883 {
c19d1205
ZW
19884 while (n--)
19885 {
19886 result <<= 8;
19887 result |= (*where++ & 255);
19888 }
b99bd4ef 19889 }
c19d1205 19890 else
b99bd4ef 19891 {
c19d1205
ZW
19892 while (n--)
19893 {
19894 result <<= 8;
19895 result |= (where[n] & 255);
19896 }
bfae80f2 19897 }
b99bd4ef 19898
c19d1205 19899 return result;
bfae80f2 19900}
b99bd4ef 19901
c19d1205 19902/* MD interface: Sections. */
b99bd4ef 19903
fa94de6b
RM
19904/* Calculate the maximum variable size (i.e., excluding fr_fix)
19905 that an rs_machine_dependent frag may reach. */
19906
19907unsigned int
19908arm_frag_max_var (fragS *fragp)
19909{
19910 /* We only use rs_machine_dependent for variable-size Thumb instructions,
19911 which are either THUMB_SIZE (2) or INSN_SIZE (4).
19912
19913 Note that we generate relaxable instructions even for cases that don't
19914 really need it, like an immediate that's a trivial constant. So we're
19915 overestimating the instruction size for some of those cases. Rather
19916 than putting more intelligence here, it would probably be better to
19917 avoid generating a relaxation frag in the first place when it can be
19918 determined up front that a short instruction will suffice. */
19919
19920 gas_assert (fragp->fr_type == rs_machine_dependent);
19921 return INSN_SIZE;
19922}
19923
0110f2b8
PB
19924/* Estimate the size of a frag before relaxing. Assume everything fits in
19925 2 bytes. */
19926
c19d1205 19927int
0110f2b8 19928md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
19929 segT segtype ATTRIBUTE_UNUSED)
19930{
0110f2b8
PB
19931 fragp->fr_var = 2;
19932 return 2;
19933}
19934
19935/* Convert a machine dependent frag. */
19936
19937void
19938md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
19939{
19940 unsigned long insn;
19941 unsigned long old_op;
19942 char *buf;
19943 expressionS exp;
19944 fixS *fixp;
19945 int reloc_type;
19946 int pc_rel;
19947 int opcode;
19948
19949 buf = fragp->fr_literal + fragp->fr_fix;
19950
19951 old_op = bfd_get_16(abfd, buf);
5f4273c7
NC
19952 if (fragp->fr_symbol)
19953 {
0110f2b8
PB
19954 exp.X_op = O_symbol;
19955 exp.X_add_symbol = fragp->fr_symbol;
5f4273c7
NC
19956 }
19957 else
19958 {
0110f2b8 19959 exp.X_op = O_constant;
5f4273c7 19960 }
0110f2b8
PB
19961 exp.X_add_number = fragp->fr_offset;
19962 opcode = fragp->fr_subtype;
19963 switch (opcode)
19964 {
19965 case T_MNEM_ldr_pc:
19966 case T_MNEM_ldr_pc2:
19967 case T_MNEM_ldr_sp:
19968 case T_MNEM_str_sp:
19969 case T_MNEM_ldr:
19970 case T_MNEM_ldrb:
19971 case T_MNEM_ldrh:
19972 case T_MNEM_str:
19973 case T_MNEM_strb:
19974 case T_MNEM_strh:
19975 if (fragp->fr_var == 4)
19976 {
5f4273c7 19977 insn = THUMB_OP32 (opcode);
0110f2b8
PB
19978 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
19979 {
19980 insn |= (old_op & 0x700) << 4;
19981 }
19982 else
19983 {
19984 insn |= (old_op & 7) << 12;
19985 insn |= (old_op & 0x38) << 13;
19986 }
19987 insn |= 0x00000c00;
19988 put_thumb32_insn (buf, insn);
19989 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
19990 }
19991 else
19992 {
19993 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
19994 }
19995 pc_rel = (opcode == T_MNEM_ldr_pc2);
19996 break;
19997 case T_MNEM_adr:
19998 if (fragp->fr_var == 4)
19999 {
20000 insn = THUMB_OP32 (opcode);
20001 insn |= (old_op & 0xf0) << 4;
20002 put_thumb32_insn (buf, insn);
20003 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
20004 }
20005 else
20006 {
20007 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20008 exp.X_add_number -= 4;
20009 }
20010 pc_rel = 1;
20011 break;
20012 case T_MNEM_mov:
20013 case T_MNEM_movs:
20014 case T_MNEM_cmp:
20015 case T_MNEM_cmn:
20016 if (fragp->fr_var == 4)
20017 {
20018 int r0off = (opcode == T_MNEM_mov
20019 || opcode == T_MNEM_movs) ? 0 : 8;
20020 insn = THUMB_OP32 (opcode);
20021 insn = (insn & 0xe1ffffff) | 0x10000000;
20022 insn |= (old_op & 0x700) << r0off;
20023 put_thumb32_insn (buf, insn);
20024 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
20025 }
20026 else
20027 {
20028 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
20029 }
20030 pc_rel = 0;
20031 break;
20032 case T_MNEM_b:
20033 if (fragp->fr_var == 4)
20034 {
20035 insn = THUMB_OP32(opcode);
20036 put_thumb32_insn (buf, insn);
20037 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
20038 }
20039 else
20040 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
20041 pc_rel = 1;
20042 break;
20043 case T_MNEM_bcond:
20044 if (fragp->fr_var == 4)
20045 {
20046 insn = THUMB_OP32(opcode);
20047 insn |= (old_op & 0xf00) << 14;
20048 put_thumb32_insn (buf, insn);
20049 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
20050 }
20051 else
20052 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
20053 pc_rel = 1;
20054 break;
20055 case T_MNEM_add_sp:
20056 case T_MNEM_add_pc:
20057 case T_MNEM_inc_sp:
20058 case T_MNEM_dec_sp:
20059 if (fragp->fr_var == 4)
20060 {
20061 /* ??? Choose between add and addw. */
20062 insn = THUMB_OP32 (opcode);
20063 insn |= (old_op & 0xf0) << 4;
20064 put_thumb32_insn (buf, insn);
16805f35
PB
20065 if (opcode == T_MNEM_add_pc)
20066 reloc_type = BFD_RELOC_ARM_T32_IMM12;
20067 else
20068 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
20069 }
20070 else
20071 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20072 pc_rel = 0;
20073 break;
20074
20075 case T_MNEM_addi:
20076 case T_MNEM_addis:
20077 case T_MNEM_subi:
20078 case T_MNEM_subis:
20079 if (fragp->fr_var == 4)
20080 {
20081 insn = THUMB_OP32 (opcode);
20082 insn |= (old_op & 0xf0) << 4;
20083 insn |= (old_op & 0xf) << 16;
20084 put_thumb32_insn (buf, insn);
16805f35
PB
20085 if (insn & (1 << 20))
20086 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
20087 else
20088 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
20089 }
20090 else
20091 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
20092 pc_rel = 0;
20093 break;
20094 default:
5f4273c7 20095 abort ();
0110f2b8
PB
20096 }
20097 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
21d799b5 20098 (enum bfd_reloc_code_real) reloc_type);
0110f2b8
PB
20099 fixp->fx_file = fragp->fr_file;
20100 fixp->fx_line = fragp->fr_line;
20101 fragp->fr_fix += fragp->fr_var;
20102}
20103
20104/* Return the size of a relaxable immediate operand instruction.
20105 SHIFT and SIZE specify the form of the allowable immediate. */
20106static int
20107relax_immediate (fragS *fragp, int size, int shift)
20108{
20109 offsetT offset;
20110 offsetT mask;
20111 offsetT low;
20112
20113 /* ??? Should be able to do better than this. */
20114 if (fragp->fr_symbol)
20115 return 4;
20116
20117 low = (1 << shift) - 1;
20118 mask = (1 << (shift + size)) - (1 << shift);
20119 offset = fragp->fr_offset;
20120 /* Force misaligned offsets to 32-bit variant. */
20121 if (offset & low)
5e77afaa 20122 return 4;
0110f2b8
PB
20123 if (offset & ~mask)
20124 return 4;
20125 return 2;
20126}
20127
5e77afaa
PB
20128/* Get the address of a symbol during relaxation. */
20129static addressT
5f4273c7 20130relaxed_symbol_addr (fragS *fragp, long stretch)
5e77afaa
PB
20131{
20132 fragS *sym_frag;
20133 addressT addr;
20134 symbolS *sym;
20135
20136 sym = fragp->fr_symbol;
20137 sym_frag = symbol_get_frag (sym);
20138 know (S_GET_SEGMENT (sym) != absolute_section
20139 || sym_frag == &zero_address_frag);
20140 addr = S_GET_VALUE (sym) + fragp->fr_offset;
20141
20142 /* If frag has yet to be reached on this pass, assume it will
20143 move by STRETCH just as we did. If this is not so, it will
20144 be because some frag between grows, and that will force
20145 another pass. */
20146
20147 if (stretch != 0
20148 && sym_frag->relax_marker != fragp->relax_marker)
4396b686
PB
20149 {
20150 fragS *f;
20151
20152 /* Adjust stretch for any alignment frag. Note that if have
20153 been expanding the earlier code, the symbol may be
20154 defined in what appears to be an earlier frag. FIXME:
20155 This doesn't handle the fr_subtype field, which specifies
20156 a maximum number of bytes to skip when doing an
20157 alignment. */
20158 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
20159 {
20160 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
20161 {
20162 if (stretch < 0)
20163 stretch = - ((- stretch)
20164 & ~ ((1 << (int) f->fr_offset) - 1));
20165 else
20166 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
20167 if (stretch == 0)
20168 break;
20169 }
20170 }
20171 if (f != NULL)
20172 addr += stretch;
20173 }
5e77afaa
PB
20174
20175 return addr;
20176}
20177
0110f2b8
PB
20178/* Return the size of a relaxable adr pseudo-instruction or PC-relative
20179 load. */
20180static int
5e77afaa 20181relax_adr (fragS *fragp, asection *sec, long stretch)
0110f2b8
PB
20182{
20183 addressT addr;
20184 offsetT val;
20185
20186 /* Assume worst case for symbols not known to be in the same section. */
974da60d
NC
20187 if (fragp->fr_symbol == NULL
20188 || !S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20189 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20190 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20191 return 4;
20192
5f4273c7 20193 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20194 addr = fragp->fr_address + fragp->fr_fix;
20195 addr = (addr + 4) & ~3;
5e77afaa 20196 /* Force misaligned targets to 32-bit variant. */
0110f2b8 20197 if (val & 3)
5e77afaa 20198 return 4;
0110f2b8
PB
20199 val -= addr;
20200 if (val < 0 || val > 1020)
20201 return 4;
20202 return 2;
20203}
20204
20205/* Return the size of a relaxable add/sub immediate instruction. */
20206static int
20207relax_addsub (fragS *fragp, asection *sec)
20208{
20209 char *buf;
20210 int op;
20211
20212 buf = fragp->fr_literal + fragp->fr_fix;
20213 op = bfd_get_16(sec->owner, buf);
20214 if ((op & 0xf) == ((op >> 4) & 0xf))
20215 return relax_immediate (fragp, 8, 0);
20216 else
20217 return relax_immediate (fragp, 3, 0);
20218}
20219
e83a675f
RE
20220/* Return TRUE iff the definition of symbol S could be pre-empted
20221 (overridden) at link or load time. */
20222static bfd_boolean
20223symbol_preemptible (symbolS *s)
20224{
20225 /* Weak symbols can always be pre-empted. */
20226 if (S_IS_WEAK (s))
20227 return TRUE;
20228
20229 /* Non-global symbols cannot be pre-empted. */
20230 if (! S_IS_EXTERNAL (s))
20231 return FALSE;
20232
20233#ifdef OBJ_ELF
20234 /* In ELF, a global symbol can be marked protected, or private. In that
20235 case it can't be pre-empted (other definitions in the same link unit
20236 would violate the ODR). */
20237 if (ELF_ST_VISIBILITY (S_GET_OTHER (s)) > STV_DEFAULT)
20238 return FALSE;
20239#endif
20240
20241 /* Other global symbols might be pre-empted. */
20242 return TRUE;
20243}
0110f2b8
PB
20244
20245/* Return the size of a relaxable branch instruction. BITS is the
20246 size of the offset field in the narrow instruction. */
20247
20248static int
5e77afaa 20249relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
0110f2b8
PB
20250{
20251 addressT addr;
20252 offsetT val;
20253 offsetT limit;
20254
20255 /* Assume worst case for symbols not known to be in the same section. */
5f4273c7 20256 if (!S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
20257 || sec != S_GET_SEGMENT (fragp->fr_symbol)
20258 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
20259 return 4;
20260
267bf995 20261#ifdef OBJ_ELF
e83a675f 20262 /* A branch to a function in ARM state will require interworking. */
267bf995
RR
20263 if (S_IS_DEFINED (fragp->fr_symbol)
20264 && ARM_IS_FUNC (fragp->fr_symbol))
20265 return 4;
e83a675f 20266#endif
0d9b4b55 20267
e83a675f 20268 if (symbol_preemptible (fragp->fr_symbol))
0d9b4b55 20269 return 4;
267bf995 20270
5f4273c7 20271 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
20272 addr = fragp->fr_address + fragp->fr_fix + 4;
20273 val -= addr;
20274
20275 /* Offset is a signed value *2 */
20276 limit = 1 << bits;
20277 if (val >= limit || val < -limit)
20278 return 4;
20279 return 2;
20280}
20281
20282
20283/* Relax a machine dependent frag. This returns the amount by which
20284 the current size of the frag should change. */
20285
20286int
5e77afaa 20287arm_relax_frag (asection *sec, fragS *fragp, long stretch)
0110f2b8
PB
20288{
20289 int oldsize;
20290 int newsize;
20291
20292 oldsize = fragp->fr_var;
20293 switch (fragp->fr_subtype)
20294 {
20295 case T_MNEM_ldr_pc2:
5f4273c7 20296 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20297 break;
20298 case T_MNEM_ldr_pc:
20299 case T_MNEM_ldr_sp:
20300 case T_MNEM_str_sp:
5f4273c7 20301 newsize = relax_immediate (fragp, 8, 2);
0110f2b8
PB
20302 break;
20303 case T_MNEM_ldr:
20304 case T_MNEM_str:
5f4273c7 20305 newsize = relax_immediate (fragp, 5, 2);
0110f2b8
PB
20306 break;
20307 case T_MNEM_ldrh:
20308 case T_MNEM_strh:
5f4273c7 20309 newsize = relax_immediate (fragp, 5, 1);
0110f2b8
PB
20310 break;
20311 case T_MNEM_ldrb:
20312 case T_MNEM_strb:
5f4273c7 20313 newsize = relax_immediate (fragp, 5, 0);
0110f2b8
PB
20314 break;
20315 case T_MNEM_adr:
5f4273c7 20316 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
20317 break;
20318 case T_MNEM_mov:
20319 case T_MNEM_movs:
20320 case T_MNEM_cmp:
20321 case T_MNEM_cmn:
5f4273c7 20322 newsize = relax_immediate (fragp, 8, 0);
0110f2b8
PB
20323 break;
20324 case T_MNEM_b:
5f4273c7 20325 newsize = relax_branch (fragp, sec, 11, stretch);
0110f2b8
PB
20326 break;
20327 case T_MNEM_bcond:
5f4273c7 20328 newsize = relax_branch (fragp, sec, 8, stretch);
0110f2b8
PB
20329 break;
20330 case T_MNEM_add_sp:
20331 case T_MNEM_add_pc:
20332 newsize = relax_immediate (fragp, 8, 2);
20333 break;
20334 case T_MNEM_inc_sp:
20335 case T_MNEM_dec_sp:
20336 newsize = relax_immediate (fragp, 7, 2);
20337 break;
20338 case T_MNEM_addi:
20339 case T_MNEM_addis:
20340 case T_MNEM_subi:
20341 case T_MNEM_subis:
20342 newsize = relax_addsub (fragp, sec);
20343 break;
20344 default:
5f4273c7 20345 abort ();
0110f2b8 20346 }
5e77afaa
PB
20347
20348 fragp->fr_var = newsize;
20349 /* Freeze wide instructions that are at or before the same location as
20350 in the previous pass. This avoids infinite loops.
5f4273c7
NC
20351 Don't freeze them unconditionally because targets may be artificially
20352 misaligned by the expansion of preceding frags. */
5e77afaa 20353 if (stretch <= 0 && newsize > 2)
0110f2b8 20354 {
0110f2b8 20355 md_convert_frag (sec->owner, sec, fragp);
5f4273c7 20356 frag_wane (fragp);
0110f2b8 20357 }
5e77afaa 20358
0110f2b8 20359 return newsize - oldsize;
c19d1205 20360}
b99bd4ef 20361
c19d1205 20362/* Round up a section size to the appropriate boundary. */
b99bd4ef 20363
c19d1205
ZW
20364valueT
20365md_section_align (segT segment ATTRIBUTE_UNUSED,
20366 valueT size)
20367{
f0927246
NC
20368#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
20369 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
20370 {
20371 /* For a.out, force the section size to be aligned. If we don't do
20372 this, BFD will align it for us, but it will not write out the
20373 final bytes of the section. This may be a bug in BFD, but it is
20374 easier to fix it here since that is how the other a.out targets
20375 work. */
20376 int align;
20377
20378 align = bfd_get_section_alignment (stdoutput, segment);
20379 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
20380 }
c19d1205 20381#endif
f0927246
NC
20382
20383 return size;
bfae80f2 20384}
b99bd4ef 20385
c19d1205
ZW
20386/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
20387 of an rs_align_code fragment. */
20388
20389void
20390arm_handle_align (fragS * fragP)
bfae80f2 20391{
e7495e45
NS
20392 static char const arm_noop[2][2][4] =
20393 {
20394 { /* ARMv1 */
20395 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
20396 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
20397 },
20398 { /* ARMv6k */
20399 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
20400 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
20401 },
20402 };
20403 static char const thumb_noop[2][2][2] =
20404 {
20405 { /* Thumb-1 */
20406 {0xc0, 0x46}, /* LE */
20407 {0x46, 0xc0}, /* BE */
20408 },
20409 { /* Thumb-2 */
20410 {0x00, 0xbf}, /* LE */
20411 {0xbf, 0x00} /* BE */
20412 }
20413 };
20414 static char const wide_thumb_noop[2][4] =
20415 { /* Wide Thumb-2 */
20416 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
20417 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
20418 };
c921be7d 20419
e7495e45 20420 unsigned bytes, fix, noop_size;
c19d1205
ZW
20421 char * p;
20422 const char * noop;
e7495e45 20423 const char *narrow_noop = NULL;
cd000bff
DJ
20424#ifdef OBJ_ELF
20425 enum mstate state;
20426#endif
bfae80f2 20427
c19d1205 20428 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
20429 return;
20430
c19d1205
ZW
20431 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
20432 p = fragP->fr_literal + fragP->fr_fix;
20433 fix = 0;
bfae80f2 20434
c19d1205
ZW
20435 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
20436 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 20437
cd000bff 20438 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
8dc2430f 20439
cd000bff 20440 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
a737bd4d 20441 {
e7495e45
NS
20442 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
20443 {
20444 narrow_noop = thumb_noop[1][target_big_endian];
20445 noop = wide_thumb_noop[target_big_endian];
20446 }
c19d1205 20447 else
e7495e45
NS
20448 noop = thumb_noop[0][target_big_endian];
20449 noop_size = 2;
cd000bff
DJ
20450#ifdef OBJ_ELF
20451 state = MAP_THUMB;
20452#endif
7ed4c4c5
NC
20453 }
20454 else
20455 {
e7495e45
NS
20456 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k) != 0]
20457 [target_big_endian];
20458 noop_size = 4;
cd000bff
DJ
20459#ifdef OBJ_ELF
20460 state = MAP_ARM;
20461#endif
7ed4c4c5 20462 }
c921be7d 20463
e7495e45 20464 fragP->fr_var = noop_size;
c921be7d 20465
c19d1205 20466 if (bytes & (noop_size - 1))
7ed4c4c5 20467 {
c19d1205 20468 fix = bytes & (noop_size - 1);
cd000bff
DJ
20469#ifdef OBJ_ELF
20470 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
20471#endif
c19d1205
ZW
20472 memset (p, 0, fix);
20473 p += fix;
20474 bytes -= fix;
a737bd4d 20475 }
a737bd4d 20476
e7495e45
NS
20477 if (narrow_noop)
20478 {
20479 if (bytes & noop_size)
20480 {
20481 /* Insert a narrow noop. */
20482 memcpy (p, narrow_noop, noop_size);
20483 p += noop_size;
20484 bytes -= noop_size;
20485 fix += noop_size;
20486 }
20487
20488 /* Use wide noops for the remainder */
20489 noop_size = 4;
20490 }
20491
c19d1205 20492 while (bytes >= noop_size)
a737bd4d 20493 {
c19d1205
ZW
20494 memcpy (p, noop, noop_size);
20495 p += noop_size;
20496 bytes -= noop_size;
20497 fix += noop_size;
a737bd4d
NC
20498 }
20499
c19d1205 20500 fragP->fr_fix += fix;
a737bd4d
NC
20501}
20502
c19d1205
ZW
20503/* Called from md_do_align. Used to create an alignment
20504 frag in a code section. */
20505
20506void
20507arm_frag_align_code (int n, int max)
bfae80f2 20508{
c19d1205 20509 char * p;
7ed4c4c5 20510
c19d1205 20511 /* We assume that there will never be a requirement
6ec8e702 20512 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
c19d1205 20513 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
6ec8e702
NC
20514 {
20515 char err_msg[128];
20516
fa94de6b 20517 sprintf (err_msg,
6ec8e702
NC
20518 _("alignments greater than %d bytes not supported in .text sections."),
20519 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
20203fb9 20520 as_fatal ("%s", err_msg);
6ec8e702 20521 }
bfae80f2 20522
c19d1205
ZW
20523 p = frag_var (rs_align_code,
20524 MAX_MEM_FOR_RS_ALIGN_CODE,
20525 1,
20526 (relax_substateT) max,
20527 (symbolS *) NULL,
20528 (offsetT) n,
20529 (char *) NULL);
20530 *p = 0;
20531}
bfae80f2 20532
8dc2430f
NC
20533/* Perform target specific initialisation of a frag.
20534 Note - despite the name this initialisation is not done when the frag
20535 is created, but only when its type is assigned. A frag can be created
20536 and used a long time before its type is set, so beware of assuming that
20537 this initialisationis performed first. */
bfae80f2 20538
cd000bff
DJ
20539#ifndef OBJ_ELF
20540void
20541arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
20542{
20543 /* Record whether this frag is in an ARM or a THUMB area. */
2e98972e 20544 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
cd000bff
DJ
20545}
20546
20547#else /* OBJ_ELF is defined. */
c19d1205 20548void
cd000bff 20549arm_init_frag (fragS * fragP, int max_chars)
c19d1205 20550{
8dc2430f
NC
20551 /* If the current ARM vs THUMB mode has not already
20552 been recorded into this frag then do so now. */
cd000bff
DJ
20553 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
20554 {
20555 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
20556
20557 /* Record a mapping symbol for alignment frags. We will delete this
20558 later if the alignment ends up empty. */
20559 switch (fragP->fr_type)
20560 {
20561 case rs_align:
20562 case rs_align_test:
20563 case rs_fill:
20564 mapping_state_2 (MAP_DATA, max_chars);
20565 break;
20566 case rs_align_code:
20567 mapping_state_2 (thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
20568 break;
20569 default:
20570 break;
20571 }
20572 }
bfae80f2
RE
20573}
20574
c19d1205
ZW
20575/* When we change sections we need to issue a new mapping symbol. */
20576
20577void
20578arm_elf_change_section (void)
bfae80f2 20579{
c19d1205
ZW
20580 /* Link an unlinked unwind index table section to the .text section. */
20581 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
20582 && elf_linked_to_section (now_seg) == NULL)
20583 elf_linked_to_section (now_seg) = text_section;
bfae80f2
RE
20584}
20585
c19d1205
ZW
20586int
20587arm_elf_section_type (const char * str, size_t len)
e45d0630 20588{
c19d1205
ZW
20589 if (len == 5 && strncmp (str, "exidx", 5) == 0)
20590 return SHT_ARM_EXIDX;
e45d0630 20591
c19d1205
ZW
20592 return -1;
20593}
20594\f
20595/* Code to deal with unwinding tables. */
e45d0630 20596
c19d1205 20597static void add_unwind_adjustsp (offsetT);
e45d0630 20598
5f4273c7 20599/* Generate any deferred unwind frame offset. */
e45d0630 20600
bfae80f2 20601static void
c19d1205 20602flush_pending_unwind (void)
bfae80f2 20603{
c19d1205 20604 offsetT offset;
bfae80f2 20605
c19d1205
ZW
20606 offset = unwind.pending_offset;
20607 unwind.pending_offset = 0;
20608 if (offset != 0)
20609 add_unwind_adjustsp (offset);
bfae80f2
RE
20610}
20611
c19d1205
ZW
20612/* Add an opcode to this list for this function. Two-byte opcodes should
20613 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
20614 order. */
20615
bfae80f2 20616static void
c19d1205 20617add_unwind_opcode (valueT op, int length)
bfae80f2 20618{
c19d1205
ZW
20619 /* Add any deferred stack adjustment. */
20620 if (unwind.pending_offset)
20621 flush_pending_unwind ();
bfae80f2 20622
c19d1205 20623 unwind.sp_restored = 0;
bfae80f2 20624
c19d1205 20625 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 20626 {
c19d1205
ZW
20627 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
20628 if (unwind.opcodes)
21d799b5
NC
20629 unwind.opcodes = (unsigned char *) xrealloc (unwind.opcodes,
20630 unwind.opcode_alloc);
c19d1205 20631 else
21d799b5 20632 unwind.opcodes = (unsigned char *) xmalloc (unwind.opcode_alloc);
bfae80f2 20633 }
c19d1205 20634 while (length > 0)
bfae80f2 20635 {
c19d1205
ZW
20636 length--;
20637 unwind.opcodes[unwind.opcode_count] = op & 0xff;
20638 op >>= 8;
20639 unwind.opcode_count++;
bfae80f2 20640 }
bfae80f2
RE
20641}
20642
c19d1205
ZW
20643/* Add unwind opcodes to adjust the stack pointer. */
20644
bfae80f2 20645static void
c19d1205 20646add_unwind_adjustsp (offsetT offset)
bfae80f2 20647{
c19d1205 20648 valueT op;
bfae80f2 20649
c19d1205 20650 if (offset > 0x200)
bfae80f2 20651 {
c19d1205
ZW
20652 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
20653 char bytes[5];
20654 int n;
20655 valueT o;
bfae80f2 20656
c19d1205
ZW
20657 /* Long form: 0xb2, uleb128. */
20658 /* This might not fit in a word so add the individual bytes,
20659 remembering the list is built in reverse order. */
20660 o = (valueT) ((offset - 0x204) >> 2);
20661 if (o == 0)
20662 add_unwind_opcode (0, 1);
bfae80f2 20663
c19d1205
ZW
20664 /* Calculate the uleb128 encoding of the offset. */
20665 n = 0;
20666 while (o)
20667 {
20668 bytes[n] = o & 0x7f;
20669 o >>= 7;
20670 if (o)
20671 bytes[n] |= 0x80;
20672 n++;
20673 }
20674 /* Add the insn. */
20675 for (; n; n--)
20676 add_unwind_opcode (bytes[n - 1], 1);
20677 add_unwind_opcode (0xb2, 1);
20678 }
20679 else if (offset > 0x100)
bfae80f2 20680 {
c19d1205
ZW
20681 /* Two short opcodes. */
20682 add_unwind_opcode (0x3f, 1);
20683 op = (offset - 0x104) >> 2;
20684 add_unwind_opcode (op, 1);
bfae80f2 20685 }
c19d1205
ZW
20686 else if (offset > 0)
20687 {
20688 /* Short opcode. */
20689 op = (offset - 4) >> 2;
20690 add_unwind_opcode (op, 1);
20691 }
20692 else if (offset < 0)
bfae80f2 20693 {
c19d1205
ZW
20694 offset = -offset;
20695 while (offset > 0x100)
bfae80f2 20696 {
c19d1205
ZW
20697 add_unwind_opcode (0x7f, 1);
20698 offset -= 0x100;
bfae80f2 20699 }
c19d1205
ZW
20700 op = ((offset - 4) >> 2) | 0x40;
20701 add_unwind_opcode (op, 1);
bfae80f2 20702 }
bfae80f2
RE
20703}
20704
c19d1205
ZW
20705/* Finish the list of unwind opcodes for this function. */
20706static void
20707finish_unwind_opcodes (void)
bfae80f2 20708{
c19d1205 20709 valueT op;
bfae80f2 20710
c19d1205 20711 if (unwind.fp_used)
bfae80f2 20712 {
708587a4 20713 /* Adjust sp as necessary. */
c19d1205
ZW
20714 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
20715 flush_pending_unwind ();
bfae80f2 20716
c19d1205
ZW
20717 /* After restoring sp from the frame pointer. */
20718 op = 0x90 | unwind.fp_reg;
20719 add_unwind_opcode (op, 1);
20720 }
20721 else
20722 flush_pending_unwind ();
bfae80f2
RE
20723}
20724
bfae80f2 20725
c19d1205
ZW
20726/* Start an exception table entry. If idx is nonzero this is an index table
20727 entry. */
bfae80f2
RE
20728
20729static void
c19d1205 20730start_unwind_section (const segT text_seg, int idx)
bfae80f2 20731{
c19d1205
ZW
20732 const char * text_name;
20733 const char * prefix;
20734 const char * prefix_once;
20735 const char * group_name;
20736 size_t prefix_len;
20737 size_t text_len;
20738 char * sec_name;
20739 size_t sec_name_len;
20740 int type;
20741 int flags;
20742 int linkonce;
bfae80f2 20743
c19d1205 20744 if (idx)
bfae80f2 20745 {
c19d1205
ZW
20746 prefix = ELF_STRING_ARM_unwind;
20747 prefix_once = ELF_STRING_ARM_unwind_once;
20748 type = SHT_ARM_EXIDX;
bfae80f2 20749 }
c19d1205 20750 else
bfae80f2 20751 {
c19d1205
ZW
20752 prefix = ELF_STRING_ARM_unwind_info;
20753 prefix_once = ELF_STRING_ARM_unwind_info_once;
20754 type = SHT_PROGBITS;
bfae80f2
RE
20755 }
20756
c19d1205
ZW
20757 text_name = segment_name (text_seg);
20758 if (streq (text_name, ".text"))
20759 text_name = "";
20760
20761 if (strncmp (text_name, ".gnu.linkonce.t.",
20762 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 20763 {
c19d1205
ZW
20764 prefix = prefix_once;
20765 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
20766 }
20767
c19d1205
ZW
20768 prefix_len = strlen (prefix);
20769 text_len = strlen (text_name);
20770 sec_name_len = prefix_len + text_len;
21d799b5 20771 sec_name = (char *) xmalloc (sec_name_len + 1);
c19d1205
ZW
20772 memcpy (sec_name, prefix, prefix_len);
20773 memcpy (sec_name + prefix_len, text_name, text_len);
20774 sec_name[prefix_len + text_len] = '\0';
bfae80f2 20775
c19d1205
ZW
20776 flags = SHF_ALLOC;
20777 linkonce = 0;
20778 group_name = 0;
bfae80f2 20779
c19d1205
ZW
20780 /* Handle COMDAT group. */
20781 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 20782 {
c19d1205
ZW
20783 group_name = elf_group_name (text_seg);
20784 if (group_name == NULL)
20785 {
bd3ba5d1 20786 as_bad (_("Group section `%s' has no group signature"),
c19d1205
ZW
20787 segment_name (text_seg));
20788 ignore_rest_of_line ();
20789 return;
20790 }
20791 flags |= SHF_GROUP;
20792 linkonce = 1;
bfae80f2
RE
20793 }
20794
c19d1205 20795 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
bfae80f2 20796
5f4273c7 20797 /* Set the section link for index tables. */
c19d1205
ZW
20798 if (idx)
20799 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
20800}
20801
bfae80f2 20802
c19d1205
ZW
20803/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
20804 personality routine data. Returns zero, or the index table value for
20805 and inline entry. */
20806
20807static valueT
20808create_unwind_entry (int have_data)
bfae80f2 20809{
c19d1205
ZW
20810 int size;
20811 addressT where;
20812 char *ptr;
20813 /* The current word of data. */
20814 valueT data;
20815 /* The number of bytes left in this word. */
20816 int n;
bfae80f2 20817
c19d1205 20818 finish_unwind_opcodes ();
bfae80f2 20819
c19d1205
ZW
20820 /* Remember the current text section. */
20821 unwind.saved_seg = now_seg;
20822 unwind.saved_subseg = now_subseg;
bfae80f2 20823
c19d1205 20824 start_unwind_section (now_seg, 0);
bfae80f2 20825
c19d1205 20826 if (unwind.personality_routine == NULL)
bfae80f2 20827 {
c19d1205
ZW
20828 if (unwind.personality_index == -2)
20829 {
20830 if (have_data)
5f4273c7 20831 as_bad (_("handlerdata in cantunwind frame"));
c19d1205
ZW
20832 return 1; /* EXIDX_CANTUNWIND. */
20833 }
bfae80f2 20834
c19d1205
ZW
20835 /* Use a default personality routine if none is specified. */
20836 if (unwind.personality_index == -1)
20837 {
20838 if (unwind.opcode_count > 3)
20839 unwind.personality_index = 1;
20840 else
20841 unwind.personality_index = 0;
20842 }
bfae80f2 20843
c19d1205
ZW
20844 /* Space for the personality routine entry. */
20845 if (unwind.personality_index == 0)
20846 {
20847 if (unwind.opcode_count > 3)
20848 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 20849
c19d1205
ZW
20850 if (!have_data)
20851 {
20852 /* All the data is inline in the index table. */
20853 data = 0x80;
20854 n = 3;
20855 while (unwind.opcode_count > 0)
20856 {
20857 unwind.opcode_count--;
20858 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20859 n--;
20860 }
bfae80f2 20861
c19d1205
ZW
20862 /* Pad with "finish" opcodes. */
20863 while (n--)
20864 data = (data << 8) | 0xb0;
bfae80f2 20865
c19d1205
ZW
20866 return data;
20867 }
20868 size = 0;
20869 }
20870 else
20871 /* We get two opcodes "free" in the first word. */
20872 size = unwind.opcode_count - 2;
20873 }
20874 else
5011093d
NC
20875 {
20876 gas_assert (unwind.personality_index == -1);
20877
20878 /* An extra byte is required for the opcode count. */
20879 size = unwind.opcode_count + 1;
20880 }
bfae80f2 20881
c19d1205
ZW
20882 size = (size + 3) >> 2;
20883 if (size > 0xff)
20884 as_bad (_("too many unwind opcodes"));
bfae80f2 20885
c19d1205
ZW
20886 frag_align (2, 0, 0);
20887 record_alignment (now_seg, 2);
20888 unwind.table_entry = expr_build_dot ();
20889
20890 /* Allocate the table entry. */
20891 ptr = frag_more ((size << 2) + 4);
74929e7b
NC
20892 /* PR 13449: Zero the table entries in case some of them are not used. */
20893 memset (ptr, 0, (size << 2) + 4);
c19d1205 20894 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 20895
c19d1205 20896 switch (unwind.personality_index)
bfae80f2 20897 {
c19d1205
ZW
20898 case -1:
20899 /* ??? Should this be a PLT generating relocation? */
20900 /* Custom personality routine. */
20901 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
20902 BFD_RELOC_ARM_PREL31);
bfae80f2 20903
c19d1205
ZW
20904 where += 4;
20905 ptr += 4;
bfae80f2 20906
c19d1205 20907 /* Set the first byte to the number of additional words. */
5011093d 20908 data = size > 0 ? size - 1 : 0;
c19d1205
ZW
20909 n = 3;
20910 break;
bfae80f2 20911
c19d1205
ZW
20912 /* ABI defined personality routines. */
20913 case 0:
20914 /* Three opcodes bytes are packed into the first word. */
20915 data = 0x80;
20916 n = 3;
20917 break;
bfae80f2 20918
c19d1205
ZW
20919 case 1:
20920 case 2:
20921 /* The size and first two opcode bytes go in the first word. */
20922 data = ((0x80 + unwind.personality_index) << 8) | size;
20923 n = 2;
20924 break;
bfae80f2 20925
c19d1205
ZW
20926 default:
20927 /* Should never happen. */
20928 abort ();
20929 }
bfae80f2 20930
c19d1205
ZW
20931 /* Pack the opcodes into words (MSB first), reversing the list at the same
20932 time. */
20933 while (unwind.opcode_count > 0)
20934 {
20935 if (n == 0)
20936 {
20937 md_number_to_chars (ptr, data, 4);
20938 ptr += 4;
20939 n = 4;
20940 data = 0;
20941 }
20942 unwind.opcode_count--;
20943 n--;
20944 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
20945 }
20946
20947 /* Finish off the last word. */
20948 if (n < 4)
20949 {
20950 /* Pad with "finish" opcodes. */
20951 while (n--)
20952 data = (data << 8) | 0xb0;
20953
20954 md_number_to_chars (ptr, data, 4);
20955 }
20956
20957 if (!have_data)
20958 {
20959 /* Add an empty descriptor if there is no user-specified data. */
20960 ptr = frag_more (4);
20961 md_number_to_chars (ptr, 0, 4);
20962 }
20963
20964 return 0;
bfae80f2
RE
20965}
20966
f0927246
NC
20967
20968/* Initialize the DWARF-2 unwind information for this procedure. */
20969
20970void
20971tc_arm_frame_initial_instructions (void)
20972{
20973 cfi_add_CFA_def_cfa (REG_SP, 0);
20974}
20975#endif /* OBJ_ELF */
20976
c19d1205
ZW
20977/* Convert REGNAME to a DWARF-2 register number. */
20978
20979int
1df69f4f 20980tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 20981{
1df69f4f 20982 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
c19d1205
ZW
20983
20984 if (reg == FAIL)
20985 return -1;
20986
20987 return reg;
bfae80f2
RE
20988}
20989
f0927246 20990#ifdef TE_PE
c19d1205 20991void
f0927246 20992tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 20993{
91d6fa6a 20994 expressionS exp;
bfae80f2 20995
91d6fa6a
NC
20996 exp.X_op = O_secrel;
20997 exp.X_add_symbol = symbol;
20998 exp.X_add_number = 0;
20999 emit_expr (&exp, size);
f0927246
NC
21000}
21001#endif
bfae80f2 21002
c19d1205 21003/* MD interface: Symbol and relocation handling. */
bfae80f2 21004
2fc8bdac
ZW
21005/* Return the address within the segment that a PC-relative fixup is
21006 relative to. For ARM, PC-relative fixups applied to instructions
21007 are generally relative to the location of the fixup plus 8 bytes.
21008 Thumb branches are offset by 4, and Thumb loads relative to PC
21009 require special handling. */
bfae80f2 21010
c19d1205 21011long
2fc8bdac 21012md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 21013{
2fc8bdac
ZW
21014 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
21015
21016 /* If this is pc-relative and we are going to emit a relocation
21017 then we just want to put out any pipeline compensation that the linker
53baae48
NC
21018 will need. Otherwise we want to use the calculated base.
21019 For WinCE we skip the bias for externals as well, since this
21020 is how the MS ARM-CE assembler behaves and we want to be compatible. */
5f4273c7 21021 if (fixP->fx_pcrel
2fc8bdac 21022 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
21023 || (arm_force_relocation (fixP)
21024#ifdef TE_WINCE
21025 && !S_IS_EXTERNAL (fixP->fx_addsy)
21026#endif
21027 )))
2fc8bdac 21028 base = 0;
bfae80f2 21029
267bf995 21030
c19d1205 21031 switch (fixP->fx_r_type)
bfae80f2 21032 {
2fc8bdac
ZW
21033 /* PC relative addressing on the Thumb is slightly odd as the
21034 bottom two bits of the PC are forced to zero for the
21035 calculation. This happens *after* application of the
21036 pipeline offset. However, Thumb adrl already adjusts for
21037 this, so we need not do it again. */
c19d1205 21038 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 21039 return base & ~3;
c19d1205
ZW
21040
21041 case BFD_RELOC_ARM_THUMB_OFFSET:
21042 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 21043 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 21044 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 21045 return (base + 4) & ~3;
c19d1205 21046
2fc8bdac
ZW
21047 /* Thumb branches are simply offset by +4. */
21048 case BFD_RELOC_THUMB_PCREL_BRANCH7:
21049 case BFD_RELOC_THUMB_PCREL_BRANCH9:
21050 case BFD_RELOC_THUMB_PCREL_BRANCH12:
21051 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac 21052 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac 21053 return base + 4;
bfae80f2 21054
267bf995 21055 case BFD_RELOC_THUMB_PCREL_BRANCH23:
486499d0
CL
21056 if (fixP->fx_addsy
21057 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21058 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21059 && ARM_IS_FUNC (fixP->fx_addsy)
21060 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21061 base = fixP->fx_where + fixP->fx_frag->fr_address;
21062 return base + 4;
21063
00adf2d4
JB
21064 /* BLX is like branches above, but forces the low two bits of PC to
21065 zero. */
486499d0
CL
21066 case BFD_RELOC_THUMB_PCREL_BLX:
21067 if (fixP->fx_addsy
21068 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21069 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21070 && THUMB_IS_FUNC (fixP->fx_addsy)
21071 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21072 base = fixP->fx_where + fixP->fx_frag->fr_address;
00adf2d4
JB
21073 return (base + 4) & ~3;
21074
2fc8bdac
ZW
21075 /* ARM mode branches are offset by +8. However, the Windows CE
21076 loader expects the relocation not to take this into account. */
267bf995 21077 case BFD_RELOC_ARM_PCREL_BLX:
486499d0
CL
21078 if (fixP->fx_addsy
21079 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21080 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21081 && ARM_IS_FUNC (fixP->fx_addsy)
21082 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21083 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21084 return base + 8;
267bf995 21085
486499d0
CL
21086 case BFD_RELOC_ARM_PCREL_CALL:
21087 if (fixP->fx_addsy
21088 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 21089 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21090 && THUMB_IS_FUNC (fixP->fx_addsy)
21091 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
21092 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 21093 return base + 8;
267bf995 21094
2fc8bdac 21095 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c 21096 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 21097 case BFD_RELOC_ARM_PLT32:
c19d1205 21098#ifdef TE_WINCE
5f4273c7 21099 /* When handling fixups immediately, because we have already
53baae48
NC
21100 discovered the value of a symbol, or the address of the frag involved
21101 we must account for the offset by +8, as the OS loader will never see the reloc.
21102 see fixup_segment() in write.c
21103 The S_IS_EXTERNAL test handles the case of global symbols.
21104 Those need the calculated base, not just the pipe compensation the linker will need. */
21105 if (fixP->fx_pcrel
21106 && fixP->fx_addsy != NULL
21107 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21108 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
21109 return base + 8;
2fc8bdac 21110 return base;
c19d1205 21111#else
2fc8bdac 21112 return base + 8;
c19d1205 21113#endif
2fc8bdac 21114
267bf995 21115
2fc8bdac
ZW
21116 /* ARM mode loads relative to PC are also offset by +8. Unlike
21117 branches, the Windows CE loader *does* expect the relocation
21118 to take this into account. */
21119 case BFD_RELOC_ARM_OFFSET_IMM:
21120 case BFD_RELOC_ARM_OFFSET_IMM8:
21121 case BFD_RELOC_ARM_HWLITERAL:
21122 case BFD_RELOC_ARM_LITERAL:
21123 case BFD_RELOC_ARM_CP_OFF_IMM:
21124 return base + 8;
21125
21126
21127 /* Other PC-relative relocations are un-offset. */
21128 default:
21129 return base;
21130 }
bfae80f2
RE
21131}
21132
c19d1205
ZW
21133/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
21134 Otherwise we have no need to default values of symbols. */
21135
21136symbolS *
21137md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
bfae80f2 21138{
c19d1205
ZW
21139#ifdef OBJ_ELF
21140 if (name[0] == '_' && name[1] == 'G'
21141 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
21142 {
21143 if (!GOT_symbol)
21144 {
21145 if (symbol_find (name))
bd3ba5d1 21146 as_bad (_("GOT already in the symbol table"));
bfae80f2 21147
c19d1205
ZW
21148 GOT_symbol = symbol_new (name, undefined_section,
21149 (valueT) 0, & zero_address_frag);
21150 }
bfae80f2 21151
c19d1205 21152 return GOT_symbol;
bfae80f2 21153 }
c19d1205 21154#endif
bfae80f2 21155
c921be7d 21156 return NULL;
bfae80f2
RE
21157}
21158
55cf6793 21159/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
21160 computed as two separate immediate values, added together. We
21161 already know that this value cannot be computed by just one ARM
21162 instruction. */
21163
21164static unsigned int
21165validate_immediate_twopart (unsigned int val,
21166 unsigned int * highpart)
bfae80f2 21167{
c19d1205
ZW
21168 unsigned int a;
21169 unsigned int i;
bfae80f2 21170
c19d1205
ZW
21171 for (i = 0; i < 32; i += 2)
21172 if (((a = rotate_left (val, i)) & 0xff) != 0)
21173 {
21174 if (a & 0xff00)
21175 {
21176 if (a & ~ 0xffff)
21177 continue;
21178 * highpart = (a >> 8) | ((i + 24) << 7);
21179 }
21180 else if (a & 0xff0000)
21181 {
21182 if (a & 0xff000000)
21183 continue;
21184 * highpart = (a >> 16) | ((i + 16) << 7);
21185 }
21186 else
21187 {
9c2799c2 21188 gas_assert (a & 0xff000000);
c19d1205
ZW
21189 * highpart = (a >> 24) | ((i + 8) << 7);
21190 }
bfae80f2 21191
c19d1205
ZW
21192 return (a & 0xff) | (i << 7);
21193 }
bfae80f2 21194
c19d1205 21195 return FAIL;
bfae80f2
RE
21196}
21197
c19d1205
ZW
21198static int
21199validate_offset_imm (unsigned int val, int hwse)
21200{
21201 if ((hwse && val > 255) || val > 4095)
21202 return FAIL;
21203 return val;
21204}
bfae80f2 21205
55cf6793 21206/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
21207 negative immediate constant by altering the instruction. A bit of
21208 a hack really.
21209 MOV <-> MVN
21210 AND <-> BIC
21211 ADC <-> SBC
21212 by inverting the second operand, and
21213 ADD <-> SUB
21214 CMP <-> CMN
21215 by negating the second operand. */
bfae80f2 21216
c19d1205
ZW
21217static int
21218negate_data_op (unsigned long * instruction,
21219 unsigned long value)
bfae80f2 21220{
c19d1205
ZW
21221 int op, new_inst;
21222 unsigned long negated, inverted;
bfae80f2 21223
c19d1205
ZW
21224 negated = encode_arm_immediate (-value);
21225 inverted = encode_arm_immediate (~value);
bfae80f2 21226
c19d1205
ZW
21227 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
21228 switch (op)
bfae80f2 21229 {
c19d1205
ZW
21230 /* First negates. */
21231 case OPCODE_SUB: /* ADD <-> SUB */
21232 new_inst = OPCODE_ADD;
21233 value = negated;
21234 break;
bfae80f2 21235
c19d1205
ZW
21236 case OPCODE_ADD:
21237 new_inst = OPCODE_SUB;
21238 value = negated;
21239 break;
bfae80f2 21240
c19d1205
ZW
21241 case OPCODE_CMP: /* CMP <-> CMN */
21242 new_inst = OPCODE_CMN;
21243 value = negated;
21244 break;
bfae80f2 21245
c19d1205
ZW
21246 case OPCODE_CMN:
21247 new_inst = OPCODE_CMP;
21248 value = negated;
21249 break;
bfae80f2 21250
c19d1205
ZW
21251 /* Now Inverted ops. */
21252 case OPCODE_MOV: /* MOV <-> MVN */
21253 new_inst = OPCODE_MVN;
21254 value = inverted;
21255 break;
bfae80f2 21256
c19d1205
ZW
21257 case OPCODE_MVN:
21258 new_inst = OPCODE_MOV;
21259 value = inverted;
21260 break;
bfae80f2 21261
c19d1205
ZW
21262 case OPCODE_AND: /* AND <-> BIC */
21263 new_inst = OPCODE_BIC;
21264 value = inverted;
21265 break;
bfae80f2 21266
c19d1205
ZW
21267 case OPCODE_BIC:
21268 new_inst = OPCODE_AND;
21269 value = inverted;
21270 break;
bfae80f2 21271
c19d1205
ZW
21272 case OPCODE_ADC: /* ADC <-> SBC */
21273 new_inst = OPCODE_SBC;
21274 value = inverted;
21275 break;
bfae80f2 21276
c19d1205
ZW
21277 case OPCODE_SBC:
21278 new_inst = OPCODE_ADC;
21279 value = inverted;
21280 break;
bfae80f2 21281
c19d1205
ZW
21282 /* We cannot do anything. */
21283 default:
21284 return FAIL;
b99bd4ef
NC
21285 }
21286
c19d1205
ZW
21287 if (value == (unsigned) FAIL)
21288 return FAIL;
21289
21290 *instruction &= OPCODE_MASK;
21291 *instruction |= new_inst << DATA_OP_SHIFT;
21292 return value;
b99bd4ef
NC
21293}
21294
ef8d22e6
PB
21295/* Like negate_data_op, but for Thumb-2. */
21296
21297static unsigned int
16dd5e42 21298thumb32_negate_data_op (offsetT *instruction, unsigned int value)
ef8d22e6
PB
21299{
21300 int op, new_inst;
21301 int rd;
16dd5e42 21302 unsigned int negated, inverted;
ef8d22e6
PB
21303
21304 negated = encode_thumb32_immediate (-value);
21305 inverted = encode_thumb32_immediate (~value);
21306
21307 rd = (*instruction >> 8) & 0xf;
21308 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
21309 switch (op)
21310 {
21311 /* ADD <-> SUB. Includes CMP <-> CMN. */
21312 case T2_OPCODE_SUB:
21313 new_inst = T2_OPCODE_ADD;
21314 value = negated;
21315 break;
21316
21317 case T2_OPCODE_ADD:
21318 new_inst = T2_OPCODE_SUB;
21319 value = negated;
21320 break;
21321
21322 /* ORR <-> ORN. Includes MOV <-> MVN. */
21323 case T2_OPCODE_ORR:
21324 new_inst = T2_OPCODE_ORN;
21325 value = inverted;
21326 break;
21327
21328 case T2_OPCODE_ORN:
21329 new_inst = T2_OPCODE_ORR;
21330 value = inverted;
21331 break;
21332
21333 /* AND <-> BIC. TST has no inverted equivalent. */
21334 case T2_OPCODE_AND:
21335 new_inst = T2_OPCODE_BIC;
21336 if (rd == 15)
21337 value = FAIL;
21338 else
21339 value = inverted;
21340 break;
21341
21342 case T2_OPCODE_BIC:
21343 new_inst = T2_OPCODE_AND;
21344 value = inverted;
21345 break;
21346
21347 /* ADC <-> SBC */
21348 case T2_OPCODE_ADC:
21349 new_inst = T2_OPCODE_SBC;
21350 value = inverted;
21351 break;
21352
21353 case T2_OPCODE_SBC:
21354 new_inst = T2_OPCODE_ADC;
21355 value = inverted;
21356 break;
21357
21358 /* We cannot do anything. */
21359 default:
21360 return FAIL;
21361 }
21362
16dd5e42 21363 if (value == (unsigned int)FAIL)
ef8d22e6
PB
21364 return FAIL;
21365
21366 *instruction &= T2_OPCODE_MASK;
21367 *instruction |= new_inst << T2_DATA_OP_SHIFT;
21368 return value;
21369}
21370
8f06b2d8
PB
21371/* Read a 32-bit thumb instruction from buf. */
21372static unsigned long
21373get_thumb32_insn (char * buf)
21374{
21375 unsigned long insn;
21376 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
21377 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21378
21379 return insn;
21380}
21381
a8bc6c78
PB
21382
21383/* We usually want to set the low bit on the address of thumb function
21384 symbols. In particular .word foo - . should have the low bit set.
21385 Generic code tries to fold the difference of two symbols to
21386 a constant. Prevent this and force a relocation when the first symbols
21387 is a thumb function. */
c921be7d
NC
21388
21389bfd_boolean
a8bc6c78
PB
21390arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
21391{
21392 if (op == O_subtract
21393 && l->X_op == O_symbol
21394 && r->X_op == O_symbol
21395 && THUMB_IS_FUNC (l->X_add_symbol))
21396 {
21397 l->X_op = O_subtract;
21398 l->X_op_symbol = r->X_add_symbol;
21399 l->X_add_number -= r->X_add_number;
c921be7d 21400 return TRUE;
a8bc6c78 21401 }
c921be7d 21402
a8bc6c78 21403 /* Process as normal. */
c921be7d 21404 return FALSE;
a8bc6c78
PB
21405}
21406
4a42ebbc
RR
21407/* Encode Thumb2 unconditional branches and calls. The encoding
21408 for the 2 are identical for the immediate values. */
21409
21410static void
21411encode_thumb2_b_bl_offset (char * buf, offsetT value)
21412{
21413#define T2I1I2MASK ((1 << 13) | (1 << 11))
21414 offsetT newval;
21415 offsetT newval2;
21416 addressT S, I1, I2, lo, hi;
21417
21418 S = (value >> 24) & 0x01;
21419 I1 = (value >> 23) & 0x01;
21420 I2 = (value >> 22) & 0x01;
21421 hi = (value >> 12) & 0x3ff;
fa94de6b 21422 lo = (value >> 1) & 0x7ff;
4a42ebbc
RR
21423 newval = md_chars_to_number (buf, THUMB_SIZE);
21424 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
21425 newval |= (S << 10) | hi;
21426 newval2 &= ~T2I1I2MASK;
21427 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
21428 md_number_to_chars (buf, newval, THUMB_SIZE);
21429 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
21430}
21431
c19d1205 21432void
55cf6793 21433md_apply_fix (fixS * fixP,
c19d1205
ZW
21434 valueT * valP,
21435 segT seg)
21436{
21437 offsetT value = * valP;
21438 offsetT newval;
21439 unsigned int newimm;
21440 unsigned long temp;
21441 int sign;
21442 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 21443
9c2799c2 21444 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 21445
c19d1205 21446 /* Note whether this will delete the relocation. */
4962c51a 21447
c19d1205
ZW
21448 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
21449 fixP->fx_done = 1;
b99bd4ef 21450
adbaf948 21451 /* On a 64-bit host, silently truncate 'value' to 32 bits for
5f4273c7 21452 consistency with the behaviour on 32-bit hosts. Remember value
adbaf948
ZW
21453 for emit_reloc. */
21454 value &= 0xffffffff;
21455 value ^= 0x80000000;
5f4273c7 21456 value -= 0x80000000;
adbaf948
ZW
21457
21458 *valP = value;
c19d1205 21459 fixP->fx_addnumber = value;
b99bd4ef 21460
adbaf948
ZW
21461 /* Same treatment for fixP->fx_offset. */
21462 fixP->fx_offset &= 0xffffffff;
21463 fixP->fx_offset ^= 0x80000000;
21464 fixP->fx_offset -= 0x80000000;
21465
c19d1205 21466 switch (fixP->fx_r_type)
b99bd4ef 21467 {
c19d1205
ZW
21468 case BFD_RELOC_NONE:
21469 /* This will need to go in the object file. */
21470 fixP->fx_done = 0;
21471 break;
b99bd4ef 21472
c19d1205
ZW
21473 case BFD_RELOC_ARM_IMMEDIATE:
21474 /* We claim that this fixup has been processed here,
21475 even if in fact we generate an error because we do
21476 not have a reloc for it, so tc_gen_reloc will reject it. */
21477 fixP->fx_done = 1;
b99bd4ef 21478
77db8e2e 21479 if (fixP->fx_addsy)
b99bd4ef 21480 {
77db8e2e 21481 const char *msg = 0;
b99bd4ef 21482
77db8e2e
NC
21483 if (! S_IS_DEFINED (fixP->fx_addsy))
21484 msg = _("undefined symbol %s used as an immediate value");
21485 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21486 msg = _("symbol %s is in a different section");
21487 else if (S_IS_WEAK (fixP->fx_addsy))
21488 msg = _("symbol %s is weak and may be overridden later");
21489
21490 if (msg)
21491 {
21492 as_bad_where (fixP->fx_file, fixP->fx_line,
21493 msg, S_GET_NAME (fixP->fx_addsy));
21494 break;
21495 }
42e5fcbf
AS
21496 }
21497
c19d1205
ZW
21498 temp = md_chars_to_number (buf, INSN_SIZE);
21499
5e73442d
SL
21500 /* If the offset is negative, we should use encoding A2 for ADR. */
21501 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
21502 newimm = negate_data_op (&temp, value);
21503 else
21504 {
21505 newimm = encode_arm_immediate (value);
21506
21507 /* If the instruction will fail, see if we can fix things up by
21508 changing the opcode. */
21509 if (newimm == (unsigned int) FAIL)
21510 newimm = negate_data_op (&temp, value);
21511 }
21512
21513 if (newimm == (unsigned int) FAIL)
b99bd4ef 21514 {
c19d1205
ZW
21515 as_bad_where (fixP->fx_file, fixP->fx_line,
21516 _("invalid constant (%lx) after fixup"),
21517 (unsigned long) value);
21518 break;
b99bd4ef 21519 }
b99bd4ef 21520
c19d1205
ZW
21521 newimm |= (temp & 0xfffff000);
21522 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
21523 break;
b99bd4ef 21524
c19d1205
ZW
21525 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
21526 {
21527 unsigned int highpart = 0;
21528 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 21529
77db8e2e 21530 if (fixP->fx_addsy)
42e5fcbf 21531 {
77db8e2e 21532 const char *msg = 0;
42e5fcbf 21533
77db8e2e
NC
21534 if (! S_IS_DEFINED (fixP->fx_addsy))
21535 msg = _("undefined symbol %s used as an immediate value");
21536 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
21537 msg = _("symbol %s is in a different section");
21538 else if (S_IS_WEAK (fixP->fx_addsy))
21539 msg = _("symbol %s is weak and may be overridden later");
42e5fcbf 21540
77db8e2e
NC
21541 if (msg)
21542 {
21543 as_bad_where (fixP->fx_file, fixP->fx_line,
21544 msg, S_GET_NAME (fixP->fx_addsy));
21545 break;
21546 }
21547 }
fa94de6b 21548
c19d1205
ZW
21549 newimm = encode_arm_immediate (value);
21550 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 21551
c19d1205
ZW
21552 /* If the instruction will fail, see if we can fix things up by
21553 changing the opcode. */
21554 if (newimm == (unsigned int) FAIL
21555 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
21556 {
21557 /* No ? OK - try using two ADD instructions to generate
21558 the value. */
21559 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 21560
c19d1205
ZW
21561 /* Yes - then make sure that the second instruction is
21562 also an add. */
21563 if (newimm != (unsigned int) FAIL)
21564 newinsn = temp;
21565 /* Still No ? Try using a negated value. */
21566 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
21567 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
21568 /* Otherwise - give up. */
21569 else
21570 {
21571 as_bad_where (fixP->fx_file, fixP->fx_line,
21572 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
21573 (long) value);
21574 break;
21575 }
b99bd4ef 21576
c19d1205
ZW
21577 /* Replace the first operand in the 2nd instruction (which
21578 is the PC) with the destination register. We have
21579 already added in the PC in the first instruction and we
21580 do not want to do it again. */
21581 newinsn &= ~ 0xf0000;
21582 newinsn |= ((newinsn & 0x0f000) << 4);
21583 }
b99bd4ef 21584
c19d1205
ZW
21585 newimm |= (temp & 0xfffff000);
21586 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 21587
c19d1205
ZW
21588 highpart |= (newinsn & 0xfffff000);
21589 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
21590 }
21591 break;
b99bd4ef 21592
c19d1205 21593 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
21594 if (!fixP->fx_done && seg->use_rela_p)
21595 value = 0;
21596
c19d1205 21597 case BFD_RELOC_ARM_LITERAL:
26d97720 21598 sign = value > 0;
b99bd4ef 21599
c19d1205
ZW
21600 if (value < 0)
21601 value = - value;
b99bd4ef 21602
c19d1205 21603 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 21604 {
c19d1205
ZW
21605 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
21606 as_bad_where (fixP->fx_file, fixP->fx_line,
21607 _("invalid literal constant: pool needs to be closer"));
21608 else
21609 as_bad_where (fixP->fx_file, fixP->fx_line,
21610 _("bad immediate value for offset (%ld)"),
21611 (long) value);
21612 break;
f03698e6
RE
21613 }
21614
c19d1205 21615 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
21616 if (value == 0)
21617 newval &= 0xfffff000;
21618 else
21619 {
21620 newval &= 0xff7ff000;
21621 newval |= value | (sign ? INDEX_UP : 0);
21622 }
c19d1205
ZW
21623 md_number_to_chars (buf, newval, INSN_SIZE);
21624 break;
b99bd4ef 21625
c19d1205
ZW
21626 case BFD_RELOC_ARM_OFFSET_IMM8:
21627 case BFD_RELOC_ARM_HWLITERAL:
26d97720 21628 sign = value > 0;
b99bd4ef 21629
c19d1205
ZW
21630 if (value < 0)
21631 value = - value;
b99bd4ef 21632
c19d1205 21633 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 21634 {
c19d1205
ZW
21635 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
21636 as_bad_where (fixP->fx_file, fixP->fx_line,
21637 _("invalid literal constant: pool needs to be closer"));
21638 else
427d0db6
RM
21639 as_bad_where (fixP->fx_file, fixP->fx_line,
21640 _("bad immediate value for 8-bit offset (%ld)"),
21641 (long) value);
c19d1205 21642 break;
b99bd4ef
NC
21643 }
21644
c19d1205 21645 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
21646 if (value == 0)
21647 newval &= 0xfffff0f0;
21648 else
21649 {
21650 newval &= 0xff7ff0f0;
21651 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
21652 }
c19d1205
ZW
21653 md_number_to_chars (buf, newval, INSN_SIZE);
21654 break;
b99bd4ef 21655
c19d1205
ZW
21656 case BFD_RELOC_ARM_T32_OFFSET_U8:
21657 if (value < 0 || value > 1020 || value % 4 != 0)
21658 as_bad_where (fixP->fx_file, fixP->fx_line,
21659 _("bad immediate value for offset (%ld)"), (long) value);
21660 value /= 4;
b99bd4ef 21661
c19d1205 21662 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
21663 newval |= value;
21664 md_number_to_chars (buf+2, newval, THUMB_SIZE);
21665 break;
b99bd4ef 21666
c19d1205
ZW
21667 case BFD_RELOC_ARM_T32_OFFSET_IMM:
21668 /* This is a complicated relocation used for all varieties of Thumb32
21669 load/store instruction with immediate offset:
21670
21671 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
21672 *4, optional writeback(W)
21673 (doubleword load/store)
21674
21675 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
21676 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
21677 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
21678 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
21679 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
21680
21681 Uppercase letters indicate bits that are already encoded at
21682 this point. Lowercase letters are our problem. For the
21683 second block of instructions, the secondary opcode nybble
21684 (bits 8..11) is present, and bit 23 is zero, even if this is
21685 a PC-relative operation. */
21686 newval = md_chars_to_number (buf, THUMB_SIZE);
21687 newval <<= 16;
21688 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 21689
c19d1205 21690 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 21691 {
c19d1205
ZW
21692 /* Doubleword load/store: 8-bit offset, scaled by 4. */
21693 if (value >= 0)
21694 newval |= (1 << 23);
21695 else
21696 value = -value;
21697 if (value % 4 != 0)
21698 {
21699 as_bad_where (fixP->fx_file, fixP->fx_line,
21700 _("offset not a multiple of 4"));
21701 break;
21702 }
21703 value /= 4;
216d22bc 21704 if (value > 0xff)
c19d1205
ZW
21705 {
21706 as_bad_where (fixP->fx_file, fixP->fx_line,
21707 _("offset out of range"));
21708 break;
21709 }
21710 newval &= ~0xff;
b99bd4ef 21711 }
c19d1205 21712 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 21713 {
c19d1205
ZW
21714 /* PC-relative, 12-bit offset. */
21715 if (value >= 0)
21716 newval |= (1 << 23);
21717 else
21718 value = -value;
216d22bc 21719 if (value > 0xfff)
c19d1205
ZW
21720 {
21721 as_bad_where (fixP->fx_file, fixP->fx_line,
21722 _("offset out of range"));
21723 break;
21724 }
21725 newval &= ~0xfff;
b99bd4ef 21726 }
c19d1205 21727 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 21728 {
c19d1205
ZW
21729 /* Writeback: 8-bit, +/- offset. */
21730 if (value >= 0)
21731 newval |= (1 << 9);
21732 else
21733 value = -value;
216d22bc 21734 if (value > 0xff)
c19d1205
ZW
21735 {
21736 as_bad_where (fixP->fx_file, fixP->fx_line,
21737 _("offset out of range"));
21738 break;
21739 }
21740 newval &= ~0xff;
b99bd4ef 21741 }
c19d1205 21742 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 21743 {
c19d1205 21744 /* T-instruction: positive 8-bit offset. */
216d22bc 21745 if (value < 0 || value > 0xff)
b99bd4ef 21746 {
c19d1205
ZW
21747 as_bad_where (fixP->fx_file, fixP->fx_line,
21748 _("offset out of range"));
21749 break;
b99bd4ef 21750 }
c19d1205
ZW
21751 newval &= ~0xff;
21752 newval |= value;
b99bd4ef
NC
21753 }
21754 else
b99bd4ef 21755 {
c19d1205
ZW
21756 /* Positive 12-bit or negative 8-bit offset. */
21757 int limit;
21758 if (value >= 0)
b99bd4ef 21759 {
c19d1205
ZW
21760 newval |= (1 << 23);
21761 limit = 0xfff;
21762 }
21763 else
21764 {
21765 value = -value;
21766 limit = 0xff;
21767 }
21768 if (value > limit)
21769 {
21770 as_bad_where (fixP->fx_file, fixP->fx_line,
21771 _("offset out of range"));
21772 break;
b99bd4ef 21773 }
c19d1205 21774 newval &= ~limit;
b99bd4ef 21775 }
b99bd4ef 21776
c19d1205
ZW
21777 newval |= value;
21778 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
21779 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
21780 break;
404ff6b5 21781
c19d1205
ZW
21782 case BFD_RELOC_ARM_SHIFT_IMM:
21783 newval = md_chars_to_number (buf, INSN_SIZE);
21784 if (((unsigned long) value) > 32
21785 || (value == 32
21786 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
21787 {
21788 as_bad_where (fixP->fx_file, fixP->fx_line,
21789 _("shift expression is too large"));
21790 break;
21791 }
404ff6b5 21792
c19d1205
ZW
21793 if (value == 0)
21794 /* Shifts of zero must be done as lsl. */
21795 newval &= ~0x60;
21796 else if (value == 32)
21797 value = 0;
21798 newval &= 0xfffff07f;
21799 newval |= (value & 0x1f) << 7;
21800 md_number_to_chars (buf, newval, INSN_SIZE);
21801 break;
404ff6b5 21802
c19d1205 21803 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 21804 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 21805 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 21806 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
21807 /* We claim that this fixup has been processed here,
21808 even if in fact we generate an error because we do
21809 not have a reloc for it, so tc_gen_reloc will reject it. */
21810 fixP->fx_done = 1;
404ff6b5 21811
c19d1205
ZW
21812 if (fixP->fx_addsy
21813 && ! S_IS_DEFINED (fixP->fx_addsy))
21814 {
21815 as_bad_where (fixP->fx_file, fixP->fx_line,
21816 _("undefined symbol %s used as an immediate value"),
21817 S_GET_NAME (fixP->fx_addsy));
21818 break;
21819 }
404ff6b5 21820
c19d1205
ZW
21821 newval = md_chars_to_number (buf, THUMB_SIZE);
21822 newval <<= 16;
21823 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 21824
16805f35
PB
21825 newimm = FAIL;
21826 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
21827 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
21828 {
21829 newimm = encode_thumb32_immediate (value);
21830 if (newimm == (unsigned int) FAIL)
21831 newimm = thumb32_negate_data_op (&newval, value);
21832 }
16805f35
PB
21833 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
21834 && newimm == (unsigned int) FAIL)
92e90b6e 21835 {
16805f35
PB
21836 /* Turn add/sum into addw/subw. */
21837 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
21838 newval = (newval & 0xfeffffff) | 0x02000000;
40f246e3
NC
21839 /* No flat 12-bit imm encoding for addsw/subsw. */
21840 if ((newval & 0x00100000) == 0)
e9f89963 21841 {
40f246e3
NC
21842 /* 12 bit immediate for addw/subw. */
21843 if (value < 0)
21844 {
21845 value = -value;
21846 newval ^= 0x00a00000;
21847 }
21848 if (value > 0xfff)
21849 newimm = (unsigned int) FAIL;
21850 else
21851 newimm = value;
e9f89963 21852 }
92e90b6e 21853 }
cc8a6dd0 21854
c19d1205 21855 if (newimm == (unsigned int)FAIL)
3631a3c8 21856 {
c19d1205
ZW
21857 as_bad_where (fixP->fx_file, fixP->fx_line,
21858 _("invalid constant (%lx) after fixup"),
21859 (unsigned long) value);
21860 break;
3631a3c8
NC
21861 }
21862
c19d1205
ZW
21863 newval |= (newimm & 0x800) << 15;
21864 newval |= (newimm & 0x700) << 4;
21865 newval |= (newimm & 0x0ff);
cc8a6dd0 21866
c19d1205
ZW
21867 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
21868 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
21869 break;
a737bd4d 21870
3eb17e6b 21871 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
21872 if (((unsigned long) value) > 0xffff)
21873 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 21874 _("invalid smc expression"));
2fc8bdac 21875 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21876 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21877 md_number_to_chars (buf, newval, INSN_SIZE);
21878 break;
a737bd4d 21879
90ec0d68
MGD
21880 case BFD_RELOC_ARM_HVC:
21881 if (((unsigned long) value) > 0xffff)
21882 as_bad_where (fixP->fx_file, fixP->fx_line,
21883 _("invalid hvc expression"));
21884 newval = md_chars_to_number (buf, INSN_SIZE);
21885 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
21886 md_number_to_chars (buf, newval, INSN_SIZE);
21887 break;
21888
c19d1205 21889 case BFD_RELOC_ARM_SWI:
adbaf948 21890 if (fixP->tc_fix_data != 0)
c19d1205
ZW
21891 {
21892 if (((unsigned long) value) > 0xff)
21893 as_bad_where (fixP->fx_file, fixP->fx_line,
21894 _("invalid swi expression"));
2fc8bdac 21895 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
21896 newval |= value;
21897 md_number_to_chars (buf, newval, THUMB_SIZE);
21898 }
21899 else
21900 {
21901 if (((unsigned long) value) > 0x00ffffff)
21902 as_bad_where (fixP->fx_file, fixP->fx_line,
21903 _("invalid swi expression"));
2fc8bdac 21904 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
21905 newval |= value;
21906 md_number_to_chars (buf, newval, INSN_SIZE);
21907 }
21908 break;
a737bd4d 21909
c19d1205
ZW
21910 case BFD_RELOC_ARM_MULTI:
21911 if (((unsigned long) value) > 0xffff)
21912 as_bad_where (fixP->fx_file, fixP->fx_line,
21913 _("invalid expression in load/store multiple"));
21914 newval = value | md_chars_to_number (buf, INSN_SIZE);
21915 md_number_to_chars (buf, newval, INSN_SIZE);
21916 break;
a737bd4d 21917
c19d1205 21918#ifdef OBJ_ELF
39b41c9c 21919 case BFD_RELOC_ARM_PCREL_CALL:
267bf995
RR
21920
21921 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21922 && fixP->fx_addsy
34e77a92 21923 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21924 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21925 && THUMB_IS_FUNC (fixP->fx_addsy))
21926 /* Flip the bl to blx. This is a simple flip
21927 bit here because we generate PCREL_CALL for
21928 unconditional bls. */
21929 {
21930 newval = md_chars_to_number (buf, INSN_SIZE);
21931 newval = newval | 0x10000000;
21932 md_number_to_chars (buf, newval, INSN_SIZE);
21933 temp = 1;
21934 fixP->fx_done = 1;
21935 }
39b41c9c
PB
21936 else
21937 temp = 3;
21938 goto arm_branch_common;
21939
21940 case BFD_RELOC_ARM_PCREL_JUMP:
267bf995
RR
21941 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21942 && fixP->fx_addsy
34e77a92 21943 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21944 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21945 && THUMB_IS_FUNC (fixP->fx_addsy))
21946 {
21947 /* This would map to a bl<cond>, b<cond>,
21948 b<always> to a Thumb function. We
21949 need to force a relocation for this particular
21950 case. */
21951 newval = md_chars_to_number (buf, INSN_SIZE);
21952 fixP->fx_done = 0;
21953 }
21954
2fc8bdac 21955 case BFD_RELOC_ARM_PLT32:
c19d1205 21956#endif
39b41c9c
PB
21957 case BFD_RELOC_ARM_PCREL_BRANCH:
21958 temp = 3;
21959 goto arm_branch_common;
a737bd4d 21960
39b41c9c 21961 case BFD_RELOC_ARM_PCREL_BLX:
267bf995 21962
39b41c9c 21963 temp = 1;
267bf995
RR
21964 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
21965 && fixP->fx_addsy
34e77a92 21966 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
21967 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
21968 && ARM_IS_FUNC (fixP->fx_addsy))
21969 {
21970 /* Flip the blx to a bl and warn. */
21971 const char *name = S_GET_NAME (fixP->fx_addsy);
21972 newval = 0xeb000000;
21973 as_warn_where (fixP->fx_file, fixP->fx_line,
21974 _("blx to '%s' an ARM ISA state function changed to bl"),
21975 name);
21976 md_number_to_chars (buf, newval, INSN_SIZE);
21977 temp = 3;
21978 fixP->fx_done = 1;
21979 }
21980
21981#ifdef OBJ_ELF
21982 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
21983 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
21984#endif
21985
39b41c9c 21986 arm_branch_common:
c19d1205 21987 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
21988 instruction, in a 24 bit, signed field. Bits 26 through 32 either
21989 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
21990 also be be clear. */
21991 if (value & temp)
c19d1205 21992 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
21993 _("misaligned branch destination"));
21994 if ((value & (offsetT)0xfe000000) != (offsetT)0
21995 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
08f10d51 21996 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 21997
2fc8bdac 21998 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 21999 {
2fc8bdac
ZW
22000 newval = md_chars_to_number (buf, INSN_SIZE);
22001 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
22002 /* Set the H bit on BLX instructions. */
22003 if (temp == 1)
22004 {
22005 if (value & 2)
22006 newval |= 0x01000000;
22007 else
22008 newval &= ~0x01000000;
22009 }
2fc8bdac 22010 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 22011 }
c19d1205 22012 break;
a737bd4d 22013
25fe350b
MS
22014 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
22015 /* CBZ can only branch forward. */
a737bd4d 22016
738755b0
MS
22017 /* Attempts to use CBZ to branch to the next instruction
22018 (which, strictly speaking, are prohibited) will be turned into
22019 no-ops.
22020
22021 FIXME: It may be better to remove the instruction completely and
22022 perform relaxation. */
22023 if (value == -2)
2fc8bdac
ZW
22024 {
22025 newval = md_chars_to_number (buf, THUMB_SIZE);
738755b0 22026 newval = 0xbf00; /* NOP encoding T1 */
2fc8bdac
ZW
22027 md_number_to_chars (buf, newval, THUMB_SIZE);
22028 }
738755b0
MS
22029 else
22030 {
22031 if (value & ~0x7e)
08f10d51 22032 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
738755b0
MS
22033
22034 if (fixP->fx_done || !seg->use_rela_p)
22035 {
22036 newval = md_chars_to_number (buf, THUMB_SIZE);
22037 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
22038 md_number_to_chars (buf, newval, THUMB_SIZE);
22039 }
22040 }
c19d1205 22041 break;
a737bd4d 22042
c19d1205 22043 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac 22044 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
08f10d51 22045 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22046
2fc8bdac
ZW
22047 if (fixP->fx_done || !seg->use_rela_p)
22048 {
22049 newval = md_chars_to_number (buf, THUMB_SIZE);
22050 newval |= (value & 0x1ff) >> 1;
22051 md_number_to_chars (buf, newval, THUMB_SIZE);
22052 }
c19d1205 22053 break;
a737bd4d 22054
c19d1205 22055 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac 22056 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
08f10d51 22057 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 22058
2fc8bdac
ZW
22059 if (fixP->fx_done || !seg->use_rela_p)
22060 {
22061 newval = md_chars_to_number (buf, THUMB_SIZE);
22062 newval |= (value & 0xfff) >> 1;
22063 md_number_to_chars (buf, newval, THUMB_SIZE);
22064 }
c19d1205 22065 break;
a737bd4d 22066
c19d1205 22067 case BFD_RELOC_THUMB_PCREL_BRANCH20:
267bf995
RR
22068 if (fixP->fx_addsy
22069 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22070 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22071 && ARM_IS_FUNC (fixP->fx_addsy)
22072 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22073 {
22074 /* Force a relocation for a branch 20 bits wide. */
22075 fixP->fx_done = 0;
22076 }
08f10d51 22077 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
2fc8bdac
ZW
22078 as_bad_where (fixP->fx_file, fixP->fx_line,
22079 _("conditional branch out of range"));
404ff6b5 22080
2fc8bdac
ZW
22081 if (fixP->fx_done || !seg->use_rela_p)
22082 {
22083 offsetT newval2;
22084 addressT S, J1, J2, lo, hi;
404ff6b5 22085
2fc8bdac
ZW
22086 S = (value & 0x00100000) >> 20;
22087 J2 = (value & 0x00080000) >> 19;
22088 J1 = (value & 0x00040000) >> 18;
22089 hi = (value & 0x0003f000) >> 12;
22090 lo = (value & 0x00000ffe) >> 1;
6c43fab6 22091
2fc8bdac
ZW
22092 newval = md_chars_to_number (buf, THUMB_SIZE);
22093 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22094 newval |= (S << 10) | hi;
22095 newval2 |= (J1 << 13) | (J2 << 11) | lo;
22096 md_number_to_chars (buf, newval, THUMB_SIZE);
22097 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
22098 }
c19d1205 22099 break;
6c43fab6 22100
c19d1205 22101 case BFD_RELOC_THUMB_PCREL_BLX:
267bf995
RR
22102 /* If there is a blx from a thumb state function to
22103 another thumb function flip this to a bl and warn
22104 about it. */
22105
22106 if (fixP->fx_addsy
34e77a92 22107 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22108 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22109 && THUMB_IS_FUNC (fixP->fx_addsy))
22110 {
22111 const char *name = S_GET_NAME (fixP->fx_addsy);
22112 as_warn_where (fixP->fx_file, fixP->fx_line,
22113 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
22114 name);
22115 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22116 newval = newval | 0x1000;
22117 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22118 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22119 fixP->fx_done = 1;
22120 }
22121
22122
22123 goto thumb_bl_common;
22124
c19d1205 22125 case BFD_RELOC_THUMB_PCREL_BRANCH23:
267bf995
RR
22126 /* A bl from Thumb state ISA to an internal ARM state function
22127 is converted to a blx. */
22128 if (fixP->fx_addsy
22129 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22130 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
22131 && ARM_IS_FUNC (fixP->fx_addsy)
22132 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22133 {
22134 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22135 newval = newval & ~0x1000;
22136 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
22137 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
22138 fixP->fx_done = 1;
22139 }
22140
22141 thumb_bl_common:
22142
2fc8bdac
ZW
22143 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22144 /* For a BLX instruction, make sure that the relocation is rounded up
22145 to a word boundary. This follows the semantics of the instruction
22146 which specifies that bit 1 of the target address will come from bit
22147 1 of the base address. */
d406f3e4
JB
22148 value = (value + 3) & ~ 3;
22149
22150#ifdef OBJ_ELF
22151 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
22152 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
22153 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
22154#endif
404ff6b5 22155
2b2f5df9
NC
22156 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
22157 {
22158 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2)))
22159 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
22160 else if ((value & ~0x1ffffff)
22161 && ((value & ~0x1ffffff) != ~0x1ffffff))
22162 as_bad_where (fixP->fx_file, fixP->fx_line,
22163 _("Thumb2 branch out of range"));
22164 }
4a42ebbc
RR
22165
22166 if (fixP->fx_done || !seg->use_rela_p)
22167 encode_thumb2_b_bl_offset (buf, value);
22168
c19d1205 22169 break;
404ff6b5 22170
c19d1205 22171 case BFD_RELOC_THUMB_PCREL_BRANCH25:
08f10d51
NC
22172 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
22173 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
6c43fab6 22174
2fc8bdac 22175 if (fixP->fx_done || !seg->use_rela_p)
4a42ebbc 22176 encode_thumb2_b_bl_offset (buf, value);
6c43fab6 22177
2fc8bdac 22178 break;
a737bd4d 22179
2fc8bdac
ZW
22180 case BFD_RELOC_8:
22181 if (fixP->fx_done || !seg->use_rela_p)
22182 md_number_to_chars (buf, value, 1);
c19d1205 22183 break;
a737bd4d 22184
c19d1205 22185 case BFD_RELOC_16:
2fc8bdac 22186 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 22187 md_number_to_chars (buf, value, 2);
c19d1205 22188 break;
a737bd4d 22189
c19d1205 22190#ifdef OBJ_ELF
0855e32b
NS
22191 case BFD_RELOC_ARM_TLS_CALL:
22192 case BFD_RELOC_ARM_THM_TLS_CALL:
22193 case BFD_RELOC_ARM_TLS_DESCSEQ:
22194 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
22195 S_SET_THREAD_LOCAL (fixP->fx_addsy);
22196 break;
22197
22198 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22199 case BFD_RELOC_ARM_TLS_GD32:
22200 case BFD_RELOC_ARM_TLS_LE32:
22201 case BFD_RELOC_ARM_TLS_IE32:
22202 case BFD_RELOC_ARM_TLS_LDM32:
22203 case BFD_RELOC_ARM_TLS_LDO32:
22204 S_SET_THREAD_LOCAL (fixP->fx_addsy);
22205 /* fall through */
6c43fab6 22206
c19d1205
ZW
22207 case BFD_RELOC_ARM_GOT32:
22208 case BFD_RELOC_ARM_GOTOFF:
2fc8bdac
ZW
22209 if (fixP->fx_done || !seg->use_rela_p)
22210 md_number_to_chars (buf, 0, 4);
c19d1205 22211 break;
b43420e6
NC
22212
22213 case BFD_RELOC_ARM_GOT_PREL:
22214 if (fixP->fx_done || !seg->use_rela_p)
22215 md_number_to_chars (buf, value, 4);
22216 break;
22217
9a6f4e97
NS
22218 case BFD_RELOC_ARM_TARGET2:
22219 /* TARGET2 is not partial-inplace, so we need to write the
22220 addend here for REL targets, because it won't be written out
22221 during reloc processing later. */
22222 if (fixP->fx_done || !seg->use_rela_p)
22223 md_number_to_chars (buf, fixP->fx_offset, 4);
22224 break;
c19d1205 22225#endif
6c43fab6 22226
c19d1205
ZW
22227 case BFD_RELOC_RVA:
22228 case BFD_RELOC_32:
22229 case BFD_RELOC_ARM_TARGET1:
22230 case BFD_RELOC_ARM_ROSEGREL32:
22231 case BFD_RELOC_ARM_SBREL32:
22232 case BFD_RELOC_32_PCREL:
f0927246
NC
22233#ifdef TE_PE
22234 case BFD_RELOC_32_SECREL:
22235#endif
2fc8bdac 22236 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
22237#ifdef TE_WINCE
22238 /* For WinCE we only do this for pcrel fixups. */
22239 if (fixP->fx_done || fixP->fx_pcrel)
22240#endif
22241 md_number_to_chars (buf, value, 4);
c19d1205 22242 break;
6c43fab6 22243
c19d1205
ZW
22244#ifdef OBJ_ELF
22245 case BFD_RELOC_ARM_PREL31:
2fc8bdac 22246 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
22247 {
22248 newval = md_chars_to_number (buf, 4) & 0x80000000;
22249 if ((value ^ (value >> 1)) & 0x40000000)
22250 {
22251 as_bad_where (fixP->fx_file, fixP->fx_line,
22252 _("rel31 relocation overflow"));
22253 }
22254 newval |= value & 0x7fffffff;
22255 md_number_to_chars (buf, newval, 4);
22256 }
22257 break;
c19d1205 22258#endif
a737bd4d 22259
c19d1205 22260 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 22261 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
c19d1205
ZW
22262 if (value < -1023 || value > 1023 || (value & 3))
22263 as_bad_where (fixP->fx_file, fixP->fx_line,
22264 _("co-processor offset out of range"));
22265 cp_off_common:
26d97720 22266 sign = value > 0;
c19d1205
ZW
22267 if (value < 0)
22268 value = -value;
8f06b2d8
PB
22269 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22270 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22271 newval = md_chars_to_number (buf, INSN_SIZE);
22272 else
22273 newval = get_thumb32_insn (buf);
26d97720
NS
22274 if (value == 0)
22275 newval &= 0xffffff00;
22276 else
22277 {
22278 newval &= 0xff7fff00;
22279 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
22280 }
8f06b2d8
PB
22281 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
22282 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
22283 md_number_to_chars (buf, newval, INSN_SIZE);
22284 else
22285 put_thumb32_insn (buf, newval);
c19d1205 22286 break;
a737bd4d 22287
c19d1205 22288 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 22289 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
22290 if (value < -255 || value > 255)
22291 as_bad_where (fixP->fx_file, fixP->fx_line,
22292 _("co-processor offset out of range"));
df7849c5 22293 value *= 4;
c19d1205 22294 goto cp_off_common;
6c43fab6 22295
c19d1205
ZW
22296 case BFD_RELOC_ARM_THUMB_OFFSET:
22297 newval = md_chars_to_number (buf, THUMB_SIZE);
22298 /* Exactly what ranges, and where the offset is inserted depends
22299 on the type of instruction, we can establish this from the
22300 top 4 bits. */
22301 switch (newval >> 12)
22302 {
22303 case 4: /* PC load. */
22304 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
22305 forced to zero for these loads; md_pcrel_from has already
22306 compensated for this. */
22307 if (value & 3)
22308 as_bad_where (fixP->fx_file, fixP->fx_line,
22309 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
22310 (((unsigned long) fixP->fx_frag->fr_address
22311 + (unsigned long) fixP->fx_where) & ~3)
22312 + (unsigned long) value);
a737bd4d 22313
c19d1205
ZW
22314 if (value & ~0x3fc)
22315 as_bad_where (fixP->fx_file, fixP->fx_line,
22316 _("invalid offset, value too big (0x%08lX)"),
22317 (long) value);
a737bd4d 22318
c19d1205
ZW
22319 newval |= value >> 2;
22320 break;
a737bd4d 22321
c19d1205
ZW
22322 case 9: /* SP load/store. */
22323 if (value & ~0x3fc)
22324 as_bad_where (fixP->fx_file, fixP->fx_line,
22325 _("invalid offset, value too big (0x%08lX)"),
22326 (long) value);
22327 newval |= value >> 2;
22328 break;
6c43fab6 22329
c19d1205
ZW
22330 case 6: /* Word load/store. */
22331 if (value & ~0x7c)
22332 as_bad_where (fixP->fx_file, fixP->fx_line,
22333 _("invalid offset, value too big (0x%08lX)"),
22334 (long) value);
22335 newval |= value << 4; /* 6 - 2. */
22336 break;
a737bd4d 22337
c19d1205
ZW
22338 case 7: /* Byte load/store. */
22339 if (value & ~0x1f)
22340 as_bad_where (fixP->fx_file, fixP->fx_line,
22341 _("invalid offset, value too big (0x%08lX)"),
22342 (long) value);
22343 newval |= value << 6;
22344 break;
a737bd4d 22345
c19d1205
ZW
22346 case 8: /* Halfword load/store. */
22347 if (value & ~0x3e)
22348 as_bad_where (fixP->fx_file, fixP->fx_line,
22349 _("invalid offset, value too big (0x%08lX)"),
22350 (long) value);
22351 newval |= value << 5; /* 6 - 1. */
22352 break;
a737bd4d 22353
c19d1205
ZW
22354 default:
22355 as_bad_where (fixP->fx_file, fixP->fx_line,
22356 "Unable to process relocation for thumb opcode: %lx",
22357 (unsigned long) newval);
22358 break;
22359 }
22360 md_number_to_chars (buf, newval, THUMB_SIZE);
22361 break;
a737bd4d 22362
c19d1205
ZW
22363 case BFD_RELOC_ARM_THUMB_ADD:
22364 /* This is a complicated relocation, since we use it for all of
22365 the following immediate relocations:
a737bd4d 22366
c19d1205
ZW
22367 3bit ADD/SUB
22368 8bit ADD/SUB
22369 9bit ADD/SUB SP word-aligned
22370 10bit ADD PC/SP word-aligned
a737bd4d 22371
c19d1205
ZW
22372 The type of instruction being processed is encoded in the
22373 instruction field:
a737bd4d 22374
c19d1205
ZW
22375 0x8000 SUB
22376 0x00F0 Rd
22377 0x000F Rs
22378 */
22379 newval = md_chars_to_number (buf, THUMB_SIZE);
22380 {
22381 int rd = (newval >> 4) & 0xf;
22382 int rs = newval & 0xf;
22383 int subtract = !!(newval & 0x8000);
a737bd4d 22384
c19d1205
ZW
22385 /* Check for HI regs, only very restricted cases allowed:
22386 Adjusting SP, and using PC or SP to get an address. */
22387 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
22388 || (rs > 7 && rs != REG_SP && rs != REG_PC))
22389 as_bad_where (fixP->fx_file, fixP->fx_line,
22390 _("invalid Hi register with immediate"));
a737bd4d 22391
c19d1205
ZW
22392 /* If value is negative, choose the opposite instruction. */
22393 if (value < 0)
22394 {
22395 value = -value;
22396 subtract = !subtract;
22397 if (value < 0)
22398 as_bad_where (fixP->fx_file, fixP->fx_line,
22399 _("immediate value out of range"));
22400 }
a737bd4d 22401
c19d1205
ZW
22402 if (rd == REG_SP)
22403 {
22404 if (value & ~0x1fc)
22405 as_bad_where (fixP->fx_file, fixP->fx_line,
22406 _("invalid immediate for stack address calculation"));
22407 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
22408 newval |= value >> 2;
22409 }
22410 else if (rs == REG_PC || rs == REG_SP)
22411 {
22412 if (subtract || value & ~0x3fc)
22413 as_bad_where (fixP->fx_file, fixP->fx_line,
22414 _("invalid immediate for address calculation (value = 0x%08lX)"),
22415 (unsigned long) value);
22416 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
22417 newval |= rd << 8;
22418 newval |= value >> 2;
22419 }
22420 else if (rs == rd)
22421 {
22422 if (value & ~0xff)
22423 as_bad_where (fixP->fx_file, fixP->fx_line,
22424 _("immediate value out of range"));
22425 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
22426 newval |= (rd << 8) | value;
22427 }
22428 else
22429 {
22430 if (value & ~0x7)
22431 as_bad_where (fixP->fx_file, fixP->fx_line,
22432 _("immediate value out of range"));
22433 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
22434 newval |= rd | (rs << 3) | (value << 6);
22435 }
22436 }
22437 md_number_to_chars (buf, newval, THUMB_SIZE);
22438 break;
a737bd4d 22439
c19d1205
ZW
22440 case BFD_RELOC_ARM_THUMB_IMM:
22441 newval = md_chars_to_number (buf, THUMB_SIZE);
22442 if (value < 0 || value > 255)
22443 as_bad_where (fixP->fx_file, fixP->fx_line,
4e6e072b 22444 _("invalid immediate: %ld is out of range"),
c19d1205
ZW
22445 (long) value);
22446 newval |= value;
22447 md_number_to_chars (buf, newval, THUMB_SIZE);
22448 break;
a737bd4d 22449
c19d1205
ZW
22450 case BFD_RELOC_ARM_THUMB_SHIFT:
22451 /* 5bit shift value (0..32). LSL cannot take 32. */
22452 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
22453 temp = newval & 0xf800;
22454 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
22455 as_bad_where (fixP->fx_file, fixP->fx_line,
22456 _("invalid shift value: %ld"), (long) value);
22457 /* Shifts of zero must be encoded as LSL. */
22458 if (value == 0)
22459 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
22460 /* Shifts of 32 are encoded as zero. */
22461 else if (value == 32)
22462 value = 0;
22463 newval |= value << 6;
22464 md_number_to_chars (buf, newval, THUMB_SIZE);
22465 break;
a737bd4d 22466
c19d1205
ZW
22467 case BFD_RELOC_VTABLE_INHERIT:
22468 case BFD_RELOC_VTABLE_ENTRY:
22469 fixP->fx_done = 0;
22470 return;
6c43fab6 22471
b6895b4f
PB
22472 case BFD_RELOC_ARM_MOVW:
22473 case BFD_RELOC_ARM_MOVT:
22474 case BFD_RELOC_ARM_THUMB_MOVW:
22475 case BFD_RELOC_ARM_THUMB_MOVT:
22476 if (fixP->fx_done || !seg->use_rela_p)
22477 {
22478 /* REL format relocations are limited to a 16-bit addend. */
22479 if (!fixP->fx_done)
22480 {
39623e12 22481 if (value < -0x8000 || value > 0x7fff)
b6895b4f 22482 as_bad_where (fixP->fx_file, fixP->fx_line,
ff5075ca 22483 _("offset out of range"));
b6895b4f
PB
22484 }
22485 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
22486 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22487 {
22488 value >>= 16;
22489 }
22490
22491 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
22492 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
22493 {
22494 newval = get_thumb32_insn (buf);
22495 newval &= 0xfbf08f00;
22496 newval |= (value & 0xf000) << 4;
22497 newval |= (value & 0x0800) << 15;
22498 newval |= (value & 0x0700) << 4;
22499 newval |= (value & 0x00ff);
22500 put_thumb32_insn (buf, newval);
22501 }
22502 else
22503 {
22504 newval = md_chars_to_number (buf, 4);
22505 newval &= 0xfff0f000;
22506 newval |= value & 0x0fff;
22507 newval |= (value & 0xf000) << 4;
22508 md_number_to_chars (buf, newval, 4);
22509 }
22510 }
22511 return;
22512
4962c51a
MS
22513 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22514 case BFD_RELOC_ARM_ALU_PC_G0:
22515 case BFD_RELOC_ARM_ALU_PC_G1_NC:
22516 case BFD_RELOC_ARM_ALU_PC_G1:
22517 case BFD_RELOC_ARM_ALU_PC_G2:
22518 case BFD_RELOC_ARM_ALU_SB_G0_NC:
22519 case BFD_RELOC_ARM_ALU_SB_G0:
22520 case BFD_RELOC_ARM_ALU_SB_G1_NC:
22521 case BFD_RELOC_ARM_ALU_SB_G1:
22522 case BFD_RELOC_ARM_ALU_SB_G2:
9c2799c2 22523 gas_assert (!fixP->fx_done);
4962c51a
MS
22524 if (!seg->use_rela_p)
22525 {
22526 bfd_vma insn;
22527 bfd_vma encoded_addend;
22528 bfd_vma addend_abs = abs (value);
22529
22530 /* Check that the absolute value of the addend can be
22531 expressed as an 8-bit constant plus a rotation. */
22532 encoded_addend = encode_arm_immediate (addend_abs);
22533 if (encoded_addend == (unsigned int) FAIL)
22534 as_bad_where (fixP->fx_file, fixP->fx_line,
22535 _("the offset 0x%08lX is not representable"),
495bde8e 22536 (unsigned long) addend_abs);
4962c51a
MS
22537
22538 /* Extract the instruction. */
22539 insn = md_chars_to_number (buf, INSN_SIZE);
22540
22541 /* If the addend is positive, use an ADD instruction.
22542 Otherwise use a SUB. Take care not to destroy the S bit. */
22543 insn &= 0xff1fffff;
22544 if (value < 0)
22545 insn |= 1 << 22;
22546 else
22547 insn |= 1 << 23;
22548
22549 /* Place the encoded addend into the first 12 bits of the
22550 instruction. */
22551 insn &= 0xfffff000;
22552 insn |= encoded_addend;
5f4273c7
NC
22553
22554 /* Update the instruction. */
4962c51a
MS
22555 md_number_to_chars (buf, insn, INSN_SIZE);
22556 }
22557 break;
22558
22559 case BFD_RELOC_ARM_LDR_PC_G0:
22560 case BFD_RELOC_ARM_LDR_PC_G1:
22561 case BFD_RELOC_ARM_LDR_PC_G2:
22562 case BFD_RELOC_ARM_LDR_SB_G0:
22563 case BFD_RELOC_ARM_LDR_SB_G1:
22564 case BFD_RELOC_ARM_LDR_SB_G2:
9c2799c2 22565 gas_assert (!fixP->fx_done);
4962c51a
MS
22566 if (!seg->use_rela_p)
22567 {
22568 bfd_vma insn;
22569 bfd_vma addend_abs = abs (value);
22570
22571 /* Check that the absolute value of the addend can be
22572 encoded in 12 bits. */
22573 if (addend_abs >= 0x1000)
22574 as_bad_where (fixP->fx_file, fixP->fx_line,
22575 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
495bde8e 22576 (unsigned long) addend_abs);
4962c51a
MS
22577
22578 /* Extract the instruction. */
22579 insn = md_chars_to_number (buf, INSN_SIZE);
22580
22581 /* If the addend is negative, clear bit 23 of the instruction.
22582 Otherwise set it. */
22583 if (value < 0)
22584 insn &= ~(1 << 23);
22585 else
22586 insn |= 1 << 23;
22587
22588 /* Place the absolute value of the addend into the first 12 bits
22589 of the instruction. */
22590 insn &= 0xfffff000;
22591 insn |= addend_abs;
5f4273c7
NC
22592
22593 /* Update the instruction. */
4962c51a
MS
22594 md_number_to_chars (buf, insn, INSN_SIZE);
22595 }
22596 break;
22597
22598 case BFD_RELOC_ARM_LDRS_PC_G0:
22599 case BFD_RELOC_ARM_LDRS_PC_G1:
22600 case BFD_RELOC_ARM_LDRS_PC_G2:
22601 case BFD_RELOC_ARM_LDRS_SB_G0:
22602 case BFD_RELOC_ARM_LDRS_SB_G1:
22603 case BFD_RELOC_ARM_LDRS_SB_G2:
9c2799c2 22604 gas_assert (!fixP->fx_done);
4962c51a
MS
22605 if (!seg->use_rela_p)
22606 {
22607 bfd_vma insn;
22608 bfd_vma addend_abs = abs (value);
22609
22610 /* Check that the absolute value of the addend can be
22611 encoded in 8 bits. */
22612 if (addend_abs >= 0x100)
22613 as_bad_where (fixP->fx_file, fixP->fx_line,
22614 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
495bde8e 22615 (unsigned long) addend_abs);
4962c51a
MS
22616
22617 /* Extract the instruction. */
22618 insn = md_chars_to_number (buf, INSN_SIZE);
22619
22620 /* If the addend is negative, clear bit 23 of the instruction.
22621 Otherwise set it. */
22622 if (value < 0)
22623 insn &= ~(1 << 23);
22624 else
22625 insn |= 1 << 23;
22626
22627 /* Place the first four bits of the absolute value of the addend
22628 into the first 4 bits of the instruction, and the remaining
22629 four into bits 8 .. 11. */
22630 insn &= 0xfffff0f0;
22631 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
5f4273c7
NC
22632
22633 /* Update the instruction. */
4962c51a
MS
22634 md_number_to_chars (buf, insn, INSN_SIZE);
22635 }
22636 break;
22637
22638 case BFD_RELOC_ARM_LDC_PC_G0:
22639 case BFD_RELOC_ARM_LDC_PC_G1:
22640 case BFD_RELOC_ARM_LDC_PC_G2:
22641 case BFD_RELOC_ARM_LDC_SB_G0:
22642 case BFD_RELOC_ARM_LDC_SB_G1:
22643 case BFD_RELOC_ARM_LDC_SB_G2:
9c2799c2 22644 gas_assert (!fixP->fx_done);
4962c51a
MS
22645 if (!seg->use_rela_p)
22646 {
22647 bfd_vma insn;
22648 bfd_vma addend_abs = abs (value);
22649
22650 /* Check that the absolute value of the addend is a multiple of
22651 four and, when divided by four, fits in 8 bits. */
22652 if (addend_abs & 0x3)
22653 as_bad_where (fixP->fx_file, fixP->fx_line,
22654 _("bad offset 0x%08lX (must be word-aligned)"),
495bde8e 22655 (unsigned long) addend_abs);
4962c51a
MS
22656
22657 if ((addend_abs >> 2) > 0xff)
22658 as_bad_where (fixP->fx_file, fixP->fx_line,
22659 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
495bde8e 22660 (unsigned long) addend_abs);
4962c51a
MS
22661
22662 /* Extract the instruction. */
22663 insn = md_chars_to_number (buf, INSN_SIZE);
22664
22665 /* If the addend is negative, clear bit 23 of the instruction.
22666 Otherwise set it. */
22667 if (value < 0)
22668 insn &= ~(1 << 23);
22669 else
22670 insn |= 1 << 23;
22671
22672 /* Place the addend (divided by four) into the first eight
22673 bits of the instruction. */
22674 insn &= 0xfffffff0;
22675 insn |= addend_abs >> 2;
5f4273c7
NC
22676
22677 /* Update the instruction. */
4962c51a
MS
22678 md_number_to_chars (buf, insn, INSN_SIZE);
22679 }
22680 break;
22681
845b51d6
PB
22682 case BFD_RELOC_ARM_V4BX:
22683 /* This will need to go in the object file. */
22684 fixP->fx_done = 0;
22685 break;
22686
c19d1205
ZW
22687 case BFD_RELOC_UNUSED:
22688 default:
22689 as_bad_where (fixP->fx_file, fixP->fx_line,
22690 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
22691 }
6c43fab6
RE
22692}
22693
c19d1205
ZW
22694/* Translate internal representation of relocation info to BFD target
22695 format. */
a737bd4d 22696
c19d1205 22697arelent *
00a97672 22698tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 22699{
c19d1205
ZW
22700 arelent * reloc;
22701 bfd_reloc_code_real_type code;
a737bd4d 22702
21d799b5 22703 reloc = (arelent *) xmalloc (sizeof (arelent));
a737bd4d 22704
21d799b5 22705 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
c19d1205
ZW
22706 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
22707 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 22708
2fc8bdac 22709 if (fixp->fx_pcrel)
00a97672
RS
22710 {
22711 if (section->use_rela_p)
22712 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
22713 else
22714 fixp->fx_offset = reloc->address;
22715 }
c19d1205 22716 reloc->addend = fixp->fx_offset;
a737bd4d 22717
c19d1205 22718 switch (fixp->fx_r_type)
a737bd4d 22719 {
c19d1205
ZW
22720 case BFD_RELOC_8:
22721 if (fixp->fx_pcrel)
22722 {
22723 code = BFD_RELOC_8_PCREL;
22724 break;
22725 }
a737bd4d 22726
c19d1205
ZW
22727 case BFD_RELOC_16:
22728 if (fixp->fx_pcrel)
22729 {
22730 code = BFD_RELOC_16_PCREL;
22731 break;
22732 }
6c43fab6 22733
c19d1205
ZW
22734 case BFD_RELOC_32:
22735 if (fixp->fx_pcrel)
22736 {
22737 code = BFD_RELOC_32_PCREL;
22738 break;
22739 }
a737bd4d 22740
b6895b4f
PB
22741 case BFD_RELOC_ARM_MOVW:
22742 if (fixp->fx_pcrel)
22743 {
22744 code = BFD_RELOC_ARM_MOVW_PCREL;
22745 break;
22746 }
22747
22748 case BFD_RELOC_ARM_MOVT:
22749 if (fixp->fx_pcrel)
22750 {
22751 code = BFD_RELOC_ARM_MOVT_PCREL;
22752 break;
22753 }
22754
22755 case BFD_RELOC_ARM_THUMB_MOVW:
22756 if (fixp->fx_pcrel)
22757 {
22758 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
22759 break;
22760 }
22761
22762 case BFD_RELOC_ARM_THUMB_MOVT:
22763 if (fixp->fx_pcrel)
22764 {
22765 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
22766 break;
22767 }
22768
c19d1205
ZW
22769 case BFD_RELOC_NONE:
22770 case BFD_RELOC_ARM_PCREL_BRANCH:
22771 case BFD_RELOC_ARM_PCREL_BLX:
22772 case BFD_RELOC_RVA:
22773 case BFD_RELOC_THUMB_PCREL_BRANCH7:
22774 case BFD_RELOC_THUMB_PCREL_BRANCH9:
22775 case BFD_RELOC_THUMB_PCREL_BRANCH12:
22776 case BFD_RELOC_THUMB_PCREL_BRANCH20:
22777 case BFD_RELOC_THUMB_PCREL_BRANCH23:
22778 case BFD_RELOC_THUMB_PCREL_BRANCH25:
c19d1205
ZW
22779 case BFD_RELOC_VTABLE_ENTRY:
22780 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
22781#ifdef TE_PE
22782 case BFD_RELOC_32_SECREL:
22783#endif
c19d1205
ZW
22784 code = fixp->fx_r_type;
22785 break;
a737bd4d 22786
00adf2d4
JB
22787 case BFD_RELOC_THUMB_PCREL_BLX:
22788#ifdef OBJ_ELF
22789 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
22790 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
22791 else
22792#endif
22793 code = BFD_RELOC_THUMB_PCREL_BLX;
22794 break;
22795
c19d1205
ZW
22796 case BFD_RELOC_ARM_LITERAL:
22797 case BFD_RELOC_ARM_HWLITERAL:
22798 /* If this is called then the a literal has
22799 been referenced across a section boundary. */
22800 as_bad_where (fixp->fx_file, fixp->fx_line,
22801 _("literal referenced across section boundary"));
22802 return NULL;
a737bd4d 22803
c19d1205 22804#ifdef OBJ_ELF
0855e32b
NS
22805 case BFD_RELOC_ARM_TLS_CALL:
22806 case BFD_RELOC_ARM_THM_TLS_CALL:
22807 case BFD_RELOC_ARM_TLS_DESCSEQ:
22808 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
c19d1205
ZW
22809 case BFD_RELOC_ARM_GOT32:
22810 case BFD_RELOC_ARM_GOTOFF:
b43420e6 22811 case BFD_RELOC_ARM_GOT_PREL:
c19d1205
ZW
22812 case BFD_RELOC_ARM_PLT32:
22813 case BFD_RELOC_ARM_TARGET1:
22814 case BFD_RELOC_ARM_ROSEGREL32:
22815 case BFD_RELOC_ARM_SBREL32:
22816 case BFD_RELOC_ARM_PREL31:
22817 case BFD_RELOC_ARM_TARGET2:
22818 case BFD_RELOC_ARM_TLS_LE32:
22819 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
22820 case BFD_RELOC_ARM_PCREL_CALL:
22821 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
22822 case BFD_RELOC_ARM_ALU_PC_G0_NC:
22823 case BFD_RELOC_ARM_ALU_PC_G0:
22824 case BFD_RELOC_ARM_ALU_PC_G1_NC:
22825 case BFD_RELOC_ARM_ALU_PC_G1:
22826 case BFD_RELOC_ARM_ALU_PC_G2:
22827 case BFD_RELOC_ARM_LDR_PC_G0:
22828 case BFD_RELOC_ARM_LDR_PC_G1:
22829 case BFD_RELOC_ARM_LDR_PC_G2:
22830 case BFD_RELOC_ARM_LDRS_PC_G0:
22831 case BFD_RELOC_ARM_LDRS_PC_G1:
22832 case BFD_RELOC_ARM_LDRS_PC_G2:
22833 case BFD_RELOC_ARM_LDC_PC_G0:
22834 case BFD_RELOC_ARM_LDC_PC_G1:
22835 case BFD_RELOC_ARM_LDC_PC_G2:
22836 case BFD_RELOC_ARM_ALU_SB_G0_NC:
22837 case BFD_RELOC_ARM_ALU_SB_G0:
22838 case BFD_RELOC_ARM_ALU_SB_G1_NC:
22839 case BFD_RELOC_ARM_ALU_SB_G1:
22840 case BFD_RELOC_ARM_ALU_SB_G2:
22841 case BFD_RELOC_ARM_LDR_SB_G0:
22842 case BFD_RELOC_ARM_LDR_SB_G1:
22843 case BFD_RELOC_ARM_LDR_SB_G2:
22844 case BFD_RELOC_ARM_LDRS_SB_G0:
22845 case BFD_RELOC_ARM_LDRS_SB_G1:
22846 case BFD_RELOC_ARM_LDRS_SB_G2:
22847 case BFD_RELOC_ARM_LDC_SB_G0:
22848 case BFD_RELOC_ARM_LDC_SB_G1:
22849 case BFD_RELOC_ARM_LDC_SB_G2:
845b51d6 22850 case BFD_RELOC_ARM_V4BX:
c19d1205
ZW
22851 code = fixp->fx_r_type;
22852 break;
a737bd4d 22853
0855e32b 22854 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
22855 case BFD_RELOC_ARM_TLS_GD32:
22856 case BFD_RELOC_ARM_TLS_IE32:
22857 case BFD_RELOC_ARM_TLS_LDM32:
22858 /* BFD will include the symbol's address in the addend.
22859 But we don't want that, so subtract it out again here. */
22860 if (!S_IS_COMMON (fixp->fx_addsy))
22861 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
22862 code = fixp->fx_r_type;
22863 break;
22864#endif
a737bd4d 22865
c19d1205
ZW
22866 case BFD_RELOC_ARM_IMMEDIATE:
22867 as_bad_where (fixp->fx_file, fixp->fx_line,
22868 _("internal relocation (type: IMMEDIATE) not fixed up"));
22869 return NULL;
a737bd4d 22870
c19d1205
ZW
22871 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
22872 as_bad_where (fixp->fx_file, fixp->fx_line,
22873 _("ADRL used for a symbol not defined in the same file"));
22874 return NULL;
a737bd4d 22875
c19d1205 22876 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
22877 if (section->use_rela_p)
22878 {
22879 code = fixp->fx_r_type;
22880 break;
22881 }
22882
c19d1205
ZW
22883 if (fixp->fx_addsy != NULL
22884 && !S_IS_DEFINED (fixp->fx_addsy)
22885 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 22886 {
c19d1205
ZW
22887 as_bad_where (fixp->fx_file, fixp->fx_line,
22888 _("undefined local label `%s'"),
22889 S_GET_NAME (fixp->fx_addsy));
22890 return NULL;
a737bd4d
NC
22891 }
22892
c19d1205
ZW
22893 as_bad_where (fixp->fx_file, fixp->fx_line,
22894 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
22895 return NULL;
a737bd4d 22896
c19d1205
ZW
22897 default:
22898 {
22899 char * type;
6c43fab6 22900
c19d1205
ZW
22901 switch (fixp->fx_r_type)
22902 {
22903 case BFD_RELOC_NONE: type = "NONE"; break;
22904 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
22905 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 22906 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
22907 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
22908 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
22909 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
db187cb9 22910 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
8f06b2d8 22911 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
22912 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
22913 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
22914 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
22915 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
22916 default: type = _("<unknown>"); break;
22917 }
22918 as_bad_where (fixp->fx_file, fixp->fx_line,
22919 _("cannot represent %s relocation in this object file format"),
22920 type);
22921 return NULL;
22922 }
a737bd4d 22923 }
6c43fab6 22924
c19d1205
ZW
22925#ifdef OBJ_ELF
22926 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
22927 && GOT_symbol
22928 && fixp->fx_addsy == GOT_symbol)
22929 {
22930 code = BFD_RELOC_ARM_GOTPC;
22931 reloc->addend = fixp->fx_offset = reloc->address;
22932 }
22933#endif
6c43fab6 22934
c19d1205 22935 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 22936
c19d1205
ZW
22937 if (reloc->howto == NULL)
22938 {
22939 as_bad_where (fixp->fx_file, fixp->fx_line,
22940 _("cannot represent %s relocation in this object file format"),
22941 bfd_get_reloc_code_name (code));
22942 return NULL;
22943 }
6c43fab6 22944
c19d1205
ZW
22945 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
22946 vtable entry to be used in the relocation's section offset. */
22947 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
22948 reloc->address = fixp->fx_offset;
6c43fab6 22949
c19d1205 22950 return reloc;
6c43fab6
RE
22951}
22952
c19d1205 22953/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 22954
c19d1205
ZW
22955void
22956cons_fix_new_arm (fragS * frag,
22957 int where,
22958 int size,
22959 expressionS * exp)
6c43fab6 22960{
c19d1205
ZW
22961 bfd_reloc_code_real_type type;
22962 int pcrel = 0;
6c43fab6 22963
c19d1205
ZW
22964 /* Pick a reloc.
22965 FIXME: @@ Should look at CPU word size. */
22966 switch (size)
22967 {
22968 case 1:
22969 type = BFD_RELOC_8;
22970 break;
22971 case 2:
22972 type = BFD_RELOC_16;
22973 break;
22974 case 4:
22975 default:
22976 type = BFD_RELOC_32;
22977 break;
22978 case 8:
22979 type = BFD_RELOC_64;
22980 break;
22981 }
6c43fab6 22982
f0927246
NC
22983#ifdef TE_PE
22984 if (exp->X_op == O_secrel)
22985 {
22986 exp->X_op = O_symbol;
22987 type = BFD_RELOC_32_SECREL;
22988 }
22989#endif
22990
c19d1205
ZW
22991 fix_new_exp (frag, where, (int) size, exp, pcrel, type);
22992}
6c43fab6 22993
4343666d 22994#if defined (OBJ_COFF)
c19d1205
ZW
22995void
22996arm_validate_fix (fixS * fixP)
6c43fab6 22997{
c19d1205
ZW
22998 /* If the destination of the branch is a defined symbol which does not have
22999 the THUMB_FUNC attribute, then we must be calling a function which has
23000 the (interfacearm) attribute. We look for the Thumb entry point to that
23001 function and change the branch to refer to that function instead. */
23002 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
23003 && fixP->fx_addsy != NULL
23004 && S_IS_DEFINED (fixP->fx_addsy)
23005 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 23006 {
c19d1205 23007 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 23008 }
c19d1205
ZW
23009}
23010#endif
6c43fab6 23011
267bf995 23012
c19d1205
ZW
23013int
23014arm_force_relocation (struct fix * fixp)
23015{
23016#if defined (OBJ_COFF) && defined (TE_PE)
23017 if (fixp->fx_r_type == BFD_RELOC_RVA)
23018 return 1;
23019#endif
6c43fab6 23020
267bf995
RR
23021 /* In case we have a call or a branch to a function in ARM ISA mode from
23022 a thumb function or vice-versa force the relocation. These relocations
23023 are cleared off for some cores that might have blx and simple transformations
23024 are possible. */
23025
23026#ifdef OBJ_ELF
23027 switch (fixp->fx_r_type)
23028 {
23029 case BFD_RELOC_ARM_PCREL_JUMP:
23030 case BFD_RELOC_ARM_PCREL_CALL:
23031 case BFD_RELOC_THUMB_PCREL_BLX:
23032 if (THUMB_IS_FUNC (fixp->fx_addsy))
23033 return 1;
23034 break;
23035
23036 case BFD_RELOC_ARM_PCREL_BLX:
23037 case BFD_RELOC_THUMB_PCREL_BRANCH25:
23038 case BFD_RELOC_THUMB_PCREL_BRANCH20:
23039 case BFD_RELOC_THUMB_PCREL_BRANCH23:
23040 if (ARM_IS_FUNC (fixp->fx_addsy))
23041 return 1;
23042 break;
23043
23044 default:
23045 break;
23046 }
23047#endif
23048
b5884301
PB
23049 /* Resolve these relocations even if the symbol is extern or weak.
23050 Technically this is probably wrong due to symbol preemption.
23051 In practice these relocations do not have enough range to be useful
23052 at dynamic link time, and some code (e.g. in the Linux kernel)
23053 expects these references to be resolved. */
c19d1205
ZW
23054 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
23055 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
b5884301 23056 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
0110f2b8 23057 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
b5884301
PB
23058 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
23059 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
23060 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
16805f35 23061 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
23062 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
23063 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
b5884301
PB
23064 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
23065 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
23066 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
23067 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
c19d1205 23068 return 0;
a737bd4d 23069
4962c51a
MS
23070 /* Always leave these relocations for the linker. */
23071 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23072 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23073 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
23074 return 1;
23075
f0291e4c
PB
23076 /* Always generate relocations against function symbols. */
23077 if (fixp->fx_r_type == BFD_RELOC_32
23078 && fixp->fx_addsy
23079 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
23080 return 1;
23081
c19d1205 23082 return generic_force_reloc (fixp);
404ff6b5
AH
23083}
23084
0ffdc86c 23085#if defined (OBJ_ELF) || defined (OBJ_COFF)
e28387c3
PB
23086/* Relocations against function names must be left unadjusted,
23087 so that the linker can use this information to generate interworking
23088 stubs. The MIPS version of this function
c19d1205
ZW
23089 also prevents relocations that are mips-16 specific, but I do not
23090 know why it does this.
404ff6b5 23091
c19d1205
ZW
23092 FIXME:
23093 There is one other problem that ought to be addressed here, but
23094 which currently is not: Taking the address of a label (rather
23095 than a function) and then later jumping to that address. Such
23096 addresses also ought to have their bottom bit set (assuming that
23097 they reside in Thumb code), but at the moment they will not. */
404ff6b5 23098
c19d1205
ZW
23099bfd_boolean
23100arm_fix_adjustable (fixS * fixP)
404ff6b5 23101{
c19d1205
ZW
23102 if (fixP->fx_addsy == NULL)
23103 return 1;
404ff6b5 23104
e28387c3
PB
23105 /* Preserve relocations against symbols with function type. */
23106 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
c921be7d 23107 return FALSE;
e28387c3 23108
c19d1205
ZW
23109 if (THUMB_IS_FUNC (fixP->fx_addsy)
23110 && fixP->fx_subsy == NULL)
c921be7d 23111 return FALSE;
a737bd4d 23112
c19d1205
ZW
23113 /* We need the symbol name for the VTABLE entries. */
23114 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
23115 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
c921be7d 23116 return FALSE;
404ff6b5 23117
c19d1205
ZW
23118 /* Don't allow symbols to be discarded on GOT related relocs. */
23119 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
23120 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
23121 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
23122 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
23123 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
23124 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
23125 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
23126 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
0855e32b
NS
23127 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
23128 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
23129 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
23130 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
23131 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
c19d1205 23132 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
c921be7d 23133 return FALSE;
a737bd4d 23134
4962c51a
MS
23135 /* Similarly for group relocations. */
23136 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
23137 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
23138 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
c921be7d 23139 return FALSE;
4962c51a 23140
79947c54
CD
23141 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
23142 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
23143 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
23144 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
23145 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
23146 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
23147 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
23148 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
23149 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
c921be7d 23150 return FALSE;
79947c54 23151
c921be7d 23152 return TRUE;
a737bd4d 23153}
0ffdc86c
NC
23154#endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
23155
23156#ifdef OBJ_ELF
404ff6b5 23157
c19d1205
ZW
23158const char *
23159elf32_arm_target_format (void)
404ff6b5 23160{
c19d1205
ZW
23161#ifdef TE_SYMBIAN
23162 return (target_big_endian
23163 ? "elf32-bigarm-symbian"
23164 : "elf32-littlearm-symbian");
23165#elif defined (TE_VXWORKS)
23166 return (target_big_endian
23167 ? "elf32-bigarm-vxworks"
23168 : "elf32-littlearm-vxworks");
b38cadfb
NC
23169#elif defined (TE_NACL)
23170 return (target_big_endian
23171 ? "elf32-bigarm-nacl"
23172 : "elf32-littlearm-nacl");
c19d1205
ZW
23173#else
23174 if (target_big_endian)
23175 return "elf32-bigarm";
23176 else
23177 return "elf32-littlearm";
23178#endif
404ff6b5
AH
23179}
23180
c19d1205
ZW
23181void
23182armelf_frob_symbol (symbolS * symp,
23183 int * puntp)
404ff6b5 23184{
c19d1205
ZW
23185 elf_frob_symbol (symp, puntp);
23186}
23187#endif
404ff6b5 23188
c19d1205 23189/* MD interface: Finalization. */
a737bd4d 23190
c19d1205
ZW
23191void
23192arm_cleanup (void)
23193{
23194 literal_pool * pool;
a737bd4d 23195
e07e6e58
NC
23196 /* Ensure that all the IT blocks are properly closed. */
23197 check_it_blocks_finished ();
23198
c19d1205
ZW
23199 for (pool = list_of_pools; pool; pool = pool->next)
23200 {
5f4273c7 23201 /* Put it at the end of the relevant section. */
c19d1205
ZW
23202 subseg_set (pool->section, pool->sub_section);
23203#ifdef OBJ_ELF
23204 arm_elf_change_section ();
23205#endif
23206 s_ltorg (0);
23207 }
404ff6b5
AH
23208}
23209
cd000bff
DJ
23210#ifdef OBJ_ELF
23211/* Remove any excess mapping symbols generated for alignment frags in
23212 SEC. We may have created a mapping symbol before a zero byte
23213 alignment; remove it if there's a mapping symbol after the
23214 alignment. */
23215static void
23216check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
23217 void *dummy ATTRIBUTE_UNUSED)
23218{
23219 segment_info_type *seginfo = seg_info (sec);
23220 fragS *fragp;
23221
23222 if (seginfo == NULL || seginfo->frchainP == NULL)
23223 return;
23224
23225 for (fragp = seginfo->frchainP->frch_root;
23226 fragp != NULL;
23227 fragp = fragp->fr_next)
23228 {
23229 symbolS *sym = fragp->tc_frag_data.last_map;
23230 fragS *next = fragp->fr_next;
23231
23232 /* Variable-sized frags have been converted to fixed size by
23233 this point. But if this was variable-sized to start with,
23234 there will be a fixed-size frag after it. So don't handle
23235 next == NULL. */
23236 if (sym == NULL || next == NULL)
23237 continue;
23238
23239 if (S_GET_VALUE (sym) < next->fr_address)
23240 /* Not at the end of this frag. */
23241 continue;
23242 know (S_GET_VALUE (sym) == next->fr_address);
23243
23244 do
23245 {
23246 if (next->tc_frag_data.first_map != NULL)
23247 {
23248 /* Next frag starts with a mapping symbol. Discard this
23249 one. */
23250 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23251 break;
23252 }
23253
23254 if (next->fr_next == NULL)
23255 {
23256 /* This mapping symbol is at the end of the section. Discard
23257 it. */
23258 know (next->fr_fix == 0 && next->fr_var == 0);
23259 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
23260 break;
23261 }
23262
23263 /* As long as we have empty frags without any mapping symbols,
23264 keep looking. */
23265 /* If the next frag is non-empty and does not start with a
23266 mapping symbol, then this mapping symbol is required. */
23267 if (next->fr_address != next->fr_next->fr_address)
23268 break;
23269
23270 next = next->fr_next;
23271 }
23272 while (next != NULL);
23273 }
23274}
23275#endif
23276
c19d1205
ZW
23277/* Adjust the symbol table. This marks Thumb symbols as distinct from
23278 ARM ones. */
404ff6b5 23279
c19d1205
ZW
23280void
23281arm_adjust_symtab (void)
404ff6b5 23282{
c19d1205
ZW
23283#ifdef OBJ_COFF
23284 symbolS * sym;
404ff6b5 23285
c19d1205
ZW
23286 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
23287 {
23288 if (ARM_IS_THUMB (sym))
23289 {
23290 if (THUMB_IS_FUNC (sym))
23291 {
23292 /* Mark the symbol as a Thumb function. */
23293 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
23294 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
23295 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 23296
c19d1205
ZW
23297 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
23298 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
23299 else
23300 as_bad (_("%s: unexpected function type: %d"),
23301 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
23302 }
23303 else switch (S_GET_STORAGE_CLASS (sym))
23304 {
23305 case C_EXT:
23306 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
23307 break;
23308 case C_STAT:
23309 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
23310 break;
23311 case C_LABEL:
23312 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
23313 break;
23314 default:
23315 /* Do nothing. */
23316 break;
23317 }
23318 }
a737bd4d 23319
c19d1205
ZW
23320 if (ARM_IS_INTERWORK (sym))
23321 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 23322 }
c19d1205
ZW
23323#endif
23324#ifdef OBJ_ELF
23325 symbolS * sym;
23326 char bind;
404ff6b5 23327
c19d1205 23328 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 23329 {
c19d1205
ZW
23330 if (ARM_IS_THUMB (sym))
23331 {
23332 elf_symbol_type * elf_sym;
404ff6b5 23333
c19d1205
ZW
23334 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
23335 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 23336
b0796911
PB
23337 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
23338 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
23339 {
23340 /* If it's a .thumb_func, declare it as so,
23341 otherwise tag label as .code 16. */
23342 if (THUMB_IS_FUNC (sym))
35fc36a8
RS
23343 elf_sym->internal_elf_sym.st_target_internal
23344 = ST_BRANCH_TO_THUMB;
3ba67470 23345 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
c19d1205
ZW
23346 elf_sym->internal_elf_sym.st_info =
23347 ELF_ST_INFO (bind, STT_ARM_16BIT);
23348 }
23349 }
23350 }
cd000bff
DJ
23351
23352 /* Remove any overlapping mapping symbols generated by alignment frags. */
23353 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
709001e9
MM
23354 /* Now do generic ELF adjustments. */
23355 elf_adjust_symtab ();
c19d1205 23356#endif
404ff6b5
AH
23357}
23358
c19d1205 23359/* MD interface: Initialization. */
404ff6b5 23360
a737bd4d 23361static void
c19d1205 23362set_constant_flonums (void)
a737bd4d 23363{
c19d1205 23364 int i;
404ff6b5 23365
c19d1205
ZW
23366 for (i = 0; i < NUM_FLOAT_VALS; i++)
23367 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
23368 abort ();
a737bd4d 23369}
404ff6b5 23370
3e9e4fcf
JB
23371/* Auto-select Thumb mode if it's the only available instruction set for the
23372 given architecture. */
23373
23374static void
23375autoselect_thumb_from_cpu_variant (void)
23376{
23377 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
23378 opcode_select (16);
23379}
23380
c19d1205
ZW
23381void
23382md_begin (void)
a737bd4d 23383{
c19d1205
ZW
23384 unsigned mach;
23385 unsigned int i;
404ff6b5 23386
c19d1205
ZW
23387 if ( (arm_ops_hsh = hash_new ()) == NULL
23388 || (arm_cond_hsh = hash_new ()) == NULL
23389 || (arm_shift_hsh = hash_new ()) == NULL
23390 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 23391 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 23392 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
23393 || (arm_reloc_hsh = hash_new ()) == NULL
23394 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
23395 as_fatal (_("virtual memory exhausted"));
23396
23397 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
d3ce72d0 23398 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
c19d1205 23399 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
d3ce72d0 23400 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
c19d1205 23401 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
5a49b8ac 23402 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
c19d1205 23403 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 23404 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
62b3e311 23405 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
d3ce72d0
NC
23406 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
23407 (void *) (v7m_psrs + i));
c19d1205 23408 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
5a49b8ac 23409 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
62b3e311
PB
23410 for (i = 0;
23411 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
23412 i++)
d3ce72d0 23413 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
5a49b8ac 23414 (void *) (barrier_opt_names + i));
c19d1205 23415#ifdef OBJ_ELF
3da1d841
NC
23416 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
23417 {
23418 struct reloc_entry * entry = reloc_names + i;
23419
23420 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
23421 /* This makes encode_branch() use the EABI versions of this relocation. */
23422 entry->reloc = BFD_RELOC_UNUSED;
23423
23424 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
23425 }
c19d1205
ZW
23426#endif
23427
23428 set_constant_flonums ();
404ff6b5 23429
c19d1205
ZW
23430 /* Set the cpu variant based on the command-line options. We prefer
23431 -mcpu= over -march= if both are set (as for GCC); and we prefer
23432 -mfpu= over any other way of setting the floating point unit.
23433 Use of legacy options with new options are faulted. */
e74cfd16 23434 if (legacy_cpu)
404ff6b5 23435 {
e74cfd16 23436 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
23437 as_bad (_("use of old and new-style options to set CPU type"));
23438
23439 mcpu_cpu_opt = legacy_cpu;
404ff6b5 23440 }
e74cfd16 23441 else if (!mcpu_cpu_opt)
c19d1205 23442 mcpu_cpu_opt = march_cpu_opt;
404ff6b5 23443
e74cfd16 23444 if (legacy_fpu)
c19d1205 23445 {
e74cfd16 23446 if (mfpu_opt)
c19d1205 23447 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
23448
23449 mfpu_opt = legacy_fpu;
23450 }
e74cfd16 23451 else if (!mfpu_opt)
03b1477f 23452 {
45eb4c1b
NS
23453#if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
23454 || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
23455 /* Some environments specify a default FPU. If they don't, infer it
23456 from the processor. */
e74cfd16 23457 if (mcpu_fpu_opt)
03b1477f
RE
23458 mfpu_opt = mcpu_fpu_opt;
23459 else
23460 mfpu_opt = march_fpu_opt;
39c2da32 23461#else
e74cfd16 23462 mfpu_opt = &fpu_default;
39c2da32 23463#endif
03b1477f
RE
23464 }
23465
e74cfd16 23466 if (!mfpu_opt)
03b1477f 23467 {
493cb6ef 23468 if (mcpu_cpu_opt != NULL)
e74cfd16 23469 mfpu_opt = &fpu_default;
493cb6ef 23470 else if (mcpu_fpu_opt != NULL && ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
e74cfd16 23471 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 23472 else
e74cfd16 23473 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
23474 }
23475
ee065d83 23476#ifdef CPU_DEFAULT
e74cfd16 23477 if (!mcpu_cpu_opt)
ee065d83 23478 {
e74cfd16
PB
23479 mcpu_cpu_opt = &cpu_default;
23480 selected_cpu = cpu_default;
ee065d83 23481 }
e74cfd16
PB
23482#else
23483 if (mcpu_cpu_opt)
23484 selected_cpu = *mcpu_cpu_opt;
ee065d83 23485 else
e74cfd16 23486 mcpu_cpu_opt = &arm_arch_any;
ee065d83 23487#endif
03b1477f 23488
e74cfd16 23489 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
03b1477f 23490
3e9e4fcf
JB
23491 autoselect_thumb_from_cpu_variant ();
23492
e74cfd16 23493 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 23494
f17c130b 23495#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 23496 {
7cc69913
NC
23497 unsigned int flags = 0;
23498
23499#if defined OBJ_ELF
23500 flags = meabi_flags;
d507cf36
PB
23501
23502 switch (meabi_flags)
33a392fb 23503 {
d507cf36 23504 case EF_ARM_EABI_UNKNOWN:
7cc69913 23505#endif
d507cf36
PB
23506 /* Set the flags in the private structure. */
23507 if (uses_apcs_26) flags |= F_APCS26;
23508 if (support_interwork) flags |= F_INTERWORK;
23509 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 23510 if (pic_code) flags |= F_PIC;
e74cfd16 23511 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
23512 flags |= F_SOFT_FLOAT;
23513
d507cf36
PB
23514 switch (mfloat_abi_opt)
23515 {
23516 case ARM_FLOAT_ABI_SOFT:
23517 case ARM_FLOAT_ABI_SOFTFP:
23518 flags |= F_SOFT_FLOAT;
23519 break;
33a392fb 23520
d507cf36
PB
23521 case ARM_FLOAT_ABI_HARD:
23522 if (flags & F_SOFT_FLOAT)
23523 as_bad (_("hard-float conflicts with specified fpu"));
23524 break;
23525 }
03b1477f 23526
e74cfd16
PB
23527 /* Using pure-endian doubles (even if soft-float). */
23528 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 23529 flags |= F_VFP_FLOAT;
f17c130b 23530
fde78edd 23531#if defined OBJ_ELF
e74cfd16 23532 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 23533 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
23534 break;
23535
8cb51566 23536 case EF_ARM_EABI_VER4:
3a4a14e9 23537 case EF_ARM_EABI_VER5:
c19d1205 23538 /* No additional flags to set. */
d507cf36
PB
23539 break;
23540
23541 default:
23542 abort ();
23543 }
7cc69913 23544#endif
b99bd4ef
NC
23545 bfd_set_private_flags (stdoutput, flags);
23546
23547 /* We have run out flags in the COFF header to encode the
23548 status of ATPCS support, so instead we create a dummy,
c19d1205 23549 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
23550 if (atpcs)
23551 {
23552 asection * sec;
23553
23554 sec = bfd_make_section (stdoutput, ".arm.atpcs");
23555
23556 if (sec != NULL)
23557 {
23558 bfd_set_section_flags
23559 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
23560 bfd_set_section_size (stdoutput, sec, 0);
23561 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
23562 }
23563 }
7cc69913 23564 }
f17c130b 23565#endif
b99bd4ef
NC
23566
23567 /* Record the CPU type as well. */
2d447fca
JM
23568 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
23569 mach = bfd_mach_arm_iWMMXt2;
23570 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 23571 mach = bfd_mach_arm_iWMMXt;
e74cfd16 23572 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 23573 mach = bfd_mach_arm_XScale;
e74cfd16 23574 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 23575 mach = bfd_mach_arm_ep9312;
e74cfd16 23576 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 23577 mach = bfd_mach_arm_5TE;
e74cfd16 23578 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 23579 {
e74cfd16 23580 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
23581 mach = bfd_mach_arm_5T;
23582 else
23583 mach = bfd_mach_arm_5;
23584 }
e74cfd16 23585 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 23586 {
e74cfd16 23587 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
23588 mach = bfd_mach_arm_4T;
23589 else
23590 mach = bfd_mach_arm_4;
23591 }
e74cfd16 23592 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 23593 mach = bfd_mach_arm_3M;
e74cfd16
PB
23594 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
23595 mach = bfd_mach_arm_3;
23596 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
23597 mach = bfd_mach_arm_2a;
23598 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
23599 mach = bfd_mach_arm_2;
23600 else
23601 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
23602
23603 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
23604}
23605
c19d1205 23606/* Command line processing. */
b99bd4ef 23607
c19d1205
ZW
23608/* md_parse_option
23609 Invocation line includes a switch not recognized by the base assembler.
23610 See if it's a processor-specific option.
b99bd4ef 23611
c19d1205
ZW
23612 This routine is somewhat complicated by the need for backwards
23613 compatibility (since older releases of gcc can't be changed).
23614 The new options try to make the interface as compatible as
23615 possible with GCC.
b99bd4ef 23616
c19d1205 23617 New options (supported) are:
b99bd4ef 23618
c19d1205
ZW
23619 -mcpu=<cpu name> Assemble for selected processor
23620 -march=<architecture name> Assemble for selected architecture
23621 -mfpu=<fpu architecture> Assemble for selected FPU.
23622 -EB/-mbig-endian Big-endian
23623 -EL/-mlittle-endian Little-endian
23624 -k Generate PIC code
23625 -mthumb Start in Thumb mode
23626 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 23627
278df34e 23628 -m[no-]warn-deprecated Warn about deprecated features
267bf995 23629
c19d1205 23630 For now we will also provide support for:
b99bd4ef 23631
c19d1205
ZW
23632 -mapcs-32 32-bit Program counter
23633 -mapcs-26 26-bit Program counter
23634 -macps-float Floats passed in FP registers
23635 -mapcs-reentrant Reentrant code
23636 -matpcs
23637 (sometime these will probably be replaced with -mapcs=<list of options>
23638 and -matpcs=<list of options>)
b99bd4ef 23639
c19d1205
ZW
23640 The remaining options are only supported for back-wards compatibility.
23641 Cpu variants, the arm part is optional:
23642 -m[arm]1 Currently not supported.
23643 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
23644 -m[arm]3 Arm 3 processor
23645 -m[arm]6[xx], Arm 6 processors
23646 -m[arm]7[xx][t][[d]m] Arm 7 processors
23647 -m[arm]8[10] Arm 8 processors
23648 -m[arm]9[20][tdmi] Arm 9 processors
23649 -mstrongarm[110[0]] StrongARM processors
23650 -mxscale XScale processors
23651 -m[arm]v[2345[t[e]]] Arm architectures
23652 -mall All (except the ARM1)
23653 FP variants:
23654 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
23655 -mfpe-old (No float load/store multiples)
23656 -mvfpxd VFP Single precision
23657 -mvfp All VFP
23658 -mno-fpu Disable all floating point instructions
b99bd4ef 23659
c19d1205
ZW
23660 The following CPU names are recognized:
23661 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
23662 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
23663 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
23664 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
23665 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
23666 arm10t arm10e, arm1020t, arm1020e, arm10200e,
23667 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 23668
c19d1205 23669 */
b99bd4ef 23670
c19d1205 23671const char * md_shortopts = "m:k";
b99bd4ef 23672
c19d1205
ZW
23673#ifdef ARM_BI_ENDIAN
23674#define OPTION_EB (OPTION_MD_BASE + 0)
23675#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 23676#else
c19d1205
ZW
23677#if TARGET_BYTES_BIG_ENDIAN
23678#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 23679#else
c19d1205
ZW
23680#define OPTION_EL (OPTION_MD_BASE + 1)
23681#endif
b99bd4ef 23682#endif
845b51d6 23683#define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
b99bd4ef 23684
c19d1205 23685struct option md_longopts[] =
b99bd4ef 23686{
c19d1205
ZW
23687#ifdef OPTION_EB
23688 {"EB", no_argument, NULL, OPTION_EB},
23689#endif
23690#ifdef OPTION_EL
23691 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 23692#endif
845b51d6 23693 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
c19d1205
ZW
23694 {NULL, no_argument, NULL, 0}
23695};
b99bd4ef 23696
c19d1205 23697size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 23698
c19d1205 23699struct arm_option_table
b99bd4ef 23700{
c19d1205
ZW
23701 char *option; /* Option name to match. */
23702 char *help; /* Help information. */
23703 int *var; /* Variable to change. */
23704 int value; /* What to change it to. */
23705 char *deprecated; /* If non-null, print this message. */
23706};
b99bd4ef 23707
c19d1205
ZW
23708struct arm_option_table arm_opts[] =
23709{
23710 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
23711 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
23712 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
23713 &support_interwork, 1, NULL},
23714 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
23715 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
23716 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
23717 1, NULL},
23718 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
23719 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
23720 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
23721 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
23722 NULL},
b99bd4ef 23723
c19d1205
ZW
23724 /* These are recognized by the assembler, but have no affect on code. */
23725 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
23726 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
278df34e
NS
23727
23728 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
23729 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
23730 &warn_on_deprecated, 0, NULL},
e74cfd16
PB
23731 {NULL, NULL, NULL, 0, NULL}
23732};
23733
23734struct arm_legacy_option_table
23735{
23736 char *option; /* Option name to match. */
23737 const arm_feature_set **var; /* Variable to change. */
23738 const arm_feature_set value; /* What to change it to. */
23739 char *deprecated; /* If non-null, print this message. */
23740};
b99bd4ef 23741
e74cfd16
PB
23742const struct arm_legacy_option_table arm_legacy_opts[] =
23743{
c19d1205
ZW
23744 /* DON'T add any new processors to this list -- we want the whole list
23745 to go away... Add them to the processors table instead. */
e74cfd16
PB
23746 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
23747 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
23748 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
23749 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
23750 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
23751 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
23752 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
23753 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
23754 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
23755 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
23756 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
23757 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
23758 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
23759 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
23760 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
23761 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
23762 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
23763 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
23764 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
23765 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
23766 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
23767 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
23768 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
23769 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
23770 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
23771 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
23772 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
23773 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
23774 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
23775 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
23776 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
23777 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
23778 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
23779 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
23780 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
23781 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
23782 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
23783 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
23784 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
23785 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
23786 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
23787 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
23788 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
23789 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
23790 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
23791 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
23792 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23793 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23794 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23795 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
23796 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
23797 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
23798 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
23799 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
23800 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
23801 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
23802 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
23803 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
23804 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
23805 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
23806 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
23807 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
23808 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
23809 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
23810 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
23811 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
23812 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
23813 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
23814 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
23815 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23816 N_("use -mcpu=strongarm110")},
e74cfd16 23817 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23818 N_("use -mcpu=strongarm1100")},
e74cfd16 23819 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 23820 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
23821 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
23822 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
23823 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 23824
c19d1205 23825 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
23826 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
23827 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
23828 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
23829 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
23830 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
23831 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
23832 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
23833 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
23834 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
23835 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
23836 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
23837 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
23838 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
23839 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
23840 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
23841 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
23842 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
23843 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 23844
c19d1205 23845 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
23846 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
23847 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
23848 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
23849 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 23850 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 23851
e74cfd16 23852 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 23853};
7ed4c4c5 23854
c19d1205 23855struct arm_cpu_option_table
7ed4c4c5 23856{
c19d1205 23857 char *name;
f3bad469 23858 size_t name_len;
e74cfd16 23859 const arm_feature_set value;
c19d1205
ZW
23860 /* For some CPUs we assume an FPU unless the user explicitly sets
23861 -mfpu=... */
e74cfd16 23862 const arm_feature_set default_fpu;
ee065d83
PB
23863 /* The canonical name of the CPU, or NULL to use NAME converted to upper
23864 case. */
23865 const char *canonical_name;
c19d1205 23866};
7ed4c4c5 23867
c19d1205
ZW
23868/* This list should, at a minimum, contain all the cpu names
23869 recognized by GCC. */
f3bad469 23870#define ARM_CPU_OPT(N, V, DF, CN) { N, sizeof (N) - 1, V, DF, CN }
e74cfd16 23871static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 23872{
f3bad469
MGD
23873 ARM_CPU_OPT ("all", ARM_ANY, FPU_ARCH_FPA, NULL),
23874 ARM_CPU_OPT ("arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL),
23875 ARM_CPU_OPT ("arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL),
23876 ARM_CPU_OPT ("arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
23877 ARM_CPU_OPT ("arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL),
23878 ARM_CPU_OPT ("arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23879 ARM_CPU_OPT ("arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23880 ARM_CPU_OPT ("arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23881 ARM_CPU_OPT ("arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23882 ARM_CPU_OPT ("arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23883 ARM_CPU_OPT ("arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23884 ARM_CPU_OPT ("arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23885 ARM_CPU_OPT ("arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23886 ARM_CPU_OPT ("arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23887 ARM_CPU_OPT ("arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23888 ARM_CPU_OPT ("arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL),
23889 ARM_CPU_OPT ("arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23890 ARM_CPU_OPT ("arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23891 ARM_CPU_OPT ("arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23892 ARM_CPU_OPT ("arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23893 ARM_CPU_OPT ("arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23894 ARM_CPU_OPT ("arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23895 ARM_CPU_OPT ("arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23896 ARM_CPU_OPT ("arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23897 ARM_CPU_OPT ("arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23898 ARM_CPU_OPT ("arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23899 ARM_CPU_OPT ("arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23900 ARM_CPU_OPT ("arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL),
23901 ARM_CPU_OPT ("arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23902 ARM_CPU_OPT ("arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23903 ARM_CPU_OPT ("arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23904 ARM_CPU_OPT ("arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23905 ARM_CPU_OPT ("arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23906 ARM_CPU_OPT ("strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23907 ARM_CPU_OPT ("strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23908 ARM_CPU_OPT ("strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23909 ARM_CPU_OPT ("strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23910 ARM_CPU_OPT ("strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23911 ARM_CPU_OPT ("arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23912 ARM_CPU_OPT ("arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"),
23913 ARM_CPU_OPT ("arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23914 ARM_CPU_OPT ("arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23915 ARM_CPU_OPT ("arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23916 ARM_CPU_OPT ("arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL),
23917 ARM_CPU_OPT ("fa526", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
23918 ARM_CPU_OPT ("fa626", ARM_ARCH_V4, FPU_ARCH_FPA, NULL),
c19d1205
ZW
23919 /* For V5 or later processors we default to using VFP; but the user
23920 should really set the FPU type explicitly. */
f3bad469
MGD
23921 ARM_CPU_OPT ("arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23922 ARM_CPU_OPT ("arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23923 ARM_CPU_OPT ("arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23924 ARM_CPU_OPT ("arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"),
23925 ARM_CPU_OPT ("arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23926 ARM_CPU_OPT ("arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23927 ARM_CPU_OPT ("arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"),
23928 ARM_CPU_OPT ("arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23929 ARM_CPU_OPT ("arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL),
23930 ARM_CPU_OPT ("arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"),
23931 ARM_CPU_OPT ("arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23932 ARM_CPU_OPT ("arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23933 ARM_CPU_OPT ("arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23934 ARM_CPU_OPT ("arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23935 ARM_CPU_OPT ("arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23936 ARM_CPU_OPT ("arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"),
23937 ARM_CPU_OPT ("arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL),
23938 ARM_CPU_OPT ("arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23939 ARM_CPU_OPT ("arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23940 ARM_CPU_OPT ("arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2,
23941 "ARM1026EJ-S"),
23942 ARM_CPU_OPT ("arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL),
23943 ARM_CPU_OPT ("fa606te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23944 ARM_CPU_OPT ("fa616te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23945 ARM_CPU_OPT ("fa626te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23946 ARM_CPU_OPT ("fmp626", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23947 ARM_CPU_OPT ("fa726te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL),
23948 ARM_CPU_OPT ("arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"),
23949 ARM_CPU_OPT ("arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL),
23950 ARM_CPU_OPT ("arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2,
23951 "ARM1136JF-S"),
23952 ARM_CPU_OPT ("arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL),
23953 ARM_CPU_OPT ("mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, "MPCore"),
23954 ARM_CPU_OPT ("mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, "MPCore"),
23955 ARM_CPU_OPT ("arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL),
23956 ARM_CPU_OPT ("arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL),
23957 ARM_CPU_OPT ("arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL),
23958 ARM_CPU_OPT ("arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL),
23959 ARM_CPU_OPT ("cortex-a5", ARM_ARCH_V7A_MP_SEC,
23960 FPU_NONE, "Cortex-A5"),
23961 ARM_CPU_OPT ("cortex-a7", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23962 FPU_ARCH_NEON_VFP_V4,
23963 "Cortex-A7"),
23964 ARM_CPU_OPT ("cortex-a8", ARM_ARCH_V7A_SEC,
23965 ARM_FEATURE (0, FPU_VFP_V3
5287ad62 23966 | FPU_NEON_EXT_V1),
f3bad469
MGD
23967 "Cortex-A8"),
23968 ARM_CPU_OPT ("cortex-a9", ARM_ARCH_V7A_MP_SEC,
23969 ARM_FEATURE (0, FPU_VFP_V3
15290f0a 23970 | FPU_NEON_EXT_V1),
f3bad469 23971 "Cortex-A9"),
63a4bc21
KT
23972 ARM_CPU_OPT ("cortex-a12", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23973 FPU_ARCH_NEON_VFP_V4,
23974 "Cortex-A12"),
f3bad469
MGD
23975 ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
23976 FPU_ARCH_NEON_VFP_V4,
23977 "Cortex-A15"),
92eb40d9
RR
23978 ARM_CPU_OPT ("cortex-a53", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
23979 "Cortex-A53"),
23980 ARM_CPU_OPT ("cortex-a57", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
23981 "Cortex-A57"),
f3bad469
MGD
23982 ARM_CPU_OPT ("cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"),
23983 ARM_CPU_OPT ("cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16,
23984 "Cortex-R4F"),
23985 ARM_CPU_OPT ("cortex-r5", ARM_ARCH_V7R_IDIV,
23986 FPU_NONE, "Cortex-R5"),
70a8bc5b 23987 ARM_CPU_OPT ("cortex-r7", ARM_ARCH_V7R_IDIV,
23988 FPU_ARCH_VFP_V3D16,
23989 "Cortex-R7"),
f3bad469
MGD
23990 ARM_CPU_OPT ("cortex-m4", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M4"),
23991 ARM_CPU_OPT ("cortex-m3", ARM_ARCH_V7M, FPU_NONE, "Cortex-M3"),
23992 ARM_CPU_OPT ("cortex-m1", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M1"),
23993 ARM_CPU_OPT ("cortex-m0", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0"),
ce32bd10 23994 ARM_CPU_OPT ("cortex-m0plus", ARM_ARCH_V6SM, FPU_NONE, "Cortex-M0+"),
c19d1205 23995 /* ??? XSCALE is really an architecture. */
f3bad469 23996 ARM_CPU_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 23997 /* ??? iwmmxt is not a processor. */
f3bad469
MGD
23998 ARM_CPU_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL),
23999 ARM_CPU_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP_V2, NULL),
24000 ARM_CPU_OPT ("i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
c19d1205 24001 /* Maverick */
f3bad469 24002 ARM_CPU_OPT ("ep9312", ARM_FEATURE (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
da4339ed
NC
24003 FPU_ARCH_MAVERICK, "ARM920T"),
24004 /* Marvell processors. */
4a81b02a 24005 ARM_CPU_OPT ("marvell-pj4", ARM_FEATURE (ARM_AEXT_V7A | ARM_EXT_MP | ARM_EXT_SEC, 0),
da4339ed
NC
24006 FPU_ARCH_VFP_V3D16, NULL),
24007
f3bad469 24008 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
c19d1205 24009};
f3bad469 24010#undef ARM_CPU_OPT
7ed4c4c5 24011
c19d1205 24012struct arm_arch_option_table
7ed4c4c5 24013{
c19d1205 24014 char *name;
f3bad469 24015 size_t name_len;
e74cfd16
PB
24016 const arm_feature_set value;
24017 const arm_feature_set default_fpu;
c19d1205 24018};
7ed4c4c5 24019
c19d1205
ZW
24020/* This list should, at a minimum, contain all the architecture names
24021 recognized by GCC. */
f3bad469 24022#define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF }
e74cfd16 24023static const struct arm_arch_option_table arm_archs[] =
c19d1205 24024{
f3bad469
MGD
24025 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
24026 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
24027 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
24028 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
24029 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
24030 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
24031 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
24032 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
24033 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
24034 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
24035 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
24036 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
24037 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
24038 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
24039 ARM_ARCH_OPT ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP),
24040 ARM_ARCH_OPT ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP),
24041 ARM_ARCH_OPT ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP),
24042 ARM_ARCH_OPT ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP),
24043 ARM_ARCH_OPT ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP),
24044 ARM_ARCH_OPT ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP),
24045 ARM_ARCH_OPT ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP),
24046 ARM_ARCH_OPT ("armv6zk", ARM_ARCH_V6ZK, FPU_ARCH_VFP),
24047 ARM_ARCH_OPT ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP),
24048 ARM_ARCH_OPT ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP),
24049 ARM_ARCH_OPT ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP),
24050 ARM_ARCH_OPT ("armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP),
24051 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
24052 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
24053 ARM_ARCH_OPT ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP),
c450d570
PB
24054 /* The official spelling of the ARMv7 profile variants is the dashed form.
24055 Accept the non-dashed form for compatibility with old toolchains. */
f3bad469
MGD
24056 ARM_ARCH_OPT ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP),
24057 ARM_ARCH_OPT ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP),
24058 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
24059 ARM_ARCH_OPT ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP),
24060 ARM_ARCH_OPT ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP),
24061 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
24062 ARM_ARCH_OPT ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP),
bca38921 24063 ARM_ARCH_OPT ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP),
f3bad469
MGD
24064 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
24065 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
24066 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP),
24067 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
c19d1205 24068};
f3bad469 24069#undef ARM_ARCH_OPT
7ed4c4c5 24070
69133863
MGD
24071/* ISA extensions in the co-processor and main instruction set space. */
24072struct arm_option_extension_value_table
c19d1205
ZW
24073{
24074 char *name;
f3bad469 24075 size_t name_len;
e74cfd16 24076 const arm_feature_set value;
69133863 24077 const arm_feature_set allowed_archs;
c19d1205 24078};
7ed4c4c5 24079
69133863
MGD
24080/* The following table must be in alphabetical order with a NULL last entry.
24081 */
f3bad469 24082#define ARM_EXT_OPT(N, V, AA) { N, sizeof (N) - 1, V, AA }
69133863 24083static const struct arm_option_extension_value_table arm_extensions[] =
c19d1205 24084{
dd5181d5 24085 ARM_EXT_OPT ("crc", ARCH_CRC_ARMV8, ARM_FEATURE (ARM_EXT_V8, 0)),
bca38921
MGD
24086 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
24087 ARM_FEATURE (ARM_EXT_V8, 0)),
24088 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8,
24089 ARM_FEATURE (ARM_EXT_V8, 0)),
f3bad469
MGD
24090 ARM_EXT_OPT ("idiv", ARM_FEATURE (ARM_EXT_ADIV | ARM_EXT_DIV, 0),
24091 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
24092 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE (0, ARM_CEXT_IWMMXT), ARM_ANY),
24093 ARM_EXT_OPT ("iwmmxt2",
24094 ARM_FEATURE (0, ARM_CEXT_IWMMXT2), ARM_ANY),
24095 ARM_EXT_OPT ("maverick",
24096 ARM_FEATURE (0, ARM_CEXT_MAVERICK), ARM_ANY),
24097 ARM_EXT_OPT ("mp", ARM_FEATURE (ARM_EXT_MP, 0),
24098 ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
bca38921
MGD
24099 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
24100 ARM_FEATURE (ARM_EXT_V8, 0)),
f3bad469
MGD
24101 ARM_EXT_OPT ("os", ARM_FEATURE (ARM_EXT_OS, 0),
24102 ARM_FEATURE (ARM_EXT_V6M, 0)),
24103 ARM_EXT_OPT ("sec", ARM_FEATURE (ARM_EXT_SEC, 0),
24104 ARM_FEATURE (ARM_EXT_V6K | ARM_EXT_V7A, 0)),
24105 ARM_EXT_OPT ("virt", ARM_FEATURE (ARM_EXT_VIRT | ARM_EXT_ADIV
24106 | ARM_EXT_DIV, 0),
24107 ARM_FEATURE (ARM_EXT_V7A, 0)),
24108 ARM_EXT_OPT ("xscale",ARM_FEATURE (0, ARM_CEXT_XSCALE), ARM_ANY),
24109 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
69133863 24110};
f3bad469 24111#undef ARM_EXT_OPT
69133863
MGD
24112
24113/* ISA floating-point and Advanced SIMD extensions. */
24114struct arm_option_fpu_value_table
24115{
24116 char *name;
24117 const arm_feature_set value;
c19d1205 24118};
7ed4c4c5 24119
c19d1205
ZW
24120/* This list should, at a minimum, contain all the fpu names
24121 recognized by GCC. */
69133863 24122static const struct arm_option_fpu_value_table arm_fpus[] =
c19d1205
ZW
24123{
24124 {"softfpa", FPU_NONE},
24125 {"fpe", FPU_ARCH_FPE},
24126 {"fpe2", FPU_ARCH_FPE},
24127 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
24128 {"fpa", FPU_ARCH_FPA},
24129 {"fpa10", FPU_ARCH_FPA},
24130 {"fpa11", FPU_ARCH_FPA},
24131 {"arm7500fe", FPU_ARCH_FPA},
24132 {"softvfp", FPU_ARCH_VFP},
24133 {"softvfp+vfp", FPU_ARCH_VFP_V2},
24134 {"vfp", FPU_ARCH_VFP_V2},
24135 {"vfp9", FPU_ARCH_VFP_V2},
b1cc4aeb 24136 {"vfp3", FPU_ARCH_VFP_V3}, /* For backwards compatbility. */
c19d1205
ZW
24137 {"vfp10", FPU_ARCH_VFP_V2},
24138 {"vfp10-r0", FPU_ARCH_VFP_V1},
24139 {"vfpxd", FPU_ARCH_VFP_V1xD},
b1cc4aeb
PB
24140 {"vfpv2", FPU_ARCH_VFP_V2},
24141 {"vfpv3", FPU_ARCH_VFP_V3},
62f3b8c8 24142 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
b1cc4aeb 24143 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
62f3b8c8
PB
24144 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
24145 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
24146 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
c19d1205
ZW
24147 {"arm1020t", FPU_ARCH_VFP_V1},
24148 {"arm1020e", FPU_ARCH_VFP_V2},
24149 {"arm1136jfs", FPU_ARCH_VFP_V2},
24150 {"arm1136jf-s", FPU_ARCH_VFP_V2},
24151 {"maverick", FPU_ARCH_MAVERICK},
5287ad62 24152 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
8e79c3df 24153 {"neon-fp16", FPU_ARCH_NEON_FP16},
62f3b8c8
PB
24154 {"vfpv4", FPU_ARCH_VFP_V4},
24155 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
ada65aa3 24156 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
62f3b8c8 24157 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
bca38921
MGD
24158 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
24159 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
24160 {"crypto-neon-fp-armv8",
24161 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
e74cfd16
PB
24162 {NULL, ARM_ARCH_NONE}
24163};
24164
24165struct arm_option_value_table
24166{
24167 char *name;
24168 long value;
c19d1205 24169};
7ed4c4c5 24170
e74cfd16 24171static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
24172{
24173 {"hard", ARM_FLOAT_ABI_HARD},
24174 {"softfp", ARM_FLOAT_ABI_SOFTFP},
24175 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 24176 {NULL, 0}
c19d1205 24177};
7ed4c4c5 24178
c19d1205 24179#ifdef OBJ_ELF
3a4a14e9 24180/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 24181static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
24182{
24183 {"gnu", EF_ARM_EABI_UNKNOWN},
24184 {"4", EF_ARM_EABI_VER4},
3a4a14e9 24185 {"5", EF_ARM_EABI_VER5},
e74cfd16 24186 {NULL, 0}
c19d1205
ZW
24187};
24188#endif
7ed4c4c5 24189
c19d1205
ZW
24190struct arm_long_option_table
24191{
24192 char * option; /* Substring to match. */
24193 char * help; /* Help information. */
24194 int (* func) (char * subopt); /* Function to decode sub-option. */
24195 char * deprecated; /* If non-null, print this message. */
24196};
7ed4c4c5 24197
c921be7d 24198static bfd_boolean
f3bad469 24199arm_parse_extension (char *str, const arm_feature_set **opt_p)
7ed4c4c5 24200{
21d799b5
NC
24201 arm_feature_set *ext_set = (arm_feature_set *)
24202 xmalloc (sizeof (arm_feature_set));
e74cfd16 24203
69133863 24204 /* We insist on extensions being specified in alphabetical order, and with
fa94de6b
RM
24205 extensions being added before being removed. We achieve this by having
24206 the global ARM_EXTENSIONS table in alphabetical order, and using the
69133863 24207 ADDING_VALUE variable to indicate whether we are adding an extension (1)
fa94de6b 24208 or removing it (0) and only allowing it to change in the order
69133863
MGD
24209 -1 -> 1 -> 0. */
24210 const struct arm_option_extension_value_table * opt = NULL;
24211 int adding_value = -1;
24212
e74cfd16
PB
24213 /* Copy the feature set, so that we can modify it. */
24214 *ext_set = **opt_p;
24215 *opt_p = ext_set;
24216
c19d1205 24217 while (str != NULL && *str != 0)
7ed4c4c5 24218 {
f3bad469
MGD
24219 char *ext;
24220 size_t len;
7ed4c4c5 24221
c19d1205
ZW
24222 if (*str != '+')
24223 {
24224 as_bad (_("invalid architectural extension"));
c921be7d 24225 return FALSE;
c19d1205 24226 }
7ed4c4c5 24227
c19d1205
ZW
24228 str++;
24229 ext = strchr (str, '+');
7ed4c4c5 24230
c19d1205 24231 if (ext != NULL)
f3bad469 24232 len = ext - str;
c19d1205 24233 else
f3bad469 24234 len = strlen (str);
7ed4c4c5 24235
f3bad469 24236 if (len >= 2 && strncmp (str, "no", 2) == 0)
69133863
MGD
24237 {
24238 if (adding_value != 0)
24239 {
24240 adding_value = 0;
24241 opt = arm_extensions;
24242 }
24243
f3bad469 24244 len -= 2;
69133863
MGD
24245 str += 2;
24246 }
f3bad469 24247 else if (len > 0)
69133863
MGD
24248 {
24249 if (adding_value == -1)
24250 {
24251 adding_value = 1;
24252 opt = arm_extensions;
24253 }
24254 else if (adding_value != 1)
24255 {
24256 as_bad (_("must specify extensions to add before specifying "
24257 "those to remove"));
24258 return FALSE;
24259 }
24260 }
24261
f3bad469 24262 if (len == 0)
c19d1205
ZW
24263 {
24264 as_bad (_("missing architectural extension"));
c921be7d 24265 return FALSE;
c19d1205 24266 }
7ed4c4c5 24267
69133863
MGD
24268 gas_assert (adding_value != -1);
24269 gas_assert (opt != NULL);
24270
24271 /* Scan over the options table trying to find an exact match. */
24272 for (; opt->name != NULL; opt++)
f3bad469 24273 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24274 {
69133863
MGD
24275 /* Check we can apply the extension to this architecture. */
24276 if (!ARM_CPU_HAS_FEATURE (*ext_set, opt->allowed_archs))
24277 {
24278 as_bad (_("extension does not apply to the base architecture"));
24279 return FALSE;
24280 }
24281
24282 /* Add or remove the extension. */
24283 if (adding_value)
24284 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value);
24285 else
24286 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->value);
24287
c19d1205
ZW
24288 break;
24289 }
7ed4c4c5 24290
c19d1205
ZW
24291 if (opt->name == NULL)
24292 {
69133863
MGD
24293 /* Did we fail to find an extension because it wasn't specified in
24294 alphabetical order, or because it does not exist? */
24295
24296 for (opt = arm_extensions; opt->name != NULL; opt++)
f3bad469 24297 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
69133863
MGD
24298 break;
24299
24300 if (opt->name == NULL)
24301 as_bad (_("unknown architectural extension `%s'"), str);
24302 else
24303 as_bad (_("architectural extensions must be specified in "
24304 "alphabetical order"));
24305
c921be7d 24306 return FALSE;
c19d1205 24307 }
69133863
MGD
24308 else
24309 {
24310 /* We should skip the extension we've just matched the next time
24311 round. */
24312 opt++;
24313 }
7ed4c4c5 24314
c19d1205
ZW
24315 str = ext;
24316 };
7ed4c4c5 24317
c921be7d 24318 return TRUE;
c19d1205 24319}
7ed4c4c5 24320
c921be7d 24321static bfd_boolean
f3bad469 24322arm_parse_cpu (char *str)
7ed4c4c5 24323{
f3bad469
MGD
24324 const struct arm_cpu_option_table *opt;
24325 char *ext = strchr (str, '+');
24326 size_t len;
7ed4c4c5 24327
c19d1205 24328 if (ext != NULL)
f3bad469 24329 len = ext - str;
7ed4c4c5 24330 else
f3bad469 24331 len = strlen (str);
7ed4c4c5 24332
f3bad469 24333 if (len == 0)
7ed4c4c5 24334 {
c19d1205 24335 as_bad (_("missing cpu name `%s'"), str);
c921be7d 24336 return FALSE;
7ed4c4c5
NC
24337 }
24338
c19d1205 24339 for (opt = arm_cpus; opt->name != NULL; opt++)
f3bad469 24340 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24341 {
e74cfd16
PB
24342 mcpu_cpu_opt = &opt->value;
24343 mcpu_fpu_opt = &opt->default_fpu;
ee065d83 24344 if (opt->canonical_name)
5f4273c7 24345 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24346 else
24347 {
f3bad469 24348 size_t i;
c921be7d 24349
f3bad469 24350 for (i = 0; i < len; i++)
ee065d83
PB
24351 selected_cpu_name[i] = TOUPPER (opt->name[i]);
24352 selected_cpu_name[i] = 0;
24353 }
7ed4c4c5 24354
c19d1205
ZW
24355 if (ext != NULL)
24356 return arm_parse_extension (ext, &mcpu_cpu_opt);
7ed4c4c5 24357
c921be7d 24358 return TRUE;
c19d1205 24359 }
7ed4c4c5 24360
c19d1205 24361 as_bad (_("unknown cpu `%s'"), str);
c921be7d 24362 return FALSE;
7ed4c4c5
NC
24363}
24364
c921be7d 24365static bfd_boolean
f3bad469 24366arm_parse_arch (char *str)
7ed4c4c5 24367{
e74cfd16 24368 const struct arm_arch_option_table *opt;
c19d1205 24369 char *ext = strchr (str, '+');
f3bad469 24370 size_t len;
7ed4c4c5 24371
c19d1205 24372 if (ext != NULL)
f3bad469 24373 len = ext - str;
7ed4c4c5 24374 else
f3bad469 24375 len = strlen (str);
7ed4c4c5 24376
f3bad469 24377 if (len == 0)
7ed4c4c5 24378 {
c19d1205 24379 as_bad (_("missing architecture name `%s'"), str);
c921be7d 24380 return FALSE;
7ed4c4c5
NC
24381 }
24382
c19d1205 24383 for (opt = arm_archs; opt->name != NULL; opt++)
f3bad469 24384 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 24385 {
e74cfd16
PB
24386 march_cpu_opt = &opt->value;
24387 march_fpu_opt = &opt->default_fpu;
5f4273c7 24388 strcpy (selected_cpu_name, opt->name);
7ed4c4c5 24389
c19d1205
ZW
24390 if (ext != NULL)
24391 return arm_parse_extension (ext, &march_cpu_opt);
7ed4c4c5 24392
c921be7d 24393 return TRUE;
c19d1205
ZW
24394 }
24395
24396 as_bad (_("unknown architecture `%s'\n"), str);
c921be7d 24397 return FALSE;
7ed4c4c5 24398}
eb043451 24399
c921be7d 24400static bfd_boolean
c19d1205
ZW
24401arm_parse_fpu (char * str)
24402{
69133863 24403 const struct arm_option_fpu_value_table * opt;
b99bd4ef 24404
c19d1205
ZW
24405 for (opt = arm_fpus; opt->name != NULL; opt++)
24406 if (streq (opt->name, str))
24407 {
e74cfd16 24408 mfpu_opt = &opt->value;
c921be7d 24409 return TRUE;
c19d1205 24410 }
b99bd4ef 24411
c19d1205 24412 as_bad (_("unknown floating point format `%s'\n"), str);
c921be7d 24413 return FALSE;
c19d1205
ZW
24414}
24415
c921be7d 24416static bfd_boolean
c19d1205 24417arm_parse_float_abi (char * str)
b99bd4ef 24418{
e74cfd16 24419 const struct arm_option_value_table * opt;
b99bd4ef 24420
c19d1205
ZW
24421 for (opt = arm_float_abis; opt->name != NULL; opt++)
24422 if (streq (opt->name, str))
24423 {
24424 mfloat_abi_opt = opt->value;
c921be7d 24425 return TRUE;
c19d1205 24426 }
cc8a6dd0 24427
c19d1205 24428 as_bad (_("unknown floating point abi `%s'\n"), str);
c921be7d 24429 return FALSE;
c19d1205 24430}
b99bd4ef 24431
c19d1205 24432#ifdef OBJ_ELF
c921be7d 24433static bfd_boolean
c19d1205
ZW
24434arm_parse_eabi (char * str)
24435{
e74cfd16 24436 const struct arm_option_value_table *opt;
cc8a6dd0 24437
c19d1205
ZW
24438 for (opt = arm_eabis; opt->name != NULL; opt++)
24439 if (streq (opt->name, str))
24440 {
24441 meabi_flags = opt->value;
c921be7d 24442 return TRUE;
c19d1205
ZW
24443 }
24444 as_bad (_("unknown EABI `%s'\n"), str);
c921be7d 24445 return FALSE;
c19d1205
ZW
24446}
24447#endif
cc8a6dd0 24448
c921be7d 24449static bfd_boolean
e07e6e58
NC
24450arm_parse_it_mode (char * str)
24451{
c921be7d 24452 bfd_boolean ret = TRUE;
e07e6e58
NC
24453
24454 if (streq ("arm", str))
24455 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
24456 else if (streq ("thumb", str))
24457 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
24458 else if (streq ("always", str))
24459 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
24460 else if (streq ("never", str))
24461 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
24462 else
24463 {
24464 as_bad (_("unknown implicit IT mode `%s', should be "\
24465 "arm, thumb, always, or never."), str);
c921be7d 24466 ret = FALSE;
e07e6e58
NC
24467 }
24468
24469 return ret;
24470}
24471
c19d1205
ZW
24472struct arm_long_option_table arm_long_opts[] =
24473{
24474 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
24475 arm_parse_cpu, NULL},
24476 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
24477 arm_parse_arch, NULL},
24478 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
24479 arm_parse_fpu, NULL},
24480 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
24481 arm_parse_float_abi, NULL},
24482#ifdef OBJ_ELF
7fac0536 24483 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
c19d1205
ZW
24484 arm_parse_eabi, NULL},
24485#endif
e07e6e58
NC
24486 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
24487 arm_parse_it_mode, NULL},
c19d1205
ZW
24488 {NULL, NULL, 0, NULL}
24489};
cc8a6dd0 24490
c19d1205
ZW
24491int
24492md_parse_option (int c, char * arg)
24493{
24494 struct arm_option_table *opt;
e74cfd16 24495 const struct arm_legacy_option_table *fopt;
c19d1205 24496 struct arm_long_option_table *lopt;
b99bd4ef 24497
c19d1205 24498 switch (c)
b99bd4ef 24499 {
c19d1205
ZW
24500#ifdef OPTION_EB
24501 case OPTION_EB:
24502 target_big_endian = 1;
24503 break;
24504#endif
cc8a6dd0 24505
c19d1205
ZW
24506#ifdef OPTION_EL
24507 case OPTION_EL:
24508 target_big_endian = 0;
24509 break;
24510#endif
b99bd4ef 24511
845b51d6
PB
24512 case OPTION_FIX_V4BX:
24513 fix_v4bx = TRUE;
24514 break;
24515
c19d1205
ZW
24516 case 'a':
24517 /* Listing option. Just ignore these, we don't support additional
24518 ones. */
24519 return 0;
b99bd4ef 24520
c19d1205
ZW
24521 default:
24522 for (opt = arm_opts; opt->option != NULL; opt++)
24523 {
24524 if (c == opt->option[0]
24525 && ((arg == NULL && opt->option[1] == 0)
24526 || streq (arg, opt->option + 1)))
24527 {
c19d1205 24528 /* If the option is deprecated, tell the user. */
278df34e 24529 if (warn_on_deprecated && opt->deprecated != NULL)
c19d1205
ZW
24530 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
24531 arg ? arg : "", _(opt->deprecated));
b99bd4ef 24532
c19d1205
ZW
24533 if (opt->var != NULL)
24534 *opt->var = opt->value;
cc8a6dd0 24535
c19d1205
ZW
24536 return 1;
24537 }
24538 }
b99bd4ef 24539
e74cfd16
PB
24540 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
24541 {
24542 if (c == fopt->option[0]
24543 && ((arg == NULL && fopt->option[1] == 0)
24544 || streq (arg, fopt->option + 1)))
24545 {
e74cfd16 24546 /* If the option is deprecated, tell the user. */
278df34e 24547 if (warn_on_deprecated && fopt->deprecated != NULL)
e74cfd16
PB
24548 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
24549 arg ? arg : "", _(fopt->deprecated));
e74cfd16
PB
24550
24551 if (fopt->var != NULL)
24552 *fopt->var = &fopt->value;
24553
24554 return 1;
24555 }
24556 }
24557
c19d1205
ZW
24558 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
24559 {
24560 /* These options are expected to have an argument. */
24561 if (c == lopt->option[0]
24562 && arg != NULL
24563 && strncmp (arg, lopt->option + 1,
24564 strlen (lopt->option + 1)) == 0)
24565 {
c19d1205 24566 /* If the option is deprecated, tell the user. */
278df34e 24567 if (warn_on_deprecated && lopt->deprecated != NULL)
c19d1205
ZW
24568 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
24569 _(lopt->deprecated));
b99bd4ef 24570
c19d1205
ZW
24571 /* Call the sup-option parser. */
24572 return lopt->func (arg + strlen (lopt->option) - 1);
24573 }
24574 }
a737bd4d 24575
c19d1205
ZW
24576 return 0;
24577 }
a394c00f 24578
c19d1205
ZW
24579 return 1;
24580}
a394c00f 24581
c19d1205
ZW
24582void
24583md_show_usage (FILE * fp)
a394c00f 24584{
c19d1205
ZW
24585 struct arm_option_table *opt;
24586 struct arm_long_option_table *lopt;
a394c00f 24587
c19d1205 24588 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 24589
c19d1205
ZW
24590 for (opt = arm_opts; opt->option != NULL; opt++)
24591 if (opt->help != NULL)
24592 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 24593
c19d1205
ZW
24594 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
24595 if (lopt->help != NULL)
24596 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 24597
c19d1205
ZW
24598#ifdef OPTION_EB
24599 fprintf (fp, _("\
24600 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
24601#endif
24602
c19d1205
ZW
24603#ifdef OPTION_EL
24604 fprintf (fp, _("\
24605 -EL assemble code for a little-endian cpu\n"));
a737bd4d 24606#endif
845b51d6
PB
24607
24608 fprintf (fp, _("\
24609 --fix-v4bx Allow BX in ARMv4 code\n"));
c19d1205 24610}
ee065d83
PB
24611
24612
24613#ifdef OBJ_ELF
62b3e311
PB
24614typedef struct
24615{
24616 int val;
24617 arm_feature_set flags;
24618} cpu_arch_ver_table;
24619
24620/* Mapping from CPU features to EABI CPU arch values. Table must be sorted
24621 least features first. */
24622static const cpu_arch_ver_table cpu_arch_ver[] =
24623{
24624 {1, ARM_ARCH_V4},
24625 {2, ARM_ARCH_V4T},
24626 {3, ARM_ARCH_V5},
ee3c0378 24627 {3, ARM_ARCH_V5T},
62b3e311
PB
24628 {4, ARM_ARCH_V5TE},
24629 {5, ARM_ARCH_V5TEJ},
24630 {6, ARM_ARCH_V6},
7e806470 24631 {9, ARM_ARCH_V6K},
f4c65163 24632 {7, ARM_ARCH_V6Z},
91e22acd 24633 {11, ARM_ARCH_V6M},
b2a5fbdc 24634 {12, ARM_ARCH_V6SM},
7e806470 24635 {8, ARM_ARCH_V6T2},
bca38921 24636 {10, ARM_ARCH_V7A_IDIV_MP_SEC_VIRT},
62b3e311
PB
24637 {10, ARM_ARCH_V7R},
24638 {10, ARM_ARCH_V7M},
bca38921 24639 {14, ARM_ARCH_V8A},
62b3e311
PB
24640 {0, ARM_ARCH_NONE}
24641};
24642
ee3c0378
AS
24643/* Set an attribute if it has not already been set by the user. */
24644static void
24645aeabi_set_attribute_int (int tag, int value)
24646{
24647 if (tag < 1
24648 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
24649 || !attributes_set_explicitly[tag])
24650 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
24651}
24652
24653static void
24654aeabi_set_attribute_string (int tag, const char *value)
24655{
24656 if (tag < 1
24657 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
24658 || !attributes_set_explicitly[tag])
24659 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
24660}
24661
ee065d83
PB
24662/* Set the public EABI object attributes. */
24663static void
24664aeabi_set_public_attributes (void)
24665{
24666 int arch;
69239280 24667 char profile;
90ec0d68 24668 int virt_sec = 0;
bca38921 24669 int fp16_optional = 0;
e74cfd16 24670 arm_feature_set flags;
62b3e311
PB
24671 arm_feature_set tmp;
24672 const cpu_arch_ver_table *p;
ee065d83
PB
24673
24674 /* Choose the architecture based on the capabilities of the requested cpu
24675 (if any) and/or the instructions actually used. */
e74cfd16
PB
24676 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
24677 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
24678 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
ddd7f988
RE
24679
24680 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
24681 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
24682
24683 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
24684 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
24685
24686 /* Allow the user to override the reported architecture. */
7a1d4c38
PB
24687 if (object_arch)
24688 {
24689 ARM_CLEAR_FEATURE (flags, flags, arm_arch_any);
24690 ARM_MERGE_FEATURE_SETS (flags, flags, *object_arch);
24691 }
24692
251665fc
MGD
24693 /* We need to make sure that the attributes do not identify us as v6S-M
24694 when the only v6S-M feature in use is the Operating System Extensions. */
24695 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_os))
24696 if (!ARM_CPU_HAS_FEATURE (flags, arm_arch_v6m_only))
24697 ARM_CLEAR_FEATURE (flags, flags, arm_ext_os);
24698
62b3e311
PB
24699 tmp = flags;
24700 arch = 0;
24701 for (p = cpu_arch_ver; p->val; p++)
24702 {
24703 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
24704 {
24705 arch = p->val;
24706 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
24707 }
24708 }
ee065d83 24709
9e3c6df6
PB
24710 /* The table lookup above finds the last architecture to contribute
24711 a new feature. Unfortunately, Tag13 is a subset of the union of
24712 v6T2 and v7-M, so it is never seen as contributing a new feature.
24713 We can not search for the last entry which is entirely used,
24714 because if no CPU is specified we build up only those flags
24715 actually used. Perhaps we should separate out the specified
24716 and implicit cases. Avoid taking this path for -march=all by
24717 checking for contradictory v7-A / v7-M features. */
24718 if (arch == 10
24719 && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
24720 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m)
24721 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v6_dsp))
24722 arch = 13;
24723
ee065d83
PB
24724 /* Tag_CPU_name. */
24725 if (selected_cpu_name[0])
24726 {
91d6fa6a 24727 char *q;
ee065d83 24728
91d6fa6a
NC
24729 q = selected_cpu_name;
24730 if (strncmp (q, "armv", 4) == 0)
ee065d83
PB
24731 {
24732 int i;
5f4273c7 24733
91d6fa6a
NC
24734 q += 4;
24735 for (i = 0; q[i]; i++)
24736 q[i] = TOUPPER (q[i]);
ee065d83 24737 }
91d6fa6a 24738 aeabi_set_attribute_string (Tag_CPU_name, q);
ee065d83 24739 }
62f3b8c8 24740
ee065d83 24741 /* Tag_CPU_arch. */
ee3c0378 24742 aeabi_set_attribute_int (Tag_CPU_arch, arch);
62f3b8c8 24743
62b3e311
PB
24744 /* Tag_CPU_arch_profile. */
24745 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
69239280 24746 profile = 'A';
62b3e311 24747 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
69239280 24748 profile = 'R';
7e806470 24749 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_m))
69239280
MGD
24750 profile = 'M';
24751 else
24752 profile = '\0';
24753
24754 if (profile != '\0')
24755 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
62f3b8c8 24756
ee065d83 24757 /* Tag_ARM_ISA_use. */
ee3c0378
AS
24758 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
24759 || arch == 0)
24760 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
62f3b8c8 24761
ee065d83 24762 /* Tag_THUMB_ISA_use. */
ee3c0378
AS
24763 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
24764 || arch == 0)
24765 aeabi_set_attribute_int (Tag_THUMB_ISA_use,
24766 ARM_CPU_HAS_FEATURE (flags, arm_arch_t2) ? 2 : 1);
62f3b8c8 24767
ee065d83 24768 /* Tag_VFP_arch. */
bca38921
MGD
24769 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8))
24770 aeabi_set_attribute_int (Tag_VFP_arch, 7);
24771 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
62f3b8c8
PB
24772 aeabi_set_attribute_int (Tag_VFP_arch,
24773 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
24774 ? 5 : 6);
24775 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
bca38921
MGD
24776 {
24777 fp16_optional = 1;
24778 aeabi_set_attribute_int (Tag_VFP_arch, 3);
24779 }
ada65aa3 24780 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
bca38921
MGD
24781 {
24782 aeabi_set_attribute_int (Tag_VFP_arch, 4);
24783 fp16_optional = 1;
24784 }
ee3c0378
AS
24785 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
24786 aeabi_set_attribute_int (Tag_VFP_arch, 2);
24787 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
24788 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
24789 aeabi_set_attribute_int (Tag_VFP_arch, 1);
62f3b8c8 24790
4547cb56
NC
24791 /* Tag_ABI_HardFP_use. */
24792 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
24793 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
24794 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
24795
ee065d83 24796 /* Tag_WMMX_arch. */
ee3c0378
AS
24797 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
24798 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
24799 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
24800 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
62f3b8c8 24801
ee3c0378 24802 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
bca38921
MGD
24803 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
24804 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
24805 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
24806 {
24807 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
24808 {
24809 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
24810 }
24811 else
24812 {
24813 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
24814 fp16_optional = 1;
24815 }
24816 }
fa94de6b 24817
ee3c0378 24818 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
bca38921 24819 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
ee3c0378 24820 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
4547cb56 24821
69239280
MGD
24822 /* Tag_DIV_use.
24823
24824 We set Tag_DIV_use to two when integer divide instructions have been used
24825 in ARM state, or when Thumb integer divide instructions have been used,
24826 but we have no architecture profile set, nor have we any ARM instructions.
24827
bca38921
MGD
24828 For ARMv8 we set the tag to 0 as integer divide is implied by the base
24829 architecture.
24830
69239280 24831 For new architectures we will have to check these tests. */
bca38921
MGD
24832 gas_assert (arch <= TAG_CPU_ARCH_V8);
24833 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8))
24834 aeabi_set_attribute_int (Tag_DIV_use, 0);
24835 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
24836 || (profile == '\0'
24837 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
24838 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
eea54501 24839 aeabi_set_attribute_int (Tag_DIV_use, 2);
60e5ef9f
MGD
24840
24841 /* Tag_MP_extension_use. */
24842 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
24843 aeabi_set_attribute_int (Tag_MPextension_use, 1);
f4c65163
MGD
24844
24845 /* Tag Virtualization_use. */
24846 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
90ec0d68
MGD
24847 virt_sec |= 1;
24848 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
24849 virt_sec |= 2;
24850 if (virt_sec != 0)
24851 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
ee065d83
PB
24852}
24853
104d59d1 24854/* Add the default contents for the .ARM.attributes section. */
ee065d83
PB
24855void
24856arm_md_end (void)
24857{
ee065d83
PB
24858 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
24859 return;
24860
24861 aeabi_set_public_attributes ();
ee065d83 24862}
8463be01 24863#endif /* OBJ_ELF */
ee065d83
PB
24864
24865
24866/* Parse a .cpu directive. */
24867
24868static void
24869s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
24870{
e74cfd16 24871 const struct arm_cpu_option_table *opt;
ee065d83
PB
24872 char *name;
24873 char saved_char;
24874
24875 name = input_line_pointer;
5f4273c7 24876 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24877 input_line_pointer++;
24878 saved_char = *input_line_pointer;
24879 *input_line_pointer = 0;
24880
24881 /* Skip the first "all" entry. */
24882 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
24883 if (streq (opt->name, name))
24884 {
e74cfd16
PB
24885 mcpu_cpu_opt = &opt->value;
24886 selected_cpu = opt->value;
ee065d83 24887 if (opt->canonical_name)
5f4273c7 24888 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
24889 else
24890 {
24891 int i;
24892 for (i = 0; opt->name[i]; i++)
24893 selected_cpu_name[i] = TOUPPER (opt->name[i]);
f3bad469 24894
ee065d83
PB
24895 selected_cpu_name[i] = 0;
24896 }
e74cfd16 24897 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24898 *input_line_pointer = saved_char;
24899 demand_empty_rest_of_line ();
24900 return;
24901 }
24902 as_bad (_("unknown cpu `%s'"), name);
24903 *input_line_pointer = saved_char;
24904 ignore_rest_of_line ();
24905}
24906
24907
24908/* Parse a .arch directive. */
24909
24910static void
24911s_arm_arch (int ignored ATTRIBUTE_UNUSED)
24912{
e74cfd16 24913 const struct arm_arch_option_table *opt;
ee065d83
PB
24914 char saved_char;
24915 char *name;
24916
24917 name = input_line_pointer;
5f4273c7 24918 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
24919 input_line_pointer++;
24920 saved_char = *input_line_pointer;
24921 *input_line_pointer = 0;
24922
24923 /* Skip the first "all" entry. */
24924 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24925 if (streq (opt->name, name))
24926 {
e74cfd16
PB
24927 mcpu_cpu_opt = &opt->value;
24928 selected_cpu = opt->value;
5f4273c7 24929 strcpy (selected_cpu_name, opt->name);
e74cfd16 24930 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
24931 *input_line_pointer = saved_char;
24932 demand_empty_rest_of_line ();
24933 return;
24934 }
24935
24936 as_bad (_("unknown architecture `%s'\n"), name);
24937 *input_line_pointer = saved_char;
24938 ignore_rest_of_line ();
24939}
24940
24941
7a1d4c38
PB
24942/* Parse a .object_arch directive. */
24943
24944static void
24945s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
24946{
24947 const struct arm_arch_option_table *opt;
24948 char saved_char;
24949 char *name;
24950
24951 name = input_line_pointer;
5f4273c7 24952 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
7a1d4c38
PB
24953 input_line_pointer++;
24954 saved_char = *input_line_pointer;
24955 *input_line_pointer = 0;
24956
24957 /* Skip the first "all" entry. */
24958 for (opt = arm_archs + 1; opt->name != NULL; opt++)
24959 if (streq (opt->name, name))
24960 {
24961 object_arch = &opt->value;
24962 *input_line_pointer = saved_char;
24963 demand_empty_rest_of_line ();
24964 return;
24965 }
24966
24967 as_bad (_("unknown architecture `%s'\n"), name);
24968 *input_line_pointer = saved_char;
24969 ignore_rest_of_line ();
24970}
24971
69133863
MGD
24972/* Parse a .arch_extension directive. */
24973
24974static void
24975s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
24976{
24977 const struct arm_option_extension_value_table *opt;
24978 char saved_char;
24979 char *name;
24980 int adding_value = 1;
24981
24982 name = input_line_pointer;
24983 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
24984 input_line_pointer++;
24985 saved_char = *input_line_pointer;
24986 *input_line_pointer = 0;
24987
24988 if (strlen (name) >= 2
24989 && strncmp (name, "no", 2) == 0)
24990 {
24991 adding_value = 0;
24992 name += 2;
24993 }
24994
24995 for (opt = arm_extensions; opt->name != NULL; opt++)
24996 if (streq (opt->name, name))
24997 {
24998 if (!ARM_CPU_HAS_FEATURE (*mcpu_cpu_opt, opt->allowed_archs))
24999 {
25000 as_bad (_("architectural extension `%s' is not allowed for the "
25001 "current base architecture"), name);
25002 break;
25003 }
25004
25005 if (adding_value)
25006 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu, opt->value);
25007 else
25008 ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->value);
25009
25010 mcpu_cpu_opt = &selected_cpu;
25011 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
25012 *input_line_pointer = saved_char;
25013 demand_empty_rest_of_line ();
25014 return;
25015 }
25016
25017 if (opt->name == NULL)
25018 as_bad (_("unknown architecture `%s'\n"), name);
25019
25020 *input_line_pointer = saved_char;
25021 ignore_rest_of_line ();
25022}
25023
ee065d83
PB
25024/* Parse a .fpu directive. */
25025
25026static void
25027s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
25028{
69133863 25029 const struct arm_option_fpu_value_table *opt;
ee065d83
PB
25030 char saved_char;
25031 char *name;
25032
25033 name = input_line_pointer;
5f4273c7 25034 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
25035 input_line_pointer++;
25036 saved_char = *input_line_pointer;
25037 *input_line_pointer = 0;
5f4273c7 25038
ee065d83
PB
25039 for (opt = arm_fpus; opt->name != NULL; opt++)
25040 if (streq (opt->name, name))
25041 {
e74cfd16
PB
25042 mfpu_opt = &opt->value;
25043 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
25044 *input_line_pointer = saved_char;
25045 demand_empty_rest_of_line ();
25046 return;
25047 }
25048
25049 as_bad (_("unknown floating point format `%s'\n"), name);
25050 *input_line_pointer = saved_char;
25051 ignore_rest_of_line ();
25052}
ee065d83 25053
794ba86a 25054/* Copy symbol information. */
f31fef98 25055
794ba86a
DJ
25056void
25057arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
25058{
25059 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
25060}
e04befd0 25061
f31fef98 25062#ifdef OBJ_ELF
e04befd0
AS
25063/* Given a symbolic attribute NAME, return the proper integer value.
25064 Returns -1 if the attribute is not known. */
f31fef98 25065
e04befd0
AS
25066int
25067arm_convert_symbolic_attribute (const char *name)
25068{
f31fef98
NC
25069 static const struct
25070 {
25071 const char * name;
25072 const int tag;
25073 }
25074 attribute_table[] =
25075 {
25076 /* When you modify this table you should
25077 also modify the list in doc/c-arm.texi. */
e04befd0 25078#define T(tag) {#tag, tag}
f31fef98
NC
25079 T (Tag_CPU_raw_name),
25080 T (Tag_CPU_name),
25081 T (Tag_CPU_arch),
25082 T (Tag_CPU_arch_profile),
25083 T (Tag_ARM_ISA_use),
25084 T (Tag_THUMB_ISA_use),
75375b3e 25085 T (Tag_FP_arch),
f31fef98
NC
25086 T (Tag_VFP_arch),
25087 T (Tag_WMMX_arch),
25088 T (Tag_Advanced_SIMD_arch),
25089 T (Tag_PCS_config),
25090 T (Tag_ABI_PCS_R9_use),
25091 T (Tag_ABI_PCS_RW_data),
25092 T (Tag_ABI_PCS_RO_data),
25093 T (Tag_ABI_PCS_GOT_use),
25094 T (Tag_ABI_PCS_wchar_t),
25095 T (Tag_ABI_FP_rounding),
25096 T (Tag_ABI_FP_denormal),
25097 T (Tag_ABI_FP_exceptions),
25098 T (Tag_ABI_FP_user_exceptions),
25099 T (Tag_ABI_FP_number_model),
75375b3e 25100 T (Tag_ABI_align_needed),
f31fef98 25101 T (Tag_ABI_align8_needed),
75375b3e 25102 T (Tag_ABI_align_preserved),
f31fef98
NC
25103 T (Tag_ABI_align8_preserved),
25104 T (Tag_ABI_enum_size),
25105 T (Tag_ABI_HardFP_use),
25106 T (Tag_ABI_VFP_args),
25107 T (Tag_ABI_WMMX_args),
25108 T (Tag_ABI_optimization_goals),
25109 T (Tag_ABI_FP_optimization_goals),
25110 T (Tag_compatibility),
25111 T (Tag_CPU_unaligned_access),
75375b3e 25112 T (Tag_FP_HP_extension),
f31fef98
NC
25113 T (Tag_VFP_HP_extension),
25114 T (Tag_ABI_FP_16bit_format),
cd21e546
MGD
25115 T (Tag_MPextension_use),
25116 T (Tag_DIV_use),
f31fef98
NC
25117 T (Tag_nodefaults),
25118 T (Tag_also_compatible_with),
25119 T (Tag_conformance),
25120 T (Tag_T2EE_use),
25121 T (Tag_Virtualization_use),
cd21e546 25122 /* We deliberately do not include Tag_MPextension_use_legacy. */
e04befd0 25123#undef T
f31fef98 25124 };
e04befd0
AS
25125 unsigned int i;
25126
25127 if (name == NULL)
25128 return -1;
25129
f31fef98 25130 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
c921be7d 25131 if (streq (name, attribute_table[i].name))
e04befd0
AS
25132 return attribute_table[i].tag;
25133
25134 return -1;
25135}
267bf995
RR
25136
25137
25138/* Apply sym value for relocations only in the case that
25139 they are for local symbols and you have the respective
25140 architectural feature for blx and simple switches. */
25141int
25142arm_apply_sym_value (struct fix * fixP)
25143{
25144 if (fixP->fx_addsy
25145 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
34e77a92 25146 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
267bf995
RR
25147 {
25148 switch (fixP->fx_r_type)
25149 {
25150 case BFD_RELOC_ARM_PCREL_BLX:
25151 case BFD_RELOC_THUMB_PCREL_BRANCH23:
25152 if (ARM_IS_FUNC (fixP->fx_addsy))
25153 return 1;
25154 break;
25155
25156 case BFD_RELOC_ARM_PCREL_CALL:
25157 case BFD_RELOC_THUMB_PCREL_BLX:
25158 if (THUMB_IS_FUNC (fixP->fx_addsy))
25159 return 1;
25160 break;
25161
25162 default:
25163 break;
25164 }
25165
25166 }
25167 return 0;
25168}
f31fef98 25169#endif /* OBJ_ELF */
This page took 2.96589 seconds and 4 git commands to generate.