]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-arm.c
PR gas/3165
[thirdparty/binutils-gdb.git] / gas / config / tc-arm.c
CommitLineData
b99bd4ef 1/* tc-arm.c -- Assemble for the ARM
f17c130b 2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
ebd1c875 3 2004, 2005, 2006
b99bd4ef
NC
4 Free Software Foundation, Inc.
5 Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
6 Modified by David Taylor (dtaylor@armltd.co.uk)
22d9c8c5 7 Cirrus coprocessor mods by Aldy Hernandez (aldyh@redhat.com)
34920d91
NC
8 Cirrus coprocessor fixes by Petko Manolov (petkan@nucleusys.com)
9 Cirrus coprocessor fixes by Vladimir Ivanov (vladitx@nucleusys.com)
b99bd4ef
NC
10
11 This file is part of GAS, the GNU Assembler.
12
13 GAS is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2, or (at your option)
16 any later version.
17
18 GAS is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
c19d1205 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b99bd4ef
NC
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with GAS; see the file COPYING. If not, write to the Free
699d2810
NC
25 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
26 02110-1301, USA. */
b99bd4ef 27
5287ad62 28#include <limits.h>
037e8744 29#include <stdarg.h>
c19d1205 30#define NO_RELOC 0
b99bd4ef 31#include "as.h"
3882b010 32#include "safe-ctype.h"
b99bd4ef
NC
33#include "subsegs.h"
34#include "obstack.h"
b99bd4ef 35
f263249b
RE
36#include "opcode/arm.h"
37
b99bd4ef
NC
38#ifdef OBJ_ELF
39#include "elf/arm.h"
a394c00f 40#include "dw2gencfi.h"
b99bd4ef
NC
41#endif
42
f0927246
NC
43#include "dwarf2dbg.h"
44
720abc60 45#define WARN_DEPRECATED 1
03b1477f 46
7ed4c4c5
NC
47#ifdef OBJ_ELF
48/* Must be at least the size of the largest unwind opcode (currently two). */
49#define ARM_OPCODE_CHUNK_SIZE 8
50
51/* This structure holds the unwinding state. */
52
53static struct
54{
c19d1205
ZW
55 symbolS * proc_start;
56 symbolS * table_entry;
57 symbolS * personality_routine;
58 int personality_index;
7ed4c4c5 59 /* The segment containing the function. */
c19d1205
ZW
60 segT saved_seg;
61 subsegT saved_subseg;
7ed4c4c5
NC
62 /* Opcodes generated from this function. */
63 unsigned char * opcodes;
c19d1205
ZW
64 int opcode_count;
65 int opcode_alloc;
7ed4c4c5 66 /* The number of bytes pushed to the stack. */
c19d1205 67 offsetT frame_size;
7ed4c4c5
NC
68 /* We don't add stack adjustment opcodes immediately so that we can merge
69 multiple adjustments. We can also omit the final adjustment
70 when using a frame pointer. */
c19d1205 71 offsetT pending_offset;
7ed4c4c5 72 /* These two fields are set by both unwind_movsp and unwind_setfp. They
c19d1205
ZW
73 hold the reg+offset to use when restoring sp from a frame pointer. */
74 offsetT fp_offset;
75 int fp_reg;
7ed4c4c5 76 /* Nonzero if an unwind_setfp directive has been seen. */
c19d1205 77 unsigned fp_used:1;
7ed4c4c5 78 /* Nonzero if the last opcode restores sp from fp_reg. */
c19d1205 79 unsigned sp_restored:1;
7ed4c4c5
NC
80} unwind;
81
8b1ad454
NC
82/* Bit N indicates that an R_ARM_NONE relocation has been output for
83 __aeabi_unwind_cpp_prN already if set. This enables dependencies to be
84 emitted only once per section, to save unnecessary bloat. */
85static unsigned int marked_pr_dependency = 0;
86
87#endif /* OBJ_ELF */
88
4962c51a
MS
89/* Results from operand parsing worker functions. */
90
91typedef enum
92{
93 PARSE_OPERAND_SUCCESS,
94 PARSE_OPERAND_FAIL,
95 PARSE_OPERAND_FAIL_NO_BACKTRACK
96} parse_operand_result;
97
33a392fb
PB
98enum arm_float_abi
99{
100 ARM_FLOAT_ABI_HARD,
101 ARM_FLOAT_ABI_SOFTFP,
102 ARM_FLOAT_ABI_SOFT
103};
104
c19d1205 105/* Types of processor to assemble for. */
b99bd4ef
NC
106#ifndef CPU_DEFAULT
107#if defined __XSCALE__
e74cfd16 108#define CPU_DEFAULT ARM_ARCH_XSCALE
b99bd4ef
NC
109#else
110#if defined __thumb__
e74cfd16 111#define CPU_DEFAULT ARM_ARCH_V5T
b99bd4ef
NC
112#endif
113#endif
114#endif
115
116#ifndef FPU_DEFAULT
c820d418
MM
117# ifdef TE_LINUX
118# define FPU_DEFAULT FPU_ARCH_FPA
119# elif defined (TE_NetBSD)
120# ifdef OBJ_ELF
121# define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, but VFP order. */
122# else
123 /* Legacy a.out format. */
124# define FPU_DEFAULT FPU_ARCH_FPA /* Soft-float, but FPA order. */
125# endif
4e7fd91e
PB
126# elif defined (TE_VXWORKS)
127# define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, VFP order. */
c820d418
MM
128# else
129 /* For backwards compatibility, default to FPA. */
130# define FPU_DEFAULT FPU_ARCH_FPA
131# endif
132#endif /* ifndef FPU_DEFAULT */
b99bd4ef 133
c19d1205 134#define streq(a, b) (strcmp (a, b) == 0)
b99bd4ef 135
e74cfd16
PB
136static arm_feature_set cpu_variant;
137static arm_feature_set arm_arch_used;
138static arm_feature_set thumb_arch_used;
b99bd4ef 139
b99bd4ef 140/* Flags stored in private area of BFD structure. */
c19d1205
ZW
141static int uses_apcs_26 = FALSE;
142static int atpcs = FALSE;
b34976b6
AM
143static int support_interwork = FALSE;
144static int uses_apcs_float = FALSE;
c19d1205 145static int pic_code = FALSE;
03b1477f
RE
146
147/* Variables that we set while parsing command-line options. Once all
148 options have been read we re-process these values to set the real
149 assembly flags. */
e74cfd16
PB
150static const arm_feature_set *legacy_cpu = NULL;
151static const arm_feature_set *legacy_fpu = NULL;
152
153static const arm_feature_set *mcpu_cpu_opt = NULL;
154static const arm_feature_set *mcpu_fpu_opt = NULL;
155static const arm_feature_set *march_cpu_opt = NULL;
156static const arm_feature_set *march_fpu_opt = NULL;
157static const arm_feature_set *mfpu_opt = NULL;
158
159/* Constants for known architecture features. */
160static const arm_feature_set fpu_default = FPU_DEFAULT;
161static const arm_feature_set fpu_arch_vfp_v1 = FPU_ARCH_VFP_V1;
162static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
5287ad62
JB
163static const arm_feature_set fpu_arch_vfp_v3 = FPU_ARCH_VFP_V3;
164static const arm_feature_set fpu_arch_neon_v1 = FPU_ARCH_NEON_V1;
e74cfd16
PB
165static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
166static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
167static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
168static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
169
170#ifdef CPU_DEFAULT
171static const arm_feature_set cpu_default = CPU_DEFAULT;
172#endif
173
174static const arm_feature_set arm_ext_v1 = ARM_FEATURE (ARM_EXT_V1, 0);
175static const arm_feature_set arm_ext_v2 = ARM_FEATURE (ARM_EXT_V1, 0);
176static const arm_feature_set arm_ext_v2s = ARM_FEATURE (ARM_EXT_V2S, 0);
177static const arm_feature_set arm_ext_v3 = ARM_FEATURE (ARM_EXT_V3, 0);
178static const arm_feature_set arm_ext_v3m = ARM_FEATURE (ARM_EXT_V3M, 0);
179static const arm_feature_set arm_ext_v4 = ARM_FEATURE (ARM_EXT_V4, 0);
180static const arm_feature_set arm_ext_v4t = ARM_FEATURE (ARM_EXT_V4T, 0);
181static const arm_feature_set arm_ext_v5 = ARM_FEATURE (ARM_EXT_V5, 0);
182static const arm_feature_set arm_ext_v4t_5 =
183 ARM_FEATURE (ARM_EXT_V4T | ARM_EXT_V5, 0);
184static const arm_feature_set arm_ext_v5t = ARM_FEATURE (ARM_EXT_V5T, 0);
185static const arm_feature_set arm_ext_v5e = ARM_FEATURE (ARM_EXT_V5E, 0);
186static const arm_feature_set arm_ext_v5exp = ARM_FEATURE (ARM_EXT_V5ExP, 0);
187static const arm_feature_set arm_ext_v5j = ARM_FEATURE (ARM_EXT_V5J, 0);
188static const arm_feature_set arm_ext_v6 = ARM_FEATURE (ARM_EXT_V6, 0);
189static const arm_feature_set arm_ext_v6k = ARM_FEATURE (ARM_EXT_V6K, 0);
190static const arm_feature_set arm_ext_v6z = ARM_FEATURE (ARM_EXT_V6Z, 0);
191static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE (ARM_EXT_V6T2, 0);
62b3e311
PB
192static const arm_feature_set arm_ext_v6_notm = ARM_FEATURE (ARM_EXT_V6_NOTM, 0);
193static const arm_feature_set arm_ext_div = ARM_FEATURE (ARM_EXT_DIV, 0);
194static const arm_feature_set arm_ext_v7 = ARM_FEATURE (ARM_EXT_V7, 0);
195static const arm_feature_set arm_ext_v7a = ARM_FEATURE (ARM_EXT_V7A, 0);
196static const arm_feature_set arm_ext_v7r = ARM_FEATURE (ARM_EXT_V7R, 0);
197static const arm_feature_set arm_ext_v7m = ARM_FEATURE (ARM_EXT_V7M, 0);
e74cfd16
PB
198
199static const arm_feature_set arm_arch_any = ARM_ANY;
200static const arm_feature_set arm_arch_full = ARM_FEATURE (-1, -1);
201static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
202static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
203
204static const arm_feature_set arm_cext_iwmmxt =
205 ARM_FEATURE (0, ARM_CEXT_IWMMXT);
206static const arm_feature_set arm_cext_xscale =
207 ARM_FEATURE (0, ARM_CEXT_XSCALE);
208static const arm_feature_set arm_cext_maverick =
209 ARM_FEATURE (0, ARM_CEXT_MAVERICK);
210static const arm_feature_set fpu_fpa_ext_v1 = ARM_FEATURE (0, FPU_FPA_EXT_V1);
211static const arm_feature_set fpu_fpa_ext_v2 = ARM_FEATURE (0, FPU_FPA_EXT_V2);
212static const arm_feature_set fpu_vfp_ext_v1xd =
213 ARM_FEATURE (0, FPU_VFP_EXT_V1xD);
214static const arm_feature_set fpu_vfp_ext_v1 = ARM_FEATURE (0, FPU_VFP_EXT_V1);
215static const arm_feature_set fpu_vfp_ext_v2 = ARM_FEATURE (0, FPU_VFP_EXT_V2);
5287ad62
JB
216static const arm_feature_set fpu_vfp_ext_v3 = ARM_FEATURE (0, FPU_VFP_EXT_V3);
217static const arm_feature_set fpu_neon_ext_v1 = ARM_FEATURE (0, FPU_NEON_EXT_V1);
218static const arm_feature_set fpu_vfp_v3_or_neon_ext =
219 ARM_FEATURE (0, FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
e74cfd16 220
33a392fb 221static int mfloat_abi_opt = -1;
e74cfd16
PB
222/* Record user cpu selection for object attributes. */
223static arm_feature_set selected_cpu = ARM_ARCH_NONE;
ee065d83
PB
224/* Must be long enough to hold any of the names in arm_cpus. */
225static char selected_cpu_name[16];
7cc69913 226#ifdef OBJ_ELF
deeaaff8
DJ
227# ifdef EABI_DEFAULT
228static int meabi_flags = EABI_DEFAULT;
229# else
d507cf36 230static int meabi_flags = EF_ARM_EABI_UNKNOWN;
deeaaff8 231# endif
7cc69913 232#endif
b99bd4ef 233
b99bd4ef 234#ifdef OBJ_ELF
c19d1205 235/* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
b99bd4ef
NC
236symbolS * GOT_symbol;
237#endif
238
b99bd4ef
NC
239/* 0: assemble for ARM,
240 1: assemble for Thumb,
241 2: assemble for Thumb even though target CPU does not support thumb
242 instructions. */
243static int thumb_mode = 0;
244
c19d1205
ZW
245/* If unified_syntax is true, we are processing the new unified
246 ARM/Thumb syntax. Important differences from the old ARM mode:
247
248 - Immediate operands do not require a # prefix.
249 - Conditional affixes always appear at the end of the
250 instruction. (For backward compatibility, those instructions
251 that formerly had them in the middle, continue to accept them
252 there.)
253 - The IT instruction may appear, and if it does is validated
254 against subsequent conditional affixes. It does not generate
255 machine code.
256
257 Important differences from the old Thumb mode:
258
259 - Immediate operands do not require a # prefix.
260 - Most of the V6T2 instructions are only available in unified mode.
261 - The .N and .W suffixes are recognized and honored (it is an error
262 if they cannot be honored).
263 - All instructions set the flags if and only if they have an 's' affix.
264 - Conditional affixes may be used. They are validated against
265 preceding IT instructions. Unlike ARM mode, you cannot use a
266 conditional affix except in the scope of an IT instruction. */
267
268static bfd_boolean unified_syntax = FALSE;
b99bd4ef 269
5287ad62
JB
270enum neon_el_type
271{
dcbf9037 272 NT_invtype,
5287ad62
JB
273 NT_untyped,
274 NT_integer,
275 NT_float,
276 NT_poly,
277 NT_signed,
dcbf9037 278 NT_unsigned
5287ad62
JB
279};
280
281struct neon_type_el
282{
283 enum neon_el_type type;
284 unsigned size;
285};
286
287#define NEON_MAX_TYPE_ELS 4
288
289struct neon_type
290{
291 struct neon_type_el el[NEON_MAX_TYPE_ELS];
292 unsigned elems;
293};
294
b99bd4ef
NC
295struct arm_it
296{
c19d1205 297 const char * error;
b99bd4ef 298 unsigned long instruction;
c19d1205
ZW
299 int size;
300 int size_req;
301 int cond;
037e8744
JB
302 /* "uncond_value" is set to the value in place of the conditional field in
303 unconditional versions of the instruction, or -1 if nothing is
304 appropriate. */
305 int uncond_value;
5287ad62 306 struct neon_type vectype;
0110f2b8
PB
307 /* Set to the opcode if the instruction needs relaxation.
308 Zero if the instruction is not relaxed. */
309 unsigned long relax;
b99bd4ef
NC
310 struct
311 {
312 bfd_reloc_code_real_type type;
c19d1205
ZW
313 expressionS exp;
314 int pc_rel;
b99bd4ef 315 } reloc;
b99bd4ef 316
c19d1205
ZW
317 struct
318 {
319 unsigned reg;
ca3f61f7 320 signed int imm;
dcbf9037 321 struct neon_type_el vectype;
ca3f61f7
NC
322 unsigned present : 1; /* Operand present. */
323 unsigned isreg : 1; /* Operand was a register. */
324 unsigned immisreg : 1; /* .imm field is a second register. */
5287ad62
JB
325 unsigned isscalar : 1; /* Operand is a (Neon) scalar. */
326 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
327 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
328 instructions. This allows us to disambiguate ARM <-> vector insns. */
329 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
037e8744 330 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
5287ad62 331 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
037e8744 332 unsigned issingle : 1; /* Operand is VFP single-precision register. */
ca3f61f7
NC
333 unsigned hasreloc : 1; /* Operand has relocation suffix. */
334 unsigned writeback : 1; /* Operand has trailing ! */
335 unsigned preind : 1; /* Preindexed address. */
336 unsigned postind : 1; /* Postindexed address. */
337 unsigned negative : 1; /* Index register was negated. */
338 unsigned shifted : 1; /* Shift applied to operation. */
339 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
c19d1205 340 } operands[6];
b99bd4ef
NC
341};
342
c19d1205 343static struct arm_it inst;
b99bd4ef
NC
344
345#define NUM_FLOAT_VALS 8
346
05d2d07e 347const char * fp_const[] =
b99bd4ef
NC
348{
349 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
350};
351
c19d1205 352/* Number of littlenums required to hold an extended precision number. */
b99bd4ef
NC
353#define MAX_LITTLENUMS 6
354
355LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
356
357#define FAIL (-1)
358#define SUCCESS (0)
359
360#define SUFF_S 1
361#define SUFF_D 2
362#define SUFF_E 3
363#define SUFF_P 4
364
c19d1205
ZW
365#define CP_T_X 0x00008000
366#define CP_T_Y 0x00400000
b99bd4ef 367
c19d1205
ZW
368#define CONDS_BIT 0x00100000
369#define LOAD_BIT 0x00100000
b99bd4ef
NC
370
371#define DOUBLE_LOAD_FLAG 0x00000001
372
373struct asm_cond
374{
c19d1205 375 const char * template;
b99bd4ef
NC
376 unsigned long value;
377};
378
c19d1205 379#define COND_ALWAYS 0xE
b99bd4ef 380
b99bd4ef
NC
381struct asm_psr
382{
b34976b6 383 const char *template;
b99bd4ef
NC
384 unsigned long field;
385};
386
62b3e311
PB
387struct asm_barrier_opt
388{
389 const char *template;
390 unsigned long value;
391};
392
2d2255b5 393/* The bit that distinguishes CPSR and SPSR. */
b99bd4ef
NC
394#define SPSR_BIT (1 << 22)
395
c19d1205
ZW
396/* The individual PSR flag bits. */
397#define PSR_c (1 << 16)
398#define PSR_x (1 << 17)
399#define PSR_s (1 << 18)
400#define PSR_f (1 << 19)
b99bd4ef 401
c19d1205 402struct reloc_entry
bfae80f2 403{
c19d1205
ZW
404 char *name;
405 bfd_reloc_code_real_type reloc;
bfae80f2
RE
406};
407
5287ad62 408enum vfp_reg_pos
bfae80f2 409{
5287ad62
JB
410 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
411 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
bfae80f2
RE
412};
413
414enum vfp_ldstm_type
415{
416 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
417};
418
dcbf9037
JB
419/* Bits for DEFINED field in neon_typed_alias. */
420#define NTA_HASTYPE 1
421#define NTA_HASINDEX 2
422
423struct neon_typed_alias
424{
425 unsigned char defined;
426 unsigned char index;
427 struct neon_type_el eltype;
428};
429
c19d1205
ZW
430/* ARM register categories. This includes coprocessor numbers and various
431 architecture extensions' registers. */
432enum arm_reg_type
bfae80f2 433{
c19d1205
ZW
434 REG_TYPE_RN,
435 REG_TYPE_CP,
436 REG_TYPE_CN,
437 REG_TYPE_FN,
438 REG_TYPE_VFS,
439 REG_TYPE_VFD,
5287ad62 440 REG_TYPE_NQ,
037e8744 441 REG_TYPE_VFSD,
5287ad62 442 REG_TYPE_NDQ,
037e8744 443 REG_TYPE_NSDQ,
c19d1205
ZW
444 REG_TYPE_VFC,
445 REG_TYPE_MVF,
446 REG_TYPE_MVD,
447 REG_TYPE_MVFX,
448 REG_TYPE_MVDX,
449 REG_TYPE_MVAX,
450 REG_TYPE_DSPSC,
451 REG_TYPE_MMXWR,
452 REG_TYPE_MMXWC,
453 REG_TYPE_MMXWCG,
454 REG_TYPE_XSCALE,
bfae80f2
RE
455};
456
dcbf9037
JB
457/* Structure for a hash table entry for a register.
458 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
459 information which states whether a vector type or index is specified (for a
460 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
6c43fab6
RE
461struct reg_entry
462{
dcbf9037
JB
463 const char *name;
464 unsigned char number;
465 unsigned char type;
466 unsigned char builtin;
467 struct neon_typed_alias *neon;
6c43fab6
RE
468};
469
c19d1205
ZW
470/* Diagnostics used when we don't get a register of the expected type. */
471const char *const reg_expected_msgs[] =
472{
473 N_("ARM register expected"),
474 N_("bad or missing co-processor number"),
475 N_("co-processor register expected"),
476 N_("FPA register expected"),
477 N_("VFP single precision register expected"),
5287ad62
JB
478 N_("VFP/Neon double precision register expected"),
479 N_("Neon quad precision register expected"),
037e8744 480 N_("VFP single or double precision register expected"),
5287ad62 481 N_("Neon double or quad precision register expected"),
037e8744 482 N_("VFP single, double or Neon quad precision register expected"),
c19d1205
ZW
483 N_("VFP system register expected"),
484 N_("Maverick MVF register expected"),
485 N_("Maverick MVD register expected"),
486 N_("Maverick MVFX register expected"),
487 N_("Maverick MVDX register expected"),
488 N_("Maverick MVAX register expected"),
489 N_("Maverick DSPSC register expected"),
490 N_("iWMMXt data register expected"),
491 N_("iWMMXt control register expected"),
492 N_("iWMMXt scalar register expected"),
493 N_("XScale accumulator register expected"),
6c43fab6
RE
494};
495
c19d1205
ZW
496/* Some well known registers that we refer to directly elsewhere. */
497#define REG_SP 13
498#define REG_LR 14
499#define REG_PC 15
404ff6b5 500
b99bd4ef
NC
501/* ARM instructions take 4bytes in the object file, Thumb instructions
502 take 2: */
c19d1205 503#define INSN_SIZE 4
b99bd4ef
NC
504
505struct asm_opcode
506{
507 /* Basic string to match. */
c19d1205
ZW
508 const char *template;
509
510 /* Parameters to instruction. */
511 unsigned char operands[8];
512
513 /* Conditional tag - see opcode_lookup. */
514 unsigned int tag : 4;
b99bd4ef
NC
515
516 /* Basic instruction code. */
c19d1205 517 unsigned int avalue : 28;
b99bd4ef 518
c19d1205
ZW
519 /* Thumb-format instruction code. */
520 unsigned int tvalue;
b99bd4ef 521
90e4755a 522 /* Which architecture variant provides this instruction. */
e74cfd16
PB
523 const arm_feature_set *avariant;
524 const arm_feature_set *tvariant;
c19d1205
ZW
525
526 /* Function to call to encode instruction in ARM format. */
527 void (* aencode) (void);
b99bd4ef 528
c19d1205
ZW
529 /* Function to call to encode instruction in Thumb format. */
530 void (* tencode) (void);
b99bd4ef
NC
531};
532
a737bd4d
NC
533/* Defines for various bits that we will want to toggle. */
534#define INST_IMMEDIATE 0x02000000
535#define OFFSET_REG 0x02000000
c19d1205 536#define HWOFFSET_IMM 0x00400000
a737bd4d
NC
537#define SHIFT_BY_REG 0x00000010
538#define PRE_INDEX 0x01000000
539#define INDEX_UP 0x00800000
540#define WRITE_BACK 0x00200000
541#define LDM_TYPE_2_OR_3 0x00400000
90e4755a 542
a737bd4d
NC
543#define LITERAL_MASK 0xf000f000
544#define OPCODE_MASK 0xfe1fffff
545#define V4_STR_BIT 0x00000020
90e4755a 546
a737bd4d 547#define DATA_OP_SHIFT 21
90e4755a 548
ef8d22e6
PB
549#define T2_OPCODE_MASK 0xfe1fffff
550#define T2_DATA_OP_SHIFT 21
551
a737bd4d
NC
552/* Codes to distinguish the arithmetic instructions. */
553#define OPCODE_AND 0
554#define OPCODE_EOR 1
555#define OPCODE_SUB 2
556#define OPCODE_RSB 3
557#define OPCODE_ADD 4
558#define OPCODE_ADC 5
559#define OPCODE_SBC 6
560#define OPCODE_RSC 7
561#define OPCODE_TST 8
562#define OPCODE_TEQ 9
563#define OPCODE_CMP 10
564#define OPCODE_CMN 11
565#define OPCODE_ORR 12
566#define OPCODE_MOV 13
567#define OPCODE_BIC 14
568#define OPCODE_MVN 15
90e4755a 569
ef8d22e6
PB
570#define T2_OPCODE_AND 0
571#define T2_OPCODE_BIC 1
572#define T2_OPCODE_ORR 2
573#define T2_OPCODE_ORN 3
574#define T2_OPCODE_EOR 4
575#define T2_OPCODE_ADD 8
576#define T2_OPCODE_ADC 10
577#define T2_OPCODE_SBC 11
578#define T2_OPCODE_SUB 13
579#define T2_OPCODE_RSB 14
580
a737bd4d
NC
581#define T_OPCODE_MUL 0x4340
582#define T_OPCODE_TST 0x4200
583#define T_OPCODE_CMN 0x42c0
584#define T_OPCODE_NEG 0x4240
585#define T_OPCODE_MVN 0x43c0
90e4755a 586
a737bd4d
NC
587#define T_OPCODE_ADD_R3 0x1800
588#define T_OPCODE_SUB_R3 0x1a00
589#define T_OPCODE_ADD_HI 0x4400
590#define T_OPCODE_ADD_ST 0xb000
591#define T_OPCODE_SUB_ST 0xb080
592#define T_OPCODE_ADD_SP 0xa800
593#define T_OPCODE_ADD_PC 0xa000
594#define T_OPCODE_ADD_I8 0x3000
595#define T_OPCODE_SUB_I8 0x3800
596#define T_OPCODE_ADD_I3 0x1c00
597#define T_OPCODE_SUB_I3 0x1e00
b99bd4ef 598
a737bd4d
NC
599#define T_OPCODE_ASR_R 0x4100
600#define T_OPCODE_LSL_R 0x4080
c19d1205
ZW
601#define T_OPCODE_LSR_R 0x40c0
602#define T_OPCODE_ROR_R 0x41c0
a737bd4d
NC
603#define T_OPCODE_ASR_I 0x1000
604#define T_OPCODE_LSL_I 0x0000
605#define T_OPCODE_LSR_I 0x0800
b99bd4ef 606
a737bd4d
NC
607#define T_OPCODE_MOV_I8 0x2000
608#define T_OPCODE_CMP_I8 0x2800
609#define T_OPCODE_CMP_LR 0x4280
610#define T_OPCODE_MOV_HR 0x4600
611#define T_OPCODE_CMP_HR 0x4500
b99bd4ef 612
a737bd4d
NC
613#define T_OPCODE_LDR_PC 0x4800
614#define T_OPCODE_LDR_SP 0x9800
615#define T_OPCODE_STR_SP 0x9000
616#define T_OPCODE_LDR_IW 0x6800
617#define T_OPCODE_STR_IW 0x6000
618#define T_OPCODE_LDR_IH 0x8800
619#define T_OPCODE_STR_IH 0x8000
620#define T_OPCODE_LDR_IB 0x7800
621#define T_OPCODE_STR_IB 0x7000
622#define T_OPCODE_LDR_RW 0x5800
623#define T_OPCODE_STR_RW 0x5000
624#define T_OPCODE_LDR_RH 0x5a00
625#define T_OPCODE_STR_RH 0x5200
626#define T_OPCODE_LDR_RB 0x5c00
627#define T_OPCODE_STR_RB 0x5400
c9b604bd 628
a737bd4d
NC
629#define T_OPCODE_PUSH 0xb400
630#define T_OPCODE_POP 0xbc00
b99bd4ef 631
2fc8bdac 632#define T_OPCODE_BRANCH 0xe000
b99bd4ef 633
a737bd4d 634#define THUMB_SIZE 2 /* Size of thumb instruction. */
a737bd4d 635#define THUMB_PP_PC_LR 0x0100
c19d1205 636#define THUMB_LOAD_BIT 0x0800
53365c0d 637#define THUMB2_LOAD_BIT 0x00100000
c19d1205
ZW
638
639#define BAD_ARGS _("bad arguments to instruction")
640#define BAD_PC _("r15 not allowed here")
641#define BAD_COND _("instruction cannot be conditional")
642#define BAD_OVERLAP _("registers may not be the same")
643#define BAD_HIREG _("lo register required")
644#define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
01cfc07f 645#define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
dfa9f0d5
PB
646#define BAD_BRANCH _("branch must be last instruction in IT block")
647#define BAD_NOT_IT _("instruction not allowed in IT block")
037e8744 648#define BAD_FPU _("selected FPU does not support instruction")
c19d1205
ZW
649
650static struct hash_control *arm_ops_hsh;
651static struct hash_control *arm_cond_hsh;
652static struct hash_control *arm_shift_hsh;
653static struct hash_control *arm_psr_hsh;
62b3e311 654static struct hash_control *arm_v7m_psr_hsh;
c19d1205
ZW
655static struct hash_control *arm_reg_hsh;
656static struct hash_control *arm_reloc_hsh;
62b3e311 657static struct hash_control *arm_barrier_opt_hsh;
b99bd4ef 658
b99bd4ef
NC
659/* Stuff needed to resolve the label ambiguity
660 As:
661 ...
662 label: <insn>
663 may differ from:
664 ...
665 label:
c19d1205 666 <insn>
b99bd4ef
NC
667*/
668
669symbolS * last_label_seen;
b34976b6 670static int label_is_thumb_function_name = FALSE;
a737bd4d 671\f
3d0c9500
NC
672/* Literal pool structure. Held on a per-section
673 and per-sub-section basis. */
a737bd4d 674
c19d1205 675#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 676typedef struct literal_pool
b99bd4ef 677{
c19d1205
ZW
678 expressionS literals [MAX_LITERAL_POOL_SIZE];
679 unsigned int next_free_entry;
680 unsigned int id;
681 symbolS * symbol;
682 segT section;
683 subsegT sub_section;
61b5f74b 684 struct literal_pool * next;
3d0c9500 685} literal_pool;
b99bd4ef 686
3d0c9500
NC
687/* Pointer to a linked list of literal pools. */
688literal_pool * list_of_pools = NULL;
e27ec89e
PB
689
690/* State variables for IT block handling. */
691static bfd_boolean current_it_mask = 0;
692static int current_cc;
693
c19d1205
ZW
694\f
695/* Pure syntax. */
b99bd4ef 696
c19d1205
ZW
697/* This array holds the chars that always start a comment. If the
698 pre-processor is disabled, these aren't very useful. */
699const char comment_chars[] = "@";
3d0c9500 700
c19d1205
ZW
701/* This array holds the chars that only start a comment at the beginning of
702 a line. If the line seems to have the form '# 123 filename'
703 .line and .file directives will appear in the pre-processed output. */
704/* Note that input_file.c hand checks for '#' at the beginning of the
705 first line of the input file. This is because the compiler outputs
706 #NO_APP at the beginning of its output. */
707/* Also note that comments like this one will always work. */
708const char line_comment_chars[] = "#";
3d0c9500 709
c19d1205 710const char line_separator_chars[] = ";";
b99bd4ef 711
c19d1205
ZW
712/* Chars that can be used to separate mant
713 from exp in floating point numbers. */
714const char EXP_CHARS[] = "eE";
3d0c9500 715
c19d1205
ZW
716/* Chars that mean this number is a floating point constant. */
717/* As in 0f12.456 */
718/* or 0d1.2345e12 */
b99bd4ef 719
c19d1205 720const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 721
c19d1205
ZW
722/* Prefix characters that indicate the start of an immediate
723 value. */
724#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 725
c19d1205
ZW
726/* Separator character handling. */
727
728#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
729
730static inline int
731skip_past_char (char ** str, char c)
732{
733 if (**str == c)
734 {
735 (*str)++;
736 return SUCCESS;
3d0c9500 737 }
c19d1205
ZW
738 else
739 return FAIL;
740}
741#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 742
c19d1205
ZW
743/* Arithmetic expressions (possibly involving symbols). */
744
745/* Return TRUE if anything in the expression is a bignum. */
746
747static int
748walk_no_bignums (symbolS * sp)
749{
750 if (symbol_get_value_expression (sp)->X_op == O_big)
751 return 1;
752
753 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 754 {
c19d1205
ZW
755 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
756 || (symbol_get_value_expression (sp)->X_op_symbol
757 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
758 }
759
c19d1205 760 return 0;
3d0c9500
NC
761}
762
c19d1205
ZW
763static int in_my_get_expression = 0;
764
765/* Third argument to my_get_expression. */
766#define GE_NO_PREFIX 0
767#define GE_IMM_PREFIX 1
768#define GE_OPT_PREFIX 2
5287ad62
JB
769/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
770 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
771#define GE_OPT_PREFIX_BIG 3
a737bd4d 772
b99bd4ef 773static int
c19d1205 774my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 775{
c19d1205
ZW
776 char * save_in;
777 segT seg;
b99bd4ef 778
c19d1205
ZW
779 /* In unified syntax, all prefixes are optional. */
780 if (unified_syntax)
5287ad62
JB
781 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
782 : GE_OPT_PREFIX;
b99bd4ef 783
c19d1205 784 switch (prefix_mode)
b99bd4ef 785 {
c19d1205
ZW
786 case GE_NO_PREFIX: break;
787 case GE_IMM_PREFIX:
788 if (!is_immediate_prefix (**str))
789 {
790 inst.error = _("immediate expression requires a # prefix");
791 return FAIL;
792 }
793 (*str)++;
794 break;
795 case GE_OPT_PREFIX:
5287ad62 796 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
797 if (is_immediate_prefix (**str))
798 (*str)++;
799 break;
800 default: abort ();
801 }
b99bd4ef 802
c19d1205 803 memset (ep, 0, sizeof (expressionS));
b99bd4ef 804
c19d1205
ZW
805 save_in = input_line_pointer;
806 input_line_pointer = *str;
807 in_my_get_expression = 1;
808 seg = expression (ep);
809 in_my_get_expression = 0;
810
811 if (ep->X_op == O_illegal)
b99bd4ef 812 {
c19d1205
ZW
813 /* We found a bad expression in md_operand(). */
814 *str = input_line_pointer;
815 input_line_pointer = save_in;
816 if (inst.error == NULL)
817 inst.error = _("bad expression");
818 return 1;
819 }
b99bd4ef 820
c19d1205
ZW
821#ifdef OBJ_AOUT
822 if (seg != absolute_section
823 && seg != text_section
824 && seg != data_section
825 && seg != bss_section
826 && seg != undefined_section)
827 {
828 inst.error = _("bad segment");
829 *str = input_line_pointer;
830 input_line_pointer = save_in;
831 return 1;
b99bd4ef 832 }
c19d1205 833#endif
b99bd4ef 834
c19d1205
ZW
835 /* Get rid of any bignums now, so that we don't generate an error for which
836 we can't establish a line number later on. Big numbers are never valid
837 in instructions, which is where this routine is always called. */
5287ad62
JB
838 if (prefix_mode != GE_OPT_PREFIX_BIG
839 && (ep->X_op == O_big
840 || (ep->X_add_symbol
841 && (walk_no_bignums (ep->X_add_symbol)
842 || (ep->X_op_symbol
843 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
844 {
845 inst.error = _("invalid constant");
846 *str = input_line_pointer;
847 input_line_pointer = save_in;
848 return 1;
849 }
b99bd4ef 850
c19d1205
ZW
851 *str = input_line_pointer;
852 input_line_pointer = save_in;
853 return 0;
b99bd4ef
NC
854}
855
c19d1205
ZW
856/* Turn a string in input_line_pointer into a floating point constant
857 of type TYPE, and store the appropriate bytes in *LITP. The number
858 of LITTLENUMS emitted is stored in *SIZEP. An error message is
859 returned, or NULL on OK.
b99bd4ef 860
c19d1205
ZW
861 Note that fp constants aren't represent in the normal way on the ARM.
862 In big endian mode, things are as expected. However, in little endian
863 mode fp constants are big-endian word-wise, and little-endian byte-wise
864 within the words. For example, (double) 1.1 in big endian mode is
865 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
866 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 867
c19d1205 868 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 869
c19d1205
ZW
870char *
871md_atof (int type, char * litP, int * sizeP)
872{
873 int prec;
874 LITTLENUM_TYPE words[MAX_LITTLENUMS];
875 char *t;
876 int i;
b99bd4ef 877
c19d1205
ZW
878 switch (type)
879 {
880 case 'f':
881 case 'F':
882 case 's':
883 case 'S':
884 prec = 2;
885 break;
b99bd4ef 886
c19d1205
ZW
887 case 'd':
888 case 'D':
889 case 'r':
890 case 'R':
891 prec = 4;
892 break;
b99bd4ef 893
c19d1205
ZW
894 case 'x':
895 case 'X':
896 prec = 6;
897 break;
b99bd4ef 898
c19d1205
ZW
899 case 'p':
900 case 'P':
901 prec = 6;
902 break;
a737bd4d 903
c19d1205
ZW
904 default:
905 *sizeP = 0;
906 return _("bad call to MD_ATOF()");
907 }
b99bd4ef 908
c19d1205
ZW
909 t = atof_ieee (input_line_pointer, type, words);
910 if (t)
911 input_line_pointer = t;
912 *sizeP = prec * 2;
b99bd4ef 913
c19d1205
ZW
914 if (target_big_endian)
915 {
916 for (i = 0; i < prec; i++)
917 {
918 md_number_to_chars (litP, (valueT) words[i], 2);
919 litP += 2;
920 }
921 }
922 else
923 {
e74cfd16 924 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
925 for (i = prec - 1; i >= 0; i--)
926 {
927 md_number_to_chars (litP, (valueT) words[i], 2);
928 litP += 2;
929 }
930 else
931 /* For a 4 byte float the order of elements in `words' is 1 0.
932 For an 8 byte float the order is 1 0 3 2. */
933 for (i = 0; i < prec; i += 2)
934 {
935 md_number_to_chars (litP, (valueT) words[i + 1], 2);
936 md_number_to_chars (litP + 2, (valueT) words[i], 2);
937 litP += 4;
938 }
939 }
b99bd4ef 940
c19d1205
ZW
941 return 0;
942}
b99bd4ef 943
c19d1205
ZW
944/* We handle all bad expressions here, so that we can report the faulty
945 instruction in the error message. */
946void
947md_operand (expressionS * expr)
948{
949 if (in_my_get_expression)
950 expr->X_op = O_illegal;
b99bd4ef
NC
951}
952
c19d1205 953/* Immediate values. */
b99bd4ef 954
c19d1205
ZW
955/* Generic immediate-value read function for use in directives.
956 Accepts anything that 'expression' can fold to a constant.
957 *val receives the number. */
958#ifdef OBJ_ELF
959static int
960immediate_for_directive (int *val)
b99bd4ef 961{
c19d1205
ZW
962 expressionS exp;
963 exp.X_op = O_illegal;
b99bd4ef 964
c19d1205
ZW
965 if (is_immediate_prefix (*input_line_pointer))
966 {
967 input_line_pointer++;
968 expression (&exp);
969 }
b99bd4ef 970
c19d1205
ZW
971 if (exp.X_op != O_constant)
972 {
973 as_bad (_("expected #constant"));
974 ignore_rest_of_line ();
975 return FAIL;
976 }
977 *val = exp.X_add_number;
978 return SUCCESS;
b99bd4ef 979}
c19d1205 980#endif
b99bd4ef 981
c19d1205 982/* Register parsing. */
b99bd4ef 983
c19d1205
ZW
984/* Generic register parser. CCP points to what should be the
985 beginning of a register name. If it is indeed a valid register
986 name, advance CCP over it and return the reg_entry structure;
987 otherwise return NULL. Does not issue diagnostics. */
988
989static struct reg_entry *
990arm_reg_parse_multi (char **ccp)
b99bd4ef 991{
c19d1205
ZW
992 char *start = *ccp;
993 char *p;
994 struct reg_entry *reg;
b99bd4ef 995
c19d1205
ZW
996#ifdef REGISTER_PREFIX
997 if (*start != REGISTER_PREFIX)
01cfc07f 998 return NULL;
c19d1205
ZW
999 start++;
1000#endif
1001#ifdef OPTIONAL_REGISTER_PREFIX
1002 if (*start == OPTIONAL_REGISTER_PREFIX)
1003 start++;
1004#endif
b99bd4ef 1005
c19d1205
ZW
1006 p = start;
1007 if (!ISALPHA (*p) || !is_name_beginner (*p))
1008 return NULL;
b99bd4ef 1009
c19d1205
ZW
1010 do
1011 p++;
1012 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1013
1014 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1015
1016 if (!reg)
1017 return NULL;
1018
1019 *ccp = p;
1020 return reg;
b99bd4ef
NC
1021}
1022
1023static int
dcbf9037
JB
1024arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
1025 enum arm_reg_type type)
b99bd4ef 1026{
c19d1205
ZW
1027 /* Alternative syntaxes are accepted for a few register classes. */
1028 switch (type)
1029 {
1030 case REG_TYPE_MVF:
1031 case REG_TYPE_MVD:
1032 case REG_TYPE_MVFX:
1033 case REG_TYPE_MVDX:
1034 /* Generic coprocessor register names are allowed for these. */
79134647 1035 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1036 return reg->number;
1037 break;
69b97547 1038
c19d1205
ZW
1039 case REG_TYPE_CP:
1040 /* For backward compatibility, a bare number is valid here. */
1041 {
1042 unsigned long processor = strtoul (start, ccp, 10);
1043 if (*ccp != start && processor <= 15)
1044 return processor;
1045 }
6057a28f 1046
c19d1205
ZW
1047 case REG_TYPE_MMXWC:
1048 /* WC includes WCG. ??? I'm not sure this is true for all
1049 instructions that take WC registers. */
79134647 1050 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1051 return reg->number;
6057a28f 1052 break;
c19d1205 1053
6057a28f 1054 default:
c19d1205 1055 break;
6057a28f
NC
1056 }
1057
dcbf9037
JB
1058 return FAIL;
1059}
1060
1061/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1062 return value is the register number or FAIL. */
1063
1064static int
1065arm_reg_parse (char **ccp, enum arm_reg_type type)
1066{
1067 char *start = *ccp;
1068 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1069 int ret;
1070
1071 /* Do not allow a scalar (reg+index) to parse as a register. */
1072 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1073 return FAIL;
1074
1075 if (reg && reg->type == type)
1076 return reg->number;
1077
1078 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1079 return ret;
1080
c19d1205
ZW
1081 *ccp = start;
1082 return FAIL;
1083}
69b97547 1084
dcbf9037
JB
1085/* Parse a Neon type specifier. *STR should point at the leading '.'
1086 character. Does no verification at this stage that the type fits the opcode
1087 properly. E.g.,
1088
1089 .i32.i32.s16
1090 .s32.f32
1091 .u16
1092
1093 Can all be legally parsed by this function.
1094
1095 Fills in neon_type struct pointer with parsed information, and updates STR
1096 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1097 type, FAIL if not. */
1098
1099static int
1100parse_neon_type (struct neon_type *type, char **str)
1101{
1102 char *ptr = *str;
1103
1104 if (type)
1105 type->elems = 0;
1106
1107 while (type->elems < NEON_MAX_TYPE_ELS)
1108 {
1109 enum neon_el_type thistype = NT_untyped;
1110 unsigned thissize = -1u;
1111
1112 if (*ptr != '.')
1113 break;
1114
1115 ptr++;
1116
1117 /* Just a size without an explicit type. */
1118 if (ISDIGIT (*ptr))
1119 goto parsesize;
1120
1121 switch (TOLOWER (*ptr))
1122 {
1123 case 'i': thistype = NT_integer; break;
1124 case 'f': thistype = NT_float; break;
1125 case 'p': thistype = NT_poly; break;
1126 case 's': thistype = NT_signed; break;
1127 case 'u': thistype = NT_unsigned; break;
037e8744
JB
1128 case 'd':
1129 thistype = NT_float;
1130 thissize = 64;
1131 ptr++;
1132 goto done;
dcbf9037
JB
1133 default:
1134 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1135 return FAIL;
1136 }
1137
1138 ptr++;
1139
1140 /* .f is an abbreviation for .f32. */
1141 if (thistype == NT_float && !ISDIGIT (*ptr))
1142 thissize = 32;
1143 else
1144 {
1145 parsesize:
1146 thissize = strtoul (ptr, &ptr, 10);
1147
1148 if (thissize != 8 && thissize != 16 && thissize != 32
1149 && thissize != 64)
1150 {
1151 as_bad (_("bad size %d in type specifier"), thissize);
1152 return FAIL;
1153 }
1154 }
1155
037e8744 1156 done:
dcbf9037
JB
1157 if (type)
1158 {
1159 type->el[type->elems].type = thistype;
1160 type->el[type->elems].size = thissize;
1161 type->elems++;
1162 }
1163 }
1164
1165 /* Empty/missing type is not a successful parse. */
1166 if (type->elems == 0)
1167 return FAIL;
1168
1169 *str = ptr;
1170
1171 return SUCCESS;
1172}
1173
1174/* Errors may be set multiple times during parsing or bit encoding
1175 (particularly in the Neon bits), but usually the earliest error which is set
1176 will be the most meaningful. Avoid overwriting it with later (cascading)
1177 errors by calling this function. */
1178
1179static void
1180first_error (const char *err)
1181{
1182 if (!inst.error)
1183 inst.error = err;
1184}
1185
1186/* Parse a single type, e.g. ".s32", leading period included. */
1187static int
1188parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1189{
1190 char *str = *ccp;
1191 struct neon_type optype;
1192
1193 if (*str == '.')
1194 {
1195 if (parse_neon_type (&optype, &str) == SUCCESS)
1196 {
1197 if (optype.elems == 1)
1198 *vectype = optype.el[0];
1199 else
1200 {
1201 first_error (_("only one type should be specified for operand"));
1202 return FAIL;
1203 }
1204 }
1205 else
1206 {
1207 first_error (_("vector type expected"));
1208 return FAIL;
1209 }
1210 }
1211 else
1212 return FAIL;
1213
1214 *ccp = str;
1215
1216 return SUCCESS;
1217}
1218
1219/* Special meanings for indices (which have a range of 0-7), which will fit into
1220 a 4-bit integer. */
1221
1222#define NEON_ALL_LANES 15
1223#define NEON_INTERLEAVE_LANES 14
1224
1225/* Parse either a register or a scalar, with an optional type. Return the
1226 register number, and optionally fill in the actual type of the register
1227 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1228 type/index information in *TYPEINFO. */
1229
1230static int
1231parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
1232 enum arm_reg_type *rtype,
1233 struct neon_typed_alias *typeinfo)
1234{
1235 char *str = *ccp;
1236 struct reg_entry *reg = arm_reg_parse_multi (&str);
1237 struct neon_typed_alias atype;
1238 struct neon_type_el parsetype;
1239
1240 atype.defined = 0;
1241 atype.index = -1;
1242 atype.eltype.type = NT_invtype;
1243 atype.eltype.size = -1;
1244
1245 /* Try alternate syntax for some types of register. Note these are mutually
1246 exclusive with the Neon syntax extensions. */
1247 if (reg == NULL)
1248 {
1249 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1250 if (altreg != FAIL)
1251 *ccp = str;
1252 if (typeinfo)
1253 *typeinfo = atype;
1254 return altreg;
1255 }
1256
037e8744
JB
1257 /* Undo polymorphism when a set of register types may be accepted. */
1258 if ((type == REG_TYPE_NDQ
1259 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1260 || (type == REG_TYPE_VFSD
1261 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1262 || (type == REG_TYPE_NSDQ
1263 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
1264 || reg->type == REG_TYPE_NQ)))
dcbf9037
JB
1265 type = reg->type;
1266
1267 if (type != reg->type)
1268 return FAIL;
1269
1270 if (reg->neon)
1271 atype = *reg->neon;
1272
1273 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1274 {
1275 if ((atype.defined & NTA_HASTYPE) != 0)
1276 {
1277 first_error (_("can't redefine type for operand"));
1278 return FAIL;
1279 }
1280 atype.defined |= NTA_HASTYPE;
1281 atype.eltype = parsetype;
1282 }
1283
1284 if (skip_past_char (&str, '[') == SUCCESS)
1285 {
1286 if (type != REG_TYPE_VFD)
1287 {
1288 first_error (_("only D registers may be indexed"));
1289 return FAIL;
1290 }
1291
1292 if ((atype.defined & NTA_HASINDEX) != 0)
1293 {
1294 first_error (_("can't change index for operand"));
1295 return FAIL;
1296 }
1297
1298 atype.defined |= NTA_HASINDEX;
1299
1300 if (skip_past_char (&str, ']') == SUCCESS)
1301 atype.index = NEON_ALL_LANES;
1302 else
1303 {
1304 expressionS exp;
1305
1306 my_get_expression (&exp, &str, GE_NO_PREFIX);
1307
1308 if (exp.X_op != O_constant)
1309 {
1310 first_error (_("constant expression required"));
1311 return FAIL;
1312 }
1313
1314 if (skip_past_char (&str, ']') == FAIL)
1315 return FAIL;
1316
1317 atype.index = exp.X_add_number;
1318 }
1319 }
1320
1321 if (typeinfo)
1322 *typeinfo = atype;
1323
1324 if (rtype)
1325 *rtype = type;
1326
1327 *ccp = str;
1328
1329 return reg->number;
1330}
1331
1332/* Like arm_reg_parse, but allow allow the following extra features:
1333 - If RTYPE is non-zero, return the (possibly restricted) type of the
1334 register (e.g. Neon double or quad reg when either has been requested).
1335 - If this is a Neon vector type with additional type information, fill
1336 in the struct pointed to by VECTYPE (if non-NULL).
1337 This function will fault on encountering a scalar.
1338*/
1339
1340static int
1341arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
1342 enum arm_reg_type *rtype, struct neon_type_el *vectype)
1343{
1344 struct neon_typed_alias atype;
1345 char *str = *ccp;
1346 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1347
1348 if (reg == FAIL)
1349 return FAIL;
1350
1351 /* Do not allow a scalar (reg+index) to parse as a register. */
1352 if ((atype.defined & NTA_HASINDEX) != 0)
1353 {
1354 first_error (_("register operand expected, but got scalar"));
1355 return FAIL;
1356 }
1357
1358 if (vectype)
1359 *vectype = atype.eltype;
1360
1361 *ccp = str;
1362
1363 return reg;
1364}
1365
1366#define NEON_SCALAR_REG(X) ((X) >> 4)
1367#define NEON_SCALAR_INDEX(X) ((X) & 15)
1368
5287ad62
JB
1369/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1370 have enough information to be able to do a good job bounds-checking. So, we
1371 just do easy checks here, and do further checks later. */
1372
1373static int
dcbf9037 1374parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1375{
dcbf9037 1376 int reg;
5287ad62 1377 char *str = *ccp;
dcbf9037 1378 struct neon_typed_alias atype;
5287ad62 1379
dcbf9037 1380 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5287ad62 1381
dcbf9037 1382 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62
JB
1383 return FAIL;
1384
dcbf9037 1385 if (atype.index == NEON_ALL_LANES)
5287ad62 1386 {
dcbf9037 1387 first_error (_("scalar must have an index"));
5287ad62
JB
1388 return FAIL;
1389 }
dcbf9037 1390 else if (atype.index >= 64 / elsize)
5287ad62 1391 {
dcbf9037 1392 first_error (_("scalar index out of range"));
5287ad62
JB
1393 return FAIL;
1394 }
1395
dcbf9037
JB
1396 if (type)
1397 *type = atype.eltype;
5287ad62 1398
5287ad62
JB
1399 *ccp = str;
1400
dcbf9037 1401 return reg * 16 + atype.index;
5287ad62
JB
1402}
1403
c19d1205
ZW
1404/* Parse an ARM register list. Returns the bitmask, or FAIL. */
1405static long
1406parse_reg_list (char ** strp)
1407{
1408 char * str = * strp;
1409 long range = 0;
1410 int another_range;
a737bd4d 1411
c19d1205
ZW
1412 /* We come back here if we get ranges concatenated by '+' or '|'. */
1413 do
6057a28f 1414 {
c19d1205 1415 another_range = 0;
a737bd4d 1416
c19d1205
ZW
1417 if (*str == '{')
1418 {
1419 int in_range = 0;
1420 int cur_reg = -1;
a737bd4d 1421
c19d1205
ZW
1422 str++;
1423 do
1424 {
1425 int reg;
6057a28f 1426
dcbf9037 1427 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1428 {
dcbf9037 1429 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1430 return FAIL;
1431 }
a737bd4d 1432
c19d1205
ZW
1433 if (in_range)
1434 {
1435 int i;
a737bd4d 1436
c19d1205
ZW
1437 if (reg <= cur_reg)
1438 {
dcbf9037 1439 first_error (_("bad range in register list"));
c19d1205
ZW
1440 return FAIL;
1441 }
40a18ebd 1442
c19d1205
ZW
1443 for (i = cur_reg + 1; i < reg; i++)
1444 {
1445 if (range & (1 << i))
1446 as_tsktsk
1447 (_("Warning: duplicated register (r%d) in register list"),
1448 i);
1449 else
1450 range |= 1 << i;
1451 }
1452 in_range = 0;
1453 }
a737bd4d 1454
c19d1205
ZW
1455 if (range & (1 << reg))
1456 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1457 reg);
1458 else if (reg <= cur_reg)
1459 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1460
c19d1205
ZW
1461 range |= 1 << reg;
1462 cur_reg = reg;
1463 }
1464 while (skip_past_comma (&str) != FAIL
1465 || (in_range = 1, *str++ == '-'));
1466 str--;
a737bd4d 1467
c19d1205
ZW
1468 if (*str++ != '}')
1469 {
dcbf9037 1470 first_error (_("missing `}'"));
c19d1205
ZW
1471 return FAIL;
1472 }
1473 }
1474 else
1475 {
1476 expressionS expr;
40a18ebd 1477
c19d1205
ZW
1478 if (my_get_expression (&expr, &str, GE_NO_PREFIX))
1479 return FAIL;
40a18ebd 1480
c19d1205
ZW
1481 if (expr.X_op == O_constant)
1482 {
1483 if (expr.X_add_number
1484 != (expr.X_add_number & 0x0000ffff))
1485 {
1486 inst.error = _("invalid register mask");
1487 return FAIL;
1488 }
a737bd4d 1489
c19d1205
ZW
1490 if ((range & expr.X_add_number) != 0)
1491 {
1492 int regno = range & expr.X_add_number;
a737bd4d 1493
c19d1205
ZW
1494 regno &= -regno;
1495 regno = (1 << regno) - 1;
1496 as_tsktsk
1497 (_("Warning: duplicated register (r%d) in register list"),
1498 regno);
1499 }
a737bd4d 1500
c19d1205
ZW
1501 range |= expr.X_add_number;
1502 }
1503 else
1504 {
1505 if (inst.reloc.type != 0)
1506 {
1507 inst.error = _("expression too complex");
1508 return FAIL;
1509 }
a737bd4d 1510
c19d1205
ZW
1511 memcpy (&inst.reloc.exp, &expr, sizeof (expressionS));
1512 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1513 inst.reloc.pc_rel = 0;
1514 }
1515 }
a737bd4d 1516
c19d1205
ZW
1517 if (*str == '|' || *str == '+')
1518 {
1519 str++;
1520 another_range = 1;
1521 }
a737bd4d 1522 }
c19d1205 1523 while (another_range);
a737bd4d 1524
c19d1205
ZW
1525 *strp = str;
1526 return range;
a737bd4d
NC
1527}
1528
5287ad62
JB
1529/* Types of registers in a list. */
1530
1531enum reg_list_els
1532{
1533 REGLIST_VFP_S,
1534 REGLIST_VFP_D,
1535 REGLIST_NEON_D
1536};
1537
c19d1205
ZW
1538/* Parse a VFP register list. If the string is invalid return FAIL.
1539 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1540 register. Parses registers of type ETYPE.
1541 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1542 - Q registers can be used to specify pairs of D registers
1543 - { } can be omitted from around a singleton register list
1544 FIXME: This is not implemented, as it would require backtracking in
1545 some cases, e.g.:
1546 vtbl.8 d3,d4,d5
1547 This could be done (the meaning isn't really ambiguous), but doesn't
1548 fit in well with the current parsing framework.
dcbf9037
JB
1549 - 32 D registers may be used (also true for VFPv3).
1550 FIXME: Types are ignored in these register lists, which is probably a
1551 bug. */
6057a28f 1552
c19d1205 1553static int
037e8744 1554parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1555{
037e8744 1556 char *str = *ccp;
c19d1205
ZW
1557 int base_reg;
1558 int new_base;
5287ad62
JB
1559 enum arm_reg_type regtype = 0;
1560 int max_regs = 0;
c19d1205
ZW
1561 int count = 0;
1562 int warned = 0;
1563 unsigned long mask = 0;
a737bd4d 1564 int i;
6057a28f 1565
037e8744 1566 if (*str != '{')
5287ad62
JB
1567 {
1568 inst.error = _("expecting {");
1569 return FAIL;
1570 }
6057a28f 1571
037e8744 1572 str++;
6057a28f 1573
5287ad62 1574 switch (etype)
c19d1205 1575 {
5287ad62 1576 case REGLIST_VFP_S:
c19d1205
ZW
1577 regtype = REG_TYPE_VFS;
1578 max_regs = 32;
5287ad62
JB
1579 break;
1580
1581 case REGLIST_VFP_D:
1582 regtype = REG_TYPE_VFD;
b7fc2769
JB
1583 break;
1584
1585 case REGLIST_NEON_D:
1586 regtype = REG_TYPE_NDQ;
1587 break;
1588 }
1589
1590 if (etype != REGLIST_VFP_S)
1591 {
5287ad62
JB
1592 /* VFPv3 allows 32 D registers. */
1593 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3))
1594 {
1595 max_regs = 32;
1596 if (thumb_mode)
1597 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
1598 fpu_vfp_ext_v3);
1599 else
1600 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
1601 fpu_vfp_ext_v3);
1602 }
1603 else
1604 max_regs = 16;
c19d1205 1605 }
6057a28f 1606
c19d1205 1607 base_reg = max_regs;
a737bd4d 1608
c19d1205
ZW
1609 do
1610 {
5287ad62 1611 int setmask = 1, addregs = 1;
dcbf9037 1612
037e8744 1613 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1614
c19d1205 1615 if (new_base == FAIL)
a737bd4d 1616 {
dcbf9037 1617 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1618 return FAIL;
1619 }
dcbf9037 1620
b7fc2769
JB
1621 if (new_base >= max_regs)
1622 {
1623 first_error (_("register out of range in list"));
1624 return FAIL;
1625 }
1626
5287ad62
JB
1627 /* Note: a value of 2 * n is returned for the register Q<n>. */
1628 if (regtype == REG_TYPE_NQ)
1629 {
1630 setmask = 3;
1631 addregs = 2;
1632 }
1633
c19d1205
ZW
1634 if (new_base < base_reg)
1635 base_reg = new_base;
a737bd4d 1636
5287ad62 1637 if (mask & (setmask << new_base))
c19d1205 1638 {
dcbf9037 1639 first_error (_("invalid register list"));
c19d1205 1640 return FAIL;
a737bd4d 1641 }
a737bd4d 1642
c19d1205
ZW
1643 if ((mask >> new_base) != 0 && ! warned)
1644 {
1645 as_tsktsk (_("register list not in ascending order"));
1646 warned = 1;
1647 }
0bbf2aa4 1648
5287ad62
JB
1649 mask |= setmask << new_base;
1650 count += addregs;
0bbf2aa4 1651
037e8744 1652 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1653 {
1654 int high_range;
0bbf2aa4 1655
037e8744 1656 str++;
0bbf2aa4 1657
037e8744 1658 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
dcbf9037 1659 == FAIL)
c19d1205
ZW
1660 {
1661 inst.error = gettext (reg_expected_msgs[regtype]);
1662 return FAIL;
1663 }
0bbf2aa4 1664
b7fc2769
JB
1665 if (high_range >= max_regs)
1666 {
1667 first_error (_("register out of range in list"));
1668 return FAIL;
1669 }
1670
5287ad62
JB
1671 if (regtype == REG_TYPE_NQ)
1672 high_range = high_range + 1;
1673
c19d1205
ZW
1674 if (high_range <= new_base)
1675 {
1676 inst.error = _("register range not in ascending order");
1677 return FAIL;
1678 }
0bbf2aa4 1679
5287ad62 1680 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1681 {
5287ad62 1682 if (mask & (setmask << new_base))
0bbf2aa4 1683 {
c19d1205
ZW
1684 inst.error = _("invalid register list");
1685 return FAIL;
0bbf2aa4 1686 }
c19d1205 1687
5287ad62
JB
1688 mask |= setmask << new_base;
1689 count += addregs;
0bbf2aa4 1690 }
0bbf2aa4 1691 }
0bbf2aa4 1692 }
037e8744 1693 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1694
037e8744 1695 str++;
0bbf2aa4 1696
c19d1205
ZW
1697 /* Sanity check -- should have raised a parse error above. */
1698 if (count == 0 || count > max_regs)
1699 abort ();
1700
1701 *pbase = base_reg;
1702
1703 /* Final test -- the registers must be consecutive. */
1704 mask >>= base_reg;
1705 for (i = 0; i < count; i++)
1706 {
1707 if ((mask & (1u << i)) == 0)
1708 {
1709 inst.error = _("non-contiguous register range");
1710 return FAIL;
1711 }
1712 }
1713
037e8744
JB
1714 *ccp = str;
1715
c19d1205 1716 return count;
b99bd4ef
NC
1717}
1718
dcbf9037
JB
1719/* True if two alias types are the same. */
1720
1721static int
1722neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1723{
1724 if (!a && !b)
1725 return 1;
1726
1727 if (!a || !b)
1728 return 0;
1729
1730 if (a->defined != b->defined)
1731 return 0;
1732
1733 if ((a->defined & NTA_HASTYPE) != 0
1734 && (a->eltype.type != b->eltype.type
1735 || a->eltype.size != b->eltype.size))
1736 return 0;
1737
1738 if ((a->defined & NTA_HASINDEX) != 0
1739 && (a->index != b->index))
1740 return 0;
1741
1742 return 1;
1743}
1744
5287ad62
JB
1745/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1746 The base register is put in *PBASE.
dcbf9037 1747 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1748 the return value.
1749 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1750 Bits [6:5] encode the list length (minus one).
1751 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1752
5287ad62 1753#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1754#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1755#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1756
1757static int
dcbf9037
JB
1758parse_neon_el_struct_list (char **str, unsigned *pbase,
1759 struct neon_type_el *eltype)
5287ad62
JB
1760{
1761 char *ptr = *str;
1762 int base_reg = -1;
1763 int reg_incr = -1;
1764 int count = 0;
1765 int lane = -1;
1766 int leading_brace = 0;
1767 enum arm_reg_type rtype = REG_TYPE_NDQ;
1768 int addregs = 1;
1769 const char *const incr_error = "register stride must be 1 or 2";
1770 const char *const type_error = "mismatched element/structure types in list";
dcbf9037 1771 struct neon_typed_alias firsttype;
5287ad62
JB
1772
1773 if (skip_past_char (&ptr, '{') == SUCCESS)
1774 leading_brace = 1;
1775
1776 do
1777 {
dcbf9037
JB
1778 struct neon_typed_alias atype;
1779 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
1780
5287ad62
JB
1781 if (getreg == FAIL)
1782 {
dcbf9037 1783 first_error (_(reg_expected_msgs[rtype]));
5287ad62
JB
1784 return FAIL;
1785 }
1786
1787 if (base_reg == -1)
1788 {
1789 base_reg = getreg;
1790 if (rtype == REG_TYPE_NQ)
1791 {
1792 reg_incr = 1;
1793 addregs = 2;
1794 }
dcbf9037 1795 firsttype = atype;
5287ad62
JB
1796 }
1797 else if (reg_incr == -1)
1798 {
1799 reg_incr = getreg - base_reg;
1800 if (reg_incr < 1 || reg_incr > 2)
1801 {
dcbf9037 1802 first_error (_(incr_error));
5287ad62
JB
1803 return FAIL;
1804 }
1805 }
1806 else if (getreg != base_reg + reg_incr * count)
1807 {
dcbf9037
JB
1808 first_error (_(incr_error));
1809 return FAIL;
1810 }
1811
1812 if (!neon_alias_types_same (&atype, &firsttype))
1813 {
1814 first_error (_(type_error));
5287ad62
JB
1815 return FAIL;
1816 }
1817
1818 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
1819 modes. */
1820 if (ptr[0] == '-')
1821 {
dcbf9037 1822 struct neon_typed_alias htype;
5287ad62
JB
1823 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
1824 if (lane == -1)
1825 lane = NEON_INTERLEAVE_LANES;
1826 else if (lane != NEON_INTERLEAVE_LANES)
1827 {
dcbf9037 1828 first_error (_(type_error));
5287ad62
JB
1829 return FAIL;
1830 }
1831 if (reg_incr == -1)
1832 reg_incr = 1;
1833 else if (reg_incr != 1)
1834 {
dcbf9037 1835 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
5287ad62
JB
1836 return FAIL;
1837 }
1838 ptr++;
dcbf9037 1839 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
5287ad62
JB
1840 if (hireg == FAIL)
1841 {
dcbf9037
JB
1842 first_error (_(reg_expected_msgs[rtype]));
1843 return FAIL;
1844 }
1845 if (!neon_alias_types_same (&htype, &firsttype))
1846 {
1847 first_error (_(type_error));
5287ad62
JB
1848 return FAIL;
1849 }
1850 count += hireg + dregs - getreg;
1851 continue;
1852 }
1853
1854 /* If we're using Q registers, we can't use [] or [n] syntax. */
1855 if (rtype == REG_TYPE_NQ)
1856 {
1857 count += 2;
1858 continue;
1859 }
1860
dcbf9037 1861 if ((atype.defined & NTA_HASINDEX) != 0)
5287ad62 1862 {
dcbf9037
JB
1863 if (lane == -1)
1864 lane = atype.index;
1865 else if (lane != atype.index)
5287ad62 1866 {
dcbf9037
JB
1867 first_error (_(type_error));
1868 return FAIL;
5287ad62
JB
1869 }
1870 }
1871 else if (lane == -1)
1872 lane = NEON_INTERLEAVE_LANES;
1873 else if (lane != NEON_INTERLEAVE_LANES)
1874 {
dcbf9037 1875 first_error (_(type_error));
5287ad62
JB
1876 return FAIL;
1877 }
1878 count++;
1879 }
1880 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
1881
1882 /* No lane set by [x]. We must be interleaving structures. */
1883 if (lane == -1)
1884 lane = NEON_INTERLEAVE_LANES;
1885
1886 /* Sanity check. */
1887 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
1888 || (count > 1 && reg_incr == -1))
1889 {
dcbf9037 1890 first_error (_("error parsing element/structure list"));
5287ad62
JB
1891 return FAIL;
1892 }
1893
1894 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
1895 {
dcbf9037 1896 first_error (_("expected }"));
5287ad62
JB
1897 return FAIL;
1898 }
1899
1900 if (reg_incr == -1)
1901 reg_incr = 1;
1902
dcbf9037
JB
1903 if (eltype)
1904 *eltype = firsttype.eltype;
1905
5287ad62
JB
1906 *pbase = base_reg;
1907 *str = ptr;
1908
1909 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
1910}
1911
c19d1205
ZW
1912/* Parse an explicit relocation suffix on an expression. This is
1913 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
1914 arm_reloc_hsh contains no entries, so this function can only
1915 succeed if there is no () after the word. Returns -1 on error,
1916 BFD_RELOC_UNUSED if there wasn't any suffix. */
1917static int
1918parse_reloc (char **str)
b99bd4ef 1919{
c19d1205
ZW
1920 struct reloc_entry *r;
1921 char *p, *q;
b99bd4ef 1922
c19d1205
ZW
1923 if (**str != '(')
1924 return BFD_RELOC_UNUSED;
b99bd4ef 1925
c19d1205
ZW
1926 p = *str + 1;
1927 q = p;
1928
1929 while (*q && *q != ')' && *q != ',')
1930 q++;
1931 if (*q != ')')
1932 return -1;
1933
1934 if ((r = hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
1935 return -1;
1936
1937 *str = q + 1;
1938 return r->reloc;
b99bd4ef
NC
1939}
1940
c19d1205
ZW
1941/* Directives: register aliases. */
1942
dcbf9037 1943static struct reg_entry *
c19d1205 1944insert_reg_alias (char *str, int number, int type)
b99bd4ef 1945{
c19d1205
ZW
1946 struct reg_entry *new;
1947 const char *name;
b99bd4ef 1948
c19d1205
ZW
1949 if ((new = hash_find (arm_reg_hsh, str)) != 0)
1950 {
1951 if (new->builtin)
1952 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 1953
c19d1205
ZW
1954 /* Only warn about a redefinition if it's not defined as the
1955 same register. */
1956 else if (new->number != number || new->type != type)
1957 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 1958
dcbf9037 1959 return 0;
c19d1205 1960 }
b99bd4ef 1961
c19d1205
ZW
1962 name = xstrdup (str);
1963 new = xmalloc (sizeof (struct reg_entry));
b99bd4ef 1964
c19d1205
ZW
1965 new->name = name;
1966 new->number = number;
1967 new->type = type;
1968 new->builtin = FALSE;
dcbf9037 1969 new->neon = NULL;
b99bd4ef 1970
c19d1205
ZW
1971 if (hash_insert (arm_reg_hsh, name, (PTR) new))
1972 abort ();
dcbf9037
JB
1973
1974 return new;
1975}
1976
1977static void
1978insert_neon_reg_alias (char *str, int number, int type,
1979 struct neon_typed_alias *atype)
1980{
1981 struct reg_entry *reg = insert_reg_alias (str, number, type);
1982
1983 if (!reg)
1984 {
1985 first_error (_("attempt to redefine typed alias"));
1986 return;
1987 }
1988
1989 if (atype)
1990 {
1991 reg->neon = xmalloc (sizeof (struct neon_typed_alias));
1992 *reg->neon = *atype;
1993 }
c19d1205 1994}
b99bd4ef 1995
c19d1205 1996/* Look for the .req directive. This is of the form:
b99bd4ef 1997
c19d1205 1998 new_register_name .req existing_register_name
b99bd4ef 1999
c19d1205
ZW
2000 If we find one, or if it looks sufficiently like one that we want to
2001 handle any error here, return non-zero. Otherwise return zero. */
b99bd4ef 2002
c19d1205
ZW
2003static int
2004create_register_alias (char * newname, char *p)
2005{
2006 struct reg_entry *old;
2007 char *oldname, *nbuf;
2008 size_t nlen;
b99bd4ef 2009
c19d1205
ZW
2010 /* The input scrubber ensures that whitespace after the mnemonic is
2011 collapsed to single spaces. */
2012 oldname = p;
2013 if (strncmp (oldname, " .req ", 6) != 0)
2014 return 0;
b99bd4ef 2015
c19d1205
ZW
2016 oldname += 6;
2017 if (*oldname == '\0')
2018 return 0;
b99bd4ef 2019
c19d1205
ZW
2020 old = hash_find (arm_reg_hsh, oldname);
2021 if (!old)
b99bd4ef 2022 {
c19d1205
ZW
2023 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
2024 return 1;
b99bd4ef
NC
2025 }
2026
c19d1205
ZW
2027 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2028 the desired alias name, and p points to its end. If not, then
2029 the desired alias name is in the global original_case_string. */
2030#ifdef TC_CASE_SENSITIVE
2031 nlen = p - newname;
2032#else
2033 newname = original_case_string;
2034 nlen = strlen (newname);
2035#endif
b99bd4ef 2036
c19d1205
ZW
2037 nbuf = alloca (nlen + 1);
2038 memcpy (nbuf, newname, nlen);
2039 nbuf[nlen] = '\0';
b99bd4ef 2040
c19d1205
ZW
2041 /* Create aliases under the new name as stated; an all-lowercase
2042 version of the new name; and an all-uppercase version of the new
2043 name. */
2044 insert_reg_alias (nbuf, old->number, old->type);
b99bd4ef 2045
c19d1205
ZW
2046 for (p = nbuf; *p; p++)
2047 *p = TOUPPER (*p);
2048
2049 if (strncmp (nbuf, newname, nlen))
2050 insert_reg_alias (nbuf, old->number, old->type);
2051
2052 for (p = nbuf; *p; p++)
2053 *p = TOLOWER (*p);
2054
2055 if (strncmp (nbuf, newname, nlen))
2056 insert_reg_alias (nbuf, old->number, old->type);
2057
2058 return 1;
b99bd4ef
NC
2059}
2060
dcbf9037
JB
2061/* Create a Neon typed/indexed register alias using directives, e.g.:
2062 X .dn d5.s32[1]
2063 Y .qn 6.s16
2064 Z .dn d7
2065 T .dn Z[0]
2066 These typed registers can be used instead of the types specified after the
2067 Neon mnemonic, so long as all operands given have types. Types can also be
2068 specified directly, e.g.:
2069 vadd d0.s32, d1.s32, d2.s32
2070*/
2071
2072static int
2073create_neon_reg_alias (char *newname, char *p)
2074{
2075 enum arm_reg_type basetype;
2076 struct reg_entry *basereg;
2077 struct reg_entry mybasereg;
2078 struct neon_type ntype;
2079 struct neon_typed_alias typeinfo;
2080 char *namebuf, *nameend;
2081 int namelen;
2082
2083 typeinfo.defined = 0;
2084 typeinfo.eltype.type = NT_invtype;
2085 typeinfo.eltype.size = -1;
2086 typeinfo.index = -1;
2087
2088 nameend = p;
2089
2090 if (strncmp (p, " .dn ", 5) == 0)
2091 basetype = REG_TYPE_VFD;
2092 else if (strncmp (p, " .qn ", 5) == 0)
2093 basetype = REG_TYPE_NQ;
2094 else
2095 return 0;
2096
2097 p += 5;
2098
2099 if (*p == '\0')
2100 return 0;
2101
2102 basereg = arm_reg_parse_multi (&p);
2103
2104 if (basereg && basereg->type != basetype)
2105 {
2106 as_bad (_("bad type for register"));
2107 return 0;
2108 }
2109
2110 if (basereg == NULL)
2111 {
2112 expressionS exp;
2113 /* Try parsing as an integer. */
2114 my_get_expression (&exp, &p, GE_NO_PREFIX);
2115 if (exp.X_op != O_constant)
2116 {
2117 as_bad (_("expression must be constant"));
2118 return 0;
2119 }
2120 basereg = &mybasereg;
2121 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
2122 : exp.X_add_number;
2123 basereg->neon = 0;
2124 }
2125
2126 if (basereg->neon)
2127 typeinfo = *basereg->neon;
2128
2129 if (parse_neon_type (&ntype, &p) == SUCCESS)
2130 {
2131 /* We got a type. */
2132 if (typeinfo.defined & NTA_HASTYPE)
2133 {
2134 as_bad (_("can't redefine the type of a register alias"));
2135 return 0;
2136 }
2137
2138 typeinfo.defined |= NTA_HASTYPE;
2139 if (ntype.elems != 1)
2140 {
2141 as_bad (_("you must specify a single type only"));
2142 return 0;
2143 }
2144 typeinfo.eltype = ntype.el[0];
2145 }
2146
2147 if (skip_past_char (&p, '[') == SUCCESS)
2148 {
2149 expressionS exp;
2150 /* We got a scalar index. */
2151
2152 if (typeinfo.defined & NTA_HASINDEX)
2153 {
2154 as_bad (_("can't redefine the index of a scalar alias"));
2155 return 0;
2156 }
2157
2158 my_get_expression (&exp, &p, GE_NO_PREFIX);
2159
2160 if (exp.X_op != O_constant)
2161 {
2162 as_bad (_("scalar index must be constant"));
2163 return 0;
2164 }
2165
2166 typeinfo.defined |= NTA_HASINDEX;
2167 typeinfo.index = exp.X_add_number;
2168
2169 if (skip_past_char (&p, ']') == FAIL)
2170 {
2171 as_bad (_("expecting ]"));
2172 return 0;
2173 }
2174 }
2175
2176 namelen = nameend - newname;
2177 namebuf = alloca (namelen + 1);
2178 strncpy (namebuf, newname, namelen);
2179 namebuf[namelen] = '\0';
2180
2181 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2182 typeinfo.defined != 0 ? &typeinfo : NULL);
2183
2184 /* Insert name in all uppercase. */
2185 for (p = namebuf; *p; p++)
2186 *p = TOUPPER (*p);
2187
2188 if (strncmp (namebuf, newname, namelen))
2189 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2190 typeinfo.defined != 0 ? &typeinfo : NULL);
2191
2192 /* Insert name in all lowercase. */
2193 for (p = namebuf; *p; p++)
2194 *p = TOLOWER (*p);
2195
2196 if (strncmp (namebuf, newname, namelen))
2197 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2198 typeinfo.defined != 0 ? &typeinfo : NULL);
2199
2200 return 1;
2201}
2202
c19d1205
ZW
2203/* Should never be called, as .req goes between the alias and the
2204 register name, not at the beginning of the line. */
b99bd4ef 2205static void
c19d1205 2206s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2207{
c19d1205
ZW
2208 as_bad (_("invalid syntax for .req directive"));
2209}
b99bd4ef 2210
dcbf9037
JB
2211static void
2212s_dn (int a ATTRIBUTE_UNUSED)
2213{
2214 as_bad (_("invalid syntax for .dn directive"));
2215}
2216
2217static void
2218s_qn (int a ATTRIBUTE_UNUSED)
2219{
2220 as_bad (_("invalid syntax for .qn directive"));
2221}
2222
c19d1205
ZW
2223/* The .unreq directive deletes an alias which was previously defined
2224 by .req. For example:
b99bd4ef 2225
c19d1205
ZW
2226 my_alias .req r11
2227 .unreq my_alias */
b99bd4ef
NC
2228
2229static void
c19d1205 2230s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2231{
c19d1205
ZW
2232 char * name;
2233 char saved_char;
b99bd4ef 2234
c19d1205
ZW
2235 name = input_line_pointer;
2236
2237 while (*input_line_pointer != 0
2238 && *input_line_pointer != ' '
2239 && *input_line_pointer != '\n')
2240 ++input_line_pointer;
2241
2242 saved_char = *input_line_pointer;
2243 *input_line_pointer = 0;
2244
2245 if (!*name)
2246 as_bad (_("invalid syntax for .unreq directive"));
2247 else
2248 {
2249 struct reg_entry *reg = hash_find (arm_reg_hsh, name);
2250
2251 if (!reg)
2252 as_bad (_("unknown register alias '%s'"), name);
2253 else if (reg->builtin)
2254 as_warn (_("ignoring attempt to undefine built-in register '%s'"),
2255 name);
2256 else
2257 {
2258 hash_delete (arm_reg_hsh, name);
2259 free ((char *) reg->name);
dcbf9037
JB
2260 if (reg->neon)
2261 free (reg->neon);
c19d1205
ZW
2262 free (reg);
2263 }
2264 }
b99bd4ef 2265
c19d1205 2266 *input_line_pointer = saved_char;
b99bd4ef
NC
2267 demand_empty_rest_of_line ();
2268}
2269
c19d1205
ZW
2270/* Directives: Instruction set selection. */
2271
2272#ifdef OBJ_ELF
2273/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2274 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2275 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2276 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2277
2278static enum mstate mapstate = MAP_UNDEFINED;
b99bd4ef
NC
2279
2280static void
c19d1205 2281mapping_state (enum mstate state)
b99bd4ef 2282{
a737bd4d 2283 symbolS * symbolP;
c19d1205
ZW
2284 const char * symname;
2285 int type;
b99bd4ef 2286
c19d1205
ZW
2287 if (mapstate == state)
2288 /* The mapping symbol has already been emitted.
2289 There is nothing else to do. */
2290 return;
b99bd4ef 2291
c19d1205 2292 mapstate = state;
b99bd4ef 2293
c19d1205 2294 switch (state)
b99bd4ef 2295 {
c19d1205
ZW
2296 case MAP_DATA:
2297 symname = "$d";
2298 type = BSF_NO_FLAGS;
2299 break;
2300 case MAP_ARM:
2301 symname = "$a";
2302 type = BSF_NO_FLAGS;
2303 break;
2304 case MAP_THUMB:
2305 symname = "$t";
2306 type = BSF_NO_FLAGS;
2307 break;
2308 case MAP_UNDEFINED:
2309 return;
2310 default:
2311 abort ();
2312 }
2313
2314 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2315
2316 symbolP = symbol_new (symname, now_seg, (valueT) frag_now_fix (), frag_now);
2317 symbol_table_insert (symbolP);
2318 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2319
2320 switch (state)
2321 {
2322 case MAP_ARM:
2323 THUMB_SET_FUNC (symbolP, 0);
2324 ARM_SET_THUMB (symbolP, 0);
2325 ARM_SET_INTERWORK (symbolP, support_interwork);
2326 break;
2327
2328 case MAP_THUMB:
2329 THUMB_SET_FUNC (symbolP, 1);
2330 ARM_SET_THUMB (symbolP, 1);
2331 ARM_SET_INTERWORK (symbolP, support_interwork);
2332 break;
2333
2334 case MAP_DATA:
2335 default:
2336 return;
2337 }
2338}
2339#else
2340#define mapping_state(x) /* nothing */
2341#endif
2342
2343/* Find the real, Thumb encoded start of a Thumb function. */
2344
2345static symbolS *
2346find_real_start (symbolS * symbolP)
2347{
2348 char * real_start;
2349 const char * name = S_GET_NAME (symbolP);
2350 symbolS * new_target;
2351
2352 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2353#define STUB_NAME ".real_start_of"
2354
2355 if (name == NULL)
2356 abort ();
2357
37f6032b
ZW
2358 /* The compiler may generate BL instructions to local labels because
2359 it needs to perform a branch to a far away location. These labels
2360 do not have a corresponding ".real_start_of" label. We check
2361 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2362 the ".real_start_of" convention for nonlocal branches. */
2363 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2364 return symbolP;
2365
37f6032b 2366 real_start = ACONCAT ((STUB_NAME, name, NULL));
c19d1205
ZW
2367 new_target = symbol_find (real_start);
2368
2369 if (new_target == NULL)
2370 {
2371 as_warn ("Failed to find real start of function: %s\n", name);
2372 new_target = symbolP;
2373 }
2374
c19d1205
ZW
2375 return new_target;
2376}
2377
2378static void
2379opcode_select (int width)
2380{
2381 switch (width)
2382 {
2383 case 16:
2384 if (! thumb_mode)
2385 {
e74cfd16 2386 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2387 as_bad (_("selected processor does not support THUMB opcodes"));
2388
2389 thumb_mode = 1;
2390 /* No need to force the alignment, since we will have been
2391 coming from ARM mode, which is word-aligned. */
2392 record_alignment (now_seg, 1);
2393 }
2394 mapping_state (MAP_THUMB);
2395 break;
2396
2397 case 32:
2398 if (thumb_mode)
2399 {
e74cfd16 2400 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2401 as_bad (_("selected processor does not support ARM opcodes"));
2402
2403 thumb_mode = 0;
2404
2405 if (!need_pass_2)
2406 frag_align (2, 0, 0);
2407
2408 record_alignment (now_seg, 1);
2409 }
2410 mapping_state (MAP_ARM);
2411 break;
2412
2413 default:
2414 as_bad (_("invalid instruction size selected (%d)"), width);
2415 }
2416}
2417
2418static void
2419s_arm (int ignore ATTRIBUTE_UNUSED)
2420{
2421 opcode_select (32);
2422 demand_empty_rest_of_line ();
2423}
2424
2425static void
2426s_thumb (int ignore ATTRIBUTE_UNUSED)
2427{
2428 opcode_select (16);
2429 demand_empty_rest_of_line ();
2430}
2431
2432static void
2433s_code (int unused ATTRIBUTE_UNUSED)
2434{
2435 int temp;
2436
2437 temp = get_absolute_expression ();
2438 switch (temp)
2439 {
2440 case 16:
2441 case 32:
2442 opcode_select (temp);
2443 break;
2444
2445 default:
2446 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2447 }
2448}
2449
2450static void
2451s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2452{
2453 /* If we are not already in thumb mode go into it, EVEN if
2454 the target processor does not support thumb instructions.
2455 This is used by gcc/config/arm/lib1funcs.asm for example
2456 to compile interworking support functions even if the
2457 target processor should not support interworking. */
2458 if (! thumb_mode)
2459 {
2460 thumb_mode = 2;
2461 record_alignment (now_seg, 1);
2462 }
2463
2464 demand_empty_rest_of_line ();
2465}
2466
2467static void
2468s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2469{
2470 s_thumb (0);
2471
2472 /* The following label is the name/address of the start of a Thumb function.
2473 We need to know this for the interworking support. */
2474 label_is_thumb_function_name = TRUE;
2475}
2476
2477/* Perform a .set directive, but also mark the alias as
2478 being a thumb function. */
2479
2480static void
2481s_thumb_set (int equiv)
2482{
2483 /* XXX the following is a duplicate of the code for s_set() in read.c
2484 We cannot just call that code as we need to get at the symbol that
2485 is created. */
2486 char * name;
2487 char delim;
2488 char * end_name;
2489 symbolS * symbolP;
2490
2491 /* Especial apologies for the random logic:
2492 This just grew, and could be parsed much more simply!
2493 Dean - in haste. */
2494 name = input_line_pointer;
2495 delim = get_symbol_end ();
2496 end_name = input_line_pointer;
2497 *end_name = delim;
2498
2499 if (*input_line_pointer != ',')
2500 {
2501 *end_name = 0;
2502 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2503 *end_name = delim;
2504 ignore_rest_of_line ();
2505 return;
2506 }
2507
2508 input_line_pointer++;
2509 *end_name = 0;
2510
2511 if (name[0] == '.' && name[1] == '\0')
2512 {
2513 /* XXX - this should not happen to .thumb_set. */
2514 abort ();
2515 }
2516
2517 if ((symbolP = symbol_find (name)) == NULL
2518 && (symbolP = md_undefined_symbol (name)) == NULL)
2519 {
2520#ifndef NO_LISTING
2521 /* When doing symbol listings, play games with dummy fragments living
2522 outside the normal fragment chain to record the file and line info
c19d1205 2523 for this symbol. */
b99bd4ef
NC
2524 if (listing & LISTING_SYMBOLS)
2525 {
2526 extern struct list_info_struct * listing_tail;
a737bd4d 2527 fragS * dummy_frag = xmalloc (sizeof (fragS));
b99bd4ef
NC
2528
2529 memset (dummy_frag, 0, sizeof (fragS));
2530 dummy_frag->fr_type = rs_fill;
2531 dummy_frag->line = listing_tail;
2532 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2533 dummy_frag->fr_symbol = symbolP;
2534 }
2535 else
2536#endif
2537 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2538
2539#ifdef OBJ_COFF
2540 /* "set" symbols are local unless otherwise specified. */
2541 SF_SET_LOCAL (symbolP);
2542#endif /* OBJ_COFF */
2543 } /* Make a new symbol. */
2544
2545 symbol_table_insert (symbolP);
2546
2547 * end_name = delim;
2548
2549 if (equiv
2550 && S_IS_DEFINED (symbolP)
2551 && S_GET_SEGMENT (symbolP) != reg_section)
2552 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2553
2554 pseudo_set (symbolP);
2555
2556 demand_empty_rest_of_line ();
2557
c19d1205 2558 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2559
2560 THUMB_SET_FUNC (symbolP, 1);
2561 ARM_SET_THUMB (symbolP, 1);
2562#if defined OBJ_ELF || defined OBJ_COFF
2563 ARM_SET_INTERWORK (symbolP, support_interwork);
2564#endif
2565}
2566
c19d1205 2567/* Directives: Mode selection. */
b99bd4ef 2568
c19d1205
ZW
2569/* .syntax [unified|divided] - choose the new unified syntax
2570 (same for Arm and Thumb encoding, modulo slight differences in what
2571 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2572static void
c19d1205 2573s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2574{
c19d1205
ZW
2575 char *name, delim;
2576
2577 name = input_line_pointer;
2578 delim = get_symbol_end ();
2579
2580 if (!strcasecmp (name, "unified"))
2581 unified_syntax = TRUE;
2582 else if (!strcasecmp (name, "divided"))
2583 unified_syntax = FALSE;
2584 else
2585 {
2586 as_bad (_("unrecognized syntax mode \"%s\""), name);
2587 return;
2588 }
2589 *input_line_pointer = delim;
b99bd4ef
NC
2590 demand_empty_rest_of_line ();
2591}
2592
c19d1205
ZW
2593/* Directives: sectioning and alignment. */
2594
2595/* Same as s_align_ptwo but align 0 => align 2. */
2596
b99bd4ef 2597static void
c19d1205 2598s_align (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2599{
a737bd4d 2600 int temp;
c19d1205
ZW
2601 long temp_fill;
2602 long max_alignment = 15;
b99bd4ef
NC
2603
2604 temp = get_absolute_expression ();
c19d1205
ZW
2605 if (temp > max_alignment)
2606 as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
2607 else if (temp < 0)
b99bd4ef 2608 {
c19d1205
ZW
2609 as_bad (_("alignment negative. 0 assumed."));
2610 temp = 0;
2611 }
b99bd4ef 2612
c19d1205
ZW
2613 if (*input_line_pointer == ',')
2614 {
2615 input_line_pointer++;
2616 temp_fill = get_absolute_expression ();
b99bd4ef 2617 }
c19d1205
ZW
2618 else
2619 temp_fill = 0;
b99bd4ef 2620
c19d1205
ZW
2621 if (!temp)
2622 temp = 2;
b99bd4ef 2623
c19d1205
ZW
2624 /* Only make a frag if we HAVE to. */
2625 if (temp && !need_pass_2)
2626 frag_align (temp, (int) temp_fill, 0);
2627 demand_empty_rest_of_line ();
2628
2629 record_alignment (now_seg, temp);
b99bd4ef
NC
2630}
2631
c19d1205
ZW
2632static void
2633s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 2634{
c19d1205
ZW
2635 /* We don't support putting frags in the BSS segment, we fake it by
2636 marking in_bss, then looking at s_skip for clues. */
2637 subseg_set (bss_section, 0);
2638 demand_empty_rest_of_line ();
2639 mapping_state (MAP_DATA);
2640}
b99bd4ef 2641
c19d1205
ZW
2642static void
2643s_even (int ignore ATTRIBUTE_UNUSED)
2644{
2645 /* Never make frag if expect extra pass. */
2646 if (!need_pass_2)
2647 frag_align (1, 0, 0);
b99bd4ef 2648
c19d1205 2649 record_alignment (now_seg, 1);
b99bd4ef 2650
c19d1205 2651 demand_empty_rest_of_line ();
b99bd4ef
NC
2652}
2653
c19d1205 2654/* Directives: Literal pools. */
a737bd4d 2655
c19d1205
ZW
2656static literal_pool *
2657find_literal_pool (void)
a737bd4d 2658{
c19d1205 2659 literal_pool * pool;
a737bd4d 2660
c19d1205 2661 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 2662 {
c19d1205
ZW
2663 if (pool->section == now_seg
2664 && pool->sub_section == now_subseg)
2665 break;
a737bd4d
NC
2666 }
2667
c19d1205 2668 return pool;
a737bd4d
NC
2669}
2670
c19d1205
ZW
2671static literal_pool *
2672find_or_make_literal_pool (void)
a737bd4d 2673{
c19d1205
ZW
2674 /* Next literal pool ID number. */
2675 static unsigned int latest_pool_num = 1;
2676 literal_pool * pool;
a737bd4d 2677
c19d1205 2678 pool = find_literal_pool ();
a737bd4d 2679
c19d1205 2680 if (pool == NULL)
a737bd4d 2681 {
c19d1205
ZW
2682 /* Create a new pool. */
2683 pool = xmalloc (sizeof (* pool));
2684 if (! pool)
2685 return NULL;
a737bd4d 2686
c19d1205
ZW
2687 pool->next_free_entry = 0;
2688 pool->section = now_seg;
2689 pool->sub_section = now_subseg;
2690 pool->next = list_of_pools;
2691 pool->symbol = NULL;
2692
2693 /* Add it to the list. */
2694 list_of_pools = pool;
a737bd4d 2695 }
a737bd4d 2696
c19d1205
ZW
2697 /* New pools, and emptied pools, will have a NULL symbol. */
2698 if (pool->symbol == NULL)
a737bd4d 2699 {
c19d1205
ZW
2700 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
2701 (valueT) 0, &zero_address_frag);
2702 pool->id = latest_pool_num ++;
a737bd4d
NC
2703 }
2704
c19d1205
ZW
2705 /* Done. */
2706 return pool;
a737bd4d
NC
2707}
2708
c19d1205
ZW
2709/* Add the literal in the global 'inst'
2710 structure to the relevent literal pool. */
b99bd4ef
NC
2711
2712static int
c19d1205 2713add_to_lit_pool (void)
b99bd4ef 2714{
c19d1205
ZW
2715 literal_pool * pool;
2716 unsigned int entry;
b99bd4ef 2717
c19d1205
ZW
2718 pool = find_or_make_literal_pool ();
2719
2720 /* Check if this literal value is already in the pool. */
2721 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 2722 {
c19d1205
ZW
2723 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
2724 && (inst.reloc.exp.X_op == O_constant)
2725 && (pool->literals[entry].X_add_number
2726 == inst.reloc.exp.X_add_number)
2727 && (pool->literals[entry].X_unsigned
2728 == inst.reloc.exp.X_unsigned))
2729 break;
2730
2731 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
2732 && (inst.reloc.exp.X_op == O_symbol)
2733 && (pool->literals[entry].X_add_number
2734 == inst.reloc.exp.X_add_number)
2735 && (pool->literals[entry].X_add_symbol
2736 == inst.reloc.exp.X_add_symbol)
2737 && (pool->literals[entry].X_op_symbol
2738 == inst.reloc.exp.X_op_symbol))
2739 break;
b99bd4ef
NC
2740 }
2741
c19d1205
ZW
2742 /* Do we need to create a new entry? */
2743 if (entry == pool->next_free_entry)
2744 {
2745 if (entry >= MAX_LITERAL_POOL_SIZE)
2746 {
2747 inst.error = _("literal pool overflow");
2748 return FAIL;
2749 }
2750
2751 pool->literals[entry] = inst.reloc.exp;
2752 pool->next_free_entry += 1;
2753 }
b99bd4ef 2754
c19d1205
ZW
2755 inst.reloc.exp.X_op = O_symbol;
2756 inst.reloc.exp.X_add_number = ((int) entry) * 4;
2757 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 2758
c19d1205 2759 return SUCCESS;
b99bd4ef
NC
2760}
2761
c19d1205
ZW
2762/* Can't use symbol_new here, so have to create a symbol and then at
2763 a later date assign it a value. Thats what these functions do. */
e16bb312 2764
c19d1205
ZW
2765static void
2766symbol_locate (symbolS * symbolP,
2767 const char * name, /* It is copied, the caller can modify. */
2768 segT segment, /* Segment identifier (SEG_<something>). */
2769 valueT valu, /* Symbol value. */
2770 fragS * frag) /* Associated fragment. */
2771{
2772 unsigned int name_length;
2773 char * preserved_copy_of_name;
e16bb312 2774
c19d1205
ZW
2775 name_length = strlen (name) + 1; /* +1 for \0. */
2776 obstack_grow (&notes, name, name_length);
2777 preserved_copy_of_name = obstack_finish (&notes);
e16bb312 2778
c19d1205
ZW
2779#ifdef tc_canonicalize_symbol_name
2780 preserved_copy_of_name =
2781 tc_canonicalize_symbol_name (preserved_copy_of_name);
2782#endif
b99bd4ef 2783
c19d1205 2784 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 2785
c19d1205
ZW
2786 S_SET_SEGMENT (symbolP, segment);
2787 S_SET_VALUE (symbolP, valu);
2788 symbol_clear_list_pointers (symbolP);
b99bd4ef 2789
c19d1205 2790 symbol_set_frag (symbolP, frag);
b99bd4ef 2791
c19d1205
ZW
2792 /* Link to end of symbol chain. */
2793 {
2794 extern int symbol_table_frozen;
b99bd4ef 2795
c19d1205
ZW
2796 if (symbol_table_frozen)
2797 abort ();
2798 }
b99bd4ef 2799
c19d1205 2800 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 2801
c19d1205 2802 obj_symbol_new_hook (symbolP);
b99bd4ef 2803
c19d1205
ZW
2804#ifdef tc_symbol_new_hook
2805 tc_symbol_new_hook (symbolP);
2806#endif
2807
2808#ifdef DEBUG_SYMS
2809 verify_symbol_chain (symbol_rootP, symbol_lastP);
2810#endif /* DEBUG_SYMS */
b99bd4ef
NC
2811}
2812
b99bd4ef 2813
c19d1205
ZW
2814static void
2815s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 2816{
c19d1205
ZW
2817 unsigned int entry;
2818 literal_pool * pool;
2819 char sym_name[20];
b99bd4ef 2820
c19d1205
ZW
2821 pool = find_literal_pool ();
2822 if (pool == NULL
2823 || pool->symbol == NULL
2824 || pool->next_free_entry == 0)
2825 return;
b99bd4ef 2826
c19d1205 2827 mapping_state (MAP_DATA);
b99bd4ef 2828
c19d1205
ZW
2829 /* Align pool as you have word accesses.
2830 Only make a frag if we have to. */
2831 if (!need_pass_2)
2832 frag_align (2, 0, 0);
b99bd4ef 2833
c19d1205 2834 record_alignment (now_seg, 2);
b99bd4ef 2835
c19d1205 2836 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 2837
c19d1205
ZW
2838 symbol_locate (pool->symbol, sym_name, now_seg,
2839 (valueT) frag_now_fix (), frag_now);
2840 symbol_table_insert (pool->symbol);
b99bd4ef 2841
c19d1205 2842 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 2843
c19d1205
ZW
2844#if defined OBJ_COFF || defined OBJ_ELF
2845 ARM_SET_INTERWORK (pool->symbol, support_interwork);
2846#endif
6c43fab6 2847
c19d1205
ZW
2848 for (entry = 0; entry < pool->next_free_entry; entry ++)
2849 /* First output the expression in the instruction to the pool. */
2850 emit_expr (&(pool->literals[entry]), 4); /* .word */
b99bd4ef 2851
c19d1205
ZW
2852 /* Mark the pool as empty. */
2853 pool->next_free_entry = 0;
2854 pool->symbol = NULL;
b99bd4ef
NC
2855}
2856
c19d1205
ZW
2857#ifdef OBJ_ELF
2858/* Forward declarations for functions below, in the MD interface
2859 section. */
2860static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
2861static valueT create_unwind_entry (int);
2862static void start_unwind_section (const segT, int);
2863static void add_unwind_opcode (valueT, int);
2864static void flush_pending_unwind (void);
b99bd4ef 2865
c19d1205 2866/* Directives: Data. */
b99bd4ef 2867
c19d1205
ZW
2868static void
2869s_arm_elf_cons (int nbytes)
2870{
2871 expressionS exp;
b99bd4ef 2872
c19d1205
ZW
2873#ifdef md_flush_pending_output
2874 md_flush_pending_output ();
2875#endif
b99bd4ef 2876
c19d1205 2877 if (is_it_end_of_statement ())
b99bd4ef 2878 {
c19d1205
ZW
2879 demand_empty_rest_of_line ();
2880 return;
b99bd4ef
NC
2881 }
2882
c19d1205
ZW
2883#ifdef md_cons_align
2884 md_cons_align (nbytes);
2885#endif
b99bd4ef 2886
c19d1205
ZW
2887 mapping_state (MAP_DATA);
2888 do
b99bd4ef 2889 {
c19d1205
ZW
2890 int reloc;
2891 char *base = input_line_pointer;
b99bd4ef 2892
c19d1205 2893 expression (& exp);
b99bd4ef 2894
c19d1205
ZW
2895 if (exp.X_op != O_symbol)
2896 emit_expr (&exp, (unsigned int) nbytes);
2897 else
2898 {
2899 char *before_reloc = input_line_pointer;
2900 reloc = parse_reloc (&input_line_pointer);
2901 if (reloc == -1)
2902 {
2903 as_bad (_("unrecognized relocation suffix"));
2904 ignore_rest_of_line ();
2905 return;
2906 }
2907 else if (reloc == BFD_RELOC_UNUSED)
2908 emit_expr (&exp, (unsigned int) nbytes);
2909 else
2910 {
2911 reloc_howto_type *howto = bfd_reloc_type_lookup (stdoutput, reloc);
2912 int size = bfd_get_reloc_size (howto);
b99bd4ef 2913
2fc8bdac
ZW
2914 if (reloc == BFD_RELOC_ARM_PLT32)
2915 {
2916 as_bad (_("(plt) is only valid on branch targets"));
2917 reloc = BFD_RELOC_UNUSED;
2918 size = 0;
2919 }
2920
c19d1205 2921 if (size > nbytes)
2fc8bdac 2922 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
2923 howto->name, nbytes);
2924 else
2925 {
2926 /* We've parsed an expression stopping at O_symbol.
2927 But there may be more expression left now that we
2928 have parsed the relocation marker. Parse it again.
2929 XXX Surely there is a cleaner way to do this. */
2930 char *p = input_line_pointer;
2931 int offset;
2932 char *save_buf = alloca (input_line_pointer - base);
2933 memcpy (save_buf, base, input_line_pointer - base);
2934 memmove (base + (input_line_pointer - before_reloc),
2935 base, before_reloc - base);
2936
2937 input_line_pointer = base + (input_line_pointer-before_reloc);
2938 expression (&exp);
2939 memcpy (base, save_buf, p - base);
2940
2941 offset = nbytes - size;
2942 p = frag_more ((int) nbytes);
2943 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
2944 size, &exp, 0, reloc);
2945 }
2946 }
2947 }
b99bd4ef 2948 }
c19d1205 2949 while (*input_line_pointer++ == ',');
b99bd4ef 2950
c19d1205
ZW
2951 /* Put terminator back into stream. */
2952 input_line_pointer --;
2953 demand_empty_rest_of_line ();
b99bd4ef
NC
2954}
2955
b99bd4ef 2956
c19d1205 2957/* Parse a .rel31 directive. */
b99bd4ef 2958
c19d1205
ZW
2959static void
2960s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
2961{
2962 expressionS exp;
2963 char *p;
2964 valueT highbit;
b99bd4ef 2965
c19d1205
ZW
2966 highbit = 0;
2967 if (*input_line_pointer == '1')
2968 highbit = 0x80000000;
2969 else if (*input_line_pointer != '0')
2970 as_bad (_("expected 0 or 1"));
b99bd4ef 2971
c19d1205
ZW
2972 input_line_pointer++;
2973 if (*input_line_pointer != ',')
2974 as_bad (_("missing comma"));
2975 input_line_pointer++;
b99bd4ef 2976
c19d1205
ZW
2977#ifdef md_flush_pending_output
2978 md_flush_pending_output ();
2979#endif
b99bd4ef 2980
c19d1205
ZW
2981#ifdef md_cons_align
2982 md_cons_align (4);
2983#endif
b99bd4ef 2984
c19d1205 2985 mapping_state (MAP_DATA);
b99bd4ef 2986
c19d1205 2987 expression (&exp);
b99bd4ef 2988
c19d1205
ZW
2989 p = frag_more (4);
2990 md_number_to_chars (p, highbit, 4);
2991 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
2992 BFD_RELOC_ARM_PREL31);
b99bd4ef 2993
c19d1205 2994 demand_empty_rest_of_line ();
b99bd4ef
NC
2995}
2996
c19d1205 2997/* Directives: AEABI stack-unwind tables. */
b99bd4ef 2998
c19d1205 2999/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3000
c19d1205
ZW
3001static void
3002s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3003{
3004 demand_empty_rest_of_line ();
3005 /* Mark the start of the function. */
3006 unwind.proc_start = expr_build_dot ();
b99bd4ef 3007
c19d1205
ZW
3008 /* Reset the rest of the unwind info. */
3009 unwind.opcode_count = 0;
3010 unwind.table_entry = NULL;
3011 unwind.personality_routine = NULL;
3012 unwind.personality_index = -1;
3013 unwind.frame_size = 0;
3014 unwind.fp_offset = 0;
3015 unwind.fp_reg = 13;
3016 unwind.fp_used = 0;
3017 unwind.sp_restored = 0;
3018}
b99bd4ef 3019
b99bd4ef 3020
c19d1205
ZW
3021/* Parse a handlerdata directive. Creates the exception handling table entry
3022 for the function. */
b99bd4ef 3023
c19d1205
ZW
3024static void
3025s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3026{
3027 demand_empty_rest_of_line ();
3028 if (unwind.table_entry)
3029 as_bad (_("dupicate .handlerdata directive"));
f02232aa 3030
c19d1205
ZW
3031 create_unwind_entry (1);
3032}
a737bd4d 3033
c19d1205 3034/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3035
c19d1205
ZW
3036static void
3037s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3038{
3039 long where;
3040 char *ptr;
3041 valueT val;
f02232aa 3042
c19d1205 3043 demand_empty_rest_of_line ();
f02232aa 3044
c19d1205
ZW
3045 /* Add eh table entry. */
3046 if (unwind.table_entry == NULL)
3047 val = create_unwind_entry (0);
3048 else
3049 val = 0;
f02232aa 3050
c19d1205
ZW
3051 /* Add index table entry. This is two words. */
3052 start_unwind_section (unwind.saved_seg, 1);
3053 frag_align (2, 0, 0);
3054 record_alignment (now_seg, 2);
b99bd4ef 3055
c19d1205
ZW
3056 ptr = frag_more (8);
3057 where = frag_now_fix () - 8;
f02232aa 3058
c19d1205
ZW
3059 /* Self relative offset of the function start. */
3060 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3061 BFD_RELOC_ARM_PREL31);
f02232aa 3062
c19d1205
ZW
3063 /* Indicate dependency on EHABI-defined personality routines to the
3064 linker, if it hasn't been done already. */
3065 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3066 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3067 {
3068 static const char *const name[] = {
3069 "__aeabi_unwind_cpp_pr0",
3070 "__aeabi_unwind_cpp_pr1",
3071 "__aeabi_unwind_cpp_pr2"
3072 };
3073 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3074 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
3075 marked_pr_dependency |= 1 << unwind.personality_index;
3076 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
3077 = marked_pr_dependency;
3078 }
f02232aa 3079
c19d1205
ZW
3080 if (val)
3081 /* Inline exception table entry. */
3082 md_number_to_chars (ptr + 4, val, 4);
3083 else
3084 /* Self relative offset of the table entry. */
3085 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3086 BFD_RELOC_ARM_PREL31);
f02232aa 3087
c19d1205
ZW
3088 /* Restore the original section. */
3089 subseg_set (unwind.saved_seg, unwind.saved_subseg);
3090}
f02232aa 3091
f02232aa 3092
c19d1205 3093/* Parse an unwind_cantunwind directive. */
b99bd4ef 3094
c19d1205
ZW
3095static void
3096s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3097{
3098 demand_empty_rest_of_line ();
3099 if (unwind.personality_routine || unwind.personality_index != -1)
3100 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3101
c19d1205
ZW
3102 unwind.personality_index = -2;
3103}
b99bd4ef 3104
b99bd4ef 3105
c19d1205 3106/* Parse a personalityindex directive. */
b99bd4ef 3107
c19d1205
ZW
3108static void
3109s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3110{
3111 expressionS exp;
b99bd4ef 3112
c19d1205
ZW
3113 if (unwind.personality_routine || unwind.personality_index != -1)
3114 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3115
c19d1205 3116 expression (&exp);
b99bd4ef 3117
c19d1205
ZW
3118 if (exp.X_op != O_constant
3119 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3120 {
c19d1205
ZW
3121 as_bad (_("bad personality routine number"));
3122 ignore_rest_of_line ();
3123 return;
b99bd4ef
NC
3124 }
3125
c19d1205 3126 unwind.personality_index = exp.X_add_number;
b99bd4ef 3127
c19d1205
ZW
3128 demand_empty_rest_of_line ();
3129}
e16bb312 3130
e16bb312 3131
c19d1205 3132/* Parse a personality directive. */
e16bb312 3133
c19d1205
ZW
3134static void
3135s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3136{
3137 char *name, *p, c;
a737bd4d 3138
c19d1205
ZW
3139 if (unwind.personality_routine || unwind.personality_index != -1)
3140 as_bad (_("duplicate .personality directive"));
a737bd4d 3141
c19d1205
ZW
3142 name = input_line_pointer;
3143 c = get_symbol_end ();
3144 p = input_line_pointer;
3145 unwind.personality_routine = symbol_find_or_make (name);
3146 *p = c;
3147 demand_empty_rest_of_line ();
3148}
e16bb312 3149
e16bb312 3150
c19d1205 3151/* Parse a directive saving core registers. */
e16bb312 3152
c19d1205
ZW
3153static void
3154s_arm_unwind_save_core (void)
e16bb312 3155{
c19d1205
ZW
3156 valueT op;
3157 long range;
3158 int n;
e16bb312 3159
c19d1205
ZW
3160 range = parse_reg_list (&input_line_pointer);
3161 if (range == FAIL)
e16bb312 3162 {
c19d1205
ZW
3163 as_bad (_("expected register list"));
3164 ignore_rest_of_line ();
3165 return;
3166 }
e16bb312 3167
c19d1205 3168 demand_empty_rest_of_line ();
e16bb312 3169
c19d1205
ZW
3170 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3171 into .unwind_save {..., sp...}. We aren't bothered about the value of
3172 ip because it is clobbered by calls. */
3173 if (unwind.sp_restored && unwind.fp_reg == 12
3174 && (range & 0x3000) == 0x1000)
3175 {
3176 unwind.opcode_count--;
3177 unwind.sp_restored = 0;
3178 range = (range | 0x2000) & ~0x1000;
3179 unwind.pending_offset = 0;
3180 }
e16bb312 3181
01ae4198
DJ
3182 /* Pop r4-r15. */
3183 if (range & 0xfff0)
c19d1205 3184 {
01ae4198
DJ
3185 /* See if we can use the short opcodes. These pop a block of up to 8
3186 registers starting with r4, plus maybe r14. */
3187 for (n = 0; n < 8; n++)
3188 {
3189 /* Break at the first non-saved register. */
3190 if ((range & (1 << (n + 4))) == 0)
3191 break;
3192 }
3193 /* See if there are any other bits set. */
3194 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3195 {
3196 /* Use the long form. */
3197 op = 0x8000 | ((range >> 4) & 0xfff);
3198 add_unwind_opcode (op, 2);
3199 }
0dd132b6 3200 else
01ae4198
DJ
3201 {
3202 /* Use the short form. */
3203 if (range & 0x4000)
3204 op = 0xa8; /* Pop r14. */
3205 else
3206 op = 0xa0; /* Do not pop r14. */
3207 op |= (n - 1);
3208 add_unwind_opcode (op, 1);
3209 }
c19d1205 3210 }
0dd132b6 3211
c19d1205
ZW
3212 /* Pop r0-r3. */
3213 if (range & 0xf)
3214 {
3215 op = 0xb100 | (range & 0xf);
3216 add_unwind_opcode (op, 2);
0dd132b6
NC
3217 }
3218
c19d1205
ZW
3219 /* Record the number of bytes pushed. */
3220 for (n = 0; n < 16; n++)
3221 {
3222 if (range & (1 << n))
3223 unwind.frame_size += 4;
3224 }
0dd132b6
NC
3225}
3226
c19d1205
ZW
3227
3228/* Parse a directive saving FPA registers. */
b99bd4ef
NC
3229
3230static void
c19d1205 3231s_arm_unwind_save_fpa (int reg)
b99bd4ef 3232{
c19d1205
ZW
3233 expressionS exp;
3234 int num_regs;
3235 valueT op;
b99bd4ef 3236
c19d1205
ZW
3237 /* Get Number of registers to transfer. */
3238 if (skip_past_comma (&input_line_pointer) != FAIL)
3239 expression (&exp);
3240 else
3241 exp.X_op = O_illegal;
b99bd4ef 3242
c19d1205 3243 if (exp.X_op != O_constant)
b99bd4ef 3244 {
c19d1205
ZW
3245 as_bad (_("expected , <constant>"));
3246 ignore_rest_of_line ();
b99bd4ef
NC
3247 return;
3248 }
3249
c19d1205
ZW
3250 num_regs = exp.X_add_number;
3251
3252 if (num_regs < 1 || num_regs > 4)
b99bd4ef 3253 {
c19d1205
ZW
3254 as_bad (_("number of registers must be in the range [1:4]"));
3255 ignore_rest_of_line ();
b99bd4ef
NC
3256 return;
3257 }
3258
c19d1205 3259 demand_empty_rest_of_line ();
b99bd4ef 3260
c19d1205
ZW
3261 if (reg == 4)
3262 {
3263 /* Short form. */
3264 op = 0xb4 | (num_regs - 1);
3265 add_unwind_opcode (op, 1);
3266 }
b99bd4ef
NC
3267 else
3268 {
c19d1205
ZW
3269 /* Long form. */
3270 op = 0xc800 | (reg << 4) | (num_regs - 1);
3271 add_unwind_opcode (op, 2);
b99bd4ef 3272 }
c19d1205 3273 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
3274}
3275
c19d1205 3276
fa073d69
MS
3277/* Parse a directive saving VFP registers for ARMv6 and above. */
3278
3279static void
3280s_arm_unwind_save_vfp_armv6 (void)
3281{
3282 int count;
3283 unsigned int start;
3284 valueT op;
3285 int num_vfpv3_regs = 0;
3286 int num_regs_below_16;
3287
3288 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
3289 if (count == FAIL)
3290 {
3291 as_bad (_("expected register list"));
3292 ignore_rest_of_line ();
3293 return;
3294 }
3295
3296 demand_empty_rest_of_line ();
3297
3298 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
3299 than FSTMX/FLDMX-style ones). */
3300
3301 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
3302 if (start >= 16)
3303 num_vfpv3_regs = count;
3304 else if (start + count > 16)
3305 num_vfpv3_regs = start + count - 16;
3306
3307 if (num_vfpv3_regs > 0)
3308 {
3309 int start_offset = start > 16 ? start - 16 : 0;
3310 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
3311 add_unwind_opcode (op, 2);
3312 }
3313
3314 /* Generate opcode for registers numbered in the range 0 .. 15. */
3315 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
3316 assert (num_regs_below_16 + num_vfpv3_regs == count);
3317 if (num_regs_below_16 > 0)
3318 {
3319 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
3320 add_unwind_opcode (op, 2);
3321 }
3322
3323 unwind.frame_size += count * 8;
3324}
3325
3326
3327/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
3328
3329static void
c19d1205 3330s_arm_unwind_save_vfp (void)
b99bd4ef 3331{
c19d1205 3332 int count;
ca3f61f7 3333 unsigned int reg;
c19d1205 3334 valueT op;
b99bd4ef 3335
5287ad62 3336 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 3337 if (count == FAIL)
b99bd4ef 3338 {
c19d1205
ZW
3339 as_bad (_("expected register list"));
3340 ignore_rest_of_line ();
b99bd4ef
NC
3341 return;
3342 }
3343
c19d1205 3344 demand_empty_rest_of_line ();
b99bd4ef 3345
c19d1205 3346 if (reg == 8)
b99bd4ef 3347 {
c19d1205
ZW
3348 /* Short form. */
3349 op = 0xb8 | (count - 1);
3350 add_unwind_opcode (op, 1);
b99bd4ef 3351 }
c19d1205 3352 else
b99bd4ef 3353 {
c19d1205
ZW
3354 /* Long form. */
3355 op = 0xb300 | (reg << 4) | (count - 1);
3356 add_unwind_opcode (op, 2);
b99bd4ef 3357 }
c19d1205
ZW
3358 unwind.frame_size += count * 8 + 4;
3359}
b99bd4ef 3360
b99bd4ef 3361
c19d1205
ZW
3362/* Parse a directive saving iWMMXt data registers. */
3363
3364static void
3365s_arm_unwind_save_mmxwr (void)
3366{
3367 int reg;
3368 int hi_reg;
3369 int i;
3370 unsigned mask = 0;
3371 valueT op;
b99bd4ef 3372
c19d1205
ZW
3373 if (*input_line_pointer == '{')
3374 input_line_pointer++;
b99bd4ef 3375
c19d1205 3376 do
b99bd4ef 3377 {
dcbf9037 3378 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 3379
c19d1205 3380 if (reg == FAIL)
b99bd4ef 3381 {
c19d1205
ZW
3382 as_bad (_(reg_expected_msgs[REG_TYPE_MMXWR]));
3383 goto error;
b99bd4ef
NC
3384 }
3385
c19d1205
ZW
3386 if (mask >> reg)
3387 as_tsktsk (_("register list not in ascending order"));
3388 mask |= 1 << reg;
b99bd4ef 3389
c19d1205
ZW
3390 if (*input_line_pointer == '-')
3391 {
3392 input_line_pointer++;
dcbf9037 3393 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
3394 if (hi_reg == FAIL)
3395 {
3396 as_bad (_(reg_expected_msgs[REG_TYPE_MMXWR]));
3397 goto error;
3398 }
3399 else if (reg >= hi_reg)
3400 {
3401 as_bad (_("bad register range"));
3402 goto error;
3403 }
3404 for (; reg < hi_reg; reg++)
3405 mask |= 1 << reg;
3406 }
3407 }
3408 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 3409
c19d1205
ZW
3410 if (*input_line_pointer == '}')
3411 input_line_pointer++;
b99bd4ef 3412
c19d1205 3413 demand_empty_rest_of_line ();
b99bd4ef 3414
708587a4 3415 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
3416 the list. */
3417 flush_pending_unwind ();
b99bd4ef 3418
c19d1205 3419 for (i = 0; i < 16; i++)
b99bd4ef 3420 {
c19d1205
ZW
3421 if (mask & (1 << i))
3422 unwind.frame_size += 8;
b99bd4ef
NC
3423 }
3424
c19d1205
ZW
3425 /* Attempt to combine with a previous opcode. We do this because gcc
3426 likes to output separate unwind directives for a single block of
3427 registers. */
3428 if (unwind.opcode_count > 0)
b99bd4ef 3429 {
c19d1205
ZW
3430 i = unwind.opcodes[unwind.opcode_count - 1];
3431 if ((i & 0xf8) == 0xc0)
3432 {
3433 i &= 7;
3434 /* Only merge if the blocks are contiguous. */
3435 if (i < 6)
3436 {
3437 if ((mask & 0xfe00) == (1 << 9))
3438 {
3439 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
3440 unwind.opcode_count--;
3441 }
3442 }
3443 else if (i == 6 && unwind.opcode_count >= 2)
3444 {
3445 i = unwind.opcodes[unwind.opcode_count - 2];
3446 reg = i >> 4;
3447 i &= 0xf;
b99bd4ef 3448
c19d1205
ZW
3449 op = 0xffff << (reg - 1);
3450 if (reg > 0
87a1fd79 3451 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
3452 {
3453 op = (1 << (reg + i + 1)) - 1;
3454 op &= ~((1 << reg) - 1);
3455 mask |= op;
3456 unwind.opcode_count -= 2;
3457 }
3458 }
3459 }
b99bd4ef
NC
3460 }
3461
c19d1205
ZW
3462 hi_reg = 15;
3463 /* We want to generate opcodes in the order the registers have been
3464 saved, ie. descending order. */
3465 for (reg = 15; reg >= -1; reg--)
b99bd4ef 3466 {
c19d1205
ZW
3467 /* Save registers in blocks. */
3468 if (reg < 0
3469 || !(mask & (1 << reg)))
3470 {
3471 /* We found an unsaved reg. Generate opcodes to save the
3472 preceeding block. */
3473 if (reg != hi_reg)
3474 {
3475 if (reg == 9)
3476 {
3477 /* Short form. */
3478 op = 0xc0 | (hi_reg - 10);
3479 add_unwind_opcode (op, 1);
3480 }
3481 else
3482 {
3483 /* Long form. */
3484 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
3485 add_unwind_opcode (op, 2);
3486 }
3487 }
3488 hi_reg = reg - 1;
3489 }
b99bd4ef
NC
3490 }
3491
c19d1205
ZW
3492 return;
3493error:
3494 ignore_rest_of_line ();
b99bd4ef
NC
3495}
3496
3497static void
c19d1205 3498s_arm_unwind_save_mmxwcg (void)
b99bd4ef 3499{
c19d1205
ZW
3500 int reg;
3501 int hi_reg;
3502 unsigned mask = 0;
3503 valueT op;
b99bd4ef 3504
c19d1205
ZW
3505 if (*input_line_pointer == '{')
3506 input_line_pointer++;
b99bd4ef 3507
c19d1205 3508 do
b99bd4ef 3509 {
dcbf9037 3510 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 3511
c19d1205
ZW
3512 if (reg == FAIL)
3513 {
3514 as_bad (_(reg_expected_msgs[REG_TYPE_MMXWCG]));
3515 goto error;
3516 }
b99bd4ef 3517
c19d1205
ZW
3518 reg -= 8;
3519 if (mask >> reg)
3520 as_tsktsk (_("register list not in ascending order"));
3521 mask |= 1 << reg;
b99bd4ef 3522
c19d1205
ZW
3523 if (*input_line_pointer == '-')
3524 {
3525 input_line_pointer++;
dcbf9037 3526 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
3527 if (hi_reg == FAIL)
3528 {
3529 as_bad (_(reg_expected_msgs[REG_TYPE_MMXWCG]));
3530 goto error;
3531 }
3532 else if (reg >= hi_reg)
3533 {
3534 as_bad (_("bad register range"));
3535 goto error;
3536 }
3537 for (; reg < hi_reg; reg++)
3538 mask |= 1 << reg;
3539 }
b99bd4ef 3540 }
c19d1205 3541 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 3542
c19d1205
ZW
3543 if (*input_line_pointer == '}')
3544 input_line_pointer++;
b99bd4ef 3545
c19d1205
ZW
3546 demand_empty_rest_of_line ();
3547
708587a4 3548 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
3549 the list. */
3550 flush_pending_unwind ();
b99bd4ef 3551
c19d1205 3552 for (reg = 0; reg < 16; reg++)
b99bd4ef 3553 {
c19d1205
ZW
3554 if (mask & (1 << reg))
3555 unwind.frame_size += 4;
b99bd4ef 3556 }
c19d1205
ZW
3557 op = 0xc700 | mask;
3558 add_unwind_opcode (op, 2);
3559 return;
3560error:
3561 ignore_rest_of_line ();
b99bd4ef
NC
3562}
3563
c19d1205 3564
fa073d69
MS
3565/* Parse an unwind_save directive.
3566 If the argument is non-zero, this is a .vsave directive. */
c19d1205 3567
b99bd4ef 3568static void
fa073d69 3569s_arm_unwind_save (int arch_v6)
b99bd4ef 3570{
c19d1205
ZW
3571 char *peek;
3572 struct reg_entry *reg;
3573 bfd_boolean had_brace = FALSE;
b99bd4ef 3574
c19d1205
ZW
3575 /* Figure out what sort of save we have. */
3576 peek = input_line_pointer;
b99bd4ef 3577
c19d1205 3578 if (*peek == '{')
b99bd4ef 3579 {
c19d1205
ZW
3580 had_brace = TRUE;
3581 peek++;
b99bd4ef
NC
3582 }
3583
c19d1205 3584 reg = arm_reg_parse_multi (&peek);
b99bd4ef 3585
c19d1205 3586 if (!reg)
b99bd4ef 3587 {
c19d1205
ZW
3588 as_bad (_("register expected"));
3589 ignore_rest_of_line ();
b99bd4ef
NC
3590 return;
3591 }
3592
c19d1205 3593 switch (reg->type)
b99bd4ef 3594 {
c19d1205
ZW
3595 case REG_TYPE_FN:
3596 if (had_brace)
3597 {
3598 as_bad (_("FPA .unwind_save does not take a register list"));
3599 ignore_rest_of_line ();
3600 return;
3601 }
3602 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 3603 return;
c19d1205
ZW
3604
3605 case REG_TYPE_RN: s_arm_unwind_save_core (); return;
fa073d69
MS
3606 case REG_TYPE_VFD:
3607 if (arch_v6)
3608 s_arm_unwind_save_vfp_armv6 ();
3609 else
3610 s_arm_unwind_save_vfp ();
3611 return;
c19d1205
ZW
3612 case REG_TYPE_MMXWR: s_arm_unwind_save_mmxwr (); return;
3613 case REG_TYPE_MMXWCG: s_arm_unwind_save_mmxwcg (); return;
3614
3615 default:
3616 as_bad (_(".unwind_save does not support this kind of register"));
3617 ignore_rest_of_line ();
b99bd4ef 3618 }
c19d1205 3619}
b99bd4ef 3620
b99bd4ef 3621
c19d1205
ZW
3622/* Parse an unwind_movsp directive. */
3623
3624static void
3625s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
3626{
3627 int reg;
3628 valueT op;
3629
dcbf9037 3630 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 3631 if (reg == FAIL)
b99bd4ef 3632 {
c19d1205
ZW
3633 as_bad (_(reg_expected_msgs[REG_TYPE_RN]));
3634 ignore_rest_of_line ();
b99bd4ef
NC
3635 return;
3636 }
c19d1205 3637 demand_empty_rest_of_line ();
b99bd4ef 3638
c19d1205 3639 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 3640 {
c19d1205 3641 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
3642 return;
3643 }
3644
c19d1205
ZW
3645 if (unwind.fp_reg != REG_SP)
3646 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 3647
c19d1205
ZW
3648 /* Generate opcode to restore the value. */
3649 op = 0x90 | reg;
3650 add_unwind_opcode (op, 1);
3651
3652 /* Record the information for later. */
3653 unwind.fp_reg = reg;
3654 unwind.fp_offset = unwind.frame_size;
3655 unwind.sp_restored = 1;
b05fe5cf
ZW
3656}
3657
c19d1205
ZW
3658/* Parse an unwind_pad directive. */
3659
b05fe5cf 3660static void
c19d1205 3661s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 3662{
c19d1205 3663 int offset;
b05fe5cf 3664
c19d1205
ZW
3665 if (immediate_for_directive (&offset) == FAIL)
3666 return;
b99bd4ef 3667
c19d1205
ZW
3668 if (offset & 3)
3669 {
3670 as_bad (_("stack increment must be multiple of 4"));
3671 ignore_rest_of_line ();
3672 return;
3673 }
b99bd4ef 3674
c19d1205
ZW
3675 /* Don't generate any opcodes, just record the details for later. */
3676 unwind.frame_size += offset;
3677 unwind.pending_offset += offset;
3678
3679 demand_empty_rest_of_line ();
3680}
3681
3682/* Parse an unwind_setfp directive. */
3683
3684static void
3685s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3686{
c19d1205
ZW
3687 int sp_reg;
3688 int fp_reg;
3689 int offset;
3690
dcbf9037 3691 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
3692 if (skip_past_comma (&input_line_pointer) == FAIL)
3693 sp_reg = FAIL;
3694 else
dcbf9037 3695 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 3696
c19d1205
ZW
3697 if (fp_reg == FAIL || sp_reg == FAIL)
3698 {
3699 as_bad (_("expected <reg>, <reg>"));
3700 ignore_rest_of_line ();
3701 return;
3702 }
b99bd4ef 3703
c19d1205
ZW
3704 /* Optional constant. */
3705 if (skip_past_comma (&input_line_pointer) != FAIL)
3706 {
3707 if (immediate_for_directive (&offset) == FAIL)
3708 return;
3709 }
3710 else
3711 offset = 0;
a737bd4d 3712
c19d1205 3713 demand_empty_rest_of_line ();
a737bd4d 3714
c19d1205 3715 if (sp_reg != 13 && sp_reg != unwind.fp_reg)
a737bd4d 3716 {
c19d1205
ZW
3717 as_bad (_("register must be either sp or set by a previous"
3718 "unwind_movsp directive"));
3719 return;
a737bd4d
NC
3720 }
3721
c19d1205
ZW
3722 /* Don't generate any opcodes, just record the information for later. */
3723 unwind.fp_reg = fp_reg;
3724 unwind.fp_used = 1;
3725 if (sp_reg == 13)
3726 unwind.fp_offset = unwind.frame_size - offset;
3727 else
3728 unwind.fp_offset -= offset;
a737bd4d
NC
3729}
3730
c19d1205
ZW
3731/* Parse an unwind_raw directive. */
3732
3733static void
3734s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 3735{
c19d1205 3736 expressionS exp;
708587a4 3737 /* This is an arbitrary limit. */
c19d1205
ZW
3738 unsigned char op[16];
3739 int count;
a737bd4d 3740
c19d1205
ZW
3741 expression (&exp);
3742 if (exp.X_op == O_constant
3743 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 3744 {
c19d1205
ZW
3745 unwind.frame_size += exp.X_add_number;
3746 expression (&exp);
3747 }
3748 else
3749 exp.X_op = O_illegal;
a737bd4d 3750
c19d1205
ZW
3751 if (exp.X_op != O_constant)
3752 {
3753 as_bad (_("expected <offset>, <opcode>"));
3754 ignore_rest_of_line ();
3755 return;
3756 }
a737bd4d 3757
c19d1205 3758 count = 0;
a737bd4d 3759
c19d1205
ZW
3760 /* Parse the opcode. */
3761 for (;;)
3762 {
3763 if (count >= 16)
3764 {
3765 as_bad (_("unwind opcode too long"));
3766 ignore_rest_of_line ();
a737bd4d 3767 }
c19d1205 3768 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 3769 {
c19d1205
ZW
3770 as_bad (_("invalid unwind opcode"));
3771 ignore_rest_of_line ();
3772 return;
a737bd4d 3773 }
c19d1205 3774 op[count++] = exp.X_add_number;
a737bd4d 3775
c19d1205
ZW
3776 /* Parse the next byte. */
3777 if (skip_past_comma (&input_line_pointer) == FAIL)
3778 break;
a737bd4d 3779
c19d1205
ZW
3780 expression (&exp);
3781 }
b99bd4ef 3782
c19d1205
ZW
3783 /* Add the opcode bytes in reverse order. */
3784 while (count--)
3785 add_unwind_opcode (op[count], 1);
b99bd4ef 3786
c19d1205 3787 demand_empty_rest_of_line ();
b99bd4ef 3788}
ee065d83
PB
3789
3790
3791/* Parse a .eabi_attribute directive. */
3792
3793static void
3794s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
3795{
3796 expressionS exp;
3797 bfd_boolean is_string;
3798 int tag;
3799 unsigned int i = 0;
3800 char *s = NULL;
3801 char saved_char;
3802
3803 expression (& exp);
3804 if (exp.X_op != O_constant)
3805 goto bad;
3806
3807 tag = exp.X_add_number;
3808 if (tag == 4 || tag == 5 || tag == 32 || (tag > 32 && (tag & 1) != 0))
3809 is_string = 1;
3810 else
3811 is_string = 0;
3812
3813 if (skip_past_comma (&input_line_pointer) == FAIL)
3814 goto bad;
3815 if (tag == 32 || !is_string)
3816 {
3817 expression (& exp);
3818 if (exp.X_op != O_constant)
3819 {
3820 as_bad (_("expected numeric constant"));
3821 ignore_rest_of_line ();
3822 return;
3823 }
3824 i = exp.X_add_number;
3825 }
3826 if (tag == Tag_compatibility
3827 && skip_past_comma (&input_line_pointer) == FAIL)
3828 {
3829 as_bad (_("expected comma"));
3830 ignore_rest_of_line ();
3831 return;
3832 }
3833 if (is_string)
3834 {
3835 skip_whitespace(input_line_pointer);
3836 if (*input_line_pointer != '"')
3837 goto bad_string;
3838 input_line_pointer++;
3839 s = input_line_pointer;
3840 while (*input_line_pointer && *input_line_pointer != '"')
3841 input_line_pointer++;
3842 if (*input_line_pointer != '"')
3843 goto bad_string;
3844 saved_char = *input_line_pointer;
3845 *input_line_pointer = 0;
3846 }
3847 else
3848 {
3849 s = NULL;
3850 saved_char = 0;
3851 }
3852
3853 if (tag == Tag_compatibility)
3854 elf32_arm_add_eabi_attr_compat (stdoutput, i, s);
3855 else if (is_string)
3856 elf32_arm_add_eabi_attr_string (stdoutput, tag, s);
3857 else
3858 elf32_arm_add_eabi_attr_int (stdoutput, tag, i);
3859
3860 if (s)
3861 {
3862 *input_line_pointer = saved_char;
3863 input_line_pointer++;
3864 }
3865 demand_empty_rest_of_line ();
3866 return;
3867bad_string:
3868 as_bad (_("bad string constant"));
3869 ignore_rest_of_line ();
3870 return;
3871bad:
3872 as_bad (_("expected <tag> , <value>"));
3873 ignore_rest_of_line ();
3874}
8463be01 3875#endif /* OBJ_ELF */
ee065d83
PB
3876
3877static void s_arm_arch (int);
3878static void s_arm_cpu (int);
3879static void s_arm_fpu (int);
b99bd4ef 3880
f0927246
NC
3881#ifdef TE_PE
3882
3883static void
3884pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
3885{
3886 expressionS exp;
3887
3888 do
3889 {
3890 expression (&exp);
3891 if (exp.X_op == O_symbol)
3892 exp.X_op = O_secrel;
3893
3894 emit_expr (&exp, 4);
3895 }
3896 while (*input_line_pointer++ == ',');
3897
3898 input_line_pointer--;
3899 demand_empty_rest_of_line ();
3900}
3901#endif /* TE_PE */
3902
c19d1205
ZW
3903/* This table describes all the machine specific pseudo-ops the assembler
3904 has to support. The fields are:
3905 pseudo-op name without dot
3906 function to call to execute this pseudo-op
3907 Integer arg to pass to the function. */
b99bd4ef 3908
c19d1205 3909const pseudo_typeS md_pseudo_table[] =
b99bd4ef 3910{
c19d1205
ZW
3911 /* Never called because '.req' does not start a line. */
3912 { "req", s_req, 0 },
dcbf9037
JB
3913 /* Following two are likewise never called. */
3914 { "dn", s_dn, 0 },
3915 { "qn", s_qn, 0 },
c19d1205
ZW
3916 { "unreq", s_unreq, 0 },
3917 { "bss", s_bss, 0 },
3918 { "align", s_align, 0 },
3919 { "arm", s_arm, 0 },
3920 { "thumb", s_thumb, 0 },
3921 { "code", s_code, 0 },
3922 { "force_thumb", s_force_thumb, 0 },
3923 { "thumb_func", s_thumb_func, 0 },
3924 { "thumb_set", s_thumb_set, 0 },
3925 { "even", s_even, 0 },
3926 { "ltorg", s_ltorg, 0 },
3927 { "pool", s_ltorg, 0 },
3928 { "syntax", s_syntax, 0 },
8463be01
PB
3929 { "cpu", s_arm_cpu, 0 },
3930 { "arch", s_arm_arch, 0 },
3931 { "fpu", s_arm_fpu, 0 },
c19d1205
ZW
3932#ifdef OBJ_ELF
3933 { "word", s_arm_elf_cons, 4 },
3934 { "long", s_arm_elf_cons, 4 },
3935 { "rel31", s_arm_rel31, 0 },
3936 { "fnstart", s_arm_unwind_fnstart, 0 },
3937 { "fnend", s_arm_unwind_fnend, 0 },
3938 { "cantunwind", s_arm_unwind_cantunwind, 0 },
3939 { "personality", s_arm_unwind_personality, 0 },
3940 { "personalityindex", s_arm_unwind_personalityindex, 0 },
3941 { "handlerdata", s_arm_unwind_handlerdata, 0 },
3942 { "save", s_arm_unwind_save, 0 },
fa073d69 3943 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
3944 { "movsp", s_arm_unwind_movsp, 0 },
3945 { "pad", s_arm_unwind_pad, 0 },
3946 { "setfp", s_arm_unwind_setfp, 0 },
3947 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 3948 { "eabi_attribute", s_arm_eabi_attribute, 0 },
c19d1205
ZW
3949#else
3950 { "word", cons, 4},
f0927246
NC
3951
3952 /* These are used for dwarf. */
3953 {"2byte", cons, 2},
3954 {"4byte", cons, 4},
3955 {"8byte", cons, 8},
3956 /* These are used for dwarf2. */
3957 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
3958 { "loc", dwarf2_directive_loc, 0 },
3959 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
3960#endif
3961 { "extend", float_cons, 'x' },
3962 { "ldouble", float_cons, 'x' },
3963 { "packed", float_cons, 'p' },
f0927246
NC
3964#ifdef TE_PE
3965 {"secrel32", pe_directive_secrel, 0},
3966#endif
c19d1205
ZW
3967 { 0, 0, 0 }
3968};
3969\f
3970/* Parser functions used exclusively in instruction operands. */
b99bd4ef 3971
c19d1205
ZW
3972/* Generic immediate-value read function for use in insn parsing.
3973 STR points to the beginning of the immediate (the leading #);
3974 VAL receives the value; if the value is outside [MIN, MAX]
3975 issue an error. PREFIX_OPT is true if the immediate prefix is
3976 optional. */
b99bd4ef 3977
c19d1205
ZW
3978static int
3979parse_immediate (char **str, int *val, int min, int max,
3980 bfd_boolean prefix_opt)
3981{
3982 expressionS exp;
3983 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
3984 if (exp.X_op != O_constant)
b99bd4ef 3985 {
c19d1205
ZW
3986 inst.error = _("constant expression required");
3987 return FAIL;
3988 }
b99bd4ef 3989
c19d1205
ZW
3990 if (exp.X_add_number < min || exp.X_add_number > max)
3991 {
3992 inst.error = _("immediate value out of range");
3993 return FAIL;
3994 }
b99bd4ef 3995
c19d1205
ZW
3996 *val = exp.X_add_number;
3997 return SUCCESS;
3998}
b99bd4ef 3999
5287ad62
JB
4000/* Less-generic immediate-value read function with the possibility of loading a
4001 big (64-bit) immediate, as required by Neon VMOV and VMVN immediate
4002 instructions. Puts the result directly in inst.operands[i]. */
4003
4004static int
4005parse_big_immediate (char **str, int i)
4006{
4007 expressionS exp;
4008 char *ptr = *str;
4009
4010 my_get_expression (&exp, &ptr, GE_OPT_PREFIX_BIG);
4011
4012 if (exp.X_op == O_constant)
4013 inst.operands[i].imm = exp.X_add_number;
4014 else if (exp.X_op == O_big
4015 && LITTLENUM_NUMBER_OF_BITS * exp.X_add_number > 32
4016 && LITTLENUM_NUMBER_OF_BITS * exp.X_add_number <= 64)
4017 {
4018 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
4019 /* Bignums have their least significant bits in
4020 generic_bignum[0]. Make sure we put 32 bits in imm and
4021 32 bits in reg, in a (hopefully) portable way. */
4022 assert (parts != 0);
4023 inst.operands[i].imm = 0;
4024 for (j = 0; j < parts; j++, idx++)
4025 inst.operands[i].imm |= generic_bignum[idx]
4026 << (LITTLENUM_NUMBER_OF_BITS * j);
4027 inst.operands[i].reg = 0;
4028 for (j = 0; j < parts; j++, idx++)
4029 inst.operands[i].reg |= generic_bignum[idx]
4030 << (LITTLENUM_NUMBER_OF_BITS * j);
4031 inst.operands[i].regisimm = 1;
4032 }
4033 else
4034 return FAIL;
4035
4036 *str = ptr;
4037
4038 return SUCCESS;
4039}
4040
c19d1205
ZW
4041/* Returns the pseudo-register number of an FPA immediate constant,
4042 or FAIL if there isn't a valid constant here. */
b99bd4ef 4043
c19d1205
ZW
4044static int
4045parse_fpa_immediate (char ** str)
4046{
4047 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4048 char * save_in;
4049 expressionS exp;
4050 int i;
4051 int j;
b99bd4ef 4052
c19d1205
ZW
4053 /* First try and match exact strings, this is to guarantee
4054 that some formats will work even for cross assembly. */
b99bd4ef 4055
c19d1205
ZW
4056 for (i = 0; fp_const[i]; i++)
4057 {
4058 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4059 {
c19d1205 4060 char *start = *str;
b99bd4ef 4061
c19d1205
ZW
4062 *str += strlen (fp_const[i]);
4063 if (is_end_of_line[(unsigned char) **str])
4064 return i + 8;
4065 *str = start;
4066 }
4067 }
b99bd4ef 4068
c19d1205
ZW
4069 /* Just because we didn't get a match doesn't mean that the constant
4070 isn't valid, just that it is in a format that we don't
4071 automatically recognize. Try parsing it with the standard
4072 expression routines. */
b99bd4ef 4073
c19d1205 4074 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4075
c19d1205
ZW
4076 /* Look for a raw floating point number. */
4077 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4078 && is_end_of_line[(unsigned char) *save_in])
4079 {
4080 for (i = 0; i < NUM_FLOAT_VALS; i++)
4081 {
4082 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4083 {
c19d1205
ZW
4084 if (words[j] != fp_values[i][j])
4085 break;
b99bd4ef
NC
4086 }
4087
c19d1205 4088 if (j == MAX_LITTLENUMS)
b99bd4ef 4089 {
c19d1205
ZW
4090 *str = save_in;
4091 return i + 8;
b99bd4ef
NC
4092 }
4093 }
4094 }
b99bd4ef 4095
c19d1205
ZW
4096 /* Try and parse a more complex expression, this will probably fail
4097 unless the code uses a floating point prefix (eg "0f"). */
4098 save_in = input_line_pointer;
4099 input_line_pointer = *str;
4100 if (expression (&exp) == absolute_section
4101 && exp.X_op == O_big
4102 && exp.X_add_number < 0)
4103 {
4104 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4105 Ditto for 15. */
4106 if (gen_to_words (words, 5, (long) 15) == 0)
4107 {
4108 for (i = 0; i < NUM_FLOAT_VALS; i++)
4109 {
4110 for (j = 0; j < MAX_LITTLENUMS; j++)
4111 {
4112 if (words[j] != fp_values[i][j])
4113 break;
4114 }
b99bd4ef 4115
c19d1205
ZW
4116 if (j == MAX_LITTLENUMS)
4117 {
4118 *str = input_line_pointer;
4119 input_line_pointer = save_in;
4120 return i + 8;
4121 }
4122 }
4123 }
b99bd4ef
NC
4124 }
4125
c19d1205
ZW
4126 *str = input_line_pointer;
4127 input_line_pointer = save_in;
4128 inst.error = _("invalid FPA immediate expression");
4129 return FAIL;
b99bd4ef
NC
4130}
4131
136da414
JB
4132/* Returns 1 if a number has "quarter-precision" float format
4133 0baBbbbbbc defgh000 00000000 00000000. */
4134
4135static int
4136is_quarter_float (unsigned imm)
4137{
4138 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4139 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4140}
4141
4142/* Parse an 8-bit "quarter-precision" floating point number of the form:
4143 0baBbbbbbc defgh000 00000000 00000000.
4144 The minus-zero case needs special handling, since it can't be encoded in the
4145 "quarter-precision" float format, but can nonetheless be loaded as an integer
4146 constant. */
4147
4148static unsigned
4149parse_qfloat_immediate (char **ccp, int *immed)
4150{
4151 char *str = *ccp;
4152 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4153
4154 skip_past_char (&str, '#');
4155
4156 if ((str = atof_ieee (str, 's', words)) != NULL)
4157 {
4158 unsigned fpword = 0;
4159 int i;
4160
4161 /* Our FP word must be 32 bits (single-precision FP). */
4162 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
4163 {
4164 fpword <<= LITTLENUM_NUMBER_OF_BITS;
4165 fpword |= words[i];
4166 }
4167
4168 if (is_quarter_float (fpword) || fpword == 0x80000000)
4169 *immed = fpword;
4170 else
4171 return FAIL;
4172
4173 *ccp = str;
4174
4175 return SUCCESS;
4176 }
4177
4178 return FAIL;
4179}
4180
c19d1205
ZW
4181/* Shift operands. */
4182enum shift_kind
b99bd4ef 4183{
c19d1205
ZW
4184 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
4185};
b99bd4ef 4186
c19d1205
ZW
4187struct asm_shift_name
4188{
4189 const char *name;
4190 enum shift_kind kind;
4191};
b99bd4ef 4192
c19d1205
ZW
4193/* Third argument to parse_shift. */
4194enum parse_shift_mode
4195{
4196 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
4197 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
4198 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
4199 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
4200 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
4201};
b99bd4ef 4202
c19d1205
ZW
4203/* Parse a <shift> specifier on an ARM data processing instruction.
4204 This has three forms:
b99bd4ef 4205
c19d1205
ZW
4206 (LSL|LSR|ASL|ASR|ROR) Rs
4207 (LSL|LSR|ASL|ASR|ROR) #imm
4208 RRX
b99bd4ef 4209
c19d1205
ZW
4210 Note that ASL is assimilated to LSL in the instruction encoding, and
4211 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 4212
c19d1205
ZW
4213static int
4214parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 4215{
c19d1205
ZW
4216 const struct asm_shift_name *shift_name;
4217 enum shift_kind shift;
4218 char *s = *str;
4219 char *p = s;
4220 int reg;
b99bd4ef 4221
c19d1205
ZW
4222 for (p = *str; ISALPHA (*p); p++)
4223 ;
b99bd4ef 4224
c19d1205 4225 if (p == *str)
b99bd4ef 4226 {
c19d1205
ZW
4227 inst.error = _("shift expression expected");
4228 return FAIL;
b99bd4ef
NC
4229 }
4230
c19d1205
ZW
4231 shift_name = hash_find_n (arm_shift_hsh, *str, p - *str);
4232
4233 if (shift_name == NULL)
b99bd4ef 4234 {
c19d1205
ZW
4235 inst.error = _("shift expression expected");
4236 return FAIL;
b99bd4ef
NC
4237 }
4238
c19d1205 4239 shift = shift_name->kind;
b99bd4ef 4240
c19d1205
ZW
4241 switch (mode)
4242 {
4243 case NO_SHIFT_RESTRICT:
4244 case SHIFT_IMMEDIATE: break;
b99bd4ef 4245
c19d1205
ZW
4246 case SHIFT_LSL_OR_ASR_IMMEDIATE:
4247 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
4248 {
4249 inst.error = _("'LSL' or 'ASR' required");
4250 return FAIL;
4251 }
4252 break;
b99bd4ef 4253
c19d1205
ZW
4254 case SHIFT_LSL_IMMEDIATE:
4255 if (shift != SHIFT_LSL)
4256 {
4257 inst.error = _("'LSL' required");
4258 return FAIL;
4259 }
4260 break;
b99bd4ef 4261
c19d1205
ZW
4262 case SHIFT_ASR_IMMEDIATE:
4263 if (shift != SHIFT_ASR)
4264 {
4265 inst.error = _("'ASR' required");
4266 return FAIL;
4267 }
4268 break;
b99bd4ef 4269
c19d1205
ZW
4270 default: abort ();
4271 }
b99bd4ef 4272
c19d1205
ZW
4273 if (shift != SHIFT_RRX)
4274 {
4275 /* Whitespace can appear here if the next thing is a bare digit. */
4276 skip_whitespace (p);
b99bd4ef 4277
c19d1205 4278 if (mode == NO_SHIFT_RESTRICT
dcbf9037 4279 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4280 {
4281 inst.operands[i].imm = reg;
4282 inst.operands[i].immisreg = 1;
4283 }
4284 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4285 return FAIL;
4286 }
4287 inst.operands[i].shift_kind = shift;
4288 inst.operands[i].shifted = 1;
4289 *str = p;
4290 return SUCCESS;
b99bd4ef
NC
4291}
4292
c19d1205 4293/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 4294
c19d1205
ZW
4295 #<immediate>
4296 #<immediate>, <rotate>
4297 <Rm>
4298 <Rm>, <shift>
b99bd4ef 4299
c19d1205
ZW
4300 where <shift> is defined by parse_shift above, and <rotate> is a
4301 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 4302 is deferred to md_apply_fix. */
b99bd4ef 4303
c19d1205
ZW
4304static int
4305parse_shifter_operand (char **str, int i)
4306{
4307 int value;
4308 expressionS expr;
b99bd4ef 4309
dcbf9037 4310 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
4311 {
4312 inst.operands[i].reg = value;
4313 inst.operands[i].isreg = 1;
b99bd4ef 4314
c19d1205
ZW
4315 /* parse_shift will override this if appropriate */
4316 inst.reloc.exp.X_op = O_constant;
4317 inst.reloc.exp.X_add_number = 0;
b99bd4ef 4318
c19d1205
ZW
4319 if (skip_past_comma (str) == FAIL)
4320 return SUCCESS;
b99bd4ef 4321
c19d1205
ZW
4322 /* Shift operation on register. */
4323 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
4324 }
4325
c19d1205
ZW
4326 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
4327 return FAIL;
b99bd4ef 4328
c19d1205 4329 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 4330 {
c19d1205
ZW
4331 /* #x, y -- ie explicit rotation by Y. */
4332 if (my_get_expression (&expr, str, GE_NO_PREFIX))
4333 return FAIL;
b99bd4ef 4334
c19d1205
ZW
4335 if (expr.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
4336 {
4337 inst.error = _("constant expression expected");
4338 return FAIL;
4339 }
b99bd4ef 4340
c19d1205
ZW
4341 value = expr.X_add_number;
4342 if (value < 0 || value > 30 || value % 2 != 0)
4343 {
4344 inst.error = _("invalid rotation");
4345 return FAIL;
4346 }
4347 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
4348 {
4349 inst.error = _("invalid constant");
4350 return FAIL;
4351 }
09d92015 4352
55cf6793 4353 /* Convert to decoded value. md_apply_fix will put it back. */
c19d1205
ZW
4354 inst.reloc.exp.X_add_number
4355 = (((inst.reloc.exp.X_add_number << (32 - value))
4356 | (inst.reloc.exp.X_add_number >> value)) & 0xffffffff);
09d92015
MM
4357 }
4358
c19d1205
ZW
4359 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
4360 inst.reloc.pc_rel = 0;
4361 return SUCCESS;
09d92015
MM
4362}
4363
4962c51a
MS
4364/* Group relocation information. Each entry in the table contains the
4365 textual name of the relocation as may appear in assembler source
4366 and must end with a colon.
4367 Along with this textual name are the relocation codes to be used if
4368 the corresponding instruction is an ALU instruction (ADD or SUB only),
4369 an LDR, an LDRS, or an LDC. */
4370
4371struct group_reloc_table_entry
4372{
4373 const char *name;
4374 int alu_code;
4375 int ldr_code;
4376 int ldrs_code;
4377 int ldc_code;
4378};
4379
4380typedef enum
4381{
4382 /* Varieties of non-ALU group relocation. */
4383
4384 GROUP_LDR,
4385 GROUP_LDRS,
4386 GROUP_LDC
4387} group_reloc_type;
4388
4389static struct group_reloc_table_entry group_reloc_table[] =
4390 { /* Program counter relative: */
4391 { "pc_g0_nc",
4392 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
4393 0, /* LDR */
4394 0, /* LDRS */
4395 0 }, /* LDC */
4396 { "pc_g0",
4397 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
4398 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
4399 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
4400 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
4401 { "pc_g1_nc",
4402 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
4403 0, /* LDR */
4404 0, /* LDRS */
4405 0 }, /* LDC */
4406 { "pc_g1",
4407 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
4408 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
4409 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
4410 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
4411 { "pc_g2",
4412 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
4413 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
4414 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
4415 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
4416 /* Section base relative */
4417 { "sb_g0_nc",
4418 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
4419 0, /* LDR */
4420 0, /* LDRS */
4421 0 }, /* LDC */
4422 { "sb_g0",
4423 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
4424 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
4425 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
4426 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
4427 { "sb_g1_nc",
4428 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
4429 0, /* LDR */
4430 0, /* LDRS */
4431 0 }, /* LDC */
4432 { "sb_g1",
4433 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
4434 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
4435 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
4436 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
4437 { "sb_g2",
4438 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
4439 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
4440 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
4441 BFD_RELOC_ARM_LDC_SB_G2 } }; /* LDC */
4442
4443/* Given the address of a pointer pointing to the textual name of a group
4444 relocation as may appear in assembler source, attempt to find its details
4445 in group_reloc_table. The pointer will be updated to the character after
4446 the trailing colon. On failure, FAIL will be returned; SUCCESS
4447 otherwise. On success, *entry will be updated to point at the relevant
4448 group_reloc_table entry. */
4449
4450static int
4451find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
4452{
4453 unsigned int i;
4454 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
4455 {
4456 int length = strlen (group_reloc_table[i].name);
4457
4458 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0 &&
4459 (*str)[length] == ':')
4460 {
4461 *out = &group_reloc_table[i];
4462 *str += (length + 1);
4463 return SUCCESS;
4464 }
4465 }
4466
4467 return FAIL;
4468}
4469
4470/* Parse a <shifter_operand> for an ARM data processing instruction
4471 (as for parse_shifter_operand) where group relocations are allowed:
4472
4473 #<immediate>
4474 #<immediate>, <rotate>
4475 #:<group_reloc>:<expression>
4476 <Rm>
4477 <Rm>, <shift>
4478
4479 where <group_reloc> is one of the strings defined in group_reloc_table.
4480 The hashes are optional.
4481
4482 Everything else is as for parse_shifter_operand. */
4483
4484static parse_operand_result
4485parse_shifter_operand_group_reloc (char **str, int i)
4486{
4487 /* Determine if we have the sequence of characters #: or just :
4488 coming next. If we do, then we check for a group relocation.
4489 If we don't, punt the whole lot to parse_shifter_operand. */
4490
4491 if (((*str)[0] == '#' && (*str)[1] == ':')
4492 || (*str)[0] == ':')
4493 {
4494 struct group_reloc_table_entry *entry;
4495
4496 if ((*str)[0] == '#')
4497 (*str) += 2;
4498 else
4499 (*str)++;
4500
4501 /* Try to parse a group relocation. Anything else is an error. */
4502 if (find_group_reloc_table_entry (str, &entry) == FAIL)
4503 {
4504 inst.error = _("unknown group relocation");
4505 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4506 }
4507
4508 /* We now have the group relocation table entry corresponding to
4509 the name in the assembler source. Next, we parse the expression. */
4510 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
4511 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4512
4513 /* Record the relocation type (always the ALU variant here). */
4514 inst.reloc.type = entry->alu_code;
4515 assert (inst.reloc.type != 0);
4516
4517 return PARSE_OPERAND_SUCCESS;
4518 }
4519 else
4520 return parse_shifter_operand (str, i) == SUCCESS
4521 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
4522
4523 /* Never reached. */
4524}
4525
c19d1205
ZW
4526/* Parse all forms of an ARM address expression. Information is written
4527 to inst.operands[i] and/or inst.reloc.
09d92015 4528
c19d1205 4529 Preindexed addressing (.preind=1):
09d92015 4530
c19d1205
ZW
4531 [Rn, #offset] .reg=Rn .reloc.exp=offset
4532 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
4533 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
4534 .shift_kind=shift .reloc.exp=shift_imm
09d92015 4535
c19d1205 4536 These three may have a trailing ! which causes .writeback to be set also.
09d92015 4537
c19d1205 4538 Postindexed addressing (.postind=1, .writeback=1):
09d92015 4539
c19d1205
ZW
4540 [Rn], #offset .reg=Rn .reloc.exp=offset
4541 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
4542 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
4543 .shift_kind=shift .reloc.exp=shift_imm
09d92015 4544
c19d1205 4545 Unindexed addressing (.preind=0, .postind=0):
09d92015 4546
c19d1205 4547 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 4548
c19d1205 4549 Other:
09d92015 4550
c19d1205
ZW
4551 [Rn]{!} shorthand for [Rn,#0]{!}
4552 =immediate .isreg=0 .reloc.exp=immediate
4553 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 4554
c19d1205
ZW
4555 It is the caller's responsibility to check for addressing modes not
4556 supported by the instruction, and to set inst.reloc.type. */
4557
4962c51a
MS
4558static parse_operand_result
4559parse_address_main (char **str, int i, int group_relocations,
4560 group_reloc_type group_type)
09d92015 4561{
c19d1205
ZW
4562 char *p = *str;
4563 int reg;
09d92015 4564
c19d1205 4565 if (skip_past_char (&p, '[') == FAIL)
09d92015 4566 {
c19d1205
ZW
4567 if (skip_past_char (&p, '=') == FAIL)
4568 {
4569 /* bare address - translate to PC-relative offset */
4570 inst.reloc.pc_rel = 1;
4571 inst.operands[i].reg = REG_PC;
4572 inst.operands[i].isreg = 1;
4573 inst.operands[i].preind = 1;
4574 }
4575 /* else a load-constant pseudo op, no special treatment needed here */
09d92015 4576
c19d1205 4577 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4962c51a 4578 return PARSE_OPERAND_FAIL;
09d92015 4579
c19d1205 4580 *str = p;
4962c51a 4581 return PARSE_OPERAND_SUCCESS;
09d92015
MM
4582 }
4583
dcbf9037 4584 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 4585 {
c19d1205 4586 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 4587 return PARSE_OPERAND_FAIL;
09d92015 4588 }
c19d1205
ZW
4589 inst.operands[i].reg = reg;
4590 inst.operands[i].isreg = 1;
09d92015 4591
c19d1205 4592 if (skip_past_comma (&p) == SUCCESS)
09d92015 4593 {
c19d1205 4594 inst.operands[i].preind = 1;
09d92015 4595
c19d1205
ZW
4596 if (*p == '+') p++;
4597 else if (*p == '-') p++, inst.operands[i].negative = 1;
4598
dcbf9037 4599 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 4600 {
c19d1205
ZW
4601 inst.operands[i].imm = reg;
4602 inst.operands[i].immisreg = 1;
4603
4604 if (skip_past_comma (&p) == SUCCESS)
4605 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 4606 return PARSE_OPERAND_FAIL;
c19d1205 4607 }
5287ad62
JB
4608 else if (skip_past_char (&p, ':') == SUCCESS)
4609 {
4610 /* FIXME: '@' should be used here, but it's filtered out by generic
4611 code before we get to see it here. This may be subject to
4612 change. */
4613 expressionS exp;
4614 my_get_expression (&exp, &p, GE_NO_PREFIX);
4615 if (exp.X_op != O_constant)
4616 {
4617 inst.error = _("alignment must be constant");
4962c51a 4618 return PARSE_OPERAND_FAIL;
5287ad62
JB
4619 }
4620 inst.operands[i].imm = exp.X_add_number << 8;
4621 inst.operands[i].immisalign = 1;
4622 /* Alignments are not pre-indexes. */
4623 inst.operands[i].preind = 0;
4624 }
c19d1205
ZW
4625 else
4626 {
4627 if (inst.operands[i].negative)
4628 {
4629 inst.operands[i].negative = 0;
4630 p--;
4631 }
4962c51a
MS
4632
4633 if (group_relocations &&
4634 ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4635
4636 {
4637 struct group_reloc_table_entry *entry;
4638
4639 /* Skip over the #: or : sequence. */
4640 if (*p == '#')
4641 p += 2;
4642 else
4643 p++;
4644
4645 /* Try to parse a group relocation. Anything else is an
4646 error. */
4647 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
4648 {
4649 inst.error = _("unknown group relocation");
4650 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4651 }
4652
4653 /* We now have the group relocation table entry corresponding to
4654 the name in the assembler source. Next, we parse the
4655 expression. */
4656 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4657 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4658
4659 /* Record the relocation type. */
4660 switch (group_type)
4661 {
4662 case GROUP_LDR:
4663 inst.reloc.type = entry->ldr_code;
4664 break;
4665
4666 case GROUP_LDRS:
4667 inst.reloc.type = entry->ldrs_code;
4668 break;
4669
4670 case GROUP_LDC:
4671 inst.reloc.type = entry->ldc_code;
4672 break;
4673
4674 default:
4675 assert (0);
4676 }
4677
4678 if (inst.reloc.type == 0)
4679 {
4680 inst.error = _("this group relocation is not allowed on this instruction");
4681 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4682 }
4683 }
4684 else
4685 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4686 return PARSE_OPERAND_FAIL;
09d92015
MM
4687 }
4688 }
4689
c19d1205 4690 if (skip_past_char (&p, ']') == FAIL)
09d92015 4691 {
c19d1205 4692 inst.error = _("']' expected");
4962c51a 4693 return PARSE_OPERAND_FAIL;
09d92015
MM
4694 }
4695
c19d1205
ZW
4696 if (skip_past_char (&p, '!') == SUCCESS)
4697 inst.operands[i].writeback = 1;
09d92015 4698
c19d1205 4699 else if (skip_past_comma (&p) == SUCCESS)
09d92015 4700 {
c19d1205
ZW
4701 if (skip_past_char (&p, '{') == SUCCESS)
4702 {
4703 /* [Rn], {expr} - unindexed, with option */
4704 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 4705 0, 255, TRUE) == FAIL)
4962c51a 4706 return PARSE_OPERAND_FAIL;
09d92015 4707
c19d1205
ZW
4708 if (skip_past_char (&p, '}') == FAIL)
4709 {
4710 inst.error = _("'}' expected at end of 'option' field");
4962c51a 4711 return PARSE_OPERAND_FAIL;
c19d1205
ZW
4712 }
4713 if (inst.operands[i].preind)
4714 {
4715 inst.error = _("cannot combine index with option");
4962c51a 4716 return PARSE_OPERAND_FAIL;
c19d1205
ZW
4717 }
4718 *str = p;
4962c51a 4719 return PARSE_OPERAND_SUCCESS;
09d92015 4720 }
c19d1205
ZW
4721 else
4722 {
4723 inst.operands[i].postind = 1;
4724 inst.operands[i].writeback = 1;
09d92015 4725
c19d1205
ZW
4726 if (inst.operands[i].preind)
4727 {
4728 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 4729 return PARSE_OPERAND_FAIL;
c19d1205 4730 }
09d92015 4731
c19d1205
ZW
4732 if (*p == '+') p++;
4733 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 4734
dcbf9037 4735 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 4736 {
5287ad62
JB
4737 /* We might be using the immediate for alignment already. If we
4738 are, OR the register number into the low-order bits. */
4739 if (inst.operands[i].immisalign)
4740 inst.operands[i].imm |= reg;
4741 else
4742 inst.operands[i].imm = reg;
c19d1205 4743 inst.operands[i].immisreg = 1;
a737bd4d 4744
c19d1205
ZW
4745 if (skip_past_comma (&p) == SUCCESS)
4746 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 4747 return PARSE_OPERAND_FAIL;
c19d1205
ZW
4748 }
4749 else
4750 {
4751 if (inst.operands[i].negative)
4752 {
4753 inst.operands[i].negative = 0;
4754 p--;
4755 }
4756 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 4757 return PARSE_OPERAND_FAIL;
c19d1205
ZW
4758 }
4759 }
a737bd4d
NC
4760 }
4761
c19d1205
ZW
4762 /* If at this point neither .preind nor .postind is set, we have a
4763 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
4764 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
4765 {
4766 inst.operands[i].preind = 1;
4767 inst.reloc.exp.X_op = O_constant;
4768 inst.reloc.exp.X_add_number = 0;
4769 }
4770 *str = p;
4962c51a
MS
4771 return PARSE_OPERAND_SUCCESS;
4772}
4773
4774static int
4775parse_address (char **str, int i)
4776{
4777 return parse_address_main (str, i, 0, 0) == PARSE_OPERAND_SUCCESS
4778 ? SUCCESS : FAIL;
4779}
4780
4781static parse_operand_result
4782parse_address_group_reloc (char **str, int i, group_reloc_type type)
4783{
4784 return parse_address_main (str, i, 1, type);
a737bd4d
NC
4785}
4786
b6895b4f
PB
4787/* Parse an operand for a MOVW or MOVT instruction. */
4788static int
4789parse_half (char **str)
4790{
4791 char * p;
4792
4793 p = *str;
4794 skip_past_char (&p, '#');
4795 if (strncasecmp (p, ":lower16:", 9) == 0)
4796 inst.reloc.type = BFD_RELOC_ARM_MOVW;
4797 else if (strncasecmp (p, ":upper16:", 9) == 0)
4798 inst.reloc.type = BFD_RELOC_ARM_MOVT;
4799
4800 if (inst.reloc.type != BFD_RELOC_UNUSED)
4801 {
4802 p += 9;
4803 skip_whitespace(p);
4804 }
4805
4806 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4807 return FAIL;
4808
4809 if (inst.reloc.type == BFD_RELOC_UNUSED)
4810 {
4811 if (inst.reloc.exp.X_op != O_constant)
4812 {
4813 inst.error = _("constant expression expected");
4814 return FAIL;
4815 }
4816 if (inst.reloc.exp.X_add_number < 0
4817 || inst.reloc.exp.X_add_number > 0xffff)
4818 {
4819 inst.error = _("immediate value out of range");
4820 return FAIL;
4821 }
4822 }
4823 *str = p;
4824 return SUCCESS;
4825}
4826
c19d1205 4827/* Miscellaneous. */
a737bd4d 4828
c19d1205
ZW
4829/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
4830 or a bitmask suitable to be or-ed into the ARM msr instruction. */
4831static int
4832parse_psr (char **str)
09d92015 4833{
c19d1205
ZW
4834 char *p;
4835 unsigned long psr_field;
62b3e311
PB
4836 const struct asm_psr *psr;
4837 char *start;
09d92015 4838
c19d1205
ZW
4839 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
4840 feature for ease of use and backwards compatibility. */
4841 p = *str;
62b3e311 4842 if (strncasecmp (p, "SPSR", 4) == 0)
c19d1205 4843 psr_field = SPSR_BIT;
62b3e311 4844 else if (strncasecmp (p, "CPSR", 4) == 0)
c19d1205
ZW
4845 psr_field = 0;
4846 else
62b3e311
PB
4847 {
4848 start = p;
4849 do
4850 p++;
4851 while (ISALNUM (*p) || *p == '_');
4852
4853 psr = hash_find_n (arm_v7m_psr_hsh, start, p - start);
4854 if (!psr)
4855 return FAIL;
09d92015 4856
62b3e311
PB
4857 *str = p;
4858 return psr->field;
4859 }
09d92015 4860
62b3e311 4861 p += 4;
c19d1205
ZW
4862 if (*p == '_')
4863 {
4864 /* A suffix follows. */
c19d1205
ZW
4865 p++;
4866 start = p;
a737bd4d 4867
c19d1205
ZW
4868 do
4869 p++;
4870 while (ISALNUM (*p) || *p == '_');
a737bd4d 4871
c19d1205
ZW
4872 psr = hash_find_n (arm_psr_hsh, start, p - start);
4873 if (!psr)
4874 goto error;
a737bd4d 4875
c19d1205 4876 psr_field |= psr->field;
a737bd4d 4877 }
c19d1205 4878 else
a737bd4d 4879 {
c19d1205
ZW
4880 if (ISALNUM (*p))
4881 goto error; /* Garbage after "[CS]PSR". */
4882
4883 psr_field |= (PSR_c | PSR_f);
a737bd4d 4884 }
c19d1205
ZW
4885 *str = p;
4886 return psr_field;
a737bd4d 4887
c19d1205
ZW
4888 error:
4889 inst.error = _("flag for {c}psr instruction expected");
4890 return FAIL;
a737bd4d
NC
4891}
4892
c19d1205
ZW
4893/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
4894 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 4895
c19d1205
ZW
4896static int
4897parse_cps_flags (char **str)
a737bd4d 4898{
c19d1205
ZW
4899 int val = 0;
4900 int saw_a_flag = 0;
4901 char *s = *str;
a737bd4d 4902
c19d1205
ZW
4903 for (;;)
4904 switch (*s++)
4905 {
4906 case '\0': case ',':
4907 goto done;
a737bd4d 4908
c19d1205
ZW
4909 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
4910 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
4911 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 4912
c19d1205
ZW
4913 default:
4914 inst.error = _("unrecognized CPS flag");
4915 return FAIL;
4916 }
a737bd4d 4917
c19d1205
ZW
4918 done:
4919 if (saw_a_flag == 0)
a737bd4d 4920 {
c19d1205
ZW
4921 inst.error = _("missing CPS flags");
4922 return FAIL;
a737bd4d 4923 }
a737bd4d 4924
c19d1205
ZW
4925 *str = s - 1;
4926 return val;
a737bd4d
NC
4927}
4928
c19d1205
ZW
4929/* Parse an endian specifier ("BE" or "LE", case insensitive);
4930 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
4931
4932static int
c19d1205 4933parse_endian_specifier (char **str)
a737bd4d 4934{
c19d1205
ZW
4935 int little_endian;
4936 char *s = *str;
a737bd4d 4937
c19d1205
ZW
4938 if (strncasecmp (s, "BE", 2))
4939 little_endian = 0;
4940 else if (strncasecmp (s, "LE", 2))
4941 little_endian = 1;
4942 else
a737bd4d 4943 {
c19d1205 4944 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
4945 return FAIL;
4946 }
4947
c19d1205 4948 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 4949 {
c19d1205 4950 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
4951 return FAIL;
4952 }
4953
c19d1205
ZW
4954 *str = s + 2;
4955 return little_endian;
4956}
a737bd4d 4957
c19d1205
ZW
4958/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
4959 value suitable for poking into the rotate field of an sxt or sxta
4960 instruction, or FAIL on error. */
4961
4962static int
4963parse_ror (char **str)
4964{
4965 int rot;
4966 char *s = *str;
4967
4968 if (strncasecmp (s, "ROR", 3) == 0)
4969 s += 3;
4970 else
a737bd4d 4971 {
c19d1205 4972 inst.error = _("missing rotation field after comma");
a737bd4d
NC
4973 return FAIL;
4974 }
c19d1205
ZW
4975
4976 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
4977 return FAIL;
4978
4979 switch (rot)
a737bd4d 4980 {
c19d1205
ZW
4981 case 0: *str = s; return 0x0;
4982 case 8: *str = s; return 0x1;
4983 case 16: *str = s; return 0x2;
4984 case 24: *str = s; return 0x3;
4985
4986 default:
4987 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
4988 return FAIL;
4989 }
c19d1205 4990}
a737bd4d 4991
c19d1205
ZW
4992/* Parse a conditional code (from conds[] below). The value returned is in the
4993 range 0 .. 14, or FAIL. */
4994static int
4995parse_cond (char **str)
4996{
4997 char *p, *q;
4998 const struct asm_cond *c;
a737bd4d 4999
c19d1205
ZW
5000 p = q = *str;
5001 while (ISALPHA (*q))
5002 q++;
a737bd4d 5003
c19d1205
ZW
5004 c = hash_find_n (arm_cond_hsh, p, q - p);
5005 if (!c)
a737bd4d 5006 {
c19d1205 5007 inst.error = _("condition required");
a737bd4d
NC
5008 return FAIL;
5009 }
5010
c19d1205
ZW
5011 *str = q;
5012 return c->value;
5013}
5014
62b3e311
PB
5015/* Parse an option for a barrier instruction. Returns the encoding for the
5016 option, or FAIL. */
5017static int
5018parse_barrier (char **str)
5019{
5020 char *p, *q;
5021 const struct asm_barrier_opt *o;
5022
5023 p = q = *str;
5024 while (ISALPHA (*q))
5025 q++;
5026
5027 o = hash_find_n (arm_barrier_opt_hsh, p, q - p);
5028 if (!o)
5029 return FAIL;
5030
5031 *str = q;
5032 return o->value;
5033}
5034
92e90b6e
PB
5035/* Parse the operands of a table branch instruction. Similar to a memory
5036 operand. */
5037static int
5038parse_tb (char **str)
5039{
5040 char * p = *str;
5041 int reg;
5042
5043 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
5044 {
5045 inst.error = _("'[' expected");
5046 return FAIL;
5047 }
92e90b6e 5048
dcbf9037 5049 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5050 {
5051 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5052 return FAIL;
5053 }
5054 inst.operands[0].reg = reg;
5055
5056 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
5057 {
5058 inst.error = _("',' expected");
5059 return FAIL;
5060 }
92e90b6e 5061
dcbf9037 5062 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
5063 {
5064 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5065 return FAIL;
5066 }
5067 inst.operands[0].imm = reg;
5068
5069 if (skip_past_comma (&p) == SUCCESS)
5070 {
5071 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
5072 return FAIL;
5073 if (inst.reloc.exp.X_add_number != 1)
5074 {
5075 inst.error = _("invalid shift");
5076 return FAIL;
5077 }
5078 inst.operands[0].shifted = 1;
5079 }
5080
5081 if (skip_past_char (&p, ']') == FAIL)
5082 {
5083 inst.error = _("']' expected");
5084 return FAIL;
5085 }
5086 *str = p;
5087 return SUCCESS;
5088}
5089
5287ad62
JB
5090/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
5091 information on the types the operands can take and how they are encoded.
037e8744
JB
5092 Up to four operands may be read; this function handles setting the
5093 ".present" field for each read operand itself.
5287ad62
JB
5094 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
5095 else returns FAIL. */
5096
5097static int
5098parse_neon_mov (char **str, int *which_operand)
5099{
5100 int i = *which_operand, val;
5101 enum arm_reg_type rtype;
5102 char *ptr = *str;
dcbf9037 5103 struct neon_type_el optype;
5287ad62 5104
dcbf9037 5105 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
5106 {
5107 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
5108 inst.operands[i].reg = val;
5109 inst.operands[i].isscalar = 1;
dcbf9037 5110 inst.operands[i].vectype = optype;
5287ad62
JB
5111 inst.operands[i++].present = 1;
5112
5113 if (skip_past_comma (&ptr) == FAIL)
5114 goto wanted_comma;
5115
dcbf9037 5116 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5287ad62
JB
5117 goto wanted_arm;
5118
5119 inst.operands[i].reg = val;
5120 inst.operands[i].isreg = 1;
5121 inst.operands[i].present = 1;
5122 }
037e8744 5123 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
dcbf9037 5124 != FAIL)
5287ad62
JB
5125 {
5126 /* Cases 0, 1, 2, 3, 5 (D only). */
5127 if (skip_past_comma (&ptr) == FAIL)
5128 goto wanted_comma;
5129
5130 inst.operands[i].reg = val;
5131 inst.operands[i].isreg = 1;
5132 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5133 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5134 inst.operands[i].isvec = 1;
dcbf9037 5135 inst.operands[i].vectype = optype;
5287ad62
JB
5136 inst.operands[i++].present = 1;
5137
dcbf9037 5138 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62 5139 {
037e8744
JB
5140 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
5141 Case 13: VMOV <Sd>, <Rm> */
5287ad62
JB
5142 inst.operands[i].reg = val;
5143 inst.operands[i].isreg = 1;
037e8744 5144 inst.operands[i].present = 1;
5287ad62
JB
5145
5146 if (rtype == REG_TYPE_NQ)
5147 {
dcbf9037 5148 first_error (_("can't use Neon quad register here"));
5287ad62
JB
5149 return FAIL;
5150 }
037e8744
JB
5151 else if (rtype != REG_TYPE_VFS)
5152 {
5153 i++;
5154 if (skip_past_comma (&ptr) == FAIL)
5155 goto wanted_comma;
5156 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5157 goto wanted_arm;
5158 inst.operands[i].reg = val;
5159 inst.operands[i].isreg = 1;
5160 inst.operands[i].present = 1;
5161 }
5287ad62 5162 }
136da414 5163 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
136da414 5164 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
037e8744
JB
5165 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
5166 Case 10: VMOV.F32 <Sd>, #<imm>
5167 Case 11: VMOV.F64 <Dd>, #<imm> */
5168 ;
5287ad62 5169 else if (parse_big_immediate (&ptr, i) == SUCCESS)
5287ad62
JB
5170 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
5171 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
037e8744
JB
5172 ;
5173 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
5174 &optype)) != FAIL)
5287ad62
JB
5175 {
5176 /* Case 0: VMOV<c><q> <Qd>, <Qm>
037e8744
JB
5177 Case 1: VMOV<c><q> <Dd>, <Dm>
5178 Case 8: VMOV.F32 <Sd>, <Sm>
5179 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
5287ad62
JB
5180
5181 inst.operands[i].reg = val;
5182 inst.operands[i].isreg = 1;
5183 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
5184 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5185 inst.operands[i].isvec = 1;
dcbf9037 5186 inst.operands[i].vectype = optype;
5287ad62 5187 inst.operands[i].present = 1;
037e8744
JB
5188
5189 if (skip_past_comma (&ptr) == SUCCESS)
5190 {
5191 /* Case 15. */
5192 i++;
5193
5194 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5195 goto wanted_arm;
5196
5197 inst.operands[i].reg = val;
5198 inst.operands[i].isreg = 1;
5199 inst.operands[i++].present = 1;
5200
5201 if (skip_past_comma (&ptr) == FAIL)
5202 goto wanted_comma;
5203
5204 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5205 goto wanted_arm;
5206
5207 inst.operands[i].reg = val;
5208 inst.operands[i].isreg = 1;
5209 inst.operands[i++].present = 1;
5210 }
5287ad62
JB
5211 }
5212 else
5213 {
dcbf9037 5214 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
5287ad62
JB
5215 return FAIL;
5216 }
5217 }
dcbf9037 5218 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
5219 {
5220 /* Cases 6, 7. */
5221 inst.operands[i].reg = val;
5222 inst.operands[i].isreg = 1;
5223 inst.operands[i++].present = 1;
5224
5225 if (skip_past_comma (&ptr) == FAIL)
5226 goto wanted_comma;
5227
dcbf9037 5228 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
5229 {
5230 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
5231 inst.operands[i].reg = val;
5232 inst.operands[i].isscalar = 1;
5233 inst.operands[i].present = 1;
dcbf9037 5234 inst.operands[i].vectype = optype;
5287ad62 5235 }
dcbf9037 5236 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
5237 {
5238 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
5239 inst.operands[i].reg = val;
5240 inst.operands[i].isreg = 1;
5241 inst.operands[i++].present = 1;
5242
5243 if (skip_past_comma (&ptr) == FAIL)
5244 goto wanted_comma;
5245
037e8744 5246 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
dcbf9037 5247 == FAIL)
5287ad62 5248 {
037e8744 5249 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
5287ad62
JB
5250 return FAIL;
5251 }
5252
5253 inst.operands[i].reg = val;
5254 inst.operands[i].isreg = 1;
037e8744
JB
5255 inst.operands[i].isvec = 1;
5256 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
dcbf9037 5257 inst.operands[i].vectype = optype;
5287ad62 5258 inst.operands[i].present = 1;
037e8744
JB
5259
5260 if (rtype == REG_TYPE_VFS)
5261 {
5262 /* Case 14. */
5263 i++;
5264 if (skip_past_comma (&ptr) == FAIL)
5265 goto wanted_comma;
5266 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
5267 &optype)) == FAIL)
5268 {
5269 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
5270 return FAIL;
5271 }
5272 inst.operands[i].reg = val;
5273 inst.operands[i].isreg = 1;
5274 inst.operands[i].isvec = 1;
5275 inst.operands[i].issingle = 1;
5276 inst.operands[i].vectype = optype;
5277 inst.operands[i].present = 1;
5278 }
5279 }
5280 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
5281 != FAIL)
5282 {
5283 /* Case 13. */
5284 inst.operands[i].reg = val;
5285 inst.operands[i].isreg = 1;
5286 inst.operands[i].isvec = 1;
5287 inst.operands[i].issingle = 1;
5288 inst.operands[i].vectype = optype;
5289 inst.operands[i++].present = 1;
5287ad62
JB
5290 }
5291 }
5292 else
5293 {
dcbf9037 5294 first_error (_("parse error"));
5287ad62
JB
5295 return FAIL;
5296 }
5297
5298 /* Successfully parsed the operands. Update args. */
5299 *which_operand = i;
5300 *str = ptr;
5301 return SUCCESS;
5302
5303 wanted_comma:
dcbf9037 5304 first_error (_("expected comma"));
5287ad62
JB
5305 return FAIL;
5306
5307 wanted_arm:
dcbf9037 5308 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 5309 return FAIL;
5287ad62
JB
5310}
5311
c19d1205
ZW
5312/* Matcher codes for parse_operands. */
5313enum operand_parse_code
5314{
5315 OP_stop, /* end of line */
5316
5317 OP_RR, /* ARM register */
5318 OP_RRnpc, /* ARM register, not r15 */
5319 OP_RRnpcb, /* ARM register, not r15, in square brackets */
5320 OP_RRw, /* ARM register, not r15, optional trailing ! */
5321 OP_RCP, /* Coprocessor number */
5322 OP_RCN, /* Coprocessor register */
5323 OP_RF, /* FPA register */
5324 OP_RVS, /* VFP single precision register */
5287ad62
JB
5325 OP_RVD, /* VFP double precision register (0..15) */
5326 OP_RND, /* Neon double precision register (0..31) */
5327 OP_RNQ, /* Neon quad precision register */
037e8744 5328 OP_RVSD, /* VFP single or double precision register */
5287ad62 5329 OP_RNDQ, /* Neon double or quad precision register */
037e8744 5330 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 5331 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
5332 OP_RVC, /* VFP control register */
5333 OP_RMF, /* Maverick F register */
5334 OP_RMD, /* Maverick D register */
5335 OP_RMFX, /* Maverick FX register */
5336 OP_RMDX, /* Maverick DX register */
5337 OP_RMAX, /* Maverick AX register */
5338 OP_RMDS, /* Maverick DSPSC register */
5339 OP_RIWR, /* iWMMXt wR register */
5340 OP_RIWC, /* iWMMXt wC register */
5341 OP_RIWG, /* iWMMXt wCG register */
5342 OP_RXA, /* XScale accumulator register */
5343
5344 OP_REGLST, /* ARM register list */
5345 OP_VRSLST, /* VFP single-precision register list */
5346 OP_VRDLST, /* VFP double-precision register list */
037e8744 5347 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
5348 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
5349 OP_NSTRLST, /* Neon element/structure list */
5350
5351 OP_NILO, /* Neon immediate/logic operands 2 or 2+3. (VBIC, VORR...) */
5352 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 5353 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
5287ad62 5354 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 5355 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
5356 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
5357 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
5358 OP_VMOV, /* Neon VMOV operands. */
5359 OP_RNDQ_IMVNb,/* Neon D or Q reg, or immediate good for VMVN. */
5360 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
5361
5362 OP_I0, /* immediate zero */
c19d1205
ZW
5363 OP_I7, /* immediate value 0 .. 7 */
5364 OP_I15, /* 0 .. 15 */
5365 OP_I16, /* 1 .. 16 */
5287ad62 5366 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
5367 OP_I31, /* 0 .. 31 */
5368 OP_I31w, /* 0 .. 31, optional trailing ! */
5369 OP_I32, /* 1 .. 32 */
5287ad62
JB
5370 OP_I32z, /* 0 .. 32 */
5371 OP_I63, /* 0 .. 63 */
c19d1205 5372 OP_I63s, /* -64 .. 63 */
5287ad62
JB
5373 OP_I64, /* 1 .. 64 */
5374 OP_I64z, /* 0 .. 64 */
c19d1205 5375 OP_I255, /* 0 .. 255 */
c19d1205
ZW
5376
5377 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
5378 OP_I7b, /* 0 .. 7 */
5379 OP_I15b, /* 0 .. 15 */
5380 OP_I31b, /* 0 .. 31 */
5381
5382 OP_SH, /* shifter operand */
4962c51a 5383 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 5384 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
5385 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
5386 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
5387 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
5388 OP_EXP, /* arbitrary expression */
5389 OP_EXPi, /* same, with optional immediate prefix */
5390 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 5391 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c19d1205
ZW
5392
5393 OP_CPSF, /* CPS flags */
5394 OP_ENDI, /* Endianness specifier */
5395 OP_PSR, /* CPSR/SPSR mask for msr */
5396 OP_COND, /* conditional code */
92e90b6e 5397 OP_TB, /* Table branch. */
c19d1205 5398
037e8744
JB
5399 OP_RVC_PSR, /* CPSR/SPSR mask for msr, or VFP control register. */
5400 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
5401
c19d1205
ZW
5402 OP_RRnpc_I0, /* ARM register or literal 0 */
5403 OP_RR_EXr, /* ARM register or expression with opt. reloc suff. */
5404 OP_RR_EXi, /* ARM register or expression with imm prefix */
5405 OP_RF_IF, /* FPA register or immediate */
5406 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 5407 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
5408
5409 /* Optional operands. */
5410 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
5411 OP_oI31b, /* 0 .. 31 */
5287ad62 5412 OP_oI32b, /* 1 .. 32 */
c19d1205
ZW
5413 OP_oIffffb, /* 0 .. 65535 */
5414 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
5415
5416 OP_oRR, /* ARM register */
5417 OP_oRRnpc, /* ARM register, not the PC */
5287ad62
JB
5418 OP_oRND, /* Optional Neon double precision register */
5419 OP_oRNQ, /* Optional Neon quad precision register */
5420 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 5421 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
5422 OP_oSHll, /* LSL immediate */
5423 OP_oSHar, /* ASR immediate */
5424 OP_oSHllar, /* LSL or ASR immediate */
5425 OP_oROR, /* ROR 0/8/16/24 */
62b3e311 5426 OP_oBARRIER, /* Option argument for a barrier instruction. */
c19d1205
ZW
5427
5428 OP_FIRST_OPTIONAL = OP_oI7b
5429};
a737bd4d 5430
c19d1205
ZW
5431/* Generic instruction operand parser. This does no encoding and no
5432 semantic validation; it merely squirrels values away in the inst
5433 structure. Returns SUCCESS or FAIL depending on whether the
5434 specified grammar matched. */
5435static int
ca3f61f7 5436parse_operands (char *str, const unsigned char *pattern)
c19d1205
ZW
5437{
5438 unsigned const char *upat = pattern;
5439 char *backtrack_pos = 0;
5440 const char *backtrack_error = 0;
5441 int i, val, backtrack_index = 0;
5287ad62 5442 enum arm_reg_type rtype;
4962c51a 5443 parse_operand_result result;
c19d1205
ZW
5444
5445#define po_char_or_fail(chr) do { \
5446 if (skip_past_char (&str, chr) == FAIL) \
5447 goto bad_args; \
5448} while (0)
5449
dcbf9037
JB
5450#define po_reg_or_fail(regtype) do { \
5451 val = arm_typed_reg_parse (&str, regtype, &rtype, \
5452 &inst.operands[i].vectype); \
5453 if (val == FAIL) \
5454 { \
5455 first_error (_(reg_expected_msgs[regtype])); \
5456 goto failure; \
5457 } \
5458 inst.operands[i].reg = val; \
5459 inst.operands[i].isreg = 1; \
5460 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
037e8744
JB
5461 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
5462 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
5463 || rtype == REG_TYPE_VFD \
5464 || rtype == REG_TYPE_NQ); \
c19d1205
ZW
5465} while (0)
5466
dcbf9037
JB
5467#define po_reg_or_goto(regtype, label) do { \
5468 val = arm_typed_reg_parse (&str, regtype, &rtype, \
5469 &inst.operands[i].vectype); \
5470 if (val == FAIL) \
5471 goto label; \
5472 \
5473 inst.operands[i].reg = val; \
5474 inst.operands[i].isreg = 1; \
5475 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
037e8744
JB
5476 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
5477 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
5478 || rtype == REG_TYPE_VFD \
5479 || rtype == REG_TYPE_NQ); \
c19d1205
ZW
5480} while (0)
5481
5482#define po_imm_or_fail(min, max, popt) do { \
5483 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
5484 goto failure; \
5485 inst.operands[i].imm = val; \
5486} while (0)
5487
dcbf9037
JB
5488#define po_scalar_or_goto(elsz, label) do { \
5489 val = parse_scalar (&str, elsz, &inst.operands[i].vectype); \
5490 if (val == FAIL) \
5491 goto label; \
5492 inst.operands[i].reg = val; \
5493 inst.operands[i].isscalar = 1; \
5287ad62
JB
5494} while (0)
5495
c19d1205
ZW
5496#define po_misc_or_fail(expr) do { \
5497 if (expr) \
5498 goto failure; \
5499} while (0)
5500
4962c51a
MS
5501#define po_misc_or_fail_no_backtrack(expr) do { \
5502 result = expr; \
5503 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK)\
5504 backtrack_pos = 0; \
5505 if (result != PARSE_OPERAND_SUCCESS) \
5506 goto failure; \
5507} while (0)
5508
c19d1205
ZW
5509 skip_whitespace (str);
5510
5511 for (i = 0; upat[i] != OP_stop; i++)
5512 {
5513 if (upat[i] >= OP_FIRST_OPTIONAL)
5514 {
5515 /* Remember where we are in case we need to backtrack. */
5516 assert (!backtrack_pos);
5517 backtrack_pos = str;
5518 backtrack_error = inst.error;
5519 backtrack_index = i;
5520 }
5521
5522 if (i > 0)
5523 po_char_or_fail (',');
5524
5525 switch (upat[i])
5526 {
5527 /* Registers */
5528 case OP_oRRnpc:
5529 case OP_RRnpc:
5530 case OP_oRR:
5531 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
5532 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
5533 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
5534 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
5535 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
5536 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
5287ad62
JB
5537 case OP_oRND:
5538 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
c19d1205
ZW
5539 case OP_RVC: po_reg_or_fail (REG_TYPE_VFC); break;
5540 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
5541 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
5542 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
5543 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
5544 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
5545 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
5546 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
5547 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
5548 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
5549 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
5287ad62
JB
5550 case OP_oRNQ:
5551 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
5552 case OP_oRNDQ:
5553 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
037e8744
JB
5554 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
5555 case OP_oRNSDQ:
5556 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
5287ad62
JB
5557
5558 /* Neon scalar. Using an element size of 8 means that some invalid
5559 scalars are accepted here, so deal with those in later code. */
5560 case OP_RNSC: po_scalar_or_goto (8, failure); break;
5561
5562 /* WARNING: We can expand to two operands here. This has the potential
5563 to totally confuse the backtracking mechanism! It will be OK at
5564 least as long as we don't try to use optional args as well,
5565 though. */
5566 case OP_NILO:
5567 {
5568 po_reg_or_goto (REG_TYPE_NDQ, try_imm);
466bbf93 5569 inst.operands[i].present = 1;
5287ad62
JB
5570 i++;
5571 skip_past_comma (&str);
5572 po_reg_or_goto (REG_TYPE_NDQ, one_reg_only);
5573 break;
5574 one_reg_only:
5575 /* Optional register operand was omitted. Unfortunately, it's in
5576 operands[i-1] and we need it to be in inst.operands[i]. Fix that
5577 here (this is a bit grotty). */
5578 inst.operands[i] = inst.operands[i-1];
5579 inst.operands[i-1].present = 0;
5580 break;
5581 try_imm:
5582 /* Immediate gets verified properly later, so accept any now. */
5583 po_imm_or_fail (INT_MIN, INT_MAX, TRUE);
5584 }
5585 break;
5586
5587 case OP_RNDQ_I0:
5588 {
5589 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
5590 break;
5591 try_imm0:
5592 po_imm_or_fail (0, 0, TRUE);
5593 }
5594 break;
5595
037e8744
JB
5596 case OP_RVSD_I0:
5597 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
5598 break;
5599
5287ad62
JB
5600 case OP_RR_RNSC:
5601 {
5602 po_scalar_or_goto (8, try_rr);
5603 break;
5604 try_rr:
5605 po_reg_or_fail (REG_TYPE_RN);
5606 }
5607 break;
5608
037e8744
JB
5609 case OP_RNSDQ_RNSC:
5610 {
5611 po_scalar_or_goto (8, try_nsdq);
5612 break;
5613 try_nsdq:
5614 po_reg_or_fail (REG_TYPE_NSDQ);
5615 }
5616 break;
5617
5287ad62
JB
5618 case OP_RNDQ_RNSC:
5619 {
5620 po_scalar_or_goto (8, try_ndq);
5621 break;
5622 try_ndq:
5623 po_reg_or_fail (REG_TYPE_NDQ);
5624 }
5625 break;
5626
5627 case OP_RND_RNSC:
5628 {
5629 po_scalar_or_goto (8, try_vfd);
5630 break;
5631 try_vfd:
5632 po_reg_or_fail (REG_TYPE_VFD);
5633 }
5634 break;
5635
5636 case OP_VMOV:
5637 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
5638 not careful then bad things might happen. */
5639 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
5640 break;
5641
5642 case OP_RNDQ_IMVNb:
5643 {
5644 po_reg_or_goto (REG_TYPE_NDQ, try_mvnimm);
5645 break;
5646 try_mvnimm:
5647 /* There's a possibility of getting a 64-bit immediate here, so
5648 we need special handling. */
5649 if (parse_big_immediate (&str, i) == FAIL)
5650 {
5651 inst.error = _("immediate value is out of range");
5652 goto failure;
5653 }
5654 }
5655 break;
5656
5657 case OP_RNDQ_I63b:
5658 {
5659 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
5660 break;
5661 try_shimm:
5662 po_imm_or_fail (0, 63, TRUE);
5663 }
5664 break;
c19d1205
ZW
5665
5666 case OP_RRnpcb:
5667 po_char_or_fail ('[');
5668 po_reg_or_fail (REG_TYPE_RN);
5669 po_char_or_fail (']');
5670 break;
a737bd4d 5671
c19d1205
ZW
5672 case OP_RRw:
5673 po_reg_or_fail (REG_TYPE_RN);
5674 if (skip_past_char (&str, '!') == SUCCESS)
5675 inst.operands[i].writeback = 1;
5676 break;
5677
5678 /* Immediates */
5679 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
5680 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
5681 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
5287ad62 5682 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
5683 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
5684 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
5287ad62 5685 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 5686 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
5287ad62
JB
5687 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
5688 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
5689 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 5690 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
5691
5692 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
5693 case OP_oI7b:
5694 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
5695 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
5696 case OP_oI31b:
5697 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
5287ad62 5698 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
c19d1205
ZW
5699 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
5700
5701 /* Immediate variants */
5702 case OP_oI255c:
5703 po_char_or_fail ('{');
5704 po_imm_or_fail (0, 255, TRUE);
5705 po_char_or_fail ('}');
5706 break;
5707
5708 case OP_I31w:
5709 /* The expression parser chokes on a trailing !, so we have
5710 to find it first and zap it. */
5711 {
5712 char *s = str;
5713 while (*s && *s != ',')
5714 s++;
5715 if (s[-1] == '!')
5716 {
5717 s[-1] = '\0';
5718 inst.operands[i].writeback = 1;
5719 }
5720 po_imm_or_fail (0, 31, TRUE);
5721 if (str == s - 1)
5722 str = s;
5723 }
5724 break;
5725
5726 /* Expressions */
5727 case OP_EXPi: EXPi:
5728 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
5729 GE_OPT_PREFIX));
5730 break;
5731
5732 case OP_EXP:
5733 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
5734 GE_NO_PREFIX));
5735 break;
5736
5737 case OP_EXPr: EXPr:
5738 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
5739 GE_NO_PREFIX));
5740 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 5741 {
c19d1205
ZW
5742 val = parse_reloc (&str);
5743 if (val == -1)
5744 {
5745 inst.error = _("unrecognized relocation suffix");
5746 goto failure;
5747 }
5748 else if (val != BFD_RELOC_UNUSED)
5749 {
5750 inst.operands[i].imm = val;
5751 inst.operands[i].hasreloc = 1;
5752 }
a737bd4d 5753 }
c19d1205 5754 break;
a737bd4d 5755
b6895b4f
PB
5756 /* Operand for MOVW or MOVT. */
5757 case OP_HALF:
5758 po_misc_or_fail (parse_half (&str));
5759 break;
5760
c19d1205
ZW
5761 /* Register or expression */
5762 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
5763 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 5764
c19d1205
ZW
5765 /* Register or immediate */
5766 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
5767 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 5768
c19d1205
ZW
5769 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
5770 IF:
5771 if (!is_immediate_prefix (*str))
5772 goto bad_args;
5773 str++;
5774 val = parse_fpa_immediate (&str);
5775 if (val == FAIL)
5776 goto failure;
5777 /* FPA immediates are encoded as registers 8-15.
5778 parse_fpa_immediate has already applied the offset. */
5779 inst.operands[i].reg = val;
5780 inst.operands[i].isreg = 1;
5781 break;
09d92015 5782
c19d1205
ZW
5783 /* Two kinds of register */
5784 case OP_RIWR_RIWC:
5785 {
5786 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
5787 if (!rege
5788 || (rege->type != REG_TYPE_MMXWR
5789 && rege->type != REG_TYPE_MMXWC
5790 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
5791 {
5792 inst.error = _("iWMMXt data or control register expected");
5793 goto failure;
5794 }
5795 inst.operands[i].reg = rege->number;
5796 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
5797 }
5798 break;
09d92015 5799
41adaa5c
JM
5800 case OP_RIWC_RIWG:
5801 {
5802 struct reg_entry *rege = arm_reg_parse_multi (&str);
5803 if (!rege
5804 || (rege->type != REG_TYPE_MMXWC
5805 && rege->type != REG_TYPE_MMXWCG))
5806 {
5807 inst.error = _("iWMMXt control register expected");
5808 goto failure;
5809 }
5810 inst.operands[i].reg = rege->number;
5811 inst.operands[i].isreg = 1;
5812 }
5813 break;
5814
c19d1205
ZW
5815 /* Misc */
5816 case OP_CPSF: val = parse_cps_flags (&str); break;
5817 case OP_ENDI: val = parse_endian_specifier (&str); break;
5818 case OP_oROR: val = parse_ror (&str); break;
5819 case OP_PSR: val = parse_psr (&str); break;
5820 case OP_COND: val = parse_cond (&str); break;
62b3e311 5821 case OP_oBARRIER:val = parse_barrier (&str); break;
c19d1205 5822
037e8744
JB
5823 case OP_RVC_PSR:
5824 po_reg_or_goto (REG_TYPE_VFC, try_psr);
5825 inst.operands[i].isvec = 1; /* Mark VFP control reg as vector. */
5826 break;
5827 try_psr:
5828 val = parse_psr (&str);
5829 break;
5830
5831 case OP_APSR_RR:
5832 po_reg_or_goto (REG_TYPE_RN, try_apsr);
5833 break;
5834 try_apsr:
5835 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
5836 instruction). */
5837 if (strncasecmp (str, "APSR_", 5) == 0)
5838 {
5839 unsigned found = 0;
5840 str += 5;
5841 while (found < 15)
5842 switch (*str++)
5843 {
5844 case 'c': found = (found & 1) ? 16 : found | 1; break;
5845 case 'n': found = (found & 2) ? 16 : found | 2; break;
5846 case 'z': found = (found & 4) ? 16 : found | 4; break;
5847 case 'v': found = (found & 8) ? 16 : found | 8; break;
5848 default: found = 16;
5849 }
5850 if (found != 15)
5851 goto failure;
5852 inst.operands[i].isvec = 1;
5853 }
5854 else
5855 goto failure;
5856 break;
5857
92e90b6e
PB
5858 case OP_TB:
5859 po_misc_or_fail (parse_tb (&str));
5860 break;
5861
c19d1205
ZW
5862 /* Register lists */
5863 case OP_REGLST:
5864 val = parse_reg_list (&str);
5865 if (*str == '^')
5866 {
5867 inst.operands[1].writeback = 1;
5868 str++;
5869 }
5870 break;
09d92015 5871
c19d1205 5872 case OP_VRSLST:
5287ad62 5873 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 5874 break;
09d92015 5875
c19d1205 5876 case OP_VRDLST:
5287ad62 5877 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 5878 break;
a737bd4d 5879
037e8744
JB
5880 case OP_VRSDLST:
5881 /* Allow Q registers too. */
5882 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
5883 REGLIST_NEON_D);
5884 if (val == FAIL)
5885 {
5886 inst.error = NULL;
5887 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
5888 REGLIST_VFP_S);
5889 inst.operands[i].issingle = 1;
5890 }
5891 break;
5892
5287ad62
JB
5893 case OP_NRDLST:
5894 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
5895 REGLIST_NEON_D);
5896 break;
5897
5898 case OP_NSTRLST:
dcbf9037
JB
5899 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
5900 &inst.operands[i].vectype);
5287ad62
JB
5901 break;
5902
c19d1205
ZW
5903 /* Addressing modes */
5904 case OP_ADDR:
5905 po_misc_or_fail (parse_address (&str, i));
5906 break;
09d92015 5907
4962c51a
MS
5908 case OP_ADDRGLDR:
5909 po_misc_or_fail_no_backtrack (
5910 parse_address_group_reloc (&str, i, GROUP_LDR));
5911 break;
5912
5913 case OP_ADDRGLDRS:
5914 po_misc_or_fail_no_backtrack (
5915 parse_address_group_reloc (&str, i, GROUP_LDRS));
5916 break;
5917
5918 case OP_ADDRGLDC:
5919 po_misc_or_fail_no_backtrack (
5920 parse_address_group_reloc (&str, i, GROUP_LDC));
5921 break;
5922
c19d1205
ZW
5923 case OP_SH:
5924 po_misc_or_fail (parse_shifter_operand (&str, i));
5925 break;
09d92015 5926
4962c51a
MS
5927 case OP_SHG:
5928 po_misc_or_fail_no_backtrack (
5929 parse_shifter_operand_group_reloc (&str, i));
5930 break;
5931
c19d1205
ZW
5932 case OP_oSHll:
5933 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
5934 break;
09d92015 5935
c19d1205
ZW
5936 case OP_oSHar:
5937 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
5938 break;
09d92015 5939
c19d1205
ZW
5940 case OP_oSHllar:
5941 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
5942 break;
09d92015 5943
c19d1205
ZW
5944 default:
5945 as_fatal ("unhandled operand code %d", upat[i]);
5946 }
09d92015 5947
c19d1205
ZW
5948 /* Various value-based sanity checks and shared operations. We
5949 do not signal immediate failures for the register constraints;
5950 this allows a syntax error to take precedence. */
5951 switch (upat[i])
5952 {
5953 case OP_oRRnpc:
5954 case OP_RRnpc:
5955 case OP_RRnpcb:
5956 case OP_RRw:
5957 case OP_RRnpc_I0:
5958 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
5959 inst.error = BAD_PC;
5960 break;
09d92015 5961
c19d1205
ZW
5962 case OP_CPSF:
5963 case OP_ENDI:
5964 case OP_oROR:
5965 case OP_PSR:
037e8744 5966 case OP_RVC_PSR:
c19d1205 5967 case OP_COND:
62b3e311 5968 case OP_oBARRIER:
c19d1205
ZW
5969 case OP_REGLST:
5970 case OP_VRSLST:
5971 case OP_VRDLST:
037e8744 5972 case OP_VRSDLST:
5287ad62
JB
5973 case OP_NRDLST:
5974 case OP_NSTRLST:
c19d1205
ZW
5975 if (val == FAIL)
5976 goto failure;
5977 inst.operands[i].imm = val;
5978 break;
a737bd4d 5979
c19d1205
ZW
5980 default:
5981 break;
5982 }
09d92015 5983
c19d1205
ZW
5984 /* If we get here, this operand was successfully parsed. */
5985 inst.operands[i].present = 1;
5986 continue;
09d92015 5987
c19d1205 5988 bad_args:
09d92015 5989 inst.error = BAD_ARGS;
c19d1205
ZW
5990
5991 failure:
5992 if (!backtrack_pos)
d252fdde
PB
5993 {
5994 /* The parse routine should already have set inst.error, but set a
5995 defaut here just in case. */
5996 if (!inst.error)
5997 inst.error = _("syntax error");
5998 return FAIL;
5999 }
c19d1205
ZW
6000
6001 /* Do not backtrack over a trailing optional argument that
6002 absorbed some text. We will only fail again, with the
6003 'garbage following instruction' error message, which is
6004 probably less helpful than the current one. */
6005 if (backtrack_index == i && backtrack_pos != str
6006 && upat[i+1] == OP_stop)
d252fdde
PB
6007 {
6008 if (!inst.error)
6009 inst.error = _("syntax error");
6010 return FAIL;
6011 }
c19d1205
ZW
6012
6013 /* Try again, skipping the optional argument at backtrack_pos. */
6014 str = backtrack_pos;
6015 inst.error = backtrack_error;
6016 inst.operands[backtrack_index].present = 0;
6017 i = backtrack_index;
6018 backtrack_pos = 0;
09d92015 6019 }
09d92015 6020
c19d1205
ZW
6021 /* Check that we have parsed all the arguments. */
6022 if (*str != '\0' && !inst.error)
6023 inst.error = _("garbage following instruction");
09d92015 6024
c19d1205 6025 return inst.error ? FAIL : SUCCESS;
09d92015
MM
6026}
6027
c19d1205
ZW
6028#undef po_char_or_fail
6029#undef po_reg_or_fail
6030#undef po_reg_or_goto
6031#undef po_imm_or_fail
5287ad62 6032#undef po_scalar_or_fail
c19d1205
ZW
6033\f
6034/* Shorthand macro for instruction encoding functions issuing errors. */
6035#define constraint(expr, err) do { \
6036 if (expr) \
6037 { \
6038 inst.error = err; \
6039 return; \
6040 } \
6041} while (0)
6042
6043/* Functions for operand encoding. ARM, then Thumb. */
6044
6045#define rotate_left(v, n) (v << n | v >> (32 - n))
6046
6047/* If VAL can be encoded in the immediate field of an ARM instruction,
6048 return the encoded form. Otherwise, return FAIL. */
6049
6050static unsigned int
6051encode_arm_immediate (unsigned int val)
09d92015 6052{
c19d1205
ZW
6053 unsigned int a, i;
6054
6055 for (i = 0; i < 32; i += 2)
6056 if ((a = rotate_left (val, i)) <= 0xff)
6057 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
6058
6059 return FAIL;
09d92015
MM
6060}
6061
c19d1205
ZW
6062/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
6063 return the encoded form. Otherwise, return FAIL. */
6064static unsigned int
6065encode_thumb32_immediate (unsigned int val)
09d92015 6066{
c19d1205 6067 unsigned int a, i;
09d92015 6068
9c3c69f2 6069 if (val <= 0xff)
c19d1205 6070 return val;
a737bd4d 6071
9c3c69f2 6072 for (i = 1; i <= 24; i++)
09d92015 6073 {
9c3c69f2
PB
6074 a = val >> i;
6075 if ((val & ~(0xff << i)) == 0)
6076 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 6077 }
a737bd4d 6078
c19d1205
ZW
6079 a = val & 0xff;
6080 if (val == ((a << 16) | a))
6081 return 0x100 | a;
6082 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
6083 return 0x300 | a;
09d92015 6084
c19d1205
ZW
6085 a = val & 0xff00;
6086 if (val == ((a << 16) | a))
6087 return 0x200 | (a >> 8);
a737bd4d 6088
c19d1205 6089 return FAIL;
09d92015 6090}
5287ad62 6091/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
6092
6093static void
5287ad62
JB
6094encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
6095{
6096 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
6097 && reg > 15)
6098 {
6099 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3))
6100 {
6101 if (thumb_mode)
6102 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
6103 fpu_vfp_ext_v3);
6104 else
6105 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
6106 fpu_vfp_ext_v3);
6107 }
6108 else
6109 {
dcbf9037 6110 first_error (_("D register out of range for selected VFP version"));
5287ad62
JB
6111 return;
6112 }
6113 }
6114
c19d1205 6115 switch (pos)
09d92015 6116 {
c19d1205
ZW
6117 case VFP_REG_Sd:
6118 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
6119 break;
6120
6121 case VFP_REG_Sn:
6122 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
6123 break;
6124
6125 case VFP_REG_Sm:
6126 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
6127 break;
6128
5287ad62
JB
6129 case VFP_REG_Dd:
6130 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
6131 break;
6132
6133 case VFP_REG_Dn:
6134 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
6135 break;
6136
6137 case VFP_REG_Dm:
6138 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
6139 break;
6140
c19d1205
ZW
6141 default:
6142 abort ();
09d92015 6143 }
09d92015
MM
6144}
6145
c19d1205 6146/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 6147 if any, is handled by md_apply_fix. */
09d92015 6148static void
c19d1205 6149encode_arm_shift (int i)
09d92015 6150{
c19d1205
ZW
6151 if (inst.operands[i].shift_kind == SHIFT_RRX)
6152 inst.instruction |= SHIFT_ROR << 5;
6153 else
09d92015 6154 {
c19d1205
ZW
6155 inst.instruction |= inst.operands[i].shift_kind << 5;
6156 if (inst.operands[i].immisreg)
6157 {
6158 inst.instruction |= SHIFT_BY_REG;
6159 inst.instruction |= inst.operands[i].imm << 8;
6160 }
6161 else
6162 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 6163 }
c19d1205 6164}
09d92015 6165
c19d1205
ZW
6166static void
6167encode_arm_shifter_operand (int i)
6168{
6169 if (inst.operands[i].isreg)
09d92015 6170 {
c19d1205
ZW
6171 inst.instruction |= inst.operands[i].reg;
6172 encode_arm_shift (i);
09d92015 6173 }
c19d1205
ZW
6174 else
6175 inst.instruction |= INST_IMMEDIATE;
09d92015
MM
6176}
6177
c19d1205 6178/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 6179static void
c19d1205 6180encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 6181{
c19d1205
ZW
6182 assert (inst.operands[i].isreg);
6183 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 6184
c19d1205 6185 if (inst.operands[i].preind)
09d92015 6186 {
c19d1205
ZW
6187 if (is_t)
6188 {
6189 inst.error = _("instruction does not accept preindexed addressing");
6190 return;
6191 }
6192 inst.instruction |= PRE_INDEX;
6193 if (inst.operands[i].writeback)
6194 inst.instruction |= WRITE_BACK;
09d92015 6195
c19d1205
ZW
6196 }
6197 else if (inst.operands[i].postind)
6198 {
6199 assert (inst.operands[i].writeback);
6200 if (is_t)
6201 inst.instruction |= WRITE_BACK;
6202 }
6203 else /* unindexed - only for coprocessor */
09d92015 6204 {
c19d1205 6205 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
6206 return;
6207 }
6208
c19d1205
ZW
6209 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
6210 && (((inst.instruction & 0x000f0000) >> 16)
6211 == ((inst.instruction & 0x0000f000) >> 12)))
6212 as_warn ((inst.instruction & LOAD_BIT)
6213 ? _("destination register same as write-back base")
6214 : _("source register same as write-back base"));
09d92015
MM
6215}
6216
c19d1205
ZW
6217/* inst.operands[i] was set up by parse_address. Encode it into an
6218 ARM-format mode 2 load or store instruction. If is_t is true,
6219 reject forms that cannot be used with a T instruction (i.e. not
6220 post-indexed). */
a737bd4d 6221static void
c19d1205 6222encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 6223{
c19d1205 6224 encode_arm_addr_mode_common (i, is_t);
a737bd4d 6225
c19d1205 6226 if (inst.operands[i].immisreg)
09d92015 6227 {
c19d1205
ZW
6228 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
6229 inst.instruction |= inst.operands[i].imm;
6230 if (!inst.operands[i].negative)
6231 inst.instruction |= INDEX_UP;
6232 if (inst.operands[i].shifted)
6233 {
6234 if (inst.operands[i].shift_kind == SHIFT_RRX)
6235 inst.instruction |= SHIFT_ROR << 5;
6236 else
6237 {
6238 inst.instruction |= inst.operands[i].shift_kind << 5;
6239 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
6240 }
6241 }
09d92015 6242 }
c19d1205 6243 else /* immediate offset in inst.reloc */
09d92015 6244 {
c19d1205
ZW
6245 if (inst.reloc.type == BFD_RELOC_UNUSED)
6246 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
09d92015 6247 }
09d92015
MM
6248}
6249
c19d1205
ZW
6250/* inst.operands[i] was set up by parse_address. Encode it into an
6251 ARM-format mode 3 load or store instruction. Reject forms that
6252 cannot be used with such instructions. If is_t is true, reject
6253 forms that cannot be used with a T instruction (i.e. not
6254 post-indexed). */
6255static void
6256encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 6257{
c19d1205 6258 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 6259 {
c19d1205
ZW
6260 inst.error = _("instruction does not accept scaled register index");
6261 return;
09d92015 6262 }
a737bd4d 6263
c19d1205 6264 encode_arm_addr_mode_common (i, is_t);
a737bd4d 6265
c19d1205
ZW
6266 if (inst.operands[i].immisreg)
6267 {
6268 inst.instruction |= inst.operands[i].imm;
6269 if (!inst.operands[i].negative)
6270 inst.instruction |= INDEX_UP;
6271 }
6272 else /* immediate offset in inst.reloc */
6273 {
6274 inst.instruction |= HWOFFSET_IMM;
6275 if (inst.reloc.type == BFD_RELOC_UNUSED)
6276 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
c19d1205 6277 }
a737bd4d
NC
6278}
6279
c19d1205
ZW
6280/* inst.operands[i] was set up by parse_address. Encode it into an
6281 ARM-format instruction. Reject all forms which cannot be encoded
6282 into a coprocessor load/store instruction. If wb_ok is false,
6283 reject use of writeback; if unind_ok is false, reject use of
6284 unindexed addressing. If reloc_override is not 0, use it instead
4962c51a
MS
6285 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
6286 (in which case it is preserved). */
09d92015 6287
c19d1205
ZW
6288static int
6289encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
09d92015 6290{
c19d1205 6291 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 6292
c19d1205 6293 assert (!(inst.operands[i].preind && inst.operands[i].postind));
09d92015 6294
c19d1205 6295 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
09d92015 6296 {
c19d1205
ZW
6297 assert (!inst.operands[i].writeback);
6298 if (!unind_ok)
6299 {
6300 inst.error = _("instruction does not support unindexed addressing");
6301 return FAIL;
6302 }
6303 inst.instruction |= inst.operands[i].imm;
6304 inst.instruction |= INDEX_UP;
6305 return SUCCESS;
09d92015 6306 }
a737bd4d 6307
c19d1205
ZW
6308 if (inst.operands[i].preind)
6309 inst.instruction |= PRE_INDEX;
a737bd4d 6310
c19d1205 6311 if (inst.operands[i].writeback)
09d92015 6312 {
c19d1205
ZW
6313 if (inst.operands[i].reg == REG_PC)
6314 {
6315 inst.error = _("pc may not be used with write-back");
6316 return FAIL;
6317 }
6318 if (!wb_ok)
6319 {
6320 inst.error = _("instruction does not support writeback");
6321 return FAIL;
6322 }
6323 inst.instruction |= WRITE_BACK;
09d92015 6324 }
a737bd4d 6325
c19d1205
ZW
6326 if (reloc_override)
6327 inst.reloc.type = reloc_override;
4962c51a
MS
6328 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
6329 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
6330 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
6331 {
6332 if (thumb_mode)
6333 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
6334 else
6335 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
6336 }
6337
c19d1205
ZW
6338 return SUCCESS;
6339}
a737bd4d 6340
c19d1205
ZW
6341/* inst.reloc.exp describes an "=expr" load pseudo-operation.
6342 Determine whether it can be performed with a move instruction; if
6343 it can, convert inst.instruction to that move instruction and
6344 return 1; if it can't, convert inst.instruction to a literal-pool
6345 load and return 0. If this is not a valid thing to do in the
6346 current context, set inst.error and return 1.
a737bd4d 6347
c19d1205
ZW
6348 inst.operands[i] describes the destination register. */
6349
6350static int
6351move_or_literal_pool (int i, bfd_boolean thumb_p, bfd_boolean mode_3)
6352{
53365c0d
PB
6353 unsigned long tbit;
6354
6355 if (thumb_p)
6356 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
6357 else
6358 tbit = LOAD_BIT;
6359
6360 if ((inst.instruction & tbit) == 0)
09d92015 6361 {
c19d1205
ZW
6362 inst.error = _("invalid pseudo operation");
6363 return 1;
09d92015 6364 }
c19d1205 6365 if (inst.reloc.exp.X_op != O_constant && inst.reloc.exp.X_op != O_symbol)
09d92015
MM
6366 {
6367 inst.error = _("constant expression expected");
c19d1205 6368 return 1;
09d92015 6369 }
c19d1205 6370 if (inst.reloc.exp.X_op == O_constant)
09d92015 6371 {
c19d1205
ZW
6372 if (thumb_p)
6373 {
53365c0d 6374 if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
c19d1205
ZW
6375 {
6376 /* This can be done with a mov(1) instruction. */
6377 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
6378 inst.instruction |= inst.reloc.exp.X_add_number;
6379 return 1;
6380 }
6381 }
6382 else
6383 {
6384 int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
6385 if (value != FAIL)
6386 {
6387 /* This can be done with a mov instruction. */
6388 inst.instruction &= LITERAL_MASK;
6389 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
6390 inst.instruction |= value & 0xfff;
6391 return 1;
6392 }
09d92015 6393
c19d1205
ZW
6394 value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
6395 if (value != FAIL)
6396 {
6397 /* This can be done with a mvn instruction. */
6398 inst.instruction &= LITERAL_MASK;
6399 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
6400 inst.instruction |= value & 0xfff;
6401 return 1;
6402 }
6403 }
09d92015
MM
6404 }
6405
c19d1205
ZW
6406 if (add_to_lit_pool () == FAIL)
6407 {
6408 inst.error = _("literal pool insertion failed");
6409 return 1;
6410 }
6411 inst.operands[1].reg = REG_PC;
6412 inst.operands[1].isreg = 1;
6413 inst.operands[1].preind = 1;
6414 inst.reloc.pc_rel = 1;
6415 inst.reloc.type = (thumb_p
6416 ? BFD_RELOC_ARM_THUMB_OFFSET
6417 : (mode_3
6418 ? BFD_RELOC_ARM_HWLITERAL
6419 : BFD_RELOC_ARM_LITERAL));
6420 return 0;
09d92015
MM
6421}
6422
c19d1205
ZW
6423/* Functions for instruction encoding, sorted by subarchitecture.
6424 First some generics; their names are taken from the conventional
6425 bit positions for register arguments in ARM format instructions. */
09d92015 6426
a737bd4d 6427static void
c19d1205 6428do_noargs (void)
09d92015 6429{
c19d1205 6430}
a737bd4d 6431
c19d1205
ZW
6432static void
6433do_rd (void)
6434{
6435 inst.instruction |= inst.operands[0].reg << 12;
6436}
a737bd4d 6437
c19d1205
ZW
6438static void
6439do_rd_rm (void)
6440{
6441 inst.instruction |= inst.operands[0].reg << 12;
6442 inst.instruction |= inst.operands[1].reg;
6443}
09d92015 6444
c19d1205
ZW
6445static void
6446do_rd_rn (void)
6447{
6448 inst.instruction |= inst.operands[0].reg << 12;
6449 inst.instruction |= inst.operands[1].reg << 16;
6450}
a737bd4d 6451
c19d1205
ZW
6452static void
6453do_rn_rd (void)
6454{
6455 inst.instruction |= inst.operands[0].reg << 16;
6456 inst.instruction |= inst.operands[1].reg << 12;
6457}
09d92015 6458
c19d1205
ZW
6459static void
6460do_rd_rm_rn (void)
6461{
9a64e435 6462 unsigned Rn = inst.operands[2].reg;
708587a4 6463 /* Enforce restrictions on SWP instruction. */
9a64e435
PB
6464 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
6465 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
6466 _("Rn must not overlap other operands"));
c19d1205
ZW
6467 inst.instruction |= inst.operands[0].reg << 12;
6468 inst.instruction |= inst.operands[1].reg;
9a64e435 6469 inst.instruction |= Rn << 16;
c19d1205 6470}
09d92015 6471
c19d1205
ZW
6472static void
6473do_rd_rn_rm (void)
6474{
6475 inst.instruction |= inst.operands[0].reg << 12;
6476 inst.instruction |= inst.operands[1].reg << 16;
6477 inst.instruction |= inst.operands[2].reg;
6478}
a737bd4d 6479
c19d1205
ZW
6480static void
6481do_rm_rd_rn (void)
6482{
6483 inst.instruction |= inst.operands[0].reg;
6484 inst.instruction |= inst.operands[1].reg << 12;
6485 inst.instruction |= inst.operands[2].reg << 16;
6486}
09d92015 6487
c19d1205
ZW
6488static void
6489do_imm0 (void)
6490{
6491 inst.instruction |= inst.operands[0].imm;
6492}
09d92015 6493
c19d1205
ZW
6494static void
6495do_rd_cpaddr (void)
6496{
6497 inst.instruction |= inst.operands[0].reg << 12;
6498 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 6499}
a737bd4d 6500
c19d1205
ZW
6501/* ARM instructions, in alphabetical order by function name (except
6502 that wrapper functions appear immediately after the function they
6503 wrap). */
09d92015 6504
c19d1205
ZW
6505/* This is a pseudo-op of the form "adr rd, label" to be converted
6506 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
6507
6508static void
c19d1205 6509do_adr (void)
09d92015 6510{
c19d1205 6511 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 6512
c19d1205
ZW
6513 /* Frag hacking will turn this into a sub instruction if the offset turns
6514 out to be negative. */
6515 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 6516 inst.reloc.pc_rel = 1;
2fc8bdac 6517 inst.reloc.exp.X_add_number -= 8;
c19d1205 6518}
b99bd4ef 6519
c19d1205
ZW
6520/* This is a pseudo-op of the form "adrl rd, label" to be converted
6521 into a relative address of the form:
6522 add rd, pc, #low(label-.-8)"
6523 add rd, rd, #high(label-.-8)" */
b99bd4ef 6524
c19d1205
ZW
6525static void
6526do_adrl (void)
6527{
6528 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 6529
c19d1205
ZW
6530 /* Frag hacking will turn this into a sub instruction if the offset turns
6531 out to be negative. */
6532 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
6533 inst.reloc.pc_rel = 1;
6534 inst.size = INSN_SIZE * 2;
2fc8bdac 6535 inst.reloc.exp.X_add_number -= 8;
b99bd4ef
NC
6536}
6537
b99bd4ef 6538static void
c19d1205 6539do_arit (void)
b99bd4ef 6540{
c19d1205
ZW
6541 if (!inst.operands[1].present)
6542 inst.operands[1].reg = inst.operands[0].reg;
6543 inst.instruction |= inst.operands[0].reg << 12;
6544 inst.instruction |= inst.operands[1].reg << 16;
6545 encode_arm_shifter_operand (2);
6546}
b99bd4ef 6547
62b3e311
PB
6548static void
6549do_barrier (void)
6550{
6551 if (inst.operands[0].present)
6552 {
6553 constraint ((inst.instruction & 0xf0) != 0x40
6554 && inst.operands[0].imm != 0xf,
6555 "bad barrier type");
6556 inst.instruction |= inst.operands[0].imm;
6557 }
6558 else
6559 inst.instruction |= 0xf;
6560}
6561
c19d1205
ZW
6562static void
6563do_bfc (void)
6564{
6565 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
6566 constraint (msb > 32, _("bit-field extends past end of register"));
6567 /* The instruction encoding stores the LSB and MSB,
6568 not the LSB and width. */
6569 inst.instruction |= inst.operands[0].reg << 12;
6570 inst.instruction |= inst.operands[1].imm << 7;
6571 inst.instruction |= (msb - 1) << 16;
6572}
b99bd4ef 6573
c19d1205
ZW
6574static void
6575do_bfi (void)
6576{
6577 unsigned int msb;
b99bd4ef 6578
c19d1205
ZW
6579 /* #0 in second position is alternative syntax for bfc, which is
6580 the same instruction but with REG_PC in the Rm field. */
6581 if (!inst.operands[1].isreg)
6582 inst.operands[1].reg = REG_PC;
b99bd4ef 6583
c19d1205
ZW
6584 msb = inst.operands[2].imm + inst.operands[3].imm;
6585 constraint (msb > 32, _("bit-field extends past end of register"));
6586 /* The instruction encoding stores the LSB and MSB,
6587 not the LSB and width. */
6588 inst.instruction |= inst.operands[0].reg << 12;
6589 inst.instruction |= inst.operands[1].reg;
6590 inst.instruction |= inst.operands[2].imm << 7;
6591 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
6592}
6593
b99bd4ef 6594static void
c19d1205 6595do_bfx (void)
b99bd4ef 6596{
c19d1205
ZW
6597 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
6598 _("bit-field extends past end of register"));
6599 inst.instruction |= inst.operands[0].reg << 12;
6600 inst.instruction |= inst.operands[1].reg;
6601 inst.instruction |= inst.operands[2].imm << 7;
6602 inst.instruction |= (inst.operands[3].imm - 1) << 16;
6603}
09d92015 6604
c19d1205
ZW
6605/* ARM V5 breakpoint instruction (argument parse)
6606 BKPT <16 bit unsigned immediate>
6607 Instruction is not conditional.
6608 The bit pattern given in insns[] has the COND_ALWAYS condition,
6609 and it is an error if the caller tried to override that. */
b99bd4ef 6610
c19d1205
ZW
6611static void
6612do_bkpt (void)
6613{
6614 /* Top 12 of 16 bits to bits 19:8. */
6615 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 6616
c19d1205
ZW
6617 /* Bottom 4 of 16 bits to bits 3:0. */
6618 inst.instruction |= inst.operands[0].imm & 0xf;
6619}
09d92015 6620
c19d1205
ZW
6621static void
6622encode_branch (int default_reloc)
6623{
6624 if (inst.operands[0].hasreloc)
6625 {
6626 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32,
6627 _("the only suffix valid here is '(plt)'"));
6628 inst.reloc.type = BFD_RELOC_ARM_PLT32;
c19d1205 6629 }
b99bd4ef 6630 else
c19d1205
ZW
6631 {
6632 inst.reloc.type = default_reloc;
c19d1205 6633 }
2fc8bdac 6634 inst.reloc.pc_rel = 1;
b99bd4ef
NC
6635}
6636
b99bd4ef 6637static void
c19d1205 6638do_branch (void)
b99bd4ef 6639{
39b41c9c
PB
6640#ifdef OBJ_ELF
6641 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
6642 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
6643 else
6644#endif
6645 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
6646}
6647
6648static void
6649do_bl (void)
6650{
6651#ifdef OBJ_ELF
6652 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
6653 {
6654 if (inst.cond == COND_ALWAYS)
6655 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
6656 else
6657 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
6658 }
6659 else
6660#endif
6661 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 6662}
b99bd4ef 6663
c19d1205
ZW
6664/* ARM V5 branch-link-exchange instruction (argument parse)
6665 BLX <target_addr> ie BLX(1)
6666 BLX{<condition>} <Rm> ie BLX(2)
6667 Unfortunately, there are two different opcodes for this mnemonic.
6668 So, the insns[].value is not used, and the code here zaps values
6669 into inst.instruction.
6670 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 6671
c19d1205
ZW
6672static void
6673do_blx (void)
6674{
6675 if (inst.operands[0].isreg)
b99bd4ef 6676 {
c19d1205
ZW
6677 /* Arg is a register; the opcode provided by insns[] is correct.
6678 It is not illegal to do "blx pc", just useless. */
6679 if (inst.operands[0].reg == REG_PC)
6680 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 6681
c19d1205
ZW
6682 inst.instruction |= inst.operands[0].reg;
6683 }
6684 else
b99bd4ef 6685 {
c19d1205
ZW
6686 /* Arg is an address; this instruction cannot be executed
6687 conditionally, and the opcode must be adjusted. */
6688 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 6689 inst.instruction = 0xfa000000;
39b41c9c
PB
6690#ifdef OBJ_ELF
6691 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
6692 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
6693 else
6694#endif
6695 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 6696 }
c19d1205
ZW
6697}
6698
6699static void
6700do_bx (void)
6701{
6702 if (inst.operands[0].reg == REG_PC)
6703 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 6704
c19d1205 6705 inst.instruction |= inst.operands[0].reg;
09d92015
MM
6706}
6707
c19d1205
ZW
6708
6709/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
6710
6711static void
c19d1205 6712do_bxj (void)
a737bd4d 6713{
c19d1205
ZW
6714 if (inst.operands[0].reg == REG_PC)
6715 as_tsktsk (_("use of r15 in bxj is not really useful"));
6716
6717 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
6718}
6719
c19d1205
ZW
6720/* Co-processor data operation:
6721 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
6722 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
6723static void
6724do_cdp (void)
6725{
6726 inst.instruction |= inst.operands[0].reg << 8;
6727 inst.instruction |= inst.operands[1].imm << 20;
6728 inst.instruction |= inst.operands[2].reg << 12;
6729 inst.instruction |= inst.operands[3].reg << 16;
6730 inst.instruction |= inst.operands[4].reg;
6731 inst.instruction |= inst.operands[5].imm << 5;
6732}
a737bd4d
NC
6733
6734static void
c19d1205 6735do_cmp (void)
a737bd4d 6736{
c19d1205
ZW
6737 inst.instruction |= inst.operands[0].reg << 16;
6738 encode_arm_shifter_operand (1);
a737bd4d
NC
6739}
6740
c19d1205
ZW
6741/* Transfer between coprocessor and ARM registers.
6742 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
6743 MRC2
6744 MCR{cond}
6745 MCR2
6746
6747 No special properties. */
09d92015
MM
6748
6749static void
c19d1205 6750do_co_reg (void)
09d92015 6751{
c19d1205
ZW
6752 inst.instruction |= inst.operands[0].reg << 8;
6753 inst.instruction |= inst.operands[1].imm << 21;
6754 inst.instruction |= inst.operands[2].reg << 12;
6755 inst.instruction |= inst.operands[3].reg << 16;
6756 inst.instruction |= inst.operands[4].reg;
6757 inst.instruction |= inst.operands[5].imm << 5;
6758}
09d92015 6759
c19d1205
ZW
6760/* Transfer between coprocessor register and pair of ARM registers.
6761 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
6762 MCRR2
6763 MRRC{cond}
6764 MRRC2
b99bd4ef 6765
c19d1205 6766 Two XScale instructions are special cases of these:
09d92015 6767
c19d1205
ZW
6768 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
6769 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 6770
c19d1205 6771 Result unpredicatable if Rd or Rn is R15. */
a737bd4d 6772
c19d1205
ZW
6773static void
6774do_co_reg2c (void)
6775{
6776 inst.instruction |= inst.operands[0].reg << 8;
6777 inst.instruction |= inst.operands[1].imm << 4;
6778 inst.instruction |= inst.operands[2].reg << 12;
6779 inst.instruction |= inst.operands[3].reg << 16;
6780 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
6781}
6782
c19d1205
ZW
6783static void
6784do_cpsi (void)
6785{
6786 inst.instruction |= inst.operands[0].imm << 6;
6787 inst.instruction |= inst.operands[1].imm;
6788}
b99bd4ef 6789
62b3e311
PB
6790static void
6791do_dbg (void)
6792{
6793 inst.instruction |= inst.operands[0].imm;
6794}
6795
b99bd4ef 6796static void
c19d1205 6797do_it (void)
b99bd4ef 6798{
c19d1205
ZW
6799 /* There is no IT instruction in ARM mode. We
6800 process it but do not generate code for it. */
6801 inst.size = 0;
09d92015 6802}
b99bd4ef 6803
09d92015 6804static void
c19d1205 6805do_ldmstm (void)
ea6ef066 6806{
c19d1205
ZW
6807 int base_reg = inst.operands[0].reg;
6808 int range = inst.operands[1].imm;
ea6ef066 6809
c19d1205
ZW
6810 inst.instruction |= base_reg << 16;
6811 inst.instruction |= range;
ea6ef066 6812
c19d1205
ZW
6813 if (inst.operands[1].writeback)
6814 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 6815
c19d1205 6816 if (inst.operands[0].writeback)
ea6ef066 6817 {
c19d1205
ZW
6818 inst.instruction |= WRITE_BACK;
6819 /* Check for unpredictable uses of writeback. */
6820 if (inst.instruction & LOAD_BIT)
09d92015 6821 {
c19d1205
ZW
6822 /* Not allowed in LDM type 2. */
6823 if ((inst.instruction & LDM_TYPE_2_OR_3)
6824 && ((range & (1 << REG_PC)) == 0))
6825 as_warn (_("writeback of base register is UNPREDICTABLE"));
6826 /* Only allowed if base reg not in list for other types. */
6827 else if (range & (1 << base_reg))
6828 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
6829 }
6830 else /* STM. */
6831 {
6832 /* Not allowed for type 2. */
6833 if (inst.instruction & LDM_TYPE_2_OR_3)
6834 as_warn (_("writeback of base register is UNPREDICTABLE"));
6835 /* Only allowed if base reg not in list, or first in list. */
6836 else if ((range & (1 << base_reg))
6837 && (range & ((1 << base_reg) - 1)))
6838 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 6839 }
ea6ef066 6840 }
a737bd4d
NC
6841}
6842
c19d1205
ZW
6843/* ARMv5TE load-consecutive (argument parse)
6844 Mode is like LDRH.
6845
6846 LDRccD R, mode
6847 STRccD R, mode. */
6848
a737bd4d 6849static void
c19d1205 6850do_ldrd (void)
a737bd4d 6851{
c19d1205
ZW
6852 constraint (inst.operands[0].reg % 2 != 0,
6853 _("first destination register must be even"));
6854 constraint (inst.operands[1].present
6855 && inst.operands[1].reg != inst.operands[0].reg + 1,
6856 _("can only load two consecutive registers"));
6857 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
6858 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 6859
c19d1205
ZW
6860 if (!inst.operands[1].present)
6861 inst.operands[1].reg = inst.operands[0].reg + 1;
6862
6863 if (inst.instruction & LOAD_BIT)
a737bd4d 6864 {
c19d1205
ZW
6865 /* encode_arm_addr_mode_3 will diagnose overlap between the base
6866 register and the first register written; we have to diagnose
6867 overlap between the base and the second register written here. */
ea6ef066 6868
c19d1205
ZW
6869 if (inst.operands[2].reg == inst.operands[1].reg
6870 && (inst.operands[2].writeback || inst.operands[2].postind))
6871 as_warn (_("base register written back, and overlaps "
6872 "second destination register"));
b05fe5cf 6873
c19d1205
ZW
6874 /* For an index-register load, the index register must not overlap the
6875 destination (even if not write-back). */
6876 else if (inst.operands[2].immisreg
ca3f61f7
NC
6877 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
6878 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
c19d1205 6879 as_warn (_("index register overlaps destination register"));
b05fe5cf 6880 }
c19d1205
ZW
6881
6882 inst.instruction |= inst.operands[0].reg << 12;
6883 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
6884}
6885
6886static void
c19d1205 6887do_ldrex (void)
b05fe5cf 6888{
c19d1205
ZW
6889 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
6890 || inst.operands[1].postind || inst.operands[1].writeback
6891 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
6892 || inst.operands[1].negative
6893 /* This can arise if the programmer has written
6894 strex rN, rM, foo
6895 or if they have mistakenly used a register name as the last
6896 operand, eg:
6897 strex rN, rM, rX
6898 It is very difficult to distinguish between these two cases
6899 because "rX" might actually be a label. ie the register
6900 name has been occluded by a symbol of the same name. So we
6901 just generate a general 'bad addressing mode' type error
6902 message and leave it up to the programmer to discover the
6903 true cause and fix their mistake. */
6904 || (inst.operands[1].reg == REG_PC),
6905 BAD_ADDR_MODE);
b05fe5cf 6906
c19d1205
ZW
6907 constraint (inst.reloc.exp.X_op != O_constant
6908 || inst.reloc.exp.X_add_number != 0,
6909 _("offset must be zero in ARM encoding"));
b05fe5cf 6910
c19d1205
ZW
6911 inst.instruction |= inst.operands[0].reg << 12;
6912 inst.instruction |= inst.operands[1].reg << 16;
6913 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
6914}
6915
6916static void
c19d1205 6917do_ldrexd (void)
b05fe5cf 6918{
c19d1205
ZW
6919 constraint (inst.operands[0].reg % 2 != 0,
6920 _("even register required"));
6921 constraint (inst.operands[1].present
6922 && inst.operands[1].reg != inst.operands[0].reg + 1,
6923 _("can only load two consecutive registers"));
6924 /* If op 1 were present and equal to PC, this function wouldn't
6925 have been called in the first place. */
6926 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 6927
c19d1205
ZW
6928 inst.instruction |= inst.operands[0].reg << 12;
6929 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
6930}
6931
6932static void
c19d1205 6933do_ldst (void)
b05fe5cf 6934{
c19d1205
ZW
6935 inst.instruction |= inst.operands[0].reg << 12;
6936 if (!inst.operands[1].isreg)
6937 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/FALSE))
b05fe5cf 6938 return;
c19d1205 6939 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
6940}
6941
6942static void
c19d1205 6943do_ldstt (void)
b05fe5cf 6944{
c19d1205
ZW
6945 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
6946 reject [Rn,...]. */
6947 if (inst.operands[1].preind)
b05fe5cf 6948 {
c19d1205
ZW
6949 constraint (inst.reloc.exp.X_op != O_constant ||
6950 inst.reloc.exp.X_add_number != 0,
6951 _("this instruction requires a post-indexed address"));
b05fe5cf 6952
c19d1205
ZW
6953 inst.operands[1].preind = 0;
6954 inst.operands[1].postind = 1;
6955 inst.operands[1].writeback = 1;
b05fe5cf 6956 }
c19d1205
ZW
6957 inst.instruction |= inst.operands[0].reg << 12;
6958 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
6959}
b05fe5cf 6960
c19d1205 6961/* Halfword and signed-byte load/store operations. */
b05fe5cf 6962
c19d1205
ZW
6963static void
6964do_ldstv4 (void)
6965{
6966 inst.instruction |= inst.operands[0].reg << 12;
6967 if (!inst.operands[1].isreg)
6968 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/TRUE))
b05fe5cf 6969 return;
c19d1205 6970 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
6971}
6972
6973static void
c19d1205 6974do_ldsttv4 (void)
b05fe5cf 6975{
c19d1205
ZW
6976 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
6977 reject [Rn,...]. */
6978 if (inst.operands[1].preind)
b05fe5cf 6979 {
c19d1205
ZW
6980 constraint (inst.reloc.exp.X_op != O_constant ||
6981 inst.reloc.exp.X_add_number != 0,
6982 _("this instruction requires a post-indexed address"));
b05fe5cf 6983
c19d1205
ZW
6984 inst.operands[1].preind = 0;
6985 inst.operands[1].postind = 1;
6986 inst.operands[1].writeback = 1;
b05fe5cf 6987 }
c19d1205
ZW
6988 inst.instruction |= inst.operands[0].reg << 12;
6989 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
6990}
b05fe5cf 6991
c19d1205
ZW
6992/* Co-processor register load/store.
6993 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
6994static void
6995do_lstc (void)
6996{
6997 inst.instruction |= inst.operands[0].reg << 8;
6998 inst.instruction |= inst.operands[1].reg << 12;
6999 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
7000}
7001
b05fe5cf 7002static void
c19d1205 7003do_mlas (void)
b05fe5cf 7004{
c19d1205
ZW
7005 /* This restriction does not apply to mls (nor to mla in v6, but
7006 that's hard to detect at present). */
7007 if (inst.operands[0].reg == inst.operands[1].reg
7008 && !(inst.instruction & 0x00400000))
7009 as_tsktsk (_("rd and rm should be different in mla"));
b05fe5cf 7010
c19d1205
ZW
7011 inst.instruction |= inst.operands[0].reg << 16;
7012 inst.instruction |= inst.operands[1].reg;
7013 inst.instruction |= inst.operands[2].reg << 8;
7014 inst.instruction |= inst.operands[3].reg << 12;
b05fe5cf 7015
c19d1205 7016}
b05fe5cf 7017
c19d1205
ZW
7018static void
7019do_mov (void)
7020{
7021 inst.instruction |= inst.operands[0].reg << 12;
7022 encode_arm_shifter_operand (1);
7023}
b05fe5cf 7024
c19d1205
ZW
7025/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
7026static void
7027do_mov16 (void)
7028{
b6895b4f
PB
7029 bfd_vma imm;
7030 bfd_boolean top;
7031
7032 top = (inst.instruction & 0x00400000) != 0;
7033 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
7034 _(":lower16: not allowed this instruction"));
7035 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
7036 _(":upper16: not allowed instruction"));
c19d1205 7037 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
7038 if (inst.reloc.type == BFD_RELOC_UNUSED)
7039 {
7040 imm = inst.reloc.exp.X_add_number;
7041 /* The value is in two pieces: 0:11, 16:19. */
7042 inst.instruction |= (imm & 0x00000fff);
7043 inst.instruction |= (imm & 0x0000f000) << 4;
7044 }
b05fe5cf 7045}
b99bd4ef 7046
037e8744
JB
7047static void do_vfp_nsyn_opcode (const char *);
7048
7049static int
7050do_vfp_nsyn_mrs (void)
7051{
7052 if (inst.operands[0].isvec)
7053 {
7054 if (inst.operands[1].reg != 1)
7055 first_error (_("operand 1 must be FPSCR"));
7056 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
7057 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
7058 do_vfp_nsyn_opcode ("fmstat");
7059 }
7060 else if (inst.operands[1].isvec)
7061 do_vfp_nsyn_opcode ("fmrx");
7062 else
7063 return FAIL;
7064
7065 return SUCCESS;
7066}
7067
7068static int
7069do_vfp_nsyn_msr (void)
7070{
7071 if (inst.operands[0].isvec)
7072 do_vfp_nsyn_opcode ("fmxr");
7073 else
7074 return FAIL;
7075
7076 return SUCCESS;
7077}
7078
b99bd4ef 7079static void
c19d1205 7080do_mrs (void)
b99bd4ef 7081{
037e8744
JB
7082 if (do_vfp_nsyn_mrs () == SUCCESS)
7083 return;
7084
c19d1205
ZW
7085 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
7086 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
7087 != (PSR_c|PSR_f),
7088 _("'CPSR' or 'SPSR' expected"));
7089 inst.instruction |= inst.operands[0].reg << 12;
7090 inst.instruction |= (inst.operands[1].imm & SPSR_BIT);
7091}
b99bd4ef 7092
c19d1205
ZW
7093/* Two possible forms:
7094 "{C|S}PSR_<field>, Rm",
7095 "{C|S}PSR_f, #expression". */
b99bd4ef 7096
c19d1205
ZW
7097static void
7098do_msr (void)
7099{
037e8744
JB
7100 if (do_vfp_nsyn_msr () == SUCCESS)
7101 return;
7102
c19d1205
ZW
7103 inst.instruction |= inst.operands[0].imm;
7104 if (inst.operands[1].isreg)
7105 inst.instruction |= inst.operands[1].reg;
7106 else
b99bd4ef 7107 {
c19d1205
ZW
7108 inst.instruction |= INST_IMMEDIATE;
7109 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
7110 inst.reloc.pc_rel = 0;
b99bd4ef 7111 }
b99bd4ef
NC
7112}
7113
c19d1205
ZW
7114static void
7115do_mul (void)
a737bd4d 7116{
c19d1205
ZW
7117 if (!inst.operands[2].present)
7118 inst.operands[2].reg = inst.operands[0].reg;
7119 inst.instruction |= inst.operands[0].reg << 16;
7120 inst.instruction |= inst.operands[1].reg;
7121 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 7122
c19d1205
ZW
7123 if (inst.operands[0].reg == inst.operands[1].reg)
7124 as_tsktsk (_("rd and rm should be different in mul"));
a737bd4d
NC
7125}
7126
c19d1205
ZW
7127/* Long Multiply Parser
7128 UMULL RdLo, RdHi, Rm, Rs
7129 SMULL RdLo, RdHi, Rm, Rs
7130 UMLAL RdLo, RdHi, Rm, Rs
7131 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
7132
7133static void
c19d1205 7134do_mull (void)
b99bd4ef 7135{
c19d1205
ZW
7136 inst.instruction |= inst.operands[0].reg << 12;
7137 inst.instruction |= inst.operands[1].reg << 16;
7138 inst.instruction |= inst.operands[2].reg;
7139 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 7140
c19d1205
ZW
7141 /* rdhi, rdlo and rm must all be different. */
7142 if (inst.operands[0].reg == inst.operands[1].reg
7143 || inst.operands[0].reg == inst.operands[2].reg
7144 || inst.operands[1].reg == inst.operands[2].reg)
7145 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
7146}
b99bd4ef 7147
c19d1205
ZW
7148static void
7149do_nop (void)
7150{
7151 if (inst.operands[0].present)
7152 {
7153 /* Architectural NOP hints are CPSR sets with no bits selected. */
7154 inst.instruction &= 0xf0000000;
7155 inst.instruction |= 0x0320f000 + inst.operands[0].imm;
7156 }
b99bd4ef
NC
7157}
7158
c19d1205
ZW
7159/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
7160 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
7161 Condition defaults to COND_ALWAYS.
7162 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
7163
7164static void
c19d1205 7165do_pkhbt (void)
b99bd4ef 7166{
c19d1205
ZW
7167 inst.instruction |= inst.operands[0].reg << 12;
7168 inst.instruction |= inst.operands[1].reg << 16;
7169 inst.instruction |= inst.operands[2].reg;
7170 if (inst.operands[3].present)
7171 encode_arm_shift (3);
7172}
b99bd4ef 7173
c19d1205 7174/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 7175
c19d1205
ZW
7176static void
7177do_pkhtb (void)
7178{
7179 if (!inst.operands[3].present)
b99bd4ef 7180 {
c19d1205
ZW
7181 /* If the shift specifier is omitted, turn the instruction
7182 into pkhbt rd, rm, rn. */
7183 inst.instruction &= 0xfff00010;
7184 inst.instruction |= inst.operands[0].reg << 12;
7185 inst.instruction |= inst.operands[1].reg;
7186 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
7187 }
7188 else
7189 {
c19d1205
ZW
7190 inst.instruction |= inst.operands[0].reg << 12;
7191 inst.instruction |= inst.operands[1].reg << 16;
7192 inst.instruction |= inst.operands[2].reg;
7193 encode_arm_shift (3);
b99bd4ef
NC
7194 }
7195}
7196
c19d1205
ZW
7197/* ARMv5TE: Preload-Cache
7198
7199 PLD <addr_mode>
7200
7201 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
7202
7203static void
c19d1205 7204do_pld (void)
b99bd4ef 7205{
c19d1205
ZW
7206 constraint (!inst.operands[0].isreg,
7207 _("'[' expected after PLD mnemonic"));
7208 constraint (inst.operands[0].postind,
7209 _("post-indexed expression used in preload instruction"));
7210 constraint (inst.operands[0].writeback,
7211 _("writeback used in preload instruction"));
7212 constraint (!inst.operands[0].preind,
7213 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
7214 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
7215}
b99bd4ef 7216
62b3e311
PB
7217/* ARMv7: PLI <addr_mode> */
7218static void
7219do_pli (void)
7220{
7221 constraint (!inst.operands[0].isreg,
7222 _("'[' expected after PLI mnemonic"));
7223 constraint (inst.operands[0].postind,
7224 _("post-indexed expression used in preload instruction"));
7225 constraint (inst.operands[0].writeback,
7226 _("writeback used in preload instruction"));
7227 constraint (!inst.operands[0].preind,
7228 _("unindexed addressing used in preload instruction"));
7229 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
7230 inst.instruction &= ~PRE_INDEX;
7231}
7232
c19d1205
ZW
7233static void
7234do_push_pop (void)
7235{
7236 inst.operands[1] = inst.operands[0];
7237 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
7238 inst.operands[0].isreg = 1;
7239 inst.operands[0].writeback = 1;
7240 inst.operands[0].reg = REG_SP;
7241 do_ldmstm ();
7242}
b99bd4ef 7243
c19d1205
ZW
7244/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
7245 word at the specified address and the following word
7246 respectively.
7247 Unconditionally executed.
7248 Error if Rn is R15. */
b99bd4ef 7249
c19d1205
ZW
7250static void
7251do_rfe (void)
7252{
7253 inst.instruction |= inst.operands[0].reg << 16;
7254 if (inst.operands[0].writeback)
7255 inst.instruction |= WRITE_BACK;
7256}
b99bd4ef 7257
c19d1205 7258/* ARM V6 ssat (argument parse). */
b99bd4ef 7259
c19d1205
ZW
7260static void
7261do_ssat (void)
7262{
7263 inst.instruction |= inst.operands[0].reg << 12;
7264 inst.instruction |= (inst.operands[1].imm - 1) << 16;
7265 inst.instruction |= inst.operands[2].reg;
b99bd4ef 7266
c19d1205
ZW
7267 if (inst.operands[3].present)
7268 encode_arm_shift (3);
b99bd4ef
NC
7269}
7270
c19d1205 7271/* ARM V6 usat (argument parse). */
b99bd4ef
NC
7272
7273static void
c19d1205 7274do_usat (void)
b99bd4ef 7275{
c19d1205
ZW
7276 inst.instruction |= inst.operands[0].reg << 12;
7277 inst.instruction |= inst.operands[1].imm << 16;
7278 inst.instruction |= inst.operands[2].reg;
b99bd4ef 7279
c19d1205
ZW
7280 if (inst.operands[3].present)
7281 encode_arm_shift (3);
b99bd4ef
NC
7282}
7283
c19d1205 7284/* ARM V6 ssat16 (argument parse). */
09d92015
MM
7285
7286static void
c19d1205 7287do_ssat16 (void)
09d92015 7288{
c19d1205
ZW
7289 inst.instruction |= inst.operands[0].reg << 12;
7290 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
7291 inst.instruction |= inst.operands[2].reg;
09d92015
MM
7292}
7293
c19d1205
ZW
7294static void
7295do_usat16 (void)
a737bd4d 7296{
c19d1205
ZW
7297 inst.instruction |= inst.operands[0].reg << 12;
7298 inst.instruction |= inst.operands[1].imm << 16;
7299 inst.instruction |= inst.operands[2].reg;
7300}
a737bd4d 7301
c19d1205
ZW
7302/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
7303 preserving the other bits.
a737bd4d 7304
c19d1205
ZW
7305 setend <endian_specifier>, where <endian_specifier> is either
7306 BE or LE. */
a737bd4d 7307
c19d1205
ZW
7308static void
7309do_setend (void)
7310{
7311 if (inst.operands[0].imm)
7312 inst.instruction |= 0x200;
a737bd4d
NC
7313}
7314
7315static void
c19d1205 7316do_shift (void)
a737bd4d 7317{
c19d1205
ZW
7318 unsigned int Rm = (inst.operands[1].present
7319 ? inst.operands[1].reg
7320 : inst.operands[0].reg);
a737bd4d 7321
c19d1205
ZW
7322 inst.instruction |= inst.operands[0].reg << 12;
7323 inst.instruction |= Rm;
7324 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 7325 {
c19d1205
ZW
7326 inst.instruction |= inst.operands[2].reg << 8;
7327 inst.instruction |= SHIFT_BY_REG;
a737bd4d
NC
7328 }
7329 else
c19d1205 7330 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
7331}
7332
09d92015 7333static void
3eb17e6b 7334do_smc (void)
09d92015 7335{
3eb17e6b 7336 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 7337 inst.reloc.pc_rel = 0;
09d92015
MM
7338}
7339
09d92015 7340static void
c19d1205 7341do_swi (void)
09d92015 7342{
c19d1205
ZW
7343 inst.reloc.type = BFD_RELOC_ARM_SWI;
7344 inst.reloc.pc_rel = 0;
09d92015
MM
7345}
7346
c19d1205
ZW
7347/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
7348 SMLAxy{cond} Rd,Rm,Rs,Rn
7349 SMLAWy{cond} Rd,Rm,Rs,Rn
7350 Error if any register is R15. */
e16bb312 7351
c19d1205
ZW
7352static void
7353do_smla (void)
e16bb312 7354{
c19d1205
ZW
7355 inst.instruction |= inst.operands[0].reg << 16;
7356 inst.instruction |= inst.operands[1].reg;
7357 inst.instruction |= inst.operands[2].reg << 8;
7358 inst.instruction |= inst.operands[3].reg << 12;
7359}
a737bd4d 7360
c19d1205
ZW
7361/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
7362 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
7363 Error if any register is R15.
7364 Warning if Rdlo == Rdhi. */
a737bd4d 7365
c19d1205
ZW
7366static void
7367do_smlal (void)
7368{
7369 inst.instruction |= inst.operands[0].reg << 12;
7370 inst.instruction |= inst.operands[1].reg << 16;
7371 inst.instruction |= inst.operands[2].reg;
7372 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 7373
c19d1205
ZW
7374 if (inst.operands[0].reg == inst.operands[1].reg)
7375 as_tsktsk (_("rdhi and rdlo must be different"));
7376}
a737bd4d 7377
c19d1205
ZW
7378/* ARM V5E (El Segundo) signed-multiply (argument parse)
7379 SMULxy{cond} Rd,Rm,Rs
7380 Error if any register is R15. */
a737bd4d 7381
c19d1205
ZW
7382static void
7383do_smul (void)
7384{
7385 inst.instruction |= inst.operands[0].reg << 16;
7386 inst.instruction |= inst.operands[1].reg;
7387 inst.instruction |= inst.operands[2].reg << 8;
7388}
a737bd4d 7389
c19d1205 7390/* ARM V6 srs (argument parse). */
a737bd4d 7391
c19d1205
ZW
7392static void
7393do_srs (void)
7394{
7395 inst.instruction |= inst.operands[0].imm;
7396 if (inst.operands[0].writeback)
7397 inst.instruction |= WRITE_BACK;
7398}
a737bd4d 7399
c19d1205 7400/* ARM V6 strex (argument parse). */
a737bd4d 7401
c19d1205
ZW
7402static void
7403do_strex (void)
7404{
7405 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
7406 || inst.operands[2].postind || inst.operands[2].writeback
7407 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
7408 || inst.operands[2].negative
7409 /* See comment in do_ldrex(). */
7410 || (inst.operands[2].reg == REG_PC),
7411 BAD_ADDR_MODE);
a737bd4d 7412
c19d1205
ZW
7413 constraint (inst.operands[0].reg == inst.operands[1].reg
7414 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 7415
c19d1205
ZW
7416 constraint (inst.reloc.exp.X_op != O_constant
7417 || inst.reloc.exp.X_add_number != 0,
7418 _("offset must be zero in ARM encoding"));
a737bd4d 7419
c19d1205
ZW
7420 inst.instruction |= inst.operands[0].reg << 12;
7421 inst.instruction |= inst.operands[1].reg;
7422 inst.instruction |= inst.operands[2].reg << 16;
7423 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
7424}
7425
7426static void
c19d1205 7427do_strexd (void)
e16bb312 7428{
c19d1205
ZW
7429 constraint (inst.operands[1].reg % 2 != 0,
7430 _("even register required"));
7431 constraint (inst.operands[2].present
7432 && inst.operands[2].reg != inst.operands[1].reg + 1,
7433 _("can only store two consecutive registers"));
7434 /* If op 2 were present and equal to PC, this function wouldn't
7435 have been called in the first place. */
7436 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 7437
c19d1205
ZW
7438 constraint (inst.operands[0].reg == inst.operands[1].reg
7439 || inst.operands[0].reg == inst.operands[1].reg + 1
7440 || inst.operands[0].reg == inst.operands[3].reg,
7441 BAD_OVERLAP);
e16bb312 7442
c19d1205
ZW
7443 inst.instruction |= inst.operands[0].reg << 12;
7444 inst.instruction |= inst.operands[1].reg;
7445 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
7446}
7447
c19d1205
ZW
7448/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
7449 extends it to 32-bits, and adds the result to a value in another
7450 register. You can specify a rotation by 0, 8, 16, or 24 bits
7451 before extracting the 16-bit value.
7452 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
7453 Condition defaults to COND_ALWAYS.
7454 Error if any register uses R15. */
7455
e16bb312 7456static void
c19d1205 7457do_sxtah (void)
e16bb312 7458{
c19d1205
ZW
7459 inst.instruction |= inst.operands[0].reg << 12;
7460 inst.instruction |= inst.operands[1].reg << 16;
7461 inst.instruction |= inst.operands[2].reg;
7462 inst.instruction |= inst.operands[3].imm << 10;
7463}
e16bb312 7464
c19d1205 7465/* ARM V6 SXTH.
e16bb312 7466
c19d1205
ZW
7467 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
7468 Condition defaults to COND_ALWAYS.
7469 Error if any register uses R15. */
e16bb312
NC
7470
7471static void
c19d1205 7472do_sxth (void)
e16bb312 7473{
c19d1205
ZW
7474 inst.instruction |= inst.operands[0].reg << 12;
7475 inst.instruction |= inst.operands[1].reg;
7476 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 7477}
c19d1205
ZW
7478\f
7479/* VFP instructions. In a logical order: SP variant first, monad
7480 before dyad, arithmetic then move then load/store. */
e16bb312
NC
7481
7482static void
c19d1205 7483do_vfp_sp_monadic (void)
e16bb312 7484{
5287ad62
JB
7485 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7486 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
7487}
7488
7489static void
c19d1205 7490do_vfp_sp_dyadic (void)
e16bb312 7491{
5287ad62
JB
7492 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7493 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
7494 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
7495}
7496
7497static void
c19d1205 7498do_vfp_sp_compare_z (void)
e16bb312 7499{
5287ad62 7500 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
7501}
7502
7503static void
c19d1205 7504do_vfp_dp_sp_cvt (void)
e16bb312 7505{
5287ad62
JB
7506 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7507 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
7508}
7509
7510static void
c19d1205 7511do_vfp_sp_dp_cvt (void)
e16bb312 7512{
5287ad62
JB
7513 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7514 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
7515}
7516
7517static void
c19d1205 7518do_vfp_reg_from_sp (void)
e16bb312 7519{
c19d1205 7520 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 7521 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
7522}
7523
7524static void
c19d1205 7525do_vfp_reg2_from_sp2 (void)
e16bb312 7526{
c19d1205
ZW
7527 constraint (inst.operands[2].imm != 2,
7528 _("only two consecutive VFP SP registers allowed here"));
7529 inst.instruction |= inst.operands[0].reg << 12;
7530 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 7531 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
7532}
7533
7534static void
c19d1205 7535do_vfp_sp_from_reg (void)
e16bb312 7536{
5287ad62 7537 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 7538 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
7539}
7540
7541static void
c19d1205 7542do_vfp_sp2_from_reg2 (void)
e16bb312 7543{
c19d1205
ZW
7544 constraint (inst.operands[0].imm != 2,
7545 _("only two consecutive VFP SP registers allowed here"));
5287ad62 7546 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
7547 inst.instruction |= inst.operands[1].reg << 12;
7548 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
7549}
7550
7551static void
c19d1205 7552do_vfp_sp_ldst (void)
e16bb312 7553{
5287ad62 7554 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 7555 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
7556}
7557
7558static void
c19d1205 7559do_vfp_dp_ldst (void)
e16bb312 7560{
5287ad62 7561 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 7562 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
7563}
7564
c19d1205 7565
e16bb312 7566static void
c19d1205 7567vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 7568{
c19d1205
ZW
7569 if (inst.operands[0].writeback)
7570 inst.instruction |= WRITE_BACK;
7571 else
7572 constraint (ldstm_type != VFP_LDSTMIA,
7573 _("this addressing mode requires base-register writeback"));
7574 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 7575 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 7576 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
7577}
7578
7579static void
c19d1205 7580vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 7581{
c19d1205 7582 int count;
e16bb312 7583
c19d1205
ZW
7584 if (inst.operands[0].writeback)
7585 inst.instruction |= WRITE_BACK;
7586 else
7587 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
7588 _("this addressing mode requires base-register writeback"));
e16bb312 7589
c19d1205 7590 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 7591 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 7592
c19d1205
ZW
7593 count = inst.operands[1].imm << 1;
7594 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
7595 count += 1;
e16bb312 7596
c19d1205 7597 inst.instruction |= count;
e16bb312
NC
7598}
7599
7600static void
c19d1205 7601do_vfp_sp_ldstmia (void)
e16bb312 7602{
c19d1205 7603 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
7604}
7605
7606static void
c19d1205 7607do_vfp_sp_ldstmdb (void)
e16bb312 7608{
c19d1205 7609 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
7610}
7611
7612static void
c19d1205 7613do_vfp_dp_ldstmia (void)
e16bb312 7614{
c19d1205 7615 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
7616}
7617
7618static void
c19d1205 7619do_vfp_dp_ldstmdb (void)
e16bb312 7620{
c19d1205 7621 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
7622}
7623
7624static void
c19d1205 7625do_vfp_xp_ldstmia (void)
e16bb312 7626{
c19d1205
ZW
7627 vfp_dp_ldstm (VFP_LDSTMIAX);
7628}
e16bb312 7629
c19d1205
ZW
7630static void
7631do_vfp_xp_ldstmdb (void)
7632{
7633 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 7634}
5287ad62
JB
7635
7636static void
7637do_vfp_dp_rd_rm (void)
7638{
7639 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7640 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
7641}
7642
7643static void
7644do_vfp_dp_rn_rd (void)
7645{
7646 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
7647 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
7648}
7649
7650static void
7651do_vfp_dp_rd_rn (void)
7652{
7653 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7654 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
7655}
7656
7657static void
7658do_vfp_dp_rd_rn_rm (void)
7659{
7660 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7661 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
7662 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
7663}
7664
7665static void
7666do_vfp_dp_rd (void)
7667{
7668 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7669}
7670
7671static void
7672do_vfp_dp_rm_rd_rn (void)
7673{
7674 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
7675 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
7676 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
7677}
7678
7679/* VFPv3 instructions. */
7680static void
7681do_vfp_sp_const (void)
7682{
7683 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7684 inst.instruction |= (inst.operands[1].imm & 15) << 16;
7685 inst.instruction |= (inst.operands[1].imm >> 4);
7686}
7687
7688static void
7689do_vfp_dp_const (void)
7690{
7691 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7692 inst.instruction |= (inst.operands[1].imm & 15) << 16;
7693 inst.instruction |= (inst.operands[1].imm >> 4);
7694}
7695
7696static void
7697vfp_conv (int srcsize)
7698{
7699 unsigned immbits = srcsize - inst.operands[1].imm;
7700 inst.instruction |= (immbits & 1) << 5;
7701 inst.instruction |= (immbits >> 1);
7702}
7703
7704static void
7705do_vfp_sp_conv_16 (void)
7706{
7707 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7708 vfp_conv (16);
7709}
7710
7711static void
7712do_vfp_dp_conv_16 (void)
7713{
7714 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7715 vfp_conv (16);
7716}
7717
7718static void
7719do_vfp_sp_conv_32 (void)
7720{
7721 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7722 vfp_conv (32);
7723}
7724
7725static void
7726do_vfp_dp_conv_32 (void)
7727{
7728 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7729 vfp_conv (32);
7730}
7731
c19d1205
ZW
7732\f
7733/* FPA instructions. Also in a logical order. */
e16bb312 7734
c19d1205
ZW
7735static void
7736do_fpa_cmp (void)
7737{
7738 inst.instruction |= inst.operands[0].reg << 16;
7739 inst.instruction |= inst.operands[1].reg;
7740}
b99bd4ef
NC
7741
7742static void
c19d1205 7743do_fpa_ldmstm (void)
b99bd4ef 7744{
c19d1205
ZW
7745 inst.instruction |= inst.operands[0].reg << 12;
7746 switch (inst.operands[1].imm)
7747 {
7748 case 1: inst.instruction |= CP_T_X; break;
7749 case 2: inst.instruction |= CP_T_Y; break;
7750 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
7751 case 4: break;
7752 default: abort ();
7753 }
b99bd4ef 7754
c19d1205
ZW
7755 if (inst.instruction & (PRE_INDEX | INDEX_UP))
7756 {
7757 /* The instruction specified "ea" or "fd", so we can only accept
7758 [Rn]{!}. The instruction does not really support stacking or
7759 unstacking, so we have to emulate these by setting appropriate
7760 bits and offsets. */
7761 constraint (inst.reloc.exp.X_op != O_constant
7762 || inst.reloc.exp.X_add_number != 0,
7763 _("this instruction does not support indexing"));
b99bd4ef 7764
c19d1205
ZW
7765 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
7766 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 7767
c19d1205
ZW
7768 if (!(inst.instruction & INDEX_UP))
7769 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 7770
c19d1205
ZW
7771 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
7772 {
7773 inst.operands[2].preind = 0;
7774 inst.operands[2].postind = 1;
7775 }
7776 }
b99bd4ef 7777
c19d1205 7778 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 7779}
037e8744 7780
c19d1205
ZW
7781\f
7782/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 7783
c19d1205
ZW
7784static void
7785do_iwmmxt_tandorc (void)
7786{
7787 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
7788}
b99bd4ef 7789
c19d1205
ZW
7790static void
7791do_iwmmxt_textrc (void)
7792{
7793 inst.instruction |= inst.operands[0].reg << 12;
7794 inst.instruction |= inst.operands[1].imm;
7795}
b99bd4ef
NC
7796
7797static void
c19d1205 7798do_iwmmxt_textrm (void)
b99bd4ef 7799{
c19d1205
ZW
7800 inst.instruction |= inst.operands[0].reg << 12;
7801 inst.instruction |= inst.operands[1].reg << 16;
7802 inst.instruction |= inst.operands[2].imm;
7803}
b99bd4ef 7804
c19d1205
ZW
7805static void
7806do_iwmmxt_tinsr (void)
7807{
7808 inst.instruction |= inst.operands[0].reg << 16;
7809 inst.instruction |= inst.operands[1].reg << 12;
7810 inst.instruction |= inst.operands[2].imm;
7811}
b99bd4ef 7812
c19d1205
ZW
7813static void
7814do_iwmmxt_tmia (void)
7815{
7816 inst.instruction |= inst.operands[0].reg << 5;
7817 inst.instruction |= inst.operands[1].reg;
7818 inst.instruction |= inst.operands[2].reg << 12;
7819}
b99bd4ef 7820
c19d1205
ZW
7821static void
7822do_iwmmxt_waligni (void)
7823{
7824 inst.instruction |= inst.operands[0].reg << 12;
7825 inst.instruction |= inst.operands[1].reg << 16;
7826 inst.instruction |= inst.operands[2].reg;
7827 inst.instruction |= inst.operands[3].imm << 20;
7828}
b99bd4ef 7829
c19d1205
ZW
7830static void
7831do_iwmmxt_wmov (void)
7832{
7833 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
7834 inst.instruction |= inst.operands[0].reg << 12;
7835 inst.instruction |= inst.operands[1].reg << 16;
7836 inst.instruction |= inst.operands[1].reg;
7837}
b99bd4ef 7838
c19d1205
ZW
7839static void
7840do_iwmmxt_wldstbh (void)
7841{
8f06b2d8 7842 int reloc;
c19d1205 7843 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
7844 if (thumb_mode)
7845 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
7846 else
7847 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
7848 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
7849}
7850
c19d1205
ZW
7851static void
7852do_iwmmxt_wldstw (void)
7853{
7854 /* RIWR_RIWC clears .isreg for a control register. */
7855 if (!inst.operands[0].isreg)
7856 {
7857 constraint (inst.cond != COND_ALWAYS, BAD_COND);
7858 inst.instruction |= 0xf0000000;
7859 }
b99bd4ef 7860
c19d1205
ZW
7861 inst.instruction |= inst.operands[0].reg << 12;
7862 encode_arm_cp_address (1, TRUE, TRUE, 0);
7863}
b99bd4ef
NC
7864
7865static void
c19d1205 7866do_iwmmxt_wldstd (void)
b99bd4ef 7867{
c19d1205 7868 inst.instruction |= inst.operands[0].reg << 12;
f2184508 7869 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 7870}
b99bd4ef 7871
c19d1205
ZW
7872static void
7873do_iwmmxt_wshufh (void)
7874{
7875 inst.instruction |= inst.operands[0].reg << 12;
7876 inst.instruction |= inst.operands[1].reg << 16;
7877 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
7878 inst.instruction |= (inst.operands[2].imm & 0x0f);
7879}
b99bd4ef 7880
c19d1205
ZW
7881static void
7882do_iwmmxt_wzero (void)
7883{
7884 /* WZERO reg is an alias for WANDN reg, reg, reg. */
7885 inst.instruction |= inst.operands[0].reg;
7886 inst.instruction |= inst.operands[0].reg << 12;
7887 inst.instruction |= inst.operands[0].reg << 16;
7888}
7889\f
7890/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
7891 operations first, then control, shift, and load/store. */
b99bd4ef 7892
c19d1205 7893/* Insns like "foo X,Y,Z". */
b99bd4ef 7894
c19d1205
ZW
7895static void
7896do_mav_triple (void)
7897{
7898 inst.instruction |= inst.operands[0].reg << 16;
7899 inst.instruction |= inst.operands[1].reg;
7900 inst.instruction |= inst.operands[2].reg << 12;
7901}
b99bd4ef 7902
c19d1205
ZW
7903/* Insns like "foo W,X,Y,Z".
7904 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 7905
c19d1205
ZW
7906static void
7907do_mav_quad (void)
7908{
7909 inst.instruction |= inst.operands[0].reg << 5;
7910 inst.instruction |= inst.operands[1].reg << 12;
7911 inst.instruction |= inst.operands[2].reg << 16;
7912 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
7913}
7914
c19d1205
ZW
7915/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
7916static void
7917do_mav_dspsc (void)
a737bd4d 7918{
c19d1205
ZW
7919 inst.instruction |= inst.operands[1].reg << 12;
7920}
a737bd4d 7921
c19d1205
ZW
7922/* Maverick shift immediate instructions.
7923 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
7924 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 7925
c19d1205
ZW
7926static void
7927do_mav_shift (void)
7928{
7929 int imm = inst.operands[2].imm;
a737bd4d 7930
c19d1205
ZW
7931 inst.instruction |= inst.operands[0].reg << 12;
7932 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 7933
c19d1205
ZW
7934 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
7935 Bits 5-7 of the insn should have bits 4-6 of the immediate.
7936 Bit 4 should be 0. */
7937 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 7938
c19d1205
ZW
7939 inst.instruction |= imm;
7940}
7941\f
7942/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 7943
c19d1205
ZW
7944/* Xscale multiply-accumulate (argument parse)
7945 MIAcc acc0,Rm,Rs
7946 MIAPHcc acc0,Rm,Rs
7947 MIAxycc acc0,Rm,Rs. */
a737bd4d 7948
c19d1205
ZW
7949static void
7950do_xsc_mia (void)
7951{
7952 inst.instruction |= inst.operands[1].reg;
7953 inst.instruction |= inst.operands[2].reg << 12;
7954}
a737bd4d 7955
c19d1205 7956/* Xscale move-accumulator-register (argument parse)
a737bd4d 7957
c19d1205 7958 MARcc acc0,RdLo,RdHi. */
b99bd4ef 7959
c19d1205
ZW
7960static void
7961do_xsc_mar (void)
7962{
7963 inst.instruction |= inst.operands[1].reg << 12;
7964 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
7965}
7966
c19d1205 7967/* Xscale move-register-accumulator (argument parse)
b99bd4ef 7968
c19d1205 7969 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
7970
7971static void
c19d1205 7972do_xsc_mra (void)
b99bd4ef 7973{
c19d1205
ZW
7974 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
7975 inst.instruction |= inst.operands[0].reg << 12;
7976 inst.instruction |= inst.operands[1].reg << 16;
7977}
7978\f
7979/* Encoding functions relevant only to Thumb. */
b99bd4ef 7980
c19d1205
ZW
7981/* inst.operands[i] is a shifted-register operand; encode
7982 it into inst.instruction in the format used by Thumb32. */
7983
7984static void
7985encode_thumb32_shifted_operand (int i)
7986{
7987 unsigned int value = inst.reloc.exp.X_add_number;
7988 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 7989
9c3c69f2
PB
7990 constraint (inst.operands[i].immisreg,
7991 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
7992 inst.instruction |= inst.operands[i].reg;
7993 if (shift == SHIFT_RRX)
7994 inst.instruction |= SHIFT_ROR << 4;
7995 else
b99bd4ef 7996 {
c19d1205
ZW
7997 constraint (inst.reloc.exp.X_op != O_constant,
7998 _("expression too complex"));
7999
8000 constraint (value > 32
8001 || (value == 32 && (shift == SHIFT_LSL
8002 || shift == SHIFT_ROR)),
8003 _("shift expression is too large"));
8004
8005 if (value == 0)
8006 shift = SHIFT_LSL;
8007 else if (value == 32)
8008 value = 0;
8009
8010 inst.instruction |= shift << 4;
8011 inst.instruction |= (value & 0x1c) << 10;
8012 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 8013 }
c19d1205 8014}
b99bd4ef 8015
b99bd4ef 8016
c19d1205
ZW
8017/* inst.operands[i] was set up by parse_address. Encode it into a
8018 Thumb32 format load or store instruction. Reject forms that cannot
8019 be used with such instructions. If is_t is true, reject forms that
8020 cannot be used with a T instruction; if is_d is true, reject forms
8021 that cannot be used with a D instruction. */
b99bd4ef 8022
c19d1205
ZW
8023static void
8024encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
8025{
8026 bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
8027
8028 constraint (!inst.operands[i].isreg,
53365c0d 8029 _("Instruction does not support =N addresses"));
b99bd4ef 8030
c19d1205
ZW
8031 inst.instruction |= inst.operands[i].reg << 16;
8032 if (inst.operands[i].immisreg)
b99bd4ef 8033 {
c19d1205
ZW
8034 constraint (is_pc, _("cannot use register index with PC-relative addressing"));
8035 constraint (is_t || is_d, _("cannot use register index with this instruction"));
8036 constraint (inst.operands[i].negative,
8037 _("Thumb does not support negative register indexing"));
8038 constraint (inst.operands[i].postind,
8039 _("Thumb does not support register post-indexing"));
8040 constraint (inst.operands[i].writeback,
8041 _("Thumb does not support register indexing with writeback"));
8042 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
8043 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 8044
f40d1643 8045 inst.instruction |= inst.operands[i].imm;
c19d1205 8046 if (inst.operands[i].shifted)
b99bd4ef 8047 {
c19d1205
ZW
8048 constraint (inst.reloc.exp.X_op != O_constant,
8049 _("expression too complex"));
9c3c69f2
PB
8050 constraint (inst.reloc.exp.X_add_number < 0
8051 || inst.reloc.exp.X_add_number > 3,
c19d1205 8052 _("shift out of range"));
9c3c69f2 8053 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
8054 }
8055 inst.reloc.type = BFD_RELOC_UNUSED;
8056 }
8057 else if (inst.operands[i].preind)
8058 {
8059 constraint (is_pc && inst.operands[i].writeback,
8060 _("cannot use writeback with PC-relative addressing"));
f40d1643 8061 constraint (is_t && inst.operands[i].writeback,
c19d1205
ZW
8062 _("cannot use writeback with this instruction"));
8063
8064 if (is_d)
8065 {
8066 inst.instruction |= 0x01000000;
8067 if (inst.operands[i].writeback)
8068 inst.instruction |= 0x00200000;
b99bd4ef 8069 }
c19d1205 8070 else
b99bd4ef 8071 {
c19d1205
ZW
8072 inst.instruction |= 0x00000c00;
8073 if (inst.operands[i].writeback)
8074 inst.instruction |= 0x00000100;
b99bd4ef 8075 }
c19d1205 8076 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 8077 }
c19d1205 8078 else if (inst.operands[i].postind)
b99bd4ef 8079 {
c19d1205
ZW
8080 assert (inst.operands[i].writeback);
8081 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
8082 constraint (is_t, _("cannot use post-indexing with this instruction"));
8083
8084 if (is_d)
8085 inst.instruction |= 0x00200000;
8086 else
8087 inst.instruction |= 0x00000900;
8088 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
8089 }
8090 else /* unindexed - only for coprocessor */
8091 inst.error = _("instruction does not accept unindexed addressing");
8092}
8093
8094/* Table of Thumb instructions which exist in both 16- and 32-bit
8095 encodings (the latter only in post-V6T2 cores). The index is the
8096 value used in the insns table below. When there is more than one
8097 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
8098 holds variant (1).
8099 Also contains several pseudo-instructions used during relaxation. */
c19d1205
ZW
8100#define T16_32_TAB \
8101 X(adc, 4140, eb400000), \
8102 X(adcs, 4140, eb500000), \
8103 X(add, 1c00, eb000000), \
8104 X(adds, 1c00, eb100000), \
0110f2b8
PB
8105 X(addi, 0000, f1000000), \
8106 X(addis, 0000, f1100000), \
8107 X(add_pc,000f, f20f0000), \
8108 X(add_sp,000d, f10d0000), \
e9f89963 8109 X(adr, 000f, f20f0000), \
c19d1205
ZW
8110 X(and, 4000, ea000000), \
8111 X(ands, 4000, ea100000), \
8112 X(asr, 1000, fa40f000), \
8113 X(asrs, 1000, fa50f000), \
0110f2b8
PB
8114 X(b, e000, f000b000), \
8115 X(bcond, d000, f0008000), \
c19d1205
ZW
8116 X(bic, 4380, ea200000), \
8117 X(bics, 4380, ea300000), \
8118 X(cmn, 42c0, eb100f00), \
8119 X(cmp, 2800, ebb00f00), \
8120 X(cpsie, b660, f3af8400), \
8121 X(cpsid, b670, f3af8600), \
8122 X(cpy, 4600, ea4f0000), \
0110f2b8 8123 X(dec_sp,80dd, f1bd0d00), \
c19d1205
ZW
8124 X(eor, 4040, ea800000), \
8125 X(eors, 4040, ea900000), \
0110f2b8 8126 X(inc_sp,00dd, f10d0d00), \
c19d1205
ZW
8127 X(ldmia, c800, e8900000), \
8128 X(ldr, 6800, f8500000), \
8129 X(ldrb, 7800, f8100000), \
8130 X(ldrh, 8800, f8300000), \
8131 X(ldrsb, 5600, f9100000), \
8132 X(ldrsh, 5e00, f9300000), \
0110f2b8
PB
8133 X(ldr_pc,4800, f85f0000), \
8134 X(ldr_pc2,4800, f85f0000), \
8135 X(ldr_sp,9800, f85d0000), \
c19d1205
ZW
8136 X(lsl, 0000, fa00f000), \
8137 X(lsls, 0000, fa10f000), \
8138 X(lsr, 0800, fa20f000), \
8139 X(lsrs, 0800, fa30f000), \
8140 X(mov, 2000, ea4f0000), \
8141 X(movs, 2000, ea5f0000), \
8142 X(mul, 4340, fb00f000), \
8143 X(muls, 4340, ffffffff), /* no 32b muls */ \
8144 X(mvn, 43c0, ea6f0000), \
8145 X(mvns, 43c0, ea7f0000), \
8146 X(neg, 4240, f1c00000), /* rsb #0 */ \
8147 X(negs, 4240, f1d00000), /* rsbs #0 */ \
8148 X(orr, 4300, ea400000), \
8149 X(orrs, 4300, ea500000), \
e9f89963
PB
8150 X(pop, bc00, e8bd0000), /* ldmia sp!,... */ \
8151 X(push, b400, e92d0000), /* stmdb sp!,... */ \
c19d1205
ZW
8152 X(rev, ba00, fa90f080), \
8153 X(rev16, ba40, fa90f090), \
8154 X(revsh, bac0, fa90f0b0), \
8155 X(ror, 41c0, fa60f000), \
8156 X(rors, 41c0, fa70f000), \
8157 X(sbc, 4180, eb600000), \
8158 X(sbcs, 4180, eb700000), \
8159 X(stmia, c000, e8800000), \
8160 X(str, 6000, f8400000), \
8161 X(strb, 7000, f8000000), \
8162 X(strh, 8000, f8200000), \
0110f2b8 8163 X(str_sp,9000, f84d0000), \
c19d1205
ZW
8164 X(sub, 1e00, eba00000), \
8165 X(subs, 1e00, ebb00000), \
0110f2b8
PB
8166 X(subi, 8000, f1a00000), \
8167 X(subis, 8000, f1b00000), \
c19d1205
ZW
8168 X(sxtb, b240, fa4ff080), \
8169 X(sxth, b200, fa0ff080), \
8170 X(tst, 4200, ea100f00), \
8171 X(uxtb, b2c0, fa5ff080), \
8172 X(uxth, b280, fa1ff080), \
8173 X(nop, bf00, f3af8000), \
8174 X(yield, bf10, f3af8001), \
8175 X(wfe, bf20, f3af8002), \
8176 X(wfi, bf30, f3af8003), \
8177 X(sev, bf40, f3af9004), /* typo, 8004? */
8178
8179/* To catch errors in encoding functions, the codes are all offset by
8180 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
8181 as 16-bit instructions. */
8182#define X(a,b,c) T_MNEM_##a
8183enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
8184#undef X
8185
8186#define X(a,b,c) 0x##b
8187static const unsigned short thumb_op16[] = { T16_32_TAB };
8188#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
8189#undef X
8190
8191#define X(a,b,c) 0x##c
8192static const unsigned int thumb_op32[] = { T16_32_TAB };
8193#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
8194#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
8195#undef X
8196#undef T16_32_TAB
8197
8198/* Thumb instruction encoders, in alphabetical order. */
8199
92e90b6e
PB
8200/* ADDW or SUBW. */
8201static void
8202do_t_add_sub_w (void)
8203{
8204 int Rd, Rn;
8205
8206 Rd = inst.operands[0].reg;
8207 Rn = inst.operands[1].reg;
8208
8209 constraint (Rd == 15, _("PC not allowed as destination"));
8210 inst.instruction |= (Rn << 16) | (Rd << 8);
8211 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
8212}
8213
c19d1205
ZW
8214/* Parse an add or subtract instruction. We get here with inst.instruction
8215 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
8216
8217static void
8218do_t_add_sub (void)
8219{
8220 int Rd, Rs, Rn;
8221
8222 Rd = inst.operands[0].reg;
8223 Rs = (inst.operands[1].present
8224 ? inst.operands[1].reg /* Rd, Rs, foo */
8225 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
8226
8227 if (unified_syntax)
8228 {
0110f2b8
PB
8229 bfd_boolean flags;
8230 bfd_boolean narrow;
8231 int opcode;
8232
8233 flags = (inst.instruction == T_MNEM_adds
8234 || inst.instruction == T_MNEM_subs);
8235 if (flags)
8236 narrow = (current_it_mask == 0);
8237 else
8238 narrow = (current_it_mask != 0);
c19d1205 8239 if (!inst.operands[2].isreg)
b99bd4ef 8240 {
16805f35
PB
8241 int add;
8242
8243 add = (inst.instruction == T_MNEM_add
8244 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
8245 opcode = 0;
8246 if (inst.size_req != 4)
8247 {
0110f2b8
PB
8248 /* Attempt to use a narrow opcode, with relaxation if
8249 appropriate. */
8250 if (Rd == REG_SP && Rs == REG_SP && !flags)
8251 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
8252 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
8253 opcode = T_MNEM_add_sp;
8254 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
8255 opcode = T_MNEM_add_pc;
8256 else if (Rd <= 7 && Rs <= 7 && narrow)
8257 {
8258 if (flags)
8259 opcode = add ? T_MNEM_addis : T_MNEM_subis;
8260 else
8261 opcode = add ? T_MNEM_addi : T_MNEM_subi;
8262 }
8263 if (opcode)
8264 {
8265 inst.instruction = THUMB_OP16(opcode);
8266 inst.instruction |= (Rd << 4) | Rs;
8267 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
8268 if (inst.size_req != 2)
8269 inst.relax = opcode;
8270 }
8271 else
8272 constraint (inst.size_req == 2, BAD_HIREG);
8273 }
8274 if (inst.size_req == 4
8275 || (inst.size_req != 2 && !opcode))
8276 {
16805f35
PB
8277 if (Rs == REG_PC)
8278 {
8279 /* Always use addw/subw. */
8280 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
8281 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
8282 }
8283 else
8284 {
8285 inst.instruction = THUMB_OP32 (inst.instruction);
8286 inst.instruction = (inst.instruction & 0xe1ffffff)
8287 | 0x10000000;
8288 if (flags)
8289 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
8290 else
8291 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
8292 }
0110f2b8
PB
8293 inst.instruction |= inst.operands[0].reg << 8;
8294 inst.instruction |= inst.operands[1].reg << 16;
0110f2b8 8295 }
b99bd4ef 8296 }
c19d1205
ZW
8297 else
8298 {
8299 Rn = inst.operands[2].reg;
8300 /* See if we can do this with a 16-bit instruction. */
8301 if (!inst.operands[2].shifted && inst.size_req != 4)
8302 {
e27ec89e
PB
8303 if (Rd > 7 || Rs > 7 || Rn > 7)
8304 narrow = FALSE;
8305
8306 if (narrow)
c19d1205 8307 {
e27ec89e
PB
8308 inst.instruction = ((inst.instruction == T_MNEM_adds
8309 || inst.instruction == T_MNEM_add)
c19d1205
ZW
8310 ? T_OPCODE_ADD_R3
8311 : T_OPCODE_SUB_R3);
8312 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
8313 return;
8314 }
b99bd4ef 8315
c19d1205
ZW
8316 if (inst.instruction == T_MNEM_add)
8317 {
8318 if (Rd == Rs)
8319 {
8320 inst.instruction = T_OPCODE_ADD_HI;
8321 inst.instruction |= (Rd & 8) << 4;
8322 inst.instruction |= (Rd & 7);
8323 inst.instruction |= Rn << 3;
8324 return;
8325 }
8326 /* ... because addition is commutative! */
8327 else if (Rd == Rn)
8328 {
8329 inst.instruction = T_OPCODE_ADD_HI;
8330 inst.instruction |= (Rd & 8) << 4;
8331 inst.instruction |= (Rd & 7);
8332 inst.instruction |= Rs << 3;
8333 return;
8334 }
8335 }
8336 }
8337 /* If we get here, it can't be done in 16 bits. */
8338 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
8339 _("shift must be constant"));
8340 inst.instruction = THUMB_OP32 (inst.instruction);
8341 inst.instruction |= Rd << 8;
8342 inst.instruction |= Rs << 16;
8343 encode_thumb32_shifted_operand (2);
8344 }
8345 }
8346 else
8347 {
8348 constraint (inst.instruction == T_MNEM_adds
8349 || inst.instruction == T_MNEM_subs,
8350 BAD_THUMB32);
b99bd4ef 8351
c19d1205 8352 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 8353 {
c19d1205
ZW
8354 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
8355 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
8356 BAD_HIREG);
8357
8358 inst.instruction = (inst.instruction == T_MNEM_add
8359 ? 0x0000 : 0x8000);
8360 inst.instruction |= (Rd << 4) | Rs;
8361 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
8362 return;
8363 }
8364
c19d1205
ZW
8365 Rn = inst.operands[2].reg;
8366 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 8367
c19d1205
ZW
8368 /* We now have Rd, Rs, and Rn set to registers. */
8369 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 8370 {
c19d1205
ZW
8371 /* Can't do this for SUB. */
8372 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
8373 inst.instruction = T_OPCODE_ADD_HI;
8374 inst.instruction |= (Rd & 8) << 4;
8375 inst.instruction |= (Rd & 7);
8376 if (Rs == Rd)
8377 inst.instruction |= Rn << 3;
8378 else if (Rn == Rd)
8379 inst.instruction |= Rs << 3;
8380 else
8381 constraint (1, _("dest must overlap one source register"));
8382 }
8383 else
8384 {
8385 inst.instruction = (inst.instruction == T_MNEM_add
8386 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
8387 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 8388 }
b99bd4ef 8389 }
b99bd4ef
NC
8390}
8391
c19d1205
ZW
8392static void
8393do_t_adr (void)
8394{
0110f2b8
PB
8395 if (unified_syntax && inst.size_req == 0 && inst.operands[0].reg <= 7)
8396 {
8397 /* Defer to section relaxation. */
8398 inst.relax = inst.instruction;
8399 inst.instruction = THUMB_OP16 (inst.instruction);
8400 inst.instruction |= inst.operands[0].reg << 4;
8401 }
8402 else if (unified_syntax && inst.size_req != 2)
e9f89963 8403 {
0110f2b8 8404 /* Generate a 32-bit opcode. */
e9f89963
PB
8405 inst.instruction = THUMB_OP32 (inst.instruction);
8406 inst.instruction |= inst.operands[0].reg << 8;
8407 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
8408 inst.reloc.pc_rel = 1;
8409 }
8410 else
8411 {
0110f2b8 8412 /* Generate a 16-bit opcode. */
e9f89963
PB
8413 inst.instruction = THUMB_OP16 (inst.instruction);
8414 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
8415 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
8416 inst.reloc.pc_rel = 1;
b99bd4ef 8417
e9f89963
PB
8418 inst.instruction |= inst.operands[0].reg << 4;
8419 }
c19d1205 8420}
b99bd4ef 8421
c19d1205
ZW
8422/* Arithmetic instructions for which there is just one 16-bit
8423 instruction encoding, and it allows only two low registers.
8424 For maximal compatibility with ARM syntax, we allow three register
8425 operands even when Thumb-32 instructions are not available, as long
8426 as the first two are identical. For instance, both "sbc r0,r1" and
8427 "sbc r0,r0,r1" are allowed. */
b99bd4ef 8428static void
c19d1205 8429do_t_arit3 (void)
b99bd4ef 8430{
c19d1205 8431 int Rd, Rs, Rn;
b99bd4ef 8432
c19d1205
ZW
8433 Rd = inst.operands[0].reg;
8434 Rs = (inst.operands[1].present
8435 ? inst.operands[1].reg /* Rd, Rs, foo */
8436 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
8437 Rn = inst.operands[2].reg;
b99bd4ef 8438
c19d1205 8439 if (unified_syntax)
b99bd4ef 8440 {
c19d1205
ZW
8441 if (!inst.operands[2].isreg)
8442 {
8443 /* For an immediate, we always generate a 32-bit opcode;
8444 section relaxation will shrink it later if possible. */
8445 inst.instruction = THUMB_OP32 (inst.instruction);
8446 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
8447 inst.instruction |= Rd << 8;
8448 inst.instruction |= Rs << 16;
8449 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
8450 }
8451 else
8452 {
e27ec89e
PB
8453 bfd_boolean narrow;
8454
c19d1205 8455 /* See if we can do this with a 16-bit instruction. */
e27ec89e
PB
8456 if (THUMB_SETS_FLAGS (inst.instruction))
8457 narrow = current_it_mask == 0;
8458 else
8459 narrow = current_it_mask != 0;
8460
8461 if (Rd > 7 || Rn > 7 || Rs > 7)
8462 narrow = FALSE;
8463 if (inst.operands[2].shifted)
8464 narrow = FALSE;
8465 if (inst.size_req == 4)
8466 narrow = FALSE;
8467
8468 if (narrow
c19d1205
ZW
8469 && Rd == Rs)
8470 {
8471 inst.instruction = THUMB_OP16 (inst.instruction);
8472 inst.instruction |= Rd;
8473 inst.instruction |= Rn << 3;
8474 return;
8475 }
b99bd4ef 8476
c19d1205
ZW
8477 /* If we get here, it can't be done in 16 bits. */
8478 constraint (inst.operands[2].shifted
8479 && inst.operands[2].immisreg,
8480 _("shift must be constant"));
8481 inst.instruction = THUMB_OP32 (inst.instruction);
8482 inst.instruction |= Rd << 8;
8483 inst.instruction |= Rs << 16;
8484 encode_thumb32_shifted_operand (2);
8485 }
a737bd4d 8486 }
c19d1205 8487 else
b99bd4ef 8488 {
c19d1205
ZW
8489 /* On its face this is a lie - the instruction does set the
8490 flags. However, the only supported mnemonic in this mode
8491 says it doesn't. */
8492 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 8493
c19d1205
ZW
8494 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
8495 _("unshifted register required"));
8496 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
8497 constraint (Rd != Rs,
8498 _("dest and source1 must be the same register"));
a737bd4d 8499
c19d1205
ZW
8500 inst.instruction = THUMB_OP16 (inst.instruction);
8501 inst.instruction |= Rd;
8502 inst.instruction |= Rn << 3;
b99bd4ef 8503 }
a737bd4d 8504}
b99bd4ef 8505
c19d1205
ZW
8506/* Similarly, but for instructions where the arithmetic operation is
8507 commutative, so we can allow either of them to be different from
8508 the destination operand in a 16-bit instruction. For instance, all
8509 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
8510 accepted. */
8511static void
8512do_t_arit3c (void)
a737bd4d 8513{
c19d1205 8514 int Rd, Rs, Rn;
b99bd4ef 8515
c19d1205
ZW
8516 Rd = inst.operands[0].reg;
8517 Rs = (inst.operands[1].present
8518 ? inst.operands[1].reg /* Rd, Rs, foo */
8519 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
8520 Rn = inst.operands[2].reg;
a737bd4d 8521
c19d1205 8522 if (unified_syntax)
a737bd4d 8523 {
c19d1205 8524 if (!inst.operands[2].isreg)
b99bd4ef 8525 {
c19d1205
ZW
8526 /* For an immediate, we always generate a 32-bit opcode;
8527 section relaxation will shrink it later if possible. */
8528 inst.instruction = THUMB_OP32 (inst.instruction);
8529 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
8530 inst.instruction |= Rd << 8;
8531 inst.instruction |= Rs << 16;
8532 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 8533 }
c19d1205 8534 else
a737bd4d 8535 {
e27ec89e
PB
8536 bfd_boolean narrow;
8537
c19d1205 8538 /* See if we can do this with a 16-bit instruction. */
e27ec89e
PB
8539 if (THUMB_SETS_FLAGS (inst.instruction))
8540 narrow = current_it_mask == 0;
8541 else
8542 narrow = current_it_mask != 0;
8543
8544 if (Rd > 7 || Rn > 7 || Rs > 7)
8545 narrow = FALSE;
8546 if (inst.operands[2].shifted)
8547 narrow = FALSE;
8548 if (inst.size_req == 4)
8549 narrow = FALSE;
8550
8551 if (narrow)
a737bd4d 8552 {
c19d1205 8553 if (Rd == Rs)
a737bd4d 8554 {
c19d1205
ZW
8555 inst.instruction = THUMB_OP16 (inst.instruction);
8556 inst.instruction |= Rd;
8557 inst.instruction |= Rn << 3;
8558 return;
a737bd4d 8559 }
c19d1205 8560 if (Rd == Rn)
a737bd4d 8561 {
c19d1205
ZW
8562 inst.instruction = THUMB_OP16 (inst.instruction);
8563 inst.instruction |= Rd;
8564 inst.instruction |= Rs << 3;
8565 return;
a737bd4d
NC
8566 }
8567 }
c19d1205
ZW
8568
8569 /* If we get here, it can't be done in 16 bits. */
8570 constraint (inst.operands[2].shifted
8571 && inst.operands[2].immisreg,
8572 _("shift must be constant"));
8573 inst.instruction = THUMB_OP32 (inst.instruction);
8574 inst.instruction |= Rd << 8;
8575 inst.instruction |= Rs << 16;
8576 encode_thumb32_shifted_operand (2);
a737bd4d 8577 }
b99bd4ef 8578 }
c19d1205
ZW
8579 else
8580 {
8581 /* On its face this is a lie - the instruction does set the
8582 flags. However, the only supported mnemonic in this mode
8583 says it doesn't. */
8584 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 8585
c19d1205
ZW
8586 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
8587 _("unshifted register required"));
8588 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
8589
8590 inst.instruction = THUMB_OP16 (inst.instruction);
8591 inst.instruction |= Rd;
8592
8593 if (Rd == Rs)
8594 inst.instruction |= Rn << 3;
8595 else if (Rd == Rn)
8596 inst.instruction |= Rs << 3;
8597 else
8598 constraint (1, _("dest must overlap one source register"));
8599 }
a737bd4d
NC
8600}
8601
62b3e311
PB
8602static void
8603do_t_barrier (void)
8604{
8605 if (inst.operands[0].present)
8606 {
8607 constraint ((inst.instruction & 0xf0) != 0x40
8608 && inst.operands[0].imm != 0xf,
8609 "bad barrier type");
8610 inst.instruction |= inst.operands[0].imm;
8611 }
8612 else
8613 inst.instruction |= 0xf;
8614}
8615
c19d1205
ZW
8616static void
8617do_t_bfc (void)
a737bd4d 8618{
c19d1205
ZW
8619 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
8620 constraint (msb > 32, _("bit-field extends past end of register"));
8621 /* The instruction encoding stores the LSB and MSB,
8622 not the LSB and width. */
8623 inst.instruction |= inst.operands[0].reg << 8;
8624 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
8625 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
8626 inst.instruction |= msb - 1;
b99bd4ef
NC
8627}
8628
c19d1205
ZW
8629static void
8630do_t_bfi (void)
b99bd4ef 8631{
c19d1205 8632 unsigned int msb;
b99bd4ef 8633
c19d1205
ZW
8634 /* #0 in second position is alternative syntax for bfc, which is
8635 the same instruction but with REG_PC in the Rm field. */
8636 if (!inst.operands[1].isreg)
8637 inst.operands[1].reg = REG_PC;
b99bd4ef 8638
c19d1205
ZW
8639 msb = inst.operands[2].imm + inst.operands[3].imm;
8640 constraint (msb > 32, _("bit-field extends past end of register"));
8641 /* The instruction encoding stores the LSB and MSB,
8642 not the LSB and width. */
8643 inst.instruction |= inst.operands[0].reg << 8;
8644 inst.instruction |= inst.operands[1].reg << 16;
8645 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
8646 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
8647 inst.instruction |= msb - 1;
b99bd4ef
NC
8648}
8649
c19d1205
ZW
8650static void
8651do_t_bfx (void)
b99bd4ef 8652{
c19d1205
ZW
8653 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
8654 _("bit-field extends past end of register"));
8655 inst.instruction |= inst.operands[0].reg << 8;
8656 inst.instruction |= inst.operands[1].reg << 16;
8657 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
8658 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
8659 inst.instruction |= inst.operands[3].imm - 1;
8660}
b99bd4ef 8661
c19d1205
ZW
8662/* ARM V5 Thumb BLX (argument parse)
8663 BLX <target_addr> which is BLX(1)
8664 BLX <Rm> which is BLX(2)
8665 Unfortunately, there are two different opcodes for this mnemonic.
8666 So, the insns[].value is not used, and the code here zaps values
8667 into inst.instruction.
b99bd4ef 8668
c19d1205
ZW
8669 ??? How to take advantage of the additional two bits of displacement
8670 available in Thumb32 mode? Need new relocation? */
b99bd4ef 8671
c19d1205
ZW
8672static void
8673do_t_blx (void)
8674{
dfa9f0d5 8675 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
c19d1205
ZW
8676 if (inst.operands[0].isreg)
8677 /* We have a register, so this is BLX(2). */
8678 inst.instruction |= inst.operands[0].reg << 3;
b99bd4ef
NC
8679 else
8680 {
c19d1205 8681 /* No register. This must be BLX(1). */
2fc8bdac 8682 inst.instruction = 0xf000e800;
39b41c9c
PB
8683#ifdef OBJ_ELF
8684 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
8685 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
8686 else
8687#endif
8688 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BLX;
c19d1205 8689 inst.reloc.pc_rel = 1;
b99bd4ef
NC
8690 }
8691}
8692
c19d1205
ZW
8693static void
8694do_t_branch (void)
b99bd4ef 8695{
0110f2b8 8696 int opcode;
dfa9f0d5
PB
8697 int cond;
8698
8699 if (current_it_mask)
8700 {
8701 /* Conditional branches inside IT blocks are encoded as unconditional
8702 branches. */
8703 cond = COND_ALWAYS;
8704 /* A branch must be the last instruction in an IT block. */
8705 constraint (current_it_mask != 0x10, BAD_BRANCH);
8706 }
8707 else
8708 cond = inst.cond;
8709
8710 if (cond != COND_ALWAYS)
0110f2b8
PB
8711 opcode = T_MNEM_bcond;
8712 else
8713 opcode = inst.instruction;
8714
8715 if (unified_syntax && inst.size_req == 4)
c19d1205 8716 {
0110f2b8 8717 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 8718 if (cond == COND_ALWAYS)
0110f2b8 8719 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
8720 else
8721 {
dfa9f0d5
PB
8722 assert (cond != 0xF);
8723 inst.instruction |= cond << 22;
c19d1205
ZW
8724 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH20;
8725 }
8726 }
b99bd4ef
NC
8727 else
8728 {
0110f2b8 8729 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 8730 if (cond == COND_ALWAYS)
c19d1205
ZW
8731 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH12;
8732 else
b99bd4ef 8733 {
dfa9f0d5 8734 inst.instruction |= cond << 8;
c19d1205 8735 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 8736 }
0110f2b8
PB
8737 /* Allow section relaxation. */
8738 if (unified_syntax && inst.size_req != 2)
8739 inst.relax = opcode;
b99bd4ef 8740 }
c19d1205
ZW
8741
8742 inst.reloc.pc_rel = 1;
b99bd4ef
NC
8743}
8744
8745static void
c19d1205 8746do_t_bkpt (void)
b99bd4ef 8747{
dfa9f0d5
PB
8748 constraint (inst.cond != COND_ALWAYS,
8749 _("instruction is always unconditional"));
c19d1205 8750 if (inst.operands[0].present)
b99bd4ef 8751 {
c19d1205
ZW
8752 constraint (inst.operands[0].imm > 255,
8753 _("immediate value out of range"));
8754 inst.instruction |= inst.operands[0].imm;
b99bd4ef 8755 }
b99bd4ef
NC
8756}
8757
8758static void
c19d1205 8759do_t_branch23 (void)
b99bd4ef 8760{
dfa9f0d5 8761 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
c19d1205 8762 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a
RE
8763 inst.reloc.pc_rel = 1;
8764
c19d1205
ZW
8765 /* If the destination of the branch is a defined symbol which does not have
8766 the THUMB_FUNC attribute, then we must be calling a function which has
8767 the (interfacearm) attribute. We look for the Thumb entry point to that
8768 function and change the branch to refer to that function instead. */
8769 if ( inst.reloc.exp.X_op == O_symbol
8770 && inst.reloc.exp.X_add_symbol != NULL
8771 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
8772 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
8773 inst.reloc.exp.X_add_symbol =
8774 find_real_start (inst.reloc.exp.X_add_symbol);
90e4755a
RE
8775}
8776
8777static void
c19d1205 8778do_t_bx (void)
90e4755a 8779{
dfa9f0d5 8780 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
c19d1205
ZW
8781 inst.instruction |= inst.operands[0].reg << 3;
8782 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
8783 should cause the alignment to be checked once it is known. This is
8784 because BX PC only works if the instruction is word aligned. */
8785}
90e4755a 8786
c19d1205
ZW
8787static void
8788do_t_bxj (void)
8789{
dfa9f0d5 8790 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
c19d1205
ZW
8791 if (inst.operands[0].reg == REG_PC)
8792 as_tsktsk (_("use of r15 in bxj is not really useful"));
90e4755a 8793
c19d1205 8794 inst.instruction |= inst.operands[0].reg << 16;
90e4755a
RE
8795}
8796
8797static void
c19d1205 8798do_t_clz (void)
90e4755a 8799{
c19d1205
ZW
8800 inst.instruction |= inst.operands[0].reg << 8;
8801 inst.instruction |= inst.operands[1].reg << 16;
8802 inst.instruction |= inst.operands[1].reg;
8803}
90e4755a 8804
dfa9f0d5
PB
8805static void
8806do_t_cps (void)
8807{
8808 constraint (current_it_mask, BAD_NOT_IT);
8809 inst.instruction |= inst.operands[0].imm;
8810}
8811
c19d1205
ZW
8812static void
8813do_t_cpsi (void)
8814{
dfa9f0d5 8815 constraint (current_it_mask, BAD_NOT_IT);
c19d1205 8816 if (unified_syntax
62b3e311
PB
8817 && (inst.operands[1].present || inst.size_req == 4)
8818 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 8819 {
c19d1205
ZW
8820 unsigned int imod = (inst.instruction & 0x0030) >> 4;
8821 inst.instruction = 0xf3af8000;
8822 inst.instruction |= imod << 9;
8823 inst.instruction |= inst.operands[0].imm << 5;
8824 if (inst.operands[1].present)
8825 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 8826 }
c19d1205 8827 else
90e4755a 8828 {
62b3e311
PB
8829 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
8830 && (inst.operands[0].imm & 4),
8831 _("selected processor does not support 'A' form "
8832 "of this instruction"));
8833 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
8834 _("Thumb does not support the 2-argument "
8835 "form of this instruction"));
8836 inst.instruction |= inst.operands[0].imm;
90e4755a 8837 }
90e4755a
RE
8838}
8839
c19d1205
ZW
8840/* THUMB CPY instruction (argument parse). */
8841
90e4755a 8842static void
c19d1205 8843do_t_cpy (void)
90e4755a 8844{
c19d1205 8845 if (inst.size_req == 4)
90e4755a 8846 {
c19d1205
ZW
8847 inst.instruction = THUMB_OP32 (T_MNEM_mov);
8848 inst.instruction |= inst.operands[0].reg << 8;
8849 inst.instruction |= inst.operands[1].reg;
90e4755a 8850 }
c19d1205 8851 else
90e4755a 8852 {
c19d1205
ZW
8853 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
8854 inst.instruction |= (inst.operands[0].reg & 0x7);
8855 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 8856 }
90e4755a
RE
8857}
8858
90e4755a 8859static void
c19d1205 8860do_t_czb (void)
90e4755a 8861{
dfa9f0d5 8862 constraint (current_it_mask, BAD_NOT_IT);
c19d1205
ZW
8863 constraint (inst.operands[0].reg > 7, BAD_HIREG);
8864 inst.instruction |= inst.operands[0].reg;
8865 inst.reloc.pc_rel = 1;
8866 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
8867}
90e4755a 8868
62b3e311
PB
8869static void
8870do_t_dbg (void)
8871{
8872 inst.instruction |= inst.operands[0].imm;
8873}
8874
8875static void
8876do_t_div (void)
8877{
8878 if (!inst.operands[1].present)
8879 inst.operands[1].reg = inst.operands[0].reg;
8880 inst.instruction |= inst.operands[0].reg << 8;
8881 inst.instruction |= inst.operands[1].reg << 16;
8882 inst.instruction |= inst.operands[2].reg;
8883}
8884
c19d1205
ZW
8885static void
8886do_t_hint (void)
8887{
8888 if (unified_syntax && inst.size_req == 4)
8889 inst.instruction = THUMB_OP32 (inst.instruction);
8890 else
8891 inst.instruction = THUMB_OP16 (inst.instruction);
8892}
90e4755a 8893
c19d1205
ZW
8894static void
8895do_t_it (void)
8896{
8897 unsigned int cond = inst.operands[0].imm;
e27ec89e 8898
dfa9f0d5 8899 constraint (current_it_mask, BAD_NOT_IT);
e27ec89e
PB
8900 current_it_mask = (inst.instruction & 0xf) | 0x10;
8901 current_cc = cond;
8902
8903 /* If the condition is a negative condition, invert the mask. */
c19d1205 8904 if ((cond & 0x1) == 0x0)
90e4755a 8905 {
c19d1205 8906 unsigned int mask = inst.instruction & 0x000f;
90e4755a 8907
c19d1205
ZW
8908 if ((mask & 0x7) == 0)
8909 /* no conversion needed */;
8910 else if ((mask & 0x3) == 0)
e27ec89e
PB
8911 mask ^= 0x8;
8912 else if ((mask & 0x1) == 0)
8913 mask ^= 0xC;
c19d1205 8914 else
e27ec89e 8915 mask ^= 0xE;
90e4755a 8916
e27ec89e
PB
8917 inst.instruction &= 0xfff0;
8918 inst.instruction |= mask;
c19d1205 8919 }
90e4755a 8920
c19d1205
ZW
8921 inst.instruction |= cond << 4;
8922}
90e4755a 8923
c19d1205
ZW
8924static void
8925do_t_ldmstm (void)
8926{
8927 /* This really doesn't seem worth it. */
8928 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
8929 _("expression too complex"));
8930 constraint (inst.operands[1].writeback,
8931 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 8932
c19d1205
ZW
8933 if (unified_syntax)
8934 {
8935 /* See if we can use a 16-bit instruction. */
8936 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
8937 && inst.size_req != 4
8938 && inst.operands[0].reg <= 7
8939 && !(inst.operands[1].imm & ~0xff)
8940 && (inst.instruction == T_MNEM_stmia
8941 ? inst.operands[0].writeback
8942 : (inst.operands[0].writeback
8943 == !(inst.operands[1].imm & (1 << inst.operands[0].reg)))))
90e4755a 8944 {
c19d1205
ZW
8945 if (inst.instruction == T_MNEM_stmia
8946 && (inst.operands[1].imm & (1 << inst.operands[0].reg))
8947 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
8948 as_warn (_("value stored for r%d is UNPREDICTABLE"),
8949 inst.operands[0].reg);
90e4755a 8950
c19d1205
ZW
8951 inst.instruction = THUMB_OP16 (inst.instruction);
8952 inst.instruction |= inst.operands[0].reg << 8;
8953 inst.instruction |= inst.operands[1].imm;
8954 }
8955 else
8956 {
8957 if (inst.operands[1].imm & (1 << 13))
8958 as_warn (_("SP should not be in register list"));
8959 if (inst.instruction == T_MNEM_stmia)
90e4755a 8960 {
c19d1205
ZW
8961 if (inst.operands[1].imm & (1 << 15))
8962 as_warn (_("PC should not be in register list"));
8963 if (inst.operands[1].imm & (1 << inst.operands[0].reg))
8964 as_warn (_("value stored for r%d is UNPREDICTABLE"),
8965 inst.operands[0].reg);
90e4755a
RE
8966 }
8967 else
8968 {
c19d1205
ZW
8969 if (inst.operands[1].imm & (1 << 14)
8970 && inst.operands[1].imm & (1 << 15))
8971 as_warn (_("LR and PC should not both be in register list"));
8972 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
8973 && inst.operands[0].writeback)
8974 as_warn (_("base register should not be in register list "
8975 "when written back"));
90e4755a 8976 }
c19d1205
ZW
8977 if (inst.instruction < 0xffff)
8978 inst.instruction = THUMB_OP32 (inst.instruction);
8979 inst.instruction |= inst.operands[0].reg << 16;
8980 inst.instruction |= inst.operands[1].imm;
8981 if (inst.operands[0].writeback)
8982 inst.instruction |= WRITE_BACK;
90e4755a
RE
8983 }
8984 }
c19d1205 8985 else
90e4755a 8986 {
c19d1205
ZW
8987 constraint (inst.operands[0].reg > 7
8988 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
8989 if (inst.instruction == T_MNEM_stmia)
f03698e6 8990 {
c19d1205
ZW
8991 if (!inst.operands[0].writeback)
8992 as_warn (_("this instruction will write back the base register"));
8993 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
8994 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
8995 as_warn (_("value stored for r%d is UNPREDICTABLE"),
8996 inst.operands[0].reg);
f03698e6 8997 }
c19d1205 8998 else
90e4755a 8999 {
c19d1205
ZW
9000 if (!inst.operands[0].writeback
9001 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
9002 as_warn (_("this instruction will write back the base register"));
9003 else if (inst.operands[0].writeback
9004 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
9005 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
9006 }
9007
c19d1205
ZW
9008 inst.instruction = THUMB_OP16 (inst.instruction);
9009 inst.instruction |= inst.operands[0].reg << 8;
9010 inst.instruction |= inst.operands[1].imm;
9011 }
9012}
e28cd48c 9013
c19d1205
ZW
9014static void
9015do_t_ldrex (void)
9016{
9017 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
9018 || inst.operands[1].postind || inst.operands[1].writeback
9019 || inst.operands[1].immisreg || inst.operands[1].shifted
9020 || inst.operands[1].negative,
01cfc07f 9021 BAD_ADDR_MODE);
e28cd48c 9022
c19d1205
ZW
9023 inst.instruction |= inst.operands[0].reg << 12;
9024 inst.instruction |= inst.operands[1].reg << 16;
9025 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
9026}
e28cd48c 9027
c19d1205
ZW
9028static void
9029do_t_ldrexd (void)
9030{
9031 if (!inst.operands[1].present)
1cac9012 9032 {
c19d1205
ZW
9033 constraint (inst.operands[0].reg == REG_LR,
9034 _("r14 not allowed as first register "
9035 "when second register is omitted"));
9036 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 9037 }
c19d1205
ZW
9038 constraint (inst.operands[0].reg == inst.operands[1].reg,
9039 BAD_OVERLAP);
b99bd4ef 9040
c19d1205
ZW
9041 inst.instruction |= inst.operands[0].reg << 12;
9042 inst.instruction |= inst.operands[1].reg << 8;
9043 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9044}
9045
9046static void
c19d1205 9047do_t_ldst (void)
b99bd4ef 9048{
0110f2b8
PB
9049 unsigned long opcode;
9050 int Rn;
9051
9052 opcode = inst.instruction;
c19d1205 9053 if (unified_syntax)
b99bd4ef 9054 {
53365c0d
PB
9055 if (!inst.operands[1].isreg)
9056 {
9057 if (opcode <= 0xffff)
9058 inst.instruction = THUMB_OP32 (opcode);
9059 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
9060 return;
9061 }
0110f2b8
PB
9062 if (inst.operands[1].isreg
9063 && !inst.operands[1].writeback
c19d1205
ZW
9064 && !inst.operands[1].shifted && !inst.operands[1].postind
9065 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
9066 && opcode <= 0xffff
9067 && inst.size_req != 4)
c19d1205 9068 {
0110f2b8
PB
9069 /* Insn may have a 16-bit form. */
9070 Rn = inst.operands[1].reg;
9071 if (inst.operands[1].immisreg)
9072 {
9073 inst.instruction = THUMB_OP16 (opcode);
9074 /* [Rn, Ri] */
9075 if (Rn <= 7 && inst.operands[1].imm <= 7)
9076 goto op16;
9077 }
9078 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
9079 && opcode != T_MNEM_ldrsb)
9080 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
9081 || (Rn == REG_SP && opcode == T_MNEM_str))
9082 {
9083 /* [Rn, #const] */
9084 if (Rn > 7)
9085 {
9086 if (Rn == REG_PC)
9087 {
9088 if (inst.reloc.pc_rel)
9089 opcode = T_MNEM_ldr_pc2;
9090 else
9091 opcode = T_MNEM_ldr_pc;
9092 }
9093 else
9094 {
9095 if (opcode == T_MNEM_ldr)
9096 opcode = T_MNEM_ldr_sp;
9097 else
9098 opcode = T_MNEM_str_sp;
9099 }
9100 inst.instruction = inst.operands[0].reg << 8;
9101 }
9102 else
9103 {
9104 inst.instruction = inst.operands[0].reg;
9105 inst.instruction |= inst.operands[1].reg << 3;
9106 }
9107 inst.instruction |= THUMB_OP16 (opcode);
9108 if (inst.size_req == 2)
9109 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
9110 else
9111 inst.relax = opcode;
9112 return;
9113 }
c19d1205 9114 }
0110f2b8
PB
9115 /* Definitely a 32-bit variant. */
9116 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
9117 inst.instruction |= inst.operands[0].reg << 12;
9118 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
b99bd4ef
NC
9119 return;
9120 }
9121
c19d1205
ZW
9122 constraint (inst.operands[0].reg > 7, BAD_HIREG);
9123
9124 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 9125 {
c19d1205
ZW
9126 /* Only [Rn,Rm] is acceptable. */
9127 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
9128 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
9129 || inst.operands[1].postind || inst.operands[1].shifted
9130 || inst.operands[1].negative,
9131 _("Thumb does not support this addressing mode"));
9132 inst.instruction = THUMB_OP16 (inst.instruction);
9133 goto op16;
b99bd4ef 9134 }
c19d1205
ZW
9135
9136 inst.instruction = THUMB_OP16 (inst.instruction);
9137 if (!inst.operands[1].isreg)
9138 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
9139 return;
b99bd4ef 9140
c19d1205
ZW
9141 constraint (!inst.operands[1].preind
9142 || inst.operands[1].shifted
9143 || inst.operands[1].writeback,
9144 _("Thumb does not support this addressing mode"));
9145 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 9146 {
c19d1205
ZW
9147 constraint (inst.instruction & 0x0600,
9148 _("byte or halfword not valid for base register"));
9149 constraint (inst.operands[1].reg == REG_PC
9150 && !(inst.instruction & THUMB_LOAD_BIT),
9151 _("r15 based store not allowed"));
9152 constraint (inst.operands[1].immisreg,
9153 _("invalid base register for register offset"));
b99bd4ef 9154
c19d1205
ZW
9155 if (inst.operands[1].reg == REG_PC)
9156 inst.instruction = T_OPCODE_LDR_PC;
9157 else if (inst.instruction & THUMB_LOAD_BIT)
9158 inst.instruction = T_OPCODE_LDR_SP;
9159 else
9160 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 9161
c19d1205
ZW
9162 inst.instruction |= inst.operands[0].reg << 8;
9163 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
9164 return;
9165 }
90e4755a 9166
c19d1205
ZW
9167 constraint (inst.operands[1].reg > 7, BAD_HIREG);
9168 if (!inst.operands[1].immisreg)
9169 {
9170 /* Immediate offset. */
9171 inst.instruction |= inst.operands[0].reg;
9172 inst.instruction |= inst.operands[1].reg << 3;
9173 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
9174 return;
9175 }
90e4755a 9176
c19d1205
ZW
9177 /* Register offset. */
9178 constraint (inst.operands[1].imm > 7, BAD_HIREG);
9179 constraint (inst.operands[1].negative,
9180 _("Thumb does not support this addressing mode"));
90e4755a 9181
c19d1205
ZW
9182 op16:
9183 switch (inst.instruction)
9184 {
9185 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
9186 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
9187 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
9188 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
9189 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
9190 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
9191 case 0x5600 /* ldrsb */:
9192 case 0x5e00 /* ldrsh */: break;
9193 default: abort ();
9194 }
90e4755a 9195
c19d1205
ZW
9196 inst.instruction |= inst.operands[0].reg;
9197 inst.instruction |= inst.operands[1].reg << 3;
9198 inst.instruction |= inst.operands[1].imm << 6;
9199}
90e4755a 9200
c19d1205
ZW
9201static void
9202do_t_ldstd (void)
9203{
9204 if (!inst.operands[1].present)
b99bd4ef 9205 {
c19d1205
ZW
9206 inst.operands[1].reg = inst.operands[0].reg + 1;
9207 constraint (inst.operands[0].reg == REG_LR,
9208 _("r14 not allowed here"));
b99bd4ef 9209 }
c19d1205
ZW
9210 inst.instruction |= inst.operands[0].reg << 12;
9211 inst.instruction |= inst.operands[1].reg << 8;
9212 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
9213
b99bd4ef
NC
9214}
9215
c19d1205
ZW
9216static void
9217do_t_ldstt (void)
9218{
9219 inst.instruction |= inst.operands[0].reg << 12;
9220 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
9221}
a737bd4d 9222
b99bd4ef 9223static void
c19d1205 9224do_t_mla (void)
b99bd4ef 9225{
c19d1205
ZW
9226 inst.instruction |= inst.operands[0].reg << 8;
9227 inst.instruction |= inst.operands[1].reg << 16;
9228 inst.instruction |= inst.operands[2].reg;
9229 inst.instruction |= inst.operands[3].reg << 12;
9230}
b99bd4ef 9231
c19d1205
ZW
9232static void
9233do_t_mlal (void)
9234{
9235 inst.instruction |= inst.operands[0].reg << 12;
9236 inst.instruction |= inst.operands[1].reg << 8;
9237 inst.instruction |= inst.operands[2].reg << 16;
9238 inst.instruction |= inst.operands[3].reg;
9239}
b99bd4ef 9240
c19d1205
ZW
9241static void
9242do_t_mov_cmp (void)
9243{
9244 if (unified_syntax)
b99bd4ef 9245 {
c19d1205
ZW
9246 int r0off = (inst.instruction == T_MNEM_mov
9247 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 9248 unsigned long opcode;
3d388997
PB
9249 bfd_boolean narrow;
9250 bfd_boolean low_regs;
9251
9252 low_regs = (inst.operands[0].reg <= 7 && inst.operands[1].reg <= 7);
0110f2b8 9253 opcode = inst.instruction;
3d388997 9254 if (current_it_mask)
0110f2b8 9255 narrow = opcode != T_MNEM_movs;
3d388997 9256 else
0110f2b8 9257 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
9258 if (inst.size_req == 4
9259 || inst.operands[1].shifted)
9260 narrow = FALSE;
9261
c19d1205
ZW
9262 if (!inst.operands[1].isreg)
9263 {
0110f2b8
PB
9264 /* Immediate operand. */
9265 if (current_it_mask == 0 && opcode == T_MNEM_mov)
9266 narrow = 0;
9267 if (low_regs && narrow)
9268 {
9269 inst.instruction = THUMB_OP16 (opcode);
9270 inst.instruction |= inst.operands[0].reg << 8;
9271 if (inst.size_req == 2)
9272 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
9273 else
9274 inst.relax = opcode;
9275 }
9276 else
9277 {
9278 inst.instruction = THUMB_OP32 (inst.instruction);
9279 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9280 inst.instruction |= inst.operands[0].reg << r0off;
9281 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9282 }
c19d1205 9283 }
3d388997 9284 else if (!narrow)
c19d1205
ZW
9285 {
9286 inst.instruction = THUMB_OP32 (inst.instruction);
9287 inst.instruction |= inst.operands[0].reg << r0off;
9288 encode_thumb32_shifted_operand (1);
9289 }
9290 else
9291 switch (inst.instruction)
9292 {
9293 case T_MNEM_mov:
9294 inst.instruction = T_OPCODE_MOV_HR;
9295 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
9296 inst.instruction |= (inst.operands[0].reg & 0x7);
9297 inst.instruction |= inst.operands[1].reg << 3;
9298 break;
b99bd4ef 9299
c19d1205
ZW
9300 case T_MNEM_movs:
9301 /* We know we have low registers at this point.
9302 Generate ADD Rd, Rs, #0. */
9303 inst.instruction = T_OPCODE_ADD_I3;
9304 inst.instruction |= inst.operands[0].reg;
9305 inst.instruction |= inst.operands[1].reg << 3;
9306 break;
9307
9308 case T_MNEM_cmp:
3d388997 9309 if (low_regs)
c19d1205
ZW
9310 {
9311 inst.instruction = T_OPCODE_CMP_LR;
9312 inst.instruction |= inst.operands[0].reg;
9313 inst.instruction |= inst.operands[1].reg << 3;
9314 }
9315 else
9316 {
9317 inst.instruction = T_OPCODE_CMP_HR;
9318 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
9319 inst.instruction |= (inst.operands[0].reg & 0x7);
9320 inst.instruction |= inst.operands[1].reg << 3;
9321 }
9322 break;
9323 }
b99bd4ef
NC
9324 return;
9325 }
9326
c19d1205
ZW
9327 inst.instruction = THUMB_OP16 (inst.instruction);
9328 if (inst.operands[1].isreg)
b99bd4ef 9329 {
c19d1205 9330 if (inst.operands[0].reg < 8 && inst.operands[1].reg < 8)
b99bd4ef 9331 {
c19d1205
ZW
9332 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
9333 since a MOV instruction produces unpredictable results. */
9334 if (inst.instruction == T_OPCODE_MOV_I8)
9335 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 9336 else
c19d1205 9337 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 9338
c19d1205
ZW
9339 inst.instruction |= inst.operands[0].reg;
9340 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
9341 }
9342 else
9343 {
c19d1205
ZW
9344 if (inst.instruction == T_OPCODE_MOV_I8)
9345 inst.instruction = T_OPCODE_MOV_HR;
9346 else
9347 inst.instruction = T_OPCODE_CMP_HR;
9348 do_t_cpy ();
b99bd4ef
NC
9349 }
9350 }
c19d1205 9351 else
b99bd4ef 9352 {
c19d1205
ZW
9353 constraint (inst.operands[0].reg > 7,
9354 _("only lo regs allowed with immediate"));
9355 inst.instruction |= inst.operands[0].reg << 8;
9356 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
9357 }
9358}
b99bd4ef 9359
c19d1205
ZW
9360static void
9361do_t_mov16 (void)
9362{
b6895b4f
PB
9363 bfd_vma imm;
9364 bfd_boolean top;
9365
9366 top = (inst.instruction & 0x00800000) != 0;
9367 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
9368 {
9369 constraint (top, _(":lower16: not allowed this instruction"));
9370 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
9371 }
9372 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
9373 {
9374 constraint (!top, _(":upper16: not allowed this instruction"));
9375 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
9376 }
9377
c19d1205 9378 inst.instruction |= inst.operands[0].reg << 8;
b6895b4f
PB
9379 if (inst.reloc.type == BFD_RELOC_UNUSED)
9380 {
9381 imm = inst.reloc.exp.X_add_number;
9382 inst.instruction |= (imm & 0xf000) << 4;
9383 inst.instruction |= (imm & 0x0800) << 15;
9384 inst.instruction |= (imm & 0x0700) << 4;
9385 inst.instruction |= (imm & 0x00ff);
9386 }
c19d1205 9387}
b99bd4ef 9388
c19d1205
ZW
9389static void
9390do_t_mvn_tst (void)
9391{
9392 if (unified_syntax)
9393 {
9394 int r0off = (inst.instruction == T_MNEM_mvn
9395 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
9396 bfd_boolean narrow;
9397
9398 if (inst.size_req == 4
9399 || inst.instruction > 0xffff
9400 || inst.operands[1].shifted
9401 || inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
9402 narrow = FALSE;
9403 else if (inst.instruction == T_MNEM_cmn)
9404 narrow = TRUE;
9405 else if (THUMB_SETS_FLAGS (inst.instruction))
9406 narrow = (current_it_mask == 0);
9407 else
9408 narrow = (current_it_mask != 0);
9409
c19d1205 9410 if (!inst.operands[1].isreg)
b99bd4ef 9411 {
c19d1205
ZW
9412 /* For an immediate, we always generate a 32-bit opcode;
9413 section relaxation will shrink it later if possible. */
9414 if (inst.instruction < 0xffff)
9415 inst.instruction = THUMB_OP32 (inst.instruction);
9416 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9417 inst.instruction |= inst.operands[0].reg << r0off;
9418 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 9419 }
c19d1205 9420 else
b99bd4ef 9421 {
c19d1205 9422 /* See if we can do this with a 16-bit instruction. */
3d388997 9423 if (narrow)
b99bd4ef 9424 {
c19d1205
ZW
9425 inst.instruction = THUMB_OP16 (inst.instruction);
9426 inst.instruction |= inst.operands[0].reg;
9427 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef 9428 }
c19d1205 9429 else
b99bd4ef 9430 {
c19d1205
ZW
9431 constraint (inst.operands[1].shifted
9432 && inst.operands[1].immisreg,
9433 _("shift must be constant"));
9434 if (inst.instruction < 0xffff)
9435 inst.instruction = THUMB_OP32 (inst.instruction);
9436 inst.instruction |= inst.operands[0].reg << r0off;
9437 encode_thumb32_shifted_operand (1);
b99bd4ef 9438 }
b99bd4ef
NC
9439 }
9440 }
9441 else
9442 {
c19d1205
ZW
9443 constraint (inst.instruction > 0xffff
9444 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
9445 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
9446 _("unshifted register required"));
9447 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
9448 BAD_HIREG);
b99bd4ef 9449
c19d1205
ZW
9450 inst.instruction = THUMB_OP16 (inst.instruction);
9451 inst.instruction |= inst.operands[0].reg;
9452 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef 9453 }
b99bd4ef
NC
9454}
9455
b05fe5cf 9456static void
c19d1205 9457do_t_mrs (void)
b05fe5cf 9458{
62b3e311 9459 int flags;
037e8744
JB
9460
9461 if (do_vfp_nsyn_mrs () == SUCCESS)
9462 return;
9463
62b3e311
PB
9464 flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
9465 if (flags == 0)
9466 {
9467 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7m),
9468 _("selected processor does not support "
9469 "requested special purpose register"));
9470 }
9471 else
9472 {
9473 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1),
9474 _("selected processor does not support "
9475 "requested special purpose register %x"));
9476 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
9477 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
9478 _("'CPSR' or 'SPSR' expected"));
9479 }
9480
c19d1205 9481 inst.instruction |= inst.operands[0].reg << 8;
62b3e311
PB
9482 inst.instruction |= (flags & SPSR_BIT) >> 2;
9483 inst.instruction |= inst.operands[1].imm & 0xff;
c19d1205 9484}
b05fe5cf 9485
c19d1205
ZW
9486static void
9487do_t_msr (void)
9488{
62b3e311
PB
9489 int flags;
9490
037e8744
JB
9491 if (do_vfp_nsyn_msr () == SUCCESS)
9492 return;
9493
c19d1205
ZW
9494 constraint (!inst.operands[1].isreg,
9495 _("Thumb encoding does not support an immediate here"));
62b3e311
PB
9496 flags = inst.operands[0].imm;
9497 if (flags & ~0xff)
9498 {
9499 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1),
9500 _("selected processor does not support "
9501 "requested special purpose register"));
9502 }
9503 else
9504 {
9505 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7m),
9506 _("selected processor does not support "
9507 "requested special purpose register"));
9508 flags |= PSR_f;
9509 }
9510 inst.instruction |= (flags & SPSR_BIT) >> 2;
9511 inst.instruction |= (flags & ~SPSR_BIT) >> 8;
9512 inst.instruction |= (flags & 0xff);
c19d1205
ZW
9513 inst.instruction |= inst.operands[1].reg << 16;
9514}
b05fe5cf 9515
c19d1205
ZW
9516static void
9517do_t_mul (void)
9518{
9519 if (!inst.operands[2].present)
9520 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 9521
c19d1205
ZW
9522 /* There is no 32-bit MULS and no 16-bit MUL. */
9523 if (unified_syntax && inst.instruction == T_MNEM_mul)
b05fe5cf 9524 {
c19d1205
ZW
9525 inst.instruction = THUMB_OP32 (inst.instruction);
9526 inst.instruction |= inst.operands[0].reg << 8;
9527 inst.instruction |= inst.operands[1].reg << 16;
9528 inst.instruction |= inst.operands[2].reg << 0;
b05fe5cf 9529 }
c19d1205 9530 else
b05fe5cf 9531 {
c19d1205
ZW
9532 constraint (!unified_syntax
9533 && inst.instruction == T_MNEM_muls, BAD_THUMB32);
9534 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
9535 BAD_HIREG);
b05fe5cf 9536
c19d1205
ZW
9537 inst.instruction = THUMB_OP16 (inst.instruction);
9538 inst.instruction |= inst.operands[0].reg;
b05fe5cf 9539
c19d1205
ZW
9540 if (inst.operands[0].reg == inst.operands[1].reg)
9541 inst.instruction |= inst.operands[2].reg << 3;
9542 else if (inst.operands[0].reg == inst.operands[2].reg)
9543 inst.instruction |= inst.operands[1].reg << 3;
9544 else
9545 constraint (1, _("dest must overlap one source register"));
9546 }
9547}
b05fe5cf 9548
c19d1205
ZW
9549static void
9550do_t_mull (void)
9551{
9552 inst.instruction |= inst.operands[0].reg << 12;
9553 inst.instruction |= inst.operands[1].reg << 8;
9554 inst.instruction |= inst.operands[2].reg << 16;
9555 inst.instruction |= inst.operands[3].reg;
b05fe5cf 9556
c19d1205
ZW
9557 if (inst.operands[0].reg == inst.operands[1].reg)
9558 as_tsktsk (_("rdhi and rdlo must be different"));
9559}
b05fe5cf 9560
c19d1205
ZW
9561static void
9562do_t_nop (void)
9563{
9564 if (unified_syntax)
9565 {
9566 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 9567 {
c19d1205
ZW
9568 inst.instruction = THUMB_OP32 (inst.instruction);
9569 inst.instruction |= inst.operands[0].imm;
9570 }
9571 else
9572 {
9573 inst.instruction = THUMB_OP16 (inst.instruction);
9574 inst.instruction |= inst.operands[0].imm << 4;
9575 }
9576 }
9577 else
9578 {
9579 constraint (inst.operands[0].present,
9580 _("Thumb does not support NOP with hints"));
9581 inst.instruction = 0x46c0;
9582 }
9583}
b05fe5cf 9584
c19d1205
ZW
9585static void
9586do_t_neg (void)
9587{
9588 if (unified_syntax)
9589 {
3d388997
PB
9590 bfd_boolean narrow;
9591
9592 if (THUMB_SETS_FLAGS (inst.instruction))
9593 narrow = (current_it_mask == 0);
9594 else
9595 narrow = (current_it_mask != 0);
9596 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
9597 narrow = FALSE;
9598 if (inst.size_req == 4)
9599 narrow = FALSE;
9600
9601 if (!narrow)
c19d1205
ZW
9602 {
9603 inst.instruction = THUMB_OP32 (inst.instruction);
9604 inst.instruction |= inst.operands[0].reg << 8;
9605 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
9606 }
9607 else
9608 {
c19d1205
ZW
9609 inst.instruction = THUMB_OP16 (inst.instruction);
9610 inst.instruction |= inst.operands[0].reg;
9611 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
9612 }
9613 }
9614 else
9615 {
c19d1205
ZW
9616 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
9617 BAD_HIREG);
9618 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
9619
9620 inst.instruction = THUMB_OP16 (inst.instruction);
9621 inst.instruction |= inst.operands[0].reg;
9622 inst.instruction |= inst.operands[1].reg << 3;
9623 }
9624}
9625
9626static void
9627do_t_pkhbt (void)
9628{
9629 inst.instruction |= inst.operands[0].reg << 8;
9630 inst.instruction |= inst.operands[1].reg << 16;
9631 inst.instruction |= inst.operands[2].reg;
9632 if (inst.operands[3].present)
9633 {
9634 unsigned int val = inst.reloc.exp.X_add_number;
9635 constraint (inst.reloc.exp.X_op != O_constant,
9636 _("expression too complex"));
9637 inst.instruction |= (val & 0x1c) << 10;
9638 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 9639 }
c19d1205 9640}
b05fe5cf 9641
c19d1205
ZW
9642static void
9643do_t_pkhtb (void)
9644{
9645 if (!inst.operands[3].present)
9646 inst.instruction &= ~0x00000020;
9647 do_t_pkhbt ();
b05fe5cf
ZW
9648}
9649
c19d1205
ZW
9650static void
9651do_t_pld (void)
9652{
9653 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
9654}
b05fe5cf 9655
c19d1205
ZW
9656static void
9657do_t_push_pop (void)
b99bd4ef 9658{
e9f89963
PB
9659 unsigned mask;
9660
c19d1205
ZW
9661 constraint (inst.operands[0].writeback,
9662 _("push/pop do not support {reglist}^"));
9663 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
9664 _("expression too complex"));
b99bd4ef 9665
e9f89963
PB
9666 mask = inst.operands[0].imm;
9667 if ((mask & ~0xff) == 0)
c19d1205
ZW
9668 inst.instruction = THUMB_OP16 (inst.instruction);
9669 else if ((inst.instruction == T_MNEM_push
e9f89963 9670 && (mask & ~0xff) == 1 << REG_LR)
c19d1205 9671 || (inst.instruction == T_MNEM_pop
e9f89963 9672 && (mask & ~0xff) == 1 << REG_PC))
b99bd4ef 9673 {
c19d1205
ZW
9674 inst.instruction = THUMB_OP16 (inst.instruction);
9675 inst.instruction |= THUMB_PP_PC_LR;
e9f89963 9676 mask &= 0xff;
c19d1205
ZW
9677 }
9678 else if (unified_syntax)
9679 {
e9f89963
PB
9680 if (mask & (1 << 13))
9681 inst.error = _("SP not allowed in register list");
c19d1205 9682 if (inst.instruction == T_MNEM_push)
b99bd4ef 9683 {
e9f89963
PB
9684 if (mask & (1 << 15))
9685 inst.error = _("PC not allowed in register list");
c19d1205
ZW
9686 }
9687 else
9688 {
e9f89963
PB
9689 if (mask & (1 << 14)
9690 && mask & (1 << 15))
9691 inst.error = _("LR and PC should not both be in register list");
c19d1205 9692 }
e9f89963
PB
9693 if ((mask & (mask - 1)) == 0)
9694 {
9695 /* Single register push/pop implemented as str/ldr. */
9696 if (inst.instruction == T_MNEM_push)
9697 inst.instruction = 0xf84d0d04; /* str reg, [sp, #-4]! */
9698 else
9699 inst.instruction = 0xf85d0b04; /* ldr reg, [sp], #4 */
9700 mask = ffs(mask) - 1;
9701 mask <<= 12;
9702 }
9703 else
9704 inst.instruction = THUMB_OP32 (inst.instruction);
c19d1205
ZW
9705 }
9706 else
9707 {
9708 inst.error = _("invalid register list to push/pop instruction");
9709 return;
9710 }
b99bd4ef 9711
e9f89963 9712 inst.instruction |= mask;
c19d1205 9713}
b99bd4ef 9714
c19d1205
ZW
9715static void
9716do_t_rbit (void)
9717{
9718 inst.instruction |= inst.operands[0].reg << 8;
9719 inst.instruction |= inst.operands[1].reg << 16;
9720}
b99bd4ef 9721
c19d1205
ZW
9722static void
9723do_t_rev (void)
9724{
9725 if (inst.operands[0].reg <= 7 && inst.operands[1].reg <= 7
9726 && inst.size_req != 4)
9727 {
9728 inst.instruction = THUMB_OP16 (inst.instruction);
9729 inst.instruction |= inst.operands[0].reg;
9730 inst.instruction |= inst.operands[1].reg << 3;
9731 }
9732 else if (unified_syntax)
9733 {
9734 inst.instruction = THUMB_OP32 (inst.instruction);
9735 inst.instruction |= inst.operands[0].reg << 8;
9736 inst.instruction |= inst.operands[1].reg << 16;
9737 inst.instruction |= inst.operands[1].reg;
9738 }
9739 else
9740 inst.error = BAD_HIREG;
9741}
b99bd4ef 9742
c19d1205
ZW
9743static void
9744do_t_rsb (void)
9745{
9746 int Rd, Rs;
b99bd4ef 9747
c19d1205
ZW
9748 Rd = inst.operands[0].reg;
9749 Rs = (inst.operands[1].present
9750 ? inst.operands[1].reg /* Rd, Rs, foo */
9751 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 9752
c19d1205
ZW
9753 inst.instruction |= Rd << 8;
9754 inst.instruction |= Rs << 16;
9755 if (!inst.operands[2].isreg)
9756 {
9757 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9758 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9759 }
9760 else
9761 encode_thumb32_shifted_operand (2);
9762}
b99bd4ef 9763
c19d1205
ZW
9764static void
9765do_t_setend (void)
9766{
dfa9f0d5 9767 constraint (current_it_mask, BAD_NOT_IT);
c19d1205
ZW
9768 if (inst.operands[0].imm)
9769 inst.instruction |= 0x8;
9770}
b99bd4ef 9771
c19d1205
ZW
9772static void
9773do_t_shift (void)
9774{
9775 if (!inst.operands[1].present)
9776 inst.operands[1].reg = inst.operands[0].reg;
9777
9778 if (unified_syntax)
9779 {
3d388997
PB
9780 bfd_boolean narrow;
9781 int shift_kind;
9782
9783 switch (inst.instruction)
9784 {
9785 case T_MNEM_asr:
9786 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
9787 case T_MNEM_lsl:
9788 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
9789 case T_MNEM_lsr:
9790 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
9791 case T_MNEM_ror:
9792 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
9793 default: abort ();
9794 }
9795
9796 if (THUMB_SETS_FLAGS (inst.instruction))
9797 narrow = (current_it_mask == 0);
9798 else
9799 narrow = (current_it_mask != 0);
9800 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
9801 narrow = FALSE;
9802 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
9803 narrow = FALSE;
9804 if (inst.operands[2].isreg
9805 && (inst.operands[1].reg != inst.operands[0].reg
9806 || inst.operands[2].reg > 7))
9807 narrow = FALSE;
9808 if (inst.size_req == 4)
9809 narrow = FALSE;
9810
9811 if (!narrow)
c19d1205
ZW
9812 {
9813 if (inst.operands[2].isreg)
b99bd4ef 9814 {
c19d1205
ZW
9815 inst.instruction = THUMB_OP32 (inst.instruction);
9816 inst.instruction |= inst.operands[0].reg << 8;
9817 inst.instruction |= inst.operands[1].reg << 16;
9818 inst.instruction |= inst.operands[2].reg;
9819 }
9820 else
9821 {
9822 inst.operands[1].shifted = 1;
3d388997 9823 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
9824 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
9825 ? T_MNEM_movs : T_MNEM_mov);
9826 inst.instruction |= inst.operands[0].reg << 8;
9827 encode_thumb32_shifted_operand (1);
9828 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
9829 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
9830 }
9831 }
9832 else
9833 {
c19d1205 9834 if (inst.operands[2].isreg)
b99bd4ef 9835 {
3d388997 9836 switch (shift_kind)
b99bd4ef 9837 {
3d388997
PB
9838 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
9839 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
9840 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
9841 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 9842 default: abort ();
b99bd4ef 9843 }
c19d1205
ZW
9844
9845 inst.instruction |= inst.operands[0].reg;
9846 inst.instruction |= inst.operands[2].reg << 3;
b99bd4ef
NC
9847 }
9848 else
9849 {
3d388997 9850 switch (shift_kind)
b99bd4ef 9851 {
3d388997
PB
9852 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
9853 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
9854 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 9855 default: abort ();
b99bd4ef 9856 }
c19d1205
ZW
9857 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
9858 inst.instruction |= inst.operands[0].reg;
9859 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
9860 }
9861 }
c19d1205
ZW
9862 }
9863 else
9864 {
9865 constraint (inst.operands[0].reg > 7
9866 || inst.operands[1].reg > 7, BAD_HIREG);
9867 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 9868
c19d1205
ZW
9869 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
9870 {
9871 constraint (inst.operands[2].reg > 7, BAD_HIREG);
9872 constraint (inst.operands[0].reg != inst.operands[1].reg,
9873 _("source1 and dest must be same register"));
b99bd4ef 9874
c19d1205
ZW
9875 switch (inst.instruction)
9876 {
9877 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
9878 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
9879 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
9880 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
9881 default: abort ();
9882 }
9883
9884 inst.instruction |= inst.operands[0].reg;
9885 inst.instruction |= inst.operands[2].reg << 3;
9886 }
9887 else
b99bd4ef 9888 {
c19d1205
ZW
9889 switch (inst.instruction)
9890 {
9891 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
9892 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
9893 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
9894 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
9895 default: abort ();
9896 }
9897 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
9898 inst.instruction |= inst.operands[0].reg;
9899 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
9900 }
9901 }
b99bd4ef
NC
9902}
9903
9904static void
c19d1205 9905do_t_simd (void)
b99bd4ef 9906{
c19d1205
ZW
9907 inst.instruction |= inst.operands[0].reg << 8;
9908 inst.instruction |= inst.operands[1].reg << 16;
9909 inst.instruction |= inst.operands[2].reg;
9910}
b99bd4ef 9911
c19d1205 9912static void
3eb17e6b 9913do_t_smc (void)
c19d1205
ZW
9914{
9915 unsigned int value = inst.reloc.exp.X_add_number;
9916 constraint (inst.reloc.exp.X_op != O_constant,
9917 _("expression too complex"));
9918 inst.reloc.type = BFD_RELOC_UNUSED;
9919 inst.instruction |= (value & 0xf000) >> 12;
9920 inst.instruction |= (value & 0x0ff0);
9921 inst.instruction |= (value & 0x000f) << 16;
9922}
b99bd4ef 9923
c19d1205
ZW
9924static void
9925do_t_ssat (void)
9926{
9927 inst.instruction |= inst.operands[0].reg << 8;
9928 inst.instruction |= inst.operands[1].imm - 1;
9929 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef 9930
c19d1205 9931 if (inst.operands[3].present)
b99bd4ef 9932 {
c19d1205
ZW
9933 constraint (inst.reloc.exp.X_op != O_constant,
9934 _("expression too complex"));
b99bd4ef 9935
c19d1205 9936 if (inst.reloc.exp.X_add_number != 0)
6189168b 9937 {
c19d1205
ZW
9938 if (inst.operands[3].shift_kind == SHIFT_ASR)
9939 inst.instruction |= 0x00200000; /* sh bit */
9940 inst.instruction |= (inst.reloc.exp.X_add_number & 0x1c) << 10;
9941 inst.instruction |= (inst.reloc.exp.X_add_number & 0x03) << 6;
6189168b 9942 }
c19d1205 9943 inst.reloc.type = BFD_RELOC_UNUSED;
6189168b 9944 }
b99bd4ef
NC
9945}
9946
0dd132b6 9947static void
c19d1205 9948do_t_ssat16 (void)
0dd132b6 9949{
c19d1205
ZW
9950 inst.instruction |= inst.operands[0].reg << 8;
9951 inst.instruction |= inst.operands[1].imm - 1;
9952 inst.instruction |= inst.operands[2].reg << 16;
9953}
0dd132b6 9954
c19d1205
ZW
9955static void
9956do_t_strex (void)
9957{
9958 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
9959 || inst.operands[2].postind || inst.operands[2].writeback
9960 || inst.operands[2].immisreg || inst.operands[2].shifted
9961 || inst.operands[2].negative,
01cfc07f 9962 BAD_ADDR_MODE);
0dd132b6 9963
c19d1205
ZW
9964 inst.instruction |= inst.operands[0].reg << 8;
9965 inst.instruction |= inst.operands[1].reg << 12;
9966 inst.instruction |= inst.operands[2].reg << 16;
9967 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
9968}
9969
b99bd4ef 9970static void
c19d1205 9971do_t_strexd (void)
b99bd4ef 9972{
c19d1205
ZW
9973 if (!inst.operands[2].present)
9974 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 9975
c19d1205
ZW
9976 constraint (inst.operands[0].reg == inst.operands[1].reg
9977 || inst.operands[0].reg == inst.operands[2].reg
9978 || inst.operands[0].reg == inst.operands[3].reg
9979 || inst.operands[1].reg == inst.operands[2].reg,
9980 BAD_OVERLAP);
b99bd4ef 9981
c19d1205
ZW
9982 inst.instruction |= inst.operands[0].reg;
9983 inst.instruction |= inst.operands[1].reg << 12;
9984 inst.instruction |= inst.operands[2].reg << 8;
9985 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
9986}
9987
9988static void
c19d1205 9989do_t_sxtah (void)
b99bd4ef 9990{
c19d1205
ZW
9991 inst.instruction |= inst.operands[0].reg << 8;
9992 inst.instruction |= inst.operands[1].reg << 16;
9993 inst.instruction |= inst.operands[2].reg;
9994 inst.instruction |= inst.operands[3].imm << 4;
9995}
b99bd4ef 9996
c19d1205
ZW
9997static void
9998do_t_sxth (void)
9999{
10000 if (inst.instruction <= 0xffff && inst.size_req != 4
10001 && inst.operands[0].reg <= 7 && inst.operands[1].reg <= 7
10002 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 10003 {
c19d1205
ZW
10004 inst.instruction = THUMB_OP16 (inst.instruction);
10005 inst.instruction |= inst.operands[0].reg;
10006 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef 10007 }
c19d1205 10008 else if (unified_syntax)
b99bd4ef 10009 {
c19d1205
ZW
10010 if (inst.instruction <= 0xffff)
10011 inst.instruction = THUMB_OP32 (inst.instruction);
10012 inst.instruction |= inst.operands[0].reg << 8;
10013 inst.instruction |= inst.operands[1].reg;
10014 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 10015 }
c19d1205 10016 else
b99bd4ef 10017 {
c19d1205
ZW
10018 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
10019 _("Thumb encoding does not support rotation"));
10020 constraint (1, BAD_HIREG);
b99bd4ef 10021 }
c19d1205 10022}
b99bd4ef 10023
c19d1205
ZW
10024static void
10025do_t_swi (void)
10026{
10027 inst.reloc.type = BFD_RELOC_ARM_SWI;
10028}
b99bd4ef 10029
92e90b6e
PB
10030static void
10031do_t_tb (void)
10032{
10033 int half;
10034
10035 half = (inst.instruction & 0x10) != 0;
dfa9f0d5
PB
10036 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
10037 constraint (inst.operands[0].immisreg,
10038 _("instruction requires register index"));
92e90b6e
PB
10039 constraint (inst.operands[0].imm == 15,
10040 _("PC is not a valid index register"));
10041 constraint (!half && inst.operands[0].shifted,
10042 _("instruction does not allow shifted index"));
92e90b6e
PB
10043 inst.instruction |= (inst.operands[0].reg << 16) | inst.operands[0].imm;
10044}
10045
c19d1205
ZW
10046static void
10047do_t_usat (void)
10048{
10049 inst.instruction |= inst.operands[0].reg << 8;
10050 inst.instruction |= inst.operands[1].imm;
10051 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef 10052
c19d1205 10053 if (inst.operands[3].present)
b99bd4ef 10054 {
c19d1205
ZW
10055 constraint (inst.reloc.exp.X_op != O_constant,
10056 _("expression too complex"));
10057 if (inst.reloc.exp.X_add_number != 0)
10058 {
10059 if (inst.operands[3].shift_kind == SHIFT_ASR)
10060 inst.instruction |= 0x00200000; /* sh bit */
b99bd4ef 10061
c19d1205
ZW
10062 inst.instruction |= (inst.reloc.exp.X_add_number & 0x1c) << 10;
10063 inst.instruction |= (inst.reloc.exp.X_add_number & 0x03) << 6;
10064 }
10065 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 10066 }
b99bd4ef
NC
10067}
10068
10069static void
c19d1205 10070do_t_usat16 (void)
b99bd4ef 10071{
c19d1205
ZW
10072 inst.instruction |= inst.operands[0].reg << 8;
10073 inst.instruction |= inst.operands[1].imm;
10074 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef 10075}
c19d1205 10076
5287ad62
JB
10077/* Neon instruction encoder helpers. */
10078
10079/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 10080
5287ad62
JB
10081/* An "invalid" code for the following tables. */
10082#define N_INV -1u
10083
10084struct neon_tab_entry
b99bd4ef 10085{
5287ad62
JB
10086 unsigned integer;
10087 unsigned float_or_poly;
10088 unsigned scalar_or_imm;
10089};
10090
10091/* Map overloaded Neon opcodes to their respective encodings. */
10092#define NEON_ENC_TAB \
10093 X(vabd, 0x0000700, 0x1200d00, N_INV), \
10094 X(vmax, 0x0000600, 0x0000f00, N_INV), \
10095 X(vmin, 0x0000610, 0x0200f00, N_INV), \
10096 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
10097 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
10098 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
10099 X(vadd, 0x0000800, 0x0000d00, N_INV), \
10100 X(vsub, 0x1000800, 0x0200d00, N_INV), \
10101 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
10102 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
10103 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
10104 /* Register variants of the following two instructions are encoded as
10105 vcge / vcgt with the operands reversed. */ \
10106 X(vclt, 0x0000310, 0x1000e00, 0x1b10200), \
10107 X(vcle, 0x0000300, 0x1200e00, 0x1b10180), \
10108 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
10109 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
10110 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
10111 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
10112 X(vmlal, 0x0800800, N_INV, 0x0800240), \
10113 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
10114 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
10115 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
10116 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
10117 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
10118 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
10119 X(vshl, 0x0000400, N_INV, 0x0800510), \
10120 X(vqshl, 0x0000410, N_INV, 0x0800710), \
10121 X(vand, 0x0000110, N_INV, 0x0800030), \
10122 X(vbic, 0x0100110, N_INV, 0x0800030), \
10123 X(veor, 0x1000110, N_INV, N_INV), \
10124 X(vorn, 0x0300110, N_INV, 0x0800010), \
10125 X(vorr, 0x0200110, N_INV, 0x0800010), \
10126 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
10127 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
10128 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
10129 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
10130 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
10131 X(vst1, 0x0000000, 0x0800000, N_INV), \
10132 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
10133 X(vst2, 0x0000100, 0x0800100, N_INV), \
10134 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
10135 X(vst3, 0x0000200, 0x0800200, N_INV), \
10136 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
10137 X(vst4, 0x0000300, 0x0800300, N_INV), \
10138 X(vmovn, 0x1b20200, N_INV, N_INV), \
10139 X(vtrn, 0x1b20080, N_INV, N_INV), \
10140 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
10141 X(vqmovun, 0x1b20240, N_INV, N_INV), \
10142 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
10143 X(vnmla, 0xe000a40, 0xe000b40, N_INV), \
10144 X(vnmls, 0xe100a40, 0xe100b40, N_INV), \
10145 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
10146 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
10147 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
10148 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV)
5287ad62
JB
10149
10150enum neon_opc
10151{
10152#define X(OPC,I,F,S) N_MNEM_##OPC
10153NEON_ENC_TAB
10154#undef X
10155};
b99bd4ef 10156
5287ad62
JB
10157static const struct neon_tab_entry neon_enc_tab[] =
10158{
10159#define X(OPC,I,F,S) { (I), (F), (S) }
10160NEON_ENC_TAB
10161#undef X
10162};
b99bd4ef 10163
5287ad62
JB
10164#define NEON_ENC_INTEGER(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
10165#define NEON_ENC_ARMREG(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
10166#define NEON_ENC_POLY(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
10167#define NEON_ENC_FLOAT(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
10168#define NEON_ENC_SCALAR(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
10169#define NEON_ENC_IMMED(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
10170#define NEON_ENC_INTERLV(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
10171#define NEON_ENC_LANE(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
10172#define NEON_ENC_DUP(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
037e8744
JB
10173#define NEON_ENC_SINGLE(X) \
10174 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
10175#define NEON_ENC_DOUBLE(X) \
10176 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
5287ad62 10177
037e8744
JB
10178/* Define shapes for instruction operands. The following mnemonic characters
10179 are used in this table:
5287ad62 10180
037e8744 10181 F - VFP S<n> register
5287ad62
JB
10182 D - Neon D<n> register
10183 Q - Neon Q<n> register
10184 I - Immediate
10185 S - Scalar
10186 R - ARM register
10187 L - D<n> register list
037e8744
JB
10188
10189 This table is used to generate various data:
10190 - enumerations of the form NS_DDR to be used as arguments to
10191 neon_select_shape.
10192 - a table classifying shapes into single, double, quad, mixed.
10193 - a table used to drive neon_select_shape.
5287ad62 10194*/
b99bd4ef 10195
037e8744
JB
10196#define NEON_SHAPE_DEF \
10197 X(3, (D, D, D), DOUBLE), \
10198 X(3, (Q, Q, Q), QUAD), \
10199 X(3, (D, D, I), DOUBLE), \
10200 X(3, (Q, Q, I), QUAD), \
10201 X(3, (D, D, S), DOUBLE), \
10202 X(3, (Q, Q, S), QUAD), \
10203 X(2, (D, D), DOUBLE), \
10204 X(2, (Q, Q), QUAD), \
10205 X(2, (D, S), DOUBLE), \
10206 X(2, (Q, S), QUAD), \
10207 X(2, (D, R), DOUBLE), \
10208 X(2, (Q, R), QUAD), \
10209 X(2, (D, I), DOUBLE), \
10210 X(2, (Q, I), QUAD), \
10211 X(3, (D, L, D), DOUBLE), \
10212 X(2, (D, Q), MIXED), \
10213 X(2, (Q, D), MIXED), \
10214 X(3, (D, Q, I), MIXED), \
10215 X(3, (Q, D, I), MIXED), \
10216 X(3, (Q, D, D), MIXED), \
10217 X(3, (D, Q, Q), MIXED), \
10218 X(3, (Q, Q, D), MIXED), \
10219 X(3, (Q, D, S), MIXED), \
10220 X(3, (D, Q, S), MIXED), \
10221 X(4, (D, D, D, I), DOUBLE), \
10222 X(4, (Q, Q, Q, I), QUAD), \
10223 X(2, (F, F), SINGLE), \
10224 X(3, (F, F, F), SINGLE), \
10225 X(2, (F, I), SINGLE), \
10226 X(2, (F, D), MIXED), \
10227 X(2, (D, F), MIXED), \
10228 X(3, (F, F, I), MIXED), \
10229 X(4, (R, R, F, F), SINGLE), \
10230 X(4, (F, F, R, R), SINGLE), \
10231 X(3, (D, R, R), DOUBLE), \
10232 X(3, (R, R, D), DOUBLE), \
10233 X(2, (S, R), SINGLE), \
10234 X(2, (R, S), SINGLE), \
10235 X(2, (F, R), SINGLE), \
10236 X(2, (R, F), SINGLE)
10237
10238#define S2(A,B) NS_##A##B
10239#define S3(A,B,C) NS_##A##B##C
10240#define S4(A,B,C,D) NS_##A##B##C##D
10241
10242#define X(N, L, C) S##N L
10243
5287ad62
JB
10244enum neon_shape
10245{
037e8744
JB
10246 NEON_SHAPE_DEF,
10247 NS_NULL
5287ad62 10248};
b99bd4ef 10249
037e8744
JB
10250#undef X
10251#undef S2
10252#undef S3
10253#undef S4
10254
10255enum neon_shape_class
10256{
10257 SC_SINGLE,
10258 SC_DOUBLE,
10259 SC_QUAD,
10260 SC_MIXED
10261};
10262
10263#define X(N, L, C) SC_##C
10264
10265static enum neon_shape_class neon_shape_class[] =
10266{
10267 NEON_SHAPE_DEF
10268};
10269
10270#undef X
10271
10272enum neon_shape_el
10273{
10274 SE_F,
10275 SE_D,
10276 SE_Q,
10277 SE_I,
10278 SE_S,
10279 SE_R,
10280 SE_L
10281};
10282
10283/* Register widths of above. */
10284static unsigned neon_shape_el_size[] =
10285{
10286 32,
10287 64,
10288 128,
10289 0,
10290 32,
10291 32,
10292 0
10293};
10294
10295struct neon_shape_info
10296{
10297 unsigned els;
10298 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
10299};
10300
10301#define S2(A,B) { SE_##A, SE_##B }
10302#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
10303#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
10304
10305#define X(N, L, C) { N, S##N L }
10306
10307static struct neon_shape_info neon_shape_tab[] =
10308{
10309 NEON_SHAPE_DEF
10310};
10311
10312#undef X
10313#undef S2
10314#undef S3
10315#undef S4
10316
5287ad62
JB
10317/* Bit masks used in type checking given instructions.
10318 'N_EQK' means the type must be the same as (or based on in some way) the key
10319 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
10320 set, various other bits can be set as well in order to modify the meaning of
10321 the type constraint. */
10322
10323enum neon_type_mask
10324{
10325 N_S8 = 0x000001,
10326 N_S16 = 0x000002,
10327 N_S32 = 0x000004,
10328 N_S64 = 0x000008,
10329 N_U8 = 0x000010,
10330 N_U16 = 0x000020,
10331 N_U32 = 0x000040,
10332 N_U64 = 0x000080,
10333 N_I8 = 0x000100,
10334 N_I16 = 0x000200,
10335 N_I32 = 0x000400,
10336 N_I64 = 0x000800,
10337 N_8 = 0x001000,
10338 N_16 = 0x002000,
10339 N_32 = 0x004000,
10340 N_64 = 0x008000,
10341 N_P8 = 0x010000,
10342 N_P16 = 0x020000,
10343 N_F32 = 0x040000,
037e8744
JB
10344 N_F64 = 0x080000,
10345 N_KEY = 0x100000, /* key element (main type specifier). */
10346 N_EQK = 0x200000, /* given operand has the same type & size as the key. */
10347 N_VFP = 0x400000, /* VFP mode: operand size must match register width. */
5287ad62
JB
10348 N_DBL = 0x000001, /* if N_EQK, this operand is twice the size. */
10349 N_HLF = 0x000002, /* if N_EQK, this operand is half the size. */
10350 N_SGN = 0x000004, /* if N_EQK, this operand is forced to be signed. */
10351 N_UNS = 0x000008, /* if N_EQK, this operand is forced to be unsigned. */
10352 N_INT = 0x000010, /* if N_EQK, this operand is forced to be integer. */
10353 N_FLT = 0x000020, /* if N_EQK, this operand is forced to be float. */
dcbf9037 10354 N_SIZ = 0x000040, /* if N_EQK, this operand is forced to be size-only. */
5287ad62 10355 N_UTYP = 0,
037e8744 10356 N_MAX_NONSPECIAL = N_F64
5287ad62
JB
10357};
10358
dcbf9037
JB
10359#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
10360
5287ad62
JB
10361#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
10362#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
10363#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
10364#define N_SUF_32 (N_SU_32 | N_F32)
10365#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
10366#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F32)
10367
10368/* Pass this as the first type argument to neon_check_type to ignore types
10369 altogether. */
10370#define N_IGNORE_TYPE (N_KEY | N_EQK)
10371
037e8744
JB
10372/* Select a "shape" for the current instruction (describing register types or
10373 sizes) from a list of alternatives. Return NS_NULL if the current instruction
10374 doesn't fit. For non-polymorphic shapes, checking is usually done as a
10375 function of operand parsing, so this function doesn't need to be called.
10376 Shapes should be listed in order of decreasing length. */
5287ad62
JB
10377
10378static enum neon_shape
037e8744 10379neon_select_shape (enum neon_shape shape, ...)
5287ad62 10380{
037e8744
JB
10381 va_list ap;
10382 enum neon_shape first_shape = shape;
5287ad62
JB
10383
10384 /* Fix missing optional operands. FIXME: we don't know at this point how
10385 many arguments we should have, so this makes the assumption that we have
10386 > 1. This is true of all current Neon opcodes, I think, but may not be
10387 true in the future. */
10388 if (!inst.operands[1].present)
10389 inst.operands[1] = inst.operands[0];
10390
037e8744 10391 va_start (ap, shape);
5287ad62 10392
037e8744
JB
10393 for (; shape != NS_NULL; shape = va_arg (ap, int))
10394 {
10395 unsigned j;
10396 int matches = 1;
10397
10398 for (j = 0; j < neon_shape_tab[shape].els; j++)
10399 {
10400 if (!inst.operands[j].present)
10401 {
10402 matches = 0;
10403 break;
10404 }
10405
10406 switch (neon_shape_tab[shape].el[j])
10407 {
10408 case SE_F:
10409 if (!(inst.operands[j].isreg
10410 && inst.operands[j].isvec
10411 && inst.operands[j].issingle
10412 && !inst.operands[j].isquad))
10413 matches = 0;
10414 break;
10415
10416 case SE_D:
10417 if (!(inst.operands[j].isreg
10418 && inst.operands[j].isvec
10419 && !inst.operands[j].isquad
10420 && !inst.operands[j].issingle))
10421 matches = 0;
10422 break;
10423
10424 case SE_R:
10425 if (!(inst.operands[j].isreg
10426 && !inst.operands[j].isvec))
10427 matches = 0;
10428 break;
10429
10430 case SE_Q:
10431 if (!(inst.operands[j].isreg
10432 && inst.operands[j].isvec
10433 && inst.operands[j].isquad
10434 && !inst.operands[j].issingle))
10435 matches = 0;
10436 break;
10437
10438 case SE_I:
10439 if (!(!inst.operands[j].isreg
10440 && !inst.operands[j].isscalar))
10441 matches = 0;
10442 break;
10443
10444 case SE_S:
10445 if (!(!inst.operands[j].isreg
10446 && inst.operands[j].isscalar))
10447 matches = 0;
10448 break;
10449
10450 case SE_L:
10451 break;
10452 }
10453 }
10454 if (matches)
5287ad62 10455 break;
037e8744 10456 }
5287ad62 10457
037e8744 10458 va_end (ap);
5287ad62 10459
037e8744
JB
10460 if (shape == NS_NULL && first_shape != NS_NULL)
10461 first_error (_("invalid instruction shape"));
5287ad62 10462
037e8744
JB
10463 return shape;
10464}
5287ad62 10465
037e8744
JB
10466/* True if SHAPE is predominantly a quadword operation (most of the time, this
10467 means the Q bit should be set). */
10468
10469static int
10470neon_quad (enum neon_shape shape)
10471{
10472 return neon_shape_class[shape] == SC_QUAD;
5287ad62 10473}
037e8744 10474
5287ad62
JB
10475static void
10476neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
10477 unsigned *g_size)
10478{
10479 /* Allow modification to be made to types which are constrained to be
10480 based on the key element, based on bits set alongside N_EQK. */
10481 if ((typebits & N_EQK) != 0)
10482 {
10483 if ((typebits & N_HLF) != 0)
10484 *g_size /= 2;
10485 else if ((typebits & N_DBL) != 0)
10486 *g_size *= 2;
10487 if ((typebits & N_SGN) != 0)
10488 *g_type = NT_signed;
10489 else if ((typebits & N_UNS) != 0)
10490 *g_type = NT_unsigned;
10491 else if ((typebits & N_INT) != 0)
10492 *g_type = NT_integer;
10493 else if ((typebits & N_FLT) != 0)
10494 *g_type = NT_float;
dcbf9037
JB
10495 else if ((typebits & N_SIZ) != 0)
10496 *g_type = NT_untyped;
5287ad62
JB
10497 }
10498}
10499
10500/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
10501 operand type, i.e. the single type specified in a Neon instruction when it
10502 is the only one given. */
10503
10504static struct neon_type_el
10505neon_type_promote (struct neon_type_el *key, unsigned thisarg)
10506{
10507 struct neon_type_el dest = *key;
10508
10509 assert ((thisarg & N_EQK) != 0);
10510
10511 neon_modify_type_size (thisarg, &dest.type, &dest.size);
10512
10513 return dest;
10514}
10515
10516/* Convert Neon type and size into compact bitmask representation. */
10517
10518static enum neon_type_mask
10519type_chk_of_el_type (enum neon_el_type type, unsigned size)
10520{
10521 switch (type)
10522 {
10523 case NT_untyped:
10524 switch (size)
10525 {
10526 case 8: return N_8;
10527 case 16: return N_16;
10528 case 32: return N_32;
10529 case 64: return N_64;
10530 default: ;
10531 }
10532 break;
10533
10534 case NT_integer:
10535 switch (size)
10536 {
10537 case 8: return N_I8;
10538 case 16: return N_I16;
10539 case 32: return N_I32;
10540 case 64: return N_I64;
10541 default: ;
10542 }
10543 break;
10544
10545 case NT_float:
037e8744
JB
10546 switch (size)
10547 {
10548 case 32: return N_F32;
10549 case 64: return N_F64;
10550 default: ;
10551 }
5287ad62
JB
10552 break;
10553
10554 case NT_poly:
10555 switch (size)
10556 {
10557 case 8: return N_P8;
10558 case 16: return N_P16;
10559 default: ;
10560 }
10561 break;
10562
10563 case NT_signed:
10564 switch (size)
10565 {
10566 case 8: return N_S8;
10567 case 16: return N_S16;
10568 case 32: return N_S32;
10569 case 64: return N_S64;
10570 default: ;
10571 }
10572 break;
10573
10574 case NT_unsigned:
10575 switch (size)
10576 {
10577 case 8: return N_U8;
10578 case 16: return N_U16;
10579 case 32: return N_U32;
10580 case 64: return N_U64;
10581 default: ;
10582 }
10583 break;
10584
10585 default: ;
10586 }
10587
10588 return N_UTYP;
10589}
10590
10591/* Convert compact Neon bitmask type representation to a type and size. Only
10592 handles the case where a single bit is set in the mask. */
10593
dcbf9037 10594static int
5287ad62
JB
10595el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
10596 enum neon_type_mask mask)
10597{
dcbf9037
JB
10598 if ((mask & N_EQK) != 0)
10599 return FAIL;
10600
5287ad62
JB
10601 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
10602 *size = 8;
dcbf9037 10603 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_P16)) != 0)
5287ad62 10604 *size = 16;
dcbf9037 10605 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 10606 *size = 32;
037e8744 10607 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64)) != 0)
5287ad62 10608 *size = 64;
dcbf9037
JB
10609 else
10610 return FAIL;
10611
5287ad62
JB
10612 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
10613 *type = NT_signed;
dcbf9037 10614 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 10615 *type = NT_unsigned;
dcbf9037 10616 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 10617 *type = NT_integer;
dcbf9037 10618 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 10619 *type = NT_untyped;
dcbf9037 10620 else if ((mask & (N_P8 | N_P16)) != 0)
5287ad62 10621 *type = NT_poly;
037e8744 10622 else if ((mask & (N_F32 | N_F64)) != 0)
5287ad62 10623 *type = NT_float;
dcbf9037
JB
10624 else
10625 return FAIL;
10626
10627 return SUCCESS;
5287ad62
JB
10628}
10629
10630/* Modify a bitmask of allowed types. This is only needed for type
10631 relaxation. */
10632
10633static unsigned
10634modify_types_allowed (unsigned allowed, unsigned mods)
10635{
10636 unsigned size;
10637 enum neon_el_type type;
10638 unsigned destmask;
10639 int i;
10640
10641 destmask = 0;
10642
10643 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
10644 {
dcbf9037
JB
10645 if (el_type_of_type_chk (&type, &size, allowed & i) == SUCCESS)
10646 {
10647 neon_modify_type_size (mods, &type, &size);
10648 destmask |= type_chk_of_el_type (type, size);
10649 }
5287ad62
JB
10650 }
10651
10652 return destmask;
10653}
10654
10655/* Check type and return type classification.
10656 The manual states (paraphrase): If one datatype is given, it indicates the
10657 type given in:
10658 - the second operand, if there is one
10659 - the operand, if there is no second operand
10660 - the result, if there are no operands.
10661 This isn't quite good enough though, so we use a concept of a "key" datatype
10662 which is set on a per-instruction basis, which is the one which matters when
10663 only one data type is written.
10664 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 10665 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
10666
10667static struct neon_type_el
10668neon_check_type (unsigned els, enum neon_shape ns, ...)
10669{
10670 va_list ap;
10671 unsigned i, pass, key_el = 0;
10672 unsigned types[NEON_MAX_TYPE_ELS];
10673 enum neon_el_type k_type = NT_invtype;
10674 unsigned k_size = -1u;
10675 struct neon_type_el badtype = {NT_invtype, -1};
10676 unsigned key_allowed = 0;
10677
10678 /* Optional registers in Neon instructions are always (not) in operand 1.
10679 Fill in the missing operand here, if it was omitted. */
10680 if (els > 1 && !inst.operands[1].present)
10681 inst.operands[1] = inst.operands[0];
10682
10683 /* Suck up all the varargs. */
10684 va_start (ap, ns);
10685 for (i = 0; i < els; i++)
10686 {
10687 unsigned thisarg = va_arg (ap, unsigned);
10688 if (thisarg == N_IGNORE_TYPE)
10689 {
10690 va_end (ap);
10691 return badtype;
10692 }
10693 types[i] = thisarg;
10694 if ((thisarg & N_KEY) != 0)
10695 key_el = i;
10696 }
10697 va_end (ap);
10698
dcbf9037
JB
10699 if (inst.vectype.elems > 0)
10700 for (i = 0; i < els; i++)
10701 if (inst.operands[i].vectype.type != NT_invtype)
10702 {
10703 first_error (_("types specified in both the mnemonic and operands"));
10704 return badtype;
10705 }
10706
5287ad62
JB
10707 /* Duplicate inst.vectype elements here as necessary.
10708 FIXME: No idea if this is exactly the same as the ARM assembler,
10709 particularly when an insn takes one register and one non-register
10710 operand. */
10711 if (inst.vectype.elems == 1 && els > 1)
10712 {
10713 unsigned j;
10714 inst.vectype.elems = els;
10715 inst.vectype.el[key_el] = inst.vectype.el[0];
10716 for (j = 0; j < els; j++)
dcbf9037
JB
10717 if (j != key_el)
10718 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
10719 types[j]);
10720 }
10721 else if (inst.vectype.elems == 0 && els > 0)
10722 {
10723 unsigned j;
10724 /* No types were given after the mnemonic, so look for types specified
10725 after each operand. We allow some flexibility here; as long as the
10726 "key" operand has a type, we can infer the others. */
10727 for (j = 0; j < els; j++)
10728 if (inst.operands[j].vectype.type != NT_invtype)
10729 inst.vectype.el[j] = inst.operands[j].vectype;
10730
10731 if (inst.operands[key_el].vectype.type != NT_invtype)
5287ad62 10732 {
dcbf9037
JB
10733 for (j = 0; j < els; j++)
10734 if (inst.operands[j].vectype.type == NT_invtype)
10735 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
10736 types[j]);
10737 }
10738 else
10739 {
10740 first_error (_("operand types can't be inferred"));
10741 return badtype;
5287ad62
JB
10742 }
10743 }
10744 else if (inst.vectype.elems != els)
10745 {
dcbf9037 10746 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
10747 return badtype;
10748 }
10749
10750 for (pass = 0; pass < 2; pass++)
10751 {
10752 for (i = 0; i < els; i++)
10753 {
10754 unsigned thisarg = types[i];
10755 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
10756 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
10757 enum neon_el_type g_type = inst.vectype.el[i].type;
10758 unsigned g_size = inst.vectype.el[i].size;
10759
10760 /* Decay more-specific signed & unsigned types to sign-insensitive
10761 integer types if sign-specific variants are unavailable. */
10762 if ((g_type == NT_signed || g_type == NT_unsigned)
10763 && (types_allowed & N_SU_ALL) == 0)
10764 g_type = NT_integer;
10765
10766 /* If only untyped args are allowed, decay any more specific types to
10767 them. Some instructions only care about signs for some element
10768 sizes, so handle that properly. */
10769 if ((g_size == 8 && (types_allowed & N_8) != 0)
10770 || (g_size == 16 && (types_allowed & N_16) != 0)
10771 || (g_size == 32 && (types_allowed & N_32) != 0)
10772 || (g_size == 64 && (types_allowed & N_64) != 0))
10773 g_type = NT_untyped;
10774
10775 if (pass == 0)
10776 {
10777 if ((thisarg & N_KEY) != 0)
10778 {
10779 k_type = g_type;
10780 k_size = g_size;
10781 key_allowed = thisarg & ~N_KEY;
10782 }
10783 }
10784 else
10785 {
037e8744
JB
10786 if ((thisarg & N_VFP) != 0)
10787 {
10788 enum neon_shape_el regshape = neon_shape_tab[ns].el[i];
10789 unsigned regwidth = neon_shape_el_size[regshape], match;
10790
10791 /* In VFP mode, operands must match register widths. If we
10792 have a key operand, use its width, else use the width of
10793 the current operand. */
10794 if (k_size != -1u)
10795 match = k_size;
10796 else
10797 match = g_size;
10798
10799 if (regwidth != match)
10800 {
10801 first_error (_("operand size must match register width"));
10802 return badtype;
10803 }
10804 }
10805
5287ad62
JB
10806 if ((thisarg & N_EQK) == 0)
10807 {
10808 unsigned given_type = type_chk_of_el_type (g_type, g_size);
10809
10810 if ((given_type & types_allowed) == 0)
10811 {
dcbf9037 10812 first_error (_("bad type in Neon instruction"));
5287ad62
JB
10813 return badtype;
10814 }
10815 }
10816 else
10817 {
10818 enum neon_el_type mod_k_type = k_type;
10819 unsigned mod_k_size = k_size;
10820 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
10821 if (g_type != mod_k_type || g_size != mod_k_size)
10822 {
dcbf9037 10823 first_error (_("inconsistent types in Neon instruction"));
5287ad62
JB
10824 return badtype;
10825 }
10826 }
10827 }
10828 }
10829 }
10830
10831 return inst.vectype.el[key_el];
10832}
10833
037e8744 10834/* Neon-style VFP instruction forwarding. */
5287ad62 10835
037e8744
JB
10836/* Thumb VFP instructions have 0xE in the condition field. */
10837
10838static void
10839do_vfp_cond_or_thumb (void)
5287ad62
JB
10840{
10841 if (thumb_mode)
037e8744 10842 inst.instruction |= 0xe0000000;
5287ad62 10843 else
037e8744 10844 inst.instruction |= inst.cond << 28;
5287ad62
JB
10845}
10846
037e8744
JB
10847/* Look up and encode a simple mnemonic, for use as a helper function for the
10848 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
10849 etc. It is assumed that operand parsing has already been done, and that the
10850 operands are in the form expected by the given opcode (this isn't necessarily
10851 the same as the form in which they were parsed, hence some massaging must
10852 take place before this function is called).
10853 Checks current arch version against that in the looked-up opcode. */
5287ad62 10854
037e8744
JB
10855static void
10856do_vfp_nsyn_opcode (const char *opname)
5287ad62 10857{
037e8744
JB
10858 const struct asm_opcode *opcode;
10859
10860 opcode = hash_find (arm_ops_hsh, opname);
5287ad62 10861
037e8744
JB
10862 if (!opcode)
10863 abort ();
5287ad62 10864
037e8744
JB
10865 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
10866 thumb_mode ? *opcode->tvariant : *opcode->avariant),
10867 _(BAD_FPU));
5287ad62 10868
037e8744
JB
10869 if (thumb_mode)
10870 {
10871 inst.instruction = opcode->tvalue;
10872 opcode->tencode ();
10873 }
10874 else
10875 {
10876 inst.instruction = (inst.cond << 28) | opcode->avalue;
10877 opcode->aencode ();
10878 }
10879}
5287ad62
JB
10880
10881static void
037e8744 10882do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 10883{
037e8744
JB
10884 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
10885
10886 if (rs == NS_FFF)
10887 {
10888 if (is_add)
10889 do_vfp_nsyn_opcode ("fadds");
10890 else
10891 do_vfp_nsyn_opcode ("fsubs");
10892 }
10893 else
10894 {
10895 if (is_add)
10896 do_vfp_nsyn_opcode ("faddd");
10897 else
10898 do_vfp_nsyn_opcode ("fsubd");
10899 }
10900}
10901
10902/* Check operand types to see if this is a VFP instruction, and if so call
10903 PFN (). */
10904
10905static int
10906try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
10907{
10908 enum neon_shape rs;
10909 struct neon_type_el et;
10910
10911 switch (args)
10912 {
10913 case 2:
10914 rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
10915 et = neon_check_type (2, rs,
10916 N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
10917 break;
10918
10919 case 3:
10920 rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
10921 et = neon_check_type (3, rs,
10922 N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
10923 break;
10924
10925 default:
10926 abort ();
10927 }
10928
10929 if (et.type != NT_invtype)
10930 {
10931 pfn (rs);
10932 return SUCCESS;
10933 }
10934 else
10935 inst.error = NULL;
10936
10937 return FAIL;
10938}
10939
10940static void
10941do_vfp_nsyn_mla_mls (enum neon_shape rs)
10942{
10943 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
10944
10945 if (rs == NS_FFF)
10946 {
10947 if (is_mla)
10948 do_vfp_nsyn_opcode ("fmacs");
10949 else
10950 do_vfp_nsyn_opcode ("fmscs");
10951 }
10952 else
10953 {
10954 if (is_mla)
10955 do_vfp_nsyn_opcode ("fmacd");
10956 else
10957 do_vfp_nsyn_opcode ("fmscd");
10958 }
10959}
10960
10961static void
10962do_vfp_nsyn_mul (enum neon_shape rs)
10963{
10964 if (rs == NS_FFF)
10965 do_vfp_nsyn_opcode ("fmuls");
10966 else
10967 do_vfp_nsyn_opcode ("fmuld");
10968}
10969
10970static void
10971do_vfp_nsyn_abs_neg (enum neon_shape rs)
10972{
10973 int is_neg = (inst.instruction & 0x80) != 0;
10974 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
10975
10976 if (rs == NS_FF)
10977 {
10978 if (is_neg)
10979 do_vfp_nsyn_opcode ("fnegs");
10980 else
10981 do_vfp_nsyn_opcode ("fabss");
10982 }
10983 else
10984 {
10985 if (is_neg)
10986 do_vfp_nsyn_opcode ("fnegd");
10987 else
10988 do_vfp_nsyn_opcode ("fabsd");
10989 }
10990}
10991
10992/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
10993 insns belong to Neon, and are handled elsewhere. */
10994
10995static void
10996do_vfp_nsyn_ldm_stm (int is_dbmode)
10997{
10998 int is_ldm = (inst.instruction & (1 << 20)) != 0;
10999 if (is_ldm)
11000 {
11001 if (is_dbmode)
11002 do_vfp_nsyn_opcode ("fldmdbs");
11003 else
11004 do_vfp_nsyn_opcode ("fldmias");
11005 }
11006 else
11007 {
11008 if (is_dbmode)
11009 do_vfp_nsyn_opcode ("fstmdbs");
11010 else
11011 do_vfp_nsyn_opcode ("fstmias");
11012 }
11013}
11014
037e8744
JB
11015static void
11016do_vfp_nsyn_sqrt (void)
11017{
11018 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
11019 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
11020
11021 if (rs == NS_FF)
11022 do_vfp_nsyn_opcode ("fsqrts");
11023 else
11024 do_vfp_nsyn_opcode ("fsqrtd");
11025}
11026
11027static void
11028do_vfp_nsyn_div (void)
11029{
11030 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
11031 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
11032 N_F32 | N_F64 | N_KEY | N_VFP);
11033
11034 if (rs == NS_FFF)
11035 do_vfp_nsyn_opcode ("fdivs");
11036 else
11037 do_vfp_nsyn_opcode ("fdivd");
11038}
11039
11040static void
11041do_vfp_nsyn_nmul (void)
11042{
11043 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
11044 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
11045 N_F32 | N_F64 | N_KEY | N_VFP);
11046
11047 if (rs == NS_FFF)
11048 {
11049 inst.instruction = NEON_ENC_SINGLE (inst.instruction);
11050 do_vfp_sp_dyadic ();
11051 }
11052 else
11053 {
11054 inst.instruction = NEON_ENC_DOUBLE (inst.instruction);
11055 do_vfp_dp_rd_rn_rm ();
11056 }
11057 do_vfp_cond_or_thumb ();
11058}
11059
11060static void
11061do_vfp_nsyn_cmp (void)
11062{
11063 if (inst.operands[1].isreg)
11064 {
11065 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
11066 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
11067
11068 if (rs == NS_FF)
11069 {
11070 inst.instruction = NEON_ENC_SINGLE (inst.instruction);
11071 do_vfp_sp_monadic ();
11072 }
11073 else
11074 {
11075 inst.instruction = NEON_ENC_DOUBLE (inst.instruction);
11076 do_vfp_dp_rd_rm ();
11077 }
11078 }
11079 else
11080 {
11081 enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
11082 neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
11083
11084 switch (inst.instruction & 0x0fffffff)
11085 {
11086 case N_MNEM_vcmp:
11087 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
11088 break;
11089 case N_MNEM_vcmpe:
11090 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
11091 break;
11092 default:
11093 abort ();
11094 }
11095
11096 if (rs == NS_FI)
11097 {
11098 inst.instruction = NEON_ENC_SINGLE (inst.instruction);
11099 do_vfp_sp_compare_z ();
11100 }
11101 else
11102 {
11103 inst.instruction = NEON_ENC_DOUBLE (inst.instruction);
11104 do_vfp_dp_rd ();
11105 }
11106 }
11107 do_vfp_cond_or_thumb ();
11108}
11109
11110static void
11111nsyn_insert_sp (void)
11112{
11113 inst.operands[1] = inst.operands[0];
11114 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
11115 inst.operands[0].reg = 13;
11116 inst.operands[0].isreg = 1;
11117 inst.operands[0].writeback = 1;
11118 inst.operands[0].present = 1;
11119}
11120
11121static void
11122do_vfp_nsyn_push (void)
11123{
11124 nsyn_insert_sp ();
11125 if (inst.operands[1].issingle)
11126 do_vfp_nsyn_opcode ("fstmdbs");
11127 else
11128 do_vfp_nsyn_opcode ("fstmdbd");
11129}
11130
11131static void
11132do_vfp_nsyn_pop (void)
11133{
11134 nsyn_insert_sp ();
11135 if (inst.operands[1].issingle)
11136 do_vfp_nsyn_opcode ("fldmdbs");
11137 else
11138 do_vfp_nsyn_opcode ("fldmdbd");
11139}
11140
11141/* Fix up Neon data-processing instructions, ORing in the correct bits for
11142 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
11143
11144static unsigned
11145neon_dp_fixup (unsigned i)
11146{
11147 if (thumb_mode)
11148 {
11149 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
11150 if (i & (1 << 24))
11151 i |= 1 << 28;
11152
11153 i &= ~(1 << 24);
11154
11155 i |= 0xef000000;
11156 }
11157 else
11158 i |= 0xf2000000;
11159
11160 return i;
11161}
11162
11163/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
11164 (0, 1, 2, 3). */
11165
11166static unsigned
11167neon_logbits (unsigned x)
11168{
11169 return ffs (x) - 4;
11170}
11171
11172#define LOW4(R) ((R) & 0xf)
11173#define HI1(R) (((R) >> 4) & 1)
11174
11175/* Encode insns with bit pattern:
11176
11177 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
11178 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
11179
11180 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
11181 different meaning for some instruction. */
11182
11183static void
11184neon_three_same (int isquad, int ubit, int size)
11185{
11186 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11187 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11188 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
11189 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
11190 inst.instruction |= LOW4 (inst.operands[2].reg);
11191 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
11192 inst.instruction |= (isquad != 0) << 6;
11193 inst.instruction |= (ubit != 0) << 24;
11194 if (size != -1)
11195 inst.instruction |= neon_logbits (size) << 20;
11196
11197 inst.instruction = neon_dp_fixup (inst.instruction);
11198}
11199
11200/* Encode instructions of the form:
11201
11202 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
11203 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
11204
11205 Don't write size if SIZE == -1. */
11206
11207static void
11208neon_two_same (int qbit, int ubit, int size)
11209{
11210 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11211 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11212 inst.instruction |= LOW4 (inst.operands[1].reg);
11213 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
11214 inst.instruction |= (qbit != 0) << 6;
11215 inst.instruction |= (ubit != 0) << 24;
11216
11217 if (size != -1)
11218 inst.instruction |= neon_logbits (size) << 18;
11219
11220 inst.instruction = neon_dp_fixup (inst.instruction);
11221}
11222
11223/* Neon instruction encoders, in approximate order of appearance. */
11224
11225static void
11226do_neon_dyadic_i_su (void)
11227{
037e8744 11228 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
11229 struct neon_type_el et = neon_check_type (3, rs,
11230 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 11231 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
11232}
11233
11234static void
11235do_neon_dyadic_i64_su (void)
11236{
037e8744 11237 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
11238 struct neon_type_el et = neon_check_type (3, rs,
11239 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 11240 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
11241}
11242
11243static void
11244neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
11245 unsigned immbits)
11246{
11247 unsigned size = et.size >> 3;
11248 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11249 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11250 inst.instruction |= LOW4 (inst.operands[1].reg);
11251 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
11252 inst.instruction |= (isquad != 0) << 6;
11253 inst.instruction |= immbits << 16;
11254 inst.instruction |= (size >> 3) << 7;
11255 inst.instruction |= (size & 0x7) << 19;
11256 if (write_ubit)
11257 inst.instruction |= (uval != 0) << 24;
11258
11259 inst.instruction = neon_dp_fixup (inst.instruction);
11260}
11261
11262static void
11263do_neon_shl_imm (void)
11264{
11265 if (!inst.operands[2].isreg)
11266 {
037e8744 11267 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
11268 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
11269 inst.instruction = NEON_ENC_IMMED (inst.instruction);
037e8744 11270 neon_imm_shift (FALSE, 0, neon_quad (rs), et, inst.operands[2].imm);
5287ad62
JB
11271 }
11272 else
11273 {
037e8744 11274 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
11275 struct neon_type_el et = neon_check_type (3, rs,
11276 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
11277 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
037e8744 11278 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
11279 }
11280}
11281
11282static void
11283do_neon_qshl_imm (void)
11284{
11285 if (!inst.operands[2].isreg)
11286 {
037e8744 11287 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
11288 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
11289 inst.instruction = NEON_ENC_IMMED (inst.instruction);
037e8744 11290 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
11291 inst.operands[2].imm);
11292 }
11293 else
11294 {
037e8744 11295 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
11296 struct neon_type_el et = neon_check_type (3, rs,
11297 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
11298 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
037e8744 11299 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
11300 }
11301}
11302
11303static int
11304neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
11305{
11306 /* Handle .I8 and .I64 as pseudo-instructions. */
11307 switch (size)
11308 {
11309 case 8:
11310 /* Unfortunately, this will make everything apart from zero out-of-range.
11311 FIXME is this the intended semantics? There doesn't seem much point in
11312 accepting .I8 if so. */
11313 immediate |= immediate << 8;
11314 size = 16;
11315 break;
11316 case 64:
11317 /* Similarly, anything other than zero will be replicated in bits [63:32],
11318 which probably isn't want we want if we specified .I64. */
11319 if (immediate != 0)
11320 goto bad_immediate;
11321 size = 32;
11322 break;
11323 default: ;
11324 }
11325
11326 if (immediate == (immediate & 0x000000ff))
11327 {
11328 *immbits = immediate;
11329 return (size == 16) ? 0x9 : 0x1;
11330 }
11331 else if (immediate == (immediate & 0x0000ff00))
11332 {
11333 *immbits = immediate >> 8;
11334 return (size == 16) ? 0xb : 0x3;
11335 }
11336 else if (immediate == (immediate & 0x00ff0000))
11337 {
11338 *immbits = immediate >> 16;
11339 return 0x5;
11340 }
11341 else if (immediate == (immediate & 0xff000000))
11342 {
11343 *immbits = immediate >> 24;
11344 return 0x7;
11345 }
11346
11347 bad_immediate:
dcbf9037 11348 first_error (_("immediate value out of range"));
5287ad62
JB
11349 return FAIL;
11350}
11351
11352/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
11353 A, B, C, D. */
11354
11355static int
11356neon_bits_same_in_bytes (unsigned imm)
11357{
11358 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
11359 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
11360 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
11361 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
11362}
11363
11364/* For immediate of above form, return 0bABCD. */
11365
11366static unsigned
11367neon_squash_bits (unsigned imm)
11368{
11369 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
11370 | ((imm & 0x01000000) >> 21);
11371}
11372
136da414 11373/* Compress quarter-float representation to 0b...000 abcdefgh. */
5287ad62
JB
11374
11375static unsigned
11376neon_qfloat_bits (unsigned imm)
11377{
136da414 11378 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
5287ad62
JB
11379}
11380
11381/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
11382 the instruction. *OP is passed as the initial value of the op field, and
11383 may be set to a different value depending on the constant (i.e.
11384 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
11385 MVN). */
11386
11387static int
11388neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, unsigned *immbits,
136da414 11389 int *op, int size, enum neon_el_type type)
5287ad62 11390{
136da414
JB
11391 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
11392 {
11393 if (size != 32 || *op == 1)
11394 return FAIL;
11395 *immbits = neon_qfloat_bits (immlo);
11396 return 0xf;
11397 }
11398 else if (size == 64 && neon_bits_same_in_bytes (immhi)
5287ad62
JB
11399 && neon_bits_same_in_bytes (immlo))
11400 {
11401 /* Check this one first so we don't have to bother with immhi in later
11402 tests. */
11403 if (*op == 1)
11404 return FAIL;
11405 *immbits = (neon_squash_bits (immhi) << 4) | neon_squash_bits (immlo);
11406 *op = 1;
11407 return 0xe;
11408 }
11409 else if (immhi != 0)
11410 return FAIL;
11411 else if (immlo == (immlo & 0x000000ff))
11412 {
11413 /* 64-bit case was already handled. Don't allow MVN with 8-bit
11414 immediate. */
11415 if ((size != 8 && size != 16 && size != 32)
11416 || (size == 8 && *op == 1))
11417 return FAIL;
11418 *immbits = immlo;
11419 return (size == 8) ? 0xe : (size == 16) ? 0x8 : 0x0;
11420 }
11421 else if (immlo == (immlo & 0x0000ff00))
11422 {
11423 if (size != 16 && size != 32)
11424 return FAIL;
11425 *immbits = immlo >> 8;
11426 return (size == 16) ? 0xa : 0x2;
11427 }
11428 else if (immlo == (immlo & 0x00ff0000))
11429 {
11430 if (size != 32)
11431 return FAIL;
11432 *immbits = immlo >> 16;
11433 return 0x4;
11434 }
11435 else if (immlo == (immlo & 0xff000000))
11436 {
11437 if (size != 32)
11438 return FAIL;
11439 *immbits = immlo >> 24;
11440 return 0x6;
11441 }
11442 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
11443 {
11444 if (size != 32)
11445 return FAIL;
11446 *immbits = (immlo >> 8) & 0xff;
11447 return 0xc;
11448 }
11449 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
11450 {
11451 if (size != 32)
11452 return FAIL;
11453 *immbits = (immlo >> 16) & 0xff;
11454 return 0xd;
11455 }
5287ad62
JB
11456
11457 return FAIL;
11458}
11459
11460/* Write immediate bits [7:0] to the following locations:
11461
11462 |28/24|23 19|18 16|15 4|3 0|
11463 | 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|
11464
11465 This function is used by VMOV/VMVN/VORR/VBIC. */
11466
11467static void
11468neon_write_immbits (unsigned immbits)
11469{
11470 inst.instruction |= immbits & 0xf;
11471 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
11472 inst.instruction |= ((immbits >> 7) & 0x1) << 24;
11473}
11474
11475/* Invert low-order SIZE bits of XHI:XLO. */
11476
11477static void
11478neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
11479{
11480 unsigned immlo = xlo ? *xlo : 0;
11481 unsigned immhi = xhi ? *xhi : 0;
11482
11483 switch (size)
11484 {
11485 case 8:
11486 immlo = (~immlo) & 0xff;
11487 break;
11488
11489 case 16:
11490 immlo = (~immlo) & 0xffff;
11491 break;
11492
11493 case 64:
11494 immhi = (~immhi) & 0xffffffff;
11495 /* fall through. */
11496
11497 case 32:
11498 immlo = (~immlo) & 0xffffffff;
11499 break;
11500
11501 default:
11502 abort ();
11503 }
11504
11505 if (xlo)
11506 *xlo = immlo;
11507
11508 if (xhi)
11509 *xhi = immhi;
11510}
11511
11512static void
11513do_neon_logic (void)
11514{
11515 if (inst.operands[2].present && inst.operands[2].isreg)
11516 {
037e8744 11517 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
11518 neon_check_type (3, rs, N_IGNORE_TYPE);
11519 /* U bit and size field were set as part of the bitmask. */
11520 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
037e8744 11521 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
11522 }
11523 else
11524 {
037e8744
JB
11525 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
11526 struct neon_type_el et = neon_check_type (2, rs,
11527 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62
JB
11528 enum neon_opc opcode = inst.instruction & 0x0fffffff;
11529 unsigned immbits;
11530 int cmode;
11531
11532 if (et.type == NT_invtype)
11533 return;
11534
11535 inst.instruction = NEON_ENC_IMMED (inst.instruction);
11536
11537 switch (opcode)
11538 {
11539 case N_MNEM_vbic:
11540 cmode = neon_cmode_for_logic_imm (inst.operands[1].imm, &immbits,
11541 et.size);
11542 break;
11543
11544 case N_MNEM_vorr:
11545 cmode = neon_cmode_for_logic_imm (inst.operands[1].imm, &immbits,
11546 et.size);
11547 break;
11548
11549 case N_MNEM_vand:
11550 /* Pseudo-instruction for VBIC. */
11551 immbits = inst.operands[1].imm;
11552 neon_invert_size (&immbits, 0, et.size);
11553 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
11554 break;
11555
11556 case N_MNEM_vorn:
11557 /* Pseudo-instruction for VORR. */
11558 immbits = inst.operands[1].imm;
11559 neon_invert_size (&immbits, 0, et.size);
11560 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
11561 break;
11562
11563 default:
11564 abort ();
11565 }
11566
11567 if (cmode == FAIL)
11568 return;
11569
037e8744 11570 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
11571 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11572 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11573 inst.instruction |= cmode << 8;
11574 neon_write_immbits (immbits);
11575
11576 inst.instruction = neon_dp_fixup (inst.instruction);
11577 }
11578}
11579
11580static void
11581do_neon_bitfield (void)
11582{
037e8744 11583 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 11584 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 11585 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
11586}
11587
11588static void
dcbf9037
JB
11589neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
11590 unsigned destbits)
5287ad62 11591{
037e8744 11592 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037
JB
11593 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
11594 types | N_KEY);
5287ad62
JB
11595 if (et.type == NT_float)
11596 {
11597 inst.instruction = NEON_ENC_FLOAT (inst.instruction);
037e8744 11598 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
11599 }
11600 else
11601 {
11602 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
037e8744 11603 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
11604 }
11605}
11606
11607static void
11608do_neon_dyadic_if_su (void)
11609{
dcbf9037 11610 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
11611}
11612
11613static void
11614do_neon_dyadic_if_su_d (void)
11615{
11616 /* This version only allow D registers, but that constraint is enforced during
11617 operand parsing so we don't need to do anything extra here. */
dcbf9037 11618 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
11619}
11620
5287ad62
JB
11621static void
11622do_neon_dyadic_if_i_d (void)
11623{
428e3f1f
PB
11624 /* The "untyped" case can't happen. Do this to stop the "U" bit being
11625 affected if we specify unsigned args. */
11626 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
11627}
11628
037e8744
JB
11629enum vfp_or_neon_is_neon_bits
11630{
11631 NEON_CHECK_CC = 1,
11632 NEON_CHECK_ARCH = 2
11633};
11634
11635/* Call this function if an instruction which may have belonged to the VFP or
11636 Neon instruction sets, but turned out to be a Neon instruction (due to the
11637 operand types involved, etc.). We have to check and/or fix-up a couple of
11638 things:
11639
11640 - Make sure the user hasn't attempted to make a Neon instruction
11641 conditional.
11642 - Alter the value in the condition code field if necessary.
11643 - Make sure that the arch supports Neon instructions.
11644
11645 Which of these operations take place depends on bits from enum
11646 vfp_or_neon_is_neon_bits.
11647
11648 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
11649 current instruction's condition is COND_ALWAYS, the condition field is
11650 changed to inst.uncond_value. This is necessary because instructions shared
11651 between VFP and Neon may be conditional for the VFP variants only, and the
11652 unconditional Neon version must have, e.g., 0xF in the condition field. */
11653
11654static int
11655vfp_or_neon_is_neon (unsigned check)
11656{
11657 /* Conditions are always legal in Thumb mode (IT blocks). */
11658 if (!thumb_mode && (check & NEON_CHECK_CC))
11659 {
11660 if (inst.cond != COND_ALWAYS)
11661 {
11662 first_error (_(BAD_COND));
11663 return FAIL;
11664 }
11665 if (inst.uncond_value != -1)
11666 inst.instruction |= inst.uncond_value << 28;
11667 }
11668
11669 if ((check & NEON_CHECK_ARCH)
11670 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
11671 {
11672 first_error (_(BAD_FPU));
11673 return FAIL;
11674 }
11675
11676 return SUCCESS;
11677}
11678
5287ad62
JB
11679static void
11680do_neon_addsub_if_i (void)
11681{
037e8744
JB
11682 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
11683 return;
11684
11685 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
11686 return;
11687
5287ad62
JB
11688 /* The "untyped" case can't happen. Do this to stop the "U" bit being
11689 affected if we specify unsigned args. */
dcbf9037 11690 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
11691}
11692
11693/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
11694 result to be:
11695 V<op> A,B (A is operand 0, B is operand 2)
11696 to mean:
11697 V<op> A,B,A
11698 not:
11699 V<op> A,B,B
11700 so handle that case specially. */
11701
11702static void
11703neon_exchange_operands (void)
11704{
11705 void *scratch = alloca (sizeof (inst.operands[0]));
11706 if (inst.operands[1].present)
11707 {
11708 /* Swap operands[1] and operands[2]. */
11709 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
11710 inst.operands[1] = inst.operands[2];
11711 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
11712 }
11713 else
11714 {
11715 inst.operands[1] = inst.operands[2];
11716 inst.operands[2] = inst.operands[0];
11717 }
11718}
11719
11720static void
11721neon_compare (unsigned regtypes, unsigned immtypes, int invert)
11722{
11723 if (inst.operands[2].isreg)
11724 {
11725 if (invert)
11726 neon_exchange_operands ();
dcbf9037 11727 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
11728 }
11729 else
11730 {
037e8744 11731 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037
JB
11732 struct neon_type_el et = neon_check_type (2, rs,
11733 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62
JB
11734
11735 inst.instruction = NEON_ENC_IMMED (inst.instruction);
11736 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11737 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11738 inst.instruction |= LOW4 (inst.operands[1].reg);
11739 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 11740 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
11741 inst.instruction |= (et.type == NT_float) << 10;
11742 inst.instruction |= neon_logbits (et.size) << 18;
11743
11744 inst.instruction = neon_dp_fixup (inst.instruction);
11745 }
11746}
11747
11748static void
11749do_neon_cmp (void)
11750{
11751 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
11752}
11753
11754static void
11755do_neon_cmp_inv (void)
11756{
11757 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
11758}
11759
11760static void
11761do_neon_ceq (void)
11762{
11763 neon_compare (N_IF_32, N_IF_32, FALSE);
11764}
11765
11766/* For multiply instructions, we have the possibility of 16-bit or 32-bit
11767 scalars, which are encoded in 5 bits, M : Rm.
11768 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
11769 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
11770 index in M. */
11771
11772static unsigned
11773neon_scalar_for_mul (unsigned scalar, unsigned elsize)
11774{
dcbf9037
JB
11775 unsigned regno = NEON_SCALAR_REG (scalar);
11776 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
11777
11778 switch (elsize)
11779 {
11780 case 16:
11781 if (regno > 7 || elno > 3)
11782 goto bad_scalar;
11783 return regno | (elno << 3);
11784
11785 case 32:
11786 if (regno > 15 || elno > 1)
11787 goto bad_scalar;
11788 return regno | (elno << 4);
11789
11790 default:
11791 bad_scalar:
dcbf9037 11792 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
11793 }
11794
11795 return 0;
11796}
11797
11798/* Encode multiply / multiply-accumulate scalar instructions. */
11799
11800static void
11801neon_mul_mac (struct neon_type_el et, int ubit)
11802{
dcbf9037
JB
11803 unsigned scalar;
11804
11805 /* Give a more helpful error message if we have an invalid type. */
11806 if (et.type == NT_invtype)
11807 return;
11808
11809 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
11810 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11811 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11812 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
11813 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
11814 inst.instruction |= LOW4 (scalar);
11815 inst.instruction |= HI1 (scalar) << 5;
11816 inst.instruction |= (et.type == NT_float) << 8;
11817 inst.instruction |= neon_logbits (et.size) << 20;
11818 inst.instruction |= (ubit != 0) << 24;
11819
11820 inst.instruction = neon_dp_fixup (inst.instruction);
11821}
11822
11823static void
11824do_neon_mac_maybe_scalar (void)
11825{
037e8744
JB
11826 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
11827 return;
11828
11829 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
11830 return;
11831
5287ad62
JB
11832 if (inst.operands[2].isscalar)
11833 {
037e8744 11834 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
11835 struct neon_type_el et = neon_check_type (3, rs,
11836 N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
11837 inst.instruction = NEON_ENC_SCALAR (inst.instruction);
037e8744 11838 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
11839 }
11840 else
428e3f1f
PB
11841 {
11842 /* The "untyped" case can't happen. Do this to stop the "U" bit being
11843 affected if we specify unsigned args. */
11844 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
11845 }
5287ad62
JB
11846}
11847
11848static void
11849do_neon_tst (void)
11850{
037e8744 11851 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
11852 struct neon_type_el et = neon_check_type (3, rs,
11853 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 11854 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
11855}
11856
11857/* VMUL with 3 registers allows the P8 type. The scalar version supports the
11858 same types as the MAC equivalents. The polynomial type for this instruction
11859 is encoded the same as the integer type. */
11860
11861static void
11862do_neon_mul (void)
11863{
037e8744
JB
11864 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
11865 return;
11866
11867 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
11868 return;
11869
5287ad62
JB
11870 if (inst.operands[2].isscalar)
11871 do_neon_mac_maybe_scalar ();
11872 else
dcbf9037 11873 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
5287ad62
JB
11874}
11875
11876static void
11877do_neon_qdmulh (void)
11878{
11879 if (inst.operands[2].isscalar)
11880 {
037e8744 11881 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62
JB
11882 struct neon_type_el et = neon_check_type (3, rs,
11883 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
11884 inst.instruction = NEON_ENC_SCALAR (inst.instruction);
037e8744 11885 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
11886 }
11887 else
11888 {
037e8744 11889 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
11890 struct neon_type_el et = neon_check_type (3, rs,
11891 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
11892 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
11893 /* The U bit (rounding) comes from bit mask. */
037e8744 11894 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
11895 }
11896}
11897
11898static void
11899do_neon_fcmp_absolute (void)
11900{
037e8744 11901 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
11902 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
11903 /* Size field comes from bit mask. */
037e8744 11904 neon_three_same (neon_quad (rs), 1, -1);
5287ad62
JB
11905}
11906
11907static void
11908do_neon_fcmp_absolute_inv (void)
11909{
11910 neon_exchange_operands ();
11911 do_neon_fcmp_absolute ();
11912}
11913
11914static void
11915do_neon_step (void)
11916{
037e8744 11917 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 11918 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
037e8744 11919 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
11920}
11921
11922static void
11923do_neon_abs_neg (void)
11924{
037e8744
JB
11925 enum neon_shape rs;
11926 struct neon_type_el et;
11927
11928 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
11929 return;
11930
11931 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
11932 return;
11933
11934 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
11935 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
11936
5287ad62
JB
11937 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11938 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11939 inst.instruction |= LOW4 (inst.operands[1].reg);
11940 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 11941 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
11942 inst.instruction |= (et.type == NT_float) << 10;
11943 inst.instruction |= neon_logbits (et.size) << 18;
11944
11945 inst.instruction = neon_dp_fixup (inst.instruction);
11946}
11947
11948static void
11949do_neon_sli (void)
11950{
037e8744 11951 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
11952 struct neon_type_el et = neon_check_type (2, rs,
11953 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
11954 int imm = inst.operands[2].imm;
11955 constraint (imm < 0 || (unsigned)imm >= et.size,
11956 _("immediate out of range for insert"));
037e8744 11957 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
11958}
11959
11960static void
11961do_neon_sri (void)
11962{
037e8744 11963 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
11964 struct neon_type_el et = neon_check_type (2, rs,
11965 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
11966 int imm = inst.operands[2].imm;
11967 constraint (imm < 1 || (unsigned)imm > et.size,
11968 _("immediate out of range for insert"));
037e8744 11969 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
11970}
11971
11972static void
11973do_neon_qshlu_imm (void)
11974{
037e8744 11975 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
11976 struct neon_type_el et = neon_check_type (2, rs,
11977 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
11978 int imm = inst.operands[2].imm;
11979 constraint (imm < 0 || (unsigned)imm >= et.size,
11980 _("immediate out of range for shift"));
11981 /* Only encodes the 'U present' variant of the instruction.
11982 In this case, signed types have OP (bit 8) set to 0.
11983 Unsigned types have OP set to 1. */
11984 inst.instruction |= (et.type == NT_unsigned) << 8;
11985 /* The rest of the bits are the same as other immediate shifts. */
037e8744 11986 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
11987}
11988
11989static void
11990do_neon_qmovn (void)
11991{
11992 struct neon_type_el et = neon_check_type (2, NS_DQ,
11993 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
11994 /* Saturating move where operands can be signed or unsigned, and the
11995 destination has the same signedness. */
11996 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
11997 if (et.type == NT_unsigned)
11998 inst.instruction |= 0xc0;
11999 else
12000 inst.instruction |= 0x80;
12001 neon_two_same (0, 1, et.size / 2);
12002}
12003
12004static void
12005do_neon_qmovun (void)
12006{
12007 struct neon_type_el et = neon_check_type (2, NS_DQ,
12008 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
12009 /* Saturating move with unsigned results. Operands must be signed. */
12010 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12011 neon_two_same (0, 1, et.size / 2);
12012}
12013
12014static void
12015do_neon_rshift_sat_narrow (void)
12016{
12017 /* FIXME: Types for narrowing. If operands are signed, results can be signed
12018 or unsigned. If operands are unsigned, results must also be unsigned. */
12019 struct neon_type_el et = neon_check_type (2, NS_DQI,
12020 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
12021 int imm = inst.operands[2].imm;
12022 /* This gets the bounds check, size encoding and immediate bits calculation
12023 right. */
12024 et.size /= 2;
12025
12026 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
12027 VQMOVN.I<size> <Dd>, <Qm>. */
12028 if (imm == 0)
12029 {
12030 inst.operands[2].present = 0;
12031 inst.instruction = N_MNEM_vqmovn;
12032 do_neon_qmovn ();
12033 return;
12034 }
12035
12036 constraint (imm < 1 || (unsigned)imm > et.size,
12037 _("immediate out of range"));
12038 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
12039}
12040
12041static void
12042do_neon_rshift_sat_narrow_u (void)
12043{
12044 /* FIXME: Types for narrowing. If operands are signed, results can be signed
12045 or unsigned. If operands are unsigned, results must also be unsigned. */
12046 struct neon_type_el et = neon_check_type (2, NS_DQI,
12047 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
12048 int imm = inst.operands[2].imm;
12049 /* This gets the bounds check, size encoding and immediate bits calculation
12050 right. */
12051 et.size /= 2;
12052
12053 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
12054 VQMOVUN.I<size> <Dd>, <Qm>. */
12055 if (imm == 0)
12056 {
12057 inst.operands[2].present = 0;
12058 inst.instruction = N_MNEM_vqmovun;
12059 do_neon_qmovun ();
12060 return;
12061 }
12062
12063 constraint (imm < 1 || (unsigned)imm > et.size,
12064 _("immediate out of range"));
12065 /* FIXME: The manual is kind of unclear about what value U should have in
12066 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
12067 must be 1. */
12068 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
12069}
12070
12071static void
12072do_neon_movn (void)
12073{
12074 struct neon_type_el et = neon_check_type (2, NS_DQ,
12075 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
12076 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12077 neon_two_same (0, 1, et.size / 2);
12078}
12079
12080static void
12081do_neon_rshift_narrow (void)
12082{
12083 struct neon_type_el et = neon_check_type (2, NS_DQI,
12084 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
12085 int imm = inst.operands[2].imm;
12086 /* This gets the bounds check, size encoding and immediate bits calculation
12087 right. */
12088 et.size /= 2;
12089
12090 /* If immediate is zero then we are a pseudo-instruction for
12091 VMOVN.I<size> <Dd>, <Qm> */
12092 if (imm == 0)
12093 {
12094 inst.operands[2].present = 0;
12095 inst.instruction = N_MNEM_vmovn;
12096 do_neon_movn ();
12097 return;
12098 }
12099
12100 constraint (imm < 1 || (unsigned)imm > et.size,
12101 _("immediate out of range for narrowing operation"));
12102 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
12103}
12104
12105static void
12106do_neon_shll (void)
12107{
12108 /* FIXME: Type checking when lengthening. */
12109 struct neon_type_el et = neon_check_type (2, NS_QDI,
12110 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
12111 unsigned imm = inst.operands[2].imm;
12112
12113 if (imm == et.size)
12114 {
12115 /* Maximum shift variant. */
12116 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12117 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12118 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12119 inst.instruction |= LOW4 (inst.operands[1].reg);
12120 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12121 inst.instruction |= neon_logbits (et.size) << 18;
12122
12123 inst.instruction = neon_dp_fixup (inst.instruction);
12124 }
12125 else
12126 {
12127 /* A more-specific type check for non-max versions. */
12128 et = neon_check_type (2, NS_QDI,
12129 N_EQK | N_DBL, N_SU_32 | N_KEY);
12130 inst.instruction = NEON_ENC_IMMED (inst.instruction);
12131 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
12132 }
12133}
12134
037e8744 12135/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
12136 the current instruction is. */
12137
12138static int
12139neon_cvt_flavour (enum neon_shape rs)
12140{
037e8744
JB
12141#define CVT_VAR(C,X,Y) \
12142 et = neon_check_type (2, rs, whole_reg | (X), whole_reg | (Y)); \
12143 if (et.type != NT_invtype) \
12144 { \
12145 inst.error = NULL; \
12146 return (C); \
5287ad62
JB
12147 }
12148 struct neon_type_el et;
037e8744
JB
12149 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
12150 || rs == NS_FF) ? N_VFP : 0;
12151 /* The instruction versions which take an immediate take one register
12152 argument, which is extended to the width of the full register. Thus the
12153 "source" and "destination" registers must have the same width. Hack that
12154 here by making the size equal to the key (wider, in this case) operand. */
12155 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5287ad62
JB
12156
12157 CVT_VAR (0, N_S32, N_F32);
12158 CVT_VAR (1, N_U32, N_F32);
12159 CVT_VAR (2, N_F32, N_S32);
12160 CVT_VAR (3, N_F32, N_U32);
12161
037e8744
JB
12162 whole_reg = N_VFP;
12163
12164 /* VFP instructions. */
12165 CVT_VAR (4, N_F32, N_F64);
12166 CVT_VAR (5, N_F64, N_F32);
12167 CVT_VAR (6, N_S32, N_F64 | key);
12168 CVT_VAR (7, N_U32, N_F64 | key);
12169 CVT_VAR (8, N_F64 | key, N_S32);
12170 CVT_VAR (9, N_F64 | key, N_U32);
12171 /* VFP instructions with bitshift. */
12172 CVT_VAR (10, N_F32 | key, N_S16);
12173 CVT_VAR (11, N_F32 | key, N_U16);
12174 CVT_VAR (12, N_F64 | key, N_S16);
12175 CVT_VAR (13, N_F64 | key, N_U16);
12176 CVT_VAR (14, N_S16, N_F32 | key);
12177 CVT_VAR (15, N_U16, N_F32 | key);
12178 CVT_VAR (16, N_S16, N_F64 | key);
12179 CVT_VAR (17, N_U16, N_F64 | key);
12180
5287ad62
JB
12181 return -1;
12182#undef CVT_VAR
12183}
12184
037e8744
JB
12185/* Neon-syntax VFP conversions. */
12186
5287ad62 12187static void
037e8744 12188do_vfp_nsyn_cvt (enum neon_shape rs, int flavour)
5287ad62 12189{
037e8744
JB
12190 const char *opname = 0;
12191
12192 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
5287ad62 12193 {
037e8744
JB
12194 /* Conversions with immediate bitshift. */
12195 const char *enc[] =
12196 {
12197 "ftosls",
12198 "ftouls",
12199 "fsltos",
12200 "fultos",
12201 NULL,
12202 NULL,
12203 "ftosld",
12204 "ftould",
12205 "fsltod",
12206 "fultod",
12207 "fshtos",
12208 "fuhtos",
12209 "fshtod",
12210 "fuhtod",
12211 "ftoshs",
12212 "ftouhs",
12213 "ftoshd",
12214 "ftouhd"
12215 };
12216
12217 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc))
12218 {
12219 opname = enc[flavour];
12220 constraint (inst.operands[0].reg != inst.operands[1].reg,
12221 _("operands 0 and 1 must be the same register"));
12222 inst.operands[1] = inst.operands[2];
12223 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
12224 }
5287ad62
JB
12225 }
12226 else
12227 {
037e8744
JB
12228 /* Conversions without bitshift. */
12229 const char *enc[] =
12230 {
12231 "ftosis",
12232 "ftouis",
12233 "fsitos",
12234 "fuitos",
12235 "fcvtsd",
12236 "fcvtds",
12237 "ftosid",
12238 "ftouid",
12239 "fsitod",
12240 "fuitod"
12241 };
12242
12243 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc))
12244 opname = enc[flavour];
12245 }
12246
12247 if (opname)
12248 do_vfp_nsyn_opcode (opname);
12249}
12250
12251static void
12252do_vfp_nsyn_cvtz (void)
12253{
12254 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
12255 int flavour = neon_cvt_flavour (rs);
12256 const char *enc[] =
12257 {
12258 "ftosizs",
12259 "ftouizs",
12260 NULL,
12261 NULL,
12262 NULL,
12263 NULL,
12264 "ftosizd",
12265 "ftouizd"
12266 };
12267
12268 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
12269 do_vfp_nsyn_opcode (enc[flavour]);
12270}
12271
12272static void
12273do_neon_cvt (void)
12274{
12275 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
12276 NS_FD, NS_DF, NS_FF, NS_NULL);
12277 int flavour = neon_cvt_flavour (rs);
12278
12279 /* VFP rather than Neon conversions. */
12280 if (flavour >= 4)
12281 {
12282 do_vfp_nsyn_cvt (rs, flavour);
12283 return;
12284 }
12285
12286 switch (rs)
12287 {
12288 case NS_DDI:
12289 case NS_QQI:
12290 {
12291 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
12292 return;
12293
12294 /* Fixed-point conversion with #0 immediate is encoded as an
12295 integer conversion. */
12296 if (inst.operands[2].present && inst.operands[2].imm == 0)
12297 goto int_encode;
12298 unsigned immbits = 32 - inst.operands[2].imm;
12299 unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
12300 inst.instruction = NEON_ENC_IMMED (inst.instruction);
12301 if (flavour != -1)
12302 inst.instruction |= enctab[flavour];
12303 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12304 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12305 inst.instruction |= LOW4 (inst.operands[1].reg);
12306 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12307 inst.instruction |= neon_quad (rs) << 6;
12308 inst.instruction |= 1 << 21;
12309 inst.instruction |= immbits << 16;
12310
12311 inst.instruction = neon_dp_fixup (inst.instruction);
12312 }
12313 break;
12314
12315 case NS_DD:
12316 case NS_QQ:
12317 int_encode:
12318 {
12319 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
12320
12321 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12322
12323 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
12324 return;
12325
12326 if (flavour != -1)
12327 inst.instruction |= enctab[flavour];
12328
12329 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12330 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12331 inst.instruction |= LOW4 (inst.operands[1].reg);
12332 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12333 inst.instruction |= neon_quad (rs) << 6;
12334 inst.instruction |= 2 << 18;
12335
12336 inst.instruction = neon_dp_fixup (inst.instruction);
12337 }
12338 break;
12339
12340 default:
12341 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
12342 do_vfp_nsyn_cvt (rs, flavour);
5287ad62 12343 }
5287ad62
JB
12344}
12345
12346static void
12347neon_move_immediate (void)
12348{
037e8744
JB
12349 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
12350 struct neon_type_el et = neon_check_type (2, rs,
12351 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62
JB
12352 unsigned immlo, immhi = 0, immbits;
12353 int op, cmode;
12354
037e8744
JB
12355 constraint (et.type == NT_invtype,
12356 _("operand size must be specified for immediate VMOV"));
12357
5287ad62
JB
12358 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
12359 op = (inst.instruction & (1 << 5)) != 0;
12360
12361 immlo = inst.operands[1].imm;
12362 if (inst.operands[1].regisimm)
12363 immhi = inst.operands[1].reg;
12364
12365 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
12366 _("immediate has bits set outside the operand size"));
12367
12368 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, &immbits, &op,
136da414 12369 et.size, et.type)) == FAIL)
5287ad62
JB
12370 {
12371 /* Invert relevant bits only. */
12372 neon_invert_size (&immlo, &immhi, et.size);
12373 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
12374 with one or the other; those cases are caught by
12375 neon_cmode_for_move_imm. */
12376 op = !op;
12377 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, &immbits, &op,
136da414 12378 et.size, et.type)) == FAIL)
5287ad62 12379 {
dcbf9037 12380 first_error (_("immediate out of range"));
5287ad62
JB
12381 return;
12382 }
12383 }
12384
12385 inst.instruction &= ~(1 << 5);
12386 inst.instruction |= op << 5;
12387
12388 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12389 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 12390 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
12391 inst.instruction |= cmode << 8;
12392
12393 neon_write_immbits (immbits);
12394}
12395
12396static void
12397do_neon_mvn (void)
12398{
12399 if (inst.operands[1].isreg)
12400 {
037e8744 12401 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12402
12403 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12404 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12405 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12406 inst.instruction |= LOW4 (inst.operands[1].reg);
12407 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 12408 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
12409 }
12410 else
12411 {
12412 inst.instruction = NEON_ENC_IMMED (inst.instruction);
12413 neon_move_immediate ();
12414 }
12415
12416 inst.instruction = neon_dp_fixup (inst.instruction);
12417}
12418
12419/* Encode instructions of form:
12420
12421 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
12422 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm |
12423
12424*/
12425
12426static void
12427neon_mixed_length (struct neon_type_el et, unsigned size)
12428{
12429 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12430 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12431 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
12432 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
12433 inst.instruction |= LOW4 (inst.operands[2].reg);
12434 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
12435 inst.instruction |= (et.type == NT_unsigned) << 24;
12436 inst.instruction |= neon_logbits (size) << 20;
12437
12438 inst.instruction = neon_dp_fixup (inst.instruction);
12439}
12440
12441static void
12442do_neon_dyadic_long (void)
12443{
12444 /* FIXME: Type checking for lengthening op. */
12445 struct neon_type_el et = neon_check_type (3, NS_QDD,
12446 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
12447 neon_mixed_length (et, et.size);
12448}
12449
12450static void
12451do_neon_abal (void)
12452{
12453 struct neon_type_el et = neon_check_type (3, NS_QDD,
12454 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
12455 neon_mixed_length (et, et.size);
12456}
12457
12458static void
12459neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
12460{
12461 if (inst.operands[2].isscalar)
12462 {
dcbf9037
JB
12463 struct neon_type_el et = neon_check_type (3, NS_QDS,
12464 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
5287ad62
JB
12465 inst.instruction = NEON_ENC_SCALAR (inst.instruction);
12466 neon_mul_mac (et, et.type == NT_unsigned);
12467 }
12468 else
12469 {
12470 struct neon_type_el et = neon_check_type (3, NS_QDD,
12471 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
12472 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12473 neon_mixed_length (et, et.size);
12474 }
12475}
12476
12477static void
12478do_neon_mac_maybe_scalar_long (void)
12479{
12480 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
12481}
12482
12483static void
12484do_neon_dyadic_wide (void)
12485{
12486 struct neon_type_el et = neon_check_type (3, NS_QQD,
12487 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
12488 neon_mixed_length (et, et.size);
12489}
12490
12491static void
12492do_neon_dyadic_narrow (void)
12493{
12494 struct neon_type_el et = neon_check_type (3, NS_QDD,
12495 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
12496 /* Operand sign is unimportant, and the U bit is part of the opcode,
12497 so force the operand type to integer. */
12498 et.type = NT_integer;
5287ad62
JB
12499 neon_mixed_length (et, et.size / 2);
12500}
12501
12502static void
12503do_neon_mul_sat_scalar_long (void)
12504{
12505 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
12506}
12507
12508static void
12509do_neon_vmull (void)
12510{
12511 if (inst.operands[2].isscalar)
12512 do_neon_mac_maybe_scalar_long ();
12513 else
12514 {
12515 struct neon_type_el et = neon_check_type (3, NS_QDD,
12516 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_KEY);
12517 if (et.type == NT_poly)
12518 inst.instruction = NEON_ENC_POLY (inst.instruction);
12519 else
12520 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12521 /* For polynomial encoding, size field must be 0b00 and the U bit must be
12522 zero. Should be OK as-is. */
12523 neon_mixed_length (et, et.size);
12524 }
12525}
12526
12527static void
12528do_neon_ext (void)
12529{
037e8744 12530 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
12531 struct neon_type_el et = neon_check_type (3, rs,
12532 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
12533 unsigned imm = (inst.operands[3].imm * et.size) / 8;
12534 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12535 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12536 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
12537 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
12538 inst.instruction |= LOW4 (inst.operands[2].reg);
12539 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 12540 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
12541 inst.instruction |= imm << 8;
12542
12543 inst.instruction = neon_dp_fixup (inst.instruction);
12544}
12545
12546static void
12547do_neon_rev (void)
12548{
037e8744 12549 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12550 struct neon_type_el et = neon_check_type (2, rs,
12551 N_EQK, N_8 | N_16 | N_32 | N_KEY);
12552 unsigned op = (inst.instruction >> 7) & 3;
12553 /* N (width of reversed regions) is encoded as part of the bitmask. We
12554 extract it here to check the elements to be reversed are smaller.
12555 Otherwise we'd get a reserved instruction. */
12556 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
12557 assert (elsize != 0);
12558 constraint (et.size >= elsize,
12559 _("elements must be smaller than reversal region"));
037e8744 12560 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12561}
12562
12563static void
12564do_neon_dup (void)
12565{
12566 if (inst.operands[1].isscalar)
12567 {
037e8744 12568 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037
JB
12569 struct neon_type_el et = neon_check_type (2, rs,
12570 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 12571 unsigned sizebits = et.size >> 3;
dcbf9037 12572 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 12573 int logsize = neon_logbits (et.size);
dcbf9037 12574 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
12575
12576 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
12577 return;
12578
5287ad62
JB
12579 inst.instruction = NEON_ENC_SCALAR (inst.instruction);
12580 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12581 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12582 inst.instruction |= LOW4 (dm);
12583 inst.instruction |= HI1 (dm) << 5;
037e8744 12584 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
12585 inst.instruction |= x << 17;
12586 inst.instruction |= sizebits << 16;
12587
12588 inst.instruction = neon_dp_fixup (inst.instruction);
12589 }
12590 else
12591 {
037e8744
JB
12592 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
12593 struct neon_type_el et = neon_check_type (2, rs,
12594 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62
JB
12595 /* Duplicate ARM register to lanes of vector. */
12596 inst.instruction = NEON_ENC_ARMREG (inst.instruction);
12597 switch (et.size)
12598 {
12599 case 8: inst.instruction |= 0x400000; break;
12600 case 16: inst.instruction |= 0x000020; break;
12601 case 32: inst.instruction |= 0x000000; break;
12602 default: break;
12603 }
12604 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
12605 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
12606 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 12607 inst.instruction |= neon_quad (rs) << 21;
5287ad62
JB
12608 /* The encoding for this instruction is identical for the ARM and Thumb
12609 variants, except for the condition field. */
037e8744 12610 do_vfp_cond_or_thumb ();
5287ad62
JB
12611 }
12612}
12613
12614/* VMOV has particularly many variations. It can be one of:
12615 0. VMOV<c><q> <Qd>, <Qm>
12616 1. VMOV<c><q> <Dd>, <Dm>
12617 (Register operations, which are VORR with Rm = Rn.)
12618 2. VMOV<c><q>.<dt> <Qd>, #<imm>
12619 3. VMOV<c><q>.<dt> <Dd>, #<imm>
12620 (Immediate loads.)
12621 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
12622 (ARM register to scalar.)
12623 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
12624 (Two ARM registers to vector.)
12625 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
12626 (Scalar to ARM register.)
12627 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
12628 (Vector to two ARM registers.)
037e8744
JB
12629 8. VMOV.F32 <Sd>, <Sm>
12630 9. VMOV.F64 <Dd>, <Dm>
12631 (VFP register moves.)
12632 10. VMOV.F32 <Sd>, #imm
12633 11. VMOV.F64 <Dd>, #imm
12634 (VFP float immediate load.)
12635 12. VMOV <Rd>, <Sm>
12636 (VFP single to ARM reg.)
12637 13. VMOV <Sd>, <Rm>
12638 (ARM reg to VFP single.)
12639 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
12640 (Two ARM regs to two VFP singles.)
12641 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
12642 (Two VFP singles to two ARM regs.)
5287ad62 12643
037e8744
JB
12644 These cases can be disambiguated using neon_select_shape, except cases 1/9
12645 and 3/11 which depend on the operand type too.
5287ad62
JB
12646
12647 All the encoded bits are hardcoded by this function.
12648
b7fc2769
JB
12649 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
12650 Cases 5, 7 may be used with VFPv2 and above.
12651
5287ad62
JB
12652 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
12653 can specify a type where it doesn't make sense to, and is ignored).
12654*/
12655
12656static void
12657do_neon_mov (void)
12658{
037e8744
JB
12659 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
12660 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
12661 NS_NULL);
12662 struct neon_type_el et;
12663 const char *ldconst = 0;
5287ad62 12664
037e8744 12665 switch (rs)
5287ad62 12666 {
037e8744
JB
12667 case NS_DD: /* case 1/9. */
12668 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
12669 /* It is not an error here if no type is given. */
12670 inst.error = NULL;
12671 if (et.type == NT_float && et.size == 64)
5287ad62 12672 {
037e8744
JB
12673 do_vfp_nsyn_opcode ("fcpyd");
12674 break;
5287ad62 12675 }
037e8744 12676 /* fall through. */
5287ad62 12677
037e8744
JB
12678 case NS_QQ: /* case 0/1. */
12679 {
12680 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
12681 return;
12682 /* The architecture manual I have doesn't explicitly state which
12683 value the U bit should have for register->register moves, but
12684 the equivalent VORR instruction has U = 0, so do that. */
12685 inst.instruction = 0x0200110;
12686 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12687 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12688 inst.instruction |= LOW4 (inst.operands[1].reg);
12689 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12690 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
12691 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
12692 inst.instruction |= neon_quad (rs) << 6;
12693
12694 inst.instruction = neon_dp_fixup (inst.instruction);
12695 }
12696 break;
12697
12698 case NS_DI: /* case 3/11. */
12699 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
12700 inst.error = NULL;
12701 if (et.type == NT_float && et.size == 64)
5287ad62 12702 {
037e8744
JB
12703 /* case 11 (fconstd). */
12704 ldconst = "fconstd";
12705 goto encode_fconstd;
5287ad62 12706 }
037e8744
JB
12707 /* fall through. */
12708
12709 case NS_QI: /* case 2/3. */
12710 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
12711 return;
12712 inst.instruction = 0x0800010;
12713 neon_move_immediate ();
12714 inst.instruction = neon_dp_fixup (inst.instruction);
5287ad62
JB
12715 break;
12716
037e8744
JB
12717 case NS_SR: /* case 4. */
12718 {
12719 unsigned bcdebits = 0;
12720 struct neon_type_el et = neon_check_type (2, NS_NULL,
12721 N_8 | N_16 | N_32 | N_KEY, N_EQK);
12722 int logsize = neon_logbits (et.size);
12723 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
12724 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
12725
12726 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
12727 _(BAD_FPU));
12728 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
12729 && et.size != 32, _(BAD_FPU));
12730 constraint (et.type == NT_invtype, _("bad type for scalar"));
12731 constraint (x >= 64 / et.size, _("scalar index out of range"));
12732
12733 switch (et.size)
12734 {
12735 case 8: bcdebits = 0x8; break;
12736 case 16: bcdebits = 0x1; break;
12737 case 32: bcdebits = 0x0; break;
12738 default: ;
12739 }
12740
12741 bcdebits |= x << logsize;
12742
12743 inst.instruction = 0xe000b10;
12744 do_vfp_cond_or_thumb ();
12745 inst.instruction |= LOW4 (dn) << 16;
12746 inst.instruction |= HI1 (dn) << 7;
12747 inst.instruction |= inst.operands[1].reg << 12;
12748 inst.instruction |= (bcdebits & 3) << 5;
12749 inst.instruction |= (bcdebits >> 2) << 21;
12750 }
12751 break;
12752
12753 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 12754 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
037e8744 12755 _(BAD_FPU));
b7fc2769 12756
037e8744
JB
12757 inst.instruction = 0xc400b10;
12758 do_vfp_cond_or_thumb ();
12759 inst.instruction |= LOW4 (inst.operands[0].reg);
12760 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
12761 inst.instruction |= inst.operands[1].reg << 12;
12762 inst.instruction |= inst.operands[2].reg << 16;
12763 break;
12764
12765 case NS_RS: /* case 6. */
12766 {
12767 struct neon_type_el et = neon_check_type (2, NS_NULL,
12768 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
12769 unsigned logsize = neon_logbits (et.size);
12770 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
12771 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
12772 unsigned abcdebits = 0;
12773
12774 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
12775 _(BAD_FPU));
12776 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
12777 && et.size != 32, _(BAD_FPU));
12778 constraint (et.type == NT_invtype, _("bad type for scalar"));
12779 constraint (x >= 64 / et.size, _("scalar index out of range"));
12780
12781 switch (et.size)
12782 {
12783 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
12784 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
12785 case 32: abcdebits = 0x00; break;
12786 default: ;
12787 }
12788
12789 abcdebits |= x << logsize;
12790 inst.instruction = 0xe100b10;
12791 do_vfp_cond_or_thumb ();
12792 inst.instruction |= LOW4 (dn) << 16;
12793 inst.instruction |= HI1 (dn) << 7;
12794 inst.instruction |= inst.operands[0].reg << 12;
12795 inst.instruction |= (abcdebits & 3) << 5;
12796 inst.instruction |= (abcdebits >> 2) << 21;
12797 }
12798 break;
12799
12800 case NS_RRD: /* case 7 (fmrrd). */
12801 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
12802 _(BAD_FPU));
12803
12804 inst.instruction = 0xc500b10;
12805 do_vfp_cond_or_thumb ();
12806 inst.instruction |= inst.operands[0].reg << 12;
12807 inst.instruction |= inst.operands[1].reg << 16;
12808 inst.instruction |= LOW4 (inst.operands[2].reg);
12809 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
12810 break;
12811
12812 case NS_FF: /* case 8 (fcpys). */
12813 do_vfp_nsyn_opcode ("fcpys");
12814 break;
12815
12816 case NS_FI: /* case 10 (fconsts). */
12817 ldconst = "fconsts";
12818 encode_fconstd:
12819 if (is_quarter_float (inst.operands[1].imm))
5287ad62 12820 {
037e8744
JB
12821 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
12822 do_vfp_nsyn_opcode (ldconst);
5287ad62
JB
12823 }
12824 else
037e8744
JB
12825 first_error (_("immediate out of range"));
12826 break;
12827
12828 case NS_RF: /* case 12 (fmrs). */
12829 do_vfp_nsyn_opcode ("fmrs");
12830 break;
12831
12832 case NS_FR: /* case 13 (fmsr). */
12833 do_vfp_nsyn_opcode ("fmsr");
12834 break;
12835
12836 /* The encoders for the fmrrs and fmsrr instructions expect three operands
12837 (one of which is a list), but we have parsed four. Do some fiddling to
12838 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
12839 expect. */
12840 case NS_RRFF: /* case 14 (fmrrs). */
12841 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
12842 _("VFP registers must be adjacent"));
12843 inst.operands[2].imm = 2;
12844 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
12845 do_vfp_nsyn_opcode ("fmrrs");
12846 break;
12847
12848 case NS_FFRR: /* case 15 (fmsrr). */
12849 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
12850 _("VFP registers must be adjacent"));
12851 inst.operands[1] = inst.operands[2];
12852 inst.operands[2] = inst.operands[3];
12853 inst.operands[0].imm = 2;
12854 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
12855 do_vfp_nsyn_opcode ("fmsrr");
5287ad62
JB
12856 break;
12857
12858 default:
12859 abort ();
12860 }
12861}
12862
12863static void
12864do_neon_rshift_round_imm (void)
12865{
037e8744 12866 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
12867 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
12868 int imm = inst.operands[2].imm;
12869
12870 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
12871 if (imm == 0)
12872 {
12873 inst.operands[2].present = 0;
12874 do_neon_mov ();
12875 return;
12876 }
12877
12878 constraint (imm < 1 || (unsigned)imm > et.size,
12879 _("immediate out of range for shift"));
037e8744 12880 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
5287ad62
JB
12881 et.size - imm);
12882}
12883
12884static void
12885do_neon_movl (void)
12886{
12887 struct neon_type_el et = neon_check_type (2, NS_QD,
12888 N_EQK | N_DBL, N_SU_32 | N_KEY);
12889 unsigned sizebits = et.size >> 3;
12890 inst.instruction |= sizebits << 19;
12891 neon_two_same (0, et.type == NT_unsigned, -1);
12892}
12893
12894static void
12895do_neon_trn (void)
12896{
037e8744 12897 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12898 struct neon_type_el et = neon_check_type (2, rs,
12899 N_EQK, N_8 | N_16 | N_32 | N_KEY);
12900 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
037e8744 12901 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12902}
12903
12904static void
12905do_neon_zip_uzp (void)
12906{
037e8744 12907 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12908 struct neon_type_el et = neon_check_type (2, rs,
12909 N_EQK, N_8 | N_16 | N_32 | N_KEY);
12910 if (rs == NS_DD && et.size == 32)
12911 {
12912 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
12913 inst.instruction = N_MNEM_vtrn;
12914 do_neon_trn ();
12915 return;
12916 }
037e8744 12917 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12918}
12919
12920static void
12921do_neon_sat_abs_neg (void)
12922{
037e8744 12923 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12924 struct neon_type_el et = neon_check_type (2, rs,
12925 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 12926 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12927}
12928
12929static void
12930do_neon_pair_long (void)
12931{
037e8744 12932 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12933 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
12934 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
12935 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 12936 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12937}
12938
12939static void
12940do_neon_recip_est (void)
12941{
037e8744 12942 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12943 struct neon_type_el et = neon_check_type (2, rs,
12944 N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
12945 inst.instruction |= (et.type == NT_float) << 8;
037e8744 12946 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12947}
12948
12949static void
12950do_neon_cls (void)
12951{
037e8744 12952 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12953 struct neon_type_el et = neon_check_type (2, rs,
12954 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 12955 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12956}
12957
12958static void
12959do_neon_clz (void)
12960{
037e8744 12961 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12962 struct neon_type_el et = neon_check_type (2, rs,
12963 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 12964 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12965}
12966
12967static void
12968do_neon_cnt (void)
12969{
037e8744 12970 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
12971 struct neon_type_el et = neon_check_type (2, rs,
12972 N_EQK | N_INT, N_8 | N_KEY);
037e8744 12973 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
12974}
12975
12976static void
12977do_neon_swp (void)
12978{
037e8744
JB
12979 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12980 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
12981}
12982
12983static void
12984do_neon_tbl_tbx (void)
12985{
12986 unsigned listlenbits;
dcbf9037 12987 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5287ad62
JB
12988
12989 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
12990 {
dcbf9037 12991 first_error (_("bad list length for table lookup"));
5287ad62
JB
12992 return;
12993 }
12994
12995 listlenbits = inst.operands[1].imm - 1;
12996 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12997 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12998 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
12999 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
13000 inst.instruction |= LOW4 (inst.operands[2].reg);
13001 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
13002 inst.instruction |= listlenbits << 8;
13003
13004 inst.instruction = neon_dp_fixup (inst.instruction);
13005}
13006
13007static void
13008do_neon_ldm_stm (void)
13009{
13010 /* P, U and L bits are part of bitmask. */
13011 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
13012 unsigned offsetbits = inst.operands[1].imm * 2;
13013
037e8744
JB
13014 if (inst.operands[1].issingle)
13015 {
13016 do_vfp_nsyn_ldm_stm (is_dbmode);
13017 return;
13018 }
13019
5287ad62
JB
13020 constraint (is_dbmode && !inst.operands[0].writeback,
13021 _("writeback (!) must be used for VLDMDB and VSTMDB"));
13022
13023 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
13024 _("register list must contain at least 1 and at most 16 "
13025 "registers"));
13026
13027 inst.instruction |= inst.operands[0].reg << 16;
13028 inst.instruction |= inst.operands[0].writeback << 21;
13029 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
13030 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
13031
13032 inst.instruction |= offsetbits;
13033
037e8744 13034 do_vfp_cond_or_thumb ();
5287ad62
JB
13035}
13036
13037static void
13038do_neon_ldr_str (void)
13039{
5287ad62
JB
13040 int is_ldr = (inst.instruction & (1 << 20)) != 0;
13041
037e8744
JB
13042 if (inst.operands[0].issingle)
13043 {
cd2f129f
JB
13044 if (is_ldr)
13045 do_vfp_nsyn_opcode ("flds");
13046 else
13047 do_vfp_nsyn_opcode ("fsts");
5287ad62
JB
13048 }
13049 else
5287ad62 13050 {
cd2f129f
JB
13051 if (is_ldr)
13052 do_vfp_nsyn_opcode ("fldd");
5287ad62 13053 else
cd2f129f 13054 do_vfp_nsyn_opcode ("fstd");
5287ad62 13055 }
5287ad62
JB
13056}
13057
13058/* "interleave" version also handles non-interleaving register VLD1/VST1
13059 instructions. */
13060
13061static void
13062do_neon_ld_st_interleave (void)
13063{
037e8744 13064 struct neon_type_el et = neon_check_type (1, NS_NULL,
5287ad62
JB
13065 N_8 | N_16 | N_32 | N_64);
13066 unsigned alignbits = 0;
13067 unsigned idx;
13068 /* The bits in this table go:
13069 0: register stride of one (0) or two (1)
13070 1,2: register list length, minus one (1, 2, 3, 4).
13071 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
13072 We use -1 for invalid entries. */
13073 const int typetable[] =
13074 {
13075 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
13076 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
13077 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
13078 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
13079 };
13080 int typebits;
13081
dcbf9037
JB
13082 if (et.type == NT_invtype)
13083 return;
13084
5287ad62
JB
13085 if (inst.operands[1].immisalign)
13086 switch (inst.operands[1].imm >> 8)
13087 {
13088 case 64: alignbits = 1; break;
13089 case 128:
13090 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) == 3)
13091 goto bad_alignment;
13092 alignbits = 2;
13093 break;
13094 case 256:
13095 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) == 3)
13096 goto bad_alignment;
13097 alignbits = 3;
13098 break;
13099 default:
13100 bad_alignment:
dcbf9037 13101 first_error (_("bad alignment"));
5287ad62
JB
13102 return;
13103 }
13104
13105 inst.instruction |= alignbits << 4;
13106 inst.instruction |= neon_logbits (et.size) << 6;
13107
13108 /* Bits [4:6] of the immediate in a list specifier encode register stride
13109 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
13110 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
13111 up the right value for "type" in a table based on this value and the given
13112 list style, then stick it back. */
13113 idx = ((inst.operands[0].imm >> 4) & 7)
13114 | (((inst.instruction >> 8) & 3) << 3);
13115
13116 typebits = typetable[idx];
13117
13118 constraint (typebits == -1, _("bad list type for instruction"));
13119
13120 inst.instruction &= ~0xf00;
13121 inst.instruction |= typebits << 8;
13122}
13123
13124/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
13125 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
13126 otherwise. The variable arguments are a list of pairs of legal (size, align)
13127 values, terminated with -1. */
13128
13129static int
13130neon_alignment_bit (int size, int align, int *do_align, ...)
13131{
13132 va_list ap;
13133 int result = FAIL, thissize, thisalign;
13134
13135 if (!inst.operands[1].immisalign)
13136 {
13137 *do_align = 0;
13138 return SUCCESS;
13139 }
13140
13141 va_start (ap, do_align);
13142
13143 do
13144 {
13145 thissize = va_arg (ap, int);
13146 if (thissize == -1)
13147 break;
13148 thisalign = va_arg (ap, int);
13149
13150 if (size == thissize && align == thisalign)
13151 result = SUCCESS;
13152 }
13153 while (result != SUCCESS);
13154
13155 va_end (ap);
13156
13157 if (result == SUCCESS)
13158 *do_align = 1;
13159 else
dcbf9037 13160 first_error (_("unsupported alignment for instruction"));
5287ad62
JB
13161
13162 return result;
13163}
13164
13165static void
13166do_neon_ld_st_lane (void)
13167{
037e8744 13168 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
13169 int align_good, do_align = 0;
13170 int logsize = neon_logbits (et.size);
13171 int align = inst.operands[1].imm >> 8;
13172 int n = (inst.instruction >> 8) & 3;
13173 int max_el = 64 / et.size;
13174
dcbf9037
JB
13175 if (et.type == NT_invtype)
13176 return;
13177
5287ad62
JB
13178 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
13179 _("bad list length"));
13180 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
13181 _("scalar index out of range"));
13182 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
13183 && et.size == 8,
13184 _("stride of 2 unavailable when element size is 8"));
13185
13186 switch (n)
13187 {
13188 case 0: /* VLD1 / VST1. */
13189 align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
13190 32, 32, -1);
13191 if (align_good == FAIL)
13192 return;
13193 if (do_align)
13194 {
13195 unsigned alignbits = 0;
13196 switch (et.size)
13197 {
13198 case 16: alignbits = 0x1; break;
13199 case 32: alignbits = 0x3; break;
13200 default: ;
13201 }
13202 inst.instruction |= alignbits << 4;
13203 }
13204 break;
13205
13206 case 1: /* VLD2 / VST2. */
13207 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
13208 32, 64, -1);
13209 if (align_good == FAIL)
13210 return;
13211 if (do_align)
13212 inst.instruction |= 1 << 4;
13213 break;
13214
13215 case 2: /* VLD3 / VST3. */
13216 constraint (inst.operands[1].immisalign,
13217 _("can't use alignment with this instruction"));
13218 break;
13219
13220 case 3: /* VLD4 / VST4. */
13221 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
13222 16, 64, 32, 64, 32, 128, -1);
13223 if (align_good == FAIL)
13224 return;
13225 if (do_align)
13226 {
13227 unsigned alignbits = 0;
13228 switch (et.size)
13229 {
13230 case 8: alignbits = 0x1; break;
13231 case 16: alignbits = 0x1; break;
13232 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
13233 default: ;
13234 }
13235 inst.instruction |= alignbits << 4;
13236 }
13237 break;
13238
13239 default: ;
13240 }
13241
13242 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
13243 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
13244 inst.instruction |= 1 << (4 + logsize);
13245
13246 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
13247 inst.instruction |= logsize << 10;
13248}
13249
13250/* Encode single n-element structure to all lanes VLD<n> instructions. */
13251
13252static void
13253do_neon_ld_dup (void)
13254{
037e8744 13255 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
5287ad62
JB
13256 int align_good, do_align = 0;
13257
dcbf9037
JB
13258 if (et.type == NT_invtype)
13259 return;
13260
5287ad62
JB
13261 switch ((inst.instruction >> 8) & 3)
13262 {
13263 case 0: /* VLD1. */
13264 assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
13265 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
13266 &do_align, 16, 16, 32, 32, -1);
13267 if (align_good == FAIL)
13268 return;
13269 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
13270 {
13271 case 1: break;
13272 case 2: inst.instruction |= 1 << 5; break;
dcbf9037 13273 default: first_error (_("bad list length")); return;
5287ad62
JB
13274 }
13275 inst.instruction |= neon_logbits (et.size) << 6;
13276 break;
13277
13278 case 1: /* VLD2. */
13279 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
13280 &do_align, 8, 16, 16, 32, 32, 64, -1);
13281 if (align_good == FAIL)
13282 return;
13283 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
13284 _("bad list length"));
13285 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
13286 inst.instruction |= 1 << 5;
13287 inst.instruction |= neon_logbits (et.size) << 6;
13288 break;
13289
13290 case 2: /* VLD3. */
13291 constraint (inst.operands[1].immisalign,
13292 _("can't use alignment with this instruction"));
13293 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
13294 _("bad list length"));
13295 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
13296 inst.instruction |= 1 << 5;
13297 inst.instruction |= neon_logbits (et.size) << 6;
13298 break;
13299
13300 case 3: /* VLD4. */
13301 {
13302 int align = inst.operands[1].imm >> 8;
13303 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
13304 16, 64, 32, 64, 32, 128, -1);
13305 if (align_good == FAIL)
13306 return;
13307 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
13308 _("bad list length"));
13309 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
13310 inst.instruction |= 1 << 5;
13311 if (et.size == 32 && align == 128)
13312 inst.instruction |= 0x3 << 6;
13313 else
13314 inst.instruction |= neon_logbits (et.size) << 6;
13315 }
13316 break;
13317
13318 default: ;
13319 }
13320
13321 inst.instruction |= do_align << 4;
13322}
13323
13324/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
13325 apart from bits [11:4]. */
13326
13327static void
13328do_neon_ldx_stx (void)
13329{
13330 switch (NEON_LANE (inst.operands[0].imm))
13331 {
13332 case NEON_INTERLEAVE_LANES:
13333 inst.instruction = NEON_ENC_INTERLV (inst.instruction);
13334 do_neon_ld_st_interleave ();
13335 break;
13336
13337 case NEON_ALL_LANES:
13338 inst.instruction = NEON_ENC_DUP (inst.instruction);
13339 do_neon_ld_dup ();
13340 break;
13341
13342 default:
13343 inst.instruction = NEON_ENC_LANE (inst.instruction);
13344 do_neon_ld_st_lane ();
13345 }
13346
13347 /* L bit comes from bit mask. */
13348 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13349 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13350 inst.instruction |= inst.operands[1].reg << 16;
13351
13352 if (inst.operands[1].postind)
13353 {
13354 int postreg = inst.operands[1].imm & 0xf;
13355 constraint (!inst.operands[1].immisreg,
13356 _("post-index must be a register"));
13357 constraint (postreg == 0xd || postreg == 0xf,
13358 _("bad register for post-index"));
13359 inst.instruction |= postreg;
13360 }
13361 else if (inst.operands[1].writeback)
13362 {
13363 inst.instruction |= 0xd;
13364 }
13365 else
13366 inst.instruction |= 0xf;
13367
13368 if (thumb_mode)
13369 inst.instruction |= 0xf9000000;
13370 else
13371 inst.instruction |= 0xf4000000;
13372}
13373
13374\f
13375/* Overall per-instruction processing. */
13376
13377/* We need to be able to fix up arbitrary expressions in some statements.
13378 This is so that we can handle symbols that are an arbitrary distance from
13379 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
13380 which returns part of an address in a form which will be valid for
13381 a data instruction. We do this by pushing the expression into a symbol
13382 in the expr_section, and creating a fix for that. */
13383
13384static void
13385fix_new_arm (fragS * frag,
13386 int where,
13387 short int size,
13388 expressionS * exp,
13389 int pc_rel,
13390 int reloc)
13391{
13392 fixS * new_fix;
13393
13394 switch (exp->X_op)
13395 {
13396 case O_constant:
13397 case O_symbol:
13398 case O_add:
13399 case O_subtract:
13400 new_fix = fix_new_exp (frag, where, size, exp, pc_rel, reloc);
13401 break;
13402
13403 default:
13404 new_fix = fix_new (frag, where, size, make_expr_symbol (exp), 0,
13405 pc_rel, reloc);
13406 break;
13407 }
13408
13409 /* Mark whether the fix is to a THUMB instruction, or an ARM
13410 instruction. */
13411 new_fix->tc_fix_data = thumb_mode;
13412}
13413
13414/* Create a frg for an instruction requiring relaxation. */
13415static void
13416output_relax_insn (void)
13417{
13418 char * to;
13419 symbolS *sym;
0110f2b8
PB
13420 int offset;
13421
6e1cb1a6
PB
13422 /* The size of the instruction is unknown, so tie the debug info to the
13423 start of the instruction. */
13424 dwarf2_emit_insn (0);
6e1cb1a6 13425
0110f2b8
PB
13426 switch (inst.reloc.exp.X_op)
13427 {
13428 case O_symbol:
13429 sym = inst.reloc.exp.X_add_symbol;
13430 offset = inst.reloc.exp.X_add_number;
13431 break;
13432 case O_constant:
13433 sym = NULL;
13434 offset = inst.reloc.exp.X_add_number;
13435 break;
13436 default:
13437 sym = make_expr_symbol (&inst.reloc.exp);
13438 offset = 0;
13439 break;
13440 }
13441 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
13442 inst.relax, sym, offset, NULL/*offset, opcode*/);
13443 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
13444}
13445
13446/* Write a 32-bit thumb instruction to buf. */
13447static void
13448put_thumb32_insn (char * buf, unsigned long insn)
13449{
13450 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
13451 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
13452}
13453
b99bd4ef 13454static void
c19d1205 13455output_inst (const char * str)
b99bd4ef 13456{
c19d1205 13457 char * to = NULL;
b99bd4ef 13458
c19d1205 13459 if (inst.error)
b99bd4ef 13460 {
c19d1205 13461 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
13462 return;
13463 }
0110f2b8
PB
13464 if (inst.relax) {
13465 output_relax_insn();
13466 return;
13467 }
c19d1205
ZW
13468 if (inst.size == 0)
13469 return;
b99bd4ef 13470
c19d1205
ZW
13471 to = frag_more (inst.size);
13472
13473 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 13474 {
c19d1205 13475 assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 13476 put_thumb32_insn (to, inst.instruction);
b99bd4ef 13477 }
c19d1205 13478 else if (inst.size > INSN_SIZE)
b99bd4ef 13479 {
c19d1205
ZW
13480 assert (inst.size == (2 * INSN_SIZE));
13481 md_number_to_chars (to, inst.instruction, INSN_SIZE);
13482 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 13483 }
c19d1205
ZW
13484 else
13485 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 13486
c19d1205
ZW
13487 if (inst.reloc.type != BFD_RELOC_UNUSED)
13488 fix_new_arm (frag_now, to - frag_now->fr_literal,
13489 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
13490 inst.reloc.type);
b99bd4ef 13491
c19d1205 13492 dwarf2_emit_insn (inst.size);
c19d1205 13493}
b99bd4ef 13494
c19d1205
ZW
13495/* Tag values used in struct asm_opcode's tag field. */
13496enum opcode_tag
13497{
13498 OT_unconditional, /* Instruction cannot be conditionalized.
13499 The ARM condition field is still 0xE. */
13500 OT_unconditionalF, /* Instruction cannot be conditionalized
13501 and carries 0xF in its ARM condition field. */
13502 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744
JB
13503 OT_csuffixF, /* Some forms of the instruction take a conditional
13504 suffix, others place 0xF where the condition field
13505 would be. */
c19d1205
ZW
13506 OT_cinfix3, /* Instruction takes a conditional infix,
13507 beginning at character index 3. (In
13508 unified mode, it becomes a suffix.) */
088fa78e
KH
13509 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
13510 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
13511 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
13512 character index 3, even in unified mode. Used for
13513 legacy instructions where suffix and infix forms
13514 may be ambiguous. */
c19d1205 13515 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 13516 suffix or an infix at character index 3. */
c19d1205
ZW
13517 OT_odd_infix_unc, /* This is the unconditional variant of an
13518 instruction that takes a conditional infix
13519 at an unusual position. In unified mode,
13520 this variant will accept a suffix. */
13521 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
13522 are the conditional variants of instructions that
13523 take conditional infixes in unusual positions.
13524 The infix appears at character index
13525 (tag - OT_odd_infix_0). These are not accepted
13526 in unified mode. */
13527};
b99bd4ef 13528
c19d1205
ZW
13529/* Subroutine of md_assemble, responsible for looking up the primary
13530 opcode from the mnemonic the user wrote. STR points to the
13531 beginning of the mnemonic.
13532
13533 This is not simply a hash table lookup, because of conditional
13534 variants. Most instructions have conditional variants, which are
13535 expressed with a _conditional affix_ to the mnemonic. If we were
13536 to encode each conditional variant as a literal string in the opcode
13537 table, it would have approximately 20,000 entries.
13538
13539 Most mnemonics take this affix as a suffix, and in unified syntax,
13540 'most' is upgraded to 'all'. However, in the divided syntax, some
13541 instructions take the affix as an infix, notably the s-variants of
13542 the arithmetic instructions. Of those instructions, all but six
13543 have the infix appear after the third character of the mnemonic.
13544
13545 Accordingly, the algorithm for looking up primary opcodes given
13546 an identifier is:
13547
13548 1. Look up the identifier in the opcode table.
13549 If we find a match, go to step U.
13550
13551 2. Look up the last two characters of the identifier in the
13552 conditions table. If we find a match, look up the first N-2
13553 characters of the identifier in the opcode table. If we
13554 find a match, go to step CE.
13555
13556 3. Look up the fourth and fifth characters of the identifier in
13557 the conditions table. If we find a match, extract those
13558 characters from the identifier, and look up the remaining
13559 characters in the opcode table. If we find a match, go
13560 to step CM.
13561
13562 4. Fail.
13563
13564 U. Examine the tag field of the opcode structure, in case this is
13565 one of the six instructions with its conditional infix in an
13566 unusual place. If it is, the tag tells us where to find the
13567 infix; look it up in the conditions table and set inst.cond
13568 accordingly. Otherwise, this is an unconditional instruction.
13569 Again set inst.cond accordingly. Return the opcode structure.
13570
13571 CE. Examine the tag field to make sure this is an instruction that
13572 should receive a conditional suffix. If it is not, fail.
13573 Otherwise, set inst.cond from the suffix we already looked up,
13574 and return the opcode structure.
13575
13576 CM. Examine the tag field to make sure this is an instruction that
13577 should receive a conditional infix after the third character.
13578 If it is not, fail. Otherwise, undo the edits to the current
13579 line of input and proceed as for case CE. */
13580
13581static const struct asm_opcode *
13582opcode_lookup (char **str)
13583{
13584 char *end, *base;
13585 char *affix;
13586 const struct asm_opcode *opcode;
13587 const struct asm_cond *cond;
e3cb604e 13588 char save[2];
267d2029
JB
13589 bfd_boolean neon_supported;
13590
13591 neon_supported = ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1);
c19d1205
ZW
13592
13593 /* Scan up to the end of the mnemonic, which must end in white space,
267d2029 13594 '.' (in unified mode, or for Neon instructions), or end of string. */
c19d1205 13595 for (base = end = *str; *end != '\0'; end++)
267d2029 13596 if (*end == ' ' || ((unified_syntax || neon_supported) && *end == '.'))
c19d1205 13597 break;
b99bd4ef 13598
c19d1205
ZW
13599 if (end == base)
13600 return 0;
b99bd4ef 13601
5287ad62 13602 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 13603 if (end[0] == '.')
b99bd4ef 13604 {
5287ad62
JB
13605 int offset = 2;
13606
267d2029
JB
13607 /* The .w and .n suffixes are only valid if the unified syntax is in
13608 use. */
13609 if (unified_syntax && end[1] == 'w')
c19d1205 13610 inst.size_req = 4;
267d2029 13611 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
13612 inst.size_req = 2;
13613 else
5287ad62
JB
13614 offset = 0;
13615
13616 inst.vectype.elems = 0;
13617
13618 *str = end + offset;
b99bd4ef 13619
5287ad62
JB
13620 if (end[offset] == '.')
13621 {
267d2029
JB
13622 /* See if we have a Neon type suffix (possible in either unified or
13623 non-unified ARM syntax mode). */
dcbf9037 13624 if (parse_neon_type (&inst.vectype, str) == FAIL)
5287ad62
JB
13625 return 0;
13626 }
13627 else if (end[offset] != '\0' && end[offset] != ' ')
13628 return 0;
b99bd4ef 13629 }
c19d1205
ZW
13630 else
13631 *str = end;
b99bd4ef 13632
c19d1205
ZW
13633 /* Look for unaffixed or special-case affixed mnemonic. */
13634 opcode = hash_find_n (arm_ops_hsh, base, end - base);
13635 if (opcode)
b99bd4ef 13636 {
c19d1205
ZW
13637 /* step U */
13638 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 13639 {
c19d1205
ZW
13640 inst.cond = COND_ALWAYS;
13641 return opcode;
b99bd4ef 13642 }
b99bd4ef 13643
c19d1205
ZW
13644 if (unified_syntax)
13645 as_warn (_("conditional infixes are deprecated in unified syntax"));
13646 affix = base + (opcode->tag - OT_odd_infix_0);
13647 cond = hash_find_n (arm_cond_hsh, affix, 2);
13648 assert (cond);
b99bd4ef 13649
c19d1205
ZW
13650 inst.cond = cond->value;
13651 return opcode;
13652 }
b99bd4ef 13653
c19d1205
ZW
13654 /* Cannot have a conditional suffix on a mnemonic of less than two
13655 characters. */
13656 if (end - base < 3)
13657 return 0;
b99bd4ef 13658
c19d1205
ZW
13659 /* Look for suffixed mnemonic. */
13660 affix = end - 2;
13661 cond = hash_find_n (arm_cond_hsh, affix, 2);
13662 opcode = hash_find_n (arm_ops_hsh, base, affix - base);
13663 if (opcode && cond)
13664 {
13665 /* step CE */
13666 switch (opcode->tag)
13667 {
e3cb604e
PB
13668 case OT_cinfix3_legacy:
13669 /* Ignore conditional suffixes matched on infix only mnemonics. */
13670 break;
13671
c19d1205 13672 case OT_cinfix3:
088fa78e 13673 case OT_cinfix3_deprecated:
c19d1205
ZW
13674 case OT_odd_infix_unc:
13675 if (!unified_syntax)
e3cb604e 13676 return 0;
c19d1205
ZW
13677 /* else fall through */
13678
13679 case OT_csuffix:
037e8744 13680 case OT_csuffixF:
c19d1205
ZW
13681 case OT_csuf_or_in3:
13682 inst.cond = cond->value;
13683 return opcode;
13684
13685 case OT_unconditional:
13686 case OT_unconditionalF:
dfa9f0d5
PB
13687 if (thumb_mode)
13688 {
13689 inst.cond = cond->value;
13690 }
13691 else
13692 {
13693 /* delayed diagnostic */
13694 inst.error = BAD_COND;
13695 inst.cond = COND_ALWAYS;
13696 }
c19d1205 13697 return opcode;
b99bd4ef 13698
c19d1205
ZW
13699 default:
13700 return 0;
13701 }
13702 }
b99bd4ef 13703
c19d1205
ZW
13704 /* Cannot have a usual-position infix on a mnemonic of less than
13705 six characters (five would be a suffix). */
13706 if (end - base < 6)
13707 return 0;
b99bd4ef 13708
c19d1205
ZW
13709 /* Look for infixed mnemonic in the usual position. */
13710 affix = base + 3;
13711 cond = hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e
PB
13712 if (!cond)
13713 return 0;
13714
13715 memcpy (save, affix, 2);
13716 memmove (affix, affix + 2, (end - affix) - 2);
13717 opcode = hash_find_n (arm_ops_hsh, base, (end - base) - 2);
13718 memmove (affix + 2, affix, (end - affix) - 2);
13719 memcpy (affix, save, 2);
13720
088fa78e
KH
13721 if (opcode
13722 && (opcode->tag == OT_cinfix3
13723 || opcode->tag == OT_cinfix3_deprecated
13724 || opcode->tag == OT_csuf_or_in3
13725 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 13726 {
c19d1205 13727 /* step CM */
088fa78e
KH
13728 if (unified_syntax
13729 && (opcode->tag == OT_cinfix3
13730 || opcode->tag == OT_cinfix3_deprecated))
c19d1205
ZW
13731 as_warn (_("conditional infixes are deprecated in unified syntax"));
13732
13733 inst.cond = cond->value;
13734 return opcode;
b99bd4ef
NC
13735 }
13736
c19d1205 13737 return 0;
b99bd4ef
NC
13738}
13739
c19d1205
ZW
13740void
13741md_assemble (char *str)
b99bd4ef 13742{
c19d1205
ZW
13743 char *p = str;
13744 const struct asm_opcode * opcode;
b99bd4ef 13745
c19d1205
ZW
13746 /* Align the previous label if needed. */
13747 if (last_label_seen != NULL)
b99bd4ef 13748 {
c19d1205
ZW
13749 symbol_set_frag (last_label_seen, frag_now);
13750 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
13751 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
13752 }
13753
c19d1205
ZW
13754 memset (&inst, '\0', sizeof (inst));
13755 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 13756
c19d1205
ZW
13757 opcode = opcode_lookup (&p);
13758 if (!opcode)
b99bd4ef 13759 {
c19d1205 13760 /* It wasn't an instruction, but it might be a register alias of
dcbf9037
JB
13761 the form alias .req reg, or a Neon .dn/.qn directive. */
13762 if (!create_register_alias (str, p)
13763 && !create_neon_reg_alias (str, p))
c19d1205 13764 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 13765
b99bd4ef
NC
13766 return;
13767 }
13768
088fa78e
KH
13769 if (opcode->tag == OT_cinfix3_deprecated)
13770 as_warn (_("s suffix on comparison instruction is deprecated"));
13771
037e8744
JB
13772 /* The value which unconditional instructions should have in place of the
13773 condition field. */
13774 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
13775
c19d1205 13776 if (thumb_mode)
b99bd4ef 13777 {
e74cfd16 13778 arm_feature_set variant;
8f06b2d8
PB
13779
13780 variant = cpu_variant;
13781 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
13782 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
13783 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 13784 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
13785 if (!opcode->tvariant
13786 || (thumb_mode == 1
13787 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 13788 {
c19d1205 13789 as_bad (_("selected processor does not support `%s'"), str);
b99bd4ef
NC
13790 return;
13791 }
c19d1205
ZW
13792 if (inst.cond != COND_ALWAYS && !unified_syntax
13793 && opcode->tencode != do_t_branch)
b99bd4ef 13794 {
c19d1205 13795 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
13796 return;
13797 }
13798
e27ec89e
PB
13799 /* Check conditional suffixes. */
13800 if (current_it_mask)
13801 {
13802 int cond;
13803 cond = current_cc ^ ((current_it_mask >> 4) & 1) ^ 1;
dfa9f0d5
PB
13804 current_it_mask <<= 1;
13805 current_it_mask &= 0x1f;
13806 /* The BKPT instruction is unconditional even in an IT block. */
13807 if (!inst.error
13808 && cond != inst.cond && opcode->tencode != do_t_bkpt)
e27ec89e
PB
13809 {
13810 as_bad (_("incorrect condition in IT block"));
13811 return;
13812 }
e27ec89e
PB
13813 }
13814 else if (inst.cond != COND_ALWAYS && opcode->tencode != do_t_branch)
13815 {
13816 as_bad (_("thumb conditional instrunction not in IT block"));
13817 return;
13818 }
13819
c19d1205
ZW
13820 mapping_state (MAP_THUMB);
13821 inst.instruction = opcode->tvalue;
13822
13823 if (!parse_operands (p, opcode->operands))
13824 opcode->tencode ();
13825
e27ec89e
PB
13826 /* Clear current_it_mask at the end of an IT block. */
13827 if (current_it_mask == 0x10)
13828 current_it_mask = 0;
13829
0110f2b8 13830 if (!(inst.error || inst.relax))
b99bd4ef 13831 {
c19d1205
ZW
13832 assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
13833 inst.size = (inst.instruction > 0xffff ? 4 : 2);
13834 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 13835 {
c19d1205 13836 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
13837 return;
13838 }
13839 }
e74cfd16
PB
13840 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
13841 *opcode->tvariant);
ee065d83 13842 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
708587a4 13843 set those bits when Thumb-2 32-bit instructions are seen. ie.
ee065d83
PB
13844 anything other than bl/blx.
13845 This is overly pessimistic for relaxable instructions. */
13846 if ((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
13847 || inst.relax)
e74cfd16
PB
13848 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
13849 arm_ext_v6t2);
c19d1205 13850 }
3e9e4fcf 13851 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
13852 {
13853 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
13854 if (!opcode->avariant ||
13855 !ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant))
b99bd4ef 13856 {
c19d1205
ZW
13857 as_bad (_("selected processor does not support `%s'"), str);
13858 return;
b99bd4ef 13859 }
c19d1205 13860 if (inst.size_req)
b99bd4ef 13861 {
c19d1205
ZW
13862 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
13863 return;
b99bd4ef
NC
13864 }
13865
c19d1205
ZW
13866 mapping_state (MAP_ARM);
13867 inst.instruction = opcode->avalue;
13868 if (opcode->tag == OT_unconditionalF)
13869 inst.instruction |= 0xF << 28;
13870 else
13871 inst.instruction |= inst.cond << 28;
13872 inst.size = INSN_SIZE;
13873 if (!parse_operands (p, opcode->operands))
13874 opcode->aencode ();
ee065d83
PB
13875 /* Arm mode bx is marked as both v4T and v5 because it's still required
13876 on a hypothetical non-thumb v5 core. */
e74cfd16
PB
13877 if (ARM_CPU_HAS_FEATURE (*opcode->avariant, arm_ext_v4t)
13878 || ARM_CPU_HAS_FEATURE (*opcode->avariant, arm_ext_v5))
13879 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 13880 else
e74cfd16
PB
13881 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
13882 *opcode->avariant);
b99bd4ef 13883 }
3e9e4fcf
JB
13884 else
13885 {
13886 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
13887 "-- `%s'"), str);
13888 return;
13889 }
c19d1205
ZW
13890 output_inst (str);
13891}
b99bd4ef 13892
c19d1205
ZW
13893/* Various frobbings of labels and their addresses. */
13894
13895void
13896arm_start_line_hook (void)
13897{
13898 last_label_seen = NULL;
b99bd4ef
NC
13899}
13900
c19d1205
ZW
13901void
13902arm_frob_label (symbolS * sym)
b99bd4ef 13903{
c19d1205 13904 last_label_seen = sym;
b99bd4ef 13905
c19d1205 13906 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 13907
c19d1205
ZW
13908#if defined OBJ_COFF || defined OBJ_ELF
13909 ARM_SET_INTERWORK (sym, support_interwork);
13910#endif
b99bd4ef 13911
c19d1205
ZW
13912 /* Note - do not allow local symbols (.Lxxx) to be labeled
13913 as Thumb functions. This is because these labels, whilst
13914 they exist inside Thumb code, are not the entry points for
13915 possible ARM->Thumb calls. Also, these labels can be used
13916 as part of a computed goto or switch statement. eg gcc
13917 can generate code that looks like this:
b99bd4ef 13918
c19d1205
ZW
13919 ldr r2, [pc, .Laaa]
13920 lsl r3, r3, #2
13921 ldr r2, [r3, r2]
13922 mov pc, r2
b99bd4ef 13923
c19d1205
ZW
13924 .Lbbb: .word .Lxxx
13925 .Lccc: .word .Lyyy
13926 ..etc...
13927 .Laaa: .word Lbbb
b99bd4ef 13928
c19d1205
ZW
13929 The first instruction loads the address of the jump table.
13930 The second instruction converts a table index into a byte offset.
13931 The third instruction gets the jump address out of the table.
13932 The fourth instruction performs the jump.
b99bd4ef 13933
c19d1205
ZW
13934 If the address stored at .Laaa is that of a symbol which has the
13935 Thumb_Func bit set, then the linker will arrange for this address
13936 to have the bottom bit set, which in turn would mean that the
13937 address computation performed by the third instruction would end
13938 up with the bottom bit set. Since the ARM is capable of unaligned
13939 word loads, the instruction would then load the incorrect address
13940 out of the jump table, and chaos would ensue. */
13941 if (label_is_thumb_function_name
13942 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
13943 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 13944 {
c19d1205
ZW
13945 /* When the address of a Thumb function is taken the bottom
13946 bit of that address should be set. This will allow
13947 interworking between Arm and Thumb functions to work
13948 correctly. */
b99bd4ef 13949
c19d1205 13950 THUMB_SET_FUNC (sym, 1);
b99bd4ef 13951
c19d1205 13952 label_is_thumb_function_name = FALSE;
b99bd4ef 13953 }
07a53e5c 13954
07a53e5c 13955 dwarf2_emit_label (sym);
b99bd4ef
NC
13956}
13957
c19d1205
ZW
13958int
13959arm_data_in_code (void)
b99bd4ef 13960{
c19d1205 13961 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 13962 {
c19d1205
ZW
13963 *input_line_pointer = '/';
13964 input_line_pointer += 5;
13965 *input_line_pointer = 0;
13966 return 1;
b99bd4ef
NC
13967 }
13968
c19d1205 13969 return 0;
b99bd4ef
NC
13970}
13971
c19d1205
ZW
13972char *
13973arm_canonicalize_symbol_name (char * name)
b99bd4ef 13974{
c19d1205 13975 int len;
b99bd4ef 13976
c19d1205
ZW
13977 if (thumb_mode && (len = strlen (name)) > 5
13978 && streq (name + len - 5, "/data"))
13979 *(name + len - 5) = 0;
b99bd4ef 13980
c19d1205 13981 return name;
b99bd4ef 13982}
c19d1205
ZW
13983\f
13984/* Table of all register names defined by default. The user can
13985 define additional names with .req. Note that all register names
13986 should appear in both upper and lowercase variants. Some registers
13987 also have mixed-case names. */
b99bd4ef 13988
dcbf9037 13989#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 13990#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 13991#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
13992#define REGSET(p,t) \
13993 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
13994 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
13995 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
13996 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
13997#define REGSETH(p,t) \
13998 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
13999 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
14000 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
14001 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
14002#define REGSET2(p,t) \
14003 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
14004 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
14005 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
14006 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
7ed4c4c5 14007
c19d1205 14008static const struct reg_entry reg_names[] =
7ed4c4c5 14009{
c19d1205
ZW
14010 /* ARM integer registers. */
14011 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 14012
c19d1205
ZW
14013 /* ATPCS synonyms. */
14014 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
14015 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
14016 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 14017
c19d1205
ZW
14018 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
14019 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
14020 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 14021
c19d1205
ZW
14022 /* Well-known aliases. */
14023 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
14024 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
14025
14026 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
14027 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
14028
14029 /* Coprocessor numbers. */
14030 REGSET(p, CP), REGSET(P, CP),
14031
14032 /* Coprocessor register numbers. The "cr" variants are for backward
14033 compatibility. */
14034 REGSET(c, CN), REGSET(C, CN),
14035 REGSET(cr, CN), REGSET(CR, CN),
14036
14037 /* FPA registers. */
14038 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
14039 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
14040
14041 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
14042 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
14043
14044 /* VFP SP registers. */
5287ad62
JB
14045 REGSET(s,VFS), REGSET(S,VFS),
14046 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
14047
14048 /* VFP DP Registers. */
5287ad62
JB
14049 REGSET(d,VFD), REGSET(D,VFD),
14050 /* Extra Neon DP registers. */
14051 REGSETH(d,VFD), REGSETH(D,VFD),
14052
14053 /* Neon QP registers. */
14054 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
14055
14056 /* VFP control registers. */
14057 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
14058 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
14059
14060 /* Maverick DSP coprocessor registers. */
14061 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
14062 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
14063
14064 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
14065 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
14066 REGDEF(dspsc,0,DSPSC),
14067
14068 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
14069 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
14070 REGDEF(DSPSC,0,DSPSC),
14071
14072 /* iWMMXt data registers - p0, c0-15. */
14073 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
14074
14075 /* iWMMXt control registers - p1, c0-3. */
14076 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
14077 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
14078 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
14079 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
14080
14081 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
14082 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
14083 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
14084 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
14085 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
14086
14087 /* XScale accumulator registers. */
14088 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
14089};
14090#undef REGDEF
14091#undef REGNUM
14092#undef REGSET
7ed4c4c5 14093
c19d1205
ZW
14094/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
14095 within psr_required_here. */
14096static const struct asm_psr psrs[] =
14097{
14098 /* Backward compatibility notation. Note that "all" is no longer
14099 truly all possible PSR bits. */
14100 {"all", PSR_c | PSR_f},
14101 {"flg", PSR_f},
14102 {"ctl", PSR_c},
14103
14104 /* Individual flags. */
14105 {"f", PSR_f},
14106 {"c", PSR_c},
14107 {"x", PSR_x},
14108 {"s", PSR_s},
14109 /* Combinations of flags. */
14110 {"fs", PSR_f | PSR_s},
14111 {"fx", PSR_f | PSR_x},
14112 {"fc", PSR_f | PSR_c},
14113 {"sf", PSR_s | PSR_f},
14114 {"sx", PSR_s | PSR_x},
14115 {"sc", PSR_s | PSR_c},
14116 {"xf", PSR_x | PSR_f},
14117 {"xs", PSR_x | PSR_s},
14118 {"xc", PSR_x | PSR_c},
14119 {"cf", PSR_c | PSR_f},
14120 {"cs", PSR_c | PSR_s},
14121 {"cx", PSR_c | PSR_x},
14122 {"fsx", PSR_f | PSR_s | PSR_x},
14123 {"fsc", PSR_f | PSR_s | PSR_c},
14124 {"fxs", PSR_f | PSR_x | PSR_s},
14125 {"fxc", PSR_f | PSR_x | PSR_c},
14126 {"fcs", PSR_f | PSR_c | PSR_s},
14127 {"fcx", PSR_f | PSR_c | PSR_x},
14128 {"sfx", PSR_s | PSR_f | PSR_x},
14129 {"sfc", PSR_s | PSR_f | PSR_c},
14130 {"sxf", PSR_s | PSR_x | PSR_f},
14131 {"sxc", PSR_s | PSR_x | PSR_c},
14132 {"scf", PSR_s | PSR_c | PSR_f},
14133 {"scx", PSR_s | PSR_c | PSR_x},
14134 {"xfs", PSR_x | PSR_f | PSR_s},
14135 {"xfc", PSR_x | PSR_f | PSR_c},
14136 {"xsf", PSR_x | PSR_s | PSR_f},
14137 {"xsc", PSR_x | PSR_s | PSR_c},
14138 {"xcf", PSR_x | PSR_c | PSR_f},
14139 {"xcs", PSR_x | PSR_c | PSR_s},
14140 {"cfs", PSR_c | PSR_f | PSR_s},
14141 {"cfx", PSR_c | PSR_f | PSR_x},
14142 {"csf", PSR_c | PSR_s | PSR_f},
14143 {"csx", PSR_c | PSR_s | PSR_x},
14144 {"cxf", PSR_c | PSR_x | PSR_f},
14145 {"cxs", PSR_c | PSR_x | PSR_s},
14146 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
14147 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
14148 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
14149 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
14150 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
14151 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
14152 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
14153 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
14154 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
14155 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
14156 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
14157 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
14158 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
14159 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
14160 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
14161 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
14162 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
14163 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
14164 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
14165 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
14166 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
14167 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
14168 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
14169 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
14170};
14171
62b3e311
PB
14172/* Table of V7M psr names. */
14173static const struct asm_psr v7m_psrs[] =
14174{
14175 {"apsr", 0 },
14176 {"iapsr", 1 },
14177 {"eapsr", 2 },
14178 {"psr", 3 },
14179 {"ipsr", 5 },
14180 {"epsr", 6 },
14181 {"iepsr", 7 },
14182 {"msp", 8 },
14183 {"psp", 9 },
14184 {"primask", 16},
14185 {"basepri", 17},
14186 {"basepri_max", 18},
14187 {"faultmask", 19},
14188 {"control", 20}
14189};
14190
c19d1205
ZW
14191/* Table of all shift-in-operand names. */
14192static const struct asm_shift_name shift_names [] =
b99bd4ef 14193{
c19d1205
ZW
14194 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
14195 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
14196 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
14197 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
14198 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
14199 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
14200};
b99bd4ef 14201
c19d1205
ZW
14202/* Table of all explicit relocation names. */
14203#ifdef OBJ_ELF
14204static struct reloc_entry reloc_names[] =
14205{
14206 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
14207 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
14208 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
14209 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
14210 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
14211 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
14212 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
14213 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
14214 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
14215 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
14216 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32}
14217};
14218#endif
b99bd4ef 14219
c19d1205
ZW
14220/* Table of all conditional affixes. 0xF is not defined as a condition code. */
14221static const struct asm_cond conds[] =
14222{
14223 {"eq", 0x0},
14224 {"ne", 0x1},
14225 {"cs", 0x2}, {"hs", 0x2},
14226 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
14227 {"mi", 0x4},
14228 {"pl", 0x5},
14229 {"vs", 0x6},
14230 {"vc", 0x7},
14231 {"hi", 0x8},
14232 {"ls", 0x9},
14233 {"ge", 0xa},
14234 {"lt", 0xb},
14235 {"gt", 0xc},
14236 {"le", 0xd},
14237 {"al", 0xe}
14238};
bfae80f2 14239
62b3e311
PB
14240static struct asm_barrier_opt barrier_opt_names[] =
14241{
14242 { "sy", 0xf },
14243 { "un", 0x7 },
14244 { "st", 0xe },
14245 { "unst", 0x6 }
14246};
14247
c19d1205
ZW
14248/* Table of ARM-format instructions. */
14249
14250/* Macros for gluing together operand strings. N.B. In all cases
14251 other than OPS0, the trailing OP_stop comes from default
14252 zero-initialization of the unspecified elements of the array. */
14253#define OPS0() { OP_stop, }
14254#define OPS1(a) { OP_##a, }
14255#define OPS2(a,b) { OP_##a,OP_##b, }
14256#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
14257#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
14258#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
14259#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
14260
14261/* These macros abstract out the exact format of the mnemonic table and
14262 save some repeated characters. */
14263
14264/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
14265#define TxCE(mnem, op, top, nops, ops, ae, te) \
14266 { #mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 14267 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
14268
14269/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
14270 a T_MNEM_xyz enumerator. */
14271#define TCE(mnem, aop, top, nops, ops, ae, te) \
14272 TxCE(mnem, aop, 0x##top, nops, ops, ae, te)
14273#define tCE(mnem, aop, top, nops, ops, ae, te) \
14274 TxCE(mnem, aop, T_MNEM_##top, nops, ops, ae, te)
14275
14276/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
14277 infix after the third character. */
14278#define TxC3(mnem, op, top, nops, ops, ae, te) \
14279 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 14280 THUMB_VARIANT, do_##ae, do_##te }
088fa78e
KH
14281#define TxC3w(mnem, op, top, nops, ops, ae, te) \
14282 { #mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
14283 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
14284#define TC3(mnem, aop, top, nops, ops, ae, te) \
14285 TxC3(mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e
KH
14286#define TC3w(mnem, aop, top, nops, ops, ae, te) \
14287 TxC3w(mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205
ZW
14288#define tC3(mnem, aop, top, nops, ops, ae, te) \
14289 TxC3(mnem, aop, T_MNEM_##top, nops, ops, ae, te)
088fa78e
KH
14290#define tC3w(mnem, aop, top, nops, ops, ae, te) \
14291 TxC3w(mnem, aop, T_MNEM_##top, nops, ops, ae, te)
c19d1205
ZW
14292
14293/* Mnemonic with a conditional infix in an unusual place. Each and every variant has to
14294 appear in the condition table. */
14295#define TxCM_(m1, m2, m3, op, top, nops, ops, ae, te) \
14296 { #m1 #m2 #m3, OPS##nops ops, sizeof(#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof(#m1) - 1, \
1887dd22 14297 0x##op, top, ARM_VARIANT, THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
14298
14299#define TxCM(m1, m2, op, top, nops, ops, ae, te) \
14300 TxCM_(m1, , m2, op, top, nops, ops, ae, te), \
14301 TxCM_(m1, eq, m2, op, top, nops, ops, ae, te), \
14302 TxCM_(m1, ne, m2, op, top, nops, ops, ae, te), \
14303 TxCM_(m1, cs, m2, op, top, nops, ops, ae, te), \
14304 TxCM_(m1, hs, m2, op, top, nops, ops, ae, te), \
14305 TxCM_(m1, cc, m2, op, top, nops, ops, ae, te), \
14306 TxCM_(m1, ul, m2, op, top, nops, ops, ae, te), \
14307 TxCM_(m1, lo, m2, op, top, nops, ops, ae, te), \
14308 TxCM_(m1, mi, m2, op, top, nops, ops, ae, te), \
14309 TxCM_(m1, pl, m2, op, top, nops, ops, ae, te), \
14310 TxCM_(m1, vs, m2, op, top, nops, ops, ae, te), \
14311 TxCM_(m1, vc, m2, op, top, nops, ops, ae, te), \
14312 TxCM_(m1, hi, m2, op, top, nops, ops, ae, te), \
14313 TxCM_(m1, ls, m2, op, top, nops, ops, ae, te), \
14314 TxCM_(m1, ge, m2, op, top, nops, ops, ae, te), \
14315 TxCM_(m1, lt, m2, op, top, nops, ops, ae, te), \
14316 TxCM_(m1, gt, m2, op, top, nops, ops, ae, te), \
14317 TxCM_(m1, le, m2, op, top, nops, ops, ae, te), \
14318 TxCM_(m1, al, m2, op, top, nops, ops, ae, te)
14319
14320#define TCM(m1,m2, aop, top, nops, ops, ae, te) \
14321 TxCM(m1,m2, aop, 0x##top, nops, ops, ae, te)
14322#define tCM(m1,m2, aop, top, nops, ops, ae, te) \
14323 TxCM(m1,m2, aop, T_MNEM_##top, nops, ops, ae, te)
14324
14325/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
14326 field is still 0xE. Many of the Thumb variants can be executed
14327 conditionally, so this is checked separately. */
c19d1205
ZW
14328#define TUE(mnem, op, top, nops, ops, ae, te) \
14329 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 14330 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
14331
14332/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
14333 condition code field. */
14334#define TUF(mnem, op, top, nops, ops, ae, te) \
14335 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 14336 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
14337
14338/* ARM-only variants of all the above. */
6a86118a
NC
14339#define CE(mnem, op, nops, ops, ae) \
14340 { #mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
14341
14342#define C3(mnem, op, nops, ops, ae) \
14343 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
14344
e3cb604e
PB
14345/* Legacy mnemonics that always have conditional infix after the third
14346 character. */
14347#define CL(mnem, op, nops, ops, ae) \
14348 { #mnem, OPS##nops ops, OT_cinfix3_legacy, \
14349 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
14350
8f06b2d8
PB
14351/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
14352#define cCE(mnem, op, nops, ops, ae) \
14353 { #mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
14354
e3cb604e
PB
14355/* Legacy coprocessor instructions where conditional infix and conditional
14356 suffix are ambiguous. For consistency this includes all FPA instructions,
14357 not just the potentially ambiguous ones. */
14358#define cCL(mnem, op, nops, ops, ae) \
14359 { #mnem, OPS##nops ops, OT_cinfix3_legacy, \
14360 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
14361
14362/* Coprocessor, takes either a suffix or a position-3 infix
14363 (for an FPA corner case). */
14364#define C3E(mnem, op, nops, ops, ae) \
14365 { #mnem, OPS##nops ops, OT_csuf_or_in3, \
14366 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 14367
6a86118a
NC
14368#define xCM_(m1, m2, m3, op, nops, ops, ae) \
14369 { #m1 #m2 #m3, OPS##nops ops, \
14370 sizeof(#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof(#m1) - 1, \
14371 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
14372
14373#define CM(m1, m2, op, nops, ops, ae) \
14374 xCM_(m1, , m2, op, nops, ops, ae), \
14375 xCM_(m1, eq, m2, op, nops, ops, ae), \
14376 xCM_(m1, ne, m2, op, nops, ops, ae), \
14377 xCM_(m1, cs, m2, op, nops, ops, ae), \
14378 xCM_(m1, hs, m2, op, nops, ops, ae), \
14379 xCM_(m1, cc, m2, op, nops, ops, ae), \
14380 xCM_(m1, ul, m2, op, nops, ops, ae), \
14381 xCM_(m1, lo, m2, op, nops, ops, ae), \
14382 xCM_(m1, mi, m2, op, nops, ops, ae), \
14383 xCM_(m1, pl, m2, op, nops, ops, ae), \
14384 xCM_(m1, vs, m2, op, nops, ops, ae), \
14385 xCM_(m1, vc, m2, op, nops, ops, ae), \
14386 xCM_(m1, hi, m2, op, nops, ops, ae), \
14387 xCM_(m1, ls, m2, op, nops, ops, ae), \
14388 xCM_(m1, ge, m2, op, nops, ops, ae), \
14389 xCM_(m1, lt, m2, op, nops, ops, ae), \
14390 xCM_(m1, gt, m2, op, nops, ops, ae), \
14391 xCM_(m1, le, m2, op, nops, ops, ae), \
14392 xCM_(m1, al, m2, op, nops, ops, ae)
14393
14394#define UE(mnem, op, nops, ops, ae) \
14395 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
14396
14397#define UF(mnem, op, nops, ops, ae) \
14398 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
14399
5287ad62
JB
14400/* Neon data-processing. ARM versions are unconditional with cond=0xf.
14401 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
14402 use the same encoding function for each. */
14403#define NUF(mnem, op, nops, ops, enc) \
14404 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
14405 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
14406
14407/* Neon data processing, version which indirects through neon_enc_tab for
14408 the various overloaded versions of opcodes. */
14409#define nUF(mnem, op, nops, ops, enc) \
14410 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM_##op, N_MNEM_##op, \
14411 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
14412
14413/* Neon insn with conditional suffix for the ARM version, non-overloaded
14414 version. */
037e8744
JB
14415#define NCE_tag(mnem, op, nops, ops, enc, tag) \
14416 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
14417 THUMB_VARIANT, do_##enc, do_##enc }
14418
037e8744
JB
14419#define NCE(mnem, op, nops, ops, enc) \
14420 NCE_tag(mnem, op, nops, ops, enc, OT_csuffix)
14421
14422#define NCEF(mnem, op, nops, ops, enc) \
14423 NCE_tag(mnem, op, nops, ops, enc, OT_csuffixF)
14424
5287ad62 14425/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744
JB
14426#define nCE_tag(mnem, op, nops, ops, enc, tag) \
14427 { #mnem, OPS##nops ops, tag, N_MNEM_##op, N_MNEM_##op, \
5287ad62
JB
14428 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
14429
037e8744
JB
14430#define nCE(mnem, op, nops, ops, enc) \
14431 nCE_tag(mnem, op, nops, ops, enc, OT_csuffix)
14432
14433#define nCEF(mnem, op, nops, ops, enc) \
14434 nCE_tag(mnem, op, nops, ops, enc, OT_csuffixF)
14435
c19d1205
ZW
14436#define do_0 0
14437
14438/* Thumb-only, unconditional. */
14439#define UT(mnem, op, nops, ops, te) TUE(mnem, 0, op, nops, ops, 0, te)
14440
c19d1205 14441static const struct asm_opcode insns[] =
bfae80f2 14442{
e74cfd16
PB
14443#define ARM_VARIANT &arm_ext_v1 /* Core ARM Instructions. */
14444#define THUMB_VARIANT &arm_ext_v4t
c19d1205
ZW
14445 tCE(and, 0000000, and, 3, (RR, oRR, SH), arit, t_arit3c),
14446 tC3(ands, 0100000, ands, 3, (RR, oRR, SH), arit, t_arit3c),
14447 tCE(eor, 0200000, eor, 3, (RR, oRR, SH), arit, t_arit3c),
14448 tC3(eors, 0300000, eors, 3, (RR, oRR, SH), arit, t_arit3c),
14449 tCE(sub, 0400000, sub, 3, (RR, oRR, SH), arit, t_add_sub),
14450 tC3(subs, 0500000, subs, 3, (RR, oRR, SH), arit, t_add_sub),
4962c51a
MS
14451 tCE(add, 0800000, add, 3, (RR, oRR, SHG), arit, t_add_sub),
14452 tC3(adds, 0900000, adds, 3, (RR, oRR, SHG), arit, t_add_sub),
c19d1205
ZW
14453 tCE(adc, 0a00000, adc, 3, (RR, oRR, SH), arit, t_arit3c),
14454 tC3(adcs, 0b00000, adcs, 3, (RR, oRR, SH), arit, t_arit3c),
14455 tCE(sbc, 0c00000, sbc, 3, (RR, oRR, SH), arit, t_arit3),
14456 tC3(sbcs, 0d00000, sbcs, 3, (RR, oRR, SH), arit, t_arit3),
14457 tCE(orr, 1800000, orr, 3, (RR, oRR, SH), arit, t_arit3c),
14458 tC3(orrs, 1900000, orrs, 3, (RR, oRR, SH), arit, t_arit3c),
14459 tCE(bic, 1c00000, bic, 3, (RR, oRR, SH), arit, t_arit3),
14460 tC3(bics, 1d00000, bics, 3, (RR, oRR, SH), arit, t_arit3),
14461
14462 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
14463 for setting PSR flag bits. They are obsolete in V6 and do not
14464 have Thumb equivalents. */
14465 tCE(tst, 1100000, tst, 2, (RR, SH), cmp, t_mvn_tst),
088fa78e 14466 tC3w(tsts, 1100000, tst, 2, (RR, SH), cmp, t_mvn_tst),
e3cb604e 14467 CL(tstp, 110f000, 2, (RR, SH), cmp),
c19d1205 14468 tCE(cmp, 1500000, cmp, 2, (RR, SH), cmp, t_mov_cmp),
088fa78e 14469 tC3w(cmps, 1500000, cmp, 2, (RR, SH), cmp, t_mov_cmp),
e3cb604e 14470 CL(cmpp, 150f000, 2, (RR, SH), cmp),
c19d1205 14471 tCE(cmn, 1700000, cmn, 2, (RR, SH), cmp, t_mvn_tst),
088fa78e 14472 tC3w(cmns, 1700000, cmn, 2, (RR, SH), cmp, t_mvn_tst),
e3cb604e 14473 CL(cmnp, 170f000, 2, (RR, SH), cmp),
c19d1205
ZW
14474
14475 tCE(mov, 1a00000, mov, 2, (RR, SH), mov, t_mov_cmp),
14476 tC3(movs, 1b00000, movs, 2, (RR, SH), mov, t_mov_cmp),
14477 tCE(mvn, 1e00000, mvn, 2, (RR, SH), mov, t_mvn_tst),
14478 tC3(mvns, 1f00000, mvns, 2, (RR, SH), mov, t_mvn_tst),
14479
4962c51a
MS
14480 tCE(ldr, 4100000, ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
14481 tC3(ldrb, 4500000, ldrb, 2, (RR, ADDRGLDR),ldst, t_ldst),
14482 tCE(str, 4000000, str, 2, (RR, ADDRGLDR),ldst, t_ldst),
14483 tC3(strb, 4400000, strb, 2, (RR, ADDRGLDR),ldst, t_ldst),
c19d1205 14484
f5208ef2 14485 tCE(stm, 8800000, stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
14486 tC3(stmia, 8800000, stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14487 tC3(stmea, 8800000, stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
f5208ef2 14488 tCE(ldm, 8900000, ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
14489 tC3(ldmia, 8900000, ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14490 tC3(ldmfd, 8900000, ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14491
14492 TCE(swi, f000000, df00, 1, (EXPi), swi, t_swi),
c16d2bf0 14493 TCE(svc, f000000, df00, 1, (EXPi), swi, t_swi),
0110f2b8 14494 tCE(b, a000000, b, 1, (EXPr), branch, t_branch),
39b41c9c 14495 TCE(bl, b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 14496
c19d1205 14497 /* Pseudo ops. */
e9f89963 14498 tCE(adr, 28f0000, adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac
ZW
14499 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
14500 tCE(nop, 1a00000, nop, 1, (oI255c), nop, t_nop),
c19d1205
ZW
14501
14502 /* Thumb-compatibility pseudo ops. */
14503 tCE(lsl, 1a00000, lsl, 3, (RR, oRR, SH), shift, t_shift),
14504 tC3(lsls, 1b00000, lsls, 3, (RR, oRR, SH), shift, t_shift),
14505 tCE(lsr, 1a00020, lsr, 3, (RR, oRR, SH), shift, t_shift),
14506 tC3(lsrs, 1b00020, lsrs, 3, (RR, oRR, SH), shift, t_shift),
14507 tCE(asr, 1a00040, asr, 3, (RR, oRR, SH), shift, t_shift),
2fc8bdac 14508 tC3(asrs, 1b00040, asrs, 3, (RR, oRR, SH), shift, t_shift),
c19d1205
ZW
14509 tCE(ror, 1a00060, ror, 3, (RR, oRR, SH), shift, t_shift),
14510 tC3(rors, 1b00060, rors, 3, (RR, oRR, SH), shift, t_shift),
14511 tCE(neg, 2600000, neg, 2, (RR, RR), rd_rn, t_neg),
14512 tC3(negs, 2700000, negs, 2, (RR, RR), rd_rn, t_neg),
14513 tCE(push, 92d0000, push, 1, (REGLST), push_pop, t_push_pop),
14514 tCE(pop, 8bd0000, pop, 1, (REGLST), push_pop, t_push_pop),
14515
14516#undef THUMB_VARIANT
e74cfd16 14517#define THUMB_VARIANT &arm_ext_v6
2fc8bdac 14518 TCE(cpy, 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
14519
14520 /* V1 instructions with no Thumb analogue prior to V6T2. */
14521#undef THUMB_VARIANT
e74cfd16 14522#define THUMB_VARIANT &arm_ext_v6t2
c19d1205
ZW
14523 TCE(rsb, 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
14524 TC3(rsbs, 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
14525 TCE(teq, 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
088fa78e 14526 TC3w(teqs, 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
e3cb604e 14527 CL(teqp, 130f000, 2, (RR, SH), cmp),
c19d1205
ZW
14528
14529 TC3(ldrt, 4300000, f8500e00, 2, (RR, ADDR), ldstt, t_ldstt),
3e94bf1a 14530 TC3(ldrbt, 4700000, f8100e00, 2, (RR, ADDR), ldstt, t_ldstt),
c19d1205 14531 TC3(strt, 4200000, f8400e00, 2, (RR, ADDR), ldstt, t_ldstt),
3e94bf1a 14532 TC3(strbt, 4600000, f8000e00, 2, (RR, ADDR), ldstt, t_ldstt),
c19d1205 14533
9c3c69f2
PB
14534 TC3(stmdb, 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14535 TC3(stmfd, 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 14536
9c3c69f2
PB
14537 TC3(ldmdb, 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14538 TC3(ldmea, 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
14539
14540 /* V1 instructions with no Thumb analogue at all. */
14541 CE(rsc, 0e00000, 3, (RR, oRR, SH), arit),
14542 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
14543
14544 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
14545 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
14546 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
14547 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
14548 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
14549 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
14550 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
14551 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
14552
14553#undef ARM_VARIANT
e74cfd16 14554#define ARM_VARIANT &arm_ext_v2 /* ARM 2 - multiplies. */
c19d1205 14555#undef THUMB_VARIANT
e74cfd16 14556#define THUMB_VARIANT &arm_ext_v4t
c19d1205
ZW
14557 tCE(mul, 0000090, mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
14558 tC3(muls, 0100090, muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
14559
14560#undef THUMB_VARIANT
e74cfd16 14561#define THUMB_VARIANT &arm_ext_v6t2
c19d1205
ZW
14562 TCE(mla, 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
14563 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
14564
14565 /* Generic coprocessor instructions. */
14566 TCE(cdp, e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
4962c51a
MS
14567 TCE(ldc, c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14568 TC3(ldcl, c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14569 TCE(stc, c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14570 TC3(stcl, c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
c19d1205
ZW
14571 TCE(mcr, e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
14572 TCE(mrc, e100010, ee100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
14573
14574#undef ARM_VARIANT
e74cfd16 14575#define ARM_VARIANT &arm_ext_v2s /* ARM 3 - swp instructions. */
c19d1205
ZW
14576 CE(swp, 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
14577 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
14578
14579#undef ARM_VARIANT
e74cfd16 14580#define ARM_VARIANT &arm_ext_v3 /* ARM 6 Status register instructions. */
037e8744
JB
14581 TCE(mrs, 10f0000, f3ef8000, 2, (APSR_RR, RVC_PSR), mrs, t_mrs),
14582 TCE(msr, 120f000, f3808000, 2, (RVC_PSR, RR_EXi), msr, t_msr),
c19d1205
ZW
14583
14584#undef ARM_VARIANT
e74cfd16 14585#define ARM_VARIANT &arm_ext_v3m /* ARM 7M long multiplies. */
c19d1205
ZW
14586 TCE(smull, 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
14587 CM(smull,s, 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
14588 TCE(umull, 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
14589 CM(umull,s, 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
14590 TCE(smlal, 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
14591 CM(smlal,s, 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
14592 TCE(umlal, 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
14593 CM(umlal,s, 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
14594
14595#undef ARM_VARIANT
e74cfd16 14596#define ARM_VARIANT &arm_ext_v4 /* ARM Architecture 4. */
c19d1205 14597#undef THUMB_VARIANT
e74cfd16 14598#define THUMB_VARIANT &arm_ext_v4t
4962c51a
MS
14599 tC3(ldrh, 01000b0, ldrh, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14600 tC3(strh, 00000b0, strh, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14601 tC3(ldrsh, 01000f0, ldrsh, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14602 tC3(ldrsb, 01000d0, ldrsb, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14603 tCM(ld,sh, 01000f0, ldrsh, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14604 tCM(ld,sb, 01000d0, ldrsb, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
c19d1205
ZW
14605
14606#undef ARM_VARIANT
e74cfd16 14607#define ARM_VARIANT &arm_ext_v4t_5
c19d1205
ZW
14608 /* ARM Architecture 4T. */
14609 /* Note: bx (and blx) are required on V5, even if the processor does
14610 not support Thumb. */
14611 TCE(bx, 12fff10, 4700, 1, (RR), bx, t_bx),
14612
14613#undef ARM_VARIANT
e74cfd16 14614#define ARM_VARIANT &arm_ext_v5 /* ARM Architecture 5T. */
c19d1205 14615#undef THUMB_VARIANT
e74cfd16 14616#define THUMB_VARIANT &arm_ext_v5t
c19d1205
ZW
14617 /* Note: blx has 2 variants; the .value coded here is for
14618 BLX(2). Only this variant has conditional execution. */
14619 TCE(blx, 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
14620 TUE(bkpt, 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
14621
14622#undef THUMB_VARIANT
e74cfd16 14623#define THUMB_VARIANT &arm_ext_v6t2
c19d1205 14624 TCE(clz, 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
4962c51a
MS
14625 TUF(ldc2, c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14626 TUF(ldc2l, c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14627 TUF(stc2, c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14628 TUF(stc2l, c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
c19d1205
ZW
14629 TUF(cdp2, e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
14630 TUF(mcr2, e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
14631 TUF(mrc2, e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
14632
14633#undef ARM_VARIANT
e74cfd16 14634#define ARM_VARIANT &arm_ext_v5exp /* ARM Architecture 5TExP. */
c19d1205
ZW
14635 TCE(smlabb, 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14636 TCE(smlatb, 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14637 TCE(smlabt, 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14638 TCE(smlatt, 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14639
14640 TCE(smlawb, 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14641 TCE(smlawt, 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14642
14643 TCE(smlalbb, 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
14644 TCE(smlaltb, 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
14645 TCE(smlalbt, 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
14646 TCE(smlaltt, 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
14647
14648 TCE(smulbb, 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14649 TCE(smultb, 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14650 TCE(smulbt, 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14651 TCE(smultt, 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14652
14653 TCE(smulwb, 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14654 TCE(smulwt, 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14655
14656 TCE(qadd, 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, rd_rm_rn),
14657 TCE(qdadd, 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, rd_rm_rn),
14658 TCE(qsub, 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, rd_rm_rn),
14659 TCE(qdsub, 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, rd_rm_rn),
14660
14661#undef ARM_VARIANT
e74cfd16 14662#define ARM_VARIANT &arm_ext_v5e /* ARM Architecture 5TE. */
c19d1205 14663 TUF(pld, 450f000, f810f000, 1, (ADDR), pld, t_pld),
4962c51a
MS
14664 TC3(ldrd, 00000d0, e9500000, 3, (RRnpc, oRRnpc, ADDRGLDRS), ldrd, t_ldstd),
14665 TC3(strd, 00000f0, e9400000, 3, (RRnpc, oRRnpc, ADDRGLDRS), ldrd, t_ldstd),
c19d1205
ZW
14666
14667 TCE(mcrr, c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
14668 TCE(mrrc, c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
14669
14670#undef ARM_VARIANT
e74cfd16 14671#define ARM_VARIANT &arm_ext_v5j /* ARM Architecture 5TEJ. */
c19d1205
ZW
14672 TCE(bxj, 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
14673
14674#undef ARM_VARIANT
e74cfd16 14675#define ARM_VARIANT &arm_ext_v6 /* ARM V6. */
c19d1205 14676#undef THUMB_VARIANT
e74cfd16 14677#define THUMB_VARIANT &arm_ext_v6
c19d1205
ZW
14678 TUF(cpsie, 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
14679 TUF(cpsid, 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
14680 tCE(rev, 6bf0f30, rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
14681 tCE(rev16, 6bf0fb0, rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
14682 tCE(revsh, 6ff0fb0, revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
14683 tCE(sxth, 6bf0070, sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14684 tCE(uxth, 6ff0070, uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14685 tCE(sxtb, 6af0070, sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14686 tCE(uxtb, 6ef0070, uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14687 TUF(setend, 1010000, b650, 1, (ENDI), setend, t_setend),
14688
14689#undef THUMB_VARIANT
e74cfd16 14690#define THUMB_VARIANT &arm_ext_v6t2
c19d1205
ZW
14691 TCE(ldrex, 1900f9f, e8500f00, 2, (RRnpc, ADDR), ldrex, t_ldrex),
14692 TUF(mcrr2, c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
14693 TUF(mrrc2, c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311
PB
14694
14695 TCE(ssat, 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
14696 TCE(usat, 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
14697
14698/* ARM V6 not included in V7M (eg. integer SIMD). */
14699#undef THUMB_VARIANT
14700#define THUMB_VARIANT &arm_ext_v6_notm
dfa9f0d5 14701 TUF(cps, 1020000, f3af8100, 1, (I31b), imm0, t_cps),
c19d1205
ZW
14702 TCE(pkhbt, 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
14703 TCE(pkhtb, 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
14704 TCE(qadd16, 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14705 TCE(qadd8, 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14706 TCE(qaddsubx, 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14707 TCE(qsub16, 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14708 TCE(qsub8, 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14709 TCE(qsubaddx, 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14710 TCE(sadd16, 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14711 TCE(sadd8, 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14712 TCE(saddsubx, 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14713 TCE(shadd16, 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14714 TCE(shadd8, 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14715 TCE(shaddsubx, 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14716 TCE(shsub16, 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14717 TCE(shsub8, 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14718 TCE(shsubaddx, 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14719 TCE(ssub16, 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14720 TCE(ssub8, 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14721 TCE(ssubaddx, 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14722 TCE(uadd16, 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14723 TCE(uadd8, 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14724 TCE(uaddsubx, 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14725 TCE(uhadd16, 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14726 TCE(uhadd8, 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14727 TCE(uhaddsubx, 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14728 TCE(uhsub16, 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14729 TCE(uhsub8, 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14730 TCE(uhsubaddx, 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14731 TCE(uqadd16, 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14732 TCE(uqadd8, 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14733 TCE(uqaddsubx, 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14734 TCE(uqsub16, 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14735 TCE(uqsub8, 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14736 TCE(uqsubaddx, 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14737 TCE(usub16, 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14738 TCE(usub8, 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14739 TCE(usubaddx, 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14740 TUF(rfeia, 8900a00, e990c000, 1, (RRw), rfe, rfe),
14741 UF(rfeib, 9900a00, 1, (RRw), rfe),
14742 UF(rfeda, 8100a00, 1, (RRw), rfe),
14743 TUF(rfedb, 9100a00, e810c000, 1, (RRw), rfe, rfe),
14744 TUF(rfefd, 8900a00, e990c000, 1, (RRw), rfe, rfe),
14745 UF(rfefa, 9900a00, 1, (RRw), rfe),
14746 UF(rfeea, 8100a00, 1, (RRw), rfe),
14747 TUF(rfeed, 9100a00, e810c000, 1, (RRw), rfe, rfe),
14748 TCE(sxtah, 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14749 TCE(sxtab16, 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14750 TCE(sxtab, 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14751 TCE(sxtb16, 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14752 TCE(uxtah, 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14753 TCE(uxtab16, 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14754 TCE(uxtab, 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14755 TCE(uxtb16, 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
f1022c90 14756 TCE(sel, 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
c19d1205
ZW
14757 TCE(smlad, 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14758 TCE(smladx, 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14759 TCE(smlald, 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
14760 TCE(smlaldx, 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
14761 TCE(smlsd, 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14762 TCE(smlsdx, 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14763 TCE(smlsld, 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
14764 TCE(smlsldx, 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
14765 TCE(smmla, 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14766 TCE(smmlar, 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14767 TCE(smmls, 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14768 TCE(smmlsr, 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14769 TCE(smmul, 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14770 TCE(smmulr, 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14771 TCE(smuad, 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14772 TCE(smuadx, 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14773 TCE(smusd, 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14774 TCE(smusdx, 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14775 TUF(srsia, 8cd0500, e980c000, 1, (I31w), srs, srs),
14776 UF(srsib, 9cd0500, 1, (I31w), srs),
14777 UF(srsda, 84d0500, 1, (I31w), srs),
14778 TUF(srsdb, 94d0500, e800c000, 1, (I31w), srs, srs),
c19d1205
ZW
14779 TCE(ssat16, 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
14780 TCE(strex, 1800f90, e8400000, 3, (RRnpc, RRnpc, ADDR), strex, t_strex),
14781 TCE(umaal, 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
14782 TCE(usad8, 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14783 TCE(usada8, 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
c19d1205
ZW
14784 TCE(usat16, 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
14785
14786#undef ARM_VARIANT
e74cfd16 14787#define ARM_VARIANT &arm_ext_v6k
c19d1205 14788#undef THUMB_VARIANT
e74cfd16 14789#define THUMB_VARIANT &arm_ext_v6k
c19d1205
ZW
14790 tCE(yield, 320f001, yield, 0, (), noargs, t_hint),
14791 tCE(wfe, 320f002, wfe, 0, (), noargs, t_hint),
14792 tCE(wfi, 320f003, wfi, 0, (), noargs, t_hint),
14793 tCE(sev, 320f004, sev, 0, (), noargs, t_hint),
14794
ebdca51a
PB
14795#undef THUMB_VARIANT
14796#define THUMB_VARIANT &arm_ext_v6_notm
14797 TCE(ldrexd, 1b00f9f, e8d0007f, 3, (RRnpc, oRRnpc, RRnpcb), ldrexd, t_ldrexd),
14798 TCE(strexd, 1a00f90, e8c00070, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb), strexd, t_strexd),
14799
c19d1205 14800#undef THUMB_VARIANT
e74cfd16 14801#define THUMB_VARIANT &arm_ext_v6t2
c19d1205
ZW
14802 TCE(ldrexb, 1d00f9f, e8d00f4f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
14803 TCE(ldrexh, 1f00f9f, e8d00f5f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
c19d1205
ZW
14804 TCE(strexb, 1c00f90, e8c00f40, 3, (RRnpc, RRnpc, ADDR), strex, rm_rd_rn),
14805 TCE(strexh, 1e00f90, e8c00f50, 3, (RRnpc, RRnpc, ADDR), strex, rm_rd_rn),
c19d1205
ZW
14806 TUF(clrex, 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
14807
14808#undef ARM_VARIANT
e74cfd16 14809#define ARM_VARIANT &arm_ext_v6z
3eb17e6b 14810 TCE(smc, 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205
ZW
14811
14812#undef ARM_VARIANT
e74cfd16 14813#define ARM_VARIANT &arm_ext_v6t2
c19d1205
ZW
14814 TCE(bfc, 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
14815 TCE(bfi, 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
14816 TCE(sbfx, 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
14817 TCE(ubfx, 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
14818
14819 TCE(mls, 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
b6895b4f
PB
14820 TCE(movw, 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
14821 TCE(movt, 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
401a54cf 14822 TCE(rbit, 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205
ZW
14823
14824 TC3(ldrht, 03000b0, f8300e00, 2, (RR, ADDR), ldsttv4, t_ldstt),
14825 TC3(ldrsht, 03000f0, f9300e00, 2, (RR, ADDR), ldsttv4, t_ldstt),
14826 TC3(ldrsbt, 03000d0, f9100e00, 2, (RR, ADDR), ldsttv4, t_ldstt),
14827 TC3(strht, 02000b0, f8200e00, 2, (RR, ADDR), ldsttv4, t_ldstt),
14828
14829 UT(cbnz, b900, 2, (RR, EXP), t_czb),
14830 UT(cbz, b100, 2, (RR, EXP), t_czb),
f91e006c
PB
14831 /* ARM does not really have an IT instruction, so always allow it. */
14832#undef ARM_VARIANT
14833#define ARM_VARIANT &arm_ext_v1
c19d1205
ZW
14834 TUE(it, 0, bf08, 1, (COND), it, t_it),
14835 TUE(itt, 0, bf0c, 1, (COND), it, t_it),
14836 TUE(ite, 0, bf04, 1, (COND), it, t_it),
14837 TUE(ittt, 0, bf0e, 1, (COND), it, t_it),
14838 TUE(itet, 0, bf06, 1, (COND), it, t_it),
14839 TUE(itte, 0, bf0a, 1, (COND), it, t_it),
14840 TUE(itee, 0, bf02, 1, (COND), it, t_it),
14841 TUE(itttt, 0, bf0f, 1, (COND), it, t_it),
14842 TUE(itett, 0, bf07, 1, (COND), it, t_it),
14843 TUE(ittet, 0, bf0b, 1, (COND), it, t_it),
14844 TUE(iteet, 0, bf03, 1, (COND), it, t_it),
14845 TUE(ittte, 0, bf0d, 1, (COND), it, t_it),
14846 TUE(itete, 0, bf05, 1, (COND), it, t_it),
14847 TUE(ittee, 0, bf09, 1, (COND), it, t_it),
14848 TUE(iteee, 0, bf01, 1, (COND), it, t_it),
14849
92e90b6e
PB
14850 /* Thumb2 only instructions. */
14851#undef ARM_VARIANT
e74cfd16 14852#define ARM_VARIANT NULL
92e90b6e
PB
14853
14854 TCE(addw, 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
14855 TCE(subw, 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
14856 TCE(tbb, 0, e8d0f000, 1, (TB), 0, t_tb),
14857 TCE(tbh, 0, e8d0f010, 1, (TB), 0, t_tb),
14858
62b3e311
PB
14859 /* Thumb-2 hardware division instructions (R and M profiles only). */
14860#undef THUMB_VARIANT
14861#define THUMB_VARIANT &arm_ext_div
14862 TCE(sdiv, 0, fb90f0f0, 3, (RR, oRR, RR), 0, t_div),
14863 TCE(udiv, 0, fbb0f0f0, 3, (RR, oRR, RR), 0, t_div),
14864
14865 /* ARM V7 instructions. */
14866#undef ARM_VARIANT
14867#define ARM_VARIANT &arm_ext_v7
14868#undef THUMB_VARIANT
14869#define THUMB_VARIANT &arm_ext_v7
14870 TUF(pli, 450f000, f910f000, 1, (ADDR), pli, t_pld),
14871 TCE(dbg, 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
14872 TUF(dmb, 57ff050, f3bf8f50, 1, (oBARRIER), barrier, t_barrier),
14873 TUF(dsb, 57ff040, f3bf8f40, 1, (oBARRIER), barrier, t_barrier),
14874 TUF(isb, 57ff060, f3bf8f60, 1, (oBARRIER), barrier, t_barrier),
14875
c19d1205 14876#undef ARM_VARIANT
e74cfd16 14877#define ARM_VARIANT &fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
8f06b2d8
PB
14878 cCE(wfs, e200110, 1, (RR), rd),
14879 cCE(rfs, e300110, 1, (RR), rd),
14880 cCE(wfc, e400110, 1, (RR), rd),
14881 cCE(rfc, e500110, 1, (RR), rd),
14882
4962c51a
MS
14883 cCL(ldfs, c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
14884 cCL(ldfd, c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
14885 cCL(ldfe, c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
14886 cCL(ldfp, c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
e3cb604e 14887
4962c51a
MS
14888 cCL(stfs, c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
14889 cCL(stfd, c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
14890 cCL(stfe, c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
14891 cCL(stfp, c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
e3cb604e
PB
14892
14893 cCL(mvfs, e008100, 2, (RF, RF_IF), rd_rm),
14894 cCL(mvfsp, e008120, 2, (RF, RF_IF), rd_rm),
14895 cCL(mvfsm, e008140, 2, (RF, RF_IF), rd_rm),
14896 cCL(mvfsz, e008160, 2, (RF, RF_IF), rd_rm),
14897 cCL(mvfd, e008180, 2, (RF, RF_IF), rd_rm),
14898 cCL(mvfdp, e0081a0, 2, (RF, RF_IF), rd_rm),
14899 cCL(mvfdm, e0081c0, 2, (RF, RF_IF), rd_rm),
14900 cCL(mvfdz, e0081e0, 2, (RF, RF_IF), rd_rm),
14901 cCL(mvfe, e088100, 2, (RF, RF_IF), rd_rm),
14902 cCL(mvfep, e088120, 2, (RF, RF_IF), rd_rm),
14903 cCL(mvfem, e088140, 2, (RF, RF_IF), rd_rm),
14904 cCL(mvfez, e088160, 2, (RF, RF_IF), rd_rm),
14905
14906 cCL(mnfs, e108100, 2, (RF, RF_IF), rd_rm),
14907 cCL(mnfsp, e108120, 2, (RF, RF_IF), rd_rm),
14908 cCL(mnfsm, e108140, 2, (RF, RF_IF), rd_rm),
14909 cCL(mnfsz, e108160, 2, (RF, RF_IF), rd_rm),
14910 cCL(mnfd, e108180, 2, (RF, RF_IF), rd_rm),
14911 cCL(mnfdp, e1081a0, 2, (RF, RF_IF), rd_rm),
14912 cCL(mnfdm, e1081c0, 2, (RF, RF_IF), rd_rm),
14913 cCL(mnfdz, e1081e0, 2, (RF, RF_IF), rd_rm),
14914 cCL(mnfe, e188100, 2, (RF, RF_IF), rd_rm),
14915 cCL(mnfep, e188120, 2, (RF, RF_IF), rd_rm),
14916 cCL(mnfem, e188140, 2, (RF, RF_IF), rd_rm),
14917 cCL(mnfez, e188160, 2, (RF, RF_IF), rd_rm),
14918
14919 cCL(abss, e208100, 2, (RF, RF_IF), rd_rm),
14920 cCL(abssp, e208120, 2, (RF, RF_IF), rd_rm),
14921 cCL(abssm, e208140, 2, (RF, RF_IF), rd_rm),
14922 cCL(abssz, e208160, 2, (RF, RF_IF), rd_rm),
14923 cCL(absd, e208180, 2, (RF, RF_IF), rd_rm),
14924 cCL(absdp, e2081a0, 2, (RF, RF_IF), rd_rm),
14925 cCL(absdm, e2081c0, 2, (RF, RF_IF), rd_rm),
14926 cCL(absdz, e2081e0, 2, (RF, RF_IF), rd_rm),
14927 cCL(abse, e288100, 2, (RF, RF_IF), rd_rm),
14928 cCL(absep, e288120, 2, (RF, RF_IF), rd_rm),
14929 cCL(absem, e288140, 2, (RF, RF_IF), rd_rm),
14930 cCL(absez, e288160, 2, (RF, RF_IF), rd_rm),
14931
14932 cCL(rnds, e308100, 2, (RF, RF_IF), rd_rm),
14933 cCL(rndsp, e308120, 2, (RF, RF_IF), rd_rm),
14934 cCL(rndsm, e308140, 2, (RF, RF_IF), rd_rm),
14935 cCL(rndsz, e308160, 2, (RF, RF_IF), rd_rm),
14936 cCL(rndd, e308180, 2, (RF, RF_IF), rd_rm),
14937 cCL(rnddp, e3081a0, 2, (RF, RF_IF), rd_rm),
14938 cCL(rnddm, e3081c0, 2, (RF, RF_IF), rd_rm),
14939 cCL(rnddz, e3081e0, 2, (RF, RF_IF), rd_rm),
14940 cCL(rnde, e388100, 2, (RF, RF_IF), rd_rm),
14941 cCL(rndep, e388120, 2, (RF, RF_IF), rd_rm),
14942 cCL(rndem, e388140, 2, (RF, RF_IF), rd_rm),
14943 cCL(rndez, e388160, 2, (RF, RF_IF), rd_rm),
14944
14945 cCL(sqts, e408100, 2, (RF, RF_IF), rd_rm),
14946 cCL(sqtsp, e408120, 2, (RF, RF_IF), rd_rm),
14947 cCL(sqtsm, e408140, 2, (RF, RF_IF), rd_rm),
14948 cCL(sqtsz, e408160, 2, (RF, RF_IF), rd_rm),
14949 cCL(sqtd, e408180, 2, (RF, RF_IF), rd_rm),
14950 cCL(sqtdp, e4081a0, 2, (RF, RF_IF), rd_rm),
14951 cCL(sqtdm, e4081c0, 2, (RF, RF_IF), rd_rm),
14952 cCL(sqtdz, e4081e0, 2, (RF, RF_IF), rd_rm),
14953 cCL(sqte, e488100, 2, (RF, RF_IF), rd_rm),
14954 cCL(sqtep, e488120, 2, (RF, RF_IF), rd_rm),
14955 cCL(sqtem, e488140, 2, (RF, RF_IF), rd_rm),
14956 cCL(sqtez, e488160, 2, (RF, RF_IF), rd_rm),
14957
14958 cCL(logs, e508100, 2, (RF, RF_IF), rd_rm),
14959 cCL(logsp, e508120, 2, (RF, RF_IF), rd_rm),
14960 cCL(logsm, e508140, 2, (RF, RF_IF), rd_rm),
14961 cCL(logsz, e508160, 2, (RF, RF_IF), rd_rm),
14962 cCL(logd, e508180, 2, (RF, RF_IF), rd_rm),
14963 cCL(logdp, e5081a0, 2, (RF, RF_IF), rd_rm),
14964 cCL(logdm, e5081c0, 2, (RF, RF_IF), rd_rm),
14965 cCL(logdz, e5081e0, 2, (RF, RF_IF), rd_rm),
14966 cCL(loge, e588100, 2, (RF, RF_IF), rd_rm),
14967 cCL(logep, e588120, 2, (RF, RF_IF), rd_rm),
14968 cCL(logem, e588140, 2, (RF, RF_IF), rd_rm),
14969 cCL(logez, e588160, 2, (RF, RF_IF), rd_rm),
14970
14971 cCL(lgns, e608100, 2, (RF, RF_IF), rd_rm),
14972 cCL(lgnsp, e608120, 2, (RF, RF_IF), rd_rm),
14973 cCL(lgnsm, e608140, 2, (RF, RF_IF), rd_rm),
14974 cCL(lgnsz, e608160, 2, (RF, RF_IF), rd_rm),
14975 cCL(lgnd, e608180, 2, (RF, RF_IF), rd_rm),
14976 cCL(lgndp, e6081a0, 2, (RF, RF_IF), rd_rm),
14977 cCL(lgndm, e6081c0, 2, (RF, RF_IF), rd_rm),
14978 cCL(lgndz, e6081e0, 2, (RF, RF_IF), rd_rm),
14979 cCL(lgne, e688100, 2, (RF, RF_IF), rd_rm),
14980 cCL(lgnep, e688120, 2, (RF, RF_IF), rd_rm),
14981 cCL(lgnem, e688140, 2, (RF, RF_IF), rd_rm),
14982 cCL(lgnez, e688160, 2, (RF, RF_IF), rd_rm),
14983
14984 cCL(exps, e708100, 2, (RF, RF_IF), rd_rm),
14985 cCL(expsp, e708120, 2, (RF, RF_IF), rd_rm),
14986 cCL(expsm, e708140, 2, (RF, RF_IF), rd_rm),
14987 cCL(expsz, e708160, 2, (RF, RF_IF), rd_rm),
14988 cCL(expd, e708180, 2, (RF, RF_IF), rd_rm),
14989 cCL(expdp, e7081a0, 2, (RF, RF_IF), rd_rm),
14990 cCL(expdm, e7081c0, 2, (RF, RF_IF), rd_rm),
14991 cCL(expdz, e7081e0, 2, (RF, RF_IF), rd_rm),
14992 cCL(expe, e788100, 2, (RF, RF_IF), rd_rm),
14993 cCL(expep, e788120, 2, (RF, RF_IF), rd_rm),
14994 cCL(expem, e788140, 2, (RF, RF_IF), rd_rm),
14995 cCL(expdz, e788160, 2, (RF, RF_IF), rd_rm),
14996
14997 cCL(sins, e808100, 2, (RF, RF_IF), rd_rm),
14998 cCL(sinsp, e808120, 2, (RF, RF_IF), rd_rm),
14999 cCL(sinsm, e808140, 2, (RF, RF_IF), rd_rm),
15000 cCL(sinsz, e808160, 2, (RF, RF_IF), rd_rm),
15001 cCL(sind, e808180, 2, (RF, RF_IF), rd_rm),
15002 cCL(sindp, e8081a0, 2, (RF, RF_IF), rd_rm),
15003 cCL(sindm, e8081c0, 2, (RF, RF_IF), rd_rm),
15004 cCL(sindz, e8081e0, 2, (RF, RF_IF), rd_rm),
15005 cCL(sine, e888100, 2, (RF, RF_IF), rd_rm),
15006 cCL(sinep, e888120, 2, (RF, RF_IF), rd_rm),
15007 cCL(sinem, e888140, 2, (RF, RF_IF), rd_rm),
15008 cCL(sinez, e888160, 2, (RF, RF_IF), rd_rm),
15009
15010 cCL(coss, e908100, 2, (RF, RF_IF), rd_rm),
15011 cCL(cossp, e908120, 2, (RF, RF_IF), rd_rm),
15012 cCL(cossm, e908140, 2, (RF, RF_IF), rd_rm),
15013 cCL(cossz, e908160, 2, (RF, RF_IF), rd_rm),
15014 cCL(cosd, e908180, 2, (RF, RF_IF), rd_rm),
15015 cCL(cosdp, e9081a0, 2, (RF, RF_IF), rd_rm),
15016 cCL(cosdm, e9081c0, 2, (RF, RF_IF), rd_rm),
15017 cCL(cosdz, e9081e0, 2, (RF, RF_IF), rd_rm),
15018 cCL(cose, e988100, 2, (RF, RF_IF), rd_rm),
15019 cCL(cosep, e988120, 2, (RF, RF_IF), rd_rm),
15020 cCL(cosem, e988140, 2, (RF, RF_IF), rd_rm),
15021 cCL(cosez, e988160, 2, (RF, RF_IF), rd_rm),
15022
15023 cCL(tans, ea08100, 2, (RF, RF_IF), rd_rm),
15024 cCL(tansp, ea08120, 2, (RF, RF_IF), rd_rm),
15025 cCL(tansm, ea08140, 2, (RF, RF_IF), rd_rm),
15026 cCL(tansz, ea08160, 2, (RF, RF_IF), rd_rm),
15027 cCL(tand, ea08180, 2, (RF, RF_IF), rd_rm),
15028 cCL(tandp, ea081a0, 2, (RF, RF_IF), rd_rm),
15029 cCL(tandm, ea081c0, 2, (RF, RF_IF), rd_rm),
15030 cCL(tandz, ea081e0, 2, (RF, RF_IF), rd_rm),
15031 cCL(tane, ea88100, 2, (RF, RF_IF), rd_rm),
15032 cCL(tanep, ea88120, 2, (RF, RF_IF), rd_rm),
15033 cCL(tanem, ea88140, 2, (RF, RF_IF), rd_rm),
15034 cCL(tanez, ea88160, 2, (RF, RF_IF), rd_rm),
15035
15036 cCL(asns, eb08100, 2, (RF, RF_IF), rd_rm),
15037 cCL(asnsp, eb08120, 2, (RF, RF_IF), rd_rm),
15038 cCL(asnsm, eb08140, 2, (RF, RF_IF), rd_rm),
15039 cCL(asnsz, eb08160, 2, (RF, RF_IF), rd_rm),
15040 cCL(asnd, eb08180, 2, (RF, RF_IF), rd_rm),
15041 cCL(asndp, eb081a0, 2, (RF, RF_IF), rd_rm),
15042 cCL(asndm, eb081c0, 2, (RF, RF_IF), rd_rm),
15043 cCL(asndz, eb081e0, 2, (RF, RF_IF), rd_rm),
15044 cCL(asne, eb88100, 2, (RF, RF_IF), rd_rm),
15045 cCL(asnep, eb88120, 2, (RF, RF_IF), rd_rm),
15046 cCL(asnem, eb88140, 2, (RF, RF_IF), rd_rm),
15047 cCL(asnez, eb88160, 2, (RF, RF_IF), rd_rm),
15048
15049 cCL(acss, ec08100, 2, (RF, RF_IF), rd_rm),
15050 cCL(acssp, ec08120, 2, (RF, RF_IF), rd_rm),
15051 cCL(acssm, ec08140, 2, (RF, RF_IF), rd_rm),
15052 cCL(acssz, ec08160, 2, (RF, RF_IF), rd_rm),
15053 cCL(acsd, ec08180, 2, (RF, RF_IF), rd_rm),
15054 cCL(acsdp, ec081a0, 2, (RF, RF_IF), rd_rm),
15055 cCL(acsdm, ec081c0, 2, (RF, RF_IF), rd_rm),
15056 cCL(acsdz, ec081e0, 2, (RF, RF_IF), rd_rm),
15057 cCL(acse, ec88100, 2, (RF, RF_IF), rd_rm),
15058 cCL(acsep, ec88120, 2, (RF, RF_IF), rd_rm),
15059 cCL(acsem, ec88140, 2, (RF, RF_IF), rd_rm),
15060 cCL(acsez, ec88160, 2, (RF, RF_IF), rd_rm),
15061
15062 cCL(atns, ed08100, 2, (RF, RF_IF), rd_rm),
15063 cCL(atnsp, ed08120, 2, (RF, RF_IF), rd_rm),
15064 cCL(atnsm, ed08140, 2, (RF, RF_IF), rd_rm),
15065 cCL(atnsz, ed08160, 2, (RF, RF_IF), rd_rm),
15066 cCL(atnd, ed08180, 2, (RF, RF_IF), rd_rm),
15067 cCL(atndp, ed081a0, 2, (RF, RF_IF), rd_rm),
15068 cCL(atndm, ed081c0, 2, (RF, RF_IF), rd_rm),
15069 cCL(atndz, ed081e0, 2, (RF, RF_IF), rd_rm),
15070 cCL(atne, ed88100, 2, (RF, RF_IF), rd_rm),
15071 cCL(atnep, ed88120, 2, (RF, RF_IF), rd_rm),
15072 cCL(atnem, ed88140, 2, (RF, RF_IF), rd_rm),
15073 cCL(atnez, ed88160, 2, (RF, RF_IF), rd_rm),
15074
15075 cCL(urds, ee08100, 2, (RF, RF_IF), rd_rm),
15076 cCL(urdsp, ee08120, 2, (RF, RF_IF), rd_rm),
15077 cCL(urdsm, ee08140, 2, (RF, RF_IF), rd_rm),
15078 cCL(urdsz, ee08160, 2, (RF, RF_IF), rd_rm),
15079 cCL(urdd, ee08180, 2, (RF, RF_IF), rd_rm),
15080 cCL(urddp, ee081a0, 2, (RF, RF_IF), rd_rm),
15081 cCL(urddm, ee081c0, 2, (RF, RF_IF), rd_rm),
15082 cCL(urddz, ee081e0, 2, (RF, RF_IF), rd_rm),
15083 cCL(urde, ee88100, 2, (RF, RF_IF), rd_rm),
15084 cCL(urdep, ee88120, 2, (RF, RF_IF), rd_rm),
15085 cCL(urdem, ee88140, 2, (RF, RF_IF), rd_rm),
15086 cCL(urdez, ee88160, 2, (RF, RF_IF), rd_rm),
15087
15088 cCL(nrms, ef08100, 2, (RF, RF_IF), rd_rm),
15089 cCL(nrmsp, ef08120, 2, (RF, RF_IF), rd_rm),
15090 cCL(nrmsm, ef08140, 2, (RF, RF_IF), rd_rm),
15091 cCL(nrmsz, ef08160, 2, (RF, RF_IF), rd_rm),
15092 cCL(nrmd, ef08180, 2, (RF, RF_IF), rd_rm),
15093 cCL(nrmdp, ef081a0, 2, (RF, RF_IF), rd_rm),
15094 cCL(nrmdm, ef081c0, 2, (RF, RF_IF), rd_rm),
15095 cCL(nrmdz, ef081e0, 2, (RF, RF_IF), rd_rm),
15096 cCL(nrme, ef88100, 2, (RF, RF_IF), rd_rm),
15097 cCL(nrmep, ef88120, 2, (RF, RF_IF), rd_rm),
15098 cCL(nrmem, ef88140, 2, (RF, RF_IF), rd_rm),
15099 cCL(nrmez, ef88160, 2, (RF, RF_IF), rd_rm),
15100
15101 cCL(adfs, e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
15102 cCL(adfsp, e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
15103 cCL(adfsm, e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
15104 cCL(adfsz, e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
15105 cCL(adfd, e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
15106 cCL(adfdp, e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15107 cCL(adfdm, e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15108 cCL(adfdz, e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15109 cCL(adfe, e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
15110 cCL(adfep, e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
15111 cCL(adfem, e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
15112 cCL(adfez, e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
15113
15114 cCL(sufs, e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
15115 cCL(sufsp, e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
15116 cCL(sufsm, e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
15117 cCL(sufsz, e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
15118 cCL(sufd, e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
15119 cCL(sufdp, e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15120 cCL(sufdm, e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15121 cCL(sufdz, e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15122 cCL(sufe, e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
15123 cCL(sufep, e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
15124 cCL(sufem, e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
15125 cCL(sufez, e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
15126
15127 cCL(rsfs, e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
15128 cCL(rsfsp, e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
15129 cCL(rsfsm, e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
15130 cCL(rsfsz, e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
15131 cCL(rsfd, e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
15132 cCL(rsfdp, e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15133 cCL(rsfdm, e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15134 cCL(rsfdz, e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15135 cCL(rsfe, e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
15136 cCL(rsfep, e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
15137 cCL(rsfem, e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
15138 cCL(rsfez, e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
15139
15140 cCL(mufs, e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
15141 cCL(mufsp, e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
15142 cCL(mufsm, e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
15143 cCL(mufsz, e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
15144 cCL(mufd, e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
15145 cCL(mufdp, e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15146 cCL(mufdm, e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15147 cCL(mufdz, e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15148 cCL(mufe, e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
15149 cCL(mufep, e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
15150 cCL(mufem, e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
15151 cCL(mufez, e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
15152
15153 cCL(dvfs, e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
15154 cCL(dvfsp, e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
15155 cCL(dvfsm, e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
15156 cCL(dvfsz, e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
15157 cCL(dvfd, e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
15158 cCL(dvfdp, e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15159 cCL(dvfdm, e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15160 cCL(dvfdz, e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15161 cCL(dvfe, e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
15162 cCL(dvfep, e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
15163 cCL(dvfem, e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
15164 cCL(dvfez, e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
15165
15166 cCL(rdfs, e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
15167 cCL(rdfsp, e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
15168 cCL(rdfsm, e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
15169 cCL(rdfsz, e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
15170 cCL(rdfd, e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
15171 cCL(rdfdp, e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15172 cCL(rdfdm, e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15173 cCL(rdfdz, e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15174 cCL(rdfe, e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
15175 cCL(rdfep, e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
15176 cCL(rdfem, e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
15177 cCL(rdfez, e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
15178
15179 cCL(pows, e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
15180 cCL(powsp, e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
15181 cCL(powsm, e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
15182 cCL(powsz, e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
15183 cCL(powd, e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
15184 cCL(powdp, e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15185 cCL(powdm, e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15186 cCL(powdz, e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15187 cCL(powe, e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
15188 cCL(powep, e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
15189 cCL(powem, e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
15190 cCL(powez, e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
15191
15192 cCL(rpws, e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
15193 cCL(rpwsp, e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
15194 cCL(rpwsm, e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
15195 cCL(rpwsz, e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
15196 cCL(rpwd, e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
15197 cCL(rpwdp, e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15198 cCL(rpwdm, e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15199 cCL(rpwdz, e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15200 cCL(rpwe, e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
15201 cCL(rpwep, e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
15202 cCL(rpwem, e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
15203 cCL(rpwez, e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
15204
15205 cCL(rmfs, e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
15206 cCL(rmfsp, e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
15207 cCL(rmfsm, e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
15208 cCL(rmfsz, e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
15209 cCL(rmfd, e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
15210 cCL(rmfdp, e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15211 cCL(rmfdm, e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15212 cCL(rmfdz, e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15213 cCL(rmfe, e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
15214 cCL(rmfep, e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
15215 cCL(rmfem, e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
15216 cCL(rmfez, e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
15217
15218 cCL(fmls, e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
15219 cCL(fmlsp, e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
15220 cCL(fmlsm, e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
15221 cCL(fmlsz, e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
15222 cCL(fmld, e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
15223 cCL(fmldp, e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15224 cCL(fmldm, e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15225 cCL(fmldz, e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15226 cCL(fmle, e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
15227 cCL(fmlep, e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
15228 cCL(fmlem, e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
15229 cCL(fmlez, e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
15230
15231 cCL(fdvs, ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
15232 cCL(fdvsp, ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
15233 cCL(fdvsm, ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
15234 cCL(fdvsz, ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
15235 cCL(fdvd, ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
15236 cCL(fdvdp, ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15237 cCL(fdvdm, ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15238 cCL(fdvdz, ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15239 cCL(fdve, ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
15240 cCL(fdvep, ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
15241 cCL(fdvem, ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
15242 cCL(fdvez, ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
15243
15244 cCL(frds, eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
15245 cCL(frdsp, eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
15246 cCL(frdsm, eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
15247 cCL(frdsz, eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
15248 cCL(frdd, eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
15249 cCL(frddp, eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15250 cCL(frddm, eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15251 cCL(frddz, eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15252 cCL(frde, eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
15253 cCL(frdep, eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
15254 cCL(frdem, eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
15255 cCL(frdez, eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
15256
15257 cCL(pols, ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
15258 cCL(polsp, ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
15259 cCL(polsm, ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
15260 cCL(polsz, ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
15261 cCL(pold, ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
15262 cCL(poldp, ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15263 cCL(poldm, ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15264 cCL(poldz, ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15265 cCL(pole, ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
15266 cCL(polep, ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
15267 cCL(polem, ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
15268 cCL(polez, ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
8f06b2d8
PB
15269
15270 cCE(cmf, e90f110, 2, (RF, RF_IF), fpa_cmp),
c19d1205 15271 C3E(cmfe, ed0f110, 2, (RF, RF_IF), fpa_cmp),
8f06b2d8 15272 cCE(cnf, eb0f110, 2, (RF, RF_IF), fpa_cmp),
c19d1205
ZW
15273 C3E(cnfe, ef0f110, 2, (RF, RF_IF), fpa_cmp),
15274
e3cb604e
PB
15275 cCL(flts, e000110, 2, (RF, RR), rn_rd),
15276 cCL(fltsp, e000130, 2, (RF, RR), rn_rd),
15277 cCL(fltsm, e000150, 2, (RF, RR), rn_rd),
15278 cCL(fltsz, e000170, 2, (RF, RR), rn_rd),
15279 cCL(fltd, e000190, 2, (RF, RR), rn_rd),
15280 cCL(fltdp, e0001b0, 2, (RF, RR), rn_rd),
15281 cCL(fltdm, e0001d0, 2, (RF, RR), rn_rd),
15282 cCL(fltdz, e0001f0, 2, (RF, RR), rn_rd),
15283 cCL(flte, e080110, 2, (RF, RR), rn_rd),
15284 cCL(fltep, e080130, 2, (RF, RR), rn_rd),
15285 cCL(fltem, e080150, 2, (RF, RR), rn_rd),
15286 cCL(fltez, e080170, 2, (RF, RR), rn_rd),
b99bd4ef 15287
c19d1205
ZW
15288 /* The implementation of the FIX instruction is broken on some
15289 assemblers, in that it accepts a precision specifier as well as a
15290 rounding specifier, despite the fact that this is meaningless.
15291 To be more compatible, we accept it as well, though of course it
15292 does not set any bits. */
8f06b2d8 15293 cCE(fix, e100110, 2, (RR, RF), rd_rm),
e3cb604e
PB
15294 cCL(fixp, e100130, 2, (RR, RF), rd_rm),
15295 cCL(fixm, e100150, 2, (RR, RF), rd_rm),
15296 cCL(fixz, e100170, 2, (RR, RF), rd_rm),
15297 cCL(fixsp, e100130, 2, (RR, RF), rd_rm),
15298 cCL(fixsm, e100150, 2, (RR, RF), rd_rm),
15299 cCL(fixsz, e100170, 2, (RR, RF), rd_rm),
15300 cCL(fixdp, e100130, 2, (RR, RF), rd_rm),
15301 cCL(fixdm, e100150, 2, (RR, RF), rd_rm),
15302 cCL(fixdz, e100170, 2, (RR, RF), rd_rm),
15303 cCL(fixep, e100130, 2, (RR, RF), rd_rm),
15304 cCL(fixem, e100150, 2, (RR, RF), rd_rm),
15305 cCL(fixez, e100170, 2, (RR, RF), rd_rm),
bfae80f2 15306
c19d1205
ZW
15307 /* Instructions that were new with the real FPA, call them V2. */
15308#undef ARM_VARIANT
e74cfd16 15309#define ARM_VARIANT &fpu_fpa_ext_v2
8f06b2d8 15310 cCE(lfm, c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
e3cb604e
PB
15311 cCL(lfmfd, c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
15312 cCL(lfmea, d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
8f06b2d8 15313 cCE(sfm, c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
e3cb604e
PB
15314 cCL(sfmfd, d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
15315 cCL(sfmea, c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205
ZW
15316
15317#undef ARM_VARIANT
e74cfd16 15318#define ARM_VARIANT &fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
c19d1205 15319 /* Moves and type conversions. */
8f06b2d8
PB
15320 cCE(fcpys, eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
15321 cCE(fmrs, e100a10, 2, (RR, RVS), vfp_reg_from_sp),
15322 cCE(fmsr, e000a10, 2, (RVS, RR), vfp_sp_from_reg),
15323 cCE(fmstat, ef1fa10, 0, (), noargs),
15324 cCE(fsitos, eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
15325 cCE(fuitos, eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
15326 cCE(ftosis, ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
15327 cCE(ftosizs, ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
15328 cCE(ftouis, ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
15329 cCE(ftouizs, ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
15330 cCE(fmrx, ef00a10, 2, (RR, RVC), rd_rn),
15331 cCE(fmxr, ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
15332
15333 /* Memory operations. */
4962c51a
MS
15334 cCE(flds, d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
15335 cCE(fsts, d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
8f06b2d8
PB
15336 cCE(fldmias, c900a00, 2, (RRw, VRSLST), vfp_sp_ldstmia),
15337 cCE(fldmfds, c900a00, 2, (RRw, VRSLST), vfp_sp_ldstmia),
15338 cCE(fldmdbs, d300a00, 2, (RRw, VRSLST), vfp_sp_ldstmdb),
15339 cCE(fldmeas, d300a00, 2, (RRw, VRSLST), vfp_sp_ldstmdb),
15340 cCE(fldmiax, c900b00, 2, (RRw, VRDLST), vfp_xp_ldstmia),
15341 cCE(fldmfdx, c900b00, 2, (RRw, VRDLST), vfp_xp_ldstmia),
15342 cCE(fldmdbx, d300b00, 2, (RRw, VRDLST), vfp_xp_ldstmdb),
15343 cCE(fldmeax, d300b00, 2, (RRw, VRDLST), vfp_xp_ldstmdb),
15344 cCE(fstmias, c800a00, 2, (RRw, VRSLST), vfp_sp_ldstmia),
15345 cCE(fstmeas, c800a00, 2, (RRw, VRSLST), vfp_sp_ldstmia),
15346 cCE(fstmdbs, d200a00, 2, (RRw, VRSLST), vfp_sp_ldstmdb),
15347 cCE(fstmfds, d200a00, 2, (RRw, VRSLST), vfp_sp_ldstmdb),
15348 cCE(fstmiax, c800b00, 2, (RRw, VRDLST), vfp_xp_ldstmia),
15349 cCE(fstmeax, c800b00, 2, (RRw, VRDLST), vfp_xp_ldstmia),
15350 cCE(fstmdbx, d200b00, 2, (RRw, VRDLST), vfp_xp_ldstmdb),
15351 cCE(fstmfdx, d200b00, 2, (RRw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 15352
c19d1205 15353 /* Monadic operations. */
8f06b2d8
PB
15354 cCE(fabss, eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
15355 cCE(fnegs, eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
15356 cCE(fsqrts, eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
15357
15358 /* Dyadic operations. */
8f06b2d8
PB
15359 cCE(fadds, e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15360 cCE(fsubs, e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15361 cCE(fmuls, e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15362 cCE(fdivs, e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15363 cCE(fmacs, e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15364 cCE(fmscs, e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15365 cCE(fnmuls, e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15366 cCE(fnmacs, e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15367 cCE(fnmscs, e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 15368
c19d1205 15369 /* Comparisons. */
8f06b2d8
PB
15370 cCE(fcmps, eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
15371 cCE(fcmpzs, eb50a40, 1, (RVS), vfp_sp_compare_z),
15372 cCE(fcmpes, eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
15373 cCE(fcmpezs, eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 15374
c19d1205 15375#undef ARM_VARIANT
e74cfd16 15376#define ARM_VARIANT &fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
c19d1205 15377 /* Moves and type conversions. */
5287ad62 15378 cCE(fcpyd, eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
8f06b2d8
PB
15379 cCE(fcvtds, eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
15380 cCE(fcvtsd, eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
5287ad62
JB
15381 cCE(fmdhr, e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
15382 cCE(fmdlr, e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
15383 cCE(fmrdh, e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
15384 cCE(fmrdl, e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
8f06b2d8
PB
15385 cCE(fsitod, eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
15386 cCE(fuitod, eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
15387 cCE(ftosid, ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
15388 cCE(ftosizd, ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
15389 cCE(ftouid, ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
15390 cCE(ftouizd, ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205
ZW
15391
15392 /* Memory operations. */
4962c51a
MS
15393 cCE(fldd, d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
15394 cCE(fstd, d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
8f06b2d8
PB
15395 cCE(fldmiad, c900b00, 2, (RRw, VRDLST), vfp_dp_ldstmia),
15396 cCE(fldmfdd, c900b00, 2, (RRw, VRDLST), vfp_dp_ldstmia),
15397 cCE(fldmdbd, d300b00, 2, (RRw, VRDLST), vfp_dp_ldstmdb),
15398 cCE(fldmead, d300b00, 2, (RRw, VRDLST), vfp_dp_ldstmdb),
15399 cCE(fstmiad, c800b00, 2, (RRw, VRDLST), vfp_dp_ldstmia),
15400 cCE(fstmead, c800b00, 2, (RRw, VRDLST), vfp_dp_ldstmia),
15401 cCE(fstmdbd, d200b00, 2, (RRw, VRDLST), vfp_dp_ldstmdb),
15402 cCE(fstmfdd, d200b00, 2, (RRw, VRDLST), vfp_dp_ldstmdb),
b99bd4ef 15403
c19d1205 15404 /* Monadic operations. */
5287ad62
JB
15405 cCE(fabsd, eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
15406 cCE(fnegd, eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
15407 cCE(fsqrtd, eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
15408
15409 /* Dyadic operations. */
5287ad62
JB
15410 cCE(faddd, e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15411 cCE(fsubd, e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15412 cCE(fmuld, e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15413 cCE(fdivd, e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15414 cCE(fmacd, e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15415 cCE(fmscd, e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15416 cCE(fnmuld, e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15417 cCE(fnmacd, e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15418 cCE(fnmscd, e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 15419
c19d1205 15420 /* Comparisons. */
5287ad62
JB
15421 cCE(fcmpd, eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
15422 cCE(fcmpzd, eb50b40, 1, (RVD), vfp_dp_rd),
15423 cCE(fcmped, eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
15424 cCE(fcmpezd, eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205
ZW
15425
15426#undef ARM_VARIANT
e74cfd16 15427#define ARM_VARIANT &fpu_vfp_ext_v2
8f06b2d8
PB
15428 cCE(fmsrr, c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
15429 cCE(fmrrs, c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
5287ad62
JB
15430 cCE(fmdrr, c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
15431 cCE(fmrrd, c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
15432
037e8744
JB
15433/* Instructions which may belong to either the Neon or VFP instruction sets.
15434 Individual encoder functions perform additional architecture checks. */
15435#undef ARM_VARIANT
15436#define ARM_VARIANT &fpu_vfp_ext_v1xd
15437#undef THUMB_VARIANT
15438#define THUMB_VARIANT &fpu_vfp_ext_v1xd
15439 /* These mnemonics are unique to VFP. */
15440 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
15441 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
15442 nCE(vnmul, vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
15443 nCE(vnmla, vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
15444 nCE(vnmls, vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
15445 nCE(vcmp, vcmp, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
15446 nCE(vcmpe, vcmpe, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
15447 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
15448 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
15449 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
15450
15451 /* Mnemonics shared by Neon and VFP. */
15452 nCEF(vmul, vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
15453 nCEF(vmla, vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
15454 nCEF(vmls, vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
15455
15456 nCEF(vadd, vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
15457 nCEF(vsub, vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
15458
15459 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
15460 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
15461
15462 NCE(vldm, c900b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15463 NCE(vldmia, c900b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15464 NCE(vldmdb, d100b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15465 NCE(vstm, c800b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15466 NCE(vstmia, c800b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15467 NCE(vstmdb, d000b00, 2, (RRw, VRSDLST), neon_ldm_stm),
4962c51a
MS
15468 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
15469 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744
JB
15470
15471 nCEF(vcvt, vcvt, 3, (RNSDQ, RNSDQ, oI32b), neon_cvt),
15472
15473 /* NOTE: All VMOV encoding is special-cased! */
15474 NCE(vmov, 0, 1, (VMOV), neon_mov),
15475 NCE(vmovq, 0, 1, (VMOV), neon_mov),
15476
5287ad62
JB
15477#undef THUMB_VARIANT
15478#define THUMB_VARIANT &fpu_neon_ext_v1
15479#undef ARM_VARIANT
15480#define ARM_VARIANT &fpu_neon_ext_v1
15481 /* Data processing with three registers of the same length. */
15482 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
15483 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
15484 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
15485 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
15486 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
15487 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
15488 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
15489 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
15490 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
15491 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
15492 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
15493 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
15494 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
15495 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
15496 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
15497 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
15498 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
15499 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
15500 /* If not immediate, fall back to neon_dyadic_i64_su.
15501 shl_imm should accept I8 I16 I32 I64,
15502 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
15503 nUF(vshl, vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
15504 nUF(vshlq, vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
15505 nUF(vqshl, vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
15506 nUF(vqshlq, vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
15507 /* Logic ops, types optional & ignored. */
15508 nUF(vand, vand, 2, (RNDQ, NILO), neon_logic),
15509 nUF(vandq, vand, 2, (RNQ, NILO), neon_logic),
15510 nUF(vbic, vbic, 2, (RNDQ, NILO), neon_logic),
15511 nUF(vbicq, vbic, 2, (RNQ, NILO), neon_logic),
15512 nUF(vorr, vorr, 2, (RNDQ, NILO), neon_logic),
15513 nUF(vorrq, vorr, 2, (RNQ, NILO), neon_logic),
15514 nUF(vorn, vorn, 2, (RNDQ, NILO), neon_logic),
15515 nUF(vornq, vorn, 2, (RNQ, NILO), neon_logic),
15516 nUF(veor, veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
15517 nUF(veorq, veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
15518 /* Bitfield ops, untyped. */
15519 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
15520 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
15521 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
15522 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
15523 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
15524 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
15525 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32. */
15526 nUF(vabd, vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
15527 nUF(vabdq, vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
15528 nUF(vmax, vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
15529 nUF(vmaxq, vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
15530 nUF(vmin, vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
15531 nUF(vminq, vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
15532 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
15533 back to neon_dyadic_if_su. */
15534 nUF(vcge, vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
15535 nUF(vcgeq, vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
15536 nUF(vcgt, vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
15537 nUF(vcgtq, vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
15538 nUF(vclt, vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
15539 nUF(vcltq, vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
15540 nUF(vcle, vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
15541 nUF(vcleq, vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 15542 /* Comparison. Type I8 I16 I32 F32. */
5287ad62
JB
15543 nUF(vceq, vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
15544 nUF(vceqq, vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
15545 /* As above, D registers only. */
15546 nUF(vpmax, vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
15547 nUF(vpmin, vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
15548 /* Int and float variants, signedness unimportant. */
5287ad62 15549 nUF(vmlaq, vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
5287ad62
JB
15550 nUF(vmlsq, vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
15551 nUF(vpadd, vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
15552 /* Add/sub take types I8 I16 I32 I64 F32. */
5287ad62 15553 nUF(vaddq, vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
15554 nUF(vsubq, vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
15555 /* vtst takes sizes 8, 16, 32. */
15556 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
15557 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
15558 /* VMUL takes I8 I16 I32 F32 P8. */
037e8744 15559 nUF(vmulq, vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62
JB
15560 /* VQD{R}MULH takes S16 S32. */
15561 nUF(vqdmulh, vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
15562 nUF(vqdmulhq, vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
15563 nUF(vqrdmulh, vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
15564 nUF(vqrdmulhq, vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
15565 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
15566 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
15567 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
15568 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
15569 NUF(vaclt, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
15570 NUF(vacltq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
15571 NUF(vacle, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
15572 NUF(vacleq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
15573 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
15574 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
15575 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
15576 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
15577
15578 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 15579 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
15580 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
15581
15582 /* Data processing with two registers and a shift amount. */
15583 /* Right shifts, and variants with rounding.
15584 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
15585 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
15586 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
15587 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
15588 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
15589 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
15590 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
15591 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
15592 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
15593 /* Shift and insert. Sizes accepted 8 16 32 64. */
15594 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
15595 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
15596 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
15597 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
15598 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
15599 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
15600 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
15601 /* Right shift immediate, saturating & narrowing, with rounding variants.
15602 Types accepted S16 S32 S64 U16 U32 U64. */
15603 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
15604 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
15605 /* As above, unsigned. Types accepted S16 S32 S64. */
15606 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
15607 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
15608 /* Right shift narrowing. Types accepted I16 I32 I64. */
15609 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
15610 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
15611 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
15612 nUF(vshll, vshll, 3, (RNQ, RND, I32), neon_shll),
15613 /* CVT with optional immediate for fixed-point variant. */
037e8744 15614 nUF(vcvtq, vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 15615
5287ad62
JB
15616 nUF(vmvn, vmvn, 2, (RNDQ, RNDQ_IMVNb), neon_mvn),
15617 nUF(vmvnq, vmvn, 2, (RNQ, RNDQ_IMVNb), neon_mvn),
15618
15619 /* Data processing, three registers of different lengths. */
15620 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
15621 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
15622 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
15623 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
15624 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
15625 /* If not scalar, fall back to neon_dyadic_long.
15626 Vector types as above, scalar types S16 S32 U16 U32. */
15627 nUF(vmlal, vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
15628 nUF(vmlsl, vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
15629 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
15630 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
15631 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
15632 /* Dyadic, narrowing insns. Types I16 I32 I64. */
15633 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
15634 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
15635 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
15636 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
15637 /* Saturating doubling multiplies. Types S16 S32. */
15638 nUF(vqdmlal, vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
15639 nUF(vqdmlsl, vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
15640 nUF(vqdmull, vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
15641 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
15642 S16 S32 U16 U32. */
15643 nUF(vmull, vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
15644
15645 /* Extract. Size 8. */
15646 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I7), neon_ext),
15647 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I7), neon_ext),
15648
15649 /* Two registers, miscellaneous. */
15650 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
15651 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
15652 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
15653 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
15654 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
15655 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
15656 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
15657 /* Vector replicate. Sizes 8 16 32. */
15658 nCE(vdup, vdup, 2, (RNDQ, RR_RNSC), neon_dup),
15659 nCE(vdupq, vdup, 2, (RNQ, RR_RNSC), neon_dup),
15660 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
15661 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
15662 /* VMOVN. Types I16 I32 I64. */
15663 nUF(vmovn, vmovn, 2, (RND, RNQ), neon_movn),
15664 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
15665 nUF(vqmovn, vqmovn, 2, (RND, RNQ), neon_qmovn),
15666 /* VQMOVUN. Types S16 S32 S64. */
15667 nUF(vqmovun, vqmovun, 2, (RND, RNQ), neon_qmovun),
15668 /* VZIP / VUZP. Sizes 8 16 32. */
15669 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
15670 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
15671 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
15672 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
15673 /* VQABS / VQNEG. Types S8 S16 S32. */
15674 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
15675 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
15676 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
15677 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
15678 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
15679 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
15680 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
15681 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
15682 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
15683 /* Reciprocal estimates. Types U32 F32. */
15684 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
15685 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
15686 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
15687 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
15688 /* VCLS. Types S8 S16 S32. */
15689 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
15690 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
15691 /* VCLZ. Types I8 I16 I32. */
15692 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
15693 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
15694 /* VCNT. Size 8. */
15695 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
15696 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
15697 /* Two address, untyped. */
15698 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
15699 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
15700 /* VTRN. Sizes 8 16 32. */
15701 nUF(vtrn, vtrn, 2, (RNDQ, RNDQ), neon_trn),
15702 nUF(vtrnq, vtrn, 2, (RNQ, RNQ), neon_trn),
15703
15704 /* Table lookup. Size 8. */
15705 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
15706 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
15707
b7fc2769
JB
15708#undef THUMB_VARIANT
15709#define THUMB_VARIANT &fpu_vfp_v3_or_neon_ext
15710#undef ARM_VARIANT
15711#define ARM_VARIANT &fpu_vfp_v3_or_neon_ext
5287ad62
JB
15712 /* Neon element/structure load/store. */
15713 nUF(vld1, vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
15714 nUF(vst1, vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
15715 nUF(vld2, vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
15716 nUF(vst2, vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
15717 nUF(vld3, vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
15718 nUF(vst3, vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
15719 nUF(vld4, vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
15720 nUF(vst4, vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
15721
15722#undef THUMB_VARIANT
15723#define THUMB_VARIANT &fpu_vfp_ext_v3
15724#undef ARM_VARIANT
15725#define ARM_VARIANT &fpu_vfp_ext_v3
5287ad62
JB
15726 cCE(fconsts, eb00a00, 2, (RVS, I255), vfp_sp_const),
15727 cCE(fconstd, eb00b00, 2, (RVD, I255), vfp_dp_const),
15728 cCE(fshtos, eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
15729 cCE(fshtod, eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
15730 cCE(fsltos, eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
15731 cCE(fsltod, eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
15732 cCE(fuhtos, ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
15733 cCE(fuhtod, ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
15734 cCE(fultos, ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
15735 cCE(fultod, ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
15736 cCE(ftoshs, ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
15737 cCE(ftoshd, ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
15738 cCE(ftosls, ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
15739 cCE(ftosld, ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
15740 cCE(ftouhs, ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
15741 cCE(ftouhd, ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
15742 cCE(ftouls, ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
15743 cCE(ftould, ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 15744
5287ad62 15745#undef THUMB_VARIANT
c19d1205 15746#undef ARM_VARIANT
e74cfd16 15747#define ARM_VARIANT &arm_cext_xscale /* Intel XScale extensions. */
8f06b2d8
PB
15748 cCE(mia, e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15749 cCE(miaph, e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15750 cCE(miabb, e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15751 cCE(miabt, e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15752 cCE(miatb, e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15753 cCE(miatt, e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15754 cCE(mar, c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
15755 cCE(mra, c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205
ZW
15756
15757#undef ARM_VARIANT
e74cfd16 15758#define ARM_VARIANT &arm_cext_iwmmxt /* Intel Wireless MMX technology. */
8f06b2d8
PB
15759 cCE(tandcb, e13f130, 1, (RR), iwmmxt_tandorc),
15760 cCE(tandch, e53f130, 1, (RR), iwmmxt_tandorc),
15761 cCE(tandcw, e93f130, 1, (RR), iwmmxt_tandorc),
15762 cCE(tbcstb, e400010, 2, (RIWR, RR), rn_rd),
15763 cCE(tbcsth, e400050, 2, (RIWR, RR), rn_rd),
15764 cCE(tbcstw, e400090, 2, (RIWR, RR), rn_rd),
15765 cCE(textrcb, e130170, 2, (RR, I7), iwmmxt_textrc),
15766 cCE(textrch, e530170, 2, (RR, I7), iwmmxt_textrc),
15767 cCE(textrcw, e930170, 2, (RR, I7), iwmmxt_textrc),
15768 cCE(textrmub, e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
15769 cCE(textrmuh, e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
15770 cCE(textrmuw, e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
15771 cCE(textrmsb, e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
15772 cCE(textrmsh, e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
15773 cCE(textrmsw, e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
15774 cCE(tinsrb, e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
15775 cCE(tinsrh, e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
15776 cCE(tinsrw, e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
41adaa5c 15777 cCE(tmcr, e000110, 2, (RIWC_RIWG, RR), rn_rd),
8f06b2d8
PB
15778 cCE(tmcrr, c400000, 3, (RIWR, RR, RR), rm_rd_rn),
15779 cCE(tmia, e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15780 cCE(tmiaph, e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15781 cCE(tmiabb, e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15782 cCE(tmiabt, e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15783 cCE(tmiatb, e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15784 cCE(tmiatt, e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15785 cCE(tmovmskb, e100030, 2, (RR, RIWR), rd_rn),
15786 cCE(tmovmskh, e500030, 2, (RR, RIWR), rd_rn),
15787 cCE(tmovmskw, e900030, 2, (RR, RIWR), rd_rn),
41adaa5c 15788 cCE(tmrc, e100110, 2, (RR, RIWC_RIWG), rd_rn),
8f06b2d8
PB
15789 cCE(tmrrc, c500000, 3, (RR, RR, RIWR), rd_rn_rm),
15790 cCE(torcb, e13f150, 1, (RR), iwmmxt_tandorc),
15791 cCE(torch, e53f150, 1, (RR), iwmmxt_tandorc),
15792 cCE(torcw, e93f150, 1, (RR), iwmmxt_tandorc),
15793 cCE(waccb, e0001c0, 2, (RIWR, RIWR), rd_rn),
15794 cCE(wacch, e4001c0, 2, (RIWR, RIWR), rd_rn),
15795 cCE(waccw, e8001c0, 2, (RIWR, RIWR), rd_rn),
15796 cCE(waddbss, e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15797 cCE(waddb, e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15798 cCE(waddbus, e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15799 cCE(waddhss, e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15800 cCE(waddh, e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15801 cCE(waddhus, e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15802 cCE(waddwss, eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15803 cCE(waddw, e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15804 cCE(waddwus, e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15805 cCE(waligni, e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
15806 cCE(walignr0, e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15807 cCE(walignr1, e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15808 cCE(walignr2, ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15809 cCE(walignr3, eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15810 cCE(wand, e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15811 cCE(wandn, e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15812 cCE(wavg2b, e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15813 cCE(wavg2br, e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15814 cCE(wavg2h, ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15815 cCE(wavg2hr, ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15816 cCE(wcmpeqb, e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15817 cCE(wcmpeqh, e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15818 cCE(wcmpeqw, e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15819 cCE(wcmpgtub, e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15820 cCE(wcmpgtuh, e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15821 cCE(wcmpgtuw, e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15822 cCE(wcmpgtsb, e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15823 cCE(wcmpgtsh, e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15824 cCE(wcmpgtsw, eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15825 cCE(wldrb, c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
15826 cCE(wldrh, c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
15827 cCE(wldrw, c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
15828 cCE(wldrd, c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
15829 cCE(wmacs, e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15830 cCE(wmacsz, e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15831 cCE(wmacu, e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15832 cCE(wmacuz, e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15833 cCE(wmadds, ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15834 cCE(wmaddu, e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15835 cCE(wmaxsb, e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15836 cCE(wmaxsh, e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15837 cCE(wmaxsw, ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15838 cCE(wmaxub, e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15839 cCE(wmaxuh, e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15840 cCE(wmaxuw, e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15841 cCE(wminsb, e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15842 cCE(wminsh, e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15843 cCE(wminsw, eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15844 cCE(wminub, e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15845 cCE(wminuh, e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15846 cCE(wminuw, e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15847 cCE(wmov, e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
15848 cCE(wmulsm, e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15849 cCE(wmulsl, e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15850 cCE(wmulum, e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15851 cCE(wmulul, e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15852 cCE(wor, e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15853 cCE(wpackhss, e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15854 cCE(wpackhus, e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15855 cCE(wpackwss, eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15856 cCE(wpackwus, e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15857 cCE(wpackdss, ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15858 cCE(wpackdus, ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15859 cCE(wrorh, e700040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15860 cCE(wrorhg, e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15861 cCE(wrorw, eb00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15862 cCE(wrorwg, eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15863 cCE(wrord, ef00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15864 cCE(wrordg, ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15865 cCE(wsadb, e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15866 cCE(wsadbz, e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15867 cCE(wsadh, e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15868 cCE(wsadhz, e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15869 cCE(wshufh, e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
15870 cCE(wsllh, e500040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15871 cCE(wsllhg, e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15872 cCE(wsllw, e900040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15873 cCE(wsllwg, e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15874 cCE(wslld, ed00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15875 cCE(wslldg, ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15876 cCE(wsrah, e400040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15877 cCE(wsrahg, e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15878 cCE(wsraw, e800040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15879 cCE(wsrawg, e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15880 cCE(wsrad, ec00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15881 cCE(wsradg, ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15882 cCE(wsrlh, e600040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15883 cCE(wsrlhg, e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15884 cCE(wsrlw, ea00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15885 cCE(wsrlwg, ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15886 cCE(wsrld, ee00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15887 cCE(wsrldg, ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15888 cCE(wstrb, c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
15889 cCE(wstrh, c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
15890 cCE(wstrw, c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
15891 cCE(wstrd, c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
15892 cCE(wsubbss, e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15893 cCE(wsubb, e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15894 cCE(wsubbus, e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15895 cCE(wsubhss, e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15896 cCE(wsubh, e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15897 cCE(wsubhus, e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15898 cCE(wsubwss, eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15899 cCE(wsubw, e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15900 cCE(wsubwus, e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15901 cCE(wunpckehub,e0000c0, 2, (RIWR, RIWR), rd_rn),
15902 cCE(wunpckehuh,e4000c0, 2, (RIWR, RIWR), rd_rn),
15903 cCE(wunpckehuw,e8000c0, 2, (RIWR, RIWR), rd_rn),
15904 cCE(wunpckehsb,e2000c0, 2, (RIWR, RIWR), rd_rn),
15905 cCE(wunpckehsh,e6000c0, 2, (RIWR, RIWR), rd_rn),
15906 cCE(wunpckehsw,ea000c0, 2, (RIWR, RIWR), rd_rn),
15907 cCE(wunpckihb, e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15908 cCE(wunpckihh, e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15909 cCE(wunpckihw, e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15910 cCE(wunpckelub,e0000e0, 2, (RIWR, RIWR), rd_rn),
15911 cCE(wunpckeluh,e4000e0, 2, (RIWR, RIWR), rd_rn),
15912 cCE(wunpckeluw,e8000e0, 2, (RIWR, RIWR), rd_rn),
15913 cCE(wunpckelsb,e2000e0, 2, (RIWR, RIWR), rd_rn),
15914 cCE(wunpckelsh,e6000e0, 2, (RIWR, RIWR), rd_rn),
15915 cCE(wunpckelsw,ea000e0, 2, (RIWR, RIWR), rd_rn),
15916 cCE(wunpckilb, e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15917 cCE(wunpckilh, e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15918 cCE(wunpckilw, e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15919 cCE(wxor, e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15920 cCE(wzero, e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205
ZW
15921
15922#undef ARM_VARIANT
e74cfd16 15923#define ARM_VARIANT &arm_cext_maverick /* Cirrus Maverick instructions. */
4962c51a
MS
15924 cCE(cfldrs, c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
15925 cCE(cfldrd, c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
15926 cCE(cfldr32, c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
15927 cCE(cfldr64, c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
15928 cCE(cfstrs, c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
15929 cCE(cfstrd, c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
15930 cCE(cfstr32, c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
15931 cCE(cfstr64, c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
8f06b2d8
PB
15932 cCE(cfmvsr, e000450, 2, (RMF, RR), rn_rd),
15933 cCE(cfmvrs, e100450, 2, (RR, RMF), rd_rn),
15934 cCE(cfmvdlr, e000410, 2, (RMD, RR), rn_rd),
15935 cCE(cfmvrdl, e100410, 2, (RR, RMD), rd_rn),
15936 cCE(cfmvdhr, e000430, 2, (RMD, RR), rn_rd),
15937 cCE(cfmvrdh, e100430, 2, (RR, RMD), rd_rn),
15938 cCE(cfmv64lr, e000510, 2, (RMDX, RR), rn_rd),
15939 cCE(cfmvr64l, e100510, 2, (RR, RMDX), rd_rn),
15940 cCE(cfmv64hr, e000530, 2, (RMDX, RR), rn_rd),
15941 cCE(cfmvr64h, e100530, 2, (RR, RMDX), rd_rn),
15942 cCE(cfmval32, e200440, 2, (RMAX, RMFX), rd_rn),
15943 cCE(cfmv32al, e100440, 2, (RMFX, RMAX), rd_rn),
15944 cCE(cfmvam32, e200460, 2, (RMAX, RMFX), rd_rn),
15945 cCE(cfmv32am, e100460, 2, (RMFX, RMAX), rd_rn),
15946 cCE(cfmvah32, e200480, 2, (RMAX, RMFX), rd_rn),
15947 cCE(cfmv32ah, e100480, 2, (RMFX, RMAX), rd_rn),
15948 cCE(cfmva32, e2004a0, 2, (RMAX, RMFX), rd_rn),
15949 cCE(cfmv32a, e1004a0, 2, (RMFX, RMAX), rd_rn),
15950 cCE(cfmva64, e2004c0, 2, (RMAX, RMDX), rd_rn),
15951 cCE(cfmv64a, e1004c0, 2, (RMDX, RMAX), rd_rn),
15952 cCE(cfmvsc32, e2004e0, 2, (RMDS, RMDX), mav_dspsc),
15953 cCE(cfmv32sc, e1004e0, 2, (RMDX, RMDS), rd),
15954 cCE(cfcpys, e000400, 2, (RMF, RMF), rd_rn),
15955 cCE(cfcpyd, e000420, 2, (RMD, RMD), rd_rn),
15956 cCE(cfcvtsd, e000460, 2, (RMD, RMF), rd_rn),
15957 cCE(cfcvtds, e000440, 2, (RMF, RMD), rd_rn),
15958 cCE(cfcvt32s, e000480, 2, (RMF, RMFX), rd_rn),
15959 cCE(cfcvt32d, e0004a0, 2, (RMD, RMFX), rd_rn),
15960 cCE(cfcvt64s, e0004c0, 2, (RMF, RMDX), rd_rn),
15961 cCE(cfcvt64d, e0004e0, 2, (RMD, RMDX), rd_rn),
15962 cCE(cfcvts32, e100580, 2, (RMFX, RMF), rd_rn),
15963 cCE(cfcvtd32, e1005a0, 2, (RMFX, RMD), rd_rn),
15964 cCE(cftruncs32,e1005c0, 2, (RMFX, RMF), rd_rn),
15965 cCE(cftruncd32,e1005e0, 2, (RMFX, RMD), rd_rn),
15966 cCE(cfrshl32, e000550, 3, (RMFX, RMFX, RR), mav_triple),
15967 cCE(cfrshl64, e000570, 3, (RMDX, RMDX, RR), mav_triple),
15968 cCE(cfsh32, e000500, 3, (RMFX, RMFX, I63s), mav_shift),
15969 cCE(cfsh64, e200500, 3, (RMDX, RMDX, I63s), mav_shift),
15970 cCE(cfcmps, e100490, 3, (RR, RMF, RMF), rd_rn_rm),
15971 cCE(cfcmpd, e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
15972 cCE(cfcmp32, e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
15973 cCE(cfcmp64, e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
15974 cCE(cfabss, e300400, 2, (RMF, RMF), rd_rn),
15975 cCE(cfabsd, e300420, 2, (RMD, RMD), rd_rn),
15976 cCE(cfnegs, e300440, 2, (RMF, RMF), rd_rn),
15977 cCE(cfnegd, e300460, 2, (RMD, RMD), rd_rn),
15978 cCE(cfadds, e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
15979 cCE(cfaddd, e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
15980 cCE(cfsubs, e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
15981 cCE(cfsubd, e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
15982 cCE(cfmuls, e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
15983 cCE(cfmuld, e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
15984 cCE(cfabs32, e300500, 2, (RMFX, RMFX), rd_rn),
15985 cCE(cfabs64, e300520, 2, (RMDX, RMDX), rd_rn),
15986 cCE(cfneg32, e300540, 2, (RMFX, RMFX), rd_rn),
15987 cCE(cfneg64, e300560, 2, (RMDX, RMDX), rd_rn),
15988 cCE(cfadd32, e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15989 cCE(cfadd64, e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
15990 cCE(cfsub32, e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15991 cCE(cfsub64, e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
15992 cCE(cfmul32, e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15993 cCE(cfmul64, e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
15994 cCE(cfmac32, e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15995 cCE(cfmsc32, e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15996 cCE(cfmadd32, e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
15997 cCE(cfmsub32, e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
15998 cCE(cfmadda32, e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
15999 cCE(cfmsuba32, e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
c19d1205
ZW
16000};
16001#undef ARM_VARIANT
16002#undef THUMB_VARIANT
16003#undef TCE
16004#undef TCM
16005#undef TUE
16006#undef TUF
16007#undef TCC
8f06b2d8 16008#undef cCE
e3cb604e
PB
16009#undef cCL
16010#undef C3E
c19d1205
ZW
16011#undef CE
16012#undef CM
16013#undef UE
16014#undef UF
16015#undef UT
5287ad62
JB
16016#undef NUF
16017#undef nUF
16018#undef NCE
16019#undef nCE
c19d1205
ZW
16020#undef OPS0
16021#undef OPS1
16022#undef OPS2
16023#undef OPS3
16024#undef OPS4
16025#undef OPS5
16026#undef OPS6
16027#undef do_0
16028\f
16029/* MD interface: bits in the object file. */
bfae80f2 16030
c19d1205
ZW
16031/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
16032 for use in the a.out file, and stores them in the array pointed to by buf.
16033 This knows about the endian-ness of the target machine and does
16034 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
16035 2 (short) and 4 (long) Floating numbers are put out as a series of
16036 LITTLENUMS (shorts, here at least). */
b99bd4ef 16037
c19d1205
ZW
16038void
16039md_number_to_chars (char * buf, valueT val, int n)
16040{
16041 if (target_big_endian)
16042 number_to_chars_bigendian (buf, val, n);
16043 else
16044 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
16045}
16046
c19d1205
ZW
16047static valueT
16048md_chars_to_number (char * buf, int n)
bfae80f2 16049{
c19d1205
ZW
16050 valueT result = 0;
16051 unsigned char * where = (unsigned char *) buf;
bfae80f2 16052
c19d1205 16053 if (target_big_endian)
b99bd4ef 16054 {
c19d1205
ZW
16055 while (n--)
16056 {
16057 result <<= 8;
16058 result |= (*where++ & 255);
16059 }
b99bd4ef 16060 }
c19d1205 16061 else
b99bd4ef 16062 {
c19d1205
ZW
16063 while (n--)
16064 {
16065 result <<= 8;
16066 result |= (where[n] & 255);
16067 }
bfae80f2 16068 }
b99bd4ef 16069
c19d1205 16070 return result;
bfae80f2 16071}
b99bd4ef 16072
c19d1205 16073/* MD interface: Sections. */
b99bd4ef 16074
0110f2b8
PB
16075/* Estimate the size of a frag before relaxing. Assume everything fits in
16076 2 bytes. */
16077
c19d1205 16078int
0110f2b8 16079md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
16080 segT segtype ATTRIBUTE_UNUSED)
16081{
0110f2b8
PB
16082 fragp->fr_var = 2;
16083 return 2;
16084}
16085
16086/* Convert a machine dependent frag. */
16087
16088void
16089md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
16090{
16091 unsigned long insn;
16092 unsigned long old_op;
16093 char *buf;
16094 expressionS exp;
16095 fixS *fixp;
16096 int reloc_type;
16097 int pc_rel;
16098 int opcode;
16099
16100 buf = fragp->fr_literal + fragp->fr_fix;
16101
16102 old_op = bfd_get_16(abfd, buf);
16103 if (fragp->fr_symbol) {
16104 exp.X_op = O_symbol;
16105 exp.X_add_symbol = fragp->fr_symbol;
16106 } else {
16107 exp.X_op = O_constant;
16108 }
16109 exp.X_add_number = fragp->fr_offset;
16110 opcode = fragp->fr_subtype;
16111 switch (opcode)
16112 {
16113 case T_MNEM_ldr_pc:
16114 case T_MNEM_ldr_pc2:
16115 case T_MNEM_ldr_sp:
16116 case T_MNEM_str_sp:
16117 case T_MNEM_ldr:
16118 case T_MNEM_ldrb:
16119 case T_MNEM_ldrh:
16120 case T_MNEM_str:
16121 case T_MNEM_strb:
16122 case T_MNEM_strh:
16123 if (fragp->fr_var == 4)
16124 {
16125 insn = THUMB_OP32(opcode);
16126 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
16127 {
16128 insn |= (old_op & 0x700) << 4;
16129 }
16130 else
16131 {
16132 insn |= (old_op & 7) << 12;
16133 insn |= (old_op & 0x38) << 13;
16134 }
16135 insn |= 0x00000c00;
16136 put_thumb32_insn (buf, insn);
16137 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
16138 }
16139 else
16140 {
16141 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
16142 }
16143 pc_rel = (opcode == T_MNEM_ldr_pc2);
16144 break;
16145 case T_MNEM_adr:
16146 if (fragp->fr_var == 4)
16147 {
16148 insn = THUMB_OP32 (opcode);
16149 insn |= (old_op & 0xf0) << 4;
16150 put_thumb32_insn (buf, insn);
16151 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
16152 }
16153 else
16154 {
16155 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
16156 exp.X_add_number -= 4;
16157 }
16158 pc_rel = 1;
16159 break;
16160 case T_MNEM_mov:
16161 case T_MNEM_movs:
16162 case T_MNEM_cmp:
16163 case T_MNEM_cmn:
16164 if (fragp->fr_var == 4)
16165 {
16166 int r0off = (opcode == T_MNEM_mov
16167 || opcode == T_MNEM_movs) ? 0 : 8;
16168 insn = THUMB_OP32 (opcode);
16169 insn = (insn & 0xe1ffffff) | 0x10000000;
16170 insn |= (old_op & 0x700) << r0off;
16171 put_thumb32_insn (buf, insn);
16172 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
16173 }
16174 else
16175 {
16176 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
16177 }
16178 pc_rel = 0;
16179 break;
16180 case T_MNEM_b:
16181 if (fragp->fr_var == 4)
16182 {
16183 insn = THUMB_OP32(opcode);
16184 put_thumb32_insn (buf, insn);
16185 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
16186 }
16187 else
16188 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
16189 pc_rel = 1;
16190 break;
16191 case T_MNEM_bcond:
16192 if (fragp->fr_var == 4)
16193 {
16194 insn = THUMB_OP32(opcode);
16195 insn |= (old_op & 0xf00) << 14;
16196 put_thumb32_insn (buf, insn);
16197 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
16198 }
16199 else
16200 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
16201 pc_rel = 1;
16202 break;
16203 case T_MNEM_add_sp:
16204 case T_MNEM_add_pc:
16205 case T_MNEM_inc_sp:
16206 case T_MNEM_dec_sp:
16207 if (fragp->fr_var == 4)
16208 {
16209 /* ??? Choose between add and addw. */
16210 insn = THUMB_OP32 (opcode);
16211 insn |= (old_op & 0xf0) << 4;
16212 put_thumb32_insn (buf, insn);
16805f35
PB
16213 if (opcode == T_MNEM_add_pc)
16214 reloc_type = BFD_RELOC_ARM_T32_IMM12;
16215 else
16216 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
16217 }
16218 else
16219 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
16220 pc_rel = 0;
16221 break;
16222
16223 case T_MNEM_addi:
16224 case T_MNEM_addis:
16225 case T_MNEM_subi:
16226 case T_MNEM_subis:
16227 if (fragp->fr_var == 4)
16228 {
16229 insn = THUMB_OP32 (opcode);
16230 insn |= (old_op & 0xf0) << 4;
16231 insn |= (old_op & 0xf) << 16;
16232 put_thumb32_insn (buf, insn);
16805f35
PB
16233 if (insn & (1 << 20))
16234 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
16235 else
16236 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
16237 }
16238 else
16239 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
16240 pc_rel = 0;
16241 break;
16242 default:
16243 abort();
16244 }
16245 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
16246 reloc_type);
16247 fixp->fx_file = fragp->fr_file;
16248 fixp->fx_line = fragp->fr_line;
16249 fragp->fr_fix += fragp->fr_var;
16250}
16251
16252/* Return the size of a relaxable immediate operand instruction.
16253 SHIFT and SIZE specify the form of the allowable immediate. */
16254static int
16255relax_immediate (fragS *fragp, int size, int shift)
16256{
16257 offsetT offset;
16258 offsetT mask;
16259 offsetT low;
16260
16261 /* ??? Should be able to do better than this. */
16262 if (fragp->fr_symbol)
16263 return 4;
16264
16265 low = (1 << shift) - 1;
16266 mask = (1 << (shift + size)) - (1 << shift);
16267 offset = fragp->fr_offset;
16268 /* Force misaligned offsets to 32-bit variant. */
16269 if (offset & low)
16270 return -4;
16271 if (offset & ~mask)
16272 return 4;
16273 return 2;
16274}
16275
16276/* Return the size of a relaxable adr pseudo-instruction or PC-relative
16277 load. */
16278static int
16279relax_adr (fragS *fragp, asection *sec)
16280{
16281 addressT addr;
16282 offsetT val;
16283
16284 /* Assume worst case for symbols not known to be in the same section. */
16285 if (!S_IS_DEFINED(fragp->fr_symbol)
16286 || sec != S_GET_SEGMENT (fragp->fr_symbol))
16287 return 4;
16288
16289 val = S_GET_VALUE(fragp->fr_symbol) + fragp->fr_offset;
16290 addr = fragp->fr_address + fragp->fr_fix;
16291 addr = (addr + 4) & ~3;
16292 /* Fix the insn as the 4-byte version if the target address is not
16293 sufficiently aligned. This is prevents an infinite loop when two
16294 instructions have contradictory range/alignment requirements. */
16295 if (val & 3)
16296 return -4;
16297 val -= addr;
16298 if (val < 0 || val > 1020)
16299 return 4;
16300 return 2;
16301}
16302
16303/* Return the size of a relaxable add/sub immediate instruction. */
16304static int
16305relax_addsub (fragS *fragp, asection *sec)
16306{
16307 char *buf;
16308 int op;
16309
16310 buf = fragp->fr_literal + fragp->fr_fix;
16311 op = bfd_get_16(sec->owner, buf);
16312 if ((op & 0xf) == ((op >> 4) & 0xf))
16313 return relax_immediate (fragp, 8, 0);
16314 else
16315 return relax_immediate (fragp, 3, 0);
16316}
16317
16318
16319/* Return the size of a relaxable branch instruction. BITS is the
16320 size of the offset field in the narrow instruction. */
16321
16322static int
16323relax_branch (fragS *fragp, asection *sec, int bits)
16324{
16325 addressT addr;
16326 offsetT val;
16327 offsetT limit;
16328
16329 /* Assume worst case for symbols not known to be in the same section. */
16330 if (!S_IS_DEFINED(fragp->fr_symbol)
16331 || sec != S_GET_SEGMENT (fragp->fr_symbol))
16332 return 4;
16333
16334 val = S_GET_VALUE(fragp->fr_symbol) + fragp->fr_offset;
16335 addr = fragp->fr_address + fragp->fr_fix + 4;
16336 val -= addr;
16337
16338 /* Offset is a signed value *2 */
16339 limit = 1 << bits;
16340 if (val >= limit || val < -limit)
16341 return 4;
16342 return 2;
16343}
16344
16345
16346/* Relax a machine dependent frag. This returns the amount by which
16347 the current size of the frag should change. */
16348
16349int
16350arm_relax_frag (asection *sec, fragS *fragp, long stretch ATTRIBUTE_UNUSED)
16351{
16352 int oldsize;
16353 int newsize;
16354
16355 oldsize = fragp->fr_var;
16356 switch (fragp->fr_subtype)
16357 {
16358 case T_MNEM_ldr_pc2:
16359 newsize = relax_adr(fragp, sec);
16360 break;
16361 case T_MNEM_ldr_pc:
16362 case T_MNEM_ldr_sp:
16363 case T_MNEM_str_sp:
16364 newsize = relax_immediate(fragp, 8, 2);
16365 break;
16366 case T_MNEM_ldr:
16367 case T_MNEM_str:
16368 newsize = relax_immediate(fragp, 5, 2);
16369 break;
16370 case T_MNEM_ldrh:
16371 case T_MNEM_strh:
16372 newsize = relax_immediate(fragp, 5, 1);
16373 break;
16374 case T_MNEM_ldrb:
16375 case T_MNEM_strb:
16376 newsize = relax_immediate(fragp, 5, 0);
16377 break;
16378 case T_MNEM_adr:
16379 newsize = relax_adr(fragp, sec);
16380 break;
16381 case T_MNEM_mov:
16382 case T_MNEM_movs:
16383 case T_MNEM_cmp:
16384 case T_MNEM_cmn:
16385 newsize = relax_immediate(fragp, 8, 0);
16386 break;
16387 case T_MNEM_b:
16388 newsize = relax_branch(fragp, sec, 11);
16389 break;
16390 case T_MNEM_bcond:
16391 newsize = relax_branch(fragp, sec, 8);
16392 break;
16393 case T_MNEM_add_sp:
16394 case T_MNEM_add_pc:
16395 newsize = relax_immediate (fragp, 8, 2);
16396 break;
16397 case T_MNEM_inc_sp:
16398 case T_MNEM_dec_sp:
16399 newsize = relax_immediate (fragp, 7, 2);
16400 break;
16401 case T_MNEM_addi:
16402 case T_MNEM_addis:
16403 case T_MNEM_subi:
16404 case T_MNEM_subis:
16405 newsize = relax_addsub (fragp, sec);
16406 break;
16407 default:
16408 abort();
16409 }
16410 if (newsize < 0)
16411 {
16412 fragp->fr_var = -newsize;
16413 md_convert_frag (sec->owner, sec, fragp);
16414 frag_wane(fragp);
16415 return -(newsize + oldsize);
16416 }
16417 fragp->fr_var = newsize;
16418 return newsize - oldsize;
c19d1205 16419}
b99bd4ef 16420
c19d1205 16421/* Round up a section size to the appropriate boundary. */
b99bd4ef 16422
c19d1205
ZW
16423valueT
16424md_section_align (segT segment ATTRIBUTE_UNUSED,
16425 valueT size)
16426{
f0927246
NC
16427#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
16428 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
16429 {
16430 /* For a.out, force the section size to be aligned. If we don't do
16431 this, BFD will align it for us, but it will not write out the
16432 final bytes of the section. This may be a bug in BFD, but it is
16433 easier to fix it here since that is how the other a.out targets
16434 work. */
16435 int align;
16436
16437 align = bfd_get_section_alignment (stdoutput, segment);
16438 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
16439 }
c19d1205 16440#endif
f0927246
NC
16441
16442 return size;
bfae80f2 16443}
b99bd4ef 16444
c19d1205
ZW
16445/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
16446 of an rs_align_code fragment. */
16447
16448void
16449arm_handle_align (fragS * fragP)
bfae80f2 16450{
c19d1205
ZW
16451 static char const arm_noop[4] = { 0x00, 0x00, 0xa0, 0xe1 };
16452 static char const thumb_noop[2] = { 0xc0, 0x46 };
16453 static char const arm_bigend_noop[4] = { 0xe1, 0xa0, 0x00, 0x00 };
16454 static char const thumb_bigend_noop[2] = { 0x46, 0xc0 };
16455
16456 int bytes, fix, noop_size;
16457 char * p;
16458 const char * noop;
bfae80f2 16459
c19d1205 16460 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
16461 return;
16462
c19d1205
ZW
16463 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
16464 p = fragP->fr_literal + fragP->fr_fix;
16465 fix = 0;
bfae80f2 16466
c19d1205
ZW
16467 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
16468 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 16469
c19d1205 16470 if (fragP->tc_frag_data)
a737bd4d 16471 {
c19d1205
ZW
16472 if (target_big_endian)
16473 noop = thumb_bigend_noop;
16474 else
16475 noop = thumb_noop;
16476 noop_size = sizeof (thumb_noop);
7ed4c4c5
NC
16477 }
16478 else
16479 {
c19d1205
ZW
16480 if (target_big_endian)
16481 noop = arm_bigend_noop;
16482 else
16483 noop = arm_noop;
16484 noop_size = sizeof (arm_noop);
7ed4c4c5 16485 }
a737bd4d 16486
c19d1205 16487 if (bytes & (noop_size - 1))
7ed4c4c5 16488 {
c19d1205
ZW
16489 fix = bytes & (noop_size - 1);
16490 memset (p, 0, fix);
16491 p += fix;
16492 bytes -= fix;
a737bd4d 16493 }
a737bd4d 16494
c19d1205 16495 while (bytes >= noop_size)
a737bd4d 16496 {
c19d1205
ZW
16497 memcpy (p, noop, noop_size);
16498 p += noop_size;
16499 bytes -= noop_size;
16500 fix += noop_size;
a737bd4d
NC
16501 }
16502
c19d1205
ZW
16503 fragP->fr_fix += fix;
16504 fragP->fr_var = noop_size;
a737bd4d
NC
16505}
16506
c19d1205
ZW
16507/* Called from md_do_align. Used to create an alignment
16508 frag in a code section. */
16509
16510void
16511arm_frag_align_code (int n, int max)
bfae80f2 16512{
c19d1205 16513 char * p;
7ed4c4c5 16514
c19d1205
ZW
16515 /* We assume that there will never be a requirement
16516 to support alignments greater than 32 bytes. */
16517 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
16518 as_fatal (_("alignments greater than 32 bytes not supported in .text sections."));
bfae80f2 16519
c19d1205
ZW
16520 p = frag_var (rs_align_code,
16521 MAX_MEM_FOR_RS_ALIGN_CODE,
16522 1,
16523 (relax_substateT) max,
16524 (symbolS *) NULL,
16525 (offsetT) n,
16526 (char *) NULL);
16527 *p = 0;
16528}
bfae80f2 16529
c19d1205 16530/* Perform target specific initialisation of a frag. */
bfae80f2 16531
c19d1205
ZW
16532void
16533arm_init_frag (fragS * fragP)
16534{
16535 /* Record whether this frag is in an ARM or a THUMB area. */
16536 fragP->tc_frag_data = thumb_mode;
bfae80f2
RE
16537}
16538
c19d1205
ZW
16539#ifdef OBJ_ELF
16540/* When we change sections we need to issue a new mapping symbol. */
16541
16542void
16543arm_elf_change_section (void)
bfae80f2 16544{
c19d1205
ZW
16545 flagword flags;
16546 segment_info_type *seginfo;
bfae80f2 16547
c19d1205
ZW
16548 /* Link an unlinked unwind index table section to the .text section. */
16549 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
16550 && elf_linked_to_section (now_seg) == NULL)
16551 elf_linked_to_section (now_seg) = text_section;
16552
16553 if (!SEG_NORMAL (now_seg))
bfae80f2
RE
16554 return;
16555
c19d1205
ZW
16556 flags = bfd_get_section_flags (stdoutput, now_seg);
16557
16558 /* We can ignore sections that only contain debug info. */
16559 if ((flags & SEC_ALLOC) == 0)
16560 return;
bfae80f2 16561
c19d1205
ZW
16562 seginfo = seg_info (now_seg);
16563 mapstate = seginfo->tc_segment_info_data.mapstate;
16564 marked_pr_dependency = seginfo->tc_segment_info_data.marked_pr_dependency;
bfae80f2
RE
16565}
16566
c19d1205
ZW
16567int
16568arm_elf_section_type (const char * str, size_t len)
e45d0630 16569{
c19d1205
ZW
16570 if (len == 5 && strncmp (str, "exidx", 5) == 0)
16571 return SHT_ARM_EXIDX;
e45d0630 16572
c19d1205
ZW
16573 return -1;
16574}
16575\f
16576/* Code to deal with unwinding tables. */
e45d0630 16577
c19d1205 16578static void add_unwind_adjustsp (offsetT);
e45d0630 16579
c19d1205 16580/* Cenerate and deferred unwind frame offset. */
e45d0630 16581
bfae80f2 16582static void
c19d1205 16583flush_pending_unwind (void)
bfae80f2 16584{
c19d1205 16585 offsetT offset;
bfae80f2 16586
c19d1205
ZW
16587 offset = unwind.pending_offset;
16588 unwind.pending_offset = 0;
16589 if (offset != 0)
16590 add_unwind_adjustsp (offset);
bfae80f2
RE
16591}
16592
c19d1205
ZW
16593/* Add an opcode to this list for this function. Two-byte opcodes should
16594 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
16595 order. */
16596
bfae80f2 16597static void
c19d1205 16598add_unwind_opcode (valueT op, int length)
bfae80f2 16599{
c19d1205
ZW
16600 /* Add any deferred stack adjustment. */
16601 if (unwind.pending_offset)
16602 flush_pending_unwind ();
bfae80f2 16603
c19d1205 16604 unwind.sp_restored = 0;
bfae80f2 16605
c19d1205 16606 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 16607 {
c19d1205
ZW
16608 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
16609 if (unwind.opcodes)
16610 unwind.opcodes = xrealloc (unwind.opcodes,
16611 unwind.opcode_alloc);
16612 else
16613 unwind.opcodes = xmalloc (unwind.opcode_alloc);
bfae80f2 16614 }
c19d1205 16615 while (length > 0)
bfae80f2 16616 {
c19d1205
ZW
16617 length--;
16618 unwind.opcodes[unwind.opcode_count] = op & 0xff;
16619 op >>= 8;
16620 unwind.opcode_count++;
bfae80f2 16621 }
bfae80f2
RE
16622}
16623
c19d1205
ZW
16624/* Add unwind opcodes to adjust the stack pointer. */
16625
bfae80f2 16626static void
c19d1205 16627add_unwind_adjustsp (offsetT offset)
bfae80f2 16628{
c19d1205 16629 valueT op;
bfae80f2 16630
c19d1205 16631 if (offset > 0x200)
bfae80f2 16632 {
c19d1205
ZW
16633 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
16634 char bytes[5];
16635 int n;
16636 valueT o;
bfae80f2 16637
c19d1205
ZW
16638 /* Long form: 0xb2, uleb128. */
16639 /* This might not fit in a word so add the individual bytes,
16640 remembering the list is built in reverse order. */
16641 o = (valueT) ((offset - 0x204) >> 2);
16642 if (o == 0)
16643 add_unwind_opcode (0, 1);
bfae80f2 16644
c19d1205
ZW
16645 /* Calculate the uleb128 encoding of the offset. */
16646 n = 0;
16647 while (o)
16648 {
16649 bytes[n] = o & 0x7f;
16650 o >>= 7;
16651 if (o)
16652 bytes[n] |= 0x80;
16653 n++;
16654 }
16655 /* Add the insn. */
16656 for (; n; n--)
16657 add_unwind_opcode (bytes[n - 1], 1);
16658 add_unwind_opcode (0xb2, 1);
16659 }
16660 else if (offset > 0x100)
bfae80f2 16661 {
c19d1205
ZW
16662 /* Two short opcodes. */
16663 add_unwind_opcode (0x3f, 1);
16664 op = (offset - 0x104) >> 2;
16665 add_unwind_opcode (op, 1);
bfae80f2 16666 }
c19d1205
ZW
16667 else if (offset > 0)
16668 {
16669 /* Short opcode. */
16670 op = (offset - 4) >> 2;
16671 add_unwind_opcode (op, 1);
16672 }
16673 else if (offset < 0)
bfae80f2 16674 {
c19d1205
ZW
16675 offset = -offset;
16676 while (offset > 0x100)
bfae80f2 16677 {
c19d1205
ZW
16678 add_unwind_opcode (0x7f, 1);
16679 offset -= 0x100;
bfae80f2 16680 }
c19d1205
ZW
16681 op = ((offset - 4) >> 2) | 0x40;
16682 add_unwind_opcode (op, 1);
bfae80f2 16683 }
bfae80f2
RE
16684}
16685
c19d1205
ZW
16686/* Finish the list of unwind opcodes for this function. */
16687static void
16688finish_unwind_opcodes (void)
bfae80f2 16689{
c19d1205 16690 valueT op;
bfae80f2 16691
c19d1205 16692 if (unwind.fp_used)
bfae80f2 16693 {
708587a4 16694 /* Adjust sp as necessary. */
c19d1205
ZW
16695 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
16696 flush_pending_unwind ();
bfae80f2 16697
c19d1205
ZW
16698 /* After restoring sp from the frame pointer. */
16699 op = 0x90 | unwind.fp_reg;
16700 add_unwind_opcode (op, 1);
16701 }
16702 else
16703 flush_pending_unwind ();
bfae80f2
RE
16704}
16705
bfae80f2 16706
c19d1205
ZW
16707/* Start an exception table entry. If idx is nonzero this is an index table
16708 entry. */
bfae80f2
RE
16709
16710static void
c19d1205 16711start_unwind_section (const segT text_seg, int idx)
bfae80f2 16712{
c19d1205
ZW
16713 const char * text_name;
16714 const char * prefix;
16715 const char * prefix_once;
16716 const char * group_name;
16717 size_t prefix_len;
16718 size_t text_len;
16719 char * sec_name;
16720 size_t sec_name_len;
16721 int type;
16722 int flags;
16723 int linkonce;
bfae80f2 16724
c19d1205 16725 if (idx)
bfae80f2 16726 {
c19d1205
ZW
16727 prefix = ELF_STRING_ARM_unwind;
16728 prefix_once = ELF_STRING_ARM_unwind_once;
16729 type = SHT_ARM_EXIDX;
bfae80f2 16730 }
c19d1205 16731 else
bfae80f2 16732 {
c19d1205
ZW
16733 prefix = ELF_STRING_ARM_unwind_info;
16734 prefix_once = ELF_STRING_ARM_unwind_info_once;
16735 type = SHT_PROGBITS;
bfae80f2
RE
16736 }
16737
c19d1205
ZW
16738 text_name = segment_name (text_seg);
16739 if (streq (text_name, ".text"))
16740 text_name = "";
16741
16742 if (strncmp (text_name, ".gnu.linkonce.t.",
16743 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 16744 {
c19d1205
ZW
16745 prefix = prefix_once;
16746 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
16747 }
16748
c19d1205
ZW
16749 prefix_len = strlen (prefix);
16750 text_len = strlen (text_name);
16751 sec_name_len = prefix_len + text_len;
16752 sec_name = xmalloc (sec_name_len + 1);
16753 memcpy (sec_name, prefix, prefix_len);
16754 memcpy (sec_name + prefix_len, text_name, text_len);
16755 sec_name[prefix_len + text_len] = '\0';
bfae80f2 16756
c19d1205
ZW
16757 flags = SHF_ALLOC;
16758 linkonce = 0;
16759 group_name = 0;
bfae80f2 16760
c19d1205
ZW
16761 /* Handle COMDAT group. */
16762 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 16763 {
c19d1205
ZW
16764 group_name = elf_group_name (text_seg);
16765 if (group_name == NULL)
16766 {
16767 as_bad ("Group section `%s' has no group signature",
16768 segment_name (text_seg));
16769 ignore_rest_of_line ();
16770 return;
16771 }
16772 flags |= SHF_GROUP;
16773 linkonce = 1;
bfae80f2
RE
16774 }
16775
c19d1205 16776 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
bfae80f2 16777
c19d1205
ZW
16778 /* Set the setion link for index tables. */
16779 if (idx)
16780 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
16781}
16782
bfae80f2 16783
c19d1205
ZW
16784/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
16785 personality routine data. Returns zero, or the index table value for
16786 and inline entry. */
16787
16788static valueT
16789create_unwind_entry (int have_data)
bfae80f2 16790{
c19d1205
ZW
16791 int size;
16792 addressT where;
16793 char *ptr;
16794 /* The current word of data. */
16795 valueT data;
16796 /* The number of bytes left in this word. */
16797 int n;
bfae80f2 16798
c19d1205 16799 finish_unwind_opcodes ();
bfae80f2 16800
c19d1205
ZW
16801 /* Remember the current text section. */
16802 unwind.saved_seg = now_seg;
16803 unwind.saved_subseg = now_subseg;
bfae80f2 16804
c19d1205 16805 start_unwind_section (now_seg, 0);
bfae80f2 16806
c19d1205 16807 if (unwind.personality_routine == NULL)
bfae80f2 16808 {
c19d1205
ZW
16809 if (unwind.personality_index == -2)
16810 {
16811 if (have_data)
16812 as_bad (_("handerdata in cantunwind frame"));
16813 return 1; /* EXIDX_CANTUNWIND. */
16814 }
bfae80f2 16815
c19d1205
ZW
16816 /* Use a default personality routine if none is specified. */
16817 if (unwind.personality_index == -1)
16818 {
16819 if (unwind.opcode_count > 3)
16820 unwind.personality_index = 1;
16821 else
16822 unwind.personality_index = 0;
16823 }
bfae80f2 16824
c19d1205
ZW
16825 /* Space for the personality routine entry. */
16826 if (unwind.personality_index == 0)
16827 {
16828 if (unwind.opcode_count > 3)
16829 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 16830
c19d1205
ZW
16831 if (!have_data)
16832 {
16833 /* All the data is inline in the index table. */
16834 data = 0x80;
16835 n = 3;
16836 while (unwind.opcode_count > 0)
16837 {
16838 unwind.opcode_count--;
16839 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
16840 n--;
16841 }
bfae80f2 16842
c19d1205
ZW
16843 /* Pad with "finish" opcodes. */
16844 while (n--)
16845 data = (data << 8) | 0xb0;
bfae80f2 16846
c19d1205
ZW
16847 return data;
16848 }
16849 size = 0;
16850 }
16851 else
16852 /* We get two opcodes "free" in the first word. */
16853 size = unwind.opcode_count - 2;
16854 }
16855 else
16856 /* An extra byte is required for the opcode count. */
16857 size = unwind.opcode_count + 1;
bfae80f2 16858
c19d1205
ZW
16859 size = (size + 3) >> 2;
16860 if (size > 0xff)
16861 as_bad (_("too many unwind opcodes"));
bfae80f2 16862
c19d1205
ZW
16863 frag_align (2, 0, 0);
16864 record_alignment (now_seg, 2);
16865 unwind.table_entry = expr_build_dot ();
16866
16867 /* Allocate the table entry. */
16868 ptr = frag_more ((size << 2) + 4);
16869 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 16870
c19d1205 16871 switch (unwind.personality_index)
bfae80f2 16872 {
c19d1205
ZW
16873 case -1:
16874 /* ??? Should this be a PLT generating relocation? */
16875 /* Custom personality routine. */
16876 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
16877 BFD_RELOC_ARM_PREL31);
bfae80f2 16878
c19d1205
ZW
16879 where += 4;
16880 ptr += 4;
bfae80f2 16881
c19d1205
ZW
16882 /* Set the first byte to the number of additional words. */
16883 data = size - 1;
16884 n = 3;
16885 break;
bfae80f2 16886
c19d1205
ZW
16887 /* ABI defined personality routines. */
16888 case 0:
16889 /* Three opcodes bytes are packed into the first word. */
16890 data = 0x80;
16891 n = 3;
16892 break;
bfae80f2 16893
c19d1205
ZW
16894 case 1:
16895 case 2:
16896 /* The size and first two opcode bytes go in the first word. */
16897 data = ((0x80 + unwind.personality_index) << 8) | size;
16898 n = 2;
16899 break;
bfae80f2 16900
c19d1205
ZW
16901 default:
16902 /* Should never happen. */
16903 abort ();
16904 }
bfae80f2 16905
c19d1205
ZW
16906 /* Pack the opcodes into words (MSB first), reversing the list at the same
16907 time. */
16908 while (unwind.opcode_count > 0)
16909 {
16910 if (n == 0)
16911 {
16912 md_number_to_chars (ptr, data, 4);
16913 ptr += 4;
16914 n = 4;
16915 data = 0;
16916 }
16917 unwind.opcode_count--;
16918 n--;
16919 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
16920 }
16921
16922 /* Finish off the last word. */
16923 if (n < 4)
16924 {
16925 /* Pad with "finish" opcodes. */
16926 while (n--)
16927 data = (data << 8) | 0xb0;
16928
16929 md_number_to_chars (ptr, data, 4);
16930 }
16931
16932 if (!have_data)
16933 {
16934 /* Add an empty descriptor if there is no user-specified data. */
16935 ptr = frag_more (4);
16936 md_number_to_chars (ptr, 0, 4);
16937 }
16938
16939 return 0;
bfae80f2
RE
16940}
16941
f0927246
NC
16942
16943/* Initialize the DWARF-2 unwind information for this procedure. */
16944
16945void
16946tc_arm_frame_initial_instructions (void)
16947{
16948 cfi_add_CFA_def_cfa (REG_SP, 0);
16949}
16950#endif /* OBJ_ELF */
16951
c19d1205
ZW
16952/* Convert REGNAME to a DWARF-2 register number. */
16953
16954int
1df69f4f 16955tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 16956{
1df69f4f 16957 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
c19d1205
ZW
16958
16959 if (reg == FAIL)
16960 return -1;
16961
16962 return reg;
bfae80f2
RE
16963}
16964
f0927246 16965#ifdef TE_PE
c19d1205 16966void
f0927246 16967tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 16968{
f0927246 16969 expressionS expr;
bfae80f2 16970
f0927246
NC
16971 expr.X_op = O_secrel;
16972 expr.X_add_symbol = symbol;
16973 expr.X_add_number = 0;
16974 emit_expr (&expr, size);
16975}
16976#endif
bfae80f2 16977
c19d1205 16978/* MD interface: Symbol and relocation handling. */
bfae80f2 16979
2fc8bdac
ZW
16980/* Return the address within the segment that a PC-relative fixup is
16981 relative to. For ARM, PC-relative fixups applied to instructions
16982 are generally relative to the location of the fixup plus 8 bytes.
16983 Thumb branches are offset by 4, and Thumb loads relative to PC
16984 require special handling. */
bfae80f2 16985
c19d1205 16986long
2fc8bdac 16987md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 16988{
2fc8bdac
ZW
16989 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
16990
16991 /* If this is pc-relative and we are going to emit a relocation
16992 then we just want to put out any pipeline compensation that the linker
53baae48
NC
16993 will need. Otherwise we want to use the calculated base.
16994 For WinCE we skip the bias for externals as well, since this
16995 is how the MS ARM-CE assembler behaves and we want to be compatible. */
2fc8bdac
ZW
16996 if (fixP->fx_pcrel
16997 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
16998 || (arm_force_relocation (fixP)
16999#ifdef TE_WINCE
17000 && !S_IS_EXTERNAL (fixP->fx_addsy)
17001#endif
17002 )))
2fc8bdac 17003 base = 0;
bfae80f2 17004
c19d1205 17005 switch (fixP->fx_r_type)
bfae80f2 17006 {
2fc8bdac
ZW
17007 /* PC relative addressing on the Thumb is slightly odd as the
17008 bottom two bits of the PC are forced to zero for the
17009 calculation. This happens *after* application of the
17010 pipeline offset. However, Thumb adrl already adjusts for
17011 this, so we need not do it again. */
c19d1205 17012 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 17013 return base & ~3;
c19d1205
ZW
17014
17015 case BFD_RELOC_ARM_THUMB_OFFSET:
17016 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 17017 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 17018 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 17019 return (base + 4) & ~3;
c19d1205 17020
2fc8bdac
ZW
17021 /* Thumb branches are simply offset by +4. */
17022 case BFD_RELOC_THUMB_PCREL_BRANCH7:
17023 case BFD_RELOC_THUMB_PCREL_BRANCH9:
17024 case BFD_RELOC_THUMB_PCREL_BRANCH12:
17025 case BFD_RELOC_THUMB_PCREL_BRANCH20:
17026 case BFD_RELOC_THUMB_PCREL_BRANCH23:
17027 case BFD_RELOC_THUMB_PCREL_BRANCH25:
17028 case BFD_RELOC_THUMB_PCREL_BLX:
17029 return base + 4;
bfae80f2 17030
2fc8bdac
ZW
17031 /* ARM mode branches are offset by +8. However, the Windows CE
17032 loader expects the relocation not to take this into account. */
17033 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c
PB
17034 case BFD_RELOC_ARM_PCREL_CALL:
17035 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac
ZW
17036 case BFD_RELOC_ARM_PCREL_BLX:
17037 case BFD_RELOC_ARM_PLT32:
c19d1205 17038#ifdef TE_WINCE
53baae48
NC
17039 /* When handling fixups immediately, because we have already
17040 discovered the value of a symbol, or the address of the frag involved
17041 we must account for the offset by +8, as the OS loader will never see the reloc.
17042 see fixup_segment() in write.c
17043 The S_IS_EXTERNAL test handles the case of global symbols.
17044 Those need the calculated base, not just the pipe compensation the linker will need. */
17045 if (fixP->fx_pcrel
17046 && fixP->fx_addsy != NULL
17047 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
17048 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
17049 return base + 8;
2fc8bdac 17050 return base;
c19d1205 17051#else
2fc8bdac 17052 return base + 8;
c19d1205 17053#endif
2fc8bdac
ZW
17054
17055 /* ARM mode loads relative to PC are also offset by +8. Unlike
17056 branches, the Windows CE loader *does* expect the relocation
17057 to take this into account. */
17058 case BFD_RELOC_ARM_OFFSET_IMM:
17059 case BFD_RELOC_ARM_OFFSET_IMM8:
17060 case BFD_RELOC_ARM_HWLITERAL:
17061 case BFD_RELOC_ARM_LITERAL:
17062 case BFD_RELOC_ARM_CP_OFF_IMM:
17063 return base + 8;
17064
17065
17066 /* Other PC-relative relocations are un-offset. */
17067 default:
17068 return base;
17069 }
bfae80f2
RE
17070}
17071
c19d1205
ZW
17072/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
17073 Otherwise we have no need to default values of symbols. */
17074
17075symbolS *
17076md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
bfae80f2 17077{
c19d1205
ZW
17078#ifdef OBJ_ELF
17079 if (name[0] == '_' && name[1] == 'G'
17080 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
17081 {
17082 if (!GOT_symbol)
17083 {
17084 if (symbol_find (name))
17085 as_bad ("GOT already in the symbol table");
bfae80f2 17086
c19d1205
ZW
17087 GOT_symbol = symbol_new (name, undefined_section,
17088 (valueT) 0, & zero_address_frag);
17089 }
bfae80f2 17090
c19d1205 17091 return GOT_symbol;
bfae80f2 17092 }
c19d1205 17093#endif
bfae80f2 17094
c19d1205 17095 return 0;
bfae80f2
RE
17096}
17097
55cf6793 17098/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
17099 computed as two separate immediate values, added together. We
17100 already know that this value cannot be computed by just one ARM
17101 instruction. */
17102
17103static unsigned int
17104validate_immediate_twopart (unsigned int val,
17105 unsigned int * highpart)
bfae80f2 17106{
c19d1205
ZW
17107 unsigned int a;
17108 unsigned int i;
bfae80f2 17109
c19d1205
ZW
17110 for (i = 0; i < 32; i += 2)
17111 if (((a = rotate_left (val, i)) & 0xff) != 0)
17112 {
17113 if (a & 0xff00)
17114 {
17115 if (a & ~ 0xffff)
17116 continue;
17117 * highpart = (a >> 8) | ((i + 24) << 7);
17118 }
17119 else if (a & 0xff0000)
17120 {
17121 if (a & 0xff000000)
17122 continue;
17123 * highpart = (a >> 16) | ((i + 16) << 7);
17124 }
17125 else
17126 {
17127 assert (a & 0xff000000);
17128 * highpart = (a >> 24) | ((i + 8) << 7);
17129 }
bfae80f2 17130
c19d1205
ZW
17131 return (a & 0xff) | (i << 7);
17132 }
bfae80f2 17133
c19d1205 17134 return FAIL;
bfae80f2
RE
17135}
17136
c19d1205
ZW
17137static int
17138validate_offset_imm (unsigned int val, int hwse)
17139{
17140 if ((hwse && val > 255) || val > 4095)
17141 return FAIL;
17142 return val;
17143}
bfae80f2 17144
55cf6793 17145/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
17146 negative immediate constant by altering the instruction. A bit of
17147 a hack really.
17148 MOV <-> MVN
17149 AND <-> BIC
17150 ADC <-> SBC
17151 by inverting the second operand, and
17152 ADD <-> SUB
17153 CMP <-> CMN
17154 by negating the second operand. */
bfae80f2 17155
c19d1205
ZW
17156static int
17157negate_data_op (unsigned long * instruction,
17158 unsigned long value)
bfae80f2 17159{
c19d1205
ZW
17160 int op, new_inst;
17161 unsigned long negated, inverted;
bfae80f2 17162
c19d1205
ZW
17163 negated = encode_arm_immediate (-value);
17164 inverted = encode_arm_immediate (~value);
bfae80f2 17165
c19d1205
ZW
17166 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
17167 switch (op)
bfae80f2 17168 {
c19d1205
ZW
17169 /* First negates. */
17170 case OPCODE_SUB: /* ADD <-> SUB */
17171 new_inst = OPCODE_ADD;
17172 value = negated;
17173 break;
bfae80f2 17174
c19d1205
ZW
17175 case OPCODE_ADD:
17176 new_inst = OPCODE_SUB;
17177 value = negated;
17178 break;
bfae80f2 17179
c19d1205
ZW
17180 case OPCODE_CMP: /* CMP <-> CMN */
17181 new_inst = OPCODE_CMN;
17182 value = negated;
17183 break;
bfae80f2 17184
c19d1205
ZW
17185 case OPCODE_CMN:
17186 new_inst = OPCODE_CMP;
17187 value = negated;
17188 break;
bfae80f2 17189
c19d1205
ZW
17190 /* Now Inverted ops. */
17191 case OPCODE_MOV: /* MOV <-> MVN */
17192 new_inst = OPCODE_MVN;
17193 value = inverted;
17194 break;
bfae80f2 17195
c19d1205
ZW
17196 case OPCODE_MVN:
17197 new_inst = OPCODE_MOV;
17198 value = inverted;
17199 break;
bfae80f2 17200
c19d1205
ZW
17201 case OPCODE_AND: /* AND <-> BIC */
17202 new_inst = OPCODE_BIC;
17203 value = inverted;
17204 break;
bfae80f2 17205
c19d1205
ZW
17206 case OPCODE_BIC:
17207 new_inst = OPCODE_AND;
17208 value = inverted;
17209 break;
bfae80f2 17210
c19d1205
ZW
17211 case OPCODE_ADC: /* ADC <-> SBC */
17212 new_inst = OPCODE_SBC;
17213 value = inverted;
17214 break;
bfae80f2 17215
c19d1205
ZW
17216 case OPCODE_SBC:
17217 new_inst = OPCODE_ADC;
17218 value = inverted;
17219 break;
bfae80f2 17220
c19d1205
ZW
17221 /* We cannot do anything. */
17222 default:
17223 return FAIL;
b99bd4ef
NC
17224 }
17225
c19d1205
ZW
17226 if (value == (unsigned) FAIL)
17227 return FAIL;
17228
17229 *instruction &= OPCODE_MASK;
17230 *instruction |= new_inst << DATA_OP_SHIFT;
17231 return value;
b99bd4ef
NC
17232}
17233
ef8d22e6
PB
17234/* Like negate_data_op, but for Thumb-2. */
17235
17236static unsigned int
17237thumb32_negate_data_op (offsetT *instruction, offsetT value)
17238{
17239 int op, new_inst;
17240 int rd;
17241 offsetT negated, inverted;
17242
17243 negated = encode_thumb32_immediate (-value);
17244 inverted = encode_thumb32_immediate (~value);
17245
17246 rd = (*instruction >> 8) & 0xf;
17247 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
17248 switch (op)
17249 {
17250 /* ADD <-> SUB. Includes CMP <-> CMN. */
17251 case T2_OPCODE_SUB:
17252 new_inst = T2_OPCODE_ADD;
17253 value = negated;
17254 break;
17255
17256 case T2_OPCODE_ADD:
17257 new_inst = T2_OPCODE_SUB;
17258 value = negated;
17259 break;
17260
17261 /* ORR <-> ORN. Includes MOV <-> MVN. */
17262 case T2_OPCODE_ORR:
17263 new_inst = T2_OPCODE_ORN;
17264 value = inverted;
17265 break;
17266
17267 case T2_OPCODE_ORN:
17268 new_inst = T2_OPCODE_ORR;
17269 value = inverted;
17270 break;
17271
17272 /* AND <-> BIC. TST has no inverted equivalent. */
17273 case T2_OPCODE_AND:
17274 new_inst = T2_OPCODE_BIC;
17275 if (rd == 15)
17276 value = FAIL;
17277 else
17278 value = inverted;
17279 break;
17280
17281 case T2_OPCODE_BIC:
17282 new_inst = T2_OPCODE_AND;
17283 value = inverted;
17284 break;
17285
17286 /* ADC <-> SBC */
17287 case T2_OPCODE_ADC:
17288 new_inst = T2_OPCODE_SBC;
17289 value = inverted;
17290 break;
17291
17292 case T2_OPCODE_SBC:
17293 new_inst = T2_OPCODE_ADC;
17294 value = inverted;
17295 break;
17296
17297 /* We cannot do anything. */
17298 default:
17299 return FAIL;
17300 }
17301
17302 if (value == FAIL)
17303 return FAIL;
17304
17305 *instruction &= T2_OPCODE_MASK;
17306 *instruction |= new_inst << T2_DATA_OP_SHIFT;
17307 return value;
17308}
17309
8f06b2d8
PB
17310/* Read a 32-bit thumb instruction from buf. */
17311static unsigned long
17312get_thumb32_insn (char * buf)
17313{
17314 unsigned long insn;
17315 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
17316 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
17317
17318 return insn;
17319}
17320
a8bc6c78
PB
17321
17322/* We usually want to set the low bit on the address of thumb function
17323 symbols. In particular .word foo - . should have the low bit set.
17324 Generic code tries to fold the difference of two symbols to
17325 a constant. Prevent this and force a relocation when the first symbols
17326 is a thumb function. */
17327int
17328arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
17329{
17330 if (op == O_subtract
17331 && l->X_op == O_symbol
17332 && r->X_op == O_symbol
17333 && THUMB_IS_FUNC (l->X_add_symbol))
17334 {
17335 l->X_op = O_subtract;
17336 l->X_op_symbol = r->X_add_symbol;
17337 l->X_add_number -= r->X_add_number;
17338 return 1;
17339 }
17340 /* Process as normal. */
17341 return 0;
17342}
17343
c19d1205 17344void
55cf6793 17345md_apply_fix (fixS * fixP,
c19d1205
ZW
17346 valueT * valP,
17347 segT seg)
17348{
17349 offsetT value = * valP;
17350 offsetT newval;
17351 unsigned int newimm;
17352 unsigned long temp;
17353 int sign;
17354 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 17355
c19d1205 17356 assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 17357
c19d1205 17358 /* Note whether this will delete the relocation. */
4962c51a 17359
c19d1205
ZW
17360 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
17361 fixP->fx_done = 1;
b99bd4ef 17362
adbaf948
ZW
17363 /* On a 64-bit host, silently truncate 'value' to 32 bits for
17364 consistency with the behavior on 32-bit hosts. Remember value
17365 for emit_reloc. */
17366 value &= 0xffffffff;
17367 value ^= 0x80000000;
17368 value -= 0x80000000;
17369
17370 *valP = value;
c19d1205 17371 fixP->fx_addnumber = value;
b99bd4ef 17372
adbaf948
ZW
17373 /* Same treatment for fixP->fx_offset. */
17374 fixP->fx_offset &= 0xffffffff;
17375 fixP->fx_offset ^= 0x80000000;
17376 fixP->fx_offset -= 0x80000000;
17377
c19d1205 17378 switch (fixP->fx_r_type)
b99bd4ef 17379 {
c19d1205
ZW
17380 case BFD_RELOC_NONE:
17381 /* This will need to go in the object file. */
17382 fixP->fx_done = 0;
17383 break;
b99bd4ef 17384
c19d1205
ZW
17385 case BFD_RELOC_ARM_IMMEDIATE:
17386 /* We claim that this fixup has been processed here,
17387 even if in fact we generate an error because we do
17388 not have a reloc for it, so tc_gen_reloc will reject it. */
17389 fixP->fx_done = 1;
b99bd4ef 17390
c19d1205
ZW
17391 if (fixP->fx_addsy
17392 && ! S_IS_DEFINED (fixP->fx_addsy))
b99bd4ef 17393 {
c19d1205
ZW
17394 as_bad_where (fixP->fx_file, fixP->fx_line,
17395 _("undefined symbol %s used as an immediate value"),
17396 S_GET_NAME (fixP->fx_addsy));
17397 break;
b99bd4ef
NC
17398 }
17399
c19d1205
ZW
17400 newimm = encode_arm_immediate (value);
17401 temp = md_chars_to_number (buf, INSN_SIZE);
17402
17403 /* If the instruction will fail, see if we can fix things up by
17404 changing the opcode. */
17405 if (newimm == (unsigned int) FAIL
17406 && (newimm = negate_data_op (&temp, value)) == (unsigned int) FAIL)
b99bd4ef 17407 {
c19d1205
ZW
17408 as_bad_where (fixP->fx_file, fixP->fx_line,
17409 _("invalid constant (%lx) after fixup"),
17410 (unsigned long) value);
17411 break;
b99bd4ef 17412 }
b99bd4ef 17413
c19d1205
ZW
17414 newimm |= (temp & 0xfffff000);
17415 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
17416 break;
b99bd4ef 17417
c19d1205
ZW
17418 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
17419 {
17420 unsigned int highpart = 0;
17421 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 17422
c19d1205
ZW
17423 newimm = encode_arm_immediate (value);
17424 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 17425
c19d1205
ZW
17426 /* If the instruction will fail, see if we can fix things up by
17427 changing the opcode. */
17428 if (newimm == (unsigned int) FAIL
17429 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
17430 {
17431 /* No ? OK - try using two ADD instructions to generate
17432 the value. */
17433 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 17434
c19d1205
ZW
17435 /* Yes - then make sure that the second instruction is
17436 also an add. */
17437 if (newimm != (unsigned int) FAIL)
17438 newinsn = temp;
17439 /* Still No ? Try using a negated value. */
17440 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
17441 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
17442 /* Otherwise - give up. */
17443 else
17444 {
17445 as_bad_where (fixP->fx_file, fixP->fx_line,
17446 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
17447 (long) value);
17448 break;
17449 }
b99bd4ef 17450
c19d1205
ZW
17451 /* Replace the first operand in the 2nd instruction (which
17452 is the PC) with the destination register. We have
17453 already added in the PC in the first instruction and we
17454 do not want to do it again. */
17455 newinsn &= ~ 0xf0000;
17456 newinsn |= ((newinsn & 0x0f000) << 4);
17457 }
b99bd4ef 17458
c19d1205
ZW
17459 newimm |= (temp & 0xfffff000);
17460 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 17461
c19d1205
ZW
17462 highpart |= (newinsn & 0xfffff000);
17463 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
17464 }
17465 break;
b99bd4ef 17466
c19d1205 17467 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
17468 if (!fixP->fx_done && seg->use_rela_p)
17469 value = 0;
17470
c19d1205
ZW
17471 case BFD_RELOC_ARM_LITERAL:
17472 sign = value >= 0;
b99bd4ef 17473
c19d1205
ZW
17474 if (value < 0)
17475 value = - value;
b99bd4ef 17476
c19d1205 17477 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 17478 {
c19d1205
ZW
17479 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
17480 as_bad_where (fixP->fx_file, fixP->fx_line,
17481 _("invalid literal constant: pool needs to be closer"));
17482 else
17483 as_bad_where (fixP->fx_file, fixP->fx_line,
17484 _("bad immediate value for offset (%ld)"),
17485 (long) value);
17486 break;
f03698e6
RE
17487 }
17488
c19d1205
ZW
17489 newval = md_chars_to_number (buf, INSN_SIZE);
17490 newval &= 0xff7ff000;
17491 newval |= value | (sign ? INDEX_UP : 0);
17492 md_number_to_chars (buf, newval, INSN_SIZE);
17493 break;
b99bd4ef 17494
c19d1205
ZW
17495 case BFD_RELOC_ARM_OFFSET_IMM8:
17496 case BFD_RELOC_ARM_HWLITERAL:
17497 sign = value >= 0;
b99bd4ef 17498
c19d1205
ZW
17499 if (value < 0)
17500 value = - value;
b99bd4ef 17501
c19d1205 17502 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 17503 {
c19d1205
ZW
17504 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
17505 as_bad_where (fixP->fx_file, fixP->fx_line,
17506 _("invalid literal constant: pool needs to be closer"));
17507 else
17508 as_bad (_("bad immediate value for half-word offset (%ld)"),
17509 (long) value);
17510 break;
b99bd4ef
NC
17511 }
17512
c19d1205
ZW
17513 newval = md_chars_to_number (buf, INSN_SIZE);
17514 newval &= 0xff7ff0f0;
17515 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
17516 md_number_to_chars (buf, newval, INSN_SIZE);
17517 break;
b99bd4ef 17518
c19d1205
ZW
17519 case BFD_RELOC_ARM_T32_OFFSET_U8:
17520 if (value < 0 || value > 1020 || value % 4 != 0)
17521 as_bad_where (fixP->fx_file, fixP->fx_line,
17522 _("bad immediate value for offset (%ld)"), (long) value);
17523 value /= 4;
b99bd4ef 17524
c19d1205 17525 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
17526 newval |= value;
17527 md_number_to_chars (buf+2, newval, THUMB_SIZE);
17528 break;
b99bd4ef 17529
c19d1205
ZW
17530 case BFD_RELOC_ARM_T32_OFFSET_IMM:
17531 /* This is a complicated relocation used for all varieties of Thumb32
17532 load/store instruction with immediate offset:
17533
17534 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
17535 *4, optional writeback(W)
17536 (doubleword load/store)
17537
17538 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
17539 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
17540 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
17541 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
17542 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
17543
17544 Uppercase letters indicate bits that are already encoded at
17545 this point. Lowercase letters are our problem. For the
17546 second block of instructions, the secondary opcode nybble
17547 (bits 8..11) is present, and bit 23 is zero, even if this is
17548 a PC-relative operation. */
17549 newval = md_chars_to_number (buf, THUMB_SIZE);
17550 newval <<= 16;
17551 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 17552
c19d1205 17553 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 17554 {
c19d1205
ZW
17555 /* Doubleword load/store: 8-bit offset, scaled by 4. */
17556 if (value >= 0)
17557 newval |= (1 << 23);
17558 else
17559 value = -value;
17560 if (value % 4 != 0)
17561 {
17562 as_bad_where (fixP->fx_file, fixP->fx_line,
17563 _("offset not a multiple of 4"));
17564 break;
17565 }
17566 value /= 4;
216d22bc 17567 if (value > 0xff)
c19d1205
ZW
17568 {
17569 as_bad_where (fixP->fx_file, fixP->fx_line,
17570 _("offset out of range"));
17571 break;
17572 }
17573 newval &= ~0xff;
b99bd4ef 17574 }
c19d1205 17575 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 17576 {
c19d1205
ZW
17577 /* PC-relative, 12-bit offset. */
17578 if (value >= 0)
17579 newval |= (1 << 23);
17580 else
17581 value = -value;
216d22bc 17582 if (value > 0xfff)
c19d1205
ZW
17583 {
17584 as_bad_where (fixP->fx_file, fixP->fx_line,
17585 _("offset out of range"));
17586 break;
17587 }
17588 newval &= ~0xfff;
b99bd4ef 17589 }
c19d1205 17590 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 17591 {
c19d1205
ZW
17592 /* Writeback: 8-bit, +/- offset. */
17593 if (value >= 0)
17594 newval |= (1 << 9);
17595 else
17596 value = -value;
216d22bc 17597 if (value > 0xff)
c19d1205
ZW
17598 {
17599 as_bad_where (fixP->fx_file, fixP->fx_line,
17600 _("offset out of range"));
17601 break;
17602 }
17603 newval &= ~0xff;
b99bd4ef 17604 }
c19d1205 17605 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 17606 {
c19d1205 17607 /* T-instruction: positive 8-bit offset. */
216d22bc 17608 if (value < 0 || value > 0xff)
b99bd4ef 17609 {
c19d1205
ZW
17610 as_bad_where (fixP->fx_file, fixP->fx_line,
17611 _("offset out of range"));
17612 break;
b99bd4ef 17613 }
c19d1205
ZW
17614 newval &= ~0xff;
17615 newval |= value;
b99bd4ef
NC
17616 }
17617 else
b99bd4ef 17618 {
c19d1205
ZW
17619 /* Positive 12-bit or negative 8-bit offset. */
17620 int limit;
17621 if (value >= 0)
b99bd4ef 17622 {
c19d1205
ZW
17623 newval |= (1 << 23);
17624 limit = 0xfff;
17625 }
17626 else
17627 {
17628 value = -value;
17629 limit = 0xff;
17630 }
17631 if (value > limit)
17632 {
17633 as_bad_where (fixP->fx_file, fixP->fx_line,
17634 _("offset out of range"));
17635 break;
b99bd4ef 17636 }
c19d1205 17637 newval &= ~limit;
b99bd4ef 17638 }
b99bd4ef 17639
c19d1205
ZW
17640 newval |= value;
17641 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
17642 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
17643 break;
404ff6b5 17644
c19d1205
ZW
17645 case BFD_RELOC_ARM_SHIFT_IMM:
17646 newval = md_chars_to_number (buf, INSN_SIZE);
17647 if (((unsigned long) value) > 32
17648 || (value == 32
17649 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
17650 {
17651 as_bad_where (fixP->fx_file, fixP->fx_line,
17652 _("shift expression is too large"));
17653 break;
17654 }
404ff6b5 17655
c19d1205
ZW
17656 if (value == 0)
17657 /* Shifts of zero must be done as lsl. */
17658 newval &= ~0x60;
17659 else if (value == 32)
17660 value = 0;
17661 newval &= 0xfffff07f;
17662 newval |= (value & 0x1f) << 7;
17663 md_number_to_chars (buf, newval, INSN_SIZE);
17664 break;
404ff6b5 17665
c19d1205 17666 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 17667 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 17668 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 17669 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
17670 /* We claim that this fixup has been processed here,
17671 even if in fact we generate an error because we do
17672 not have a reloc for it, so tc_gen_reloc will reject it. */
17673 fixP->fx_done = 1;
404ff6b5 17674
c19d1205
ZW
17675 if (fixP->fx_addsy
17676 && ! S_IS_DEFINED (fixP->fx_addsy))
17677 {
17678 as_bad_where (fixP->fx_file, fixP->fx_line,
17679 _("undefined symbol %s used as an immediate value"),
17680 S_GET_NAME (fixP->fx_addsy));
17681 break;
17682 }
404ff6b5 17683
c19d1205
ZW
17684 newval = md_chars_to_number (buf, THUMB_SIZE);
17685 newval <<= 16;
17686 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 17687
16805f35
PB
17688 newimm = FAIL;
17689 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
17690 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
17691 {
17692 newimm = encode_thumb32_immediate (value);
17693 if (newimm == (unsigned int) FAIL)
17694 newimm = thumb32_negate_data_op (&newval, value);
17695 }
16805f35
PB
17696 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
17697 && newimm == (unsigned int) FAIL)
92e90b6e 17698 {
16805f35
PB
17699 /* Turn add/sum into addw/subw. */
17700 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
17701 newval = (newval & 0xfeffffff) | 0x02000000;
17702
e9f89963
PB
17703 /* 12 bit immediate for addw/subw. */
17704 if (value < 0)
17705 {
17706 value = -value;
17707 newval ^= 0x00a00000;
17708 }
92e90b6e
PB
17709 if (value > 0xfff)
17710 newimm = (unsigned int) FAIL;
17711 else
17712 newimm = value;
17713 }
cc8a6dd0 17714
c19d1205 17715 if (newimm == (unsigned int)FAIL)
3631a3c8 17716 {
c19d1205
ZW
17717 as_bad_where (fixP->fx_file, fixP->fx_line,
17718 _("invalid constant (%lx) after fixup"),
17719 (unsigned long) value);
17720 break;
3631a3c8
NC
17721 }
17722
c19d1205
ZW
17723 newval |= (newimm & 0x800) << 15;
17724 newval |= (newimm & 0x700) << 4;
17725 newval |= (newimm & 0x0ff);
cc8a6dd0 17726
c19d1205
ZW
17727 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
17728 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
17729 break;
a737bd4d 17730
3eb17e6b 17731 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
17732 if (((unsigned long) value) > 0xffff)
17733 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 17734 _("invalid smc expression"));
2fc8bdac 17735 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
17736 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
17737 md_number_to_chars (buf, newval, INSN_SIZE);
17738 break;
a737bd4d 17739
c19d1205 17740 case BFD_RELOC_ARM_SWI:
adbaf948 17741 if (fixP->tc_fix_data != 0)
c19d1205
ZW
17742 {
17743 if (((unsigned long) value) > 0xff)
17744 as_bad_where (fixP->fx_file, fixP->fx_line,
17745 _("invalid swi expression"));
2fc8bdac 17746 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
17747 newval |= value;
17748 md_number_to_chars (buf, newval, THUMB_SIZE);
17749 }
17750 else
17751 {
17752 if (((unsigned long) value) > 0x00ffffff)
17753 as_bad_where (fixP->fx_file, fixP->fx_line,
17754 _("invalid swi expression"));
2fc8bdac 17755 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
17756 newval |= value;
17757 md_number_to_chars (buf, newval, INSN_SIZE);
17758 }
17759 break;
a737bd4d 17760
c19d1205
ZW
17761 case BFD_RELOC_ARM_MULTI:
17762 if (((unsigned long) value) > 0xffff)
17763 as_bad_where (fixP->fx_file, fixP->fx_line,
17764 _("invalid expression in load/store multiple"));
17765 newval = value | md_chars_to_number (buf, INSN_SIZE);
17766 md_number_to_chars (buf, newval, INSN_SIZE);
17767 break;
a737bd4d 17768
c19d1205 17769#ifdef OBJ_ELF
39b41c9c
PB
17770 case BFD_RELOC_ARM_PCREL_CALL:
17771 newval = md_chars_to_number (buf, INSN_SIZE);
17772 if ((newval & 0xf0000000) == 0xf0000000)
17773 temp = 1;
17774 else
17775 temp = 3;
17776 goto arm_branch_common;
17777
17778 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 17779 case BFD_RELOC_ARM_PLT32:
c19d1205 17780#endif
39b41c9c
PB
17781 case BFD_RELOC_ARM_PCREL_BRANCH:
17782 temp = 3;
17783 goto arm_branch_common;
a737bd4d 17784
39b41c9c
PB
17785 case BFD_RELOC_ARM_PCREL_BLX:
17786 temp = 1;
17787 arm_branch_common:
c19d1205 17788 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
17789 instruction, in a 24 bit, signed field. Bits 26 through 32 either
17790 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
17791 also be be clear. */
17792 if (value & temp)
c19d1205 17793 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
17794 _("misaligned branch destination"));
17795 if ((value & (offsetT)0xfe000000) != (offsetT)0
17796 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
17797 as_bad_where (fixP->fx_file, fixP->fx_line,
17798 _("branch out of range"));
a737bd4d 17799
2fc8bdac 17800 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 17801 {
2fc8bdac
ZW
17802 newval = md_chars_to_number (buf, INSN_SIZE);
17803 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
17804 /* Set the H bit on BLX instructions. */
17805 if (temp == 1)
17806 {
17807 if (value & 2)
17808 newval |= 0x01000000;
17809 else
17810 newval &= ~0x01000000;
17811 }
2fc8bdac 17812 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 17813 }
c19d1205 17814 break;
a737bd4d 17815
c19d1205 17816 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CZB */
2fc8bdac
ZW
17817 /* CZB can only branch forward. */
17818 if (value & ~0x7e)
17819 as_bad_where (fixP->fx_file, fixP->fx_line,
17820 _("branch out of range"));
a737bd4d 17821
2fc8bdac
ZW
17822 if (fixP->fx_done || !seg->use_rela_p)
17823 {
17824 newval = md_chars_to_number (buf, THUMB_SIZE);
080eb7fe 17825 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
2fc8bdac
ZW
17826 md_number_to_chars (buf, newval, THUMB_SIZE);
17827 }
c19d1205 17828 break;
a737bd4d 17829
c19d1205 17830 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac
ZW
17831 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
17832 as_bad_where (fixP->fx_file, fixP->fx_line,
17833 _("branch out of range"));
a737bd4d 17834
2fc8bdac
ZW
17835 if (fixP->fx_done || !seg->use_rela_p)
17836 {
17837 newval = md_chars_to_number (buf, THUMB_SIZE);
17838 newval |= (value & 0x1ff) >> 1;
17839 md_number_to_chars (buf, newval, THUMB_SIZE);
17840 }
c19d1205 17841 break;
a737bd4d 17842
c19d1205 17843 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac
ZW
17844 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
17845 as_bad_where (fixP->fx_file, fixP->fx_line,
17846 _("branch out of range"));
a737bd4d 17847
2fc8bdac
ZW
17848 if (fixP->fx_done || !seg->use_rela_p)
17849 {
17850 newval = md_chars_to_number (buf, THUMB_SIZE);
17851 newval |= (value & 0xfff) >> 1;
17852 md_number_to_chars (buf, newval, THUMB_SIZE);
17853 }
c19d1205 17854 break;
a737bd4d 17855
c19d1205 17856 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac
ZW
17857 if ((value & ~0x1fffff) && ((value & ~0x1fffff) != ~0x1fffff))
17858 as_bad_where (fixP->fx_file, fixP->fx_line,
17859 _("conditional branch out of range"));
404ff6b5 17860
2fc8bdac
ZW
17861 if (fixP->fx_done || !seg->use_rela_p)
17862 {
17863 offsetT newval2;
17864 addressT S, J1, J2, lo, hi;
404ff6b5 17865
2fc8bdac
ZW
17866 S = (value & 0x00100000) >> 20;
17867 J2 = (value & 0x00080000) >> 19;
17868 J1 = (value & 0x00040000) >> 18;
17869 hi = (value & 0x0003f000) >> 12;
17870 lo = (value & 0x00000ffe) >> 1;
6c43fab6 17871
2fc8bdac
ZW
17872 newval = md_chars_to_number (buf, THUMB_SIZE);
17873 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
17874 newval |= (S << 10) | hi;
17875 newval2 |= (J1 << 13) | (J2 << 11) | lo;
17876 md_number_to_chars (buf, newval, THUMB_SIZE);
17877 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
17878 }
c19d1205 17879 break;
6c43fab6 17880
c19d1205
ZW
17881 case BFD_RELOC_THUMB_PCREL_BLX:
17882 case BFD_RELOC_THUMB_PCREL_BRANCH23:
2fc8bdac
ZW
17883 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
17884 as_bad_where (fixP->fx_file, fixP->fx_line,
17885 _("branch out of range"));
404ff6b5 17886
2fc8bdac
ZW
17887 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
17888 /* For a BLX instruction, make sure that the relocation is rounded up
17889 to a word boundary. This follows the semantics of the instruction
17890 which specifies that bit 1 of the target address will come from bit
17891 1 of the base address. */
17892 value = (value + 1) & ~ 1;
404ff6b5 17893
2fc8bdac 17894 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 17895 {
2fc8bdac
ZW
17896 offsetT newval2;
17897
17898 newval = md_chars_to_number (buf, THUMB_SIZE);
17899 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
17900 newval |= (value & 0x7fffff) >> 12;
17901 newval2 |= (value & 0xfff) >> 1;
17902 md_number_to_chars (buf, newval, THUMB_SIZE);
17903 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
c19d1205 17904 }
c19d1205 17905 break;
404ff6b5 17906
c19d1205 17907 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac
ZW
17908 if ((value & ~0x1ffffff) && ((value & ~0x1ffffff) != ~0x1ffffff))
17909 as_bad_where (fixP->fx_file, fixP->fx_line,
17910 _("branch out of range"));
6c43fab6 17911
2fc8bdac
ZW
17912 if (fixP->fx_done || !seg->use_rela_p)
17913 {
17914 offsetT newval2;
17915 addressT S, I1, I2, lo, hi;
6c43fab6 17916
2fc8bdac
ZW
17917 S = (value & 0x01000000) >> 24;
17918 I1 = (value & 0x00800000) >> 23;
17919 I2 = (value & 0x00400000) >> 22;
17920 hi = (value & 0x003ff000) >> 12;
17921 lo = (value & 0x00000ffe) >> 1;
6c43fab6 17922
2fc8bdac
ZW
17923 I1 = !(I1 ^ S);
17924 I2 = !(I2 ^ S);
a737bd4d 17925
2fc8bdac
ZW
17926 newval = md_chars_to_number (buf, THUMB_SIZE);
17927 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
17928 newval |= (S << 10) | hi;
17929 newval2 |= (I1 << 13) | (I2 << 11) | lo;
17930 md_number_to_chars (buf, newval, THUMB_SIZE);
17931 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
17932 }
17933 break;
a737bd4d 17934
2fc8bdac
ZW
17935 case BFD_RELOC_8:
17936 if (fixP->fx_done || !seg->use_rela_p)
17937 md_number_to_chars (buf, value, 1);
c19d1205 17938 break;
a737bd4d 17939
c19d1205 17940 case BFD_RELOC_16:
2fc8bdac 17941 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 17942 md_number_to_chars (buf, value, 2);
c19d1205 17943 break;
a737bd4d 17944
c19d1205
ZW
17945#ifdef OBJ_ELF
17946 case BFD_RELOC_ARM_TLS_GD32:
17947 case BFD_RELOC_ARM_TLS_LE32:
17948 case BFD_RELOC_ARM_TLS_IE32:
17949 case BFD_RELOC_ARM_TLS_LDM32:
17950 case BFD_RELOC_ARM_TLS_LDO32:
17951 S_SET_THREAD_LOCAL (fixP->fx_addsy);
17952 /* fall through */
6c43fab6 17953
c19d1205
ZW
17954 case BFD_RELOC_ARM_GOT32:
17955 case BFD_RELOC_ARM_GOTOFF:
17956 case BFD_RELOC_ARM_TARGET2:
2fc8bdac
ZW
17957 if (fixP->fx_done || !seg->use_rela_p)
17958 md_number_to_chars (buf, 0, 4);
c19d1205
ZW
17959 break;
17960#endif
6c43fab6 17961
c19d1205
ZW
17962 case BFD_RELOC_RVA:
17963 case BFD_RELOC_32:
17964 case BFD_RELOC_ARM_TARGET1:
17965 case BFD_RELOC_ARM_ROSEGREL32:
17966 case BFD_RELOC_ARM_SBREL32:
17967 case BFD_RELOC_32_PCREL:
f0927246
NC
17968#ifdef TE_PE
17969 case BFD_RELOC_32_SECREL:
17970#endif
2fc8bdac 17971 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
17972#ifdef TE_WINCE
17973 /* For WinCE we only do this for pcrel fixups. */
17974 if (fixP->fx_done || fixP->fx_pcrel)
17975#endif
17976 md_number_to_chars (buf, value, 4);
c19d1205 17977 break;
6c43fab6 17978
c19d1205
ZW
17979#ifdef OBJ_ELF
17980 case BFD_RELOC_ARM_PREL31:
2fc8bdac 17981 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
17982 {
17983 newval = md_chars_to_number (buf, 4) & 0x80000000;
17984 if ((value ^ (value >> 1)) & 0x40000000)
17985 {
17986 as_bad_where (fixP->fx_file, fixP->fx_line,
17987 _("rel31 relocation overflow"));
17988 }
17989 newval |= value & 0x7fffffff;
17990 md_number_to_chars (buf, newval, 4);
17991 }
17992 break;
c19d1205 17993#endif
a737bd4d 17994
c19d1205 17995 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 17996 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
c19d1205
ZW
17997 if (value < -1023 || value > 1023 || (value & 3))
17998 as_bad_where (fixP->fx_file, fixP->fx_line,
17999 _("co-processor offset out of range"));
18000 cp_off_common:
18001 sign = value >= 0;
18002 if (value < 0)
18003 value = -value;
8f06b2d8
PB
18004 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
18005 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
18006 newval = md_chars_to_number (buf, INSN_SIZE);
18007 else
18008 newval = get_thumb32_insn (buf);
18009 newval &= 0xff7fff00;
c19d1205
ZW
18010 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
18011 if (value == 0)
18012 newval &= ~WRITE_BACK;
8f06b2d8
PB
18013 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
18014 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
18015 md_number_to_chars (buf, newval, INSN_SIZE);
18016 else
18017 put_thumb32_insn (buf, newval);
c19d1205 18018 break;
a737bd4d 18019
c19d1205 18020 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 18021 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
18022 if (value < -255 || value > 255)
18023 as_bad_where (fixP->fx_file, fixP->fx_line,
18024 _("co-processor offset out of range"));
df7849c5 18025 value *= 4;
c19d1205 18026 goto cp_off_common;
6c43fab6 18027
c19d1205
ZW
18028 case BFD_RELOC_ARM_THUMB_OFFSET:
18029 newval = md_chars_to_number (buf, THUMB_SIZE);
18030 /* Exactly what ranges, and where the offset is inserted depends
18031 on the type of instruction, we can establish this from the
18032 top 4 bits. */
18033 switch (newval >> 12)
18034 {
18035 case 4: /* PC load. */
18036 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
18037 forced to zero for these loads; md_pcrel_from has already
18038 compensated for this. */
18039 if (value & 3)
18040 as_bad_where (fixP->fx_file, fixP->fx_line,
18041 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
18042 (((unsigned long) fixP->fx_frag->fr_address
18043 + (unsigned long) fixP->fx_where) & ~3)
18044 + (unsigned long) value);
a737bd4d 18045
c19d1205
ZW
18046 if (value & ~0x3fc)
18047 as_bad_where (fixP->fx_file, fixP->fx_line,
18048 _("invalid offset, value too big (0x%08lX)"),
18049 (long) value);
a737bd4d 18050
c19d1205
ZW
18051 newval |= value >> 2;
18052 break;
a737bd4d 18053
c19d1205
ZW
18054 case 9: /* SP load/store. */
18055 if (value & ~0x3fc)
18056 as_bad_where (fixP->fx_file, fixP->fx_line,
18057 _("invalid offset, value too big (0x%08lX)"),
18058 (long) value);
18059 newval |= value >> 2;
18060 break;
6c43fab6 18061
c19d1205
ZW
18062 case 6: /* Word load/store. */
18063 if (value & ~0x7c)
18064 as_bad_where (fixP->fx_file, fixP->fx_line,
18065 _("invalid offset, value too big (0x%08lX)"),
18066 (long) value);
18067 newval |= value << 4; /* 6 - 2. */
18068 break;
a737bd4d 18069
c19d1205
ZW
18070 case 7: /* Byte load/store. */
18071 if (value & ~0x1f)
18072 as_bad_where (fixP->fx_file, fixP->fx_line,
18073 _("invalid offset, value too big (0x%08lX)"),
18074 (long) value);
18075 newval |= value << 6;
18076 break;
a737bd4d 18077
c19d1205
ZW
18078 case 8: /* Halfword load/store. */
18079 if (value & ~0x3e)
18080 as_bad_where (fixP->fx_file, fixP->fx_line,
18081 _("invalid offset, value too big (0x%08lX)"),
18082 (long) value);
18083 newval |= value << 5; /* 6 - 1. */
18084 break;
a737bd4d 18085
c19d1205
ZW
18086 default:
18087 as_bad_where (fixP->fx_file, fixP->fx_line,
18088 "Unable to process relocation for thumb opcode: %lx",
18089 (unsigned long) newval);
18090 break;
18091 }
18092 md_number_to_chars (buf, newval, THUMB_SIZE);
18093 break;
a737bd4d 18094
c19d1205
ZW
18095 case BFD_RELOC_ARM_THUMB_ADD:
18096 /* This is a complicated relocation, since we use it for all of
18097 the following immediate relocations:
a737bd4d 18098
c19d1205
ZW
18099 3bit ADD/SUB
18100 8bit ADD/SUB
18101 9bit ADD/SUB SP word-aligned
18102 10bit ADD PC/SP word-aligned
a737bd4d 18103
c19d1205
ZW
18104 The type of instruction being processed is encoded in the
18105 instruction field:
a737bd4d 18106
c19d1205
ZW
18107 0x8000 SUB
18108 0x00F0 Rd
18109 0x000F Rs
18110 */
18111 newval = md_chars_to_number (buf, THUMB_SIZE);
18112 {
18113 int rd = (newval >> 4) & 0xf;
18114 int rs = newval & 0xf;
18115 int subtract = !!(newval & 0x8000);
a737bd4d 18116
c19d1205
ZW
18117 /* Check for HI regs, only very restricted cases allowed:
18118 Adjusting SP, and using PC or SP to get an address. */
18119 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
18120 || (rs > 7 && rs != REG_SP && rs != REG_PC))
18121 as_bad_where (fixP->fx_file, fixP->fx_line,
18122 _("invalid Hi register with immediate"));
a737bd4d 18123
c19d1205
ZW
18124 /* If value is negative, choose the opposite instruction. */
18125 if (value < 0)
18126 {
18127 value = -value;
18128 subtract = !subtract;
18129 if (value < 0)
18130 as_bad_where (fixP->fx_file, fixP->fx_line,
18131 _("immediate value out of range"));
18132 }
a737bd4d 18133
c19d1205
ZW
18134 if (rd == REG_SP)
18135 {
18136 if (value & ~0x1fc)
18137 as_bad_where (fixP->fx_file, fixP->fx_line,
18138 _("invalid immediate for stack address calculation"));
18139 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
18140 newval |= value >> 2;
18141 }
18142 else if (rs == REG_PC || rs == REG_SP)
18143 {
18144 if (subtract || value & ~0x3fc)
18145 as_bad_where (fixP->fx_file, fixP->fx_line,
18146 _("invalid immediate for address calculation (value = 0x%08lX)"),
18147 (unsigned long) value);
18148 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
18149 newval |= rd << 8;
18150 newval |= value >> 2;
18151 }
18152 else if (rs == rd)
18153 {
18154 if (value & ~0xff)
18155 as_bad_where (fixP->fx_file, fixP->fx_line,
18156 _("immediate value out of range"));
18157 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
18158 newval |= (rd << 8) | value;
18159 }
18160 else
18161 {
18162 if (value & ~0x7)
18163 as_bad_where (fixP->fx_file, fixP->fx_line,
18164 _("immediate value out of range"));
18165 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
18166 newval |= rd | (rs << 3) | (value << 6);
18167 }
18168 }
18169 md_number_to_chars (buf, newval, THUMB_SIZE);
18170 break;
a737bd4d 18171
c19d1205
ZW
18172 case BFD_RELOC_ARM_THUMB_IMM:
18173 newval = md_chars_to_number (buf, THUMB_SIZE);
18174 if (value < 0 || value > 255)
18175 as_bad_where (fixP->fx_file, fixP->fx_line,
18176 _("invalid immediate: %ld is too large"),
18177 (long) value);
18178 newval |= value;
18179 md_number_to_chars (buf, newval, THUMB_SIZE);
18180 break;
a737bd4d 18181
c19d1205
ZW
18182 case BFD_RELOC_ARM_THUMB_SHIFT:
18183 /* 5bit shift value (0..32). LSL cannot take 32. */
18184 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
18185 temp = newval & 0xf800;
18186 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
18187 as_bad_where (fixP->fx_file, fixP->fx_line,
18188 _("invalid shift value: %ld"), (long) value);
18189 /* Shifts of zero must be encoded as LSL. */
18190 if (value == 0)
18191 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
18192 /* Shifts of 32 are encoded as zero. */
18193 else if (value == 32)
18194 value = 0;
18195 newval |= value << 6;
18196 md_number_to_chars (buf, newval, THUMB_SIZE);
18197 break;
a737bd4d 18198
c19d1205
ZW
18199 case BFD_RELOC_VTABLE_INHERIT:
18200 case BFD_RELOC_VTABLE_ENTRY:
18201 fixP->fx_done = 0;
18202 return;
6c43fab6 18203
b6895b4f
PB
18204 case BFD_RELOC_ARM_MOVW:
18205 case BFD_RELOC_ARM_MOVT:
18206 case BFD_RELOC_ARM_THUMB_MOVW:
18207 case BFD_RELOC_ARM_THUMB_MOVT:
18208 if (fixP->fx_done || !seg->use_rela_p)
18209 {
18210 /* REL format relocations are limited to a 16-bit addend. */
18211 if (!fixP->fx_done)
18212 {
18213 if (value < -0x1000 || value > 0xffff)
18214 as_bad_where (fixP->fx_file, fixP->fx_line,
18215 _("offset too big"));
18216 }
18217 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
18218 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
18219 {
18220 value >>= 16;
18221 }
18222
18223 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
18224 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
18225 {
18226 newval = get_thumb32_insn (buf);
18227 newval &= 0xfbf08f00;
18228 newval |= (value & 0xf000) << 4;
18229 newval |= (value & 0x0800) << 15;
18230 newval |= (value & 0x0700) << 4;
18231 newval |= (value & 0x00ff);
18232 put_thumb32_insn (buf, newval);
18233 }
18234 else
18235 {
18236 newval = md_chars_to_number (buf, 4);
18237 newval &= 0xfff0f000;
18238 newval |= value & 0x0fff;
18239 newval |= (value & 0xf000) << 4;
18240 md_number_to_chars (buf, newval, 4);
18241 }
18242 }
18243 return;
18244
4962c51a
MS
18245 case BFD_RELOC_ARM_ALU_PC_G0_NC:
18246 case BFD_RELOC_ARM_ALU_PC_G0:
18247 case BFD_RELOC_ARM_ALU_PC_G1_NC:
18248 case BFD_RELOC_ARM_ALU_PC_G1:
18249 case BFD_RELOC_ARM_ALU_PC_G2:
18250 case BFD_RELOC_ARM_ALU_SB_G0_NC:
18251 case BFD_RELOC_ARM_ALU_SB_G0:
18252 case BFD_RELOC_ARM_ALU_SB_G1_NC:
18253 case BFD_RELOC_ARM_ALU_SB_G1:
18254 case BFD_RELOC_ARM_ALU_SB_G2:
18255 assert (!fixP->fx_done);
18256 if (!seg->use_rela_p)
18257 {
18258 bfd_vma insn;
18259 bfd_vma encoded_addend;
18260 bfd_vma addend_abs = abs (value);
18261
18262 /* Check that the absolute value of the addend can be
18263 expressed as an 8-bit constant plus a rotation. */
18264 encoded_addend = encode_arm_immediate (addend_abs);
18265 if (encoded_addend == (unsigned int) FAIL)
18266 as_bad_where (fixP->fx_file, fixP->fx_line,
18267 _("the offset 0x%08lX is not representable"),
18268 addend_abs);
18269
18270 /* Extract the instruction. */
18271 insn = md_chars_to_number (buf, INSN_SIZE);
18272
18273 /* If the addend is positive, use an ADD instruction.
18274 Otherwise use a SUB. Take care not to destroy the S bit. */
18275 insn &= 0xff1fffff;
18276 if (value < 0)
18277 insn |= 1 << 22;
18278 else
18279 insn |= 1 << 23;
18280
18281 /* Place the encoded addend into the first 12 bits of the
18282 instruction. */
18283 insn &= 0xfffff000;
18284 insn |= encoded_addend;
18285
18286 /* Update the instruction. */
18287 md_number_to_chars (buf, insn, INSN_SIZE);
18288 }
18289 break;
18290
18291 case BFD_RELOC_ARM_LDR_PC_G0:
18292 case BFD_RELOC_ARM_LDR_PC_G1:
18293 case BFD_RELOC_ARM_LDR_PC_G2:
18294 case BFD_RELOC_ARM_LDR_SB_G0:
18295 case BFD_RELOC_ARM_LDR_SB_G1:
18296 case BFD_RELOC_ARM_LDR_SB_G2:
18297 assert (!fixP->fx_done);
18298 if (!seg->use_rela_p)
18299 {
18300 bfd_vma insn;
18301 bfd_vma addend_abs = abs (value);
18302
18303 /* Check that the absolute value of the addend can be
18304 encoded in 12 bits. */
18305 if (addend_abs >= 0x1000)
18306 as_bad_where (fixP->fx_file, fixP->fx_line,
18307 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
18308 addend_abs);
18309
18310 /* Extract the instruction. */
18311 insn = md_chars_to_number (buf, INSN_SIZE);
18312
18313 /* If the addend is negative, clear bit 23 of the instruction.
18314 Otherwise set it. */
18315 if (value < 0)
18316 insn &= ~(1 << 23);
18317 else
18318 insn |= 1 << 23;
18319
18320 /* Place the absolute value of the addend into the first 12 bits
18321 of the instruction. */
18322 insn &= 0xfffff000;
18323 insn |= addend_abs;
18324
18325 /* Update the instruction. */
18326 md_number_to_chars (buf, insn, INSN_SIZE);
18327 }
18328 break;
18329
18330 case BFD_RELOC_ARM_LDRS_PC_G0:
18331 case BFD_RELOC_ARM_LDRS_PC_G1:
18332 case BFD_RELOC_ARM_LDRS_PC_G2:
18333 case BFD_RELOC_ARM_LDRS_SB_G0:
18334 case BFD_RELOC_ARM_LDRS_SB_G1:
18335 case BFD_RELOC_ARM_LDRS_SB_G2:
18336 assert (!fixP->fx_done);
18337 if (!seg->use_rela_p)
18338 {
18339 bfd_vma insn;
18340 bfd_vma addend_abs = abs (value);
18341
18342 /* Check that the absolute value of the addend can be
18343 encoded in 8 bits. */
18344 if (addend_abs >= 0x100)
18345 as_bad_where (fixP->fx_file, fixP->fx_line,
18346 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
18347 addend_abs);
18348
18349 /* Extract the instruction. */
18350 insn = md_chars_to_number (buf, INSN_SIZE);
18351
18352 /* If the addend is negative, clear bit 23 of the instruction.
18353 Otherwise set it. */
18354 if (value < 0)
18355 insn &= ~(1 << 23);
18356 else
18357 insn |= 1 << 23;
18358
18359 /* Place the first four bits of the absolute value of the addend
18360 into the first 4 bits of the instruction, and the remaining
18361 four into bits 8 .. 11. */
18362 insn &= 0xfffff0f0;
18363 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
18364
18365 /* Update the instruction. */
18366 md_number_to_chars (buf, insn, INSN_SIZE);
18367 }
18368 break;
18369
18370 case BFD_RELOC_ARM_LDC_PC_G0:
18371 case BFD_RELOC_ARM_LDC_PC_G1:
18372 case BFD_RELOC_ARM_LDC_PC_G2:
18373 case BFD_RELOC_ARM_LDC_SB_G0:
18374 case BFD_RELOC_ARM_LDC_SB_G1:
18375 case BFD_RELOC_ARM_LDC_SB_G2:
18376 assert (!fixP->fx_done);
18377 if (!seg->use_rela_p)
18378 {
18379 bfd_vma insn;
18380 bfd_vma addend_abs = abs (value);
18381
18382 /* Check that the absolute value of the addend is a multiple of
18383 four and, when divided by four, fits in 8 bits. */
18384 if (addend_abs & 0x3)
18385 as_bad_where (fixP->fx_file, fixP->fx_line,
18386 _("bad offset 0x%08lX (must be word-aligned)"),
18387 addend_abs);
18388
18389 if ((addend_abs >> 2) > 0xff)
18390 as_bad_where (fixP->fx_file, fixP->fx_line,
18391 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
18392 addend_abs);
18393
18394 /* Extract the instruction. */
18395 insn = md_chars_to_number (buf, INSN_SIZE);
18396
18397 /* If the addend is negative, clear bit 23 of the instruction.
18398 Otherwise set it. */
18399 if (value < 0)
18400 insn &= ~(1 << 23);
18401 else
18402 insn |= 1 << 23;
18403
18404 /* Place the addend (divided by four) into the first eight
18405 bits of the instruction. */
18406 insn &= 0xfffffff0;
18407 insn |= addend_abs >> 2;
18408
18409 /* Update the instruction. */
18410 md_number_to_chars (buf, insn, INSN_SIZE);
18411 }
18412 break;
18413
c19d1205
ZW
18414 case BFD_RELOC_UNUSED:
18415 default:
18416 as_bad_where (fixP->fx_file, fixP->fx_line,
18417 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
18418 }
6c43fab6
RE
18419}
18420
c19d1205
ZW
18421/* Translate internal representation of relocation info to BFD target
18422 format. */
a737bd4d 18423
c19d1205 18424arelent *
00a97672 18425tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 18426{
c19d1205
ZW
18427 arelent * reloc;
18428 bfd_reloc_code_real_type code;
a737bd4d 18429
c19d1205 18430 reloc = xmalloc (sizeof (arelent));
a737bd4d 18431
c19d1205
ZW
18432 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
18433 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
18434 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 18435
2fc8bdac 18436 if (fixp->fx_pcrel)
00a97672
RS
18437 {
18438 if (section->use_rela_p)
18439 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
18440 else
18441 fixp->fx_offset = reloc->address;
18442 }
c19d1205 18443 reloc->addend = fixp->fx_offset;
a737bd4d 18444
c19d1205 18445 switch (fixp->fx_r_type)
a737bd4d 18446 {
c19d1205
ZW
18447 case BFD_RELOC_8:
18448 if (fixp->fx_pcrel)
18449 {
18450 code = BFD_RELOC_8_PCREL;
18451 break;
18452 }
a737bd4d 18453
c19d1205
ZW
18454 case BFD_RELOC_16:
18455 if (fixp->fx_pcrel)
18456 {
18457 code = BFD_RELOC_16_PCREL;
18458 break;
18459 }
6c43fab6 18460
c19d1205
ZW
18461 case BFD_RELOC_32:
18462 if (fixp->fx_pcrel)
18463 {
18464 code = BFD_RELOC_32_PCREL;
18465 break;
18466 }
a737bd4d 18467
b6895b4f
PB
18468 case BFD_RELOC_ARM_MOVW:
18469 if (fixp->fx_pcrel)
18470 {
18471 code = BFD_RELOC_ARM_MOVW_PCREL;
18472 break;
18473 }
18474
18475 case BFD_RELOC_ARM_MOVT:
18476 if (fixp->fx_pcrel)
18477 {
18478 code = BFD_RELOC_ARM_MOVT_PCREL;
18479 break;
18480 }
18481
18482 case BFD_RELOC_ARM_THUMB_MOVW:
18483 if (fixp->fx_pcrel)
18484 {
18485 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
18486 break;
18487 }
18488
18489 case BFD_RELOC_ARM_THUMB_MOVT:
18490 if (fixp->fx_pcrel)
18491 {
18492 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
18493 break;
18494 }
18495
c19d1205
ZW
18496 case BFD_RELOC_NONE:
18497 case BFD_RELOC_ARM_PCREL_BRANCH:
18498 case BFD_RELOC_ARM_PCREL_BLX:
18499 case BFD_RELOC_RVA:
18500 case BFD_RELOC_THUMB_PCREL_BRANCH7:
18501 case BFD_RELOC_THUMB_PCREL_BRANCH9:
18502 case BFD_RELOC_THUMB_PCREL_BRANCH12:
18503 case BFD_RELOC_THUMB_PCREL_BRANCH20:
18504 case BFD_RELOC_THUMB_PCREL_BRANCH23:
18505 case BFD_RELOC_THUMB_PCREL_BRANCH25:
18506 case BFD_RELOC_THUMB_PCREL_BLX:
18507 case BFD_RELOC_VTABLE_ENTRY:
18508 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
18509#ifdef TE_PE
18510 case BFD_RELOC_32_SECREL:
18511#endif
c19d1205
ZW
18512 code = fixp->fx_r_type;
18513 break;
a737bd4d 18514
c19d1205
ZW
18515 case BFD_RELOC_ARM_LITERAL:
18516 case BFD_RELOC_ARM_HWLITERAL:
18517 /* If this is called then the a literal has
18518 been referenced across a section boundary. */
18519 as_bad_where (fixp->fx_file, fixp->fx_line,
18520 _("literal referenced across section boundary"));
18521 return NULL;
a737bd4d 18522
c19d1205
ZW
18523#ifdef OBJ_ELF
18524 case BFD_RELOC_ARM_GOT32:
18525 case BFD_RELOC_ARM_GOTOFF:
18526 case BFD_RELOC_ARM_PLT32:
18527 case BFD_RELOC_ARM_TARGET1:
18528 case BFD_RELOC_ARM_ROSEGREL32:
18529 case BFD_RELOC_ARM_SBREL32:
18530 case BFD_RELOC_ARM_PREL31:
18531 case BFD_RELOC_ARM_TARGET2:
18532 case BFD_RELOC_ARM_TLS_LE32:
18533 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
18534 case BFD_RELOC_ARM_PCREL_CALL:
18535 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
18536 case BFD_RELOC_ARM_ALU_PC_G0_NC:
18537 case BFD_RELOC_ARM_ALU_PC_G0:
18538 case BFD_RELOC_ARM_ALU_PC_G1_NC:
18539 case BFD_RELOC_ARM_ALU_PC_G1:
18540 case BFD_RELOC_ARM_ALU_PC_G2:
18541 case BFD_RELOC_ARM_LDR_PC_G0:
18542 case BFD_RELOC_ARM_LDR_PC_G1:
18543 case BFD_RELOC_ARM_LDR_PC_G2:
18544 case BFD_RELOC_ARM_LDRS_PC_G0:
18545 case BFD_RELOC_ARM_LDRS_PC_G1:
18546 case BFD_RELOC_ARM_LDRS_PC_G2:
18547 case BFD_RELOC_ARM_LDC_PC_G0:
18548 case BFD_RELOC_ARM_LDC_PC_G1:
18549 case BFD_RELOC_ARM_LDC_PC_G2:
18550 case BFD_RELOC_ARM_ALU_SB_G0_NC:
18551 case BFD_RELOC_ARM_ALU_SB_G0:
18552 case BFD_RELOC_ARM_ALU_SB_G1_NC:
18553 case BFD_RELOC_ARM_ALU_SB_G1:
18554 case BFD_RELOC_ARM_ALU_SB_G2:
18555 case BFD_RELOC_ARM_LDR_SB_G0:
18556 case BFD_RELOC_ARM_LDR_SB_G1:
18557 case BFD_RELOC_ARM_LDR_SB_G2:
18558 case BFD_RELOC_ARM_LDRS_SB_G0:
18559 case BFD_RELOC_ARM_LDRS_SB_G1:
18560 case BFD_RELOC_ARM_LDRS_SB_G2:
18561 case BFD_RELOC_ARM_LDC_SB_G0:
18562 case BFD_RELOC_ARM_LDC_SB_G1:
18563 case BFD_RELOC_ARM_LDC_SB_G2:
c19d1205
ZW
18564 code = fixp->fx_r_type;
18565 break;
a737bd4d 18566
c19d1205
ZW
18567 case BFD_RELOC_ARM_TLS_GD32:
18568 case BFD_RELOC_ARM_TLS_IE32:
18569 case BFD_RELOC_ARM_TLS_LDM32:
18570 /* BFD will include the symbol's address in the addend.
18571 But we don't want that, so subtract it out again here. */
18572 if (!S_IS_COMMON (fixp->fx_addsy))
18573 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
18574 code = fixp->fx_r_type;
18575 break;
18576#endif
a737bd4d 18577
c19d1205
ZW
18578 case BFD_RELOC_ARM_IMMEDIATE:
18579 as_bad_where (fixp->fx_file, fixp->fx_line,
18580 _("internal relocation (type: IMMEDIATE) not fixed up"));
18581 return NULL;
a737bd4d 18582
c19d1205
ZW
18583 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
18584 as_bad_where (fixp->fx_file, fixp->fx_line,
18585 _("ADRL used for a symbol not defined in the same file"));
18586 return NULL;
a737bd4d 18587
c19d1205 18588 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
18589 if (section->use_rela_p)
18590 {
18591 code = fixp->fx_r_type;
18592 break;
18593 }
18594
c19d1205
ZW
18595 if (fixp->fx_addsy != NULL
18596 && !S_IS_DEFINED (fixp->fx_addsy)
18597 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 18598 {
c19d1205
ZW
18599 as_bad_where (fixp->fx_file, fixp->fx_line,
18600 _("undefined local label `%s'"),
18601 S_GET_NAME (fixp->fx_addsy));
18602 return NULL;
a737bd4d
NC
18603 }
18604
c19d1205
ZW
18605 as_bad_where (fixp->fx_file, fixp->fx_line,
18606 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
18607 return NULL;
a737bd4d 18608
c19d1205
ZW
18609 default:
18610 {
18611 char * type;
6c43fab6 18612
c19d1205
ZW
18613 switch (fixp->fx_r_type)
18614 {
18615 case BFD_RELOC_NONE: type = "NONE"; break;
18616 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
18617 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 18618 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
18619 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
18620 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
18621 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
8f06b2d8 18622 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
18623 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
18624 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
18625 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
18626 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
18627 default: type = _("<unknown>"); break;
18628 }
18629 as_bad_where (fixp->fx_file, fixp->fx_line,
18630 _("cannot represent %s relocation in this object file format"),
18631 type);
18632 return NULL;
18633 }
a737bd4d 18634 }
6c43fab6 18635
c19d1205
ZW
18636#ifdef OBJ_ELF
18637 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
18638 && GOT_symbol
18639 && fixp->fx_addsy == GOT_symbol)
18640 {
18641 code = BFD_RELOC_ARM_GOTPC;
18642 reloc->addend = fixp->fx_offset = reloc->address;
18643 }
18644#endif
6c43fab6 18645
c19d1205 18646 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 18647
c19d1205
ZW
18648 if (reloc->howto == NULL)
18649 {
18650 as_bad_where (fixp->fx_file, fixp->fx_line,
18651 _("cannot represent %s relocation in this object file format"),
18652 bfd_get_reloc_code_name (code));
18653 return NULL;
18654 }
6c43fab6 18655
c19d1205
ZW
18656 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
18657 vtable entry to be used in the relocation's section offset. */
18658 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
18659 reloc->address = fixp->fx_offset;
6c43fab6 18660
c19d1205 18661 return reloc;
6c43fab6
RE
18662}
18663
c19d1205 18664/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 18665
c19d1205
ZW
18666void
18667cons_fix_new_arm (fragS * frag,
18668 int where,
18669 int size,
18670 expressionS * exp)
6c43fab6 18671{
c19d1205
ZW
18672 bfd_reloc_code_real_type type;
18673 int pcrel = 0;
6c43fab6 18674
c19d1205
ZW
18675 /* Pick a reloc.
18676 FIXME: @@ Should look at CPU word size. */
18677 switch (size)
18678 {
18679 case 1:
18680 type = BFD_RELOC_8;
18681 break;
18682 case 2:
18683 type = BFD_RELOC_16;
18684 break;
18685 case 4:
18686 default:
18687 type = BFD_RELOC_32;
18688 break;
18689 case 8:
18690 type = BFD_RELOC_64;
18691 break;
18692 }
6c43fab6 18693
f0927246
NC
18694#ifdef TE_PE
18695 if (exp->X_op == O_secrel)
18696 {
18697 exp->X_op = O_symbol;
18698 type = BFD_RELOC_32_SECREL;
18699 }
18700#endif
18701
c19d1205
ZW
18702 fix_new_exp (frag, where, (int) size, exp, pcrel, type);
18703}
6c43fab6 18704
c19d1205
ZW
18705#if defined OBJ_COFF || defined OBJ_ELF
18706void
18707arm_validate_fix (fixS * fixP)
6c43fab6 18708{
c19d1205
ZW
18709 /* If the destination of the branch is a defined symbol which does not have
18710 the THUMB_FUNC attribute, then we must be calling a function which has
18711 the (interfacearm) attribute. We look for the Thumb entry point to that
18712 function and change the branch to refer to that function instead. */
18713 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
18714 && fixP->fx_addsy != NULL
18715 && S_IS_DEFINED (fixP->fx_addsy)
18716 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 18717 {
c19d1205 18718 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 18719 }
c19d1205
ZW
18720}
18721#endif
6c43fab6 18722
c19d1205
ZW
18723int
18724arm_force_relocation (struct fix * fixp)
18725{
18726#if defined (OBJ_COFF) && defined (TE_PE)
18727 if (fixp->fx_r_type == BFD_RELOC_RVA)
18728 return 1;
18729#endif
6c43fab6 18730
c19d1205
ZW
18731 /* Resolve these relocations even if the symbol is extern or weak. */
18732 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
18733 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
0110f2b8 18734 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
16805f35 18735 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
18736 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
18737 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
18738 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12)
c19d1205 18739 return 0;
a737bd4d 18740
4962c51a
MS
18741 /* Always leave these relocations for the linker. */
18742 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
18743 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
18744 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
18745 return 1;
18746
c19d1205 18747 return generic_force_reloc (fixp);
404ff6b5
AH
18748}
18749
c19d1205 18750#ifdef OBJ_COFF
c19d1205
ZW
18751bfd_boolean
18752arm_fix_adjustable (fixS * fixP)
404ff6b5 18753{
337ff0a5
NC
18754 /* This is a little hack to help the gas/arm/adrl.s test. It prevents
18755 local labels from being added to the output symbol table when they
18756 are used with the ADRL pseudo op. The ADRL relocation should always
18757 be resolved before the binbary is emitted, so it is safe to say that
18758 it is adjustable. */
c19d1205
ZW
18759 if (fixP->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE)
18760 return 1;
337ff0a5
NC
18761
18762 /* This is a hack for the gas/all/redef2.s test. This test causes symbols
18763 to be cloned, and without this test relocs would still be generated
6e0080dd 18764 against the original, pre-cloned symbol. Such symbols would not appear
337ff0a5
NC
18765 in the symbol table however, and so a valid reloc could not be
18766 generated. So check to see if the fixup is against a symbol which has
18767 been removed from the symbol chain, and if it is, then allow it to be
18768 adjusted into a reloc against a section symbol. */
6e0080dd
NC
18769 if (fixP->fx_addsy != NULL
18770 && ! S_IS_LOCAL (fixP->fx_addsy)
18771 && symbol_next (fixP->fx_addsy) == NULL
18772 && symbol_next (fixP->fx_addsy) == symbol_previous (fixP->fx_addsy))
18773 return 1;
337ff0a5 18774
c19d1205 18775 return 0;
404ff6b5 18776}
c19d1205 18777#endif
404ff6b5 18778
c19d1205 18779#ifdef OBJ_ELF
e28387c3
PB
18780/* Relocations against function names must be left unadjusted,
18781 so that the linker can use this information to generate interworking
18782 stubs. The MIPS version of this function
c19d1205
ZW
18783 also prevents relocations that are mips-16 specific, but I do not
18784 know why it does this.
404ff6b5 18785
c19d1205
ZW
18786 FIXME:
18787 There is one other problem that ought to be addressed here, but
18788 which currently is not: Taking the address of a label (rather
18789 than a function) and then later jumping to that address. Such
18790 addresses also ought to have their bottom bit set (assuming that
18791 they reside in Thumb code), but at the moment they will not. */
404ff6b5 18792
c19d1205
ZW
18793bfd_boolean
18794arm_fix_adjustable (fixS * fixP)
404ff6b5 18795{
c19d1205
ZW
18796 if (fixP->fx_addsy == NULL)
18797 return 1;
404ff6b5 18798
e28387c3
PB
18799 /* Preserve relocations against symbols with function type. */
18800 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
18801 return 0;
18802
c19d1205
ZW
18803 if (THUMB_IS_FUNC (fixP->fx_addsy)
18804 && fixP->fx_subsy == NULL)
18805 return 0;
a737bd4d 18806
c19d1205
ZW
18807 /* We need the symbol name for the VTABLE entries. */
18808 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
18809 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
18810 return 0;
404ff6b5 18811
c19d1205
ZW
18812 /* Don't allow symbols to be discarded on GOT related relocs. */
18813 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
18814 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
18815 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
18816 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
18817 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
18818 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
18819 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
18820 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
18821 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
18822 return 0;
a737bd4d 18823
4962c51a
MS
18824 /* Similarly for group relocations. */
18825 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
18826 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
18827 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
18828 return 0;
18829
c19d1205 18830 return 1;
a737bd4d 18831}
404ff6b5 18832
c19d1205
ZW
18833const char *
18834elf32_arm_target_format (void)
404ff6b5 18835{
c19d1205
ZW
18836#ifdef TE_SYMBIAN
18837 return (target_big_endian
18838 ? "elf32-bigarm-symbian"
18839 : "elf32-littlearm-symbian");
18840#elif defined (TE_VXWORKS)
18841 return (target_big_endian
18842 ? "elf32-bigarm-vxworks"
18843 : "elf32-littlearm-vxworks");
18844#else
18845 if (target_big_endian)
18846 return "elf32-bigarm";
18847 else
18848 return "elf32-littlearm";
18849#endif
404ff6b5
AH
18850}
18851
c19d1205
ZW
18852void
18853armelf_frob_symbol (symbolS * symp,
18854 int * puntp)
404ff6b5 18855{
c19d1205
ZW
18856 elf_frob_symbol (symp, puntp);
18857}
18858#endif
404ff6b5 18859
c19d1205 18860/* MD interface: Finalization. */
a737bd4d 18861
c19d1205
ZW
18862/* A good place to do this, although this was probably not intended
18863 for this kind of use. We need to dump the literal pool before
18864 references are made to a null symbol pointer. */
a737bd4d 18865
c19d1205
ZW
18866void
18867arm_cleanup (void)
18868{
18869 literal_pool * pool;
a737bd4d 18870
c19d1205
ZW
18871 for (pool = list_of_pools; pool; pool = pool->next)
18872 {
18873 /* Put it at the end of the relevent section. */
18874 subseg_set (pool->section, pool->sub_section);
18875#ifdef OBJ_ELF
18876 arm_elf_change_section ();
18877#endif
18878 s_ltorg (0);
18879 }
404ff6b5
AH
18880}
18881
c19d1205
ZW
18882/* Adjust the symbol table. This marks Thumb symbols as distinct from
18883 ARM ones. */
404ff6b5 18884
c19d1205
ZW
18885void
18886arm_adjust_symtab (void)
404ff6b5 18887{
c19d1205
ZW
18888#ifdef OBJ_COFF
18889 symbolS * sym;
404ff6b5 18890
c19d1205
ZW
18891 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
18892 {
18893 if (ARM_IS_THUMB (sym))
18894 {
18895 if (THUMB_IS_FUNC (sym))
18896 {
18897 /* Mark the symbol as a Thumb function. */
18898 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
18899 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
18900 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 18901
c19d1205
ZW
18902 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
18903 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
18904 else
18905 as_bad (_("%s: unexpected function type: %d"),
18906 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
18907 }
18908 else switch (S_GET_STORAGE_CLASS (sym))
18909 {
18910 case C_EXT:
18911 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
18912 break;
18913 case C_STAT:
18914 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
18915 break;
18916 case C_LABEL:
18917 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
18918 break;
18919 default:
18920 /* Do nothing. */
18921 break;
18922 }
18923 }
a737bd4d 18924
c19d1205
ZW
18925 if (ARM_IS_INTERWORK (sym))
18926 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 18927 }
c19d1205
ZW
18928#endif
18929#ifdef OBJ_ELF
18930 symbolS * sym;
18931 char bind;
404ff6b5 18932
c19d1205 18933 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 18934 {
c19d1205
ZW
18935 if (ARM_IS_THUMB (sym))
18936 {
18937 elf_symbol_type * elf_sym;
404ff6b5 18938
c19d1205
ZW
18939 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
18940 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 18941
b0796911
PB
18942 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
18943 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
18944 {
18945 /* If it's a .thumb_func, declare it as so,
18946 otherwise tag label as .code 16. */
18947 if (THUMB_IS_FUNC (sym))
18948 elf_sym->internal_elf_sym.st_info =
18949 ELF_ST_INFO (bind, STT_ARM_TFUNC);
18950 else
18951 elf_sym->internal_elf_sym.st_info =
18952 ELF_ST_INFO (bind, STT_ARM_16BIT);
18953 }
18954 }
18955 }
18956#endif
404ff6b5
AH
18957}
18958
c19d1205 18959/* MD interface: Initialization. */
404ff6b5 18960
a737bd4d 18961static void
c19d1205 18962set_constant_flonums (void)
a737bd4d 18963{
c19d1205 18964 int i;
404ff6b5 18965
c19d1205
ZW
18966 for (i = 0; i < NUM_FLOAT_VALS; i++)
18967 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
18968 abort ();
a737bd4d 18969}
404ff6b5 18970
3e9e4fcf
JB
18971/* Auto-select Thumb mode if it's the only available instruction set for the
18972 given architecture. */
18973
18974static void
18975autoselect_thumb_from_cpu_variant (void)
18976{
18977 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
18978 opcode_select (16);
18979}
18980
c19d1205
ZW
18981void
18982md_begin (void)
a737bd4d 18983{
c19d1205
ZW
18984 unsigned mach;
18985 unsigned int i;
404ff6b5 18986
c19d1205
ZW
18987 if ( (arm_ops_hsh = hash_new ()) == NULL
18988 || (arm_cond_hsh = hash_new ()) == NULL
18989 || (arm_shift_hsh = hash_new ()) == NULL
18990 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 18991 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 18992 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
18993 || (arm_reloc_hsh = hash_new ()) == NULL
18994 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
18995 as_fatal (_("virtual memory exhausted"));
18996
18997 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
18998 hash_insert (arm_ops_hsh, insns[i].template, (PTR) (insns + i));
18999 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
19000 hash_insert (arm_cond_hsh, conds[i].template, (PTR) (conds + i));
19001 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
19002 hash_insert (arm_shift_hsh, shift_names[i].name, (PTR) (shift_names + i));
19003 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
19004 hash_insert (arm_psr_hsh, psrs[i].template, (PTR) (psrs + i));
62b3e311
PB
19005 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
19006 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template, (PTR) (v7m_psrs + i));
c19d1205
ZW
19007 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
19008 hash_insert (arm_reg_hsh, reg_names[i].name, (PTR) (reg_names + i));
62b3e311
PB
19009 for (i = 0;
19010 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
19011 i++)
19012 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template,
19013 (PTR) (barrier_opt_names + i));
c19d1205
ZW
19014#ifdef OBJ_ELF
19015 for (i = 0; i < sizeof (reloc_names) / sizeof (struct reloc_entry); i++)
19016 hash_insert (arm_reloc_hsh, reloc_names[i].name, (PTR) (reloc_names + i));
19017#endif
19018
19019 set_constant_flonums ();
404ff6b5 19020
c19d1205
ZW
19021 /* Set the cpu variant based on the command-line options. We prefer
19022 -mcpu= over -march= if both are set (as for GCC); and we prefer
19023 -mfpu= over any other way of setting the floating point unit.
19024 Use of legacy options with new options are faulted. */
e74cfd16 19025 if (legacy_cpu)
404ff6b5 19026 {
e74cfd16 19027 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
19028 as_bad (_("use of old and new-style options to set CPU type"));
19029
19030 mcpu_cpu_opt = legacy_cpu;
404ff6b5 19031 }
e74cfd16 19032 else if (!mcpu_cpu_opt)
c19d1205 19033 mcpu_cpu_opt = march_cpu_opt;
404ff6b5 19034
e74cfd16 19035 if (legacy_fpu)
c19d1205 19036 {
e74cfd16 19037 if (mfpu_opt)
c19d1205 19038 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
19039
19040 mfpu_opt = legacy_fpu;
19041 }
e74cfd16 19042 else if (!mfpu_opt)
03b1477f 19043 {
c19d1205 19044#if !(defined (TE_LINUX) || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
19045 /* Some environments specify a default FPU. If they don't, infer it
19046 from the processor. */
e74cfd16 19047 if (mcpu_fpu_opt)
03b1477f
RE
19048 mfpu_opt = mcpu_fpu_opt;
19049 else
19050 mfpu_opt = march_fpu_opt;
39c2da32 19051#else
e74cfd16 19052 mfpu_opt = &fpu_default;
39c2da32 19053#endif
03b1477f
RE
19054 }
19055
e74cfd16 19056 if (!mfpu_opt)
03b1477f 19057 {
e74cfd16
PB
19058 if (!mcpu_cpu_opt)
19059 mfpu_opt = &fpu_default;
19060 else if (ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
19061 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 19062 else
e74cfd16 19063 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
19064 }
19065
ee065d83 19066#ifdef CPU_DEFAULT
e74cfd16 19067 if (!mcpu_cpu_opt)
ee065d83 19068 {
e74cfd16
PB
19069 mcpu_cpu_opt = &cpu_default;
19070 selected_cpu = cpu_default;
ee065d83 19071 }
e74cfd16
PB
19072#else
19073 if (mcpu_cpu_opt)
19074 selected_cpu = *mcpu_cpu_opt;
ee065d83 19075 else
e74cfd16 19076 mcpu_cpu_opt = &arm_arch_any;
ee065d83 19077#endif
03b1477f 19078
e74cfd16 19079 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
03b1477f 19080
3e9e4fcf
JB
19081 autoselect_thumb_from_cpu_variant ();
19082
e74cfd16 19083 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 19084
f17c130b 19085#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 19086 {
7cc69913
NC
19087 unsigned int flags = 0;
19088
19089#if defined OBJ_ELF
19090 flags = meabi_flags;
d507cf36
PB
19091
19092 switch (meabi_flags)
33a392fb 19093 {
d507cf36 19094 case EF_ARM_EABI_UNKNOWN:
7cc69913 19095#endif
d507cf36
PB
19096 /* Set the flags in the private structure. */
19097 if (uses_apcs_26) flags |= F_APCS26;
19098 if (support_interwork) flags |= F_INTERWORK;
19099 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 19100 if (pic_code) flags |= F_PIC;
e74cfd16 19101 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
19102 flags |= F_SOFT_FLOAT;
19103
d507cf36
PB
19104 switch (mfloat_abi_opt)
19105 {
19106 case ARM_FLOAT_ABI_SOFT:
19107 case ARM_FLOAT_ABI_SOFTFP:
19108 flags |= F_SOFT_FLOAT;
19109 break;
33a392fb 19110
d507cf36
PB
19111 case ARM_FLOAT_ABI_HARD:
19112 if (flags & F_SOFT_FLOAT)
19113 as_bad (_("hard-float conflicts with specified fpu"));
19114 break;
19115 }
03b1477f 19116
e74cfd16
PB
19117 /* Using pure-endian doubles (even if soft-float). */
19118 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 19119 flags |= F_VFP_FLOAT;
f17c130b 19120
fde78edd 19121#if defined OBJ_ELF
e74cfd16 19122 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 19123 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
19124 break;
19125
8cb51566 19126 case EF_ARM_EABI_VER4:
3a4a14e9 19127 case EF_ARM_EABI_VER5:
c19d1205 19128 /* No additional flags to set. */
d507cf36
PB
19129 break;
19130
19131 default:
19132 abort ();
19133 }
7cc69913 19134#endif
b99bd4ef
NC
19135 bfd_set_private_flags (stdoutput, flags);
19136
19137 /* We have run out flags in the COFF header to encode the
19138 status of ATPCS support, so instead we create a dummy,
c19d1205 19139 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
19140 if (atpcs)
19141 {
19142 asection * sec;
19143
19144 sec = bfd_make_section (stdoutput, ".arm.atpcs");
19145
19146 if (sec != NULL)
19147 {
19148 bfd_set_section_flags
19149 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
19150 bfd_set_section_size (stdoutput, sec, 0);
19151 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
19152 }
19153 }
7cc69913 19154 }
f17c130b 19155#endif
b99bd4ef
NC
19156
19157 /* Record the CPU type as well. */
e74cfd16 19158 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 19159 mach = bfd_mach_arm_iWMMXt;
e74cfd16 19160 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 19161 mach = bfd_mach_arm_XScale;
e74cfd16 19162 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 19163 mach = bfd_mach_arm_ep9312;
e74cfd16 19164 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 19165 mach = bfd_mach_arm_5TE;
e74cfd16 19166 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 19167 {
e74cfd16 19168 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
19169 mach = bfd_mach_arm_5T;
19170 else
19171 mach = bfd_mach_arm_5;
19172 }
e74cfd16 19173 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 19174 {
e74cfd16 19175 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
19176 mach = bfd_mach_arm_4T;
19177 else
19178 mach = bfd_mach_arm_4;
19179 }
e74cfd16 19180 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 19181 mach = bfd_mach_arm_3M;
e74cfd16
PB
19182 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
19183 mach = bfd_mach_arm_3;
19184 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
19185 mach = bfd_mach_arm_2a;
19186 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
19187 mach = bfd_mach_arm_2;
19188 else
19189 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
19190
19191 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
19192}
19193
c19d1205 19194/* Command line processing. */
b99bd4ef 19195
c19d1205
ZW
19196/* md_parse_option
19197 Invocation line includes a switch not recognized by the base assembler.
19198 See if it's a processor-specific option.
b99bd4ef 19199
c19d1205
ZW
19200 This routine is somewhat complicated by the need for backwards
19201 compatibility (since older releases of gcc can't be changed).
19202 The new options try to make the interface as compatible as
19203 possible with GCC.
b99bd4ef 19204
c19d1205 19205 New options (supported) are:
b99bd4ef 19206
c19d1205
ZW
19207 -mcpu=<cpu name> Assemble for selected processor
19208 -march=<architecture name> Assemble for selected architecture
19209 -mfpu=<fpu architecture> Assemble for selected FPU.
19210 -EB/-mbig-endian Big-endian
19211 -EL/-mlittle-endian Little-endian
19212 -k Generate PIC code
19213 -mthumb Start in Thumb mode
19214 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 19215
c19d1205 19216 For now we will also provide support for:
b99bd4ef 19217
c19d1205
ZW
19218 -mapcs-32 32-bit Program counter
19219 -mapcs-26 26-bit Program counter
19220 -macps-float Floats passed in FP registers
19221 -mapcs-reentrant Reentrant code
19222 -matpcs
19223 (sometime these will probably be replaced with -mapcs=<list of options>
19224 and -matpcs=<list of options>)
b99bd4ef 19225
c19d1205
ZW
19226 The remaining options are only supported for back-wards compatibility.
19227 Cpu variants, the arm part is optional:
19228 -m[arm]1 Currently not supported.
19229 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
19230 -m[arm]3 Arm 3 processor
19231 -m[arm]6[xx], Arm 6 processors
19232 -m[arm]7[xx][t][[d]m] Arm 7 processors
19233 -m[arm]8[10] Arm 8 processors
19234 -m[arm]9[20][tdmi] Arm 9 processors
19235 -mstrongarm[110[0]] StrongARM processors
19236 -mxscale XScale processors
19237 -m[arm]v[2345[t[e]]] Arm architectures
19238 -mall All (except the ARM1)
19239 FP variants:
19240 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
19241 -mfpe-old (No float load/store multiples)
19242 -mvfpxd VFP Single precision
19243 -mvfp All VFP
19244 -mno-fpu Disable all floating point instructions
b99bd4ef 19245
c19d1205
ZW
19246 The following CPU names are recognized:
19247 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
19248 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
19249 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
19250 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
19251 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
19252 arm10t arm10e, arm1020t, arm1020e, arm10200e,
19253 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 19254
c19d1205 19255 */
b99bd4ef 19256
c19d1205 19257const char * md_shortopts = "m:k";
b99bd4ef 19258
c19d1205
ZW
19259#ifdef ARM_BI_ENDIAN
19260#define OPTION_EB (OPTION_MD_BASE + 0)
19261#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 19262#else
c19d1205
ZW
19263#if TARGET_BYTES_BIG_ENDIAN
19264#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 19265#else
c19d1205
ZW
19266#define OPTION_EL (OPTION_MD_BASE + 1)
19267#endif
b99bd4ef 19268#endif
b99bd4ef 19269
c19d1205 19270struct option md_longopts[] =
b99bd4ef 19271{
c19d1205
ZW
19272#ifdef OPTION_EB
19273 {"EB", no_argument, NULL, OPTION_EB},
19274#endif
19275#ifdef OPTION_EL
19276 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 19277#endif
c19d1205
ZW
19278 {NULL, no_argument, NULL, 0}
19279};
b99bd4ef 19280
c19d1205 19281size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 19282
c19d1205 19283struct arm_option_table
b99bd4ef 19284{
c19d1205
ZW
19285 char *option; /* Option name to match. */
19286 char *help; /* Help information. */
19287 int *var; /* Variable to change. */
19288 int value; /* What to change it to. */
19289 char *deprecated; /* If non-null, print this message. */
19290};
b99bd4ef 19291
c19d1205
ZW
19292struct arm_option_table arm_opts[] =
19293{
19294 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
19295 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
19296 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
19297 &support_interwork, 1, NULL},
19298 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
19299 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
19300 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
19301 1, NULL},
19302 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
19303 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
19304 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
19305 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
19306 NULL},
b99bd4ef 19307
c19d1205
ZW
19308 /* These are recognized by the assembler, but have no affect on code. */
19309 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
19310 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
e74cfd16
PB
19311 {NULL, NULL, NULL, 0, NULL}
19312};
19313
19314struct arm_legacy_option_table
19315{
19316 char *option; /* Option name to match. */
19317 const arm_feature_set **var; /* Variable to change. */
19318 const arm_feature_set value; /* What to change it to. */
19319 char *deprecated; /* If non-null, print this message. */
19320};
b99bd4ef 19321
e74cfd16
PB
19322const struct arm_legacy_option_table arm_legacy_opts[] =
19323{
c19d1205
ZW
19324 /* DON'T add any new processors to this list -- we want the whole list
19325 to go away... Add them to the processors table instead. */
e74cfd16
PB
19326 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
19327 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
19328 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
19329 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
19330 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
19331 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
19332 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
19333 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
19334 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
19335 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
19336 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
19337 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
19338 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
19339 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
19340 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
19341 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
19342 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
19343 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
19344 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
19345 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
19346 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
19347 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
19348 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
19349 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
19350 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
19351 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
19352 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
19353 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
19354 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
19355 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
19356 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
19357 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
19358 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
19359 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
19360 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
19361 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
19362 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
19363 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
19364 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
19365 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
19366 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
19367 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
19368 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
19369 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
19370 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
19371 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
19372 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
19373 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
19374 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
19375 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
19376 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
19377 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
19378 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
19379 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
19380 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
19381 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
19382 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
19383 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
19384 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
19385 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
19386 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
19387 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
19388 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
19389 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
19390 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
19391 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
19392 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
19393 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
19394 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
19395 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 19396 N_("use -mcpu=strongarm110")},
e74cfd16 19397 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 19398 N_("use -mcpu=strongarm1100")},
e74cfd16 19399 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 19400 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
19401 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
19402 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
19403 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 19404
c19d1205 19405 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
19406 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
19407 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
19408 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
19409 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
19410 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
19411 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
19412 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
19413 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
19414 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
19415 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
19416 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
19417 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
19418 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
19419 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
19420 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
19421 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
19422 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
19423 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 19424
c19d1205 19425 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
19426 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
19427 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
19428 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
19429 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 19430 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 19431
e74cfd16 19432 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 19433};
7ed4c4c5 19434
c19d1205 19435struct arm_cpu_option_table
7ed4c4c5 19436{
c19d1205 19437 char *name;
e74cfd16 19438 const arm_feature_set value;
c19d1205
ZW
19439 /* For some CPUs we assume an FPU unless the user explicitly sets
19440 -mfpu=... */
e74cfd16 19441 const arm_feature_set default_fpu;
ee065d83
PB
19442 /* The canonical name of the CPU, or NULL to use NAME converted to upper
19443 case. */
19444 const char *canonical_name;
c19d1205 19445};
7ed4c4c5 19446
c19d1205
ZW
19447/* This list should, at a minimum, contain all the cpu names
19448 recognized by GCC. */
e74cfd16 19449static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 19450{
ee065d83
PB
19451 {"all", ARM_ANY, FPU_ARCH_FPA, NULL},
19452 {"arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL},
19453 {"arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL},
19454 {"arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL},
19455 {"arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL},
19456 {"arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19457 {"arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19458 {"arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19459 {"arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19460 {"arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19461 {"arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19462 {"arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL},
19463 {"arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19464 {"arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL},
19465 {"arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19466 {"arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL},
19467 {"arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19468 {"arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19469 {"arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19470 {"arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19471 {"arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19472 {"arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19473 {"arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19474 {"arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19475 {"arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19476 {"arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19477 {"arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19478 {"arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19479 {"arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19480 {"arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19481 {"arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19482 {"arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19483 {"arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19484 {"strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19485 {"strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19486 {"strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19487 {"strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19488 {"strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19489 {"arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19490 {"arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"},
19491 {"arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19492 {"arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19493 {"arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19494 {"arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
c19d1205
ZW
19495 /* For V5 or later processors we default to using VFP; but the user
19496 should really set the FPU type explicitly. */
ee065d83
PB
19497 {"arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL},
19498 {"arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19499 {"arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"},
19500 {"arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"},
19501 {"arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL},
19502 {"arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL},
19503 {"arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"},
19504 {"arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19505 {"arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL},
19506 {"arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"},
19507 {"arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19508 {"arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19509 {"arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL},
19510 {"arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL},
19511 {"arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19512 {"arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"},
19513 {"arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL},
19514 {"arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19515 {"arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19516 {"arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM1026EJ-S"},
19517 {"arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL},
19518 {"arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"},
19519 {"arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL},
19520 {"arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2, "ARM1136JF-S"},
19521 {"arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL},
19522 {"mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, NULL},
19523 {"mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, NULL},
19524 {"arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL},
19525 {"arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL},
19526 {"arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL},
19527 {"arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL},
5287ad62
JB
19528 {"cortex-a8", ARM_ARCH_V7A, ARM_FEATURE(0, FPU_VFP_V3
19529 | FPU_NEON_EXT_V1),
19530 NULL},
62b3e311
PB
19531 {"cortex-r4", ARM_ARCH_V7R, FPU_NONE, NULL},
19532 {"cortex-m3", ARM_ARCH_V7M, FPU_NONE, NULL},
c19d1205 19533 /* ??? XSCALE is really an architecture. */
ee065d83 19534 {"xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL},
c19d1205 19535 /* ??? iwmmxt is not a processor. */
ee065d83
PB
19536 {"iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL},
19537 {"i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL},
c19d1205 19538 /* Maverick */
e74cfd16
PB
19539 {"ep9312", ARM_FEATURE(ARM_AEXT_V4T, ARM_CEXT_MAVERICK), FPU_ARCH_MAVERICK, "ARM920T"},
19540 {NULL, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL}
c19d1205 19541};
7ed4c4c5 19542
c19d1205 19543struct arm_arch_option_table
7ed4c4c5 19544{
c19d1205 19545 char *name;
e74cfd16
PB
19546 const arm_feature_set value;
19547 const arm_feature_set default_fpu;
c19d1205 19548};
7ed4c4c5 19549
c19d1205
ZW
19550/* This list should, at a minimum, contain all the architecture names
19551 recognized by GCC. */
e74cfd16 19552static const struct arm_arch_option_table arm_archs[] =
c19d1205
ZW
19553{
19554 {"all", ARM_ANY, FPU_ARCH_FPA},
19555 {"armv1", ARM_ARCH_V1, FPU_ARCH_FPA},
19556 {"armv2", ARM_ARCH_V2, FPU_ARCH_FPA},
19557 {"armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA},
19558 {"armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA},
19559 {"armv3", ARM_ARCH_V3, FPU_ARCH_FPA},
19560 {"armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA},
19561 {"armv4", ARM_ARCH_V4, FPU_ARCH_FPA},
19562 {"armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA},
19563 {"armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA},
19564 {"armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA},
19565 {"armv5", ARM_ARCH_V5, FPU_ARCH_VFP},
19566 {"armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP},
19567 {"armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP},
19568 {"armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP},
19569 {"armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP},
19570 {"armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP},
19571 {"armv6", ARM_ARCH_V6, FPU_ARCH_VFP},
19572 {"armv6j", ARM_ARCH_V6, FPU_ARCH_VFP},
19573 {"armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP},
19574 {"armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP},
19575 {"armv6zk", ARM_ARCH_V6ZK, FPU_ARCH_VFP},
19576 {"armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP},
19577 {"armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP},
19578 {"armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP},
19579 {"armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP},
62b3e311
PB
19580 {"armv7", ARM_ARCH_V7, FPU_ARCH_VFP},
19581 {"armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP},
19582 {"armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP},
19583 {"armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP},
c19d1205
ZW
19584 {"xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP},
19585 {"iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP},
e74cfd16 19586 {NULL, ARM_ARCH_NONE, ARM_ARCH_NONE}
c19d1205 19587};
7ed4c4c5 19588
c19d1205 19589/* ISA extensions in the co-processor space. */
e74cfd16 19590struct arm_option_cpu_value_table
c19d1205
ZW
19591{
19592 char *name;
e74cfd16 19593 const arm_feature_set value;
c19d1205 19594};
7ed4c4c5 19595
e74cfd16 19596static const struct arm_option_cpu_value_table arm_extensions[] =
c19d1205 19597{
e74cfd16
PB
19598 {"maverick", ARM_FEATURE (0, ARM_CEXT_MAVERICK)},
19599 {"xscale", ARM_FEATURE (0, ARM_CEXT_XSCALE)},
19600 {"iwmmxt", ARM_FEATURE (0, ARM_CEXT_IWMMXT)},
19601 {NULL, ARM_ARCH_NONE}
c19d1205 19602};
7ed4c4c5 19603
c19d1205
ZW
19604/* This list should, at a minimum, contain all the fpu names
19605 recognized by GCC. */
e74cfd16 19606static const struct arm_option_cpu_value_table arm_fpus[] =
c19d1205
ZW
19607{
19608 {"softfpa", FPU_NONE},
19609 {"fpe", FPU_ARCH_FPE},
19610 {"fpe2", FPU_ARCH_FPE},
19611 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
19612 {"fpa", FPU_ARCH_FPA},
19613 {"fpa10", FPU_ARCH_FPA},
19614 {"fpa11", FPU_ARCH_FPA},
19615 {"arm7500fe", FPU_ARCH_FPA},
19616 {"softvfp", FPU_ARCH_VFP},
19617 {"softvfp+vfp", FPU_ARCH_VFP_V2},
19618 {"vfp", FPU_ARCH_VFP_V2},
19619 {"vfp9", FPU_ARCH_VFP_V2},
5287ad62 19620 {"vfp3", FPU_ARCH_VFP_V3},
c19d1205
ZW
19621 {"vfp10", FPU_ARCH_VFP_V2},
19622 {"vfp10-r0", FPU_ARCH_VFP_V1},
19623 {"vfpxd", FPU_ARCH_VFP_V1xD},
19624 {"arm1020t", FPU_ARCH_VFP_V1},
19625 {"arm1020e", FPU_ARCH_VFP_V2},
19626 {"arm1136jfs", FPU_ARCH_VFP_V2},
19627 {"arm1136jf-s", FPU_ARCH_VFP_V2},
19628 {"maverick", FPU_ARCH_MAVERICK},
5287ad62 19629 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
e74cfd16
PB
19630 {NULL, ARM_ARCH_NONE}
19631};
19632
19633struct arm_option_value_table
19634{
19635 char *name;
19636 long value;
c19d1205 19637};
7ed4c4c5 19638
e74cfd16 19639static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
19640{
19641 {"hard", ARM_FLOAT_ABI_HARD},
19642 {"softfp", ARM_FLOAT_ABI_SOFTFP},
19643 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 19644 {NULL, 0}
c19d1205 19645};
7ed4c4c5 19646
c19d1205 19647#ifdef OBJ_ELF
3a4a14e9 19648/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 19649static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
19650{
19651 {"gnu", EF_ARM_EABI_UNKNOWN},
19652 {"4", EF_ARM_EABI_VER4},
3a4a14e9 19653 {"5", EF_ARM_EABI_VER5},
e74cfd16 19654 {NULL, 0}
c19d1205
ZW
19655};
19656#endif
7ed4c4c5 19657
c19d1205
ZW
19658struct arm_long_option_table
19659{
19660 char * option; /* Substring to match. */
19661 char * help; /* Help information. */
19662 int (* func) (char * subopt); /* Function to decode sub-option. */
19663 char * deprecated; /* If non-null, print this message. */
19664};
7ed4c4c5
NC
19665
19666static int
e74cfd16 19667arm_parse_extension (char * str, const arm_feature_set **opt_p)
7ed4c4c5 19668{
e74cfd16
PB
19669 arm_feature_set *ext_set = xmalloc (sizeof (arm_feature_set));
19670
19671 /* Copy the feature set, so that we can modify it. */
19672 *ext_set = **opt_p;
19673 *opt_p = ext_set;
19674
c19d1205 19675 while (str != NULL && *str != 0)
7ed4c4c5 19676 {
e74cfd16 19677 const struct arm_option_cpu_value_table * opt;
c19d1205
ZW
19678 char * ext;
19679 int optlen;
7ed4c4c5 19680
c19d1205
ZW
19681 if (*str != '+')
19682 {
19683 as_bad (_("invalid architectural extension"));
19684 return 0;
19685 }
7ed4c4c5 19686
c19d1205
ZW
19687 str++;
19688 ext = strchr (str, '+');
7ed4c4c5 19689
c19d1205
ZW
19690 if (ext != NULL)
19691 optlen = ext - str;
19692 else
19693 optlen = strlen (str);
7ed4c4c5 19694
c19d1205
ZW
19695 if (optlen == 0)
19696 {
19697 as_bad (_("missing architectural extension"));
19698 return 0;
19699 }
7ed4c4c5 19700
c19d1205
ZW
19701 for (opt = arm_extensions; opt->name != NULL; opt++)
19702 if (strncmp (opt->name, str, optlen) == 0)
19703 {
e74cfd16 19704 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value);
c19d1205
ZW
19705 break;
19706 }
7ed4c4c5 19707
c19d1205
ZW
19708 if (opt->name == NULL)
19709 {
19710 as_bad (_("unknown architectural extnsion `%s'"), str);
19711 return 0;
19712 }
7ed4c4c5 19713
c19d1205
ZW
19714 str = ext;
19715 };
7ed4c4c5 19716
c19d1205
ZW
19717 return 1;
19718}
7ed4c4c5 19719
c19d1205
ZW
19720static int
19721arm_parse_cpu (char * str)
7ed4c4c5 19722{
e74cfd16 19723 const struct arm_cpu_option_table * opt;
c19d1205
ZW
19724 char * ext = strchr (str, '+');
19725 int optlen;
7ed4c4c5 19726
c19d1205
ZW
19727 if (ext != NULL)
19728 optlen = ext - str;
7ed4c4c5 19729 else
c19d1205 19730 optlen = strlen (str);
7ed4c4c5 19731
c19d1205 19732 if (optlen == 0)
7ed4c4c5 19733 {
c19d1205
ZW
19734 as_bad (_("missing cpu name `%s'"), str);
19735 return 0;
7ed4c4c5
NC
19736 }
19737
c19d1205
ZW
19738 for (opt = arm_cpus; opt->name != NULL; opt++)
19739 if (strncmp (opt->name, str, optlen) == 0)
19740 {
e74cfd16
PB
19741 mcpu_cpu_opt = &opt->value;
19742 mcpu_fpu_opt = &opt->default_fpu;
ee065d83
PB
19743 if (opt->canonical_name)
19744 strcpy(selected_cpu_name, opt->canonical_name);
19745 else
19746 {
19747 int i;
19748 for (i = 0; i < optlen; i++)
19749 selected_cpu_name[i] = TOUPPER (opt->name[i]);
19750 selected_cpu_name[i] = 0;
19751 }
7ed4c4c5 19752
c19d1205
ZW
19753 if (ext != NULL)
19754 return arm_parse_extension (ext, &mcpu_cpu_opt);
7ed4c4c5 19755
c19d1205
ZW
19756 return 1;
19757 }
7ed4c4c5 19758
c19d1205
ZW
19759 as_bad (_("unknown cpu `%s'"), str);
19760 return 0;
7ed4c4c5
NC
19761}
19762
c19d1205
ZW
19763static int
19764arm_parse_arch (char * str)
7ed4c4c5 19765{
e74cfd16 19766 const struct arm_arch_option_table *opt;
c19d1205
ZW
19767 char *ext = strchr (str, '+');
19768 int optlen;
7ed4c4c5 19769
c19d1205
ZW
19770 if (ext != NULL)
19771 optlen = ext - str;
7ed4c4c5 19772 else
c19d1205 19773 optlen = strlen (str);
7ed4c4c5 19774
c19d1205 19775 if (optlen == 0)
7ed4c4c5 19776 {
c19d1205
ZW
19777 as_bad (_("missing architecture name `%s'"), str);
19778 return 0;
7ed4c4c5
NC
19779 }
19780
c19d1205
ZW
19781 for (opt = arm_archs; opt->name != NULL; opt++)
19782 if (streq (opt->name, str))
19783 {
e74cfd16
PB
19784 march_cpu_opt = &opt->value;
19785 march_fpu_opt = &opt->default_fpu;
ee065d83 19786 strcpy(selected_cpu_name, opt->name);
7ed4c4c5 19787
c19d1205
ZW
19788 if (ext != NULL)
19789 return arm_parse_extension (ext, &march_cpu_opt);
7ed4c4c5 19790
c19d1205
ZW
19791 return 1;
19792 }
19793
19794 as_bad (_("unknown architecture `%s'\n"), str);
19795 return 0;
7ed4c4c5 19796}
eb043451 19797
c19d1205
ZW
19798static int
19799arm_parse_fpu (char * str)
19800{
e74cfd16 19801 const struct arm_option_cpu_value_table * opt;
b99bd4ef 19802
c19d1205
ZW
19803 for (opt = arm_fpus; opt->name != NULL; opt++)
19804 if (streq (opt->name, str))
19805 {
e74cfd16 19806 mfpu_opt = &opt->value;
c19d1205
ZW
19807 return 1;
19808 }
b99bd4ef 19809
c19d1205
ZW
19810 as_bad (_("unknown floating point format `%s'\n"), str);
19811 return 0;
19812}
19813
19814static int
19815arm_parse_float_abi (char * str)
b99bd4ef 19816{
e74cfd16 19817 const struct arm_option_value_table * opt;
b99bd4ef 19818
c19d1205
ZW
19819 for (opt = arm_float_abis; opt->name != NULL; opt++)
19820 if (streq (opt->name, str))
19821 {
19822 mfloat_abi_opt = opt->value;
19823 return 1;
19824 }
cc8a6dd0 19825
c19d1205
ZW
19826 as_bad (_("unknown floating point abi `%s'\n"), str);
19827 return 0;
19828}
b99bd4ef 19829
c19d1205
ZW
19830#ifdef OBJ_ELF
19831static int
19832arm_parse_eabi (char * str)
19833{
e74cfd16 19834 const struct arm_option_value_table *opt;
cc8a6dd0 19835
c19d1205
ZW
19836 for (opt = arm_eabis; opt->name != NULL; opt++)
19837 if (streq (opt->name, str))
19838 {
19839 meabi_flags = opt->value;
19840 return 1;
19841 }
19842 as_bad (_("unknown EABI `%s'\n"), str);
19843 return 0;
19844}
19845#endif
cc8a6dd0 19846
c19d1205
ZW
19847struct arm_long_option_table arm_long_opts[] =
19848{
19849 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
19850 arm_parse_cpu, NULL},
19851 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
19852 arm_parse_arch, NULL},
19853 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
19854 arm_parse_fpu, NULL},
19855 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
19856 arm_parse_float_abi, NULL},
19857#ifdef OBJ_ELF
19858 {"meabi=", N_("<ver>\t assemble for eabi version <ver>"),
19859 arm_parse_eabi, NULL},
19860#endif
19861 {NULL, NULL, 0, NULL}
19862};
cc8a6dd0 19863
c19d1205
ZW
19864int
19865md_parse_option (int c, char * arg)
19866{
19867 struct arm_option_table *opt;
e74cfd16 19868 const struct arm_legacy_option_table *fopt;
c19d1205 19869 struct arm_long_option_table *lopt;
b99bd4ef 19870
c19d1205 19871 switch (c)
b99bd4ef 19872 {
c19d1205
ZW
19873#ifdef OPTION_EB
19874 case OPTION_EB:
19875 target_big_endian = 1;
19876 break;
19877#endif
cc8a6dd0 19878
c19d1205
ZW
19879#ifdef OPTION_EL
19880 case OPTION_EL:
19881 target_big_endian = 0;
19882 break;
19883#endif
b99bd4ef 19884
c19d1205
ZW
19885 case 'a':
19886 /* Listing option. Just ignore these, we don't support additional
19887 ones. */
19888 return 0;
b99bd4ef 19889
c19d1205
ZW
19890 default:
19891 for (opt = arm_opts; opt->option != NULL; opt++)
19892 {
19893 if (c == opt->option[0]
19894 && ((arg == NULL && opt->option[1] == 0)
19895 || streq (arg, opt->option + 1)))
19896 {
19897#if WARN_DEPRECATED
19898 /* If the option is deprecated, tell the user. */
19899 if (opt->deprecated != NULL)
19900 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
19901 arg ? arg : "", _(opt->deprecated));
19902#endif
b99bd4ef 19903
c19d1205
ZW
19904 if (opt->var != NULL)
19905 *opt->var = opt->value;
cc8a6dd0 19906
c19d1205
ZW
19907 return 1;
19908 }
19909 }
b99bd4ef 19910
e74cfd16
PB
19911 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
19912 {
19913 if (c == fopt->option[0]
19914 && ((arg == NULL && fopt->option[1] == 0)
19915 || streq (arg, fopt->option + 1)))
19916 {
19917#if WARN_DEPRECATED
19918 /* If the option is deprecated, tell the user. */
19919 if (fopt->deprecated != NULL)
19920 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
19921 arg ? arg : "", _(fopt->deprecated));
19922#endif
19923
19924 if (fopt->var != NULL)
19925 *fopt->var = &fopt->value;
19926
19927 return 1;
19928 }
19929 }
19930
c19d1205
ZW
19931 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
19932 {
19933 /* These options are expected to have an argument. */
19934 if (c == lopt->option[0]
19935 && arg != NULL
19936 && strncmp (arg, lopt->option + 1,
19937 strlen (lopt->option + 1)) == 0)
19938 {
19939#if WARN_DEPRECATED
19940 /* If the option is deprecated, tell the user. */
19941 if (lopt->deprecated != NULL)
19942 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
19943 _(lopt->deprecated));
19944#endif
b99bd4ef 19945
c19d1205
ZW
19946 /* Call the sup-option parser. */
19947 return lopt->func (arg + strlen (lopt->option) - 1);
19948 }
19949 }
a737bd4d 19950
c19d1205
ZW
19951 return 0;
19952 }
a394c00f 19953
c19d1205
ZW
19954 return 1;
19955}
a394c00f 19956
c19d1205
ZW
19957void
19958md_show_usage (FILE * fp)
a394c00f 19959{
c19d1205
ZW
19960 struct arm_option_table *opt;
19961 struct arm_long_option_table *lopt;
a394c00f 19962
c19d1205 19963 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 19964
c19d1205
ZW
19965 for (opt = arm_opts; opt->option != NULL; opt++)
19966 if (opt->help != NULL)
19967 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 19968
c19d1205
ZW
19969 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
19970 if (lopt->help != NULL)
19971 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 19972
c19d1205
ZW
19973#ifdef OPTION_EB
19974 fprintf (fp, _("\
19975 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
19976#endif
19977
c19d1205
ZW
19978#ifdef OPTION_EL
19979 fprintf (fp, _("\
19980 -EL assemble code for a little-endian cpu\n"));
a737bd4d 19981#endif
c19d1205 19982}
ee065d83
PB
19983
19984
19985#ifdef OBJ_ELF
62b3e311
PB
19986typedef struct
19987{
19988 int val;
19989 arm_feature_set flags;
19990} cpu_arch_ver_table;
19991
19992/* Mapping from CPU features to EABI CPU arch values. Table must be sorted
19993 least features first. */
19994static const cpu_arch_ver_table cpu_arch_ver[] =
19995{
19996 {1, ARM_ARCH_V4},
19997 {2, ARM_ARCH_V4T},
19998 {3, ARM_ARCH_V5},
19999 {4, ARM_ARCH_V5TE},
20000 {5, ARM_ARCH_V5TEJ},
20001 {6, ARM_ARCH_V6},
20002 {7, ARM_ARCH_V6Z},
20003 {8, ARM_ARCH_V6K},
20004 {9, ARM_ARCH_V6T2},
20005 {10, ARM_ARCH_V7A},
20006 {10, ARM_ARCH_V7R},
20007 {10, ARM_ARCH_V7M},
20008 {0, ARM_ARCH_NONE}
20009};
20010
ee065d83
PB
20011/* Set the public EABI object attributes. */
20012static void
20013aeabi_set_public_attributes (void)
20014{
20015 int arch;
e74cfd16 20016 arm_feature_set flags;
62b3e311
PB
20017 arm_feature_set tmp;
20018 const cpu_arch_ver_table *p;
ee065d83
PB
20019
20020 /* Choose the architecture based on the capabilities of the requested cpu
20021 (if any) and/or the instructions actually used. */
e74cfd16
PB
20022 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
20023 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
20024 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
5287ad62 20025
62b3e311
PB
20026 tmp = flags;
20027 arch = 0;
20028 for (p = cpu_arch_ver; p->val; p++)
20029 {
20030 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
20031 {
20032 arch = p->val;
20033 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
20034 }
20035 }
ee065d83
PB
20036
20037 /* Tag_CPU_name. */
20038 if (selected_cpu_name[0])
20039 {
20040 char *p;
20041
20042 p = selected_cpu_name;
20043 if (strncmp(p, "armv", 4) == 0)
20044 {
20045 int i;
20046
20047 p += 4;
20048 for (i = 0; p[i]; i++)
20049 p[i] = TOUPPER (p[i]);
20050 }
20051 elf32_arm_add_eabi_attr_string (stdoutput, 5, p);
20052 }
20053 /* Tag_CPU_arch. */
20054 elf32_arm_add_eabi_attr_int (stdoutput, 6, arch);
62b3e311
PB
20055 /* Tag_CPU_arch_profile. */
20056 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
20057 elf32_arm_add_eabi_attr_int (stdoutput, 7, 'A');
20058 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
20059 elf32_arm_add_eabi_attr_int (stdoutput, 7, 'R');
20060 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m))
20061 elf32_arm_add_eabi_attr_int (stdoutput, 7, 'M');
ee065d83 20062 /* Tag_ARM_ISA_use. */
e74cfd16 20063 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_full))
ee065d83
PB
20064 elf32_arm_add_eabi_attr_int (stdoutput, 8, 1);
20065 /* Tag_THUMB_ISA_use. */
e74cfd16 20066 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_full))
ee065d83 20067 elf32_arm_add_eabi_attr_int (stdoutput, 9,
e74cfd16 20068 ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_t2) ? 2 : 1);
ee065d83 20069 /* Tag_VFP_arch. */
5287ad62
JB
20070 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_vfp_ext_v3)
20071 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_vfp_ext_v3))
20072 elf32_arm_add_eabi_attr_int (stdoutput, 10, 3);
20073 else if (ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_vfp_ext_v2)
20074 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_vfp_ext_v2))
ee065d83 20075 elf32_arm_add_eabi_attr_int (stdoutput, 10, 2);
5287ad62
JB
20076 else if (ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_vfp_ext_v1)
20077 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_vfp_ext_v1)
20078 || ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_vfp_ext_v1xd)
20079 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_vfp_ext_v1xd))
ee065d83
PB
20080 elf32_arm_add_eabi_attr_int (stdoutput, 10, 1);
20081 /* Tag_WMMX_arch. */
e74cfd16
PB
20082 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_cext_iwmmxt)
20083 || ARM_CPU_HAS_FEATURE (arm_arch_used, arm_cext_iwmmxt))
ee065d83 20084 elf32_arm_add_eabi_attr_int (stdoutput, 11, 1);
5287ad62
JB
20085 /* Tag_NEON_arch. */
20086 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_neon_ext_v1)
20087 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_neon_ext_v1))
20088 elf32_arm_add_eabi_attr_int (stdoutput, 12, 1);
ee065d83
PB
20089}
20090
20091/* Add the .ARM.attributes section. */
20092void
20093arm_md_end (void)
20094{
20095 segT s;
20096 char *p;
20097 addressT addr;
20098 offsetT size;
20099
20100 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
20101 return;
20102
20103 aeabi_set_public_attributes ();
20104 size = elf32_arm_eabi_attr_size (stdoutput);
20105 s = subseg_new (".ARM.attributes", 0);
20106 bfd_set_section_flags (stdoutput, s, SEC_READONLY | SEC_DATA);
20107 addr = frag_now_fix ();
20108 p = frag_more (size);
20109 elf32_arm_set_eabi_attr_contents (stdoutput, (bfd_byte *)p, size);
20110}
8463be01 20111#endif /* OBJ_ELF */
ee065d83
PB
20112
20113
20114/* Parse a .cpu directive. */
20115
20116static void
20117s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
20118{
e74cfd16 20119 const struct arm_cpu_option_table *opt;
ee065d83
PB
20120 char *name;
20121 char saved_char;
20122
20123 name = input_line_pointer;
20124 while (*input_line_pointer && !ISSPACE(*input_line_pointer))
20125 input_line_pointer++;
20126 saved_char = *input_line_pointer;
20127 *input_line_pointer = 0;
20128
20129 /* Skip the first "all" entry. */
20130 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
20131 if (streq (opt->name, name))
20132 {
e74cfd16
PB
20133 mcpu_cpu_opt = &opt->value;
20134 selected_cpu = opt->value;
ee065d83
PB
20135 if (opt->canonical_name)
20136 strcpy(selected_cpu_name, opt->canonical_name);
20137 else
20138 {
20139 int i;
20140 for (i = 0; opt->name[i]; i++)
20141 selected_cpu_name[i] = TOUPPER (opt->name[i]);
20142 selected_cpu_name[i] = 0;
20143 }
e74cfd16 20144 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
20145 *input_line_pointer = saved_char;
20146 demand_empty_rest_of_line ();
20147 return;
20148 }
20149 as_bad (_("unknown cpu `%s'"), name);
20150 *input_line_pointer = saved_char;
20151 ignore_rest_of_line ();
20152}
20153
20154
20155/* Parse a .arch directive. */
20156
20157static void
20158s_arm_arch (int ignored ATTRIBUTE_UNUSED)
20159{
e74cfd16 20160 const struct arm_arch_option_table *opt;
ee065d83
PB
20161 char saved_char;
20162 char *name;
20163
20164 name = input_line_pointer;
20165 while (*input_line_pointer && !ISSPACE(*input_line_pointer))
20166 input_line_pointer++;
20167 saved_char = *input_line_pointer;
20168 *input_line_pointer = 0;
20169
20170 /* Skip the first "all" entry. */
20171 for (opt = arm_archs + 1; opt->name != NULL; opt++)
20172 if (streq (opt->name, name))
20173 {
e74cfd16
PB
20174 mcpu_cpu_opt = &opt->value;
20175 selected_cpu = opt->value;
ee065d83 20176 strcpy(selected_cpu_name, opt->name);
e74cfd16 20177 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
20178 *input_line_pointer = saved_char;
20179 demand_empty_rest_of_line ();
20180 return;
20181 }
20182
20183 as_bad (_("unknown architecture `%s'\n"), name);
20184 *input_line_pointer = saved_char;
20185 ignore_rest_of_line ();
20186}
20187
20188
20189/* Parse a .fpu directive. */
20190
20191static void
20192s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
20193{
e74cfd16 20194 const struct arm_option_cpu_value_table *opt;
ee065d83
PB
20195 char saved_char;
20196 char *name;
20197
20198 name = input_line_pointer;
20199 while (*input_line_pointer && !ISSPACE(*input_line_pointer))
20200 input_line_pointer++;
20201 saved_char = *input_line_pointer;
20202 *input_line_pointer = 0;
20203
20204 for (opt = arm_fpus; opt->name != NULL; opt++)
20205 if (streq (opt->name, name))
20206 {
e74cfd16
PB
20207 mfpu_opt = &opt->value;
20208 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
ee065d83
PB
20209 *input_line_pointer = saved_char;
20210 demand_empty_rest_of_line ();
20211 return;
20212 }
20213
20214 as_bad (_("unknown floating point format `%s'\n"), name);
20215 *input_line_pointer = saved_char;
20216 ignore_rest_of_line ();
20217}
ee065d83 20218