2006-09-04 Paul Brook <paul@codesourcery.com>
[deliverable/binutils-gdb.git] / gas / config / tc-arm.c
1 /* tc-arm.c -- Assemble for the ARM
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006
4 Free Software Foundation, Inc.
5 Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
6 Modified by David Taylor (dtaylor@armltd.co.uk)
7 Cirrus coprocessor mods by Aldy Hernandez (aldyh@redhat.com)
8 Cirrus coprocessor fixes by Petko Manolov (petkan@nucleusys.com)
9 Cirrus coprocessor fixes by Vladimir Ivanov (vladitx@nucleusys.com)
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
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
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
25 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
26 02110-1301, USA. */
27
28 #include <limits.h>
29 #include <stdarg.h>
30 #define NO_RELOC 0
31 #include "as.h"
32 #include "safe-ctype.h"
33 #include "subsegs.h"
34 #include "obstack.h"
35
36 #include "opcode/arm.h"
37
38 #ifdef OBJ_ELF
39 #include "elf/arm.h"
40 #include "dw2gencfi.h"
41 #endif
42
43 #include "dwarf2dbg.h"
44
45 #define WARN_DEPRECATED 1
46
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
53 static struct
54 {
55 symbolS * proc_start;
56 symbolS * table_entry;
57 symbolS * personality_routine;
58 int personality_index;
59 /* The segment containing the function. */
60 segT saved_seg;
61 subsegT saved_subseg;
62 /* Opcodes generated from this function. */
63 unsigned char * opcodes;
64 int opcode_count;
65 int opcode_alloc;
66 /* The number of bytes pushed to the stack. */
67 offsetT frame_size;
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. */
71 offsetT pending_offset;
72 /* These two fields are set by both unwind_movsp and unwind_setfp. They
73 hold the reg+offset to use when restoring sp from a frame pointer. */
74 offsetT fp_offset;
75 int fp_reg;
76 /* Nonzero if an unwind_setfp directive has been seen. */
77 unsigned fp_used:1;
78 /* Nonzero if the last opcode restores sp from fp_reg. */
79 unsigned sp_restored:1;
80 } unwind;
81
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. */
85 static unsigned int marked_pr_dependency = 0;
86
87 #endif /* OBJ_ELF */
88
89 /* Results from operand parsing worker functions. */
90
91 typedef enum
92 {
93 PARSE_OPERAND_SUCCESS,
94 PARSE_OPERAND_FAIL,
95 PARSE_OPERAND_FAIL_NO_BACKTRACK
96 } parse_operand_result;
97
98 enum arm_float_abi
99 {
100 ARM_FLOAT_ABI_HARD,
101 ARM_FLOAT_ABI_SOFTFP,
102 ARM_FLOAT_ABI_SOFT
103 };
104
105 /* Types of processor to assemble for. */
106 #ifndef CPU_DEFAULT
107 #if defined __XSCALE__
108 #define CPU_DEFAULT ARM_ARCH_XSCALE
109 #else
110 #if defined __thumb__
111 #define CPU_DEFAULT ARM_ARCH_V5T
112 #endif
113 #endif
114 #endif
115
116 #ifndef FPU_DEFAULT
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
126 # elif defined (TE_VXWORKS)
127 # define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, VFP order. */
128 # else
129 /* For backwards compatibility, default to FPA. */
130 # define FPU_DEFAULT FPU_ARCH_FPA
131 # endif
132 #endif /* ifndef FPU_DEFAULT */
133
134 #define streq(a, b) (strcmp (a, b) == 0)
135
136 static arm_feature_set cpu_variant;
137 static arm_feature_set arm_arch_used;
138 static arm_feature_set thumb_arch_used;
139
140 /* Flags stored in private area of BFD structure. */
141 static int uses_apcs_26 = FALSE;
142 static int atpcs = FALSE;
143 static int support_interwork = FALSE;
144 static int uses_apcs_float = FALSE;
145 static int pic_code = FALSE;
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. */
150 static const arm_feature_set *legacy_cpu = NULL;
151 static const arm_feature_set *legacy_fpu = NULL;
152
153 static const arm_feature_set *mcpu_cpu_opt = NULL;
154 static const arm_feature_set *mcpu_fpu_opt = NULL;
155 static const arm_feature_set *march_cpu_opt = NULL;
156 static const arm_feature_set *march_fpu_opt = NULL;
157 static const arm_feature_set *mfpu_opt = NULL;
158
159 /* Constants for known architecture features. */
160 static const arm_feature_set fpu_default = FPU_DEFAULT;
161 static const arm_feature_set fpu_arch_vfp_v1 = FPU_ARCH_VFP_V1;
162 static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
163 static const arm_feature_set fpu_arch_vfp_v3 = FPU_ARCH_VFP_V3;
164 static const arm_feature_set fpu_arch_neon_v1 = FPU_ARCH_NEON_V1;
165 static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
166 static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
167 static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
168 static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
169
170 #ifdef CPU_DEFAULT
171 static const arm_feature_set cpu_default = CPU_DEFAULT;
172 #endif
173
174 static const arm_feature_set arm_ext_v1 = ARM_FEATURE (ARM_EXT_V1, 0);
175 static const arm_feature_set arm_ext_v2 = ARM_FEATURE (ARM_EXT_V1, 0);
176 static const arm_feature_set arm_ext_v2s = ARM_FEATURE (ARM_EXT_V2S, 0);
177 static const arm_feature_set arm_ext_v3 = ARM_FEATURE (ARM_EXT_V3, 0);
178 static const arm_feature_set arm_ext_v3m = ARM_FEATURE (ARM_EXT_V3M, 0);
179 static const arm_feature_set arm_ext_v4 = ARM_FEATURE (ARM_EXT_V4, 0);
180 static const arm_feature_set arm_ext_v4t = ARM_FEATURE (ARM_EXT_V4T, 0);
181 static const arm_feature_set arm_ext_v5 = ARM_FEATURE (ARM_EXT_V5, 0);
182 static const arm_feature_set arm_ext_v4t_5 =
183 ARM_FEATURE (ARM_EXT_V4T | ARM_EXT_V5, 0);
184 static const arm_feature_set arm_ext_v5t = ARM_FEATURE (ARM_EXT_V5T, 0);
185 static const arm_feature_set arm_ext_v5e = ARM_FEATURE (ARM_EXT_V5E, 0);
186 static const arm_feature_set arm_ext_v5exp = ARM_FEATURE (ARM_EXT_V5ExP, 0);
187 static const arm_feature_set arm_ext_v5j = ARM_FEATURE (ARM_EXT_V5J, 0);
188 static const arm_feature_set arm_ext_v6 = ARM_FEATURE (ARM_EXT_V6, 0);
189 static const arm_feature_set arm_ext_v6k = ARM_FEATURE (ARM_EXT_V6K, 0);
190 static const arm_feature_set arm_ext_v6z = ARM_FEATURE (ARM_EXT_V6Z, 0);
191 static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE (ARM_EXT_V6T2, 0);
192 static const arm_feature_set arm_ext_v6_notm = ARM_FEATURE (ARM_EXT_V6_NOTM, 0);
193 static const arm_feature_set arm_ext_div = ARM_FEATURE (ARM_EXT_DIV, 0);
194 static const arm_feature_set arm_ext_v7 = ARM_FEATURE (ARM_EXT_V7, 0);
195 static const arm_feature_set arm_ext_v7a = ARM_FEATURE (ARM_EXT_V7A, 0);
196 static const arm_feature_set arm_ext_v7r = ARM_FEATURE (ARM_EXT_V7R, 0);
197 static const arm_feature_set arm_ext_v7m = ARM_FEATURE (ARM_EXT_V7M, 0);
198
199 static const arm_feature_set arm_arch_any = ARM_ANY;
200 static const arm_feature_set arm_arch_full = ARM_FEATURE (-1, -1);
201 static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
202 static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
203
204 static const arm_feature_set arm_cext_iwmmxt =
205 ARM_FEATURE (0, ARM_CEXT_IWMMXT);
206 static const arm_feature_set arm_cext_xscale =
207 ARM_FEATURE (0, ARM_CEXT_XSCALE);
208 static const arm_feature_set arm_cext_maverick =
209 ARM_FEATURE (0, ARM_CEXT_MAVERICK);
210 static const arm_feature_set fpu_fpa_ext_v1 = ARM_FEATURE (0, FPU_FPA_EXT_V1);
211 static const arm_feature_set fpu_fpa_ext_v2 = ARM_FEATURE (0, FPU_FPA_EXT_V2);
212 static const arm_feature_set fpu_vfp_ext_v1xd =
213 ARM_FEATURE (0, FPU_VFP_EXT_V1xD);
214 static const arm_feature_set fpu_vfp_ext_v1 = ARM_FEATURE (0, FPU_VFP_EXT_V1);
215 static const arm_feature_set fpu_vfp_ext_v2 = ARM_FEATURE (0, FPU_VFP_EXT_V2);
216 static const arm_feature_set fpu_vfp_ext_v3 = ARM_FEATURE (0, FPU_VFP_EXT_V3);
217 static const arm_feature_set fpu_neon_ext_v1 = ARM_FEATURE (0, FPU_NEON_EXT_V1);
218 static const arm_feature_set fpu_vfp_v3_or_neon_ext =
219 ARM_FEATURE (0, FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
220
221 static int mfloat_abi_opt = -1;
222 /* Record user cpu selection for object attributes. */
223 static arm_feature_set selected_cpu = ARM_ARCH_NONE;
224 /* Must be long enough to hold any of the names in arm_cpus. */
225 static char selected_cpu_name[16];
226 #ifdef OBJ_ELF
227 # ifdef EABI_DEFAULT
228 static int meabi_flags = EABI_DEFAULT;
229 # else
230 static int meabi_flags = EF_ARM_EABI_UNKNOWN;
231 # endif
232 #endif
233
234 #ifdef OBJ_ELF
235 /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
236 symbolS * GOT_symbol;
237 #endif
238
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. */
243 static int thumb_mode = 0;
244
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
268 static bfd_boolean unified_syntax = FALSE;
269
270 enum neon_el_type
271 {
272 NT_invtype,
273 NT_untyped,
274 NT_integer,
275 NT_float,
276 NT_poly,
277 NT_signed,
278 NT_unsigned
279 };
280
281 struct neon_type_el
282 {
283 enum neon_el_type type;
284 unsigned size;
285 };
286
287 #define NEON_MAX_TYPE_ELS 4
288
289 struct neon_type
290 {
291 struct neon_type_el el[NEON_MAX_TYPE_ELS];
292 unsigned elems;
293 };
294
295 struct arm_it
296 {
297 const char * error;
298 unsigned long instruction;
299 int size;
300 int size_req;
301 int cond;
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;
306 struct neon_type vectype;
307 /* Set to the opcode if the instruction needs relaxation.
308 Zero if the instruction is not relaxed. */
309 unsigned long relax;
310 struct
311 {
312 bfd_reloc_code_real_type type;
313 expressionS exp;
314 int pc_rel;
315 } reloc;
316
317 struct
318 {
319 unsigned reg;
320 signed int imm;
321 struct neon_type_el vectype;
322 unsigned present : 1; /* Operand present. */
323 unsigned isreg : 1; /* Operand was a register. */
324 unsigned immisreg : 1; /* .imm field is a second register. */
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. */
330 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
331 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
332 unsigned issingle : 1; /* Operand is VFP single-precision register. */
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). */
340 } operands[6];
341 };
342
343 static struct arm_it inst;
344
345 #define NUM_FLOAT_VALS 8
346
347 const char * fp_const[] =
348 {
349 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
350 };
351
352 /* Number of littlenums required to hold an extended precision number. */
353 #define MAX_LITTLENUMS 6
354
355 LITTLENUM_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
365 #define CP_T_X 0x00008000
366 #define CP_T_Y 0x00400000
367
368 #define CONDS_BIT 0x00100000
369 #define LOAD_BIT 0x00100000
370
371 #define DOUBLE_LOAD_FLAG 0x00000001
372
373 struct asm_cond
374 {
375 const char * template;
376 unsigned long value;
377 };
378
379 #define COND_ALWAYS 0xE
380
381 struct asm_psr
382 {
383 const char *template;
384 unsigned long field;
385 };
386
387 struct asm_barrier_opt
388 {
389 const char *template;
390 unsigned long value;
391 };
392
393 /* The bit that distinguishes CPSR and SPSR. */
394 #define SPSR_BIT (1 << 22)
395
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)
401
402 struct reloc_entry
403 {
404 char *name;
405 bfd_reloc_code_real_type reloc;
406 };
407
408 enum vfp_reg_pos
409 {
410 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
411 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
412 };
413
414 enum vfp_ldstm_type
415 {
416 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
417 };
418
419 /* Bits for DEFINED field in neon_typed_alias. */
420 #define NTA_HASTYPE 1
421 #define NTA_HASINDEX 2
422
423 struct neon_typed_alias
424 {
425 unsigned char defined;
426 unsigned char index;
427 struct neon_type_el eltype;
428 };
429
430 /* ARM register categories. This includes coprocessor numbers and various
431 architecture extensions' registers. */
432 enum arm_reg_type
433 {
434 REG_TYPE_RN,
435 REG_TYPE_CP,
436 REG_TYPE_CN,
437 REG_TYPE_FN,
438 REG_TYPE_VFS,
439 REG_TYPE_VFD,
440 REG_TYPE_NQ,
441 REG_TYPE_VFSD,
442 REG_TYPE_NDQ,
443 REG_TYPE_NSDQ,
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,
455 };
456
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. */
461 struct reg_entry
462 {
463 const char *name;
464 unsigned char number;
465 unsigned char type;
466 unsigned char builtin;
467 struct neon_typed_alias *neon;
468 };
469
470 /* Diagnostics used when we don't get a register of the expected type. */
471 const 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"),
478 N_("VFP/Neon double precision register expected"),
479 N_("Neon quad precision register expected"),
480 N_("VFP single or double precision register expected"),
481 N_("Neon double or quad precision register expected"),
482 N_("VFP single, double or Neon quad precision register expected"),
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"),
494 };
495
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
500
501 /* ARM instructions take 4bytes in the object file, Thumb instructions
502 take 2: */
503 #define INSN_SIZE 4
504
505 struct asm_opcode
506 {
507 /* Basic string to match. */
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;
515
516 /* Basic instruction code. */
517 unsigned int avalue : 28;
518
519 /* Thumb-format instruction code. */
520 unsigned int tvalue;
521
522 /* Which architecture variant provides this instruction. */
523 const arm_feature_set *avariant;
524 const arm_feature_set *tvariant;
525
526 /* Function to call to encode instruction in ARM format. */
527 void (* aencode) (void);
528
529 /* Function to call to encode instruction in Thumb format. */
530 void (* tencode) (void);
531 };
532
533 /* Defines for various bits that we will want to toggle. */
534 #define INST_IMMEDIATE 0x02000000
535 #define OFFSET_REG 0x02000000
536 #define HWOFFSET_IMM 0x00400000
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
542
543 #define LITERAL_MASK 0xf000f000
544 #define OPCODE_MASK 0xfe1fffff
545 #define V4_STR_BIT 0x00000020
546
547 #define DATA_OP_SHIFT 21
548
549 #define T2_OPCODE_MASK 0xfe1fffff
550 #define T2_DATA_OP_SHIFT 21
551
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
569
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
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
586
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
598
599 #define T_OPCODE_ASR_R 0x4100
600 #define T_OPCODE_LSL_R 0x4080
601 #define T_OPCODE_LSR_R 0x40c0
602 #define T_OPCODE_ROR_R 0x41c0
603 #define T_OPCODE_ASR_I 0x1000
604 #define T_OPCODE_LSL_I 0x0000
605 #define T_OPCODE_LSR_I 0x0800
606
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
612
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
628
629 #define T_OPCODE_PUSH 0xb400
630 #define T_OPCODE_POP 0xbc00
631
632 #define T_OPCODE_BRANCH 0xe000
633
634 #define THUMB_SIZE 2 /* Size of thumb instruction. */
635 #define THUMB_PP_PC_LR 0x0100
636 #define THUMB_LOAD_BIT 0x0800
637 #define THUMB2_LOAD_BIT 0x00100000
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")
645 #define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
646 #define BAD_BRANCH _("branch must be last instruction in IT block")
647 #define BAD_NOT_IT _("instruction not allowed in IT block")
648 #define BAD_FPU _("selected FPU does not support instruction")
649
650 static struct hash_control *arm_ops_hsh;
651 static struct hash_control *arm_cond_hsh;
652 static struct hash_control *arm_shift_hsh;
653 static struct hash_control *arm_psr_hsh;
654 static struct hash_control *arm_v7m_psr_hsh;
655 static struct hash_control *arm_reg_hsh;
656 static struct hash_control *arm_reloc_hsh;
657 static struct hash_control *arm_barrier_opt_hsh;
658
659 /* Stuff needed to resolve the label ambiguity
660 As:
661 ...
662 label: <insn>
663 may differ from:
664 ...
665 label:
666 <insn>
667 */
668
669 symbolS * last_label_seen;
670 static int label_is_thumb_function_name = FALSE;
671 \f
672 /* Literal pool structure. Held on a per-section
673 and per-sub-section basis. */
674
675 #define MAX_LITERAL_POOL_SIZE 1024
676 typedef struct literal_pool
677 {
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;
684 struct literal_pool * next;
685 } literal_pool;
686
687 /* Pointer to a linked list of literal pools. */
688 literal_pool * list_of_pools = NULL;
689
690 /* State variables for IT block handling. */
691 static bfd_boolean current_it_mask = 0;
692 static int current_cc;
693
694 \f
695 /* Pure syntax. */
696
697 /* This array holds the chars that always start a comment. If the
698 pre-processor is disabled, these aren't very useful. */
699 const char comment_chars[] = "@";
700
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. */
708 const char line_comment_chars[] = "#";
709
710 const char line_separator_chars[] = ";";
711
712 /* Chars that can be used to separate mant
713 from exp in floating point numbers. */
714 const char EXP_CHARS[] = "eE";
715
716 /* Chars that mean this number is a floating point constant. */
717 /* As in 0f12.456 */
718 /* or 0d1.2345e12 */
719
720 const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
721
722 /* Prefix characters that indicate the start of an immediate
723 value. */
724 #define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
725
726 /* Separator character handling. */
727
728 #define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
729
730 static inline int
731 skip_past_char (char ** str, char c)
732 {
733 if (**str == c)
734 {
735 (*str)++;
736 return SUCCESS;
737 }
738 else
739 return FAIL;
740 }
741 #define skip_past_comma(str) skip_past_char (str, ',')
742
743 /* Arithmetic expressions (possibly involving symbols). */
744
745 /* Return TRUE if anything in the expression is a bignum. */
746
747 static int
748 walk_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)
754 {
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)));
758 }
759
760 return 0;
761 }
762
763 static 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
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
772
773 static int
774 my_get_expression (expressionS * ep, char ** str, int prefix_mode)
775 {
776 char * save_in;
777 segT seg;
778
779 /* In unified syntax, all prefixes are optional. */
780 if (unified_syntax)
781 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
782 : GE_OPT_PREFIX;
783
784 switch (prefix_mode)
785 {
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:
796 case GE_OPT_PREFIX_BIG:
797 if (is_immediate_prefix (**str))
798 (*str)++;
799 break;
800 default: abort ();
801 }
802
803 memset (ep, 0, sizeof (expressionS));
804
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)
812 {
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 }
820
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;
832 }
833 #endif
834
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. */
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))))))
844 {
845 inst.error = _("invalid constant");
846 *str = input_line_pointer;
847 input_line_pointer = save_in;
848 return 1;
849 }
850
851 *str = input_line_pointer;
852 input_line_pointer = save_in;
853 return 0;
854 }
855
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.
860
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.
867
868 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
869
870 char *
871 md_atof (int type, char * litP, int * sizeP)
872 {
873 int prec;
874 LITTLENUM_TYPE words[MAX_LITTLENUMS];
875 char *t;
876 int i;
877
878 switch (type)
879 {
880 case 'f':
881 case 'F':
882 case 's':
883 case 'S':
884 prec = 2;
885 break;
886
887 case 'd':
888 case 'D':
889 case 'r':
890 case 'R':
891 prec = 4;
892 break;
893
894 case 'x':
895 case 'X':
896 prec = 6;
897 break;
898
899 case 'p':
900 case 'P':
901 prec = 6;
902 break;
903
904 default:
905 *sizeP = 0;
906 return _("bad call to MD_ATOF()");
907 }
908
909 t = atof_ieee (input_line_pointer, type, words);
910 if (t)
911 input_line_pointer = t;
912 *sizeP = prec * 2;
913
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 {
924 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
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 }
940
941 return 0;
942 }
943
944 /* We handle all bad expressions here, so that we can report the faulty
945 instruction in the error message. */
946 void
947 md_operand (expressionS * expr)
948 {
949 if (in_my_get_expression)
950 expr->X_op = O_illegal;
951 }
952
953 /* Immediate values. */
954
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
959 static int
960 immediate_for_directive (int *val)
961 {
962 expressionS exp;
963 exp.X_op = O_illegal;
964
965 if (is_immediate_prefix (*input_line_pointer))
966 {
967 input_line_pointer++;
968 expression (&exp);
969 }
970
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;
979 }
980 #endif
981
982 /* Register parsing. */
983
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
989 static struct reg_entry *
990 arm_reg_parse_multi (char **ccp)
991 {
992 char *start = *ccp;
993 char *p;
994 struct reg_entry *reg;
995
996 #ifdef REGISTER_PREFIX
997 if (*start != REGISTER_PREFIX)
998 return NULL;
999 start++;
1000 #endif
1001 #ifdef OPTIONAL_REGISTER_PREFIX
1002 if (*start == OPTIONAL_REGISTER_PREFIX)
1003 start++;
1004 #endif
1005
1006 p = start;
1007 if (!ISALPHA (*p) || !is_name_beginner (*p))
1008 return NULL;
1009
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;
1021 }
1022
1023 static int
1024 arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
1025 enum arm_reg_type type)
1026 {
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. */
1035 if (reg && reg->type == REG_TYPE_CN)
1036 return reg->number;
1037 break;
1038
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 }
1046
1047 case REG_TYPE_MMXWC:
1048 /* WC includes WCG. ??? I'm not sure this is true for all
1049 instructions that take WC registers. */
1050 if (reg && reg->type == REG_TYPE_MMXWCG)
1051 return reg->number;
1052 break;
1053
1054 default:
1055 break;
1056 }
1057
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
1064 static int
1065 arm_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
1081 *ccp = start;
1082 return FAIL;
1083 }
1084
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
1099 static int
1100 parse_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;
1128 case 'd':
1129 thistype = NT_float;
1130 thissize = 64;
1131 ptr++;
1132 goto done;
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
1156 done:
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
1179 static void
1180 first_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. */
1187 static int
1188 parse_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
1230 static int
1231 parse_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
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)))
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
1340 static int
1341 arm_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
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
1373 static int
1374 parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
1375 {
1376 int reg;
1377 char *str = *ccp;
1378 struct neon_typed_alias atype;
1379
1380 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
1381
1382 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
1383 return FAIL;
1384
1385 if (atype.index == NEON_ALL_LANES)
1386 {
1387 first_error (_("scalar must have an index"));
1388 return FAIL;
1389 }
1390 else if (atype.index >= 64 / elsize)
1391 {
1392 first_error (_("scalar index out of range"));
1393 return FAIL;
1394 }
1395
1396 if (type)
1397 *type = atype.eltype;
1398
1399 *ccp = str;
1400
1401 return reg * 16 + atype.index;
1402 }
1403
1404 /* Parse an ARM register list. Returns the bitmask, or FAIL. */
1405 static long
1406 parse_reg_list (char ** strp)
1407 {
1408 char * str = * strp;
1409 long range = 0;
1410 int another_range;
1411
1412 /* We come back here if we get ranges concatenated by '+' or '|'. */
1413 do
1414 {
1415 another_range = 0;
1416
1417 if (*str == '{')
1418 {
1419 int in_range = 0;
1420 int cur_reg = -1;
1421
1422 str++;
1423 do
1424 {
1425 int reg;
1426
1427 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
1428 {
1429 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
1430 return FAIL;
1431 }
1432
1433 if (in_range)
1434 {
1435 int i;
1436
1437 if (reg <= cur_reg)
1438 {
1439 first_error (_("bad range in register list"));
1440 return FAIL;
1441 }
1442
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 }
1454
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"));
1460
1461 range |= 1 << reg;
1462 cur_reg = reg;
1463 }
1464 while (skip_past_comma (&str) != FAIL
1465 || (in_range = 1, *str++ == '-'));
1466 str--;
1467
1468 if (*str++ != '}')
1469 {
1470 first_error (_("missing `}'"));
1471 return FAIL;
1472 }
1473 }
1474 else
1475 {
1476 expressionS expr;
1477
1478 if (my_get_expression (&expr, &str, GE_NO_PREFIX))
1479 return FAIL;
1480
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 }
1489
1490 if ((range & expr.X_add_number) != 0)
1491 {
1492 int regno = range & expr.X_add_number;
1493
1494 regno &= -regno;
1495 regno = (1 << regno) - 1;
1496 as_tsktsk
1497 (_("Warning: duplicated register (r%d) in register list"),
1498 regno);
1499 }
1500
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 }
1510
1511 memcpy (&inst.reloc.exp, &expr, sizeof (expressionS));
1512 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1513 inst.reloc.pc_rel = 0;
1514 }
1515 }
1516
1517 if (*str == '|' || *str == '+')
1518 {
1519 str++;
1520 another_range = 1;
1521 }
1522 }
1523 while (another_range);
1524
1525 *strp = str;
1526 return range;
1527 }
1528
1529 /* Types of registers in a list. */
1530
1531 enum reg_list_els
1532 {
1533 REGLIST_VFP_S,
1534 REGLIST_VFP_D,
1535 REGLIST_NEON_D
1536 };
1537
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
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.
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. */
1552
1553 static int
1554 parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
1555 {
1556 char *str = *ccp;
1557 int base_reg;
1558 int new_base;
1559 enum arm_reg_type regtype = 0;
1560 int max_regs = 0;
1561 int count = 0;
1562 int warned = 0;
1563 unsigned long mask = 0;
1564 int i;
1565
1566 if (*str != '{')
1567 {
1568 inst.error = _("expecting {");
1569 return FAIL;
1570 }
1571
1572 str++;
1573
1574 switch (etype)
1575 {
1576 case REGLIST_VFP_S:
1577 regtype = REG_TYPE_VFS;
1578 max_regs = 32;
1579 break;
1580
1581 case REGLIST_VFP_D:
1582 regtype = REG_TYPE_VFD;
1583 break;
1584
1585 case REGLIST_NEON_D:
1586 regtype = REG_TYPE_NDQ;
1587 break;
1588 }
1589
1590 if (etype != REGLIST_VFP_S)
1591 {
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;
1605 }
1606
1607 base_reg = max_regs;
1608
1609 do
1610 {
1611 int setmask = 1, addregs = 1;
1612
1613 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
1614
1615 if (new_base == FAIL)
1616 {
1617 first_error (_(reg_expected_msgs[regtype]));
1618 return FAIL;
1619 }
1620
1621 if (new_base >= max_regs)
1622 {
1623 first_error (_("register out of range in list"));
1624 return FAIL;
1625 }
1626
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
1634 if (new_base < base_reg)
1635 base_reg = new_base;
1636
1637 if (mask & (setmask << new_base))
1638 {
1639 first_error (_("invalid register list"));
1640 return FAIL;
1641 }
1642
1643 if ((mask >> new_base) != 0 && ! warned)
1644 {
1645 as_tsktsk (_("register list not in ascending order"));
1646 warned = 1;
1647 }
1648
1649 mask |= setmask << new_base;
1650 count += addregs;
1651
1652 if (*str == '-') /* We have the start of a range expression */
1653 {
1654 int high_range;
1655
1656 str++;
1657
1658 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
1659 == FAIL)
1660 {
1661 inst.error = gettext (reg_expected_msgs[regtype]);
1662 return FAIL;
1663 }
1664
1665 if (high_range >= max_regs)
1666 {
1667 first_error (_("register out of range in list"));
1668 return FAIL;
1669 }
1670
1671 if (regtype == REG_TYPE_NQ)
1672 high_range = high_range + 1;
1673
1674 if (high_range <= new_base)
1675 {
1676 inst.error = _("register range not in ascending order");
1677 return FAIL;
1678 }
1679
1680 for (new_base += addregs; new_base <= high_range; new_base += addregs)
1681 {
1682 if (mask & (setmask << new_base))
1683 {
1684 inst.error = _("invalid register list");
1685 return FAIL;
1686 }
1687
1688 mask |= setmask << new_base;
1689 count += addregs;
1690 }
1691 }
1692 }
1693 while (skip_past_comma (&str) != FAIL);
1694
1695 str++;
1696
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
1714 *ccp = str;
1715
1716 return count;
1717 }
1718
1719 /* True if two alias types are the same. */
1720
1721 static int
1722 neon_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
1745 /* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1746 The base register is put in *PBASE.
1747 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
1748 the return value.
1749 The register stride (minus one) is put in bit 4 of the return value.
1750 Bits [6:5] encode the list length (minus one).
1751 The type of the list elements is put in *ELTYPE, if non-NULL. */
1752
1753 #define NEON_LANE(X) ((X) & 0xf)
1754 #define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
1755 #define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1756
1757 static int
1758 parse_neon_el_struct_list (char **str, unsigned *pbase,
1759 struct neon_type_el *eltype)
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";
1771 struct neon_typed_alias firsttype;
1772
1773 if (skip_past_char (&ptr, '{') == SUCCESS)
1774 leading_brace = 1;
1775
1776 do
1777 {
1778 struct neon_typed_alias atype;
1779 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
1780
1781 if (getreg == FAIL)
1782 {
1783 first_error (_(reg_expected_msgs[rtype]));
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 }
1795 firsttype = atype;
1796 }
1797 else if (reg_incr == -1)
1798 {
1799 reg_incr = getreg - base_reg;
1800 if (reg_incr < 1 || reg_incr > 2)
1801 {
1802 first_error (_(incr_error));
1803 return FAIL;
1804 }
1805 }
1806 else if (getreg != base_reg + reg_incr * count)
1807 {
1808 first_error (_(incr_error));
1809 return FAIL;
1810 }
1811
1812 if (!neon_alias_types_same (&atype, &firsttype))
1813 {
1814 first_error (_(type_error));
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 {
1822 struct neon_typed_alias htype;
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 {
1828 first_error (_(type_error));
1829 return FAIL;
1830 }
1831 if (reg_incr == -1)
1832 reg_incr = 1;
1833 else if (reg_incr != 1)
1834 {
1835 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
1836 return FAIL;
1837 }
1838 ptr++;
1839 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
1840 if (hireg == FAIL)
1841 {
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));
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
1861 if ((atype.defined & NTA_HASINDEX) != 0)
1862 {
1863 if (lane == -1)
1864 lane = atype.index;
1865 else if (lane != atype.index)
1866 {
1867 first_error (_(type_error));
1868 return FAIL;
1869 }
1870 }
1871 else if (lane == -1)
1872 lane = NEON_INTERLEAVE_LANES;
1873 else if (lane != NEON_INTERLEAVE_LANES)
1874 {
1875 first_error (_(type_error));
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 {
1890 first_error (_("error parsing element/structure list"));
1891 return FAIL;
1892 }
1893
1894 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
1895 {
1896 first_error (_("expected }"));
1897 return FAIL;
1898 }
1899
1900 if (reg_incr == -1)
1901 reg_incr = 1;
1902
1903 if (eltype)
1904 *eltype = firsttype.eltype;
1905
1906 *pbase = base_reg;
1907 *str = ptr;
1908
1909 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
1910 }
1911
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. */
1917 static int
1918 parse_reloc (char **str)
1919 {
1920 struct reloc_entry *r;
1921 char *p, *q;
1922
1923 if (**str != '(')
1924 return BFD_RELOC_UNUSED;
1925
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;
1939 }
1940
1941 /* Directives: register aliases. */
1942
1943 static struct reg_entry *
1944 insert_reg_alias (char *str, int number, int type)
1945 {
1946 struct reg_entry *new;
1947 const char *name;
1948
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);
1953
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);
1958
1959 return 0;
1960 }
1961
1962 name = xstrdup (str);
1963 new = xmalloc (sizeof (struct reg_entry));
1964
1965 new->name = name;
1966 new->number = number;
1967 new->type = type;
1968 new->builtin = FALSE;
1969 new->neon = NULL;
1970
1971 if (hash_insert (arm_reg_hsh, name, (PTR) new))
1972 abort ();
1973
1974 return new;
1975 }
1976
1977 static void
1978 insert_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 }
1994 }
1995
1996 /* Look for the .req directive. This is of the form:
1997
1998 new_register_name .req existing_register_name
1999
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. */
2002
2003 static int
2004 create_register_alias (char * newname, char *p)
2005 {
2006 struct reg_entry *old;
2007 char *oldname, *nbuf;
2008 size_t nlen;
2009
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;
2015
2016 oldname += 6;
2017 if (*oldname == '\0')
2018 return 0;
2019
2020 old = hash_find (arm_reg_hsh, oldname);
2021 if (!old)
2022 {
2023 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
2024 return 1;
2025 }
2026
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
2036
2037 nbuf = alloca (nlen + 1);
2038 memcpy (nbuf, newname, nlen);
2039 nbuf[nlen] = '\0';
2040
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);
2045
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;
2059 }
2060
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
2072 static int
2073 create_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
2203 /* Should never be called, as .req goes between the alias and the
2204 register name, not at the beginning of the line. */
2205 static void
2206 s_req (int a ATTRIBUTE_UNUSED)
2207 {
2208 as_bad (_("invalid syntax for .req directive"));
2209 }
2210
2211 static void
2212 s_dn (int a ATTRIBUTE_UNUSED)
2213 {
2214 as_bad (_("invalid syntax for .dn directive"));
2215 }
2216
2217 static void
2218 s_qn (int a ATTRIBUTE_UNUSED)
2219 {
2220 as_bad (_("invalid syntax for .qn directive"));
2221 }
2222
2223 /* The .unreq directive deletes an alias which was previously defined
2224 by .req. For example:
2225
2226 my_alias .req r11
2227 .unreq my_alias */
2228
2229 static void
2230 s_unreq (int a ATTRIBUTE_UNUSED)
2231 {
2232 char * name;
2233 char saved_char;
2234
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);
2260 if (reg->neon)
2261 free (reg->neon);
2262 free (reg);
2263 }
2264 }
2265
2266 *input_line_pointer = saved_char;
2267 demand_empty_rest_of_line ();
2268 }
2269
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
2278 static enum mstate mapstate = MAP_UNDEFINED;
2279
2280 static void
2281 mapping_state (enum mstate state)
2282 {
2283 symbolS * symbolP;
2284 const char * symname;
2285 int type;
2286
2287 if (mapstate == state)
2288 /* The mapping symbol has already been emitted.
2289 There is nothing else to do. */
2290 return;
2291
2292 mapstate = state;
2293
2294 switch (state)
2295 {
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
2345 static symbolS *
2346 find_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
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] == '.')
2364 return symbolP;
2365
2366 real_start = ACONCAT ((STUB_NAME, name, NULL));
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
2375 return new_target;
2376 }
2377
2378 static void
2379 opcode_select (int width)
2380 {
2381 switch (width)
2382 {
2383 case 16:
2384 if (! thumb_mode)
2385 {
2386 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
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 {
2400 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
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
2418 static void
2419 s_arm (int ignore ATTRIBUTE_UNUSED)
2420 {
2421 opcode_select (32);
2422 demand_empty_rest_of_line ();
2423 }
2424
2425 static void
2426 s_thumb (int ignore ATTRIBUTE_UNUSED)
2427 {
2428 opcode_select (16);
2429 demand_empty_rest_of_line ();
2430 }
2431
2432 static void
2433 s_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
2450 static void
2451 s_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
2467 static void
2468 s_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
2480 static void
2481 s_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);
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
2523 for this symbol. */
2524 if (listing & LISTING_SYMBOLS)
2525 {
2526 extern struct list_info_struct * listing_tail;
2527 fragS * dummy_frag = xmalloc (sizeof (fragS));
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
2558 /* XXX Now we come to the Thumb specific bit of code. */
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
2567 /* Directives: Mode selection. */
2568
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. */
2572 static void
2573 s_syntax (int unused ATTRIBUTE_UNUSED)
2574 {
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;
2590 demand_empty_rest_of_line ();
2591 }
2592
2593 /* Directives: sectioning and alignment. */
2594
2595 /* Same as s_align_ptwo but align 0 => align 2. */
2596
2597 static void
2598 s_align (int unused ATTRIBUTE_UNUSED)
2599 {
2600 int temp;
2601 long temp_fill;
2602 long max_alignment = 15;
2603
2604 temp = get_absolute_expression ();
2605 if (temp > max_alignment)
2606 as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
2607 else if (temp < 0)
2608 {
2609 as_bad (_("alignment negative. 0 assumed."));
2610 temp = 0;
2611 }
2612
2613 if (*input_line_pointer == ',')
2614 {
2615 input_line_pointer++;
2616 temp_fill = get_absolute_expression ();
2617 }
2618 else
2619 temp_fill = 0;
2620
2621 if (!temp)
2622 temp = 2;
2623
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);
2630 }
2631
2632 static void
2633 s_bss (int ignore ATTRIBUTE_UNUSED)
2634 {
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 }
2641
2642 static void
2643 s_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);
2648
2649 record_alignment (now_seg, 1);
2650
2651 demand_empty_rest_of_line ();
2652 }
2653
2654 /* Directives: Literal pools. */
2655
2656 static literal_pool *
2657 find_literal_pool (void)
2658 {
2659 literal_pool * pool;
2660
2661 for (pool = list_of_pools; pool != NULL; pool = pool->next)
2662 {
2663 if (pool->section == now_seg
2664 && pool->sub_section == now_subseg)
2665 break;
2666 }
2667
2668 return pool;
2669 }
2670
2671 static literal_pool *
2672 find_or_make_literal_pool (void)
2673 {
2674 /* Next literal pool ID number. */
2675 static unsigned int latest_pool_num = 1;
2676 literal_pool * pool;
2677
2678 pool = find_literal_pool ();
2679
2680 if (pool == NULL)
2681 {
2682 /* Create a new pool. */
2683 pool = xmalloc (sizeof (* pool));
2684 if (! pool)
2685 return NULL;
2686
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;
2695 }
2696
2697 /* New pools, and emptied pools, will have a NULL symbol. */
2698 if (pool->symbol == NULL)
2699 {
2700 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
2701 (valueT) 0, &zero_address_frag);
2702 pool->id = latest_pool_num ++;
2703 }
2704
2705 /* Done. */
2706 return pool;
2707 }
2708
2709 /* Add the literal in the global 'inst'
2710 structure to the relevent literal pool. */
2711
2712 static int
2713 add_to_lit_pool (void)
2714 {
2715 literal_pool * pool;
2716 unsigned int entry;
2717
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 ++)
2722 {
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;
2740 }
2741
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 }
2754
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;
2758
2759 return SUCCESS;
2760 }
2761
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. */
2764
2765 static void
2766 symbol_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;
2774
2775 name_length = strlen (name) + 1; /* +1 for \0. */
2776 obstack_grow (&notes, name, name_length);
2777 preserved_copy_of_name = obstack_finish (&notes);
2778
2779 #ifdef tc_canonicalize_symbol_name
2780 preserved_copy_of_name =
2781 tc_canonicalize_symbol_name (preserved_copy_of_name);
2782 #endif
2783
2784 S_SET_NAME (symbolP, preserved_copy_of_name);
2785
2786 S_SET_SEGMENT (symbolP, segment);
2787 S_SET_VALUE (symbolP, valu);
2788 symbol_clear_list_pointers (symbolP);
2789
2790 symbol_set_frag (symbolP, frag);
2791
2792 /* Link to end of symbol chain. */
2793 {
2794 extern int symbol_table_frozen;
2795
2796 if (symbol_table_frozen)
2797 abort ();
2798 }
2799
2800 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
2801
2802 obj_symbol_new_hook (symbolP);
2803
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 */
2811 }
2812
2813
2814 static void
2815 s_ltorg (int ignored ATTRIBUTE_UNUSED)
2816 {
2817 unsigned int entry;
2818 literal_pool * pool;
2819 char sym_name[20];
2820
2821 pool = find_literal_pool ();
2822 if (pool == NULL
2823 || pool->symbol == NULL
2824 || pool->next_free_entry == 0)
2825 return;
2826
2827 mapping_state (MAP_DATA);
2828
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);
2833
2834 record_alignment (now_seg, 2);
2835
2836 sprintf (sym_name, "$$lit_\002%x", pool->id);
2837
2838 symbol_locate (pool->symbol, sym_name, now_seg,
2839 (valueT) frag_now_fix (), frag_now);
2840 symbol_table_insert (pool->symbol);
2841
2842 ARM_SET_THUMB (pool->symbol, thumb_mode);
2843
2844 #if defined OBJ_COFF || defined OBJ_ELF
2845 ARM_SET_INTERWORK (pool->symbol, support_interwork);
2846 #endif
2847
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 */
2851
2852 /* Mark the pool as empty. */
2853 pool->next_free_entry = 0;
2854 pool->symbol = NULL;
2855 }
2856
2857 #ifdef OBJ_ELF
2858 /* Forward declarations for functions below, in the MD interface
2859 section. */
2860 static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
2861 static valueT create_unwind_entry (int);
2862 static void start_unwind_section (const segT, int);
2863 static void add_unwind_opcode (valueT, int);
2864 static void flush_pending_unwind (void);
2865
2866 /* Directives: Data. */
2867
2868 static void
2869 s_arm_elf_cons (int nbytes)
2870 {
2871 expressionS exp;
2872
2873 #ifdef md_flush_pending_output
2874 md_flush_pending_output ();
2875 #endif
2876
2877 if (is_it_end_of_statement ())
2878 {
2879 demand_empty_rest_of_line ();
2880 return;
2881 }
2882
2883 #ifdef md_cons_align
2884 md_cons_align (nbytes);
2885 #endif
2886
2887 mapping_state (MAP_DATA);
2888 do
2889 {
2890 int reloc;
2891 char *base = input_line_pointer;
2892
2893 expression (& exp);
2894
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);
2913
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
2921 if (size > nbytes)
2922 as_bad (_("%s relocations do not fit in %d bytes"),
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 }
2948 }
2949 while (*input_line_pointer++ == ',');
2950
2951 /* Put terminator back into stream. */
2952 input_line_pointer --;
2953 demand_empty_rest_of_line ();
2954 }
2955
2956
2957 /* Parse a .rel31 directive. */
2958
2959 static void
2960 s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
2961 {
2962 expressionS exp;
2963 char *p;
2964 valueT highbit;
2965
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"));
2971
2972 input_line_pointer++;
2973 if (*input_line_pointer != ',')
2974 as_bad (_("missing comma"));
2975 input_line_pointer++;
2976
2977 #ifdef md_flush_pending_output
2978 md_flush_pending_output ();
2979 #endif
2980
2981 #ifdef md_cons_align
2982 md_cons_align (4);
2983 #endif
2984
2985 mapping_state (MAP_DATA);
2986
2987 expression (&exp);
2988
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);
2993
2994 demand_empty_rest_of_line ();
2995 }
2996
2997 /* Directives: AEABI stack-unwind tables. */
2998
2999 /* Parse an unwind_fnstart directive. Simply records the current location. */
3000
3001 static void
3002 s_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 ();
3007
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 }
3019
3020
3021 /* Parse a handlerdata directive. Creates the exception handling table entry
3022 for the function. */
3023
3024 static void
3025 s_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"));
3030
3031 create_unwind_entry (1);
3032 }
3033
3034 /* Parse an unwind_fnend directive. Generates the index table entry. */
3035
3036 static void
3037 s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3038 {
3039 long where;
3040 char *ptr;
3041 valueT val;
3042
3043 demand_empty_rest_of_line ();
3044
3045 /* Add eh table entry. */
3046 if (unwind.table_entry == NULL)
3047 val = create_unwind_entry (0);
3048 else
3049 val = 0;
3050
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);
3055
3056 ptr = frag_more (8);
3057 where = frag_now_fix () - 8;
3058
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);
3062
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 }
3079
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);
3087
3088 /* Restore the original section. */
3089 subseg_set (unwind.saved_seg, unwind.saved_subseg);
3090 }
3091
3092
3093 /* Parse an unwind_cantunwind directive. */
3094
3095 static void
3096 s_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"));
3101
3102 unwind.personality_index = -2;
3103 }
3104
3105
3106 /* Parse a personalityindex directive. */
3107
3108 static void
3109 s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3110 {
3111 expressionS exp;
3112
3113 if (unwind.personality_routine || unwind.personality_index != -1)
3114 as_bad (_("duplicate .personalityindex directive"));
3115
3116 expression (&exp);
3117
3118 if (exp.X_op != O_constant
3119 || exp.X_add_number < 0 || exp.X_add_number > 15)
3120 {
3121 as_bad (_("bad personality routine number"));
3122 ignore_rest_of_line ();
3123 return;
3124 }
3125
3126 unwind.personality_index = exp.X_add_number;
3127
3128 demand_empty_rest_of_line ();
3129 }
3130
3131
3132 /* Parse a personality directive. */
3133
3134 static void
3135 s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3136 {
3137 char *name, *p, c;
3138
3139 if (unwind.personality_routine || unwind.personality_index != -1)
3140 as_bad (_("duplicate .personality directive"));
3141
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 }
3149
3150
3151 /* Parse a directive saving core registers. */
3152
3153 static void
3154 s_arm_unwind_save_core (void)
3155 {
3156 valueT op;
3157 long range;
3158 int n;
3159
3160 range = parse_reg_list (&input_line_pointer);
3161 if (range == FAIL)
3162 {
3163 as_bad (_("expected register list"));
3164 ignore_rest_of_line ();
3165 return;
3166 }
3167
3168 demand_empty_rest_of_line ();
3169
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 }
3181
3182 /* Pop r4-r15. */
3183 if (range & 0xfff0)
3184 {
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 }
3200 else
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 }
3210 }
3211
3212 /* Pop r0-r3. */
3213 if (range & 0xf)
3214 {
3215 op = 0xb100 | (range & 0xf);
3216 add_unwind_opcode (op, 2);
3217 }
3218
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 }
3225 }
3226
3227
3228 /* Parse a directive saving FPA registers. */
3229
3230 static void
3231 s_arm_unwind_save_fpa (int reg)
3232 {
3233 expressionS exp;
3234 int num_regs;
3235 valueT op;
3236
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;
3242
3243 if (exp.X_op != O_constant)
3244 {
3245 as_bad (_("expected , <constant>"));
3246 ignore_rest_of_line ();
3247 return;
3248 }
3249
3250 num_regs = exp.X_add_number;
3251
3252 if (num_regs < 1 || num_regs > 4)
3253 {
3254 as_bad (_("number of registers must be in the range [1:4]"));
3255 ignore_rest_of_line ();
3256 return;
3257 }
3258
3259 demand_empty_rest_of_line ();
3260
3261 if (reg == 4)
3262 {
3263 /* Short form. */
3264 op = 0xb4 | (num_regs - 1);
3265 add_unwind_opcode (op, 1);
3266 }
3267 else
3268 {
3269 /* Long form. */
3270 op = 0xc800 | (reg << 4) | (num_regs - 1);
3271 add_unwind_opcode (op, 2);
3272 }
3273 unwind.frame_size += num_regs * 12;
3274 }
3275
3276
3277 /* Parse a directive saving VFP registers for ARMv6 and above. */
3278
3279 static void
3280 s_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. */
3328
3329 static void
3330 s_arm_unwind_save_vfp (void)
3331 {
3332 int count;
3333 unsigned int reg;
3334 valueT op;
3335
3336 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
3337 if (count == FAIL)
3338 {
3339 as_bad (_("expected register list"));
3340 ignore_rest_of_line ();
3341 return;
3342 }
3343
3344 demand_empty_rest_of_line ();
3345
3346 if (reg == 8)
3347 {
3348 /* Short form. */
3349 op = 0xb8 | (count - 1);
3350 add_unwind_opcode (op, 1);
3351 }
3352 else
3353 {
3354 /* Long form. */
3355 op = 0xb300 | (reg << 4) | (count - 1);
3356 add_unwind_opcode (op, 2);
3357 }
3358 unwind.frame_size += count * 8 + 4;
3359 }
3360
3361
3362 /* Parse a directive saving iWMMXt data registers. */
3363
3364 static void
3365 s_arm_unwind_save_mmxwr (void)
3366 {
3367 int reg;
3368 int hi_reg;
3369 int i;
3370 unsigned mask = 0;
3371 valueT op;
3372
3373 if (*input_line_pointer == '{')
3374 input_line_pointer++;
3375
3376 do
3377 {
3378 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
3379
3380 if (reg == FAIL)
3381 {
3382 as_bad (_(reg_expected_msgs[REG_TYPE_MMXWR]));
3383 goto error;
3384 }
3385
3386 if (mask >> reg)
3387 as_tsktsk (_("register list not in ascending order"));
3388 mask |= 1 << reg;
3389
3390 if (*input_line_pointer == '-')
3391 {
3392 input_line_pointer++;
3393 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
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);
3409
3410 if (*input_line_pointer == '}')
3411 input_line_pointer++;
3412
3413 demand_empty_rest_of_line ();
3414
3415 /* Generate any deferred opcodes because we're going to be looking at
3416 the list. */
3417 flush_pending_unwind ();
3418
3419 for (i = 0; i < 16; i++)
3420 {
3421 if (mask & (1 << i))
3422 unwind.frame_size += 8;
3423 }
3424
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)
3429 {
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;
3448
3449 op = 0xffff << (reg - 1);
3450 if (reg > 0
3451 && ((mask & op) == (1u << (reg - 1))))
3452 {
3453 op = (1 << (reg + i + 1)) - 1;
3454 op &= ~((1 << reg) - 1);
3455 mask |= op;
3456 unwind.opcode_count -= 2;
3457 }
3458 }
3459 }
3460 }
3461
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--)
3466 {
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 }
3490 }
3491
3492 return;
3493 error:
3494 ignore_rest_of_line ();
3495 }
3496
3497 static void
3498 s_arm_unwind_save_mmxwcg (void)
3499 {
3500 int reg;
3501 int hi_reg;
3502 unsigned mask = 0;
3503 valueT op;
3504
3505 if (*input_line_pointer == '{')
3506 input_line_pointer++;
3507
3508 do
3509 {
3510 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
3511
3512 if (reg == FAIL)
3513 {
3514 as_bad (_(reg_expected_msgs[REG_TYPE_MMXWCG]));
3515 goto error;
3516 }
3517
3518 reg -= 8;
3519 if (mask >> reg)
3520 as_tsktsk (_("register list not in ascending order"));
3521 mask |= 1 << reg;
3522
3523 if (*input_line_pointer == '-')
3524 {
3525 input_line_pointer++;
3526 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
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 }
3540 }
3541 while (skip_past_comma (&input_line_pointer) != FAIL);
3542
3543 if (*input_line_pointer == '}')
3544 input_line_pointer++;
3545
3546 demand_empty_rest_of_line ();
3547
3548 /* Generate any deferred opcodes because we're going to be looking at
3549 the list. */
3550 flush_pending_unwind ();
3551
3552 for (reg = 0; reg < 16; reg++)
3553 {
3554 if (mask & (1 << reg))
3555 unwind.frame_size += 4;
3556 }
3557 op = 0xc700 | mask;
3558 add_unwind_opcode (op, 2);
3559 return;
3560 error:
3561 ignore_rest_of_line ();
3562 }
3563
3564
3565 /* Parse an unwind_save directive.
3566 If the argument is non-zero, this is a .vsave directive. */
3567
3568 static void
3569 s_arm_unwind_save (int arch_v6)
3570 {
3571 char *peek;
3572 struct reg_entry *reg;
3573 bfd_boolean had_brace = FALSE;
3574
3575 /* Figure out what sort of save we have. */
3576 peek = input_line_pointer;
3577
3578 if (*peek == '{')
3579 {
3580 had_brace = TRUE;
3581 peek++;
3582 }
3583
3584 reg = arm_reg_parse_multi (&peek);
3585
3586 if (!reg)
3587 {
3588 as_bad (_("register expected"));
3589 ignore_rest_of_line ();
3590 return;
3591 }
3592
3593 switch (reg->type)
3594 {
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);
3603 return;
3604
3605 case REG_TYPE_RN: s_arm_unwind_save_core (); return;
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;
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 ();
3618 }
3619 }
3620
3621
3622 /* Parse an unwind_movsp directive. */
3623
3624 static void
3625 s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
3626 {
3627 int reg;
3628 valueT op;
3629
3630 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
3631 if (reg == FAIL)
3632 {
3633 as_bad (_(reg_expected_msgs[REG_TYPE_RN]));
3634 ignore_rest_of_line ();
3635 return;
3636 }
3637 demand_empty_rest_of_line ();
3638
3639 if (reg == REG_SP || reg == REG_PC)
3640 {
3641 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
3642 return;
3643 }
3644
3645 if (unwind.fp_reg != REG_SP)
3646 as_bad (_("unexpected .unwind_movsp directive"));
3647
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;
3656 }
3657
3658 /* Parse an unwind_pad directive. */
3659
3660 static void
3661 s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
3662 {
3663 int offset;
3664
3665 if (immediate_for_directive (&offset) == FAIL)
3666 return;
3667
3668 if (offset & 3)
3669 {
3670 as_bad (_("stack increment must be multiple of 4"));
3671 ignore_rest_of_line ();
3672 return;
3673 }
3674
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
3684 static void
3685 s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
3686 {
3687 int sp_reg;
3688 int fp_reg;
3689 int offset;
3690
3691 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
3692 if (skip_past_comma (&input_line_pointer) == FAIL)
3693 sp_reg = FAIL;
3694 else
3695 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
3696
3697 if (fp_reg == FAIL || sp_reg == FAIL)
3698 {
3699 as_bad (_("expected <reg>, <reg>"));
3700 ignore_rest_of_line ();
3701 return;
3702 }
3703
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;
3712
3713 demand_empty_rest_of_line ();
3714
3715 if (sp_reg != 13 && sp_reg != unwind.fp_reg)
3716 {
3717 as_bad (_("register must be either sp or set by a previous"
3718 "unwind_movsp directive"));
3719 return;
3720 }
3721
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;
3729 }
3730
3731 /* Parse an unwind_raw directive. */
3732
3733 static void
3734 s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
3735 {
3736 expressionS exp;
3737 /* This is an arbitrary limit. */
3738 unsigned char op[16];
3739 int count;
3740
3741 expression (&exp);
3742 if (exp.X_op == O_constant
3743 && skip_past_comma (&input_line_pointer) != FAIL)
3744 {
3745 unwind.frame_size += exp.X_add_number;
3746 expression (&exp);
3747 }
3748 else
3749 exp.X_op = O_illegal;
3750
3751 if (exp.X_op != O_constant)
3752 {
3753 as_bad (_("expected <offset>, <opcode>"));
3754 ignore_rest_of_line ();
3755 return;
3756 }
3757
3758 count = 0;
3759
3760 /* Parse the opcode. */
3761 for (;;)
3762 {
3763 if (count >= 16)
3764 {
3765 as_bad (_("unwind opcode too long"));
3766 ignore_rest_of_line ();
3767 }
3768 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
3769 {
3770 as_bad (_("invalid unwind opcode"));
3771 ignore_rest_of_line ();
3772 return;
3773 }
3774 op[count++] = exp.X_add_number;
3775
3776 /* Parse the next byte. */
3777 if (skip_past_comma (&input_line_pointer) == FAIL)
3778 break;
3779
3780 expression (&exp);
3781 }
3782
3783 /* Add the opcode bytes in reverse order. */
3784 while (count--)
3785 add_unwind_opcode (op[count], 1);
3786
3787 demand_empty_rest_of_line ();
3788 }
3789
3790
3791 /* Parse a .eabi_attribute directive. */
3792
3793 static void
3794 s_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;
3867 bad_string:
3868 as_bad (_("bad string constant"));
3869 ignore_rest_of_line ();
3870 return;
3871 bad:
3872 as_bad (_("expected <tag> , <value>"));
3873 ignore_rest_of_line ();
3874 }
3875 #endif /* OBJ_ELF */
3876
3877 static void s_arm_arch (int);
3878 static void s_arm_cpu (int);
3879 static void s_arm_fpu (int);
3880
3881 #ifdef TE_PE
3882
3883 static void
3884 pe_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
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. */
3908
3909 const pseudo_typeS md_pseudo_table[] =
3910 {
3911 /* Never called because '.req' does not start a line. */
3912 { "req", s_req, 0 },
3913 /* Following two are likewise never called. */
3914 { "dn", s_dn, 0 },
3915 { "qn", s_qn, 0 },
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 },
3929 { "cpu", s_arm_cpu, 0 },
3930 { "arch", s_arm_arch, 0 },
3931 { "fpu", s_arm_fpu, 0 },
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 },
3943 { "vsave", s_arm_unwind_save, 1 },
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 },
3948 { "eabi_attribute", s_arm_eabi_attribute, 0 },
3949 #else
3950 { "word", cons, 4},
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 },
3960 #endif
3961 { "extend", float_cons, 'x' },
3962 { "ldouble", float_cons, 'x' },
3963 { "packed", float_cons, 'p' },
3964 #ifdef TE_PE
3965 {"secrel32", pe_directive_secrel, 0},
3966 #endif
3967 { 0, 0, 0 }
3968 };
3969 \f
3970 /* Parser functions used exclusively in instruction operands. */
3971
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. */
3977
3978 static int
3979 parse_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)
3985 {
3986 inst.error = _("constant expression required");
3987 return FAIL;
3988 }
3989
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 }
3995
3996 *val = exp.X_add_number;
3997 return SUCCESS;
3998 }
3999
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
4004 static int
4005 parse_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
4041 /* Returns the pseudo-register number of an FPA immediate constant,
4042 or FAIL if there isn't a valid constant here. */
4043
4044 static int
4045 parse_fpa_immediate (char ** str)
4046 {
4047 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4048 char * save_in;
4049 expressionS exp;
4050 int i;
4051 int j;
4052
4053 /* First try and match exact strings, this is to guarantee
4054 that some formats will work even for cross assembly. */
4055
4056 for (i = 0; fp_const[i]; i++)
4057 {
4058 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
4059 {
4060 char *start = *str;
4061
4062 *str += strlen (fp_const[i]);
4063 if (is_end_of_line[(unsigned char) **str])
4064 return i + 8;
4065 *str = start;
4066 }
4067 }
4068
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. */
4073
4074 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
4075
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++)
4083 {
4084 if (words[j] != fp_values[i][j])
4085 break;
4086 }
4087
4088 if (j == MAX_LITTLENUMS)
4089 {
4090 *str = save_in;
4091 return i + 8;
4092 }
4093 }
4094 }
4095
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 }
4115
4116 if (j == MAX_LITTLENUMS)
4117 {
4118 *str = input_line_pointer;
4119 input_line_pointer = save_in;
4120 return i + 8;
4121 }
4122 }
4123 }
4124 }
4125
4126 *str = input_line_pointer;
4127 input_line_pointer = save_in;
4128 inst.error = _("invalid FPA immediate expression");
4129 return FAIL;
4130 }
4131
4132 /* Returns 1 if a number has "quarter-precision" float format
4133 0baBbbbbbc defgh000 00000000 00000000. */
4134
4135 static int
4136 is_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
4148 static unsigned
4149 parse_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
4181 /* Shift operands. */
4182 enum shift_kind
4183 {
4184 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
4185 };
4186
4187 struct asm_shift_name
4188 {
4189 const char *name;
4190 enum shift_kind kind;
4191 };
4192
4193 /* Third argument to parse_shift. */
4194 enum 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 };
4202
4203 /* Parse a <shift> specifier on an ARM data processing instruction.
4204 This has three forms:
4205
4206 (LSL|LSR|ASL|ASR|ROR) Rs
4207 (LSL|LSR|ASL|ASR|ROR) #imm
4208 RRX
4209
4210 Note that ASL is assimilated to LSL in the instruction encoding, and
4211 RRX to ROR #0 (which cannot be written as such). */
4212
4213 static int
4214 parse_shift (char **str, int i, enum parse_shift_mode mode)
4215 {
4216 const struct asm_shift_name *shift_name;
4217 enum shift_kind shift;
4218 char *s = *str;
4219 char *p = s;
4220 int reg;
4221
4222 for (p = *str; ISALPHA (*p); p++)
4223 ;
4224
4225 if (p == *str)
4226 {
4227 inst.error = _("shift expression expected");
4228 return FAIL;
4229 }
4230
4231 shift_name = hash_find_n (arm_shift_hsh, *str, p - *str);
4232
4233 if (shift_name == NULL)
4234 {
4235 inst.error = _("shift expression expected");
4236 return FAIL;
4237 }
4238
4239 shift = shift_name->kind;
4240
4241 switch (mode)
4242 {
4243 case NO_SHIFT_RESTRICT:
4244 case SHIFT_IMMEDIATE: break;
4245
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;
4253
4254 case SHIFT_LSL_IMMEDIATE:
4255 if (shift != SHIFT_LSL)
4256 {
4257 inst.error = _("'LSL' required");
4258 return FAIL;
4259 }
4260 break;
4261
4262 case SHIFT_ASR_IMMEDIATE:
4263 if (shift != SHIFT_ASR)
4264 {
4265 inst.error = _("'ASR' required");
4266 return FAIL;
4267 }
4268 break;
4269
4270 default: abort ();
4271 }
4272
4273 if (shift != SHIFT_RRX)
4274 {
4275 /* Whitespace can appear here if the next thing is a bare digit. */
4276 skip_whitespace (p);
4277
4278 if (mode == NO_SHIFT_RESTRICT
4279 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
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;
4291 }
4292
4293 /* Parse a <shifter_operand> for an ARM data processing instruction:
4294
4295 #<immediate>
4296 #<immediate>, <rotate>
4297 <Rm>
4298 <Rm>, <shift>
4299
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
4302 is deferred to md_apply_fix. */
4303
4304 static int
4305 parse_shifter_operand (char **str, int i)
4306 {
4307 int value;
4308 expressionS expr;
4309
4310 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
4311 {
4312 inst.operands[i].reg = value;
4313 inst.operands[i].isreg = 1;
4314
4315 /* parse_shift will override this if appropriate */
4316 inst.reloc.exp.X_op = O_constant;
4317 inst.reloc.exp.X_add_number = 0;
4318
4319 if (skip_past_comma (str) == FAIL)
4320 return SUCCESS;
4321
4322 /* Shift operation on register. */
4323 return parse_shift (str, i, NO_SHIFT_RESTRICT);
4324 }
4325
4326 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
4327 return FAIL;
4328
4329 if (skip_past_comma (str) == SUCCESS)
4330 {
4331 /* #x, y -- ie explicit rotation by Y. */
4332 if (my_get_expression (&expr, str, GE_NO_PREFIX))
4333 return FAIL;
4334
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 }
4340
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 }
4352
4353 /* Convert to decoded value. md_apply_fix will put it back. */
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);
4357 }
4358
4359 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
4360 inst.reloc.pc_rel = 0;
4361 return SUCCESS;
4362 }
4363
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
4371 struct 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
4380 typedef enum
4381 {
4382 /* Varieties of non-ALU group relocation. */
4383
4384 GROUP_LDR,
4385 GROUP_LDRS,
4386 GROUP_LDC
4387 } group_reloc_type;
4388
4389 static 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
4450 static int
4451 find_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
4484 static parse_operand_result
4485 parse_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
4526 /* Parse all forms of an ARM address expression. Information is written
4527 to inst.operands[i] and/or inst.reloc.
4528
4529 Preindexed addressing (.preind=1):
4530
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
4535
4536 These three may have a trailing ! which causes .writeback to be set also.
4537
4538 Postindexed addressing (.postind=1, .writeback=1):
4539
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
4544
4545 Unindexed addressing (.preind=0, .postind=0):
4546
4547 [Rn], {option} .reg=Rn .imm=option .immisreg=0
4548
4549 Other:
4550
4551 [Rn]{!} shorthand for [Rn,#0]{!}
4552 =immediate .isreg=0 .reloc.exp=immediate
4553 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
4554
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
4558 static parse_operand_result
4559 parse_address_main (char **str, int i, int group_relocations,
4560 group_reloc_type group_type)
4561 {
4562 char *p = *str;
4563 int reg;
4564
4565 if (skip_past_char (&p, '[') == FAIL)
4566 {
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 */
4576
4577 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
4578 return PARSE_OPERAND_FAIL;
4579
4580 *str = p;
4581 return PARSE_OPERAND_SUCCESS;
4582 }
4583
4584 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
4585 {
4586 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4587 return PARSE_OPERAND_FAIL;
4588 }
4589 inst.operands[i].reg = reg;
4590 inst.operands[i].isreg = 1;
4591
4592 if (skip_past_comma (&p) == SUCCESS)
4593 {
4594 inst.operands[i].preind = 1;
4595
4596 if (*p == '+') p++;
4597 else if (*p == '-') p++, inst.operands[i].negative = 1;
4598
4599 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
4600 {
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)
4606 return PARSE_OPERAND_FAIL;
4607 }
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");
4618 return PARSE_OPERAND_FAIL;
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 }
4625 else
4626 {
4627 if (inst.operands[i].negative)
4628 {
4629 inst.operands[i].negative = 0;
4630 p--;
4631 }
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;
4687 }
4688 }
4689
4690 if (skip_past_char (&p, ']') == FAIL)
4691 {
4692 inst.error = _("']' expected");
4693 return PARSE_OPERAND_FAIL;
4694 }
4695
4696 if (skip_past_char (&p, '!') == SUCCESS)
4697 inst.operands[i].writeback = 1;
4698
4699 else if (skip_past_comma (&p) == SUCCESS)
4700 {
4701 if (skip_past_char (&p, '{') == SUCCESS)
4702 {
4703 /* [Rn], {expr} - unindexed, with option */
4704 if (parse_immediate (&p, &inst.operands[i].imm,
4705 0, 255, TRUE) == FAIL)
4706 return PARSE_OPERAND_FAIL;
4707
4708 if (skip_past_char (&p, '}') == FAIL)
4709 {
4710 inst.error = _("'}' expected at end of 'option' field");
4711 return PARSE_OPERAND_FAIL;
4712 }
4713 if (inst.operands[i].preind)
4714 {
4715 inst.error = _("cannot combine index with option");
4716 return PARSE_OPERAND_FAIL;
4717 }
4718 *str = p;
4719 return PARSE_OPERAND_SUCCESS;
4720 }
4721 else
4722 {
4723 inst.operands[i].postind = 1;
4724 inst.operands[i].writeback = 1;
4725
4726 if (inst.operands[i].preind)
4727 {
4728 inst.error = _("cannot combine pre- and post-indexing");
4729 return PARSE_OPERAND_FAIL;
4730 }
4731
4732 if (*p == '+') p++;
4733 else if (*p == '-') p++, inst.operands[i].negative = 1;
4734
4735 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
4736 {
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;
4743 inst.operands[i].immisreg = 1;
4744
4745 if (skip_past_comma (&p) == SUCCESS)
4746 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4747 return PARSE_OPERAND_FAIL;
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))
4757 return PARSE_OPERAND_FAIL;
4758 }
4759 }
4760 }
4761
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;
4771 return PARSE_OPERAND_SUCCESS;
4772 }
4773
4774 static int
4775 parse_address (char **str, int i)
4776 {
4777 return parse_address_main (str, i, 0, 0) == PARSE_OPERAND_SUCCESS
4778 ? SUCCESS : FAIL;
4779 }
4780
4781 static parse_operand_result
4782 parse_address_group_reloc (char **str, int i, group_reloc_type type)
4783 {
4784 return parse_address_main (str, i, 1, type);
4785 }
4786
4787 /* Parse an operand for a MOVW or MOVT instruction. */
4788 static int
4789 parse_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
4827 /* Miscellaneous. */
4828
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. */
4831 static int
4832 parse_psr (char **str)
4833 {
4834 char *p;
4835 unsigned long psr_field;
4836 const struct asm_psr *psr;
4837 char *start;
4838
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;
4842 if (strncasecmp (p, "SPSR", 4) == 0)
4843 psr_field = SPSR_BIT;
4844 else if (strncasecmp (p, "CPSR", 4) == 0)
4845 psr_field = 0;
4846 else
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;
4856
4857 *str = p;
4858 return psr->field;
4859 }
4860
4861 p += 4;
4862 if (*p == '_')
4863 {
4864 /* A suffix follows. */
4865 p++;
4866 start = p;
4867
4868 do
4869 p++;
4870 while (ISALNUM (*p) || *p == '_');
4871
4872 psr = hash_find_n (arm_psr_hsh, start, p - start);
4873 if (!psr)
4874 goto error;
4875
4876 psr_field |= psr->field;
4877 }
4878 else
4879 {
4880 if (ISALNUM (*p))
4881 goto error; /* Garbage after "[CS]PSR". */
4882
4883 psr_field |= (PSR_c | PSR_f);
4884 }
4885 *str = p;
4886 return psr_field;
4887
4888 error:
4889 inst.error = _("flag for {c}psr instruction expected");
4890 return FAIL;
4891 }
4892
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. */
4895
4896 static int
4897 parse_cps_flags (char **str)
4898 {
4899 int val = 0;
4900 int saw_a_flag = 0;
4901 char *s = *str;
4902
4903 for (;;)
4904 switch (*s++)
4905 {
4906 case '\0': case ',':
4907 goto done;
4908
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;
4912
4913 default:
4914 inst.error = _("unrecognized CPS flag");
4915 return FAIL;
4916 }
4917
4918 done:
4919 if (saw_a_flag == 0)
4920 {
4921 inst.error = _("missing CPS flags");
4922 return FAIL;
4923 }
4924
4925 *str = s - 1;
4926 return val;
4927 }
4928
4929 /* Parse an endian specifier ("BE" or "LE", case insensitive);
4930 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
4931
4932 static int
4933 parse_endian_specifier (char **str)
4934 {
4935 int little_endian;
4936 char *s = *str;
4937
4938 if (strncasecmp (s, "BE", 2))
4939 little_endian = 0;
4940 else if (strncasecmp (s, "LE", 2))
4941 little_endian = 1;
4942 else
4943 {
4944 inst.error = _("valid endian specifiers are be or le");
4945 return FAIL;
4946 }
4947
4948 if (ISALNUM (s[2]) || s[2] == '_')
4949 {
4950 inst.error = _("valid endian specifiers are be or le");
4951 return FAIL;
4952 }
4953
4954 *str = s + 2;
4955 return little_endian;
4956 }
4957
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
4962 static int
4963 parse_ror (char **str)
4964 {
4965 int rot;
4966 char *s = *str;
4967
4968 if (strncasecmp (s, "ROR", 3) == 0)
4969 s += 3;
4970 else
4971 {
4972 inst.error = _("missing rotation field after comma");
4973 return FAIL;
4974 }
4975
4976 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
4977 return FAIL;
4978
4979 switch (rot)
4980 {
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");
4988 return FAIL;
4989 }
4990 }
4991
4992 /* Parse a conditional code (from conds[] below). The value returned is in the
4993 range 0 .. 14, or FAIL. */
4994 static int
4995 parse_cond (char **str)
4996 {
4997 char *p, *q;
4998 const struct asm_cond *c;
4999
5000 p = q = *str;
5001 while (ISALPHA (*q))
5002 q++;
5003
5004 c = hash_find_n (arm_cond_hsh, p, q - p);
5005 if (!c)
5006 {
5007 inst.error = _("condition required");
5008 return FAIL;
5009 }
5010
5011 *str = q;
5012 return c->value;
5013 }
5014
5015 /* Parse an option for a barrier instruction. Returns the encoding for the
5016 option, or FAIL. */
5017 static int
5018 parse_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
5035 /* Parse the operands of a table branch instruction. Similar to a memory
5036 operand. */
5037 static int
5038 parse_tb (char **str)
5039 {
5040 char * p = *str;
5041 int reg;
5042
5043 if (skip_past_char (&p, '[') == FAIL)
5044 {
5045 inst.error = _("'[' expected");
5046 return FAIL;
5047 }
5048
5049 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
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)
5057 {
5058 inst.error = _("',' expected");
5059 return FAIL;
5060 }
5061
5062 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
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
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.
5092 Up to four operands may be read; this function handles setting the
5093 ".present" field for each read operand itself.
5094 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
5095 else returns FAIL. */
5096
5097 static int
5098 parse_neon_mov (char **str, int *which_operand)
5099 {
5100 int i = *which_operand, val;
5101 enum arm_reg_type rtype;
5102 char *ptr = *str;
5103 struct neon_type_el optype;
5104
5105 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5106 {
5107 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
5108 inst.operands[i].reg = val;
5109 inst.operands[i].isscalar = 1;
5110 inst.operands[i].vectype = optype;
5111 inst.operands[i++].present = 1;
5112
5113 if (skip_past_comma (&ptr) == FAIL)
5114 goto wanted_comma;
5115
5116 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
5117 goto wanted_arm;
5118
5119 inst.operands[i].reg = val;
5120 inst.operands[i].isreg = 1;
5121 inst.operands[i].present = 1;
5122 }
5123 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
5124 != FAIL)
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);
5133 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5134 inst.operands[i].isvec = 1;
5135 inst.operands[i].vectype = optype;
5136 inst.operands[i++].present = 1;
5137
5138 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5139 {
5140 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
5141 Case 13: VMOV <Sd>, <Rm> */
5142 inst.operands[i].reg = val;
5143 inst.operands[i].isreg = 1;
5144 inst.operands[i].present = 1;
5145
5146 if (rtype == REG_TYPE_NQ)
5147 {
5148 first_error (_("can't use Neon quad register here"));
5149 return FAIL;
5150 }
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 }
5162 }
5163 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
5164 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
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 ;
5169 else if (parse_big_immediate (&ptr, i) == SUCCESS)
5170 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
5171 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
5172 ;
5173 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
5174 &optype)) != FAIL)
5175 {
5176 /* Case 0: VMOV<c><q> <Qd>, <Qm>
5177 Case 1: VMOV<c><q> <Dd>, <Dm>
5178 Case 8: VMOV.F32 <Sd>, <Sm>
5179 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
5180
5181 inst.operands[i].reg = val;
5182 inst.operands[i].isreg = 1;
5183 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
5184 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5185 inst.operands[i].isvec = 1;
5186 inst.operands[i].vectype = optype;
5187 inst.operands[i].present = 1;
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 }
5211 }
5212 else
5213 {
5214 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
5215 return FAIL;
5216 }
5217 }
5218 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
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
5228 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
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;
5234 inst.operands[i].vectype = optype;
5235 }
5236 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
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
5246 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
5247 == FAIL)
5248 {
5249 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
5250 return FAIL;
5251 }
5252
5253 inst.operands[i].reg = val;
5254 inst.operands[i].isreg = 1;
5255 inst.operands[i].isvec = 1;
5256 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
5257 inst.operands[i].vectype = optype;
5258 inst.operands[i].present = 1;
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;
5290 }
5291 }
5292 else
5293 {
5294 first_error (_("parse error"));
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:
5304 first_error (_("expected comma"));
5305 return FAIL;
5306
5307 wanted_arm:
5308 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5309 return FAIL;
5310 }
5311
5312 /* Matcher codes for parse_operands. */
5313 enum 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 */
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 */
5328 OP_RVSD, /* VFP single or double precision register */
5329 OP_RNDQ, /* Neon double or quad precision register */
5330 OP_RNSDQ, /* Neon single, double or quad precision register */
5331 OP_RNSC, /* Neon scalar D[X] */
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 */
5347 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
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. */
5353 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
5354 OP_RR_RNSC, /* ARM reg or Neon scalar. */
5355 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
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 */
5363 OP_I7, /* immediate value 0 .. 7 */
5364 OP_I15, /* 0 .. 15 */
5365 OP_I16, /* 1 .. 16 */
5366 OP_I16z, /* 0 .. 16 */
5367 OP_I31, /* 0 .. 31 */
5368 OP_I31w, /* 0 .. 31, optional trailing ! */
5369 OP_I32, /* 1 .. 32 */
5370 OP_I32z, /* 0 .. 32 */
5371 OP_I63, /* 0 .. 63 */
5372 OP_I63s, /* -64 .. 63 */
5373 OP_I64, /* 1 .. 64 */
5374 OP_I64z, /* 0 .. 64 */
5375 OP_I255, /* 0 .. 255 */
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 */
5383 OP_SHG, /* shifter operand with possible group relocation */
5384 OP_ADDR, /* Memory address expression (any mode) */
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 */
5388 OP_EXP, /* arbitrary expression */
5389 OP_EXPi, /* same, with optional immediate prefix */
5390 OP_EXPr, /* same, with optional relocation suffix */
5391 OP_HALF, /* 0 .. 65535 or low/high reloc. */
5392
5393 OP_CPSF, /* CPS flags */
5394 OP_ENDI, /* Endianness specifier */
5395 OP_PSR, /* CPSR/SPSR mask for msr */
5396 OP_COND, /* conditional code */
5397 OP_TB, /* Table branch. */
5398
5399 OP_RVC_PSR, /* CPSR/SPSR mask for msr, or VFP control register. */
5400 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
5401
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 */
5407 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
5408
5409 /* Optional operands. */
5410 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
5411 OP_oI31b, /* 0 .. 31 */
5412 OP_oI32b, /* 1 .. 32 */
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 */
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 */
5421 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
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 */
5426 OP_oBARRIER, /* Option argument for a barrier instruction. */
5427
5428 OP_FIRST_OPTIONAL = OP_oI7b
5429 };
5430
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. */
5435 static int
5436 parse_operands (char *str, const unsigned char *pattern)
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;
5442 enum arm_reg_type rtype;
5443 parse_operand_result result;
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
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); \
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); \
5465 } while (0)
5466
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); \
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); \
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
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; \
5494 } while (0)
5495
5496 #define po_misc_or_fail(expr) do { \
5497 if (expr) \
5498 goto failure; \
5499 } while (0)
5500
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
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;
5537 case OP_oRND:
5538 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
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;
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;
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;
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);
5569 i++;
5570 skip_past_comma (&str);
5571 po_reg_or_goto (REG_TYPE_NDQ, one_reg_only);
5572 break;
5573 one_reg_only:
5574 /* Optional register operand was omitted. Unfortunately, it's in
5575 operands[i-1] and we need it to be in inst.operands[i]. Fix that
5576 here (this is a bit grotty). */
5577 inst.operands[i] = inst.operands[i-1];
5578 inst.operands[i-1].present = 0;
5579 break;
5580 try_imm:
5581 /* Immediate gets verified properly later, so accept any now. */
5582 po_imm_or_fail (INT_MIN, INT_MAX, TRUE);
5583 }
5584 break;
5585
5586 case OP_RNDQ_I0:
5587 {
5588 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
5589 break;
5590 try_imm0:
5591 po_imm_or_fail (0, 0, TRUE);
5592 }
5593 break;
5594
5595 case OP_RVSD_I0:
5596 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
5597 break;
5598
5599 case OP_RR_RNSC:
5600 {
5601 po_scalar_or_goto (8, try_rr);
5602 break;
5603 try_rr:
5604 po_reg_or_fail (REG_TYPE_RN);
5605 }
5606 break;
5607
5608 case OP_RNSDQ_RNSC:
5609 {
5610 po_scalar_or_goto (8, try_nsdq);
5611 break;
5612 try_nsdq:
5613 po_reg_or_fail (REG_TYPE_NSDQ);
5614 }
5615 break;
5616
5617 case OP_RNDQ_RNSC:
5618 {
5619 po_scalar_or_goto (8, try_ndq);
5620 break;
5621 try_ndq:
5622 po_reg_or_fail (REG_TYPE_NDQ);
5623 }
5624 break;
5625
5626 case OP_RND_RNSC:
5627 {
5628 po_scalar_or_goto (8, try_vfd);
5629 break;
5630 try_vfd:
5631 po_reg_or_fail (REG_TYPE_VFD);
5632 }
5633 break;
5634
5635 case OP_VMOV:
5636 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
5637 not careful then bad things might happen. */
5638 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
5639 break;
5640
5641 case OP_RNDQ_IMVNb:
5642 {
5643 po_reg_or_goto (REG_TYPE_NDQ, try_mvnimm);
5644 break;
5645 try_mvnimm:
5646 /* There's a possibility of getting a 64-bit immediate here, so
5647 we need special handling. */
5648 if (parse_big_immediate (&str, i) == FAIL)
5649 {
5650 inst.error = _("immediate value is out of range");
5651 goto failure;
5652 }
5653 }
5654 break;
5655
5656 case OP_RNDQ_I63b:
5657 {
5658 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
5659 break;
5660 try_shimm:
5661 po_imm_or_fail (0, 63, TRUE);
5662 }
5663 break;
5664
5665 case OP_RRnpcb:
5666 po_char_or_fail ('[');
5667 po_reg_or_fail (REG_TYPE_RN);
5668 po_char_or_fail (']');
5669 break;
5670
5671 case OP_RRw:
5672 po_reg_or_fail (REG_TYPE_RN);
5673 if (skip_past_char (&str, '!') == SUCCESS)
5674 inst.operands[i].writeback = 1;
5675 break;
5676
5677 /* Immediates */
5678 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
5679 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
5680 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
5681 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
5682 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
5683 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
5684 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
5685 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
5686 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
5687 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
5688 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
5689 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
5690
5691 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
5692 case OP_oI7b:
5693 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
5694 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
5695 case OP_oI31b:
5696 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
5697 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
5698 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
5699
5700 /* Immediate variants */
5701 case OP_oI255c:
5702 po_char_or_fail ('{');
5703 po_imm_or_fail (0, 255, TRUE);
5704 po_char_or_fail ('}');
5705 break;
5706
5707 case OP_I31w:
5708 /* The expression parser chokes on a trailing !, so we have
5709 to find it first and zap it. */
5710 {
5711 char *s = str;
5712 while (*s && *s != ',')
5713 s++;
5714 if (s[-1] == '!')
5715 {
5716 s[-1] = '\0';
5717 inst.operands[i].writeback = 1;
5718 }
5719 po_imm_or_fail (0, 31, TRUE);
5720 if (str == s - 1)
5721 str = s;
5722 }
5723 break;
5724
5725 /* Expressions */
5726 case OP_EXPi: EXPi:
5727 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
5728 GE_OPT_PREFIX));
5729 break;
5730
5731 case OP_EXP:
5732 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
5733 GE_NO_PREFIX));
5734 break;
5735
5736 case OP_EXPr: EXPr:
5737 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
5738 GE_NO_PREFIX));
5739 if (inst.reloc.exp.X_op == O_symbol)
5740 {
5741 val = parse_reloc (&str);
5742 if (val == -1)
5743 {
5744 inst.error = _("unrecognized relocation suffix");
5745 goto failure;
5746 }
5747 else if (val != BFD_RELOC_UNUSED)
5748 {
5749 inst.operands[i].imm = val;
5750 inst.operands[i].hasreloc = 1;
5751 }
5752 }
5753 break;
5754
5755 /* Operand for MOVW or MOVT. */
5756 case OP_HALF:
5757 po_misc_or_fail (parse_half (&str));
5758 break;
5759
5760 /* Register or expression */
5761 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
5762 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
5763
5764 /* Register or immediate */
5765 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
5766 I0: po_imm_or_fail (0, 0, FALSE); break;
5767
5768 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
5769 IF:
5770 if (!is_immediate_prefix (*str))
5771 goto bad_args;
5772 str++;
5773 val = parse_fpa_immediate (&str);
5774 if (val == FAIL)
5775 goto failure;
5776 /* FPA immediates are encoded as registers 8-15.
5777 parse_fpa_immediate has already applied the offset. */
5778 inst.operands[i].reg = val;
5779 inst.operands[i].isreg = 1;
5780 break;
5781
5782 /* Two kinds of register */
5783 case OP_RIWR_RIWC:
5784 {
5785 struct reg_entry *rege = arm_reg_parse_multi (&str);
5786 if (!rege
5787 || (rege->type != REG_TYPE_MMXWR
5788 && rege->type != REG_TYPE_MMXWC
5789 && rege->type != REG_TYPE_MMXWCG))
5790 {
5791 inst.error = _("iWMMXt data or control register expected");
5792 goto failure;
5793 }
5794 inst.operands[i].reg = rege->number;
5795 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
5796 }
5797 break;
5798
5799 case OP_RIWC_RIWG:
5800 {
5801 struct reg_entry *rege = arm_reg_parse_multi (&str);
5802 if (!rege
5803 || (rege->type != REG_TYPE_MMXWC
5804 && rege->type != REG_TYPE_MMXWCG))
5805 {
5806 inst.error = _("iWMMXt control register expected");
5807 goto failure;
5808 }
5809 inst.operands[i].reg = rege->number;
5810 inst.operands[i].isreg = 1;
5811 }
5812 break;
5813
5814 /* Misc */
5815 case OP_CPSF: val = parse_cps_flags (&str); break;
5816 case OP_ENDI: val = parse_endian_specifier (&str); break;
5817 case OP_oROR: val = parse_ror (&str); break;
5818 case OP_PSR: val = parse_psr (&str); break;
5819 case OP_COND: val = parse_cond (&str); break;
5820 case OP_oBARRIER:val = parse_barrier (&str); break;
5821
5822 case OP_RVC_PSR:
5823 po_reg_or_goto (REG_TYPE_VFC, try_psr);
5824 inst.operands[i].isvec = 1; /* Mark VFP control reg as vector. */
5825 break;
5826 try_psr:
5827 val = parse_psr (&str);
5828 break;
5829
5830 case OP_APSR_RR:
5831 po_reg_or_goto (REG_TYPE_RN, try_apsr);
5832 break;
5833 try_apsr:
5834 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
5835 instruction). */
5836 if (strncasecmp (str, "APSR_", 5) == 0)
5837 {
5838 unsigned found = 0;
5839 str += 5;
5840 while (found < 15)
5841 switch (*str++)
5842 {
5843 case 'c': found = (found & 1) ? 16 : found | 1; break;
5844 case 'n': found = (found & 2) ? 16 : found | 2; break;
5845 case 'z': found = (found & 4) ? 16 : found | 4; break;
5846 case 'v': found = (found & 8) ? 16 : found | 8; break;
5847 default: found = 16;
5848 }
5849 if (found != 15)
5850 goto failure;
5851 inst.operands[i].isvec = 1;
5852 }
5853 else
5854 goto failure;
5855 break;
5856
5857 case OP_TB:
5858 po_misc_or_fail (parse_tb (&str));
5859 break;
5860
5861 /* Register lists */
5862 case OP_REGLST:
5863 val = parse_reg_list (&str);
5864 if (*str == '^')
5865 {
5866 inst.operands[1].writeback = 1;
5867 str++;
5868 }
5869 break;
5870
5871 case OP_VRSLST:
5872 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
5873 break;
5874
5875 case OP_VRDLST:
5876 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
5877 break;
5878
5879 case OP_VRSDLST:
5880 /* Allow Q registers too. */
5881 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
5882 REGLIST_NEON_D);
5883 if (val == FAIL)
5884 {
5885 inst.error = NULL;
5886 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
5887 REGLIST_VFP_S);
5888 inst.operands[i].issingle = 1;
5889 }
5890 break;
5891
5892 case OP_NRDLST:
5893 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
5894 REGLIST_NEON_D);
5895 break;
5896
5897 case OP_NSTRLST:
5898 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
5899 &inst.operands[i].vectype);
5900 break;
5901
5902 /* Addressing modes */
5903 case OP_ADDR:
5904 po_misc_or_fail (parse_address (&str, i));
5905 break;
5906
5907 case OP_ADDRGLDR:
5908 po_misc_or_fail_no_backtrack (
5909 parse_address_group_reloc (&str, i, GROUP_LDR));
5910 break;
5911
5912 case OP_ADDRGLDRS:
5913 po_misc_or_fail_no_backtrack (
5914 parse_address_group_reloc (&str, i, GROUP_LDRS));
5915 break;
5916
5917 case OP_ADDRGLDC:
5918 po_misc_or_fail_no_backtrack (
5919 parse_address_group_reloc (&str, i, GROUP_LDC));
5920 break;
5921
5922 case OP_SH:
5923 po_misc_or_fail (parse_shifter_operand (&str, i));
5924 break;
5925
5926 case OP_SHG:
5927 po_misc_or_fail_no_backtrack (
5928 parse_shifter_operand_group_reloc (&str, i));
5929 break;
5930
5931 case OP_oSHll:
5932 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
5933 break;
5934
5935 case OP_oSHar:
5936 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
5937 break;
5938
5939 case OP_oSHllar:
5940 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
5941 break;
5942
5943 default:
5944 as_fatal ("unhandled operand code %d", upat[i]);
5945 }
5946
5947 /* Various value-based sanity checks and shared operations. We
5948 do not signal immediate failures for the register constraints;
5949 this allows a syntax error to take precedence. */
5950 switch (upat[i])
5951 {
5952 case OP_oRRnpc:
5953 case OP_RRnpc:
5954 case OP_RRnpcb:
5955 case OP_RRw:
5956 case OP_RRnpc_I0:
5957 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
5958 inst.error = BAD_PC;
5959 break;
5960
5961 case OP_CPSF:
5962 case OP_ENDI:
5963 case OP_oROR:
5964 case OP_PSR:
5965 case OP_RVC_PSR:
5966 case OP_COND:
5967 case OP_oBARRIER:
5968 case OP_REGLST:
5969 case OP_VRSLST:
5970 case OP_VRDLST:
5971 case OP_VRSDLST:
5972 case OP_NRDLST:
5973 case OP_NSTRLST:
5974 if (val == FAIL)
5975 goto failure;
5976 inst.operands[i].imm = val;
5977 break;
5978
5979 default:
5980 break;
5981 }
5982
5983 /* If we get here, this operand was successfully parsed. */
5984 inst.operands[i].present = 1;
5985 continue;
5986
5987 bad_args:
5988 inst.error = BAD_ARGS;
5989
5990 failure:
5991 if (!backtrack_pos)
5992 {
5993 /* The parse routine should already have set inst.error, but set a
5994 defaut here just in case. */
5995 if (!inst.error)
5996 inst.error = _("syntax error");
5997 return FAIL;
5998 }
5999
6000 /* Do not backtrack over a trailing optional argument that
6001 absorbed some text. We will only fail again, with the
6002 'garbage following instruction' error message, which is
6003 probably less helpful than the current one. */
6004 if (backtrack_index == i && backtrack_pos != str
6005 && upat[i+1] == OP_stop)
6006 {
6007 if (!inst.error)
6008 inst.error = _("syntax error");
6009 return FAIL;
6010 }
6011
6012 /* Try again, skipping the optional argument at backtrack_pos. */
6013 str = backtrack_pos;
6014 inst.error = backtrack_error;
6015 inst.operands[backtrack_index].present = 0;
6016 i = backtrack_index;
6017 backtrack_pos = 0;
6018 }
6019
6020 /* Check that we have parsed all the arguments. */
6021 if (*str != '\0' && !inst.error)
6022 inst.error = _("garbage following instruction");
6023
6024 return inst.error ? FAIL : SUCCESS;
6025 }
6026
6027 #undef po_char_or_fail
6028 #undef po_reg_or_fail
6029 #undef po_reg_or_goto
6030 #undef po_imm_or_fail
6031 #undef po_scalar_or_fail
6032 \f
6033 /* Shorthand macro for instruction encoding functions issuing errors. */
6034 #define constraint(expr, err) do { \
6035 if (expr) \
6036 { \
6037 inst.error = err; \
6038 return; \
6039 } \
6040 } while (0)
6041
6042 /* Functions for operand encoding. ARM, then Thumb. */
6043
6044 #define rotate_left(v, n) (v << n | v >> (32 - n))
6045
6046 /* If VAL can be encoded in the immediate field of an ARM instruction,
6047 return the encoded form. Otherwise, return FAIL. */
6048
6049 static unsigned int
6050 encode_arm_immediate (unsigned int val)
6051 {
6052 unsigned int a, i;
6053
6054 for (i = 0; i < 32; i += 2)
6055 if ((a = rotate_left (val, i)) <= 0xff)
6056 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
6057
6058 return FAIL;
6059 }
6060
6061 /* If VAL can be encoded in the immediate field of a Thumb32 instruction,
6062 return the encoded form. Otherwise, return FAIL. */
6063 static unsigned int
6064 encode_thumb32_immediate (unsigned int val)
6065 {
6066 unsigned int a, i;
6067
6068 if (val <= 0xff)
6069 return val;
6070
6071 for (i = 1; i <= 24; i++)
6072 {
6073 a = val >> i;
6074 if ((val & ~(0xff << i)) == 0)
6075 return ((val >> i) & 0x7f) | ((32 - i) << 7);
6076 }
6077
6078 a = val & 0xff;
6079 if (val == ((a << 16) | a))
6080 return 0x100 | a;
6081 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
6082 return 0x300 | a;
6083
6084 a = val & 0xff00;
6085 if (val == ((a << 16) | a))
6086 return 0x200 | (a >> 8);
6087
6088 return FAIL;
6089 }
6090 /* Encode a VFP SP or DP register number into inst.instruction. */
6091
6092 static void
6093 encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
6094 {
6095 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
6096 && reg > 15)
6097 {
6098 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3))
6099 {
6100 if (thumb_mode)
6101 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
6102 fpu_vfp_ext_v3);
6103 else
6104 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
6105 fpu_vfp_ext_v3);
6106 }
6107 else
6108 {
6109 first_error (_("D register out of range for selected VFP version"));
6110 return;
6111 }
6112 }
6113
6114 switch (pos)
6115 {
6116 case VFP_REG_Sd:
6117 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
6118 break;
6119
6120 case VFP_REG_Sn:
6121 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
6122 break;
6123
6124 case VFP_REG_Sm:
6125 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
6126 break;
6127
6128 case VFP_REG_Dd:
6129 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
6130 break;
6131
6132 case VFP_REG_Dn:
6133 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
6134 break;
6135
6136 case VFP_REG_Dm:
6137 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
6138 break;
6139
6140 default:
6141 abort ();
6142 }
6143 }
6144
6145 /* Encode a <shift> in an ARM-format instruction. The immediate,
6146 if any, is handled by md_apply_fix. */
6147 static void
6148 encode_arm_shift (int i)
6149 {
6150 if (inst.operands[i].shift_kind == SHIFT_RRX)
6151 inst.instruction |= SHIFT_ROR << 5;
6152 else
6153 {
6154 inst.instruction |= inst.operands[i].shift_kind << 5;
6155 if (inst.operands[i].immisreg)
6156 {
6157 inst.instruction |= SHIFT_BY_REG;
6158 inst.instruction |= inst.operands[i].imm << 8;
6159 }
6160 else
6161 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
6162 }
6163 }
6164
6165 static void
6166 encode_arm_shifter_operand (int i)
6167 {
6168 if (inst.operands[i].isreg)
6169 {
6170 inst.instruction |= inst.operands[i].reg;
6171 encode_arm_shift (i);
6172 }
6173 else
6174 inst.instruction |= INST_IMMEDIATE;
6175 }
6176
6177 /* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
6178 static void
6179 encode_arm_addr_mode_common (int i, bfd_boolean is_t)
6180 {
6181 assert (inst.operands[i].isreg);
6182 inst.instruction |= inst.operands[i].reg << 16;
6183
6184 if (inst.operands[i].preind)
6185 {
6186 if (is_t)
6187 {
6188 inst.error = _("instruction does not accept preindexed addressing");
6189 return;
6190 }
6191 inst.instruction |= PRE_INDEX;
6192 if (inst.operands[i].writeback)
6193 inst.instruction |= WRITE_BACK;
6194
6195 }
6196 else if (inst.operands[i].postind)
6197 {
6198 assert (inst.operands[i].writeback);
6199 if (is_t)
6200 inst.instruction |= WRITE_BACK;
6201 }
6202 else /* unindexed - only for coprocessor */
6203 {
6204 inst.error = _("instruction does not accept unindexed addressing");
6205 return;
6206 }
6207
6208 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
6209 && (((inst.instruction & 0x000f0000) >> 16)
6210 == ((inst.instruction & 0x0000f000) >> 12)))
6211 as_warn ((inst.instruction & LOAD_BIT)
6212 ? _("destination register same as write-back base")
6213 : _("source register same as write-back base"));
6214 }
6215
6216 /* inst.operands[i] was set up by parse_address. Encode it into an
6217 ARM-format mode 2 load or store instruction. If is_t is true,
6218 reject forms that cannot be used with a T instruction (i.e. not
6219 post-indexed). */
6220 static void
6221 encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
6222 {
6223 encode_arm_addr_mode_common (i, is_t);
6224
6225 if (inst.operands[i].immisreg)
6226 {
6227 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
6228 inst.instruction |= inst.operands[i].imm;
6229 if (!inst.operands[i].negative)
6230 inst.instruction |= INDEX_UP;
6231 if (inst.operands[i].shifted)
6232 {
6233 if (inst.operands[i].shift_kind == SHIFT_RRX)
6234 inst.instruction |= SHIFT_ROR << 5;
6235 else
6236 {
6237 inst.instruction |= inst.operands[i].shift_kind << 5;
6238 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
6239 }
6240 }
6241 }
6242 else /* immediate offset in inst.reloc */
6243 {
6244 if (inst.reloc.type == BFD_RELOC_UNUSED)
6245 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
6246 }
6247 }
6248
6249 /* inst.operands[i] was set up by parse_address. Encode it into an
6250 ARM-format mode 3 load or store instruction. Reject forms that
6251 cannot be used with such instructions. If is_t is true, reject
6252 forms that cannot be used with a T instruction (i.e. not
6253 post-indexed). */
6254 static void
6255 encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
6256 {
6257 if (inst.operands[i].immisreg && inst.operands[i].shifted)
6258 {
6259 inst.error = _("instruction does not accept scaled register index");
6260 return;
6261 }
6262
6263 encode_arm_addr_mode_common (i, is_t);
6264
6265 if (inst.operands[i].immisreg)
6266 {
6267 inst.instruction |= inst.operands[i].imm;
6268 if (!inst.operands[i].negative)
6269 inst.instruction |= INDEX_UP;
6270 }
6271 else /* immediate offset in inst.reloc */
6272 {
6273 inst.instruction |= HWOFFSET_IMM;
6274 if (inst.reloc.type == BFD_RELOC_UNUSED)
6275 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
6276 }
6277 }
6278
6279 /* inst.operands[i] was set up by parse_address. Encode it into an
6280 ARM-format instruction. Reject all forms which cannot be encoded
6281 into a coprocessor load/store instruction. If wb_ok is false,
6282 reject use of writeback; if unind_ok is false, reject use of
6283 unindexed addressing. If reloc_override is not 0, use it instead
6284 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
6285 (in which case it is preserved). */
6286
6287 static int
6288 encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
6289 {
6290 inst.instruction |= inst.operands[i].reg << 16;
6291
6292 assert (!(inst.operands[i].preind && inst.operands[i].postind));
6293
6294 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
6295 {
6296 assert (!inst.operands[i].writeback);
6297 if (!unind_ok)
6298 {
6299 inst.error = _("instruction does not support unindexed addressing");
6300 return FAIL;
6301 }
6302 inst.instruction |= inst.operands[i].imm;
6303 inst.instruction |= INDEX_UP;
6304 return SUCCESS;
6305 }
6306
6307 if (inst.operands[i].preind)
6308 inst.instruction |= PRE_INDEX;
6309
6310 if (inst.operands[i].writeback)
6311 {
6312 if (inst.operands[i].reg == REG_PC)
6313 {
6314 inst.error = _("pc may not be used with write-back");
6315 return FAIL;
6316 }
6317 if (!wb_ok)
6318 {
6319 inst.error = _("instruction does not support writeback");
6320 return FAIL;
6321 }
6322 inst.instruction |= WRITE_BACK;
6323 }
6324
6325 if (reloc_override)
6326 inst.reloc.type = reloc_override;
6327 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
6328 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
6329 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
6330 {
6331 if (thumb_mode)
6332 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
6333 else
6334 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
6335 }
6336
6337 return SUCCESS;
6338 }
6339
6340 /* inst.reloc.exp describes an "=expr" load pseudo-operation.
6341 Determine whether it can be performed with a move instruction; if
6342 it can, convert inst.instruction to that move instruction and
6343 return 1; if it can't, convert inst.instruction to a literal-pool
6344 load and return 0. If this is not a valid thing to do in the
6345 current context, set inst.error and return 1.
6346
6347 inst.operands[i] describes the destination register. */
6348
6349 static int
6350 move_or_literal_pool (int i, bfd_boolean thumb_p, bfd_boolean mode_3)
6351 {
6352 unsigned long tbit;
6353
6354 if (thumb_p)
6355 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
6356 else
6357 tbit = LOAD_BIT;
6358
6359 if ((inst.instruction & tbit) == 0)
6360 {
6361 inst.error = _("invalid pseudo operation");
6362 return 1;
6363 }
6364 if (inst.reloc.exp.X_op != O_constant && inst.reloc.exp.X_op != O_symbol)
6365 {
6366 inst.error = _("constant expression expected");
6367 return 1;
6368 }
6369 if (inst.reloc.exp.X_op == O_constant)
6370 {
6371 if (thumb_p)
6372 {
6373 if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
6374 {
6375 /* This can be done with a mov(1) instruction. */
6376 inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
6377 inst.instruction |= inst.reloc.exp.X_add_number;
6378 return 1;
6379 }
6380 }
6381 else
6382 {
6383 int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
6384 if (value != FAIL)
6385 {
6386 /* This can be done with a mov instruction. */
6387 inst.instruction &= LITERAL_MASK;
6388 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
6389 inst.instruction |= value & 0xfff;
6390 return 1;
6391 }
6392
6393 value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
6394 if (value != FAIL)
6395 {
6396 /* This can be done with a mvn instruction. */
6397 inst.instruction &= LITERAL_MASK;
6398 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
6399 inst.instruction |= value & 0xfff;
6400 return 1;
6401 }
6402 }
6403 }
6404
6405 if (add_to_lit_pool () == FAIL)
6406 {
6407 inst.error = _("literal pool insertion failed");
6408 return 1;
6409 }
6410 inst.operands[1].reg = REG_PC;
6411 inst.operands[1].isreg = 1;
6412 inst.operands[1].preind = 1;
6413 inst.reloc.pc_rel = 1;
6414 inst.reloc.type = (thumb_p
6415 ? BFD_RELOC_ARM_THUMB_OFFSET
6416 : (mode_3
6417 ? BFD_RELOC_ARM_HWLITERAL
6418 : BFD_RELOC_ARM_LITERAL));
6419 return 0;
6420 }
6421
6422 /* Functions for instruction encoding, sorted by subarchitecture.
6423 First some generics; their names are taken from the conventional
6424 bit positions for register arguments in ARM format instructions. */
6425
6426 static void
6427 do_noargs (void)
6428 {
6429 }
6430
6431 static void
6432 do_rd (void)
6433 {
6434 inst.instruction |= inst.operands[0].reg << 12;
6435 }
6436
6437 static void
6438 do_rd_rm (void)
6439 {
6440 inst.instruction |= inst.operands[0].reg << 12;
6441 inst.instruction |= inst.operands[1].reg;
6442 }
6443
6444 static void
6445 do_rd_rn (void)
6446 {
6447 inst.instruction |= inst.operands[0].reg << 12;
6448 inst.instruction |= inst.operands[1].reg << 16;
6449 }
6450
6451 static void
6452 do_rn_rd (void)
6453 {
6454 inst.instruction |= inst.operands[0].reg << 16;
6455 inst.instruction |= inst.operands[1].reg << 12;
6456 }
6457
6458 static void
6459 do_rd_rm_rn (void)
6460 {
6461 unsigned Rn = inst.operands[2].reg;
6462 /* Enforce restrictions on SWP instruction. */
6463 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
6464 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
6465 _("Rn must not overlap other operands"));
6466 inst.instruction |= inst.operands[0].reg << 12;
6467 inst.instruction |= inst.operands[1].reg;
6468 inst.instruction |= Rn << 16;
6469 }
6470
6471 static void
6472 do_rd_rn_rm (void)
6473 {
6474 inst.instruction |= inst.operands[0].reg << 12;
6475 inst.instruction |= inst.operands[1].reg << 16;
6476 inst.instruction |= inst.operands[2].reg;
6477 }
6478
6479 static void
6480 do_rm_rd_rn (void)
6481 {
6482 inst.instruction |= inst.operands[0].reg;
6483 inst.instruction |= inst.operands[1].reg << 12;
6484 inst.instruction |= inst.operands[2].reg << 16;
6485 }
6486
6487 static void
6488 do_imm0 (void)
6489 {
6490 inst.instruction |= inst.operands[0].imm;
6491 }
6492
6493 static void
6494 do_rd_cpaddr (void)
6495 {
6496 inst.instruction |= inst.operands[0].reg << 12;
6497 encode_arm_cp_address (1, TRUE, TRUE, 0);
6498 }
6499
6500 /* ARM instructions, in alphabetical order by function name (except
6501 that wrapper functions appear immediately after the function they
6502 wrap). */
6503
6504 /* This is a pseudo-op of the form "adr rd, label" to be converted
6505 into a relative address of the form "add rd, pc, #label-.-8". */
6506
6507 static void
6508 do_adr (void)
6509 {
6510 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
6511
6512 /* Frag hacking will turn this into a sub instruction if the offset turns
6513 out to be negative. */
6514 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
6515 inst.reloc.pc_rel = 1;
6516 inst.reloc.exp.X_add_number -= 8;
6517 }
6518
6519 /* This is a pseudo-op of the form "adrl rd, label" to be converted
6520 into a relative address of the form:
6521 add rd, pc, #low(label-.-8)"
6522 add rd, rd, #high(label-.-8)" */
6523
6524 static void
6525 do_adrl (void)
6526 {
6527 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
6528
6529 /* Frag hacking will turn this into a sub instruction if the offset turns
6530 out to be negative. */
6531 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
6532 inst.reloc.pc_rel = 1;
6533 inst.size = INSN_SIZE * 2;
6534 inst.reloc.exp.X_add_number -= 8;
6535 }
6536
6537 static void
6538 do_arit (void)
6539 {
6540 if (!inst.operands[1].present)
6541 inst.operands[1].reg = inst.operands[0].reg;
6542 inst.instruction |= inst.operands[0].reg << 12;
6543 inst.instruction |= inst.operands[1].reg << 16;
6544 encode_arm_shifter_operand (2);
6545 }
6546
6547 static void
6548 do_barrier (void)
6549 {
6550 if (inst.operands[0].present)
6551 {
6552 constraint ((inst.instruction & 0xf0) != 0x40
6553 && inst.operands[0].imm != 0xf,
6554 "bad barrier type");
6555 inst.instruction |= inst.operands[0].imm;
6556 }
6557 else
6558 inst.instruction |= 0xf;
6559 }
6560
6561 static void
6562 do_bfc (void)
6563 {
6564 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
6565 constraint (msb > 32, _("bit-field extends past end of register"));
6566 /* The instruction encoding stores the LSB and MSB,
6567 not the LSB and width. */
6568 inst.instruction |= inst.operands[0].reg << 12;
6569 inst.instruction |= inst.operands[1].imm << 7;
6570 inst.instruction |= (msb - 1) << 16;
6571 }
6572
6573 static void
6574 do_bfi (void)
6575 {
6576 unsigned int msb;
6577
6578 /* #0 in second position is alternative syntax for bfc, which is
6579 the same instruction but with REG_PC in the Rm field. */
6580 if (!inst.operands[1].isreg)
6581 inst.operands[1].reg = REG_PC;
6582
6583 msb = inst.operands[2].imm + inst.operands[3].imm;
6584 constraint (msb > 32, _("bit-field extends past end of register"));
6585 /* The instruction encoding stores the LSB and MSB,
6586 not the LSB and width. */
6587 inst.instruction |= inst.operands[0].reg << 12;
6588 inst.instruction |= inst.operands[1].reg;
6589 inst.instruction |= inst.operands[2].imm << 7;
6590 inst.instruction |= (msb - 1) << 16;
6591 }
6592
6593 static void
6594 do_bfx (void)
6595 {
6596 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
6597 _("bit-field extends past end of register"));
6598 inst.instruction |= inst.operands[0].reg << 12;
6599 inst.instruction |= inst.operands[1].reg;
6600 inst.instruction |= inst.operands[2].imm << 7;
6601 inst.instruction |= (inst.operands[3].imm - 1) << 16;
6602 }
6603
6604 /* ARM V5 breakpoint instruction (argument parse)
6605 BKPT <16 bit unsigned immediate>
6606 Instruction is not conditional.
6607 The bit pattern given in insns[] has the COND_ALWAYS condition,
6608 and it is an error if the caller tried to override that. */
6609
6610 static void
6611 do_bkpt (void)
6612 {
6613 /* Top 12 of 16 bits to bits 19:8. */
6614 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
6615
6616 /* Bottom 4 of 16 bits to bits 3:0. */
6617 inst.instruction |= inst.operands[0].imm & 0xf;
6618 }
6619
6620 static void
6621 encode_branch (int default_reloc)
6622 {
6623 if (inst.operands[0].hasreloc)
6624 {
6625 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32,
6626 _("the only suffix valid here is '(plt)'"));
6627 inst.reloc.type = BFD_RELOC_ARM_PLT32;
6628 }
6629 else
6630 {
6631 inst.reloc.type = default_reloc;
6632 }
6633 inst.reloc.pc_rel = 1;
6634 }
6635
6636 static void
6637 do_branch (void)
6638 {
6639 #ifdef OBJ_ELF
6640 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
6641 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
6642 else
6643 #endif
6644 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
6645 }
6646
6647 static void
6648 do_bl (void)
6649 {
6650 #ifdef OBJ_ELF
6651 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
6652 {
6653 if (inst.cond == COND_ALWAYS)
6654 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
6655 else
6656 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
6657 }
6658 else
6659 #endif
6660 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
6661 }
6662
6663 /* ARM V5 branch-link-exchange instruction (argument parse)
6664 BLX <target_addr> ie BLX(1)
6665 BLX{<condition>} <Rm> ie BLX(2)
6666 Unfortunately, there are two different opcodes for this mnemonic.
6667 So, the insns[].value is not used, and the code here zaps values
6668 into inst.instruction.
6669 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
6670
6671 static void
6672 do_blx (void)
6673 {
6674 if (inst.operands[0].isreg)
6675 {
6676 /* Arg is a register; the opcode provided by insns[] is correct.
6677 It is not illegal to do "blx pc", just useless. */
6678 if (inst.operands[0].reg == REG_PC)
6679 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
6680
6681 inst.instruction |= inst.operands[0].reg;
6682 }
6683 else
6684 {
6685 /* Arg is an address; this instruction cannot be executed
6686 conditionally, and the opcode must be adjusted. */
6687 constraint (inst.cond != COND_ALWAYS, BAD_COND);
6688 inst.instruction = 0xfa000000;
6689 #ifdef OBJ_ELF
6690 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
6691 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
6692 else
6693 #endif
6694 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
6695 }
6696 }
6697
6698 static void
6699 do_bx (void)
6700 {
6701 if (inst.operands[0].reg == REG_PC)
6702 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
6703
6704 inst.instruction |= inst.operands[0].reg;
6705 }
6706
6707
6708 /* ARM v5TEJ. Jump to Jazelle code. */
6709
6710 static void
6711 do_bxj (void)
6712 {
6713 if (inst.operands[0].reg == REG_PC)
6714 as_tsktsk (_("use of r15 in bxj is not really useful"));
6715
6716 inst.instruction |= inst.operands[0].reg;
6717 }
6718
6719 /* Co-processor data operation:
6720 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
6721 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
6722 static void
6723 do_cdp (void)
6724 {
6725 inst.instruction |= inst.operands[0].reg << 8;
6726 inst.instruction |= inst.operands[1].imm << 20;
6727 inst.instruction |= inst.operands[2].reg << 12;
6728 inst.instruction |= inst.operands[3].reg << 16;
6729 inst.instruction |= inst.operands[4].reg;
6730 inst.instruction |= inst.operands[5].imm << 5;
6731 }
6732
6733 static void
6734 do_cmp (void)
6735 {
6736 inst.instruction |= inst.operands[0].reg << 16;
6737 encode_arm_shifter_operand (1);
6738 }
6739
6740 /* Transfer between coprocessor and ARM registers.
6741 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
6742 MRC2
6743 MCR{cond}
6744 MCR2
6745
6746 No special properties. */
6747
6748 static void
6749 do_co_reg (void)
6750 {
6751 inst.instruction |= inst.operands[0].reg << 8;
6752 inst.instruction |= inst.operands[1].imm << 21;
6753 inst.instruction |= inst.operands[2].reg << 12;
6754 inst.instruction |= inst.operands[3].reg << 16;
6755 inst.instruction |= inst.operands[4].reg;
6756 inst.instruction |= inst.operands[5].imm << 5;
6757 }
6758
6759 /* Transfer between coprocessor register and pair of ARM registers.
6760 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
6761 MCRR2
6762 MRRC{cond}
6763 MRRC2
6764
6765 Two XScale instructions are special cases of these:
6766
6767 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
6768 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
6769
6770 Result unpredicatable if Rd or Rn is R15. */
6771
6772 static void
6773 do_co_reg2c (void)
6774 {
6775 inst.instruction |= inst.operands[0].reg << 8;
6776 inst.instruction |= inst.operands[1].imm << 4;
6777 inst.instruction |= inst.operands[2].reg << 12;
6778 inst.instruction |= inst.operands[3].reg << 16;
6779 inst.instruction |= inst.operands[4].reg;
6780 }
6781
6782 static void
6783 do_cpsi (void)
6784 {
6785 inst.instruction |= inst.operands[0].imm << 6;
6786 inst.instruction |= inst.operands[1].imm;
6787 }
6788
6789 static void
6790 do_dbg (void)
6791 {
6792 inst.instruction |= inst.operands[0].imm;
6793 }
6794
6795 static void
6796 do_it (void)
6797 {
6798 /* There is no IT instruction in ARM mode. We
6799 process it but do not generate code for it. */
6800 inst.size = 0;
6801 }
6802
6803 static void
6804 do_ldmstm (void)
6805 {
6806 int base_reg = inst.operands[0].reg;
6807 int range = inst.operands[1].imm;
6808
6809 inst.instruction |= base_reg << 16;
6810 inst.instruction |= range;
6811
6812 if (inst.operands[1].writeback)
6813 inst.instruction |= LDM_TYPE_2_OR_3;
6814
6815 if (inst.operands[0].writeback)
6816 {
6817 inst.instruction |= WRITE_BACK;
6818 /* Check for unpredictable uses of writeback. */
6819 if (inst.instruction & LOAD_BIT)
6820 {
6821 /* Not allowed in LDM type 2. */
6822 if ((inst.instruction & LDM_TYPE_2_OR_3)
6823 && ((range & (1 << REG_PC)) == 0))
6824 as_warn (_("writeback of base register is UNPREDICTABLE"));
6825 /* Only allowed if base reg not in list for other types. */
6826 else if (range & (1 << base_reg))
6827 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
6828 }
6829 else /* STM. */
6830 {
6831 /* Not allowed for type 2. */
6832 if (inst.instruction & LDM_TYPE_2_OR_3)
6833 as_warn (_("writeback of base register is UNPREDICTABLE"));
6834 /* Only allowed if base reg not in list, or first in list. */
6835 else if ((range & (1 << base_reg))
6836 && (range & ((1 << base_reg) - 1)))
6837 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
6838 }
6839 }
6840 }
6841
6842 /* ARMv5TE load-consecutive (argument parse)
6843 Mode is like LDRH.
6844
6845 LDRccD R, mode
6846 STRccD R, mode. */
6847
6848 static void
6849 do_ldrd (void)
6850 {
6851 constraint (inst.operands[0].reg % 2 != 0,
6852 _("first destination register must be even"));
6853 constraint (inst.operands[1].present
6854 && inst.operands[1].reg != inst.operands[0].reg + 1,
6855 _("can only load two consecutive registers"));
6856 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
6857 constraint (!inst.operands[2].isreg, _("'[' expected"));
6858
6859 if (!inst.operands[1].present)
6860 inst.operands[1].reg = inst.operands[0].reg + 1;
6861
6862 if (inst.instruction & LOAD_BIT)
6863 {
6864 /* encode_arm_addr_mode_3 will diagnose overlap between the base
6865 register and the first register written; we have to diagnose
6866 overlap between the base and the second register written here. */
6867
6868 if (inst.operands[2].reg == inst.operands[1].reg
6869 && (inst.operands[2].writeback || inst.operands[2].postind))
6870 as_warn (_("base register written back, and overlaps "
6871 "second destination register"));
6872
6873 /* For an index-register load, the index register must not overlap the
6874 destination (even if not write-back). */
6875 else if (inst.operands[2].immisreg
6876 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
6877 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
6878 as_warn (_("index register overlaps destination register"));
6879 }
6880
6881 inst.instruction |= inst.operands[0].reg << 12;
6882 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
6883 }
6884
6885 static void
6886 do_ldrex (void)
6887 {
6888 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
6889 || inst.operands[1].postind || inst.operands[1].writeback
6890 || inst.operands[1].immisreg || inst.operands[1].shifted
6891 || inst.operands[1].negative
6892 /* This can arise if the programmer has written
6893 strex rN, rM, foo
6894 or if they have mistakenly used a register name as the last
6895 operand, eg:
6896 strex rN, rM, rX
6897 It is very difficult to distinguish between these two cases
6898 because "rX" might actually be a label. ie the register
6899 name has been occluded by a symbol of the same name. So we
6900 just generate a general 'bad addressing mode' type error
6901 message and leave it up to the programmer to discover the
6902 true cause and fix their mistake. */
6903 || (inst.operands[1].reg == REG_PC),
6904 BAD_ADDR_MODE);
6905
6906 constraint (inst.reloc.exp.X_op != O_constant
6907 || inst.reloc.exp.X_add_number != 0,
6908 _("offset must be zero in ARM encoding"));
6909
6910 inst.instruction |= inst.operands[0].reg << 12;
6911 inst.instruction |= inst.operands[1].reg << 16;
6912 inst.reloc.type = BFD_RELOC_UNUSED;
6913 }
6914
6915 static void
6916 do_ldrexd (void)
6917 {
6918 constraint (inst.operands[0].reg % 2 != 0,
6919 _("even register required"));
6920 constraint (inst.operands[1].present
6921 && inst.operands[1].reg != inst.operands[0].reg + 1,
6922 _("can only load two consecutive registers"));
6923 /* If op 1 were present and equal to PC, this function wouldn't
6924 have been called in the first place. */
6925 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
6926
6927 inst.instruction |= inst.operands[0].reg << 12;
6928 inst.instruction |= inst.operands[2].reg << 16;
6929 }
6930
6931 static void
6932 do_ldst (void)
6933 {
6934 inst.instruction |= inst.operands[0].reg << 12;
6935 if (!inst.operands[1].isreg)
6936 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/FALSE))
6937 return;
6938 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
6939 }
6940
6941 static void
6942 do_ldstt (void)
6943 {
6944 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
6945 reject [Rn,...]. */
6946 if (inst.operands[1].preind)
6947 {
6948 constraint (inst.reloc.exp.X_op != O_constant ||
6949 inst.reloc.exp.X_add_number != 0,
6950 _("this instruction requires a post-indexed address"));
6951
6952 inst.operands[1].preind = 0;
6953 inst.operands[1].postind = 1;
6954 inst.operands[1].writeback = 1;
6955 }
6956 inst.instruction |= inst.operands[0].reg << 12;
6957 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
6958 }
6959
6960 /* Halfword and signed-byte load/store operations. */
6961
6962 static void
6963 do_ldstv4 (void)
6964 {
6965 inst.instruction |= inst.operands[0].reg << 12;
6966 if (!inst.operands[1].isreg)
6967 if (move_or_literal_pool (0, /*thumb_p=*/FALSE, /*mode_3=*/TRUE))
6968 return;
6969 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
6970 }
6971
6972 static void
6973 do_ldsttv4 (void)
6974 {
6975 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
6976 reject [Rn,...]. */
6977 if (inst.operands[1].preind)
6978 {
6979 constraint (inst.reloc.exp.X_op != O_constant ||
6980 inst.reloc.exp.X_add_number != 0,
6981 _("this instruction requires a post-indexed address"));
6982
6983 inst.operands[1].preind = 0;
6984 inst.operands[1].postind = 1;
6985 inst.operands[1].writeback = 1;
6986 }
6987 inst.instruction |= inst.operands[0].reg << 12;
6988 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
6989 }
6990
6991 /* Co-processor register load/store.
6992 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
6993 static void
6994 do_lstc (void)
6995 {
6996 inst.instruction |= inst.operands[0].reg << 8;
6997 inst.instruction |= inst.operands[1].reg << 12;
6998 encode_arm_cp_address (2, TRUE, TRUE, 0);
6999 }
7000
7001 static void
7002 do_mlas (void)
7003 {
7004 /* This restriction does not apply to mls (nor to mla in v6, but
7005 that's hard to detect at present). */
7006 if (inst.operands[0].reg == inst.operands[1].reg
7007 && !(inst.instruction & 0x00400000))
7008 as_tsktsk (_("rd and rm should be different in mla"));
7009
7010 inst.instruction |= inst.operands[0].reg << 16;
7011 inst.instruction |= inst.operands[1].reg;
7012 inst.instruction |= inst.operands[2].reg << 8;
7013 inst.instruction |= inst.operands[3].reg << 12;
7014
7015 }
7016
7017 static void
7018 do_mov (void)
7019 {
7020 inst.instruction |= inst.operands[0].reg << 12;
7021 encode_arm_shifter_operand (1);
7022 }
7023
7024 /* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
7025 static void
7026 do_mov16 (void)
7027 {
7028 bfd_vma imm;
7029 bfd_boolean top;
7030
7031 top = (inst.instruction & 0x00400000) != 0;
7032 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
7033 _(":lower16: not allowed this instruction"));
7034 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
7035 _(":upper16: not allowed instruction"));
7036 inst.instruction |= inst.operands[0].reg << 12;
7037 if (inst.reloc.type == BFD_RELOC_UNUSED)
7038 {
7039 imm = inst.reloc.exp.X_add_number;
7040 /* The value is in two pieces: 0:11, 16:19. */
7041 inst.instruction |= (imm & 0x00000fff);
7042 inst.instruction |= (imm & 0x0000f000) << 4;
7043 }
7044 }
7045
7046 static void do_vfp_nsyn_opcode (const char *);
7047
7048 static int
7049 do_vfp_nsyn_mrs (void)
7050 {
7051 if (inst.operands[0].isvec)
7052 {
7053 if (inst.operands[1].reg != 1)
7054 first_error (_("operand 1 must be FPSCR"));
7055 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
7056 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
7057 do_vfp_nsyn_opcode ("fmstat");
7058 }
7059 else if (inst.operands[1].isvec)
7060 do_vfp_nsyn_opcode ("fmrx");
7061 else
7062 return FAIL;
7063
7064 return SUCCESS;
7065 }
7066
7067 static int
7068 do_vfp_nsyn_msr (void)
7069 {
7070 if (inst.operands[0].isvec)
7071 do_vfp_nsyn_opcode ("fmxr");
7072 else
7073 return FAIL;
7074
7075 return SUCCESS;
7076 }
7077
7078 static void
7079 do_mrs (void)
7080 {
7081 if (do_vfp_nsyn_mrs () == SUCCESS)
7082 return;
7083
7084 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
7085 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
7086 != (PSR_c|PSR_f),
7087 _("'CPSR' or 'SPSR' expected"));
7088 inst.instruction |= inst.operands[0].reg << 12;
7089 inst.instruction |= (inst.operands[1].imm & SPSR_BIT);
7090 }
7091
7092 /* Two possible forms:
7093 "{C|S}PSR_<field>, Rm",
7094 "{C|S}PSR_f, #expression". */
7095
7096 static void
7097 do_msr (void)
7098 {
7099 if (do_vfp_nsyn_msr () == SUCCESS)
7100 return;
7101
7102 inst.instruction |= inst.operands[0].imm;
7103 if (inst.operands[1].isreg)
7104 inst.instruction |= inst.operands[1].reg;
7105 else
7106 {
7107 inst.instruction |= INST_IMMEDIATE;
7108 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
7109 inst.reloc.pc_rel = 0;
7110 }
7111 }
7112
7113 static void
7114 do_mul (void)
7115 {
7116 if (!inst.operands[2].present)
7117 inst.operands[2].reg = inst.operands[0].reg;
7118 inst.instruction |= inst.operands[0].reg << 16;
7119 inst.instruction |= inst.operands[1].reg;
7120 inst.instruction |= inst.operands[2].reg << 8;
7121
7122 if (inst.operands[0].reg == inst.operands[1].reg)
7123 as_tsktsk (_("rd and rm should be different in mul"));
7124 }
7125
7126 /* Long Multiply Parser
7127 UMULL RdLo, RdHi, Rm, Rs
7128 SMULL RdLo, RdHi, Rm, Rs
7129 UMLAL RdLo, RdHi, Rm, Rs
7130 SMLAL RdLo, RdHi, Rm, Rs. */
7131
7132 static void
7133 do_mull (void)
7134 {
7135 inst.instruction |= inst.operands[0].reg << 12;
7136 inst.instruction |= inst.operands[1].reg << 16;
7137 inst.instruction |= inst.operands[2].reg;
7138 inst.instruction |= inst.operands[3].reg << 8;
7139
7140 /* rdhi, rdlo and rm must all be different. */
7141 if (inst.operands[0].reg == inst.operands[1].reg
7142 || inst.operands[0].reg == inst.operands[2].reg
7143 || inst.operands[1].reg == inst.operands[2].reg)
7144 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
7145 }
7146
7147 static void
7148 do_nop (void)
7149 {
7150 if (inst.operands[0].present)
7151 {
7152 /* Architectural NOP hints are CPSR sets with no bits selected. */
7153 inst.instruction &= 0xf0000000;
7154 inst.instruction |= 0x0320f000 + inst.operands[0].imm;
7155 }
7156 }
7157
7158 /* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
7159 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
7160 Condition defaults to COND_ALWAYS.
7161 Error if Rd, Rn or Rm are R15. */
7162
7163 static void
7164 do_pkhbt (void)
7165 {
7166 inst.instruction |= inst.operands[0].reg << 12;
7167 inst.instruction |= inst.operands[1].reg << 16;
7168 inst.instruction |= inst.operands[2].reg;
7169 if (inst.operands[3].present)
7170 encode_arm_shift (3);
7171 }
7172
7173 /* ARM V6 PKHTB (Argument Parse). */
7174
7175 static void
7176 do_pkhtb (void)
7177 {
7178 if (!inst.operands[3].present)
7179 {
7180 /* If the shift specifier is omitted, turn the instruction
7181 into pkhbt rd, rm, rn. */
7182 inst.instruction &= 0xfff00010;
7183 inst.instruction |= inst.operands[0].reg << 12;
7184 inst.instruction |= inst.operands[1].reg;
7185 inst.instruction |= inst.operands[2].reg << 16;
7186 }
7187 else
7188 {
7189 inst.instruction |= inst.operands[0].reg << 12;
7190 inst.instruction |= inst.operands[1].reg << 16;
7191 inst.instruction |= inst.operands[2].reg;
7192 encode_arm_shift (3);
7193 }
7194 }
7195
7196 /* ARMv5TE: Preload-Cache
7197
7198 PLD <addr_mode>
7199
7200 Syntactically, like LDR with B=1, W=0, L=1. */
7201
7202 static void
7203 do_pld (void)
7204 {
7205 constraint (!inst.operands[0].isreg,
7206 _("'[' expected after PLD mnemonic"));
7207 constraint (inst.operands[0].postind,
7208 _("post-indexed expression used in preload instruction"));
7209 constraint (inst.operands[0].writeback,
7210 _("writeback used in preload instruction"));
7211 constraint (!inst.operands[0].preind,
7212 _("unindexed addressing used in preload instruction"));
7213 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
7214 }
7215
7216 /* ARMv7: PLI <addr_mode> */
7217 static void
7218 do_pli (void)
7219 {
7220 constraint (!inst.operands[0].isreg,
7221 _("'[' expected after PLI mnemonic"));
7222 constraint (inst.operands[0].postind,
7223 _("post-indexed expression used in preload instruction"));
7224 constraint (inst.operands[0].writeback,
7225 _("writeback used in preload instruction"));
7226 constraint (!inst.operands[0].preind,
7227 _("unindexed addressing used in preload instruction"));
7228 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
7229 inst.instruction &= ~PRE_INDEX;
7230 }
7231
7232 static void
7233 do_push_pop (void)
7234 {
7235 inst.operands[1] = inst.operands[0];
7236 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
7237 inst.operands[0].isreg = 1;
7238 inst.operands[0].writeback = 1;
7239 inst.operands[0].reg = REG_SP;
7240 do_ldmstm ();
7241 }
7242
7243 /* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
7244 word at the specified address and the following word
7245 respectively.
7246 Unconditionally executed.
7247 Error if Rn is R15. */
7248
7249 static void
7250 do_rfe (void)
7251 {
7252 inst.instruction |= inst.operands[0].reg << 16;
7253 if (inst.operands[0].writeback)
7254 inst.instruction |= WRITE_BACK;
7255 }
7256
7257 /* ARM V6 ssat (argument parse). */
7258
7259 static void
7260 do_ssat (void)
7261 {
7262 inst.instruction |= inst.operands[0].reg << 12;
7263 inst.instruction |= (inst.operands[1].imm - 1) << 16;
7264 inst.instruction |= inst.operands[2].reg;
7265
7266 if (inst.operands[3].present)
7267 encode_arm_shift (3);
7268 }
7269
7270 /* ARM V6 usat (argument parse). */
7271
7272 static void
7273 do_usat (void)
7274 {
7275 inst.instruction |= inst.operands[0].reg << 12;
7276 inst.instruction |= inst.operands[1].imm << 16;
7277 inst.instruction |= inst.operands[2].reg;
7278
7279 if (inst.operands[3].present)
7280 encode_arm_shift (3);
7281 }
7282
7283 /* ARM V6 ssat16 (argument parse). */
7284
7285 static void
7286 do_ssat16 (void)
7287 {
7288 inst.instruction |= inst.operands[0].reg << 12;
7289 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
7290 inst.instruction |= inst.operands[2].reg;
7291 }
7292
7293 static void
7294 do_usat16 (void)
7295 {
7296 inst.instruction |= inst.operands[0].reg << 12;
7297 inst.instruction |= inst.operands[1].imm << 16;
7298 inst.instruction |= inst.operands[2].reg;
7299 }
7300
7301 /* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
7302 preserving the other bits.
7303
7304 setend <endian_specifier>, where <endian_specifier> is either
7305 BE or LE. */
7306
7307 static void
7308 do_setend (void)
7309 {
7310 if (inst.operands[0].imm)
7311 inst.instruction |= 0x200;
7312 }
7313
7314 static void
7315 do_shift (void)
7316 {
7317 unsigned int Rm = (inst.operands[1].present
7318 ? inst.operands[1].reg
7319 : inst.operands[0].reg);
7320
7321 inst.instruction |= inst.operands[0].reg << 12;
7322 inst.instruction |= Rm;
7323 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
7324 {
7325 inst.instruction |= inst.operands[2].reg << 8;
7326 inst.instruction |= SHIFT_BY_REG;
7327 }
7328 else
7329 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7330 }
7331
7332 static void
7333 do_smc (void)
7334 {
7335 inst.reloc.type = BFD_RELOC_ARM_SMC;
7336 inst.reloc.pc_rel = 0;
7337 }
7338
7339 static void
7340 do_swi (void)
7341 {
7342 inst.reloc.type = BFD_RELOC_ARM_SWI;
7343 inst.reloc.pc_rel = 0;
7344 }
7345
7346 /* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
7347 SMLAxy{cond} Rd,Rm,Rs,Rn
7348 SMLAWy{cond} Rd,Rm,Rs,Rn
7349 Error if any register is R15. */
7350
7351 static void
7352 do_smla (void)
7353 {
7354 inst.instruction |= inst.operands[0].reg << 16;
7355 inst.instruction |= inst.operands[1].reg;
7356 inst.instruction |= inst.operands[2].reg << 8;
7357 inst.instruction |= inst.operands[3].reg << 12;
7358 }
7359
7360 /* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
7361 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
7362 Error if any register is R15.
7363 Warning if Rdlo == Rdhi. */
7364
7365 static void
7366 do_smlal (void)
7367 {
7368 inst.instruction |= inst.operands[0].reg << 12;
7369 inst.instruction |= inst.operands[1].reg << 16;
7370 inst.instruction |= inst.operands[2].reg;
7371 inst.instruction |= inst.operands[3].reg << 8;
7372
7373 if (inst.operands[0].reg == inst.operands[1].reg)
7374 as_tsktsk (_("rdhi and rdlo must be different"));
7375 }
7376
7377 /* ARM V5E (El Segundo) signed-multiply (argument parse)
7378 SMULxy{cond} Rd,Rm,Rs
7379 Error if any register is R15. */
7380
7381 static void
7382 do_smul (void)
7383 {
7384 inst.instruction |= inst.operands[0].reg << 16;
7385 inst.instruction |= inst.operands[1].reg;
7386 inst.instruction |= inst.operands[2].reg << 8;
7387 }
7388
7389 /* ARM V6 srs (argument parse). */
7390
7391 static void
7392 do_srs (void)
7393 {
7394 inst.instruction |= inst.operands[0].imm;
7395 if (inst.operands[0].writeback)
7396 inst.instruction |= WRITE_BACK;
7397 }
7398
7399 /* ARM V6 strex (argument parse). */
7400
7401 static void
7402 do_strex (void)
7403 {
7404 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
7405 || inst.operands[2].postind || inst.operands[2].writeback
7406 || inst.operands[2].immisreg || inst.operands[2].shifted
7407 || inst.operands[2].negative
7408 /* See comment in do_ldrex(). */
7409 || (inst.operands[2].reg == REG_PC),
7410 BAD_ADDR_MODE);
7411
7412 constraint (inst.operands[0].reg == inst.operands[1].reg
7413 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
7414
7415 constraint (inst.reloc.exp.X_op != O_constant
7416 || inst.reloc.exp.X_add_number != 0,
7417 _("offset must be zero in ARM encoding"));
7418
7419 inst.instruction |= inst.operands[0].reg << 12;
7420 inst.instruction |= inst.operands[1].reg;
7421 inst.instruction |= inst.operands[2].reg << 16;
7422 inst.reloc.type = BFD_RELOC_UNUSED;
7423 }
7424
7425 static void
7426 do_strexd (void)
7427 {
7428 constraint (inst.operands[1].reg % 2 != 0,
7429 _("even register required"));
7430 constraint (inst.operands[2].present
7431 && inst.operands[2].reg != inst.operands[1].reg + 1,
7432 _("can only store two consecutive registers"));
7433 /* If op 2 were present and equal to PC, this function wouldn't
7434 have been called in the first place. */
7435 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
7436
7437 constraint (inst.operands[0].reg == inst.operands[1].reg
7438 || inst.operands[0].reg == inst.operands[1].reg + 1
7439 || inst.operands[0].reg == inst.operands[3].reg,
7440 BAD_OVERLAP);
7441
7442 inst.instruction |= inst.operands[0].reg << 12;
7443 inst.instruction |= inst.operands[1].reg;
7444 inst.instruction |= inst.operands[3].reg << 16;
7445 }
7446
7447 /* ARM V6 SXTAH extracts a 16-bit value from a register, sign
7448 extends it to 32-bits, and adds the result to a value in another
7449 register. You can specify a rotation by 0, 8, 16, or 24 bits
7450 before extracting the 16-bit value.
7451 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
7452 Condition defaults to COND_ALWAYS.
7453 Error if any register uses R15. */
7454
7455 static void
7456 do_sxtah (void)
7457 {
7458 inst.instruction |= inst.operands[0].reg << 12;
7459 inst.instruction |= inst.operands[1].reg << 16;
7460 inst.instruction |= inst.operands[2].reg;
7461 inst.instruction |= inst.operands[3].imm << 10;
7462 }
7463
7464 /* ARM V6 SXTH.
7465
7466 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
7467 Condition defaults to COND_ALWAYS.
7468 Error if any register uses R15. */
7469
7470 static void
7471 do_sxth (void)
7472 {
7473 inst.instruction |= inst.operands[0].reg << 12;
7474 inst.instruction |= inst.operands[1].reg;
7475 inst.instruction |= inst.operands[2].imm << 10;
7476 }
7477 \f
7478 /* VFP instructions. In a logical order: SP variant first, monad
7479 before dyad, arithmetic then move then load/store. */
7480
7481 static void
7482 do_vfp_sp_monadic (void)
7483 {
7484 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7485 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
7486 }
7487
7488 static void
7489 do_vfp_sp_dyadic (void)
7490 {
7491 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7492 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
7493 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
7494 }
7495
7496 static void
7497 do_vfp_sp_compare_z (void)
7498 {
7499 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7500 }
7501
7502 static void
7503 do_vfp_dp_sp_cvt (void)
7504 {
7505 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7506 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
7507 }
7508
7509 static void
7510 do_vfp_sp_dp_cvt (void)
7511 {
7512 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7513 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
7514 }
7515
7516 static void
7517 do_vfp_reg_from_sp (void)
7518 {
7519 inst.instruction |= inst.operands[0].reg << 12;
7520 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
7521 }
7522
7523 static void
7524 do_vfp_reg2_from_sp2 (void)
7525 {
7526 constraint (inst.operands[2].imm != 2,
7527 _("only two consecutive VFP SP registers allowed here"));
7528 inst.instruction |= inst.operands[0].reg << 12;
7529 inst.instruction |= inst.operands[1].reg << 16;
7530 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
7531 }
7532
7533 static void
7534 do_vfp_sp_from_reg (void)
7535 {
7536 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
7537 inst.instruction |= inst.operands[1].reg << 12;
7538 }
7539
7540 static void
7541 do_vfp_sp2_from_reg2 (void)
7542 {
7543 constraint (inst.operands[0].imm != 2,
7544 _("only two consecutive VFP SP registers allowed here"));
7545 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
7546 inst.instruction |= inst.operands[1].reg << 12;
7547 inst.instruction |= inst.operands[2].reg << 16;
7548 }
7549
7550 static void
7551 do_vfp_sp_ldst (void)
7552 {
7553 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7554 encode_arm_cp_address (1, FALSE, TRUE, 0);
7555 }
7556
7557 static void
7558 do_vfp_dp_ldst (void)
7559 {
7560 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7561 encode_arm_cp_address (1, FALSE, TRUE, 0);
7562 }
7563
7564
7565 static void
7566 vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
7567 {
7568 if (inst.operands[0].writeback)
7569 inst.instruction |= WRITE_BACK;
7570 else
7571 constraint (ldstm_type != VFP_LDSTMIA,
7572 _("this addressing mode requires base-register writeback"));
7573 inst.instruction |= inst.operands[0].reg << 16;
7574 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
7575 inst.instruction |= inst.operands[1].imm;
7576 }
7577
7578 static void
7579 vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
7580 {
7581 int count;
7582
7583 if (inst.operands[0].writeback)
7584 inst.instruction |= WRITE_BACK;
7585 else
7586 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
7587 _("this addressing mode requires base-register writeback"));
7588
7589 inst.instruction |= inst.operands[0].reg << 16;
7590 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
7591
7592 count = inst.operands[1].imm << 1;
7593 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
7594 count += 1;
7595
7596 inst.instruction |= count;
7597 }
7598
7599 static void
7600 do_vfp_sp_ldstmia (void)
7601 {
7602 vfp_sp_ldstm (VFP_LDSTMIA);
7603 }
7604
7605 static void
7606 do_vfp_sp_ldstmdb (void)
7607 {
7608 vfp_sp_ldstm (VFP_LDSTMDB);
7609 }
7610
7611 static void
7612 do_vfp_dp_ldstmia (void)
7613 {
7614 vfp_dp_ldstm (VFP_LDSTMIA);
7615 }
7616
7617 static void
7618 do_vfp_dp_ldstmdb (void)
7619 {
7620 vfp_dp_ldstm (VFP_LDSTMDB);
7621 }
7622
7623 static void
7624 do_vfp_xp_ldstmia (void)
7625 {
7626 vfp_dp_ldstm (VFP_LDSTMIAX);
7627 }
7628
7629 static void
7630 do_vfp_xp_ldstmdb (void)
7631 {
7632 vfp_dp_ldstm (VFP_LDSTMDBX);
7633 }
7634
7635 static void
7636 do_vfp_dp_rd_rm (void)
7637 {
7638 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7639 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
7640 }
7641
7642 static void
7643 do_vfp_dp_rn_rd (void)
7644 {
7645 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
7646 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
7647 }
7648
7649 static void
7650 do_vfp_dp_rd_rn (void)
7651 {
7652 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7653 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
7654 }
7655
7656 static void
7657 do_vfp_dp_rd_rn_rm (void)
7658 {
7659 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7660 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
7661 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
7662 }
7663
7664 static void
7665 do_vfp_dp_rd (void)
7666 {
7667 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7668 }
7669
7670 static void
7671 do_vfp_dp_rm_rd_rn (void)
7672 {
7673 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
7674 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
7675 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
7676 }
7677
7678 /* VFPv3 instructions. */
7679 static void
7680 do_vfp_sp_const (void)
7681 {
7682 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7683 inst.instruction |= (inst.operands[1].imm & 15) << 16;
7684 inst.instruction |= (inst.operands[1].imm >> 4);
7685 }
7686
7687 static void
7688 do_vfp_dp_const (void)
7689 {
7690 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7691 inst.instruction |= (inst.operands[1].imm & 15) << 16;
7692 inst.instruction |= (inst.operands[1].imm >> 4);
7693 }
7694
7695 static void
7696 vfp_conv (int srcsize)
7697 {
7698 unsigned immbits = srcsize - inst.operands[1].imm;
7699 inst.instruction |= (immbits & 1) << 5;
7700 inst.instruction |= (immbits >> 1);
7701 }
7702
7703 static void
7704 do_vfp_sp_conv_16 (void)
7705 {
7706 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7707 vfp_conv (16);
7708 }
7709
7710 static void
7711 do_vfp_dp_conv_16 (void)
7712 {
7713 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7714 vfp_conv (16);
7715 }
7716
7717 static void
7718 do_vfp_sp_conv_32 (void)
7719 {
7720 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
7721 vfp_conv (32);
7722 }
7723
7724 static void
7725 do_vfp_dp_conv_32 (void)
7726 {
7727 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
7728 vfp_conv (32);
7729 }
7730
7731 \f
7732 /* FPA instructions. Also in a logical order. */
7733
7734 static void
7735 do_fpa_cmp (void)
7736 {
7737 inst.instruction |= inst.operands[0].reg << 16;
7738 inst.instruction |= inst.operands[1].reg;
7739 }
7740
7741 static void
7742 do_fpa_ldmstm (void)
7743 {
7744 inst.instruction |= inst.operands[0].reg << 12;
7745 switch (inst.operands[1].imm)
7746 {
7747 case 1: inst.instruction |= CP_T_X; break;
7748 case 2: inst.instruction |= CP_T_Y; break;
7749 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
7750 case 4: break;
7751 default: abort ();
7752 }
7753
7754 if (inst.instruction & (PRE_INDEX | INDEX_UP))
7755 {
7756 /* The instruction specified "ea" or "fd", so we can only accept
7757 [Rn]{!}. The instruction does not really support stacking or
7758 unstacking, so we have to emulate these by setting appropriate
7759 bits and offsets. */
7760 constraint (inst.reloc.exp.X_op != O_constant
7761 || inst.reloc.exp.X_add_number != 0,
7762 _("this instruction does not support indexing"));
7763
7764 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
7765 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
7766
7767 if (!(inst.instruction & INDEX_UP))
7768 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
7769
7770 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
7771 {
7772 inst.operands[2].preind = 0;
7773 inst.operands[2].postind = 1;
7774 }
7775 }
7776
7777 encode_arm_cp_address (2, TRUE, TRUE, 0);
7778 }
7779
7780 \f
7781 /* iWMMXt instructions: strictly in alphabetical order. */
7782
7783 static void
7784 do_iwmmxt_tandorc (void)
7785 {
7786 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
7787 }
7788
7789 static void
7790 do_iwmmxt_textrc (void)
7791 {
7792 inst.instruction |= inst.operands[0].reg << 12;
7793 inst.instruction |= inst.operands[1].imm;
7794 }
7795
7796 static void
7797 do_iwmmxt_textrm (void)
7798 {
7799 inst.instruction |= inst.operands[0].reg << 12;
7800 inst.instruction |= inst.operands[1].reg << 16;
7801 inst.instruction |= inst.operands[2].imm;
7802 }
7803
7804 static void
7805 do_iwmmxt_tinsr (void)
7806 {
7807 inst.instruction |= inst.operands[0].reg << 16;
7808 inst.instruction |= inst.operands[1].reg << 12;
7809 inst.instruction |= inst.operands[2].imm;
7810 }
7811
7812 static void
7813 do_iwmmxt_tmia (void)
7814 {
7815 inst.instruction |= inst.operands[0].reg << 5;
7816 inst.instruction |= inst.operands[1].reg;
7817 inst.instruction |= inst.operands[2].reg << 12;
7818 }
7819
7820 static void
7821 do_iwmmxt_waligni (void)
7822 {
7823 inst.instruction |= inst.operands[0].reg << 12;
7824 inst.instruction |= inst.operands[1].reg << 16;
7825 inst.instruction |= inst.operands[2].reg;
7826 inst.instruction |= inst.operands[3].imm << 20;
7827 }
7828
7829 static void
7830 do_iwmmxt_wmov (void)
7831 {
7832 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
7833 inst.instruction |= inst.operands[0].reg << 12;
7834 inst.instruction |= inst.operands[1].reg << 16;
7835 inst.instruction |= inst.operands[1].reg;
7836 }
7837
7838 static void
7839 do_iwmmxt_wldstbh (void)
7840 {
7841 int reloc;
7842 inst.instruction |= inst.operands[0].reg << 12;
7843 if (thumb_mode)
7844 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
7845 else
7846 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
7847 encode_arm_cp_address (1, TRUE, FALSE, reloc);
7848 }
7849
7850 static void
7851 do_iwmmxt_wldstw (void)
7852 {
7853 /* RIWR_RIWC clears .isreg for a control register. */
7854 if (!inst.operands[0].isreg)
7855 {
7856 constraint (inst.cond != COND_ALWAYS, BAD_COND);
7857 inst.instruction |= 0xf0000000;
7858 }
7859
7860 inst.instruction |= inst.operands[0].reg << 12;
7861 encode_arm_cp_address (1, TRUE, TRUE, 0);
7862 }
7863
7864 static void
7865 do_iwmmxt_wldstd (void)
7866 {
7867 inst.instruction |= inst.operands[0].reg << 12;
7868 encode_arm_cp_address (1, TRUE, FALSE, 0);
7869 }
7870
7871 static void
7872 do_iwmmxt_wshufh (void)
7873 {
7874 inst.instruction |= inst.operands[0].reg << 12;
7875 inst.instruction |= inst.operands[1].reg << 16;
7876 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
7877 inst.instruction |= (inst.operands[2].imm & 0x0f);
7878 }
7879
7880 static void
7881 do_iwmmxt_wzero (void)
7882 {
7883 /* WZERO reg is an alias for WANDN reg, reg, reg. */
7884 inst.instruction |= inst.operands[0].reg;
7885 inst.instruction |= inst.operands[0].reg << 12;
7886 inst.instruction |= inst.operands[0].reg << 16;
7887 }
7888 \f
7889 /* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
7890 operations first, then control, shift, and load/store. */
7891
7892 /* Insns like "foo X,Y,Z". */
7893
7894 static void
7895 do_mav_triple (void)
7896 {
7897 inst.instruction |= inst.operands[0].reg << 16;
7898 inst.instruction |= inst.operands[1].reg;
7899 inst.instruction |= inst.operands[2].reg << 12;
7900 }
7901
7902 /* Insns like "foo W,X,Y,Z".
7903 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
7904
7905 static void
7906 do_mav_quad (void)
7907 {
7908 inst.instruction |= inst.operands[0].reg << 5;
7909 inst.instruction |= inst.operands[1].reg << 12;
7910 inst.instruction |= inst.operands[2].reg << 16;
7911 inst.instruction |= inst.operands[3].reg;
7912 }
7913
7914 /* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
7915 static void
7916 do_mav_dspsc (void)
7917 {
7918 inst.instruction |= inst.operands[1].reg << 12;
7919 }
7920
7921 /* Maverick shift immediate instructions.
7922 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
7923 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
7924
7925 static void
7926 do_mav_shift (void)
7927 {
7928 int imm = inst.operands[2].imm;
7929
7930 inst.instruction |= inst.operands[0].reg << 12;
7931 inst.instruction |= inst.operands[1].reg << 16;
7932
7933 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
7934 Bits 5-7 of the insn should have bits 4-6 of the immediate.
7935 Bit 4 should be 0. */
7936 imm = (imm & 0xf) | ((imm & 0x70) << 1);
7937
7938 inst.instruction |= imm;
7939 }
7940 \f
7941 /* XScale instructions. Also sorted arithmetic before move. */
7942
7943 /* Xscale multiply-accumulate (argument parse)
7944 MIAcc acc0,Rm,Rs
7945 MIAPHcc acc0,Rm,Rs
7946 MIAxycc acc0,Rm,Rs. */
7947
7948 static void
7949 do_xsc_mia (void)
7950 {
7951 inst.instruction |= inst.operands[1].reg;
7952 inst.instruction |= inst.operands[2].reg << 12;
7953 }
7954
7955 /* Xscale move-accumulator-register (argument parse)
7956
7957 MARcc acc0,RdLo,RdHi. */
7958
7959 static void
7960 do_xsc_mar (void)
7961 {
7962 inst.instruction |= inst.operands[1].reg << 12;
7963 inst.instruction |= inst.operands[2].reg << 16;
7964 }
7965
7966 /* Xscale move-register-accumulator (argument parse)
7967
7968 MRAcc RdLo,RdHi,acc0. */
7969
7970 static void
7971 do_xsc_mra (void)
7972 {
7973 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
7974 inst.instruction |= inst.operands[0].reg << 12;
7975 inst.instruction |= inst.operands[1].reg << 16;
7976 }
7977 \f
7978 /* Encoding functions relevant only to Thumb. */
7979
7980 /* inst.operands[i] is a shifted-register operand; encode
7981 it into inst.instruction in the format used by Thumb32. */
7982
7983 static void
7984 encode_thumb32_shifted_operand (int i)
7985 {
7986 unsigned int value = inst.reloc.exp.X_add_number;
7987 unsigned int shift = inst.operands[i].shift_kind;
7988
7989 constraint (inst.operands[i].immisreg,
7990 _("shift by register not allowed in thumb mode"));
7991 inst.instruction |= inst.operands[i].reg;
7992 if (shift == SHIFT_RRX)
7993 inst.instruction |= SHIFT_ROR << 4;
7994 else
7995 {
7996 constraint (inst.reloc.exp.X_op != O_constant,
7997 _("expression too complex"));
7998
7999 constraint (value > 32
8000 || (value == 32 && (shift == SHIFT_LSL
8001 || shift == SHIFT_ROR)),
8002 _("shift expression is too large"));
8003
8004 if (value == 0)
8005 shift = SHIFT_LSL;
8006 else if (value == 32)
8007 value = 0;
8008
8009 inst.instruction |= shift << 4;
8010 inst.instruction |= (value & 0x1c) << 10;
8011 inst.instruction |= (value & 0x03) << 6;
8012 }
8013 }
8014
8015
8016 /* inst.operands[i] was set up by parse_address. Encode it into a
8017 Thumb32 format load or store instruction. Reject forms that cannot
8018 be used with such instructions. If is_t is true, reject forms that
8019 cannot be used with a T instruction; if is_d is true, reject forms
8020 that cannot be used with a D instruction. */
8021
8022 static void
8023 encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
8024 {
8025 bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
8026
8027 constraint (!inst.operands[i].isreg,
8028 _("Instruction does not support =N addresses"));
8029
8030 inst.instruction |= inst.operands[i].reg << 16;
8031 if (inst.operands[i].immisreg)
8032 {
8033 constraint (is_pc, _("cannot use register index with PC-relative addressing"));
8034 constraint (is_t || is_d, _("cannot use register index with this instruction"));
8035 constraint (inst.operands[i].negative,
8036 _("Thumb does not support negative register indexing"));
8037 constraint (inst.operands[i].postind,
8038 _("Thumb does not support register post-indexing"));
8039 constraint (inst.operands[i].writeback,
8040 _("Thumb does not support register indexing with writeback"));
8041 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
8042 _("Thumb supports only LSL in shifted register indexing"));
8043
8044 inst.instruction |= inst.operands[i].imm;
8045 if (inst.operands[i].shifted)
8046 {
8047 constraint (inst.reloc.exp.X_op != O_constant,
8048 _("expression too complex"));
8049 constraint (inst.reloc.exp.X_add_number < 0
8050 || inst.reloc.exp.X_add_number > 3,
8051 _("shift out of range"));
8052 inst.instruction |= inst.reloc.exp.X_add_number << 4;
8053 }
8054 inst.reloc.type = BFD_RELOC_UNUSED;
8055 }
8056 else if (inst.operands[i].preind)
8057 {
8058 constraint (is_pc && inst.operands[i].writeback,
8059 _("cannot use writeback with PC-relative addressing"));
8060 constraint (is_t && inst.operands[i].writeback,
8061 _("cannot use writeback with this instruction"));
8062
8063 if (is_d)
8064 {
8065 inst.instruction |= 0x01000000;
8066 if (inst.operands[i].writeback)
8067 inst.instruction |= 0x00200000;
8068 }
8069 else
8070 {
8071 inst.instruction |= 0x00000c00;
8072 if (inst.operands[i].writeback)
8073 inst.instruction |= 0x00000100;
8074 }
8075 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
8076 }
8077 else if (inst.operands[i].postind)
8078 {
8079 assert (inst.operands[i].writeback);
8080 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
8081 constraint (is_t, _("cannot use post-indexing with this instruction"));
8082
8083 if (is_d)
8084 inst.instruction |= 0x00200000;
8085 else
8086 inst.instruction |= 0x00000900;
8087 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
8088 }
8089 else /* unindexed - only for coprocessor */
8090 inst.error = _("instruction does not accept unindexed addressing");
8091 }
8092
8093 /* Table of Thumb instructions which exist in both 16- and 32-bit
8094 encodings (the latter only in post-V6T2 cores). The index is the
8095 value used in the insns table below. When there is more than one
8096 possible 16-bit encoding for the instruction, this table always
8097 holds variant (1).
8098 Also contains several pseudo-instructions used during relaxation. */
8099 #define T16_32_TAB \
8100 X(adc, 4140, eb400000), \
8101 X(adcs, 4140, eb500000), \
8102 X(add, 1c00, eb000000), \
8103 X(adds, 1c00, eb100000), \
8104 X(addi, 0000, f1000000), \
8105 X(addis, 0000, f1100000), \
8106 X(add_pc,000f, f20f0000), \
8107 X(add_sp,000d, f10d0000), \
8108 X(adr, 000f, f20f0000), \
8109 X(and, 4000, ea000000), \
8110 X(ands, 4000, ea100000), \
8111 X(asr, 1000, fa40f000), \
8112 X(asrs, 1000, fa50f000), \
8113 X(b, e000, f000b000), \
8114 X(bcond, d000, f0008000), \
8115 X(bic, 4380, ea200000), \
8116 X(bics, 4380, ea300000), \
8117 X(cmn, 42c0, eb100f00), \
8118 X(cmp, 2800, ebb00f00), \
8119 X(cpsie, b660, f3af8400), \
8120 X(cpsid, b670, f3af8600), \
8121 X(cpy, 4600, ea4f0000), \
8122 X(dec_sp,80dd, f1bd0d00), \
8123 X(eor, 4040, ea800000), \
8124 X(eors, 4040, ea900000), \
8125 X(inc_sp,00dd, f10d0d00), \
8126 X(ldmia, c800, e8900000), \
8127 X(ldr, 6800, f8500000), \
8128 X(ldrb, 7800, f8100000), \
8129 X(ldrh, 8800, f8300000), \
8130 X(ldrsb, 5600, f9100000), \
8131 X(ldrsh, 5e00, f9300000), \
8132 X(ldr_pc,4800, f85f0000), \
8133 X(ldr_pc2,4800, f85f0000), \
8134 X(ldr_sp,9800, f85d0000), \
8135 X(lsl, 0000, fa00f000), \
8136 X(lsls, 0000, fa10f000), \
8137 X(lsr, 0800, fa20f000), \
8138 X(lsrs, 0800, fa30f000), \
8139 X(mov, 2000, ea4f0000), \
8140 X(movs, 2000, ea5f0000), \
8141 X(mul, 4340, fb00f000), \
8142 X(muls, 4340, ffffffff), /* no 32b muls */ \
8143 X(mvn, 43c0, ea6f0000), \
8144 X(mvns, 43c0, ea7f0000), \
8145 X(neg, 4240, f1c00000), /* rsb #0 */ \
8146 X(negs, 4240, f1d00000), /* rsbs #0 */ \
8147 X(orr, 4300, ea400000), \
8148 X(orrs, 4300, ea500000), \
8149 X(pop, bc00, e8bd0000), /* ldmia sp!,... */ \
8150 X(push, b400, e92d0000), /* stmdb sp!,... */ \
8151 X(rev, ba00, fa90f080), \
8152 X(rev16, ba40, fa90f090), \
8153 X(revsh, bac0, fa90f0b0), \
8154 X(ror, 41c0, fa60f000), \
8155 X(rors, 41c0, fa70f000), \
8156 X(sbc, 4180, eb600000), \
8157 X(sbcs, 4180, eb700000), \
8158 X(stmia, c000, e8800000), \
8159 X(str, 6000, f8400000), \
8160 X(strb, 7000, f8000000), \
8161 X(strh, 8000, f8200000), \
8162 X(str_sp,9000, f84d0000), \
8163 X(sub, 1e00, eba00000), \
8164 X(subs, 1e00, ebb00000), \
8165 X(subi, 8000, f1a00000), \
8166 X(subis, 8000, f1b00000), \
8167 X(sxtb, b240, fa4ff080), \
8168 X(sxth, b200, fa0ff080), \
8169 X(tst, 4200, ea100f00), \
8170 X(uxtb, b2c0, fa5ff080), \
8171 X(uxth, b280, fa1ff080), \
8172 X(nop, bf00, f3af8000), \
8173 X(yield, bf10, f3af8001), \
8174 X(wfe, bf20, f3af8002), \
8175 X(wfi, bf30, f3af8003), \
8176 X(sev, bf40, f3af9004), /* typo, 8004? */
8177
8178 /* To catch errors in encoding functions, the codes are all offset by
8179 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
8180 as 16-bit instructions. */
8181 #define X(a,b,c) T_MNEM_##a
8182 enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
8183 #undef X
8184
8185 #define X(a,b,c) 0x##b
8186 static const unsigned short thumb_op16[] = { T16_32_TAB };
8187 #define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
8188 #undef X
8189
8190 #define X(a,b,c) 0x##c
8191 static const unsigned int thumb_op32[] = { T16_32_TAB };
8192 #define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
8193 #define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
8194 #undef X
8195 #undef T16_32_TAB
8196
8197 /* Thumb instruction encoders, in alphabetical order. */
8198
8199 /* ADDW or SUBW. */
8200 static void
8201 do_t_add_sub_w (void)
8202 {
8203 int Rd, Rn;
8204
8205 Rd = inst.operands[0].reg;
8206 Rn = inst.operands[1].reg;
8207
8208 constraint (Rd == 15, _("PC not allowed as destination"));
8209 inst.instruction |= (Rn << 16) | (Rd << 8);
8210 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
8211 }
8212
8213 /* Parse an add or subtract instruction. We get here with inst.instruction
8214 equalling any of THUMB_OPCODE_add, adds, sub, or subs. */
8215
8216 static void
8217 do_t_add_sub (void)
8218 {
8219 int Rd, Rs, Rn;
8220
8221 Rd = inst.operands[0].reg;
8222 Rs = (inst.operands[1].present
8223 ? inst.operands[1].reg /* Rd, Rs, foo */
8224 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
8225
8226 if (unified_syntax)
8227 {
8228 bfd_boolean flags;
8229 bfd_boolean narrow;
8230 int opcode;
8231
8232 flags = (inst.instruction == T_MNEM_adds
8233 || inst.instruction == T_MNEM_subs);
8234 if (flags)
8235 narrow = (current_it_mask == 0);
8236 else
8237 narrow = (current_it_mask != 0);
8238 if (!inst.operands[2].isreg)
8239 {
8240 int add;
8241
8242 add = (inst.instruction == T_MNEM_add
8243 || inst.instruction == T_MNEM_adds);
8244 opcode = 0;
8245 if (inst.size_req != 4)
8246 {
8247 /* Attempt to use a narrow opcode, with relaxation if
8248 appropriate. */
8249 if (Rd == REG_SP && Rs == REG_SP && !flags)
8250 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
8251 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
8252 opcode = T_MNEM_add_sp;
8253 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
8254 opcode = T_MNEM_add_pc;
8255 else if (Rd <= 7 && Rs <= 7 && narrow)
8256 {
8257 if (flags)
8258 opcode = add ? T_MNEM_addis : T_MNEM_subis;
8259 else
8260 opcode = add ? T_MNEM_addi : T_MNEM_subi;
8261 }
8262 if (opcode)
8263 {
8264 inst.instruction = THUMB_OP16(opcode);
8265 inst.instruction |= (Rd << 4) | Rs;
8266 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
8267 if (inst.size_req != 2)
8268 inst.relax = opcode;
8269 }
8270 else
8271 constraint (inst.size_req == 2, BAD_HIREG);
8272 }
8273 if (inst.size_req == 4
8274 || (inst.size_req != 2 && !opcode))
8275 {
8276 if (Rs == REG_PC)
8277 {
8278 /* Always use addw/subw. */
8279 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
8280 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
8281 }
8282 else
8283 {
8284 inst.instruction = THUMB_OP32 (inst.instruction);
8285 inst.instruction = (inst.instruction & 0xe1ffffff)
8286 | 0x10000000;
8287 if (flags)
8288 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
8289 else
8290 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
8291 }
8292 inst.instruction |= inst.operands[0].reg << 8;
8293 inst.instruction |= inst.operands[1].reg << 16;
8294 }
8295 }
8296 else
8297 {
8298 Rn = inst.operands[2].reg;
8299 /* See if we can do this with a 16-bit instruction. */
8300 if (!inst.operands[2].shifted && inst.size_req != 4)
8301 {
8302 if (Rd > 7 || Rs > 7 || Rn > 7)
8303 narrow = FALSE;
8304
8305 if (narrow)
8306 {
8307 inst.instruction = ((inst.instruction == T_MNEM_adds
8308 || inst.instruction == T_MNEM_add)
8309 ? T_OPCODE_ADD_R3
8310 : T_OPCODE_SUB_R3);
8311 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
8312 return;
8313 }
8314
8315 if (inst.instruction == T_MNEM_add)
8316 {
8317 if (Rd == Rs)
8318 {
8319 inst.instruction = T_OPCODE_ADD_HI;
8320 inst.instruction |= (Rd & 8) << 4;
8321 inst.instruction |= (Rd & 7);
8322 inst.instruction |= Rn << 3;
8323 return;
8324 }
8325 /* ... because addition is commutative! */
8326 else if (Rd == Rn)
8327 {
8328 inst.instruction = T_OPCODE_ADD_HI;
8329 inst.instruction |= (Rd & 8) << 4;
8330 inst.instruction |= (Rd & 7);
8331 inst.instruction |= Rs << 3;
8332 return;
8333 }
8334 }
8335 }
8336 /* If we get here, it can't be done in 16 bits. */
8337 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
8338 _("shift must be constant"));
8339 inst.instruction = THUMB_OP32 (inst.instruction);
8340 inst.instruction |= Rd << 8;
8341 inst.instruction |= Rs << 16;
8342 encode_thumb32_shifted_operand (2);
8343 }
8344 }
8345 else
8346 {
8347 constraint (inst.instruction == T_MNEM_adds
8348 || inst.instruction == T_MNEM_subs,
8349 BAD_THUMB32);
8350
8351 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
8352 {
8353 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
8354 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
8355 BAD_HIREG);
8356
8357 inst.instruction = (inst.instruction == T_MNEM_add
8358 ? 0x0000 : 0x8000);
8359 inst.instruction |= (Rd << 4) | Rs;
8360 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
8361 return;
8362 }
8363
8364 Rn = inst.operands[2].reg;
8365 constraint (inst.operands[2].shifted, _("unshifted register required"));
8366
8367 /* We now have Rd, Rs, and Rn set to registers. */
8368 if (Rd > 7 || Rs > 7 || Rn > 7)
8369 {
8370 /* Can't do this for SUB. */
8371 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
8372 inst.instruction = T_OPCODE_ADD_HI;
8373 inst.instruction |= (Rd & 8) << 4;
8374 inst.instruction |= (Rd & 7);
8375 if (Rs == Rd)
8376 inst.instruction |= Rn << 3;
8377 else if (Rn == Rd)
8378 inst.instruction |= Rs << 3;
8379 else
8380 constraint (1, _("dest must overlap one source register"));
8381 }
8382 else
8383 {
8384 inst.instruction = (inst.instruction == T_MNEM_add
8385 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
8386 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
8387 }
8388 }
8389 }
8390
8391 static void
8392 do_t_adr (void)
8393 {
8394 if (unified_syntax && inst.size_req == 0 && inst.operands[0].reg <= 7)
8395 {
8396 /* Defer to section relaxation. */
8397 inst.relax = inst.instruction;
8398 inst.instruction = THUMB_OP16 (inst.instruction);
8399 inst.instruction |= inst.operands[0].reg << 4;
8400 }
8401 else if (unified_syntax && inst.size_req != 2)
8402 {
8403 /* Generate a 32-bit opcode. */
8404 inst.instruction = THUMB_OP32 (inst.instruction);
8405 inst.instruction |= inst.operands[0].reg << 8;
8406 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
8407 inst.reloc.pc_rel = 1;
8408 }
8409 else
8410 {
8411 /* Generate a 16-bit opcode. */
8412 inst.instruction = THUMB_OP16 (inst.instruction);
8413 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
8414 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
8415 inst.reloc.pc_rel = 1;
8416
8417 inst.instruction |= inst.operands[0].reg << 4;
8418 }
8419 }
8420
8421 /* Arithmetic instructions for which there is just one 16-bit
8422 instruction encoding, and it allows only two low registers.
8423 For maximal compatibility with ARM syntax, we allow three register
8424 operands even when Thumb-32 instructions are not available, as long
8425 as the first two are identical. For instance, both "sbc r0,r1" and
8426 "sbc r0,r0,r1" are allowed. */
8427 static void
8428 do_t_arit3 (void)
8429 {
8430 int Rd, Rs, Rn;
8431
8432 Rd = inst.operands[0].reg;
8433 Rs = (inst.operands[1].present
8434 ? inst.operands[1].reg /* Rd, Rs, foo */
8435 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
8436 Rn = inst.operands[2].reg;
8437
8438 if (unified_syntax)
8439 {
8440 if (!inst.operands[2].isreg)
8441 {
8442 /* For an immediate, we always generate a 32-bit opcode;
8443 section relaxation will shrink it later if possible. */
8444 inst.instruction = THUMB_OP32 (inst.instruction);
8445 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
8446 inst.instruction |= Rd << 8;
8447 inst.instruction |= Rs << 16;
8448 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
8449 }
8450 else
8451 {
8452 bfd_boolean narrow;
8453
8454 /* See if we can do this with a 16-bit instruction. */
8455 if (THUMB_SETS_FLAGS (inst.instruction))
8456 narrow = current_it_mask == 0;
8457 else
8458 narrow = current_it_mask != 0;
8459
8460 if (Rd > 7 || Rn > 7 || Rs > 7)
8461 narrow = FALSE;
8462 if (inst.operands[2].shifted)
8463 narrow = FALSE;
8464 if (inst.size_req == 4)
8465 narrow = FALSE;
8466
8467 if (narrow
8468 && Rd == Rs)
8469 {
8470 inst.instruction = THUMB_OP16 (inst.instruction);
8471 inst.instruction |= Rd;
8472 inst.instruction |= Rn << 3;
8473 return;
8474 }
8475
8476 /* If we get here, it can't be done in 16 bits. */
8477 constraint (inst.operands[2].shifted
8478 && inst.operands[2].immisreg,
8479 _("shift must be constant"));
8480 inst.instruction = THUMB_OP32 (inst.instruction);
8481 inst.instruction |= Rd << 8;
8482 inst.instruction |= Rs << 16;
8483 encode_thumb32_shifted_operand (2);
8484 }
8485 }
8486 else
8487 {
8488 /* On its face this is a lie - the instruction does set the
8489 flags. However, the only supported mnemonic in this mode
8490 says it doesn't. */
8491 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
8492
8493 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
8494 _("unshifted register required"));
8495 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
8496 constraint (Rd != Rs,
8497 _("dest and source1 must be the same register"));
8498
8499 inst.instruction = THUMB_OP16 (inst.instruction);
8500 inst.instruction |= Rd;
8501 inst.instruction |= Rn << 3;
8502 }
8503 }
8504
8505 /* Similarly, but for instructions where the arithmetic operation is
8506 commutative, so we can allow either of them to be different from
8507 the destination operand in a 16-bit instruction. For instance, all
8508 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
8509 accepted. */
8510 static void
8511 do_t_arit3c (void)
8512 {
8513 int Rd, Rs, Rn;
8514
8515 Rd = inst.operands[0].reg;
8516 Rs = (inst.operands[1].present
8517 ? inst.operands[1].reg /* Rd, Rs, foo */
8518 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
8519 Rn = inst.operands[2].reg;
8520
8521 if (unified_syntax)
8522 {
8523 if (!inst.operands[2].isreg)
8524 {
8525 /* For an immediate, we always generate a 32-bit opcode;
8526 section relaxation will shrink it later if possible. */
8527 inst.instruction = THUMB_OP32 (inst.instruction);
8528 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
8529 inst.instruction |= Rd << 8;
8530 inst.instruction |= Rs << 16;
8531 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
8532 }
8533 else
8534 {
8535 bfd_boolean narrow;
8536
8537 /* See if we can do this with a 16-bit instruction. */
8538 if (THUMB_SETS_FLAGS (inst.instruction))
8539 narrow = current_it_mask == 0;
8540 else
8541 narrow = current_it_mask != 0;
8542
8543 if (Rd > 7 || Rn > 7 || Rs > 7)
8544 narrow = FALSE;
8545 if (inst.operands[2].shifted)
8546 narrow = FALSE;
8547 if (inst.size_req == 4)
8548 narrow = FALSE;
8549
8550 if (narrow)
8551 {
8552 if (Rd == Rs)
8553 {
8554 inst.instruction = THUMB_OP16 (inst.instruction);
8555 inst.instruction |= Rd;
8556 inst.instruction |= Rn << 3;
8557 return;
8558 }
8559 if (Rd == Rn)
8560 {
8561 inst.instruction = THUMB_OP16 (inst.instruction);
8562 inst.instruction |= Rd;
8563 inst.instruction |= Rs << 3;
8564 return;
8565 }
8566 }
8567
8568 /* If we get here, it can't be done in 16 bits. */
8569 constraint (inst.operands[2].shifted
8570 && inst.operands[2].immisreg,
8571 _("shift must be constant"));
8572 inst.instruction = THUMB_OP32 (inst.instruction);
8573 inst.instruction |= Rd << 8;
8574 inst.instruction |= Rs << 16;
8575 encode_thumb32_shifted_operand (2);
8576 }
8577 }
8578 else
8579 {
8580 /* On its face this is a lie - the instruction does set the
8581 flags. However, the only supported mnemonic in this mode
8582 says it doesn't. */
8583 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
8584
8585 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
8586 _("unshifted register required"));
8587 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
8588
8589 inst.instruction = THUMB_OP16 (inst.instruction);
8590 inst.instruction |= Rd;
8591
8592 if (Rd == Rs)
8593 inst.instruction |= Rn << 3;
8594 else if (Rd == Rn)
8595 inst.instruction |= Rs << 3;
8596 else
8597 constraint (1, _("dest must overlap one source register"));
8598 }
8599 }
8600
8601 static void
8602 do_t_barrier (void)
8603 {
8604 if (inst.operands[0].present)
8605 {
8606 constraint ((inst.instruction & 0xf0) != 0x40
8607 && inst.operands[0].imm != 0xf,
8608 "bad barrier type");
8609 inst.instruction |= inst.operands[0].imm;
8610 }
8611 else
8612 inst.instruction |= 0xf;
8613 }
8614
8615 static void
8616 do_t_bfc (void)
8617 {
8618 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
8619 constraint (msb > 32, _("bit-field extends past end of register"));
8620 /* The instruction encoding stores the LSB and MSB,
8621 not the LSB and width. */
8622 inst.instruction |= inst.operands[0].reg << 8;
8623 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
8624 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
8625 inst.instruction |= msb - 1;
8626 }
8627
8628 static void
8629 do_t_bfi (void)
8630 {
8631 unsigned int msb;
8632
8633 /* #0 in second position is alternative syntax for bfc, which is
8634 the same instruction but with REG_PC in the Rm field. */
8635 if (!inst.operands[1].isreg)
8636 inst.operands[1].reg = REG_PC;
8637
8638 msb = inst.operands[2].imm + inst.operands[3].imm;
8639 constraint (msb > 32, _("bit-field extends past end of register"));
8640 /* The instruction encoding stores the LSB and MSB,
8641 not the LSB and width. */
8642 inst.instruction |= inst.operands[0].reg << 8;
8643 inst.instruction |= inst.operands[1].reg << 16;
8644 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
8645 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
8646 inst.instruction |= msb - 1;
8647 }
8648
8649 static void
8650 do_t_bfx (void)
8651 {
8652 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
8653 _("bit-field extends past end of register"));
8654 inst.instruction |= inst.operands[0].reg << 8;
8655 inst.instruction |= inst.operands[1].reg << 16;
8656 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
8657 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
8658 inst.instruction |= inst.operands[3].imm - 1;
8659 }
8660
8661 /* ARM V5 Thumb BLX (argument parse)
8662 BLX <target_addr> which is BLX(1)
8663 BLX <Rm> which is BLX(2)
8664 Unfortunately, there are two different opcodes for this mnemonic.
8665 So, the insns[].value is not used, and the code here zaps values
8666 into inst.instruction.
8667
8668 ??? How to take advantage of the additional two bits of displacement
8669 available in Thumb32 mode? Need new relocation? */
8670
8671 static void
8672 do_t_blx (void)
8673 {
8674 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
8675 if (inst.operands[0].isreg)
8676 /* We have a register, so this is BLX(2). */
8677 inst.instruction |= inst.operands[0].reg << 3;
8678 else
8679 {
8680 /* No register. This must be BLX(1). */
8681 inst.instruction = 0xf000e800;
8682 #ifdef OBJ_ELF
8683 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
8684 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
8685 else
8686 #endif
8687 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BLX;
8688 inst.reloc.pc_rel = 1;
8689 }
8690 }
8691
8692 static void
8693 do_t_branch (void)
8694 {
8695 int opcode;
8696 int cond;
8697
8698 if (current_it_mask)
8699 {
8700 /* Conditional branches inside IT blocks are encoded as unconditional
8701 branches. */
8702 cond = COND_ALWAYS;
8703 /* A branch must be the last instruction in an IT block. */
8704 constraint (current_it_mask != 0x10, BAD_BRANCH);
8705 }
8706 else
8707 cond = inst.cond;
8708
8709 if (cond != COND_ALWAYS)
8710 opcode = T_MNEM_bcond;
8711 else
8712 opcode = inst.instruction;
8713
8714 if (unified_syntax && inst.size_req == 4)
8715 {
8716 inst.instruction = THUMB_OP32(opcode);
8717 if (cond == COND_ALWAYS)
8718 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH25;
8719 else
8720 {
8721 assert (cond != 0xF);
8722 inst.instruction |= cond << 22;
8723 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH20;
8724 }
8725 }
8726 else
8727 {
8728 inst.instruction = THUMB_OP16(opcode);
8729 if (cond == COND_ALWAYS)
8730 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH12;
8731 else
8732 {
8733 inst.instruction |= cond << 8;
8734 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH9;
8735 }
8736 /* Allow section relaxation. */
8737 if (unified_syntax && inst.size_req != 2)
8738 inst.relax = opcode;
8739 }
8740
8741 inst.reloc.pc_rel = 1;
8742 }
8743
8744 static void
8745 do_t_bkpt (void)
8746 {
8747 constraint (inst.cond != COND_ALWAYS,
8748 _("instruction is always unconditional"));
8749 if (inst.operands[0].present)
8750 {
8751 constraint (inst.operands[0].imm > 255,
8752 _("immediate value out of range"));
8753 inst.instruction |= inst.operands[0].imm;
8754 }
8755 }
8756
8757 static void
8758 do_t_branch23 (void)
8759 {
8760 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
8761 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
8762 inst.reloc.pc_rel = 1;
8763
8764 /* If the destination of the branch is a defined symbol which does not have
8765 the THUMB_FUNC attribute, then we must be calling a function which has
8766 the (interfacearm) attribute. We look for the Thumb entry point to that
8767 function and change the branch to refer to that function instead. */
8768 if ( inst.reloc.exp.X_op == O_symbol
8769 && inst.reloc.exp.X_add_symbol != NULL
8770 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
8771 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
8772 inst.reloc.exp.X_add_symbol =
8773 find_real_start (inst.reloc.exp.X_add_symbol);
8774 }
8775
8776 static void
8777 do_t_bx (void)
8778 {
8779 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
8780 inst.instruction |= inst.operands[0].reg << 3;
8781 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
8782 should cause the alignment to be checked once it is known. This is
8783 because BX PC only works if the instruction is word aligned. */
8784 }
8785
8786 static void
8787 do_t_bxj (void)
8788 {
8789 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
8790 if (inst.operands[0].reg == REG_PC)
8791 as_tsktsk (_("use of r15 in bxj is not really useful"));
8792
8793 inst.instruction |= inst.operands[0].reg << 16;
8794 }
8795
8796 static void
8797 do_t_clz (void)
8798 {
8799 inst.instruction |= inst.operands[0].reg << 8;
8800 inst.instruction |= inst.operands[1].reg << 16;
8801 inst.instruction |= inst.operands[1].reg;
8802 }
8803
8804 static void
8805 do_t_cps (void)
8806 {
8807 constraint (current_it_mask, BAD_NOT_IT);
8808 inst.instruction |= inst.operands[0].imm;
8809 }
8810
8811 static void
8812 do_t_cpsi (void)
8813 {
8814 constraint (current_it_mask, BAD_NOT_IT);
8815 if (unified_syntax
8816 && (inst.operands[1].present || inst.size_req == 4)
8817 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
8818 {
8819 unsigned int imod = (inst.instruction & 0x0030) >> 4;
8820 inst.instruction = 0xf3af8000;
8821 inst.instruction |= imod << 9;
8822 inst.instruction |= inst.operands[0].imm << 5;
8823 if (inst.operands[1].present)
8824 inst.instruction |= 0x100 | inst.operands[1].imm;
8825 }
8826 else
8827 {
8828 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
8829 && (inst.operands[0].imm & 4),
8830 _("selected processor does not support 'A' form "
8831 "of this instruction"));
8832 constraint (inst.operands[1].present || inst.size_req == 4,
8833 _("Thumb does not support the 2-argument "
8834 "form of this instruction"));
8835 inst.instruction |= inst.operands[0].imm;
8836 }
8837 }
8838
8839 /* THUMB CPY instruction (argument parse). */
8840
8841 static void
8842 do_t_cpy (void)
8843 {
8844 if (inst.size_req == 4)
8845 {
8846 inst.instruction = THUMB_OP32 (T_MNEM_mov);
8847 inst.instruction |= inst.operands[0].reg << 8;
8848 inst.instruction |= inst.operands[1].reg;
8849 }
8850 else
8851 {
8852 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
8853 inst.instruction |= (inst.operands[0].reg & 0x7);
8854 inst.instruction |= inst.operands[1].reg << 3;
8855 }
8856 }
8857
8858 static void
8859 do_t_czb (void)
8860 {
8861 constraint (current_it_mask, BAD_NOT_IT);
8862 constraint (inst.operands[0].reg > 7, BAD_HIREG);
8863 inst.instruction |= inst.operands[0].reg;
8864 inst.reloc.pc_rel = 1;
8865 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
8866 }
8867
8868 static void
8869 do_t_dbg (void)
8870 {
8871 inst.instruction |= inst.operands[0].imm;
8872 }
8873
8874 static void
8875 do_t_div (void)
8876 {
8877 if (!inst.operands[1].present)
8878 inst.operands[1].reg = inst.operands[0].reg;
8879 inst.instruction |= inst.operands[0].reg << 8;
8880 inst.instruction |= inst.operands[1].reg << 16;
8881 inst.instruction |= inst.operands[2].reg;
8882 }
8883
8884 static void
8885 do_t_hint (void)
8886 {
8887 if (unified_syntax && inst.size_req == 4)
8888 inst.instruction = THUMB_OP32 (inst.instruction);
8889 else
8890 inst.instruction = THUMB_OP16 (inst.instruction);
8891 }
8892
8893 static void
8894 do_t_it (void)
8895 {
8896 unsigned int cond = inst.operands[0].imm;
8897
8898 constraint (current_it_mask, BAD_NOT_IT);
8899 current_it_mask = (inst.instruction & 0xf) | 0x10;
8900 current_cc = cond;
8901
8902 /* If the condition is a negative condition, invert the mask. */
8903 if ((cond & 0x1) == 0x0)
8904 {
8905 unsigned int mask = inst.instruction & 0x000f;
8906
8907 if ((mask & 0x7) == 0)
8908 /* no conversion needed */;
8909 else if ((mask & 0x3) == 0)
8910 mask ^= 0x8;
8911 else if ((mask & 0x1) == 0)
8912 mask ^= 0xC;
8913 else
8914 mask ^= 0xE;
8915
8916 inst.instruction &= 0xfff0;
8917 inst.instruction |= mask;
8918 }
8919
8920 inst.instruction |= cond << 4;
8921 }
8922
8923 static void
8924 do_t_ldmstm (void)
8925 {
8926 /* This really doesn't seem worth it. */
8927 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
8928 _("expression too complex"));
8929 constraint (inst.operands[1].writeback,
8930 _("Thumb load/store multiple does not support {reglist}^"));
8931
8932 if (unified_syntax)
8933 {
8934 /* See if we can use a 16-bit instruction. */
8935 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
8936 && inst.size_req != 4
8937 && inst.operands[0].reg <= 7
8938 && !(inst.operands[1].imm & ~0xff)
8939 && (inst.instruction == T_MNEM_stmia
8940 ? inst.operands[0].writeback
8941 : (inst.operands[0].writeback
8942 == !(inst.operands[1].imm & (1 << inst.operands[0].reg)))))
8943 {
8944 if (inst.instruction == T_MNEM_stmia
8945 && (inst.operands[1].imm & (1 << inst.operands[0].reg))
8946 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
8947 as_warn (_("value stored for r%d is UNPREDICTABLE"),
8948 inst.operands[0].reg);
8949
8950 inst.instruction = THUMB_OP16 (inst.instruction);
8951 inst.instruction |= inst.operands[0].reg << 8;
8952 inst.instruction |= inst.operands[1].imm;
8953 }
8954 else
8955 {
8956 if (inst.operands[1].imm & (1 << 13))
8957 as_warn (_("SP should not be in register list"));
8958 if (inst.instruction == T_MNEM_stmia)
8959 {
8960 if (inst.operands[1].imm & (1 << 15))
8961 as_warn (_("PC should not be in register list"));
8962 if (inst.operands[1].imm & (1 << inst.operands[0].reg))
8963 as_warn (_("value stored for r%d is UNPREDICTABLE"),
8964 inst.operands[0].reg);
8965 }
8966 else
8967 {
8968 if (inst.operands[1].imm & (1 << 14)
8969 && inst.operands[1].imm & (1 << 15))
8970 as_warn (_("LR and PC should not both be in register list"));
8971 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
8972 && inst.operands[0].writeback)
8973 as_warn (_("base register should not be in register list "
8974 "when written back"));
8975 }
8976 if (inst.instruction < 0xffff)
8977 inst.instruction = THUMB_OP32 (inst.instruction);
8978 inst.instruction |= inst.operands[0].reg << 16;
8979 inst.instruction |= inst.operands[1].imm;
8980 if (inst.operands[0].writeback)
8981 inst.instruction |= WRITE_BACK;
8982 }
8983 }
8984 else
8985 {
8986 constraint (inst.operands[0].reg > 7
8987 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
8988 if (inst.instruction == T_MNEM_stmia)
8989 {
8990 if (!inst.operands[0].writeback)
8991 as_warn (_("this instruction will write back the base register"));
8992 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
8993 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
8994 as_warn (_("value stored for r%d is UNPREDICTABLE"),
8995 inst.operands[0].reg);
8996 }
8997 else
8998 {
8999 if (!inst.operands[0].writeback
9000 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
9001 as_warn (_("this instruction will write back the base register"));
9002 else if (inst.operands[0].writeback
9003 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
9004 as_warn (_("this instruction will not write back the base register"));
9005 }
9006
9007 inst.instruction = THUMB_OP16 (inst.instruction);
9008 inst.instruction |= inst.operands[0].reg << 8;
9009 inst.instruction |= inst.operands[1].imm;
9010 }
9011 }
9012
9013 static void
9014 do_t_ldrex (void)
9015 {
9016 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
9017 || inst.operands[1].postind || inst.operands[1].writeback
9018 || inst.operands[1].immisreg || inst.operands[1].shifted
9019 || inst.operands[1].negative,
9020 BAD_ADDR_MODE);
9021
9022 inst.instruction |= inst.operands[0].reg << 12;
9023 inst.instruction |= inst.operands[1].reg << 16;
9024 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
9025 }
9026
9027 static void
9028 do_t_ldrexd (void)
9029 {
9030 if (!inst.operands[1].present)
9031 {
9032 constraint (inst.operands[0].reg == REG_LR,
9033 _("r14 not allowed as first register "
9034 "when second register is omitted"));
9035 inst.operands[1].reg = inst.operands[0].reg + 1;
9036 }
9037 constraint (inst.operands[0].reg == inst.operands[1].reg,
9038 BAD_OVERLAP);
9039
9040 inst.instruction |= inst.operands[0].reg << 12;
9041 inst.instruction |= inst.operands[1].reg << 8;
9042 inst.instruction |= inst.operands[2].reg << 16;
9043 }
9044
9045 static void
9046 do_t_ldst (void)
9047 {
9048 unsigned long opcode;
9049 int Rn;
9050
9051 opcode = inst.instruction;
9052 if (unified_syntax)
9053 {
9054 if (!inst.operands[1].isreg)
9055 {
9056 if (opcode <= 0xffff)
9057 inst.instruction = THUMB_OP32 (opcode);
9058 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
9059 return;
9060 }
9061 if (inst.operands[1].isreg
9062 && !inst.operands[1].writeback
9063 && !inst.operands[1].shifted && !inst.operands[1].postind
9064 && !inst.operands[1].negative && inst.operands[0].reg <= 7
9065 && opcode <= 0xffff
9066 && inst.size_req != 4)
9067 {
9068 /* Insn may have a 16-bit form. */
9069 Rn = inst.operands[1].reg;
9070 if (inst.operands[1].immisreg)
9071 {
9072 inst.instruction = THUMB_OP16 (opcode);
9073 /* [Rn, Ri] */
9074 if (Rn <= 7 && inst.operands[1].imm <= 7)
9075 goto op16;
9076 }
9077 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
9078 && opcode != T_MNEM_ldrsb)
9079 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
9080 || (Rn == REG_SP && opcode == T_MNEM_str))
9081 {
9082 /* [Rn, #const] */
9083 if (Rn > 7)
9084 {
9085 if (Rn == REG_PC)
9086 {
9087 if (inst.reloc.pc_rel)
9088 opcode = T_MNEM_ldr_pc2;
9089 else
9090 opcode = T_MNEM_ldr_pc;
9091 }
9092 else
9093 {
9094 if (opcode == T_MNEM_ldr)
9095 opcode = T_MNEM_ldr_sp;
9096 else
9097 opcode = T_MNEM_str_sp;
9098 }
9099 inst.instruction = inst.operands[0].reg << 8;
9100 }
9101 else
9102 {
9103 inst.instruction = inst.operands[0].reg;
9104 inst.instruction |= inst.operands[1].reg << 3;
9105 }
9106 inst.instruction |= THUMB_OP16 (opcode);
9107 if (inst.size_req == 2)
9108 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
9109 else
9110 inst.relax = opcode;
9111 return;
9112 }
9113 }
9114 /* Definitely a 32-bit variant. */
9115 inst.instruction = THUMB_OP32 (opcode);
9116 inst.instruction |= inst.operands[0].reg << 12;
9117 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
9118 return;
9119 }
9120
9121 constraint (inst.operands[0].reg > 7, BAD_HIREG);
9122
9123 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
9124 {
9125 /* Only [Rn,Rm] is acceptable. */
9126 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
9127 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
9128 || inst.operands[1].postind || inst.operands[1].shifted
9129 || inst.operands[1].negative,
9130 _("Thumb does not support this addressing mode"));
9131 inst.instruction = THUMB_OP16 (inst.instruction);
9132 goto op16;
9133 }
9134
9135 inst.instruction = THUMB_OP16 (inst.instruction);
9136 if (!inst.operands[1].isreg)
9137 if (move_or_literal_pool (0, /*thumb_p=*/TRUE, /*mode_3=*/FALSE))
9138 return;
9139
9140 constraint (!inst.operands[1].preind
9141 || inst.operands[1].shifted
9142 || inst.operands[1].writeback,
9143 _("Thumb does not support this addressing mode"));
9144 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
9145 {
9146 constraint (inst.instruction & 0x0600,
9147 _("byte or halfword not valid for base register"));
9148 constraint (inst.operands[1].reg == REG_PC
9149 && !(inst.instruction & THUMB_LOAD_BIT),
9150 _("r15 based store not allowed"));
9151 constraint (inst.operands[1].immisreg,
9152 _("invalid base register for register offset"));
9153
9154 if (inst.operands[1].reg == REG_PC)
9155 inst.instruction = T_OPCODE_LDR_PC;
9156 else if (inst.instruction & THUMB_LOAD_BIT)
9157 inst.instruction = T_OPCODE_LDR_SP;
9158 else
9159 inst.instruction = T_OPCODE_STR_SP;
9160
9161 inst.instruction |= inst.operands[0].reg << 8;
9162 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
9163 return;
9164 }
9165
9166 constraint (inst.operands[1].reg > 7, BAD_HIREG);
9167 if (!inst.operands[1].immisreg)
9168 {
9169 /* Immediate offset. */
9170 inst.instruction |= inst.operands[0].reg;
9171 inst.instruction |= inst.operands[1].reg << 3;
9172 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
9173 return;
9174 }
9175
9176 /* Register offset. */
9177 constraint (inst.operands[1].imm > 7, BAD_HIREG);
9178 constraint (inst.operands[1].negative,
9179 _("Thumb does not support this addressing mode"));
9180
9181 op16:
9182 switch (inst.instruction)
9183 {
9184 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
9185 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
9186 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
9187 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
9188 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
9189 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
9190 case 0x5600 /* ldrsb */:
9191 case 0x5e00 /* ldrsh */: break;
9192 default: abort ();
9193 }
9194
9195 inst.instruction |= inst.operands[0].reg;
9196 inst.instruction |= inst.operands[1].reg << 3;
9197 inst.instruction |= inst.operands[1].imm << 6;
9198 }
9199
9200 static void
9201 do_t_ldstd (void)
9202 {
9203 if (!inst.operands[1].present)
9204 {
9205 inst.operands[1].reg = inst.operands[0].reg + 1;
9206 constraint (inst.operands[0].reg == REG_LR,
9207 _("r14 not allowed here"));
9208 }
9209 inst.instruction |= inst.operands[0].reg << 12;
9210 inst.instruction |= inst.operands[1].reg << 8;
9211 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
9212
9213 }
9214
9215 static void
9216 do_t_ldstt (void)
9217 {
9218 inst.instruction |= inst.operands[0].reg << 12;
9219 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
9220 }
9221
9222 static void
9223 do_t_mla (void)
9224 {
9225 inst.instruction |= inst.operands[0].reg << 8;
9226 inst.instruction |= inst.operands[1].reg << 16;
9227 inst.instruction |= inst.operands[2].reg;
9228 inst.instruction |= inst.operands[3].reg << 12;
9229 }
9230
9231 static void
9232 do_t_mlal (void)
9233 {
9234 inst.instruction |= inst.operands[0].reg << 12;
9235 inst.instruction |= inst.operands[1].reg << 8;
9236 inst.instruction |= inst.operands[2].reg << 16;
9237 inst.instruction |= inst.operands[3].reg;
9238 }
9239
9240 static void
9241 do_t_mov_cmp (void)
9242 {
9243 if (unified_syntax)
9244 {
9245 int r0off = (inst.instruction == T_MNEM_mov
9246 || inst.instruction == T_MNEM_movs) ? 8 : 16;
9247 unsigned long opcode;
9248 bfd_boolean narrow;
9249 bfd_boolean low_regs;
9250
9251 low_regs = (inst.operands[0].reg <= 7 && inst.operands[1].reg <= 7);
9252 opcode = inst.instruction;
9253 if (current_it_mask)
9254 narrow = opcode != T_MNEM_movs;
9255 else
9256 narrow = opcode != T_MNEM_movs || low_regs;
9257 if (inst.size_req == 4
9258 || inst.operands[1].shifted)
9259 narrow = FALSE;
9260
9261 if (!inst.operands[1].isreg)
9262 {
9263 /* Immediate operand. */
9264 if (current_it_mask == 0 && opcode == T_MNEM_mov)
9265 narrow = 0;
9266 if (low_regs && narrow)
9267 {
9268 inst.instruction = THUMB_OP16 (opcode);
9269 inst.instruction |= inst.operands[0].reg << 8;
9270 if (inst.size_req == 2)
9271 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
9272 else
9273 inst.relax = opcode;
9274 }
9275 else
9276 {
9277 inst.instruction = THUMB_OP32 (inst.instruction);
9278 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9279 inst.instruction |= inst.operands[0].reg << r0off;
9280 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9281 }
9282 }
9283 else if (!narrow)
9284 {
9285 inst.instruction = THUMB_OP32 (inst.instruction);
9286 inst.instruction |= inst.operands[0].reg << r0off;
9287 encode_thumb32_shifted_operand (1);
9288 }
9289 else
9290 switch (inst.instruction)
9291 {
9292 case T_MNEM_mov:
9293 inst.instruction = T_OPCODE_MOV_HR;
9294 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
9295 inst.instruction |= (inst.operands[0].reg & 0x7);
9296 inst.instruction |= inst.operands[1].reg << 3;
9297 break;
9298
9299 case T_MNEM_movs:
9300 /* We know we have low registers at this point.
9301 Generate ADD Rd, Rs, #0. */
9302 inst.instruction = T_OPCODE_ADD_I3;
9303 inst.instruction |= inst.operands[0].reg;
9304 inst.instruction |= inst.operands[1].reg << 3;
9305 break;
9306
9307 case T_MNEM_cmp:
9308 if (low_regs)
9309 {
9310 inst.instruction = T_OPCODE_CMP_LR;
9311 inst.instruction |= inst.operands[0].reg;
9312 inst.instruction |= inst.operands[1].reg << 3;
9313 }
9314 else
9315 {
9316 inst.instruction = T_OPCODE_CMP_HR;
9317 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
9318 inst.instruction |= (inst.operands[0].reg & 0x7);
9319 inst.instruction |= inst.operands[1].reg << 3;
9320 }
9321 break;
9322 }
9323 return;
9324 }
9325
9326 inst.instruction = THUMB_OP16 (inst.instruction);
9327 if (inst.operands[1].isreg)
9328 {
9329 if (inst.operands[0].reg < 8 && inst.operands[1].reg < 8)
9330 {
9331 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
9332 since a MOV instruction produces unpredictable results. */
9333 if (inst.instruction == T_OPCODE_MOV_I8)
9334 inst.instruction = T_OPCODE_ADD_I3;
9335 else
9336 inst.instruction = T_OPCODE_CMP_LR;
9337
9338 inst.instruction |= inst.operands[0].reg;
9339 inst.instruction |= inst.operands[1].reg << 3;
9340 }
9341 else
9342 {
9343 if (inst.instruction == T_OPCODE_MOV_I8)
9344 inst.instruction = T_OPCODE_MOV_HR;
9345 else
9346 inst.instruction = T_OPCODE_CMP_HR;
9347 do_t_cpy ();
9348 }
9349 }
9350 else
9351 {
9352 constraint (inst.operands[0].reg > 7,
9353 _("only lo regs allowed with immediate"));
9354 inst.instruction |= inst.operands[0].reg << 8;
9355 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
9356 }
9357 }
9358
9359 static void
9360 do_t_mov16 (void)
9361 {
9362 bfd_vma imm;
9363 bfd_boolean top;
9364
9365 top = (inst.instruction & 0x00800000) != 0;
9366 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
9367 {
9368 constraint (top, _(":lower16: not allowed this instruction"));
9369 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
9370 }
9371 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
9372 {
9373 constraint (!top, _(":upper16: not allowed this instruction"));
9374 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
9375 }
9376
9377 inst.instruction |= inst.operands[0].reg << 8;
9378 if (inst.reloc.type == BFD_RELOC_UNUSED)
9379 {
9380 imm = inst.reloc.exp.X_add_number;
9381 inst.instruction |= (imm & 0xf000) << 4;
9382 inst.instruction |= (imm & 0x0800) << 15;
9383 inst.instruction |= (imm & 0x0700) << 4;
9384 inst.instruction |= (imm & 0x00ff);
9385 }
9386 }
9387
9388 static void
9389 do_t_mvn_tst (void)
9390 {
9391 if (unified_syntax)
9392 {
9393 int r0off = (inst.instruction == T_MNEM_mvn
9394 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
9395 bfd_boolean narrow;
9396
9397 if (inst.size_req == 4
9398 || inst.instruction > 0xffff
9399 || inst.operands[1].shifted
9400 || inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
9401 narrow = FALSE;
9402 else if (inst.instruction == T_MNEM_cmn)
9403 narrow = TRUE;
9404 else if (THUMB_SETS_FLAGS (inst.instruction))
9405 narrow = (current_it_mask == 0);
9406 else
9407 narrow = (current_it_mask != 0);
9408
9409 if (!inst.operands[1].isreg)
9410 {
9411 /* For an immediate, we always generate a 32-bit opcode;
9412 section relaxation will shrink it later if possible. */
9413 if (inst.instruction < 0xffff)
9414 inst.instruction = THUMB_OP32 (inst.instruction);
9415 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9416 inst.instruction |= inst.operands[0].reg << r0off;
9417 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9418 }
9419 else
9420 {
9421 /* See if we can do this with a 16-bit instruction. */
9422 if (narrow)
9423 {
9424 inst.instruction = THUMB_OP16 (inst.instruction);
9425 inst.instruction |= inst.operands[0].reg;
9426 inst.instruction |= inst.operands[1].reg << 3;
9427 }
9428 else
9429 {
9430 constraint (inst.operands[1].shifted
9431 && inst.operands[1].immisreg,
9432 _("shift must be constant"));
9433 if (inst.instruction < 0xffff)
9434 inst.instruction = THUMB_OP32 (inst.instruction);
9435 inst.instruction |= inst.operands[0].reg << r0off;
9436 encode_thumb32_shifted_operand (1);
9437 }
9438 }
9439 }
9440 else
9441 {
9442 constraint (inst.instruction > 0xffff
9443 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
9444 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
9445 _("unshifted register required"));
9446 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
9447 BAD_HIREG);
9448
9449 inst.instruction = THUMB_OP16 (inst.instruction);
9450 inst.instruction |= inst.operands[0].reg;
9451 inst.instruction |= inst.operands[1].reg << 3;
9452 }
9453 }
9454
9455 static void
9456 do_t_mrs (void)
9457 {
9458 int flags;
9459
9460 if (do_vfp_nsyn_mrs () == SUCCESS)
9461 return;
9462
9463 flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
9464 if (flags == 0)
9465 {
9466 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7m),
9467 _("selected processor does not support "
9468 "requested special purpose register"));
9469 }
9470 else
9471 {
9472 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1),
9473 _("selected processor does not support "
9474 "requested special purpose register %x"));
9475 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
9476 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
9477 _("'CPSR' or 'SPSR' expected"));
9478 }
9479
9480 inst.instruction |= inst.operands[0].reg << 8;
9481 inst.instruction |= (flags & SPSR_BIT) >> 2;
9482 inst.instruction |= inst.operands[1].imm & 0xff;
9483 }
9484
9485 static void
9486 do_t_msr (void)
9487 {
9488 int flags;
9489
9490 if (do_vfp_nsyn_msr () == SUCCESS)
9491 return;
9492
9493 constraint (!inst.operands[1].isreg,
9494 _("Thumb encoding does not support an immediate here"));
9495 flags = inst.operands[0].imm;
9496 if (flags & ~0xff)
9497 {
9498 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1),
9499 _("selected processor does not support "
9500 "requested special purpose register"));
9501 }
9502 else
9503 {
9504 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7m),
9505 _("selected processor does not support "
9506 "requested special purpose register"));
9507 flags |= PSR_f;
9508 }
9509 inst.instruction |= (flags & SPSR_BIT) >> 2;
9510 inst.instruction |= (flags & ~SPSR_BIT) >> 8;
9511 inst.instruction |= (flags & 0xff);
9512 inst.instruction |= inst.operands[1].reg << 16;
9513 }
9514
9515 static void
9516 do_t_mul (void)
9517 {
9518 if (!inst.operands[2].present)
9519 inst.operands[2].reg = inst.operands[0].reg;
9520
9521 /* There is no 32-bit MULS and no 16-bit MUL. */
9522 if (unified_syntax && inst.instruction == T_MNEM_mul)
9523 {
9524 inst.instruction = THUMB_OP32 (inst.instruction);
9525 inst.instruction |= inst.operands[0].reg << 8;
9526 inst.instruction |= inst.operands[1].reg << 16;
9527 inst.instruction |= inst.operands[2].reg << 0;
9528 }
9529 else
9530 {
9531 constraint (!unified_syntax
9532 && inst.instruction == T_MNEM_muls, BAD_THUMB32);
9533 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
9534 BAD_HIREG);
9535
9536 inst.instruction = THUMB_OP16 (inst.instruction);
9537 inst.instruction |= inst.operands[0].reg;
9538
9539 if (inst.operands[0].reg == inst.operands[1].reg)
9540 inst.instruction |= inst.operands[2].reg << 3;
9541 else if (inst.operands[0].reg == inst.operands[2].reg)
9542 inst.instruction |= inst.operands[1].reg << 3;
9543 else
9544 constraint (1, _("dest must overlap one source register"));
9545 }
9546 }
9547
9548 static void
9549 do_t_mull (void)
9550 {
9551 inst.instruction |= inst.operands[0].reg << 12;
9552 inst.instruction |= inst.operands[1].reg << 8;
9553 inst.instruction |= inst.operands[2].reg << 16;
9554 inst.instruction |= inst.operands[3].reg;
9555
9556 if (inst.operands[0].reg == inst.operands[1].reg)
9557 as_tsktsk (_("rdhi and rdlo must be different"));
9558 }
9559
9560 static void
9561 do_t_nop (void)
9562 {
9563 if (unified_syntax)
9564 {
9565 if (inst.size_req == 4 || inst.operands[0].imm > 15)
9566 {
9567 inst.instruction = THUMB_OP32 (inst.instruction);
9568 inst.instruction |= inst.operands[0].imm;
9569 }
9570 else
9571 {
9572 inst.instruction = THUMB_OP16 (inst.instruction);
9573 inst.instruction |= inst.operands[0].imm << 4;
9574 }
9575 }
9576 else
9577 {
9578 constraint (inst.operands[0].present,
9579 _("Thumb does not support NOP with hints"));
9580 inst.instruction = 0x46c0;
9581 }
9582 }
9583
9584 static void
9585 do_t_neg (void)
9586 {
9587 if (unified_syntax)
9588 {
9589 bfd_boolean narrow;
9590
9591 if (THUMB_SETS_FLAGS (inst.instruction))
9592 narrow = (current_it_mask == 0);
9593 else
9594 narrow = (current_it_mask != 0);
9595 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
9596 narrow = FALSE;
9597 if (inst.size_req == 4)
9598 narrow = FALSE;
9599
9600 if (!narrow)
9601 {
9602 inst.instruction = THUMB_OP32 (inst.instruction);
9603 inst.instruction |= inst.operands[0].reg << 8;
9604 inst.instruction |= inst.operands[1].reg << 16;
9605 }
9606 else
9607 {
9608 inst.instruction = THUMB_OP16 (inst.instruction);
9609 inst.instruction |= inst.operands[0].reg;
9610 inst.instruction |= inst.operands[1].reg << 3;
9611 }
9612 }
9613 else
9614 {
9615 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
9616 BAD_HIREG);
9617 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
9618
9619 inst.instruction = THUMB_OP16 (inst.instruction);
9620 inst.instruction |= inst.operands[0].reg;
9621 inst.instruction |= inst.operands[1].reg << 3;
9622 }
9623 }
9624
9625 static void
9626 do_t_pkhbt (void)
9627 {
9628 inst.instruction |= inst.operands[0].reg << 8;
9629 inst.instruction |= inst.operands[1].reg << 16;
9630 inst.instruction |= inst.operands[2].reg;
9631 if (inst.operands[3].present)
9632 {
9633 unsigned int val = inst.reloc.exp.X_add_number;
9634 constraint (inst.reloc.exp.X_op != O_constant,
9635 _("expression too complex"));
9636 inst.instruction |= (val & 0x1c) << 10;
9637 inst.instruction |= (val & 0x03) << 6;
9638 }
9639 }
9640
9641 static void
9642 do_t_pkhtb (void)
9643 {
9644 if (!inst.operands[3].present)
9645 inst.instruction &= ~0x00000020;
9646 do_t_pkhbt ();
9647 }
9648
9649 static void
9650 do_t_pld (void)
9651 {
9652 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
9653 }
9654
9655 static void
9656 do_t_push_pop (void)
9657 {
9658 unsigned mask;
9659
9660 constraint (inst.operands[0].writeback,
9661 _("push/pop do not support {reglist}^"));
9662 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
9663 _("expression too complex"));
9664
9665 mask = inst.operands[0].imm;
9666 if ((mask & ~0xff) == 0)
9667 inst.instruction = THUMB_OP16 (inst.instruction);
9668 else if ((inst.instruction == T_MNEM_push
9669 && (mask & ~0xff) == 1 << REG_LR)
9670 || (inst.instruction == T_MNEM_pop
9671 && (mask & ~0xff) == 1 << REG_PC))
9672 {
9673 inst.instruction = THUMB_OP16 (inst.instruction);
9674 inst.instruction |= THUMB_PP_PC_LR;
9675 mask &= 0xff;
9676 }
9677 else if (unified_syntax)
9678 {
9679 if (mask & (1 << 13))
9680 inst.error = _("SP not allowed in register list");
9681 if (inst.instruction == T_MNEM_push)
9682 {
9683 if (mask & (1 << 15))
9684 inst.error = _("PC not allowed in register list");
9685 }
9686 else
9687 {
9688 if (mask & (1 << 14)
9689 && mask & (1 << 15))
9690 inst.error = _("LR and PC should not both be in register list");
9691 }
9692 if ((mask & (mask - 1)) == 0)
9693 {
9694 /* Single register push/pop implemented as str/ldr. */
9695 if (inst.instruction == T_MNEM_push)
9696 inst.instruction = 0xf84d0d04; /* str reg, [sp, #-4]! */
9697 else
9698 inst.instruction = 0xf85d0b04; /* ldr reg, [sp], #4 */
9699 mask = ffs(mask) - 1;
9700 mask <<= 12;
9701 }
9702 else
9703 inst.instruction = THUMB_OP32 (inst.instruction);
9704 }
9705 else
9706 {
9707 inst.error = _("invalid register list to push/pop instruction");
9708 return;
9709 }
9710
9711 inst.instruction |= mask;
9712 }
9713
9714 static void
9715 do_t_rbit (void)
9716 {
9717 inst.instruction |= inst.operands[0].reg << 8;
9718 inst.instruction |= inst.operands[1].reg << 16;
9719 }
9720
9721 static void
9722 do_t_rev (void)
9723 {
9724 if (inst.operands[0].reg <= 7 && inst.operands[1].reg <= 7
9725 && inst.size_req != 4)
9726 {
9727 inst.instruction = THUMB_OP16 (inst.instruction);
9728 inst.instruction |= inst.operands[0].reg;
9729 inst.instruction |= inst.operands[1].reg << 3;
9730 }
9731 else if (unified_syntax)
9732 {
9733 inst.instruction = THUMB_OP32 (inst.instruction);
9734 inst.instruction |= inst.operands[0].reg << 8;
9735 inst.instruction |= inst.operands[1].reg << 16;
9736 inst.instruction |= inst.operands[1].reg;
9737 }
9738 else
9739 inst.error = BAD_HIREG;
9740 }
9741
9742 static void
9743 do_t_rsb (void)
9744 {
9745 int Rd, Rs;
9746
9747 Rd = inst.operands[0].reg;
9748 Rs = (inst.operands[1].present
9749 ? inst.operands[1].reg /* Rd, Rs, foo */
9750 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
9751
9752 inst.instruction |= Rd << 8;
9753 inst.instruction |= Rs << 16;
9754 if (!inst.operands[2].isreg)
9755 {
9756 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
9757 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
9758 }
9759 else
9760 encode_thumb32_shifted_operand (2);
9761 }
9762
9763 static void
9764 do_t_setend (void)
9765 {
9766 constraint (current_it_mask, BAD_NOT_IT);
9767 if (inst.operands[0].imm)
9768 inst.instruction |= 0x8;
9769 }
9770
9771 static void
9772 do_t_shift (void)
9773 {
9774 if (!inst.operands[1].present)
9775 inst.operands[1].reg = inst.operands[0].reg;
9776
9777 if (unified_syntax)
9778 {
9779 bfd_boolean narrow;
9780 int shift_kind;
9781
9782 switch (inst.instruction)
9783 {
9784 case T_MNEM_asr:
9785 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
9786 case T_MNEM_lsl:
9787 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
9788 case T_MNEM_lsr:
9789 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
9790 case T_MNEM_ror:
9791 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
9792 default: abort ();
9793 }
9794
9795 if (THUMB_SETS_FLAGS (inst.instruction))
9796 narrow = (current_it_mask == 0);
9797 else
9798 narrow = (current_it_mask != 0);
9799 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
9800 narrow = FALSE;
9801 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
9802 narrow = FALSE;
9803 if (inst.operands[2].isreg
9804 && (inst.operands[1].reg != inst.operands[0].reg
9805 || inst.operands[2].reg > 7))
9806 narrow = FALSE;
9807 if (inst.size_req == 4)
9808 narrow = FALSE;
9809
9810 if (!narrow)
9811 {
9812 if (inst.operands[2].isreg)
9813 {
9814 inst.instruction = THUMB_OP32 (inst.instruction);
9815 inst.instruction |= inst.operands[0].reg << 8;
9816 inst.instruction |= inst.operands[1].reg << 16;
9817 inst.instruction |= inst.operands[2].reg;
9818 }
9819 else
9820 {
9821 inst.operands[1].shifted = 1;
9822 inst.operands[1].shift_kind = shift_kind;
9823 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
9824 ? T_MNEM_movs : T_MNEM_mov);
9825 inst.instruction |= inst.operands[0].reg << 8;
9826 encode_thumb32_shifted_operand (1);
9827 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
9828 inst.reloc.type = BFD_RELOC_UNUSED;
9829 }
9830 }
9831 else
9832 {
9833 if (inst.operands[2].isreg)
9834 {
9835 switch (shift_kind)
9836 {
9837 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
9838 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
9839 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
9840 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
9841 default: abort ();
9842 }
9843
9844 inst.instruction |= inst.operands[0].reg;
9845 inst.instruction |= inst.operands[2].reg << 3;
9846 }
9847 else
9848 {
9849 switch (shift_kind)
9850 {
9851 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
9852 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
9853 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
9854 default: abort ();
9855 }
9856 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
9857 inst.instruction |= inst.operands[0].reg;
9858 inst.instruction |= inst.operands[1].reg << 3;
9859 }
9860 }
9861 }
9862 else
9863 {
9864 constraint (inst.operands[0].reg > 7
9865 || inst.operands[1].reg > 7, BAD_HIREG);
9866 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
9867
9868 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
9869 {
9870 constraint (inst.operands[2].reg > 7, BAD_HIREG);
9871 constraint (inst.operands[0].reg != inst.operands[1].reg,
9872 _("source1 and dest must be same register"));
9873
9874 switch (inst.instruction)
9875 {
9876 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
9877 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
9878 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
9879 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
9880 default: abort ();
9881 }
9882
9883 inst.instruction |= inst.operands[0].reg;
9884 inst.instruction |= inst.operands[2].reg << 3;
9885 }
9886 else
9887 {
9888 switch (inst.instruction)
9889 {
9890 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
9891 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
9892 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
9893 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
9894 default: abort ();
9895 }
9896 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
9897 inst.instruction |= inst.operands[0].reg;
9898 inst.instruction |= inst.operands[1].reg << 3;
9899 }
9900 }
9901 }
9902
9903 static void
9904 do_t_simd (void)
9905 {
9906 inst.instruction |= inst.operands[0].reg << 8;
9907 inst.instruction |= inst.operands[1].reg << 16;
9908 inst.instruction |= inst.operands[2].reg;
9909 }
9910
9911 static void
9912 do_t_smc (void)
9913 {
9914 unsigned int value = inst.reloc.exp.X_add_number;
9915 constraint (inst.reloc.exp.X_op != O_constant,
9916 _("expression too complex"));
9917 inst.reloc.type = BFD_RELOC_UNUSED;
9918 inst.instruction |= (value & 0xf000) >> 12;
9919 inst.instruction |= (value & 0x0ff0);
9920 inst.instruction |= (value & 0x000f) << 16;
9921 }
9922
9923 static void
9924 do_t_ssat (void)
9925 {
9926 inst.instruction |= inst.operands[0].reg << 8;
9927 inst.instruction |= inst.operands[1].imm - 1;
9928 inst.instruction |= inst.operands[2].reg << 16;
9929
9930 if (inst.operands[3].present)
9931 {
9932 constraint (inst.reloc.exp.X_op != O_constant,
9933 _("expression too complex"));
9934
9935 if (inst.reloc.exp.X_add_number != 0)
9936 {
9937 if (inst.operands[3].shift_kind == SHIFT_ASR)
9938 inst.instruction |= 0x00200000; /* sh bit */
9939 inst.instruction |= (inst.reloc.exp.X_add_number & 0x1c) << 10;
9940 inst.instruction |= (inst.reloc.exp.X_add_number & 0x03) << 6;
9941 }
9942 inst.reloc.type = BFD_RELOC_UNUSED;
9943 }
9944 }
9945
9946 static void
9947 do_t_ssat16 (void)
9948 {
9949 inst.instruction |= inst.operands[0].reg << 8;
9950 inst.instruction |= inst.operands[1].imm - 1;
9951 inst.instruction |= inst.operands[2].reg << 16;
9952 }
9953
9954 static void
9955 do_t_strex (void)
9956 {
9957 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
9958 || inst.operands[2].postind || inst.operands[2].writeback
9959 || inst.operands[2].immisreg || inst.operands[2].shifted
9960 || inst.operands[2].negative,
9961 BAD_ADDR_MODE);
9962
9963 inst.instruction |= inst.operands[0].reg << 8;
9964 inst.instruction |= inst.operands[1].reg << 12;
9965 inst.instruction |= inst.operands[2].reg << 16;
9966 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
9967 }
9968
9969 static void
9970 do_t_strexd (void)
9971 {
9972 if (!inst.operands[2].present)
9973 inst.operands[2].reg = inst.operands[1].reg + 1;
9974
9975 constraint (inst.operands[0].reg == inst.operands[1].reg
9976 || inst.operands[0].reg == inst.operands[2].reg
9977 || inst.operands[0].reg == inst.operands[3].reg
9978 || inst.operands[1].reg == inst.operands[2].reg,
9979 BAD_OVERLAP);
9980
9981 inst.instruction |= inst.operands[0].reg;
9982 inst.instruction |= inst.operands[1].reg << 12;
9983 inst.instruction |= inst.operands[2].reg << 8;
9984 inst.instruction |= inst.operands[3].reg << 16;
9985 }
9986
9987 static void
9988 do_t_sxtah (void)
9989 {
9990 inst.instruction |= inst.operands[0].reg << 8;
9991 inst.instruction |= inst.operands[1].reg << 16;
9992 inst.instruction |= inst.operands[2].reg;
9993 inst.instruction |= inst.operands[3].imm << 4;
9994 }
9995
9996 static void
9997 do_t_sxth (void)
9998 {
9999 if (inst.instruction <= 0xffff && inst.size_req != 4
10000 && inst.operands[0].reg <= 7 && inst.operands[1].reg <= 7
10001 && (!inst.operands[2].present || inst.operands[2].imm == 0))
10002 {
10003 inst.instruction = THUMB_OP16 (inst.instruction);
10004 inst.instruction |= inst.operands[0].reg;
10005 inst.instruction |= inst.operands[1].reg << 3;
10006 }
10007 else if (unified_syntax)
10008 {
10009 if (inst.instruction <= 0xffff)
10010 inst.instruction = THUMB_OP32 (inst.instruction);
10011 inst.instruction |= inst.operands[0].reg << 8;
10012 inst.instruction |= inst.operands[1].reg;
10013 inst.instruction |= inst.operands[2].imm << 4;
10014 }
10015 else
10016 {
10017 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
10018 _("Thumb encoding does not support rotation"));
10019 constraint (1, BAD_HIREG);
10020 }
10021 }
10022
10023 static void
10024 do_t_swi (void)
10025 {
10026 inst.reloc.type = BFD_RELOC_ARM_SWI;
10027 }
10028
10029 static void
10030 do_t_tb (void)
10031 {
10032 int half;
10033
10034 half = (inst.instruction & 0x10) != 0;
10035 constraint (current_it_mask && current_it_mask != 0x10, BAD_BRANCH);
10036 constraint (inst.operands[0].immisreg,
10037 _("instruction requires register index"));
10038 constraint (inst.operands[0].imm == 15,
10039 _("PC is not a valid index register"));
10040 constraint (!half && inst.operands[0].shifted,
10041 _("instruction does not allow shifted index"));
10042 inst.instruction |= (inst.operands[0].reg << 16) | inst.operands[0].imm;
10043 }
10044
10045 static void
10046 do_t_usat (void)
10047 {
10048 inst.instruction |= inst.operands[0].reg << 8;
10049 inst.instruction |= inst.operands[1].imm;
10050 inst.instruction |= inst.operands[2].reg << 16;
10051
10052 if (inst.operands[3].present)
10053 {
10054 constraint (inst.reloc.exp.X_op != O_constant,
10055 _("expression too complex"));
10056 if (inst.reloc.exp.X_add_number != 0)
10057 {
10058 if (inst.operands[3].shift_kind == SHIFT_ASR)
10059 inst.instruction |= 0x00200000; /* sh bit */
10060
10061 inst.instruction |= (inst.reloc.exp.X_add_number & 0x1c) << 10;
10062 inst.instruction |= (inst.reloc.exp.X_add_number & 0x03) << 6;
10063 }
10064 inst.reloc.type = BFD_RELOC_UNUSED;
10065 }
10066 }
10067
10068 static void
10069 do_t_usat16 (void)
10070 {
10071 inst.instruction |= inst.operands[0].reg << 8;
10072 inst.instruction |= inst.operands[1].imm;
10073 inst.instruction |= inst.operands[2].reg << 16;
10074 }
10075
10076 /* Neon instruction encoder helpers. */
10077
10078 /* Encodings for the different types for various Neon opcodes. */
10079
10080 /* An "invalid" code for the following tables. */
10081 #define N_INV -1u
10082
10083 struct neon_tab_entry
10084 {
10085 unsigned integer;
10086 unsigned float_or_poly;
10087 unsigned scalar_or_imm;
10088 };
10089
10090 /* Map overloaded Neon opcodes to their respective encodings. */
10091 #define NEON_ENC_TAB \
10092 X(vabd, 0x0000700, 0x1200d00, N_INV), \
10093 X(vmax, 0x0000600, 0x0000f00, N_INV), \
10094 X(vmin, 0x0000610, 0x0200f00, N_INV), \
10095 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
10096 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
10097 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
10098 X(vadd, 0x0000800, 0x0000d00, N_INV), \
10099 X(vsub, 0x1000800, 0x0200d00, N_INV), \
10100 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
10101 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
10102 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
10103 /* Register variants of the following two instructions are encoded as
10104 vcge / vcgt with the operands reversed. */ \
10105 X(vclt, 0x0000310, 0x1000e00, 0x1b10200), \
10106 X(vcle, 0x0000300, 0x1200e00, 0x1b10180), \
10107 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
10108 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
10109 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
10110 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
10111 X(vmlal, 0x0800800, N_INV, 0x0800240), \
10112 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
10113 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
10114 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
10115 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
10116 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
10117 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
10118 X(vshl, 0x0000400, N_INV, 0x0800510), \
10119 X(vqshl, 0x0000410, N_INV, 0x0800710), \
10120 X(vand, 0x0000110, N_INV, 0x0800030), \
10121 X(vbic, 0x0100110, N_INV, 0x0800030), \
10122 X(veor, 0x1000110, N_INV, N_INV), \
10123 X(vorn, 0x0300110, N_INV, 0x0800010), \
10124 X(vorr, 0x0200110, N_INV, 0x0800010), \
10125 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
10126 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
10127 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
10128 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
10129 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
10130 X(vst1, 0x0000000, 0x0800000, N_INV), \
10131 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
10132 X(vst2, 0x0000100, 0x0800100, N_INV), \
10133 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
10134 X(vst3, 0x0000200, 0x0800200, N_INV), \
10135 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
10136 X(vst4, 0x0000300, 0x0800300, N_INV), \
10137 X(vmovn, 0x1b20200, N_INV, N_INV), \
10138 X(vtrn, 0x1b20080, N_INV, N_INV), \
10139 X(vqmovn, 0x1b20200, N_INV, N_INV), \
10140 X(vqmovun, 0x1b20240, N_INV, N_INV), \
10141 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
10142 X(vnmla, 0xe000a40, 0xe000b40, N_INV), \
10143 X(vnmls, 0xe100a40, 0xe100b40, N_INV), \
10144 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
10145 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
10146 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
10147 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV)
10148
10149 enum neon_opc
10150 {
10151 #define X(OPC,I,F,S) N_MNEM_##OPC
10152 NEON_ENC_TAB
10153 #undef X
10154 };
10155
10156 static const struct neon_tab_entry neon_enc_tab[] =
10157 {
10158 #define X(OPC,I,F,S) { (I), (F), (S) }
10159 NEON_ENC_TAB
10160 #undef X
10161 };
10162
10163 #define NEON_ENC_INTEGER(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
10164 #define NEON_ENC_ARMREG(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
10165 #define NEON_ENC_POLY(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
10166 #define NEON_ENC_FLOAT(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
10167 #define NEON_ENC_SCALAR(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
10168 #define NEON_ENC_IMMED(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
10169 #define NEON_ENC_INTERLV(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
10170 #define NEON_ENC_LANE(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
10171 #define NEON_ENC_DUP(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
10172 #define NEON_ENC_SINGLE(X) \
10173 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
10174 #define NEON_ENC_DOUBLE(X) \
10175 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
10176
10177 /* Define shapes for instruction operands. The following mnemonic characters
10178 are used in this table:
10179
10180 F - VFP S<n> register
10181 D - Neon D<n> register
10182 Q - Neon Q<n> register
10183 I - Immediate
10184 S - Scalar
10185 R - ARM register
10186 L - D<n> register list
10187
10188 This table is used to generate various data:
10189 - enumerations of the form NS_DDR to be used as arguments to
10190 neon_select_shape.
10191 - a table classifying shapes into single, double, quad, mixed.
10192 - a table used to drive neon_select_shape.
10193 */
10194
10195 #define NEON_SHAPE_DEF \
10196 X(3, (D, D, D), DOUBLE), \
10197 X(3, (Q, Q, Q), QUAD), \
10198 X(3, (D, D, I), DOUBLE), \
10199 X(3, (Q, Q, I), QUAD), \
10200 X(3, (D, D, S), DOUBLE), \
10201 X(3, (Q, Q, S), QUAD), \
10202 X(2, (D, D), DOUBLE), \
10203 X(2, (Q, Q), QUAD), \
10204 X(2, (D, S), DOUBLE), \
10205 X(2, (Q, S), QUAD), \
10206 X(2, (D, R), DOUBLE), \
10207 X(2, (Q, R), QUAD), \
10208 X(2, (D, I), DOUBLE), \
10209 X(2, (Q, I), QUAD), \
10210 X(3, (D, L, D), DOUBLE), \
10211 X(2, (D, Q), MIXED), \
10212 X(2, (Q, D), MIXED), \
10213 X(3, (D, Q, I), MIXED), \
10214 X(3, (Q, D, I), MIXED), \
10215 X(3, (Q, D, D), MIXED), \
10216 X(3, (D, Q, Q), MIXED), \
10217 X(3, (Q, Q, D), MIXED), \
10218 X(3, (Q, D, S), MIXED), \
10219 X(3, (D, Q, S), MIXED), \
10220 X(4, (D, D, D, I), DOUBLE), \
10221 X(4, (Q, Q, Q, I), QUAD), \
10222 X(2, (F, F), SINGLE), \
10223 X(3, (F, F, F), SINGLE), \
10224 X(2, (F, I), SINGLE), \
10225 X(2, (F, D), MIXED), \
10226 X(2, (D, F), MIXED), \
10227 X(3, (F, F, I), MIXED), \
10228 X(4, (R, R, F, F), SINGLE), \
10229 X(4, (F, F, R, R), SINGLE), \
10230 X(3, (D, R, R), DOUBLE), \
10231 X(3, (R, R, D), DOUBLE), \
10232 X(2, (S, R), SINGLE), \
10233 X(2, (R, S), SINGLE), \
10234 X(2, (F, R), SINGLE), \
10235 X(2, (R, F), SINGLE)
10236
10237 #define S2(A,B) NS_##A##B
10238 #define S3(A,B,C) NS_##A##B##C
10239 #define S4(A,B,C,D) NS_##A##B##C##D
10240
10241 #define X(N, L, C) S##N L
10242
10243 enum neon_shape
10244 {
10245 NEON_SHAPE_DEF,
10246 NS_NULL
10247 };
10248
10249 #undef X
10250 #undef S2
10251 #undef S3
10252 #undef S4
10253
10254 enum neon_shape_class
10255 {
10256 SC_SINGLE,
10257 SC_DOUBLE,
10258 SC_QUAD,
10259 SC_MIXED
10260 };
10261
10262 #define X(N, L, C) SC_##C
10263
10264 static enum neon_shape_class neon_shape_class[] =
10265 {
10266 NEON_SHAPE_DEF
10267 };
10268
10269 #undef X
10270
10271 enum neon_shape_el
10272 {
10273 SE_F,
10274 SE_D,
10275 SE_Q,
10276 SE_I,
10277 SE_S,
10278 SE_R,
10279 SE_L
10280 };
10281
10282 /* Register widths of above. */
10283 static unsigned neon_shape_el_size[] =
10284 {
10285 32,
10286 64,
10287 128,
10288 0,
10289 32,
10290 32,
10291 0
10292 };
10293
10294 struct neon_shape_info
10295 {
10296 unsigned els;
10297 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
10298 };
10299
10300 #define S2(A,B) { SE_##A, SE_##B }
10301 #define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
10302 #define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
10303
10304 #define X(N, L, C) { N, S##N L }
10305
10306 static struct neon_shape_info neon_shape_tab[] =
10307 {
10308 NEON_SHAPE_DEF
10309 };
10310
10311 #undef X
10312 #undef S2
10313 #undef S3
10314 #undef S4
10315
10316 /* Bit masks used in type checking given instructions.
10317 'N_EQK' means the type must be the same as (or based on in some way) the key
10318 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
10319 set, various other bits can be set as well in order to modify the meaning of
10320 the type constraint. */
10321
10322 enum neon_type_mask
10323 {
10324 N_S8 = 0x000001,
10325 N_S16 = 0x000002,
10326 N_S32 = 0x000004,
10327 N_S64 = 0x000008,
10328 N_U8 = 0x000010,
10329 N_U16 = 0x000020,
10330 N_U32 = 0x000040,
10331 N_U64 = 0x000080,
10332 N_I8 = 0x000100,
10333 N_I16 = 0x000200,
10334 N_I32 = 0x000400,
10335 N_I64 = 0x000800,
10336 N_8 = 0x001000,
10337 N_16 = 0x002000,
10338 N_32 = 0x004000,
10339 N_64 = 0x008000,
10340 N_P8 = 0x010000,
10341 N_P16 = 0x020000,
10342 N_F32 = 0x040000,
10343 N_F64 = 0x080000,
10344 N_KEY = 0x100000, /* key element (main type specifier). */
10345 N_EQK = 0x200000, /* given operand has the same type & size as the key. */
10346 N_VFP = 0x400000, /* VFP mode: operand size must match register width. */
10347 N_DBL = 0x000001, /* if N_EQK, this operand is twice the size. */
10348 N_HLF = 0x000002, /* if N_EQK, this operand is half the size. */
10349 N_SGN = 0x000004, /* if N_EQK, this operand is forced to be signed. */
10350 N_UNS = 0x000008, /* if N_EQK, this operand is forced to be unsigned. */
10351 N_INT = 0x000010, /* if N_EQK, this operand is forced to be integer. */
10352 N_FLT = 0x000020, /* if N_EQK, this operand is forced to be float. */
10353 N_SIZ = 0x000040, /* if N_EQK, this operand is forced to be size-only. */
10354 N_UTYP = 0,
10355 N_MAX_NONSPECIAL = N_F64
10356 };
10357
10358 #define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
10359
10360 #define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
10361 #define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
10362 #define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
10363 #define N_SUF_32 (N_SU_32 | N_F32)
10364 #define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
10365 #define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F32)
10366
10367 /* Pass this as the first type argument to neon_check_type to ignore types
10368 altogether. */
10369 #define N_IGNORE_TYPE (N_KEY | N_EQK)
10370
10371 /* Select a "shape" for the current instruction (describing register types or
10372 sizes) from a list of alternatives. Return NS_NULL if the current instruction
10373 doesn't fit. For non-polymorphic shapes, checking is usually done as a
10374 function of operand parsing, so this function doesn't need to be called.
10375 Shapes should be listed in order of decreasing length. */
10376
10377 static enum neon_shape
10378 neon_select_shape (enum neon_shape shape, ...)
10379 {
10380 va_list ap;
10381 enum neon_shape first_shape = shape;
10382
10383 /* Fix missing optional operands. FIXME: we don't know at this point how
10384 many arguments we should have, so this makes the assumption that we have
10385 > 1. This is true of all current Neon opcodes, I think, but may not be
10386 true in the future. */
10387 if (!inst.operands[1].present)
10388 inst.operands[1] = inst.operands[0];
10389
10390 va_start (ap, shape);
10391
10392 for (; shape != NS_NULL; shape = va_arg (ap, int))
10393 {
10394 unsigned j;
10395 int matches = 1;
10396
10397 for (j = 0; j < neon_shape_tab[shape].els; j++)
10398 {
10399 if (!inst.operands[j].present)
10400 {
10401 matches = 0;
10402 break;
10403 }
10404
10405 switch (neon_shape_tab[shape].el[j])
10406 {
10407 case SE_F:
10408 if (!(inst.operands[j].isreg
10409 && inst.operands[j].isvec
10410 && inst.operands[j].issingle
10411 && !inst.operands[j].isquad))
10412 matches = 0;
10413 break;
10414
10415 case SE_D:
10416 if (!(inst.operands[j].isreg
10417 && inst.operands[j].isvec
10418 && !inst.operands[j].isquad
10419 && !inst.operands[j].issingle))
10420 matches = 0;
10421 break;
10422
10423 case SE_R:
10424 if (!(inst.operands[j].isreg
10425 && !inst.operands[j].isvec))
10426 matches = 0;
10427 break;
10428
10429 case SE_Q:
10430 if (!(inst.operands[j].isreg
10431 && inst.operands[j].isvec
10432 && inst.operands[j].isquad
10433 && !inst.operands[j].issingle))
10434 matches = 0;
10435 break;
10436
10437 case SE_I:
10438 if (!(!inst.operands[j].isreg
10439 && !inst.operands[j].isscalar))
10440 matches = 0;
10441 break;
10442
10443 case SE_S:
10444 if (!(!inst.operands[j].isreg
10445 && inst.operands[j].isscalar))
10446 matches = 0;
10447 break;
10448
10449 case SE_L:
10450 break;
10451 }
10452 }
10453 if (matches)
10454 break;
10455 }
10456
10457 va_end (ap);
10458
10459 if (shape == NS_NULL && first_shape != NS_NULL)
10460 first_error (_("invalid instruction shape"));
10461
10462 return shape;
10463 }
10464
10465 /* True if SHAPE is predominantly a quadword operation (most of the time, this
10466 means the Q bit should be set). */
10467
10468 static int
10469 neon_quad (enum neon_shape shape)
10470 {
10471 return neon_shape_class[shape] == SC_QUAD;
10472 }
10473
10474 static void
10475 neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
10476 unsigned *g_size)
10477 {
10478 /* Allow modification to be made to types which are constrained to be
10479 based on the key element, based on bits set alongside N_EQK. */
10480 if ((typebits & N_EQK) != 0)
10481 {
10482 if ((typebits & N_HLF) != 0)
10483 *g_size /= 2;
10484 else if ((typebits & N_DBL) != 0)
10485 *g_size *= 2;
10486 if ((typebits & N_SGN) != 0)
10487 *g_type = NT_signed;
10488 else if ((typebits & N_UNS) != 0)
10489 *g_type = NT_unsigned;
10490 else if ((typebits & N_INT) != 0)
10491 *g_type = NT_integer;
10492 else if ((typebits & N_FLT) != 0)
10493 *g_type = NT_float;
10494 else if ((typebits & N_SIZ) != 0)
10495 *g_type = NT_untyped;
10496 }
10497 }
10498
10499 /* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
10500 operand type, i.e. the single type specified in a Neon instruction when it
10501 is the only one given. */
10502
10503 static struct neon_type_el
10504 neon_type_promote (struct neon_type_el *key, unsigned thisarg)
10505 {
10506 struct neon_type_el dest = *key;
10507
10508 assert ((thisarg & N_EQK) != 0);
10509
10510 neon_modify_type_size (thisarg, &dest.type, &dest.size);
10511
10512 return dest;
10513 }
10514
10515 /* Convert Neon type and size into compact bitmask representation. */
10516
10517 static enum neon_type_mask
10518 type_chk_of_el_type (enum neon_el_type type, unsigned size)
10519 {
10520 switch (type)
10521 {
10522 case NT_untyped:
10523 switch (size)
10524 {
10525 case 8: return N_8;
10526 case 16: return N_16;
10527 case 32: return N_32;
10528 case 64: return N_64;
10529 default: ;
10530 }
10531 break;
10532
10533 case NT_integer:
10534 switch (size)
10535 {
10536 case 8: return N_I8;
10537 case 16: return N_I16;
10538 case 32: return N_I32;
10539 case 64: return N_I64;
10540 default: ;
10541 }
10542 break;
10543
10544 case NT_float:
10545 switch (size)
10546 {
10547 case 32: return N_F32;
10548 case 64: return N_F64;
10549 default: ;
10550 }
10551 break;
10552
10553 case NT_poly:
10554 switch (size)
10555 {
10556 case 8: return N_P8;
10557 case 16: return N_P16;
10558 default: ;
10559 }
10560 break;
10561
10562 case NT_signed:
10563 switch (size)
10564 {
10565 case 8: return N_S8;
10566 case 16: return N_S16;
10567 case 32: return N_S32;
10568 case 64: return N_S64;
10569 default: ;
10570 }
10571 break;
10572
10573 case NT_unsigned:
10574 switch (size)
10575 {
10576 case 8: return N_U8;
10577 case 16: return N_U16;
10578 case 32: return N_U32;
10579 case 64: return N_U64;
10580 default: ;
10581 }
10582 break;
10583
10584 default: ;
10585 }
10586
10587 return N_UTYP;
10588 }
10589
10590 /* Convert compact Neon bitmask type representation to a type and size. Only
10591 handles the case where a single bit is set in the mask. */
10592
10593 static int
10594 el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
10595 enum neon_type_mask mask)
10596 {
10597 if ((mask & N_EQK) != 0)
10598 return FAIL;
10599
10600 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
10601 *size = 8;
10602 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_P16)) != 0)
10603 *size = 16;
10604 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
10605 *size = 32;
10606 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64)) != 0)
10607 *size = 64;
10608 else
10609 return FAIL;
10610
10611 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
10612 *type = NT_signed;
10613 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
10614 *type = NT_unsigned;
10615 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
10616 *type = NT_integer;
10617 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
10618 *type = NT_untyped;
10619 else if ((mask & (N_P8 | N_P16)) != 0)
10620 *type = NT_poly;
10621 else if ((mask & (N_F32 | N_F64)) != 0)
10622 *type = NT_float;
10623 else
10624 return FAIL;
10625
10626 return SUCCESS;
10627 }
10628
10629 /* Modify a bitmask of allowed types. This is only needed for type
10630 relaxation. */
10631
10632 static unsigned
10633 modify_types_allowed (unsigned allowed, unsigned mods)
10634 {
10635 unsigned size;
10636 enum neon_el_type type;
10637 unsigned destmask;
10638 int i;
10639
10640 destmask = 0;
10641
10642 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
10643 {
10644 if (el_type_of_type_chk (&type, &size, allowed & i) == SUCCESS)
10645 {
10646 neon_modify_type_size (mods, &type, &size);
10647 destmask |= type_chk_of_el_type (type, size);
10648 }
10649 }
10650
10651 return destmask;
10652 }
10653
10654 /* Check type and return type classification.
10655 The manual states (paraphrase): If one datatype is given, it indicates the
10656 type given in:
10657 - the second operand, if there is one
10658 - the operand, if there is no second operand
10659 - the result, if there are no operands.
10660 This isn't quite good enough though, so we use a concept of a "key" datatype
10661 which is set on a per-instruction basis, which is the one which matters when
10662 only one data type is written.
10663 Note: this function has side-effects (e.g. filling in missing operands). All
10664 Neon instructions should call it before performing bit encoding. */
10665
10666 static struct neon_type_el
10667 neon_check_type (unsigned els, enum neon_shape ns, ...)
10668 {
10669 va_list ap;
10670 unsigned i, pass, key_el = 0;
10671 unsigned types[NEON_MAX_TYPE_ELS];
10672 enum neon_el_type k_type = NT_invtype;
10673 unsigned k_size = -1u;
10674 struct neon_type_el badtype = {NT_invtype, -1};
10675 unsigned key_allowed = 0;
10676
10677 /* Optional registers in Neon instructions are always (not) in operand 1.
10678 Fill in the missing operand here, if it was omitted. */
10679 if (els > 1 && !inst.operands[1].present)
10680 inst.operands[1] = inst.operands[0];
10681
10682 /* Suck up all the varargs. */
10683 va_start (ap, ns);
10684 for (i = 0; i < els; i++)
10685 {
10686 unsigned thisarg = va_arg (ap, unsigned);
10687 if (thisarg == N_IGNORE_TYPE)
10688 {
10689 va_end (ap);
10690 return badtype;
10691 }
10692 types[i] = thisarg;
10693 if ((thisarg & N_KEY) != 0)
10694 key_el = i;
10695 }
10696 va_end (ap);
10697
10698 if (inst.vectype.elems > 0)
10699 for (i = 0; i < els; i++)
10700 if (inst.operands[i].vectype.type != NT_invtype)
10701 {
10702 first_error (_("types specified in both the mnemonic and operands"));
10703 return badtype;
10704 }
10705
10706 /* Duplicate inst.vectype elements here as necessary.
10707 FIXME: No idea if this is exactly the same as the ARM assembler,
10708 particularly when an insn takes one register and one non-register
10709 operand. */
10710 if (inst.vectype.elems == 1 && els > 1)
10711 {
10712 unsigned j;
10713 inst.vectype.elems = els;
10714 inst.vectype.el[key_el] = inst.vectype.el[0];
10715 for (j = 0; j < els; j++)
10716 if (j != key_el)
10717 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
10718 types[j]);
10719 }
10720 else if (inst.vectype.elems == 0 && els > 0)
10721 {
10722 unsigned j;
10723 /* No types were given after the mnemonic, so look for types specified
10724 after each operand. We allow some flexibility here; as long as the
10725 "key" operand has a type, we can infer the others. */
10726 for (j = 0; j < els; j++)
10727 if (inst.operands[j].vectype.type != NT_invtype)
10728 inst.vectype.el[j] = inst.operands[j].vectype;
10729
10730 if (inst.operands[key_el].vectype.type != NT_invtype)
10731 {
10732 for (j = 0; j < els; j++)
10733 if (inst.operands[j].vectype.type == NT_invtype)
10734 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
10735 types[j]);
10736 }
10737 else
10738 {
10739 first_error (_("operand types can't be inferred"));
10740 return badtype;
10741 }
10742 }
10743 else if (inst.vectype.elems != els)
10744 {
10745 first_error (_("type specifier has the wrong number of parts"));
10746 return badtype;
10747 }
10748
10749 for (pass = 0; pass < 2; pass++)
10750 {
10751 for (i = 0; i < els; i++)
10752 {
10753 unsigned thisarg = types[i];
10754 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
10755 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
10756 enum neon_el_type g_type = inst.vectype.el[i].type;
10757 unsigned g_size = inst.vectype.el[i].size;
10758
10759 /* Decay more-specific signed & unsigned types to sign-insensitive
10760 integer types if sign-specific variants are unavailable. */
10761 if ((g_type == NT_signed || g_type == NT_unsigned)
10762 && (types_allowed & N_SU_ALL) == 0)
10763 g_type = NT_integer;
10764
10765 /* If only untyped args are allowed, decay any more specific types to
10766 them. Some instructions only care about signs for some element
10767 sizes, so handle that properly. */
10768 if ((g_size == 8 && (types_allowed & N_8) != 0)
10769 || (g_size == 16 && (types_allowed & N_16) != 0)
10770 || (g_size == 32 && (types_allowed & N_32) != 0)
10771 || (g_size == 64 && (types_allowed & N_64) != 0))
10772 g_type = NT_untyped;
10773
10774 if (pass == 0)
10775 {
10776 if ((thisarg & N_KEY) != 0)
10777 {
10778 k_type = g_type;
10779 k_size = g_size;
10780 key_allowed = thisarg & ~N_KEY;
10781 }
10782 }
10783 else
10784 {
10785 if ((thisarg & N_VFP) != 0)
10786 {
10787 enum neon_shape_el regshape = neon_shape_tab[ns].el[i];
10788 unsigned regwidth = neon_shape_el_size[regshape], match;
10789
10790 /* In VFP mode, operands must match register widths. If we
10791 have a key operand, use its width, else use the width of
10792 the current operand. */
10793 if (k_size != -1u)
10794 match = k_size;
10795 else
10796 match = g_size;
10797
10798 if (regwidth != match)
10799 {
10800 first_error (_("operand size must match register width"));
10801 return badtype;
10802 }
10803 }
10804
10805 if ((thisarg & N_EQK) == 0)
10806 {
10807 unsigned given_type = type_chk_of_el_type (g_type, g_size);
10808
10809 if ((given_type & types_allowed) == 0)
10810 {
10811 first_error (_("bad type in Neon instruction"));
10812 return badtype;
10813 }
10814 }
10815 else
10816 {
10817 enum neon_el_type mod_k_type = k_type;
10818 unsigned mod_k_size = k_size;
10819 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
10820 if (g_type != mod_k_type || g_size != mod_k_size)
10821 {
10822 first_error (_("inconsistent types in Neon instruction"));
10823 return badtype;
10824 }
10825 }
10826 }
10827 }
10828 }
10829
10830 return inst.vectype.el[key_el];
10831 }
10832
10833 /* Neon-style VFP instruction forwarding. */
10834
10835 /* Thumb VFP instructions have 0xE in the condition field. */
10836
10837 static void
10838 do_vfp_cond_or_thumb (void)
10839 {
10840 if (thumb_mode)
10841 inst.instruction |= 0xe0000000;
10842 else
10843 inst.instruction |= inst.cond << 28;
10844 }
10845
10846 /* Look up and encode a simple mnemonic, for use as a helper function for the
10847 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
10848 etc. It is assumed that operand parsing has already been done, and that the
10849 operands are in the form expected by the given opcode (this isn't necessarily
10850 the same as the form in which they were parsed, hence some massaging must
10851 take place before this function is called).
10852 Checks current arch version against that in the looked-up opcode. */
10853
10854 static void
10855 do_vfp_nsyn_opcode (const char *opname)
10856 {
10857 const struct asm_opcode *opcode;
10858
10859 opcode = hash_find (arm_ops_hsh, opname);
10860
10861 if (!opcode)
10862 abort ();
10863
10864 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
10865 thumb_mode ? *opcode->tvariant : *opcode->avariant),
10866 _(BAD_FPU));
10867
10868 if (thumb_mode)
10869 {
10870 inst.instruction = opcode->tvalue;
10871 opcode->tencode ();
10872 }
10873 else
10874 {
10875 inst.instruction = (inst.cond << 28) | opcode->avalue;
10876 opcode->aencode ();
10877 }
10878 }
10879
10880 static void
10881 do_vfp_nsyn_add_sub (enum neon_shape rs)
10882 {
10883 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
10884
10885 if (rs == NS_FFF)
10886 {
10887 if (is_add)
10888 do_vfp_nsyn_opcode ("fadds");
10889 else
10890 do_vfp_nsyn_opcode ("fsubs");
10891 }
10892 else
10893 {
10894 if (is_add)
10895 do_vfp_nsyn_opcode ("faddd");
10896 else
10897 do_vfp_nsyn_opcode ("fsubd");
10898 }
10899 }
10900
10901 /* Check operand types to see if this is a VFP instruction, and if so call
10902 PFN (). */
10903
10904 static int
10905 try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
10906 {
10907 enum neon_shape rs;
10908 struct neon_type_el et;
10909
10910 switch (args)
10911 {
10912 case 2:
10913 rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
10914 et = neon_check_type (2, rs,
10915 N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
10916 break;
10917
10918 case 3:
10919 rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
10920 et = neon_check_type (3, rs,
10921 N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
10922 break;
10923
10924 default:
10925 abort ();
10926 }
10927
10928 if (et.type != NT_invtype)
10929 {
10930 pfn (rs);
10931 return SUCCESS;
10932 }
10933 else
10934 inst.error = NULL;
10935
10936 return FAIL;
10937 }
10938
10939 static void
10940 do_vfp_nsyn_mla_mls (enum neon_shape rs)
10941 {
10942 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
10943
10944 if (rs == NS_FFF)
10945 {
10946 if (is_mla)
10947 do_vfp_nsyn_opcode ("fmacs");
10948 else
10949 do_vfp_nsyn_opcode ("fmscs");
10950 }
10951 else
10952 {
10953 if (is_mla)
10954 do_vfp_nsyn_opcode ("fmacd");
10955 else
10956 do_vfp_nsyn_opcode ("fmscd");
10957 }
10958 }
10959
10960 static void
10961 do_vfp_nsyn_mul (enum neon_shape rs)
10962 {
10963 if (rs == NS_FFF)
10964 do_vfp_nsyn_opcode ("fmuls");
10965 else
10966 do_vfp_nsyn_opcode ("fmuld");
10967 }
10968
10969 static void
10970 do_vfp_nsyn_abs_neg (enum neon_shape rs)
10971 {
10972 int is_neg = (inst.instruction & 0x80) != 0;
10973 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
10974
10975 if (rs == NS_FF)
10976 {
10977 if (is_neg)
10978 do_vfp_nsyn_opcode ("fnegs");
10979 else
10980 do_vfp_nsyn_opcode ("fabss");
10981 }
10982 else
10983 {
10984 if (is_neg)
10985 do_vfp_nsyn_opcode ("fnegd");
10986 else
10987 do_vfp_nsyn_opcode ("fabsd");
10988 }
10989 }
10990
10991 /* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
10992 insns belong to Neon, and are handled elsewhere. */
10993
10994 static void
10995 do_vfp_nsyn_ldm_stm (int is_dbmode)
10996 {
10997 int is_ldm = (inst.instruction & (1 << 20)) != 0;
10998 if (is_ldm)
10999 {
11000 if (is_dbmode)
11001 do_vfp_nsyn_opcode ("fldmdbs");
11002 else
11003 do_vfp_nsyn_opcode ("fldmias");
11004 }
11005 else
11006 {
11007 if (is_dbmode)
11008 do_vfp_nsyn_opcode ("fstmdbs");
11009 else
11010 do_vfp_nsyn_opcode ("fstmias");
11011 }
11012 }
11013
11014 static void
11015 do_vfp_nsyn_sqrt (void)
11016 {
11017 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
11018 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
11019
11020 if (rs == NS_FF)
11021 do_vfp_nsyn_opcode ("fsqrts");
11022 else
11023 do_vfp_nsyn_opcode ("fsqrtd");
11024 }
11025
11026 static void
11027 do_vfp_nsyn_div (void)
11028 {
11029 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
11030 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
11031 N_F32 | N_F64 | N_KEY | N_VFP);
11032
11033 if (rs == NS_FFF)
11034 do_vfp_nsyn_opcode ("fdivs");
11035 else
11036 do_vfp_nsyn_opcode ("fdivd");
11037 }
11038
11039 static void
11040 do_vfp_nsyn_nmul (void)
11041 {
11042 enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
11043 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
11044 N_F32 | N_F64 | N_KEY | N_VFP);
11045
11046 if (rs == NS_FFF)
11047 {
11048 inst.instruction = NEON_ENC_SINGLE (inst.instruction);
11049 do_vfp_sp_dyadic ();
11050 }
11051 else
11052 {
11053 inst.instruction = NEON_ENC_DOUBLE (inst.instruction);
11054 do_vfp_dp_rd_rn_rm ();
11055 }
11056 do_vfp_cond_or_thumb ();
11057 }
11058
11059 static void
11060 do_vfp_nsyn_cmp (void)
11061 {
11062 if (inst.operands[1].isreg)
11063 {
11064 enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
11065 neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
11066
11067 if (rs == NS_FF)
11068 {
11069 inst.instruction = NEON_ENC_SINGLE (inst.instruction);
11070 do_vfp_sp_monadic ();
11071 }
11072 else
11073 {
11074 inst.instruction = NEON_ENC_DOUBLE (inst.instruction);
11075 do_vfp_dp_rd_rm ();
11076 }
11077 }
11078 else
11079 {
11080 enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
11081 neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
11082
11083 switch (inst.instruction & 0x0fffffff)
11084 {
11085 case N_MNEM_vcmp:
11086 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
11087 break;
11088 case N_MNEM_vcmpe:
11089 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
11090 break;
11091 default:
11092 abort ();
11093 }
11094
11095 if (rs == NS_FI)
11096 {
11097 inst.instruction = NEON_ENC_SINGLE (inst.instruction);
11098 do_vfp_sp_compare_z ();
11099 }
11100 else
11101 {
11102 inst.instruction = NEON_ENC_DOUBLE (inst.instruction);
11103 do_vfp_dp_rd ();
11104 }
11105 }
11106 do_vfp_cond_or_thumb ();
11107 }
11108
11109 static void
11110 nsyn_insert_sp (void)
11111 {
11112 inst.operands[1] = inst.operands[0];
11113 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
11114 inst.operands[0].reg = 13;
11115 inst.operands[0].isreg = 1;
11116 inst.operands[0].writeback = 1;
11117 inst.operands[0].present = 1;
11118 }
11119
11120 static void
11121 do_vfp_nsyn_push (void)
11122 {
11123 nsyn_insert_sp ();
11124 if (inst.operands[1].issingle)
11125 do_vfp_nsyn_opcode ("fstmdbs");
11126 else
11127 do_vfp_nsyn_opcode ("fstmdbd");
11128 }
11129
11130 static void
11131 do_vfp_nsyn_pop (void)
11132 {
11133 nsyn_insert_sp ();
11134 if (inst.operands[1].issingle)
11135 do_vfp_nsyn_opcode ("fldmdbs");
11136 else
11137 do_vfp_nsyn_opcode ("fldmdbd");
11138 }
11139
11140 /* Fix up Neon data-processing instructions, ORing in the correct bits for
11141 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
11142
11143 static unsigned
11144 neon_dp_fixup (unsigned i)
11145 {
11146 if (thumb_mode)
11147 {
11148 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
11149 if (i & (1 << 24))
11150 i |= 1 << 28;
11151
11152 i &= ~(1 << 24);
11153
11154 i |= 0xef000000;
11155 }
11156 else
11157 i |= 0xf2000000;
11158
11159 return i;
11160 }
11161
11162 /* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
11163 (0, 1, 2, 3). */
11164
11165 static unsigned
11166 neon_logbits (unsigned x)
11167 {
11168 return ffs (x) - 4;
11169 }
11170
11171 #define LOW4(R) ((R) & 0xf)
11172 #define HI1(R) (((R) >> 4) & 1)
11173
11174 /* Encode insns with bit pattern:
11175
11176 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
11177 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
11178
11179 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
11180 different meaning for some instruction. */
11181
11182 static void
11183 neon_three_same (int isquad, int ubit, int size)
11184 {
11185 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11186 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11187 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
11188 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
11189 inst.instruction |= LOW4 (inst.operands[2].reg);
11190 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
11191 inst.instruction |= (isquad != 0) << 6;
11192 inst.instruction |= (ubit != 0) << 24;
11193 if (size != -1)
11194 inst.instruction |= neon_logbits (size) << 20;
11195
11196 inst.instruction = neon_dp_fixup (inst.instruction);
11197 }
11198
11199 /* Encode instructions of the form:
11200
11201 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
11202 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
11203
11204 Don't write size if SIZE == -1. */
11205
11206 static void
11207 neon_two_same (int qbit, int ubit, int size)
11208 {
11209 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11210 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11211 inst.instruction |= LOW4 (inst.operands[1].reg);
11212 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
11213 inst.instruction |= (qbit != 0) << 6;
11214 inst.instruction |= (ubit != 0) << 24;
11215
11216 if (size != -1)
11217 inst.instruction |= neon_logbits (size) << 18;
11218
11219 inst.instruction = neon_dp_fixup (inst.instruction);
11220 }
11221
11222 /* Neon instruction encoders, in approximate order of appearance. */
11223
11224 static void
11225 do_neon_dyadic_i_su (void)
11226 {
11227 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11228 struct neon_type_el et = neon_check_type (3, rs,
11229 N_EQK, N_EQK, N_SU_32 | N_KEY);
11230 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
11231 }
11232
11233 static void
11234 do_neon_dyadic_i64_su (void)
11235 {
11236 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11237 struct neon_type_el et = neon_check_type (3, rs,
11238 N_EQK, N_EQK, N_SU_ALL | N_KEY);
11239 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
11240 }
11241
11242 static void
11243 neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
11244 unsigned immbits)
11245 {
11246 unsigned size = et.size >> 3;
11247 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11248 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11249 inst.instruction |= LOW4 (inst.operands[1].reg);
11250 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
11251 inst.instruction |= (isquad != 0) << 6;
11252 inst.instruction |= immbits << 16;
11253 inst.instruction |= (size >> 3) << 7;
11254 inst.instruction |= (size & 0x7) << 19;
11255 if (write_ubit)
11256 inst.instruction |= (uval != 0) << 24;
11257
11258 inst.instruction = neon_dp_fixup (inst.instruction);
11259 }
11260
11261 static void
11262 do_neon_shl_imm (void)
11263 {
11264 if (!inst.operands[2].isreg)
11265 {
11266 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
11267 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
11268 inst.instruction = NEON_ENC_IMMED (inst.instruction);
11269 neon_imm_shift (FALSE, 0, neon_quad (rs), et, inst.operands[2].imm);
11270 }
11271 else
11272 {
11273 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11274 struct neon_type_el et = neon_check_type (3, rs,
11275 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
11276 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
11277 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
11278 }
11279 }
11280
11281 static void
11282 do_neon_qshl_imm (void)
11283 {
11284 if (!inst.operands[2].isreg)
11285 {
11286 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
11287 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
11288 inst.instruction = NEON_ENC_IMMED (inst.instruction);
11289 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
11290 inst.operands[2].imm);
11291 }
11292 else
11293 {
11294 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11295 struct neon_type_el et = neon_check_type (3, rs,
11296 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
11297 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
11298 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
11299 }
11300 }
11301
11302 static int
11303 neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
11304 {
11305 /* Handle .I8 and .I64 as pseudo-instructions. */
11306 switch (size)
11307 {
11308 case 8:
11309 /* Unfortunately, this will make everything apart from zero out-of-range.
11310 FIXME is this the intended semantics? There doesn't seem much point in
11311 accepting .I8 if so. */
11312 immediate |= immediate << 8;
11313 size = 16;
11314 break;
11315 case 64:
11316 /* Similarly, anything other than zero will be replicated in bits [63:32],
11317 which probably isn't want we want if we specified .I64. */
11318 if (immediate != 0)
11319 goto bad_immediate;
11320 size = 32;
11321 break;
11322 default: ;
11323 }
11324
11325 if (immediate == (immediate & 0x000000ff))
11326 {
11327 *immbits = immediate;
11328 return (size == 16) ? 0x9 : 0x1;
11329 }
11330 else if (immediate == (immediate & 0x0000ff00))
11331 {
11332 *immbits = immediate >> 8;
11333 return (size == 16) ? 0xb : 0x3;
11334 }
11335 else if (immediate == (immediate & 0x00ff0000))
11336 {
11337 *immbits = immediate >> 16;
11338 return 0x5;
11339 }
11340 else if (immediate == (immediate & 0xff000000))
11341 {
11342 *immbits = immediate >> 24;
11343 return 0x7;
11344 }
11345
11346 bad_immediate:
11347 first_error (_("immediate value out of range"));
11348 return FAIL;
11349 }
11350
11351 /* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
11352 A, B, C, D. */
11353
11354 static int
11355 neon_bits_same_in_bytes (unsigned imm)
11356 {
11357 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
11358 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
11359 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
11360 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
11361 }
11362
11363 /* For immediate of above form, return 0bABCD. */
11364
11365 static unsigned
11366 neon_squash_bits (unsigned imm)
11367 {
11368 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
11369 | ((imm & 0x01000000) >> 21);
11370 }
11371
11372 /* Compress quarter-float representation to 0b...000 abcdefgh. */
11373
11374 static unsigned
11375 neon_qfloat_bits (unsigned imm)
11376 {
11377 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
11378 }
11379
11380 /* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
11381 the instruction. *OP is passed as the initial value of the op field, and
11382 may be set to a different value depending on the constant (i.e.
11383 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
11384 MVN). */
11385
11386 static int
11387 neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, unsigned *immbits,
11388 int *op, int size, enum neon_el_type type)
11389 {
11390 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
11391 {
11392 if (size != 32 || *op == 1)
11393 return FAIL;
11394 *immbits = neon_qfloat_bits (immlo);
11395 return 0xf;
11396 }
11397 else if (size == 64 && neon_bits_same_in_bytes (immhi)
11398 && neon_bits_same_in_bytes (immlo))
11399 {
11400 /* Check this one first so we don't have to bother with immhi in later
11401 tests. */
11402 if (*op == 1)
11403 return FAIL;
11404 *immbits = (neon_squash_bits (immhi) << 4) | neon_squash_bits (immlo);
11405 *op = 1;
11406 return 0xe;
11407 }
11408 else if (immhi != 0)
11409 return FAIL;
11410 else if (immlo == (immlo & 0x000000ff))
11411 {
11412 /* 64-bit case was already handled. Don't allow MVN with 8-bit
11413 immediate. */
11414 if ((size != 8 && size != 16 && size != 32)
11415 || (size == 8 && *op == 1))
11416 return FAIL;
11417 *immbits = immlo;
11418 return (size == 8) ? 0xe : (size == 16) ? 0x8 : 0x0;
11419 }
11420 else if (immlo == (immlo & 0x0000ff00))
11421 {
11422 if (size != 16 && size != 32)
11423 return FAIL;
11424 *immbits = immlo >> 8;
11425 return (size == 16) ? 0xa : 0x2;
11426 }
11427 else if (immlo == (immlo & 0x00ff0000))
11428 {
11429 if (size != 32)
11430 return FAIL;
11431 *immbits = immlo >> 16;
11432 return 0x4;
11433 }
11434 else if (immlo == (immlo & 0xff000000))
11435 {
11436 if (size != 32)
11437 return FAIL;
11438 *immbits = immlo >> 24;
11439 return 0x6;
11440 }
11441 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
11442 {
11443 if (size != 32)
11444 return FAIL;
11445 *immbits = (immlo >> 8) & 0xff;
11446 return 0xc;
11447 }
11448 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
11449 {
11450 if (size != 32)
11451 return FAIL;
11452 *immbits = (immlo >> 16) & 0xff;
11453 return 0xd;
11454 }
11455
11456 return FAIL;
11457 }
11458
11459 /* Write immediate bits [7:0] to the following locations:
11460
11461 |28/24|23 19|18 16|15 4|3 0|
11462 | 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|
11463
11464 This function is used by VMOV/VMVN/VORR/VBIC. */
11465
11466 static void
11467 neon_write_immbits (unsigned immbits)
11468 {
11469 inst.instruction |= immbits & 0xf;
11470 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
11471 inst.instruction |= ((immbits >> 7) & 0x1) << 24;
11472 }
11473
11474 /* Invert low-order SIZE bits of XHI:XLO. */
11475
11476 static void
11477 neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
11478 {
11479 unsigned immlo = xlo ? *xlo : 0;
11480 unsigned immhi = xhi ? *xhi : 0;
11481
11482 switch (size)
11483 {
11484 case 8:
11485 immlo = (~immlo) & 0xff;
11486 break;
11487
11488 case 16:
11489 immlo = (~immlo) & 0xffff;
11490 break;
11491
11492 case 64:
11493 immhi = (~immhi) & 0xffffffff;
11494 /* fall through. */
11495
11496 case 32:
11497 immlo = (~immlo) & 0xffffffff;
11498 break;
11499
11500 default:
11501 abort ();
11502 }
11503
11504 if (xlo)
11505 *xlo = immlo;
11506
11507 if (xhi)
11508 *xhi = immhi;
11509 }
11510
11511 static void
11512 do_neon_logic (void)
11513 {
11514 if (inst.operands[2].present && inst.operands[2].isreg)
11515 {
11516 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11517 neon_check_type (3, rs, N_IGNORE_TYPE);
11518 /* U bit and size field were set as part of the bitmask. */
11519 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
11520 neon_three_same (neon_quad (rs), 0, -1);
11521 }
11522 else
11523 {
11524 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
11525 struct neon_type_el et = neon_check_type (2, rs,
11526 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
11527 enum neon_opc opcode = inst.instruction & 0x0fffffff;
11528 unsigned immbits;
11529 int cmode;
11530
11531 if (et.type == NT_invtype)
11532 return;
11533
11534 inst.instruction = NEON_ENC_IMMED (inst.instruction);
11535
11536 switch (opcode)
11537 {
11538 case N_MNEM_vbic:
11539 cmode = neon_cmode_for_logic_imm (inst.operands[1].imm, &immbits,
11540 et.size);
11541 break;
11542
11543 case N_MNEM_vorr:
11544 cmode = neon_cmode_for_logic_imm (inst.operands[1].imm, &immbits,
11545 et.size);
11546 break;
11547
11548 case N_MNEM_vand:
11549 /* Pseudo-instruction for VBIC. */
11550 immbits = inst.operands[1].imm;
11551 neon_invert_size (&immbits, 0, et.size);
11552 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
11553 break;
11554
11555 case N_MNEM_vorn:
11556 /* Pseudo-instruction for VORR. */
11557 immbits = inst.operands[1].imm;
11558 neon_invert_size (&immbits, 0, et.size);
11559 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
11560 break;
11561
11562 default:
11563 abort ();
11564 }
11565
11566 if (cmode == FAIL)
11567 return;
11568
11569 inst.instruction |= neon_quad (rs) << 6;
11570 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11571 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11572 inst.instruction |= cmode << 8;
11573 neon_write_immbits (immbits);
11574
11575 inst.instruction = neon_dp_fixup (inst.instruction);
11576 }
11577 }
11578
11579 static void
11580 do_neon_bitfield (void)
11581 {
11582 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11583 neon_check_type (3, rs, N_IGNORE_TYPE);
11584 neon_three_same (neon_quad (rs), 0, -1);
11585 }
11586
11587 static void
11588 neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
11589 unsigned destbits)
11590 {
11591 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11592 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
11593 types | N_KEY);
11594 if (et.type == NT_float)
11595 {
11596 inst.instruction = NEON_ENC_FLOAT (inst.instruction);
11597 neon_three_same (neon_quad (rs), 0, -1);
11598 }
11599 else
11600 {
11601 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
11602 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
11603 }
11604 }
11605
11606 static void
11607 do_neon_dyadic_if_su (void)
11608 {
11609 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
11610 }
11611
11612 static void
11613 do_neon_dyadic_if_su_d (void)
11614 {
11615 /* This version only allow D registers, but that constraint is enforced during
11616 operand parsing so we don't need to do anything extra here. */
11617 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
11618 }
11619
11620 static void
11621 do_neon_dyadic_if_i_d (void)
11622 {
11623 /* The "untyped" case can't happen. Do this to stop the "U" bit being
11624 affected if we specify unsigned args. */
11625 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
11626 }
11627
11628 enum vfp_or_neon_is_neon_bits
11629 {
11630 NEON_CHECK_CC = 1,
11631 NEON_CHECK_ARCH = 2
11632 };
11633
11634 /* Call this function if an instruction which may have belonged to the VFP or
11635 Neon instruction sets, but turned out to be a Neon instruction (due to the
11636 operand types involved, etc.). We have to check and/or fix-up a couple of
11637 things:
11638
11639 - Make sure the user hasn't attempted to make a Neon instruction
11640 conditional.
11641 - Alter the value in the condition code field if necessary.
11642 - Make sure that the arch supports Neon instructions.
11643
11644 Which of these operations take place depends on bits from enum
11645 vfp_or_neon_is_neon_bits.
11646
11647 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
11648 current instruction's condition is COND_ALWAYS, the condition field is
11649 changed to inst.uncond_value. This is necessary because instructions shared
11650 between VFP and Neon may be conditional for the VFP variants only, and the
11651 unconditional Neon version must have, e.g., 0xF in the condition field. */
11652
11653 static int
11654 vfp_or_neon_is_neon (unsigned check)
11655 {
11656 /* Conditions are always legal in Thumb mode (IT blocks). */
11657 if (!thumb_mode && (check & NEON_CHECK_CC))
11658 {
11659 if (inst.cond != COND_ALWAYS)
11660 {
11661 first_error (_(BAD_COND));
11662 return FAIL;
11663 }
11664 if (inst.uncond_value != -1)
11665 inst.instruction |= inst.uncond_value << 28;
11666 }
11667
11668 if ((check & NEON_CHECK_ARCH)
11669 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
11670 {
11671 first_error (_(BAD_FPU));
11672 return FAIL;
11673 }
11674
11675 return SUCCESS;
11676 }
11677
11678 static void
11679 do_neon_addsub_if_i (void)
11680 {
11681 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
11682 return;
11683
11684 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
11685 return;
11686
11687 /* The "untyped" case can't happen. Do this to stop the "U" bit being
11688 affected if we specify unsigned args. */
11689 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
11690 }
11691
11692 /* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
11693 result to be:
11694 V<op> A,B (A is operand 0, B is operand 2)
11695 to mean:
11696 V<op> A,B,A
11697 not:
11698 V<op> A,B,B
11699 so handle that case specially. */
11700
11701 static void
11702 neon_exchange_operands (void)
11703 {
11704 void *scratch = alloca (sizeof (inst.operands[0]));
11705 if (inst.operands[1].present)
11706 {
11707 /* Swap operands[1] and operands[2]. */
11708 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
11709 inst.operands[1] = inst.operands[2];
11710 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
11711 }
11712 else
11713 {
11714 inst.operands[1] = inst.operands[2];
11715 inst.operands[2] = inst.operands[0];
11716 }
11717 }
11718
11719 static void
11720 neon_compare (unsigned regtypes, unsigned immtypes, int invert)
11721 {
11722 if (inst.operands[2].isreg)
11723 {
11724 if (invert)
11725 neon_exchange_operands ();
11726 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
11727 }
11728 else
11729 {
11730 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
11731 struct neon_type_el et = neon_check_type (2, rs,
11732 N_EQK | N_SIZ, immtypes | N_KEY);
11733
11734 inst.instruction = NEON_ENC_IMMED (inst.instruction);
11735 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11736 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11737 inst.instruction |= LOW4 (inst.operands[1].reg);
11738 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
11739 inst.instruction |= neon_quad (rs) << 6;
11740 inst.instruction |= (et.type == NT_float) << 10;
11741 inst.instruction |= neon_logbits (et.size) << 18;
11742
11743 inst.instruction = neon_dp_fixup (inst.instruction);
11744 }
11745 }
11746
11747 static void
11748 do_neon_cmp (void)
11749 {
11750 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
11751 }
11752
11753 static void
11754 do_neon_cmp_inv (void)
11755 {
11756 neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
11757 }
11758
11759 static void
11760 do_neon_ceq (void)
11761 {
11762 neon_compare (N_IF_32, N_IF_32, FALSE);
11763 }
11764
11765 /* For multiply instructions, we have the possibility of 16-bit or 32-bit
11766 scalars, which are encoded in 5 bits, M : Rm.
11767 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
11768 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
11769 index in M. */
11770
11771 static unsigned
11772 neon_scalar_for_mul (unsigned scalar, unsigned elsize)
11773 {
11774 unsigned regno = NEON_SCALAR_REG (scalar);
11775 unsigned elno = NEON_SCALAR_INDEX (scalar);
11776
11777 switch (elsize)
11778 {
11779 case 16:
11780 if (regno > 7 || elno > 3)
11781 goto bad_scalar;
11782 return regno | (elno << 3);
11783
11784 case 32:
11785 if (regno > 15 || elno > 1)
11786 goto bad_scalar;
11787 return regno | (elno << 4);
11788
11789 default:
11790 bad_scalar:
11791 first_error (_("scalar out of range for multiply instruction"));
11792 }
11793
11794 return 0;
11795 }
11796
11797 /* Encode multiply / multiply-accumulate scalar instructions. */
11798
11799 static void
11800 neon_mul_mac (struct neon_type_el et, int ubit)
11801 {
11802 unsigned scalar;
11803
11804 /* Give a more helpful error message if we have an invalid type. */
11805 if (et.type == NT_invtype)
11806 return;
11807
11808 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
11809 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11810 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11811 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
11812 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
11813 inst.instruction |= LOW4 (scalar);
11814 inst.instruction |= HI1 (scalar) << 5;
11815 inst.instruction |= (et.type == NT_float) << 8;
11816 inst.instruction |= neon_logbits (et.size) << 20;
11817 inst.instruction |= (ubit != 0) << 24;
11818
11819 inst.instruction = neon_dp_fixup (inst.instruction);
11820 }
11821
11822 static void
11823 do_neon_mac_maybe_scalar (void)
11824 {
11825 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
11826 return;
11827
11828 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
11829 return;
11830
11831 if (inst.operands[2].isscalar)
11832 {
11833 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
11834 struct neon_type_el et = neon_check_type (3, rs,
11835 N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
11836 inst.instruction = NEON_ENC_SCALAR (inst.instruction);
11837 neon_mul_mac (et, neon_quad (rs));
11838 }
11839 else
11840 {
11841 /* The "untyped" case can't happen. Do this to stop the "U" bit being
11842 affected if we specify unsigned args. */
11843 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
11844 }
11845 }
11846
11847 static void
11848 do_neon_tst (void)
11849 {
11850 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11851 struct neon_type_el et = neon_check_type (3, rs,
11852 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
11853 neon_three_same (neon_quad (rs), 0, et.size);
11854 }
11855
11856 /* VMUL with 3 registers allows the P8 type. The scalar version supports the
11857 same types as the MAC equivalents. The polynomial type for this instruction
11858 is encoded the same as the integer type. */
11859
11860 static void
11861 do_neon_mul (void)
11862 {
11863 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
11864 return;
11865
11866 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
11867 return;
11868
11869 if (inst.operands[2].isscalar)
11870 do_neon_mac_maybe_scalar ();
11871 else
11872 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
11873 }
11874
11875 static void
11876 do_neon_qdmulh (void)
11877 {
11878 if (inst.operands[2].isscalar)
11879 {
11880 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
11881 struct neon_type_el et = neon_check_type (3, rs,
11882 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
11883 inst.instruction = NEON_ENC_SCALAR (inst.instruction);
11884 neon_mul_mac (et, neon_quad (rs));
11885 }
11886 else
11887 {
11888 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11889 struct neon_type_el et = neon_check_type (3, rs,
11890 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
11891 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
11892 /* The U bit (rounding) comes from bit mask. */
11893 neon_three_same (neon_quad (rs), 0, et.size);
11894 }
11895 }
11896
11897 static void
11898 do_neon_fcmp_absolute (void)
11899 {
11900 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11901 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
11902 /* Size field comes from bit mask. */
11903 neon_three_same (neon_quad (rs), 1, -1);
11904 }
11905
11906 static void
11907 do_neon_fcmp_absolute_inv (void)
11908 {
11909 neon_exchange_operands ();
11910 do_neon_fcmp_absolute ();
11911 }
11912
11913 static void
11914 do_neon_step (void)
11915 {
11916 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
11917 neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
11918 neon_three_same (neon_quad (rs), 0, -1);
11919 }
11920
11921 static void
11922 do_neon_abs_neg (void)
11923 {
11924 enum neon_shape rs;
11925 struct neon_type_el et;
11926
11927 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
11928 return;
11929
11930 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
11931 return;
11932
11933 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
11934 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
11935
11936 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
11937 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
11938 inst.instruction |= LOW4 (inst.operands[1].reg);
11939 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
11940 inst.instruction |= neon_quad (rs) << 6;
11941 inst.instruction |= (et.type == NT_float) << 10;
11942 inst.instruction |= neon_logbits (et.size) << 18;
11943
11944 inst.instruction = neon_dp_fixup (inst.instruction);
11945 }
11946
11947 static void
11948 do_neon_sli (void)
11949 {
11950 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
11951 struct neon_type_el et = neon_check_type (2, rs,
11952 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
11953 int imm = inst.operands[2].imm;
11954 constraint (imm < 0 || (unsigned)imm >= et.size,
11955 _("immediate out of range for insert"));
11956 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
11957 }
11958
11959 static void
11960 do_neon_sri (void)
11961 {
11962 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
11963 struct neon_type_el et = neon_check_type (2, rs,
11964 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
11965 int imm = inst.operands[2].imm;
11966 constraint (imm < 1 || (unsigned)imm > et.size,
11967 _("immediate out of range for insert"));
11968 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
11969 }
11970
11971 static void
11972 do_neon_qshlu_imm (void)
11973 {
11974 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
11975 struct neon_type_el et = neon_check_type (2, rs,
11976 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
11977 int imm = inst.operands[2].imm;
11978 constraint (imm < 0 || (unsigned)imm >= et.size,
11979 _("immediate out of range for shift"));
11980 /* Only encodes the 'U present' variant of the instruction.
11981 In this case, signed types have OP (bit 8) set to 0.
11982 Unsigned types have OP set to 1. */
11983 inst.instruction |= (et.type == NT_unsigned) << 8;
11984 /* The rest of the bits are the same as other immediate shifts. */
11985 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
11986 }
11987
11988 static void
11989 do_neon_qmovn (void)
11990 {
11991 struct neon_type_el et = neon_check_type (2, NS_DQ,
11992 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
11993 /* Saturating move where operands can be signed or unsigned, and the
11994 destination has the same signedness. */
11995 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
11996 if (et.type == NT_unsigned)
11997 inst.instruction |= 0xc0;
11998 else
11999 inst.instruction |= 0x80;
12000 neon_two_same (0, 1, et.size / 2);
12001 }
12002
12003 static void
12004 do_neon_qmovun (void)
12005 {
12006 struct neon_type_el et = neon_check_type (2, NS_DQ,
12007 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
12008 /* Saturating move with unsigned results. Operands must be signed. */
12009 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12010 neon_two_same (0, 1, et.size / 2);
12011 }
12012
12013 static void
12014 do_neon_rshift_sat_narrow (void)
12015 {
12016 /* FIXME: Types for narrowing. If operands are signed, results can be signed
12017 or unsigned. If operands are unsigned, results must also be unsigned. */
12018 struct neon_type_el et = neon_check_type (2, NS_DQI,
12019 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
12020 int imm = inst.operands[2].imm;
12021 /* This gets the bounds check, size encoding and immediate bits calculation
12022 right. */
12023 et.size /= 2;
12024
12025 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
12026 VQMOVN.I<size> <Dd>, <Qm>. */
12027 if (imm == 0)
12028 {
12029 inst.operands[2].present = 0;
12030 inst.instruction = N_MNEM_vqmovn;
12031 do_neon_qmovn ();
12032 return;
12033 }
12034
12035 constraint (imm < 1 || (unsigned)imm > et.size,
12036 _("immediate out of range"));
12037 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
12038 }
12039
12040 static void
12041 do_neon_rshift_sat_narrow_u (void)
12042 {
12043 /* FIXME: Types for narrowing. If operands are signed, results can be signed
12044 or unsigned. If operands are unsigned, results must also be unsigned. */
12045 struct neon_type_el et = neon_check_type (2, NS_DQI,
12046 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
12047 int imm = inst.operands[2].imm;
12048 /* This gets the bounds check, size encoding and immediate bits calculation
12049 right. */
12050 et.size /= 2;
12051
12052 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
12053 VQMOVUN.I<size> <Dd>, <Qm>. */
12054 if (imm == 0)
12055 {
12056 inst.operands[2].present = 0;
12057 inst.instruction = N_MNEM_vqmovun;
12058 do_neon_qmovun ();
12059 return;
12060 }
12061
12062 constraint (imm < 1 || (unsigned)imm > et.size,
12063 _("immediate out of range"));
12064 /* FIXME: The manual is kind of unclear about what value U should have in
12065 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
12066 must be 1. */
12067 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
12068 }
12069
12070 static void
12071 do_neon_movn (void)
12072 {
12073 struct neon_type_el et = neon_check_type (2, NS_DQ,
12074 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
12075 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12076 neon_two_same (0, 1, et.size / 2);
12077 }
12078
12079 static void
12080 do_neon_rshift_narrow (void)
12081 {
12082 struct neon_type_el et = neon_check_type (2, NS_DQI,
12083 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
12084 int imm = inst.operands[2].imm;
12085 /* This gets the bounds check, size encoding and immediate bits calculation
12086 right. */
12087 et.size /= 2;
12088
12089 /* If immediate is zero then we are a pseudo-instruction for
12090 VMOVN.I<size> <Dd>, <Qm> */
12091 if (imm == 0)
12092 {
12093 inst.operands[2].present = 0;
12094 inst.instruction = N_MNEM_vmovn;
12095 do_neon_movn ();
12096 return;
12097 }
12098
12099 constraint (imm < 1 || (unsigned)imm > et.size,
12100 _("immediate out of range for narrowing operation"));
12101 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
12102 }
12103
12104 static void
12105 do_neon_shll (void)
12106 {
12107 /* FIXME: Type checking when lengthening. */
12108 struct neon_type_el et = neon_check_type (2, NS_QDI,
12109 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
12110 unsigned imm = inst.operands[2].imm;
12111
12112 if (imm == et.size)
12113 {
12114 /* Maximum shift variant. */
12115 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12116 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12117 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12118 inst.instruction |= LOW4 (inst.operands[1].reg);
12119 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12120 inst.instruction |= neon_logbits (et.size) << 18;
12121
12122 inst.instruction = neon_dp_fixup (inst.instruction);
12123 }
12124 else
12125 {
12126 /* A more-specific type check for non-max versions. */
12127 et = neon_check_type (2, NS_QDI,
12128 N_EQK | N_DBL, N_SU_32 | N_KEY);
12129 inst.instruction = NEON_ENC_IMMED (inst.instruction);
12130 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
12131 }
12132 }
12133
12134 /* Check the various types for the VCVT instruction, and return which version
12135 the current instruction is. */
12136
12137 static int
12138 neon_cvt_flavour (enum neon_shape rs)
12139 {
12140 #define CVT_VAR(C,X,Y) \
12141 et = neon_check_type (2, rs, whole_reg | (X), whole_reg | (Y)); \
12142 if (et.type != NT_invtype) \
12143 { \
12144 inst.error = NULL; \
12145 return (C); \
12146 }
12147 struct neon_type_el et;
12148 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
12149 || rs == NS_FF) ? N_VFP : 0;
12150 /* The instruction versions which take an immediate take one register
12151 argument, which is extended to the width of the full register. Thus the
12152 "source" and "destination" registers must have the same width. Hack that
12153 here by making the size equal to the key (wider, in this case) operand. */
12154 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
12155
12156 CVT_VAR (0, N_S32, N_F32);
12157 CVT_VAR (1, N_U32, N_F32);
12158 CVT_VAR (2, N_F32, N_S32);
12159 CVT_VAR (3, N_F32, N_U32);
12160
12161 whole_reg = N_VFP;
12162
12163 /* VFP instructions. */
12164 CVT_VAR (4, N_F32, N_F64);
12165 CVT_VAR (5, N_F64, N_F32);
12166 CVT_VAR (6, N_S32, N_F64 | key);
12167 CVT_VAR (7, N_U32, N_F64 | key);
12168 CVT_VAR (8, N_F64 | key, N_S32);
12169 CVT_VAR (9, N_F64 | key, N_U32);
12170 /* VFP instructions with bitshift. */
12171 CVT_VAR (10, N_F32 | key, N_S16);
12172 CVT_VAR (11, N_F32 | key, N_U16);
12173 CVT_VAR (12, N_F64 | key, N_S16);
12174 CVT_VAR (13, N_F64 | key, N_U16);
12175 CVT_VAR (14, N_S16, N_F32 | key);
12176 CVT_VAR (15, N_U16, N_F32 | key);
12177 CVT_VAR (16, N_S16, N_F64 | key);
12178 CVT_VAR (17, N_U16, N_F64 | key);
12179
12180 return -1;
12181 #undef CVT_VAR
12182 }
12183
12184 /* Neon-syntax VFP conversions. */
12185
12186 static void
12187 do_vfp_nsyn_cvt (enum neon_shape rs, int flavour)
12188 {
12189 const char *opname = 0;
12190
12191 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
12192 {
12193 /* Conversions with immediate bitshift. */
12194 const char *enc[] =
12195 {
12196 "ftosls",
12197 "ftouls",
12198 "fsltos",
12199 "fultos",
12200 NULL,
12201 NULL,
12202 "ftosld",
12203 "ftould",
12204 "fsltod",
12205 "fultod",
12206 "fshtos",
12207 "fuhtos",
12208 "fshtod",
12209 "fuhtod",
12210 "ftoshs",
12211 "ftouhs",
12212 "ftoshd",
12213 "ftouhd"
12214 };
12215
12216 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc))
12217 {
12218 opname = enc[flavour];
12219 constraint (inst.operands[0].reg != inst.operands[1].reg,
12220 _("operands 0 and 1 must be the same register"));
12221 inst.operands[1] = inst.operands[2];
12222 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
12223 }
12224 }
12225 else
12226 {
12227 /* Conversions without bitshift. */
12228 const char *enc[] =
12229 {
12230 "ftosis",
12231 "ftouis",
12232 "fsitos",
12233 "fuitos",
12234 "fcvtsd",
12235 "fcvtds",
12236 "ftosid",
12237 "ftouid",
12238 "fsitod",
12239 "fuitod"
12240 };
12241
12242 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc))
12243 opname = enc[flavour];
12244 }
12245
12246 if (opname)
12247 do_vfp_nsyn_opcode (opname);
12248 }
12249
12250 static void
12251 do_vfp_nsyn_cvtz (void)
12252 {
12253 enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
12254 int flavour = neon_cvt_flavour (rs);
12255 const char *enc[] =
12256 {
12257 "ftosizs",
12258 "ftouizs",
12259 NULL,
12260 NULL,
12261 NULL,
12262 NULL,
12263 "ftosizd",
12264 "ftouizd"
12265 };
12266
12267 if (flavour >= 0 && flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
12268 do_vfp_nsyn_opcode (enc[flavour]);
12269 }
12270
12271 static void
12272 do_neon_cvt (void)
12273 {
12274 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
12275 NS_FD, NS_DF, NS_FF, NS_NULL);
12276 int flavour = neon_cvt_flavour (rs);
12277
12278 /* VFP rather than Neon conversions. */
12279 if (flavour >= 4)
12280 {
12281 do_vfp_nsyn_cvt (rs, flavour);
12282 return;
12283 }
12284
12285 switch (rs)
12286 {
12287 case NS_DDI:
12288 case NS_QQI:
12289 {
12290 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
12291 return;
12292
12293 /* Fixed-point conversion with #0 immediate is encoded as an
12294 integer conversion. */
12295 if (inst.operands[2].present && inst.operands[2].imm == 0)
12296 goto int_encode;
12297 unsigned immbits = 32 - inst.operands[2].imm;
12298 unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
12299 inst.instruction = NEON_ENC_IMMED (inst.instruction);
12300 if (flavour != -1)
12301 inst.instruction |= enctab[flavour];
12302 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12303 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12304 inst.instruction |= LOW4 (inst.operands[1].reg);
12305 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12306 inst.instruction |= neon_quad (rs) << 6;
12307 inst.instruction |= 1 << 21;
12308 inst.instruction |= immbits << 16;
12309
12310 inst.instruction = neon_dp_fixup (inst.instruction);
12311 }
12312 break;
12313
12314 case NS_DD:
12315 case NS_QQ:
12316 int_encode:
12317 {
12318 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
12319
12320 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12321
12322 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
12323 return;
12324
12325 if (flavour != -1)
12326 inst.instruction |= enctab[flavour];
12327
12328 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12329 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12330 inst.instruction |= LOW4 (inst.operands[1].reg);
12331 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12332 inst.instruction |= neon_quad (rs) << 6;
12333 inst.instruction |= 2 << 18;
12334
12335 inst.instruction = neon_dp_fixup (inst.instruction);
12336 }
12337 break;
12338
12339 default:
12340 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
12341 do_vfp_nsyn_cvt (rs, flavour);
12342 }
12343 }
12344
12345 static void
12346 neon_move_immediate (void)
12347 {
12348 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
12349 struct neon_type_el et = neon_check_type (2, rs,
12350 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
12351 unsigned immlo, immhi = 0, immbits;
12352 int op, cmode;
12353
12354 constraint (et.type == NT_invtype,
12355 _("operand size must be specified for immediate VMOV"));
12356
12357 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
12358 op = (inst.instruction & (1 << 5)) != 0;
12359
12360 immlo = inst.operands[1].imm;
12361 if (inst.operands[1].regisimm)
12362 immhi = inst.operands[1].reg;
12363
12364 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
12365 _("immediate has bits set outside the operand size"));
12366
12367 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, &immbits, &op,
12368 et.size, et.type)) == FAIL)
12369 {
12370 /* Invert relevant bits only. */
12371 neon_invert_size (&immlo, &immhi, et.size);
12372 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
12373 with one or the other; those cases are caught by
12374 neon_cmode_for_move_imm. */
12375 op = !op;
12376 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, &immbits, &op,
12377 et.size, et.type)) == FAIL)
12378 {
12379 first_error (_("immediate out of range"));
12380 return;
12381 }
12382 }
12383
12384 inst.instruction &= ~(1 << 5);
12385 inst.instruction |= op << 5;
12386
12387 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12388 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12389 inst.instruction |= neon_quad (rs) << 6;
12390 inst.instruction |= cmode << 8;
12391
12392 neon_write_immbits (immbits);
12393 }
12394
12395 static void
12396 do_neon_mvn (void)
12397 {
12398 if (inst.operands[1].isreg)
12399 {
12400 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12401
12402 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12403 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12404 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12405 inst.instruction |= LOW4 (inst.operands[1].reg);
12406 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12407 inst.instruction |= neon_quad (rs) << 6;
12408 }
12409 else
12410 {
12411 inst.instruction = NEON_ENC_IMMED (inst.instruction);
12412 neon_move_immediate ();
12413 }
12414
12415 inst.instruction = neon_dp_fixup (inst.instruction);
12416 }
12417
12418 /* Encode instructions of form:
12419
12420 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
12421 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm |
12422
12423 */
12424
12425 static void
12426 neon_mixed_length (struct neon_type_el et, unsigned size)
12427 {
12428 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12429 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12430 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
12431 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
12432 inst.instruction |= LOW4 (inst.operands[2].reg);
12433 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
12434 inst.instruction |= (et.type == NT_unsigned) << 24;
12435 inst.instruction |= neon_logbits (size) << 20;
12436
12437 inst.instruction = neon_dp_fixup (inst.instruction);
12438 }
12439
12440 static void
12441 do_neon_dyadic_long (void)
12442 {
12443 /* FIXME: Type checking for lengthening op. */
12444 struct neon_type_el et = neon_check_type (3, NS_QDD,
12445 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
12446 neon_mixed_length (et, et.size);
12447 }
12448
12449 static void
12450 do_neon_abal (void)
12451 {
12452 struct neon_type_el et = neon_check_type (3, NS_QDD,
12453 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
12454 neon_mixed_length (et, et.size);
12455 }
12456
12457 static void
12458 neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
12459 {
12460 if (inst.operands[2].isscalar)
12461 {
12462 struct neon_type_el et = neon_check_type (3, NS_QDS,
12463 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
12464 inst.instruction = NEON_ENC_SCALAR (inst.instruction);
12465 neon_mul_mac (et, et.type == NT_unsigned);
12466 }
12467 else
12468 {
12469 struct neon_type_el et = neon_check_type (3, NS_QDD,
12470 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
12471 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12472 neon_mixed_length (et, et.size);
12473 }
12474 }
12475
12476 static void
12477 do_neon_mac_maybe_scalar_long (void)
12478 {
12479 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
12480 }
12481
12482 static void
12483 do_neon_dyadic_wide (void)
12484 {
12485 struct neon_type_el et = neon_check_type (3, NS_QQD,
12486 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
12487 neon_mixed_length (et, et.size);
12488 }
12489
12490 static void
12491 do_neon_dyadic_narrow (void)
12492 {
12493 struct neon_type_el et = neon_check_type (3, NS_QDD,
12494 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
12495 /* Operand sign is unimportant, and the U bit is part of the opcode,
12496 so force the operand type to integer. */
12497 et.type = NT_integer;
12498 neon_mixed_length (et, et.size / 2);
12499 }
12500
12501 static void
12502 do_neon_mul_sat_scalar_long (void)
12503 {
12504 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
12505 }
12506
12507 static void
12508 do_neon_vmull (void)
12509 {
12510 if (inst.operands[2].isscalar)
12511 do_neon_mac_maybe_scalar_long ();
12512 else
12513 {
12514 struct neon_type_el et = neon_check_type (3, NS_QDD,
12515 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_KEY);
12516 if (et.type == NT_poly)
12517 inst.instruction = NEON_ENC_POLY (inst.instruction);
12518 else
12519 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12520 /* For polynomial encoding, size field must be 0b00 and the U bit must be
12521 zero. Should be OK as-is. */
12522 neon_mixed_length (et, et.size);
12523 }
12524 }
12525
12526 static void
12527 do_neon_ext (void)
12528 {
12529 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
12530 struct neon_type_el et = neon_check_type (3, rs,
12531 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
12532 unsigned imm = (inst.operands[3].imm * et.size) / 8;
12533 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12534 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12535 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
12536 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
12537 inst.instruction |= LOW4 (inst.operands[2].reg);
12538 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
12539 inst.instruction |= neon_quad (rs) << 6;
12540 inst.instruction |= imm << 8;
12541
12542 inst.instruction = neon_dp_fixup (inst.instruction);
12543 }
12544
12545 static void
12546 do_neon_rev (void)
12547 {
12548 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12549 struct neon_type_el et = neon_check_type (2, rs,
12550 N_EQK, N_8 | N_16 | N_32 | N_KEY);
12551 unsigned op = (inst.instruction >> 7) & 3;
12552 /* N (width of reversed regions) is encoded as part of the bitmask. We
12553 extract it here to check the elements to be reversed are smaller.
12554 Otherwise we'd get a reserved instruction. */
12555 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
12556 assert (elsize != 0);
12557 constraint (et.size >= elsize,
12558 _("elements must be smaller than reversal region"));
12559 neon_two_same (neon_quad (rs), 1, et.size);
12560 }
12561
12562 static void
12563 do_neon_dup (void)
12564 {
12565 if (inst.operands[1].isscalar)
12566 {
12567 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
12568 struct neon_type_el et = neon_check_type (2, rs,
12569 N_EQK, N_8 | N_16 | N_32 | N_KEY);
12570 unsigned sizebits = et.size >> 3;
12571 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
12572 int logsize = neon_logbits (et.size);
12573 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
12574
12575 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
12576 return;
12577
12578 inst.instruction = NEON_ENC_SCALAR (inst.instruction);
12579 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12580 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12581 inst.instruction |= LOW4 (dm);
12582 inst.instruction |= HI1 (dm) << 5;
12583 inst.instruction |= neon_quad (rs) << 6;
12584 inst.instruction |= x << 17;
12585 inst.instruction |= sizebits << 16;
12586
12587 inst.instruction = neon_dp_fixup (inst.instruction);
12588 }
12589 else
12590 {
12591 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
12592 struct neon_type_el et = neon_check_type (2, rs,
12593 N_8 | N_16 | N_32 | N_KEY, N_EQK);
12594 /* Duplicate ARM register to lanes of vector. */
12595 inst.instruction = NEON_ENC_ARMREG (inst.instruction);
12596 switch (et.size)
12597 {
12598 case 8: inst.instruction |= 0x400000; break;
12599 case 16: inst.instruction |= 0x000020; break;
12600 case 32: inst.instruction |= 0x000000; break;
12601 default: break;
12602 }
12603 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
12604 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
12605 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
12606 inst.instruction |= neon_quad (rs) << 21;
12607 /* The encoding for this instruction is identical for the ARM and Thumb
12608 variants, except for the condition field. */
12609 do_vfp_cond_or_thumb ();
12610 }
12611 }
12612
12613 /* VMOV has particularly many variations. It can be one of:
12614 0. VMOV<c><q> <Qd>, <Qm>
12615 1. VMOV<c><q> <Dd>, <Dm>
12616 (Register operations, which are VORR with Rm = Rn.)
12617 2. VMOV<c><q>.<dt> <Qd>, #<imm>
12618 3. VMOV<c><q>.<dt> <Dd>, #<imm>
12619 (Immediate loads.)
12620 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
12621 (ARM register to scalar.)
12622 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
12623 (Two ARM registers to vector.)
12624 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
12625 (Scalar to ARM register.)
12626 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
12627 (Vector to two ARM registers.)
12628 8. VMOV.F32 <Sd>, <Sm>
12629 9. VMOV.F64 <Dd>, <Dm>
12630 (VFP register moves.)
12631 10. VMOV.F32 <Sd>, #imm
12632 11. VMOV.F64 <Dd>, #imm
12633 (VFP float immediate load.)
12634 12. VMOV <Rd>, <Sm>
12635 (VFP single to ARM reg.)
12636 13. VMOV <Sd>, <Rm>
12637 (ARM reg to VFP single.)
12638 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
12639 (Two ARM regs to two VFP singles.)
12640 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
12641 (Two VFP singles to two ARM regs.)
12642
12643 These cases can be disambiguated using neon_select_shape, except cases 1/9
12644 and 3/11 which depend on the operand type too.
12645
12646 All the encoded bits are hardcoded by this function.
12647
12648 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
12649 Cases 5, 7 may be used with VFPv2 and above.
12650
12651 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
12652 can specify a type where it doesn't make sense to, and is ignored).
12653 */
12654
12655 static void
12656 do_neon_mov (void)
12657 {
12658 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
12659 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
12660 NS_NULL);
12661 struct neon_type_el et;
12662 const char *ldconst = 0;
12663
12664 switch (rs)
12665 {
12666 case NS_DD: /* case 1/9. */
12667 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
12668 /* It is not an error here if no type is given. */
12669 inst.error = NULL;
12670 if (et.type == NT_float && et.size == 64)
12671 {
12672 do_vfp_nsyn_opcode ("fcpyd");
12673 break;
12674 }
12675 /* fall through. */
12676
12677 case NS_QQ: /* case 0/1. */
12678 {
12679 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
12680 return;
12681 /* The architecture manual I have doesn't explicitly state which
12682 value the U bit should have for register->register moves, but
12683 the equivalent VORR instruction has U = 0, so do that. */
12684 inst.instruction = 0x0200110;
12685 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12686 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12687 inst.instruction |= LOW4 (inst.operands[1].reg);
12688 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
12689 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
12690 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
12691 inst.instruction |= neon_quad (rs) << 6;
12692
12693 inst.instruction = neon_dp_fixup (inst.instruction);
12694 }
12695 break;
12696
12697 case NS_DI: /* case 3/11. */
12698 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
12699 inst.error = NULL;
12700 if (et.type == NT_float && et.size == 64)
12701 {
12702 /* case 11 (fconstd). */
12703 ldconst = "fconstd";
12704 goto encode_fconstd;
12705 }
12706 /* fall through. */
12707
12708 case NS_QI: /* case 2/3. */
12709 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
12710 return;
12711 inst.instruction = 0x0800010;
12712 neon_move_immediate ();
12713 inst.instruction = neon_dp_fixup (inst.instruction);
12714 break;
12715
12716 case NS_SR: /* case 4. */
12717 {
12718 unsigned bcdebits = 0;
12719 struct neon_type_el et = neon_check_type (2, NS_NULL,
12720 N_8 | N_16 | N_32 | N_KEY, N_EQK);
12721 int logsize = neon_logbits (et.size);
12722 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
12723 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
12724
12725 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
12726 _(BAD_FPU));
12727 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
12728 && et.size != 32, _(BAD_FPU));
12729 constraint (et.type == NT_invtype, _("bad type for scalar"));
12730 constraint (x >= 64 / et.size, _("scalar index out of range"));
12731
12732 switch (et.size)
12733 {
12734 case 8: bcdebits = 0x8; break;
12735 case 16: bcdebits = 0x1; break;
12736 case 32: bcdebits = 0x0; break;
12737 default: ;
12738 }
12739
12740 bcdebits |= x << logsize;
12741
12742 inst.instruction = 0xe000b10;
12743 do_vfp_cond_or_thumb ();
12744 inst.instruction |= LOW4 (dn) << 16;
12745 inst.instruction |= HI1 (dn) << 7;
12746 inst.instruction |= inst.operands[1].reg << 12;
12747 inst.instruction |= (bcdebits & 3) << 5;
12748 inst.instruction |= (bcdebits >> 2) << 21;
12749 }
12750 break;
12751
12752 case NS_DRR: /* case 5 (fmdrr). */
12753 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
12754 _(BAD_FPU));
12755
12756 inst.instruction = 0xc400b10;
12757 do_vfp_cond_or_thumb ();
12758 inst.instruction |= LOW4 (inst.operands[0].reg);
12759 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
12760 inst.instruction |= inst.operands[1].reg << 12;
12761 inst.instruction |= inst.operands[2].reg << 16;
12762 break;
12763
12764 case NS_RS: /* case 6. */
12765 {
12766 struct neon_type_el et = neon_check_type (2, NS_NULL,
12767 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
12768 unsigned logsize = neon_logbits (et.size);
12769 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
12770 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
12771 unsigned abcdebits = 0;
12772
12773 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
12774 _(BAD_FPU));
12775 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
12776 && et.size != 32, _(BAD_FPU));
12777 constraint (et.type == NT_invtype, _("bad type for scalar"));
12778 constraint (x >= 64 / et.size, _("scalar index out of range"));
12779
12780 switch (et.size)
12781 {
12782 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
12783 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
12784 case 32: abcdebits = 0x00; break;
12785 default: ;
12786 }
12787
12788 abcdebits |= x << logsize;
12789 inst.instruction = 0xe100b10;
12790 do_vfp_cond_or_thumb ();
12791 inst.instruction |= LOW4 (dn) << 16;
12792 inst.instruction |= HI1 (dn) << 7;
12793 inst.instruction |= inst.operands[0].reg << 12;
12794 inst.instruction |= (abcdebits & 3) << 5;
12795 inst.instruction |= (abcdebits >> 2) << 21;
12796 }
12797 break;
12798
12799 case NS_RRD: /* case 7 (fmrrd). */
12800 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
12801 _(BAD_FPU));
12802
12803 inst.instruction = 0xc500b10;
12804 do_vfp_cond_or_thumb ();
12805 inst.instruction |= inst.operands[0].reg << 12;
12806 inst.instruction |= inst.operands[1].reg << 16;
12807 inst.instruction |= LOW4 (inst.operands[2].reg);
12808 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
12809 break;
12810
12811 case NS_FF: /* case 8 (fcpys). */
12812 do_vfp_nsyn_opcode ("fcpys");
12813 break;
12814
12815 case NS_FI: /* case 10 (fconsts). */
12816 ldconst = "fconsts";
12817 encode_fconstd:
12818 if (is_quarter_float (inst.operands[1].imm))
12819 {
12820 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
12821 do_vfp_nsyn_opcode (ldconst);
12822 }
12823 else
12824 first_error (_("immediate out of range"));
12825 break;
12826
12827 case NS_RF: /* case 12 (fmrs). */
12828 do_vfp_nsyn_opcode ("fmrs");
12829 break;
12830
12831 case NS_FR: /* case 13 (fmsr). */
12832 do_vfp_nsyn_opcode ("fmsr");
12833 break;
12834
12835 /* The encoders for the fmrrs and fmsrr instructions expect three operands
12836 (one of which is a list), but we have parsed four. Do some fiddling to
12837 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
12838 expect. */
12839 case NS_RRFF: /* case 14 (fmrrs). */
12840 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
12841 _("VFP registers must be adjacent"));
12842 inst.operands[2].imm = 2;
12843 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
12844 do_vfp_nsyn_opcode ("fmrrs");
12845 break;
12846
12847 case NS_FFRR: /* case 15 (fmsrr). */
12848 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
12849 _("VFP registers must be adjacent"));
12850 inst.operands[1] = inst.operands[2];
12851 inst.operands[2] = inst.operands[3];
12852 inst.operands[0].imm = 2;
12853 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
12854 do_vfp_nsyn_opcode ("fmsrr");
12855 break;
12856
12857 default:
12858 abort ();
12859 }
12860 }
12861
12862 static void
12863 do_neon_rshift_round_imm (void)
12864 {
12865 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
12866 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
12867 int imm = inst.operands[2].imm;
12868
12869 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
12870 if (imm == 0)
12871 {
12872 inst.operands[2].present = 0;
12873 do_neon_mov ();
12874 return;
12875 }
12876
12877 constraint (imm < 1 || (unsigned)imm > et.size,
12878 _("immediate out of range for shift"));
12879 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
12880 et.size - imm);
12881 }
12882
12883 static void
12884 do_neon_movl (void)
12885 {
12886 struct neon_type_el et = neon_check_type (2, NS_QD,
12887 N_EQK | N_DBL, N_SU_32 | N_KEY);
12888 unsigned sizebits = et.size >> 3;
12889 inst.instruction |= sizebits << 19;
12890 neon_two_same (0, et.type == NT_unsigned, -1);
12891 }
12892
12893 static void
12894 do_neon_trn (void)
12895 {
12896 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12897 struct neon_type_el et = neon_check_type (2, rs,
12898 N_EQK, N_8 | N_16 | N_32 | N_KEY);
12899 inst.instruction = NEON_ENC_INTEGER (inst.instruction);
12900 neon_two_same (neon_quad (rs), 1, et.size);
12901 }
12902
12903 static void
12904 do_neon_zip_uzp (void)
12905 {
12906 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12907 struct neon_type_el et = neon_check_type (2, rs,
12908 N_EQK, N_8 | N_16 | N_32 | N_KEY);
12909 if (rs == NS_DD && et.size == 32)
12910 {
12911 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
12912 inst.instruction = N_MNEM_vtrn;
12913 do_neon_trn ();
12914 return;
12915 }
12916 neon_two_same (neon_quad (rs), 1, et.size);
12917 }
12918
12919 static void
12920 do_neon_sat_abs_neg (void)
12921 {
12922 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12923 struct neon_type_el et = neon_check_type (2, rs,
12924 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
12925 neon_two_same (neon_quad (rs), 1, et.size);
12926 }
12927
12928 static void
12929 do_neon_pair_long (void)
12930 {
12931 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12932 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
12933 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
12934 inst.instruction |= (et.type == NT_unsigned) << 7;
12935 neon_two_same (neon_quad (rs), 1, et.size);
12936 }
12937
12938 static void
12939 do_neon_recip_est (void)
12940 {
12941 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12942 struct neon_type_el et = neon_check_type (2, rs,
12943 N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
12944 inst.instruction |= (et.type == NT_float) << 8;
12945 neon_two_same (neon_quad (rs), 1, et.size);
12946 }
12947
12948 static void
12949 do_neon_cls (void)
12950 {
12951 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12952 struct neon_type_el et = neon_check_type (2, rs,
12953 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
12954 neon_two_same (neon_quad (rs), 1, et.size);
12955 }
12956
12957 static void
12958 do_neon_clz (void)
12959 {
12960 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12961 struct neon_type_el et = neon_check_type (2, rs,
12962 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
12963 neon_two_same (neon_quad (rs), 1, et.size);
12964 }
12965
12966 static void
12967 do_neon_cnt (void)
12968 {
12969 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12970 struct neon_type_el et = neon_check_type (2, rs,
12971 N_EQK | N_INT, N_8 | N_KEY);
12972 neon_two_same (neon_quad (rs), 1, et.size);
12973 }
12974
12975 static void
12976 do_neon_swp (void)
12977 {
12978 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
12979 neon_two_same (neon_quad (rs), 1, -1);
12980 }
12981
12982 static void
12983 do_neon_tbl_tbx (void)
12984 {
12985 unsigned listlenbits;
12986 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
12987
12988 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
12989 {
12990 first_error (_("bad list length for table lookup"));
12991 return;
12992 }
12993
12994 listlenbits = inst.operands[1].imm - 1;
12995 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
12996 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
12997 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
12998 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
12999 inst.instruction |= LOW4 (inst.operands[2].reg);
13000 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
13001 inst.instruction |= listlenbits << 8;
13002
13003 inst.instruction = neon_dp_fixup (inst.instruction);
13004 }
13005
13006 static void
13007 do_neon_ldm_stm (void)
13008 {
13009 /* P, U and L bits are part of bitmask. */
13010 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
13011 unsigned offsetbits = inst.operands[1].imm * 2;
13012
13013 if (inst.operands[1].issingle)
13014 {
13015 do_vfp_nsyn_ldm_stm (is_dbmode);
13016 return;
13017 }
13018
13019 constraint (is_dbmode && !inst.operands[0].writeback,
13020 _("writeback (!) must be used for VLDMDB and VSTMDB"));
13021
13022 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
13023 _("register list must contain at least 1 and at most 16 "
13024 "registers"));
13025
13026 inst.instruction |= inst.operands[0].reg << 16;
13027 inst.instruction |= inst.operands[0].writeback << 21;
13028 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
13029 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
13030
13031 inst.instruction |= offsetbits;
13032
13033 do_vfp_cond_or_thumb ();
13034 }
13035
13036 static void
13037 do_neon_ldr_str (void)
13038 {
13039 int is_ldr = (inst.instruction & (1 << 20)) != 0;
13040
13041 if (inst.operands[0].issingle)
13042 {
13043 if (is_ldr)
13044 do_vfp_nsyn_opcode ("flds");
13045 else
13046 do_vfp_nsyn_opcode ("fsts");
13047 }
13048 else
13049 {
13050 if (is_ldr)
13051 do_vfp_nsyn_opcode ("fldd");
13052 else
13053 do_vfp_nsyn_opcode ("fstd");
13054 }
13055 }
13056
13057 /* "interleave" version also handles non-interleaving register VLD1/VST1
13058 instructions. */
13059
13060 static void
13061 do_neon_ld_st_interleave (void)
13062 {
13063 struct neon_type_el et = neon_check_type (1, NS_NULL,
13064 N_8 | N_16 | N_32 | N_64);
13065 unsigned alignbits = 0;
13066 unsigned idx;
13067 /* The bits in this table go:
13068 0: register stride of one (0) or two (1)
13069 1,2: register list length, minus one (1, 2, 3, 4).
13070 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
13071 We use -1 for invalid entries. */
13072 const int typetable[] =
13073 {
13074 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
13075 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
13076 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
13077 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
13078 };
13079 int typebits;
13080
13081 if (et.type == NT_invtype)
13082 return;
13083
13084 if (inst.operands[1].immisalign)
13085 switch (inst.operands[1].imm >> 8)
13086 {
13087 case 64: alignbits = 1; break;
13088 case 128:
13089 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) == 3)
13090 goto bad_alignment;
13091 alignbits = 2;
13092 break;
13093 case 256:
13094 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) == 3)
13095 goto bad_alignment;
13096 alignbits = 3;
13097 break;
13098 default:
13099 bad_alignment:
13100 first_error (_("bad alignment"));
13101 return;
13102 }
13103
13104 inst.instruction |= alignbits << 4;
13105 inst.instruction |= neon_logbits (et.size) << 6;
13106
13107 /* Bits [4:6] of the immediate in a list specifier encode register stride
13108 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
13109 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
13110 up the right value for "type" in a table based on this value and the given
13111 list style, then stick it back. */
13112 idx = ((inst.operands[0].imm >> 4) & 7)
13113 | (((inst.instruction >> 8) & 3) << 3);
13114
13115 typebits = typetable[idx];
13116
13117 constraint (typebits == -1, _("bad list type for instruction"));
13118
13119 inst.instruction &= ~0xf00;
13120 inst.instruction |= typebits << 8;
13121 }
13122
13123 /* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
13124 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
13125 otherwise. The variable arguments are a list of pairs of legal (size, align)
13126 values, terminated with -1. */
13127
13128 static int
13129 neon_alignment_bit (int size, int align, int *do_align, ...)
13130 {
13131 va_list ap;
13132 int result = FAIL, thissize, thisalign;
13133
13134 if (!inst.operands[1].immisalign)
13135 {
13136 *do_align = 0;
13137 return SUCCESS;
13138 }
13139
13140 va_start (ap, do_align);
13141
13142 do
13143 {
13144 thissize = va_arg (ap, int);
13145 if (thissize == -1)
13146 break;
13147 thisalign = va_arg (ap, int);
13148
13149 if (size == thissize && align == thisalign)
13150 result = SUCCESS;
13151 }
13152 while (result != SUCCESS);
13153
13154 va_end (ap);
13155
13156 if (result == SUCCESS)
13157 *do_align = 1;
13158 else
13159 first_error (_("unsupported alignment for instruction"));
13160
13161 return result;
13162 }
13163
13164 static void
13165 do_neon_ld_st_lane (void)
13166 {
13167 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
13168 int align_good, do_align = 0;
13169 int logsize = neon_logbits (et.size);
13170 int align = inst.operands[1].imm >> 8;
13171 int n = (inst.instruction >> 8) & 3;
13172 int max_el = 64 / et.size;
13173
13174 if (et.type == NT_invtype)
13175 return;
13176
13177 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
13178 _("bad list length"));
13179 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
13180 _("scalar index out of range"));
13181 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
13182 && et.size == 8,
13183 _("stride of 2 unavailable when element size is 8"));
13184
13185 switch (n)
13186 {
13187 case 0: /* VLD1 / VST1. */
13188 align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
13189 32, 32, -1);
13190 if (align_good == FAIL)
13191 return;
13192 if (do_align)
13193 {
13194 unsigned alignbits = 0;
13195 switch (et.size)
13196 {
13197 case 16: alignbits = 0x1; break;
13198 case 32: alignbits = 0x3; break;
13199 default: ;
13200 }
13201 inst.instruction |= alignbits << 4;
13202 }
13203 break;
13204
13205 case 1: /* VLD2 / VST2. */
13206 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
13207 32, 64, -1);
13208 if (align_good == FAIL)
13209 return;
13210 if (do_align)
13211 inst.instruction |= 1 << 4;
13212 break;
13213
13214 case 2: /* VLD3 / VST3. */
13215 constraint (inst.operands[1].immisalign,
13216 _("can't use alignment with this instruction"));
13217 break;
13218
13219 case 3: /* VLD4 / VST4. */
13220 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
13221 16, 64, 32, 64, 32, 128, -1);
13222 if (align_good == FAIL)
13223 return;
13224 if (do_align)
13225 {
13226 unsigned alignbits = 0;
13227 switch (et.size)
13228 {
13229 case 8: alignbits = 0x1; break;
13230 case 16: alignbits = 0x1; break;
13231 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
13232 default: ;
13233 }
13234 inst.instruction |= alignbits << 4;
13235 }
13236 break;
13237
13238 default: ;
13239 }
13240
13241 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
13242 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
13243 inst.instruction |= 1 << (4 + logsize);
13244
13245 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
13246 inst.instruction |= logsize << 10;
13247 }
13248
13249 /* Encode single n-element structure to all lanes VLD<n> instructions. */
13250
13251 static void
13252 do_neon_ld_dup (void)
13253 {
13254 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
13255 int align_good, do_align = 0;
13256
13257 if (et.type == NT_invtype)
13258 return;
13259
13260 switch ((inst.instruction >> 8) & 3)
13261 {
13262 case 0: /* VLD1. */
13263 assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
13264 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
13265 &do_align, 16, 16, 32, 32, -1);
13266 if (align_good == FAIL)
13267 return;
13268 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
13269 {
13270 case 1: break;
13271 case 2: inst.instruction |= 1 << 5; break;
13272 default: first_error (_("bad list length")); return;
13273 }
13274 inst.instruction |= neon_logbits (et.size) << 6;
13275 break;
13276
13277 case 1: /* VLD2. */
13278 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
13279 &do_align, 8, 16, 16, 32, 32, 64, -1);
13280 if (align_good == FAIL)
13281 return;
13282 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
13283 _("bad list length"));
13284 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
13285 inst.instruction |= 1 << 5;
13286 inst.instruction |= neon_logbits (et.size) << 6;
13287 break;
13288
13289 case 2: /* VLD3. */
13290 constraint (inst.operands[1].immisalign,
13291 _("can't use alignment with this instruction"));
13292 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
13293 _("bad list length"));
13294 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
13295 inst.instruction |= 1 << 5;
13296 inst.instruction |= neon_logbits (et.size) << 6;
13297 break;
13298
13299 case 3: /* VLD4. */
13300 {
13301 int align = inst.operands[1].imm >> 8;
13302 align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
13303 16, 64, 32, 64, 32, 128, -1);
13304 if (align_good == FAIL)
13305 return;
13306 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
13307 _("bad list length"));
13308 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
13309 inst.instruction |= 1 << 5;
13310 if (et.size == 32 && align == 128)
13311 inst.instruction |= 0x3 << 6;
13312 else
13313 inst.instruction |= neon_logbits (et.size) << 6;
13314 }
13315 break;
13316
13317 default: ;
13318 }
13319
13320 inst.instruction |= do_align << 4;
13321 }
13322
13323 /* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
13324 apart from bits [11:4]. */
13325
13326 static void
13327 do_neon_ldx_stx (void)
13328 {
13329 switch (NEON_LANE (inst.operands[0].imm))
13330 {
13331 case NEON_INTERLEAVE_LANES:
13332 inst.instruction = NEON_ENC_INTERLV (inst.instruction);
13333 do_neon_ld_st_interleave ();
13334 break;
13335
13336 case NEON_ALL_LANES:
13337 inst.instruction = NEON_ENC_DUP (inst.instruction);
13338 do_neon_ld_dup ();
13339 break;
13340
13341 default:
13342 inst.instruction = NEON_ENC_LANE (inst.instruction);
13343 do_neon_ld_st_lane ();
13344 }
13345
13346 /* L bit comes from bit mask. */
13347 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
13348 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
13349 inst.instruction |= inst.operands[1].reg << 16;
13350
13351 if (inst.operands[1].postind)
13352 {
13353 int postreg = inst.operands[1].imm & 0xf;
13354 constraint (!inst.operands[1].immisreg,
13355 _("post-index must be a register"));
13356 constraint (postreg == 0xd || postreg == 0xf,
13357 _("bad register for post-index"));
13358 inst.instruction |= postreg;
13359 }
13360 else if (inst.operands[1].writeback)
13361 {
13362 inst.instruction |= 0xd;
13363 }
13364 else
13365 inst.instruction |= 0xf;
13366
13367 if (thumb_mode)
13368 inst.instruction |= 0xf9000000;
13369 else
13370 inst.instruction |= 0xf4000000;
13371 }
13372
13373 \f
13374 /* Overall per-instruction processing. */
13375
13376 /* We need to be able to fix up arbitrary expressions in some statements.
13377 This is so that we can handle symbols that are an arbitrary distance from
13378 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
13379 which returns part of an address in a form which will be valid for
13380 a data instruction. We do this by pushing the expression into a symbol
13381 in the expr_section, and creating a fix for that. */
13382
13383 static void
13384 fix_new_arm (fragS * frag,
13385 int where,
13386 short int size,
13387 expressionS * exp,
13388 int pc_rel,
13389 int reloc)
13390 {
13391 fixS * new_fix;
13392
13393 switch (exp->X_op)
13394 {
13395 case O_constant:
13396 case O_symbol:
13397 case O_add:
13398 case O_subtract:
13399 new_fix = fix_new_exp (frag, where, size, exp, pc_rel, reloc);
13400 break;
13401
13402 default:
13403 new_fix = fix_new (frag, where, size, make_expr_symbol (exp), 0,
13404 pc_rel, reloc);
13405 break;
13406 }
13407
13408 /* Mark whether the fix is to a THUMB instruction, or an ARM
13409 instruction. */
13410 new_fix->tc_fix_data = thumb_mode;
13411 }
13412
13413 /* Create a frg for an instruction requiring relaxation. */
13414 static void
13415 output_relax_insn (void)
13416 {
13417 char * to;
13418 symbolS *sym;
13419 int offset;
13420
13421 /* The size of the instruction is unknown, so tie the debug info to the
13422 start of the instruction. */
13423 dwarf2_emit_insn (0);
13424
13425 switch (inst.reloc.exp.X_op)
13426 {
13427 case O_symbol:
13428 sym = inst.reloc.exp.X_add_symbol;
13429 offset = inst.reloc.exp.X_add_number;
13430 break;
13431 case O_constant:
13432 sym = NULL;
13433 offset = inst.reloc.exp.X_add_number;
13434 break;
13435 default:
13436 sym = make_expr_symbol (&inst.reloc.exp);
13437 offset = 0;
13438 break;
13439 }
13440 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
13441 inst.relax, sym, offset, NULL/*offset, opcode*/);
13442 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
13443 }
13444
13445 /* Write a 32-bit thumb instruction to buf. */
13446 static void
13447 put_thumb32_insn (char * buf, unsigned long insn)
13448 {
13449 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
13450 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
13451 }
13452
13453 static void
13454 output_inst (const char * str)
13455 {
13456 char * to = NULL;
13457
13458 if (inst.error)
13459 {
13460 as_bad ("%s -- `%s'", inst.error, str);
13461 return;
13462 }
13463 if (inst.relax) {
13464 output_relax_insn();
13465 return;
13466 }
13467 if (inst.size == 0)
13468 return;
13469
13470 to = frag_more (inst.size);
13471
13472 if (thumb_mode && (inst.size > THUMB_SIZE))
13473 {
13474 assert (inst.size == (2 * THUMB_SIZE));
13475 put_thumb32_insn (to, inst.instruction);
13476 }
13477 else if (inst.size > INSN_SIZE)
13478 {
13479 assert (inst.size == (2 * INSN_SIZE));
13480 md_number_to_chars (to, inst.instruction, INSN_SIZE);
13481 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
13482 }
13483 else
13484 md_number_to_chars (to, inst.instruction, inst.size);
13485
13486 if (inst.reloc.type != BFD_RELOC_UNUSED)
13487 fix_new_arm (frag_now, to - frag_now->fr_literal,
13488 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
13489 inst.reloc.type);
13490
13491 dwarf2_emit_insn (inst.size);
13492 }
13493
13494 /* Tag values used in struct asm_opcode's tag field. */
13495 enum opcode_tag
13496 {
13497 OT_unconditional, /* Instruction cannot be conditionalized.
13498 The ARM condition field is still 0xE. */
13499 OT_unconditionalF, /* Instruction cannot be conditionalized
13500 and carries 0xF in its ARM condition field. */
13501 OT_csuffix, /* Instruction takes a conditional suffix. */
13502 OT_csuffixF, /* Some forms of the instruction take a conditional
13503 suffix, others place 0xF where the condition field
13504 would be. */
13505 OT_cinfix3, /* Instruction takes a conditional infix,
13506 beginning at character index 3. (In
13507 unified mode, it becomes a suffix.) */
13508 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
13509 tsts, cmps, cmns, and teqs. */
13510 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
13511 character index 3, even in unified mode. Used for
13512 legacy instructions where suffix and infix forms
13513 may be ambiguous. */
13514 OT_csuf_or_in3, /* Instruction takes either a conditional
13515 suffix or an infix at character index 3. */
13516 OT_odd_infix_unc, /* This is the unconditional variant of an
13517 instruction that takes a conditional infix
13518 at an unusual position. In unified mode,
13519 this variant will accept a suffix. */
13520 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
13521 are the conditional variants of instructions that
13522 take conditional infixes in unusual positions.
13523 The infix appears at character index
13524 (tag - OT_odd_infix_0). These are not accepted
13525 in unified mode. */
13526 };
13527
13528 /* Subroutine of md_assemble, responsible for looking up the primary
13529 opcode from the mnemonic the user wrote. STR points to the
13530 beginning of the mnemonic.
13531
13532 This is not simply a hash table lookup, because of conditional
13533 variants. Most instructions have conditional variants, which are
13534 expressed with a _conditional affix_ to the mnemonic. If we were
13535 to encode each conditional variant as a literal string in the opcode
13536 table, it would have approximately 20,000 entries.
13537
13538 Most mnemonics take this affix as a suffix, and in unified syntax,
13539 'most' is upgraded to 'all'. However, in the divided syntax, some
13540 instructions take the affix as an infix, notably the s-variants of
13541 the arithmetic instructions. Of those instructions, all but six
13542 have the infix appear after the third character of the mnemonic.
13543
13544 Accordingly, the algorithm for looking up primary opcodes given
13545 an identifier is:
13546
13547 1. Look up the identifier in the opcode table.
13548 If we find a match, go to step U.
13549
13550 2. Look up the last two characters of the identifier in the
13551 conditions table. If we find a match, look up the first N-2
13552 characters of the identifier in the opcode table. If we
13553 find a match, go to step CE.
13554
13555 3. Look up the fourth and fifth characters of the identifier in
13556 the conditions table. If we find a match, extract those
13557 characters from the identifier, and look up the remaining
13558 characters in the opcode table. If we find a match, go
13559 to step CM.
13560
13561 4. Fail.
13562
13563 U. Examine the tag field of the opcode structure, in case this is
13564 one of the six instructions with its conditional infix in an
13565 unusual place. If it is, the tag tells us where to find the
13566 infix; look it up in the conditions table and set inst.cond
13567 accordingly. Otherwise, this is an unconditional instruction.
13568 Again set inst.cond accordingly. Return the opcode structure.
13569
13570 CE. Examine the tag field to make sure this is an instruction that
13571 should receive a conditional suffix. If it is not, fail.
13572 Otherwise, set inst.cond from the suffix we already looked up,
13573 and return the opcode structure.
13574
13575 CM. Examine the tag field to make sure this is an instruction that
13576 should receive a conditional infix after the third character.
13577 If it is not, fail. Otherwise, undo the edits to the current
13578 line of input and proceed as for case CE. */
13579
13580 static const struct asm_opcode *
13581 opcode_lookup (char **str)
13582 {
13583 char *end, *base;
13584 char *affix;
13585 const struct asm_opcode *opcode;
13586 const struct asm_cond *cond;
13587 char save[2];
13588 bfd_boolean neon_supported;
13589
13590 neon_supported = ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1);
13591
13592 /* Scan up to the end of the mnemonic, which must end in white space,
13593 '.' (in unified mode, or for Neon instructions), or end of string. */
13594 for (base = end = *str; *end != '\0'; end++)
13595 if (*end == ' ' || ((unified_syntax || neon_supported) && *end == '.'))
13596 break;
13597
13598 if (end == base)
13599 return 0;
13600
13601 /* Handle a possible width suffix and/or Neon type suffix. */
13602 if (end[0] == '.')
13603 {
13604 int offset = 2;
13605
13606 /* The .w and .n suffixes are only valid if the unified syntax is in
13607 use. */
13608 if (unified_syntax && end[1] == 'w')
13609 inst.size_req = 4;
13610 else if (unified_syntax && end[1] == 'n')
13611 inst.size_req = 2;
13612 else
13613 offset = 0;
13614
13615 inst.vectype.elems = 0;
13616
13617 *str = end + offset;
13618
13619 if (end[offset] == '.')
13620 {
13621 /* See if we have a Neon type suffix (possible in either unified or
13622 non-unified ARM syntax mode). */
13623 if (parse_neon_type (&inst.vectype, str) == FAIL)
13624 return 0;
13625 }
13626 else if (end[offset] != '\0' && end[offset] != ' ')
13627 return 0;
13628 }
13629 else
13630 *str = end;
13631
13632 /* Look for unaffixed or special-case affixed mnemonic. */
13633 opcode = hash_find_n (arm_ops_hsh, base, end - base);
13634 if (opcode)
13635 {
13636 /* step U */
13637 if (opcode->tag < OT_odd_infix_0)
13638 {
13639 inst.cond = COND_ALWAYS;
13640 return opcode;
13641 }
13642
13643 if (unified_syntax)
13644 as_warn (_("conditional infixes are deprecated in unified syntax"));
13645 affix = base + (opcode->tag - OT_odd_infix_0);
13646 cond = hash_find_n (arm_cond_hsh, affix, 2);
13647 assert (cond);
13648
13649 inst.cond = cond->value;
13650 return opcode;
13651 }
13652
13653 /* Cannot have a conditional suffix on a mnemonic of less than two
13654 characters. */
13655 if (end - base < 3)
13656 return 0;
13657
13658 /* Look for suffixed mnemonic. */
13659 affix = end - 2;
13660 cond = hash_find_n (arm_cond_hsh, affix, 2);
13661 opcode = hash_find_n (arm_ops_hsh, base, affix - base);
13662 if (opcode && cond)
13663 {
13664 /* step CE */
13665 switch (opcode->tag)
13666 {
13667 case OT_cinfix3_legacy:
13668 /* Ignore conditional suffixes matched on infix only mnemonics. */
13669 break;
13670
13671 case OT_cinfix3:
13672 case OT_cinfix3_deprecated:
13673 case OT_odd_infix_unc:
13674 if (!unified_syntax)
13675 return 0;
13676 /* else fall through */
13677
13678 case OT_csuffix:
13679 case OT_csuffixF:
13680 case OT_csuf_or_in3:
13681 inst.cond = cond->value;
13682 return opcode;
13683
13684 case OT_unconditional:
13685 case OT_unconditionalF:
13686 if (thumb_mode)
13687 {
13688 inst.cond = cond->value;
13689 }
13690 else
13691 {
13692 /* delayed diagnostic */
13693 inst.error = BAD_COND;
13694 inst.cond = COND_ALWAYS;
13695 }
13696 return opcode;
13697
13698 default:
13699 return 0;
13700 }
13701 }
13702
13703 /* Cannot have a usual-position infix on a mnemonic of less than
13704 six characters (five would be a suffix). */
13705 if (end - base < 6)
13706 return 0;
13707
13708 /* Look for infixed mnemonic in the usual position. */
13709 affix = base + 3;
13710 cond = hash_find_n (arm_cond_hsh, affix, 2);
13711 if (!cond)
13712 return 0;
13713
13714 memcpy (save, affix, 2);
13715 memmove (affix, affix + 2, (end - affix) - 2);
13716 opcode = hash_find_n (arm_ops_hsh, base, (end - base) - 2);
13717 memmove (affix + 2, affix, (end - affix) - 2);
13718 memcpy (affix, save, 2);
13719
13720 if (opcode
13721 && (opcode->tag == OT_cinfix3
13722 || opcode->tag == OT_cinfix3_deprecated
13723 || opcode->tag == OT_csuf_or_in3
13724 || opcode->tag == OT_cinfix3_legacy))
13725 {
13726 /* step CM */
13727 if (unified_syntax
13728 && (opcode->tag == OT_cinfix3
13729 || opcode->tag == OT_cinfix3_deprecated))
13730 as_warn (_("conditional infixes are deprecated in unified syntax"));
13731
13732 inst.cond = cond->value;
13733 return opcode;
13734 }
13735
13736 return 0;
13737 }
13738
13739 void
13740 md_assemble (char *str)
13741 {
13742 char *p = str;
13743 const struct asm_opcode * opcode;
13744
13745 /* Align the previous label if needed. */
13746 if (last_label_seen != NULL)
13747 {
13748 symbol_set_frag (last_label_seen, frag_now);
13749 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
13750 S_SET_SEGMENT (last_label_seen, now_seg);
13751 }
13752
13753 memset (&inst, '\0', sizeof (inst));
13754 inst.reloc.type = BFD_RELOC_UNUSED;
13755
13756 opcode = opcode_lookup (&p);
13757 if (!opcode)
13758 {
13759 /* It wasn't an instruction, but it might be a register alias of
13760 the form alias .req reg, or a Neon .dn/.qn directive. */
13761 if (!create_register_alias (str, p)
13762 && !create_neon_reg_alias (str, p))
13763 as_bad (_("bad instruction `%s'"), str);
13764
13765 return;
13766 }
13767
13768 if (opcode->tag == OT_cinfix3_deprecated)
13769 as_warn (_("s suffix on comparison instruction is deprecated"));
13770
13771 /* The value which unconditional instructions should have in place of the
13772 condition field. */
13773 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
13774
13775 if (thumb_mode)
13776 {
13777 arm_feature_set variant;
13778
13779 variant = cpu_variant;
13780 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
13781 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
13782 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
13783 /* Check that this instruction is supported for this CPU. */
13784 if (!opcode->tvariant
13785 || (thumb_mode == 1
13786 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
13787 {
13788 as_bad (_("selected processor does not support `%s'"), str);
13789 return;
13790 }
13791 if (inst.cond != COND_ALWAYS && !unified_syntax
13792 && opcode->tencode != do_t_branch)
13793 {
13794 as_bad (_("Thumb does not support conditional execution"));
13795 return;
13796 }
13797
13798 /* Check conditional suffixes. */
13799 if (current_it_mask)
13800 {
13801 int cond;
13802 cond = current_cc ^ ((current_it_mask >> 4) & 1) ^ 1;
13803 current_it_mask <<= 1;
13804 current_it_mask &= 0x1f;
13805 /* The BKPT instruction is unconditional even in an IT block. */
13806 if (!inst.error
13807 && cond != inst.cond && opcode->tencode != do_t_bkpt)
13808 {
13809 as_bad (_("incorrect condition in IT block"));
13810 return;
13811 }
13812 }
13813 else if (inst.cond != COND_ALWAYS && opcode->tencode != do_t_branch)
13814 {
13815 as_bad (_("thumb conditional instrunction not in IT block"));
13816 return;
13817 }
13818
13819 mapping_state (MAP_THUMB);
13820 inst.instruction = opcode->tvalue;
13821
13822 if (!parse_operands (p, opcode->operands))
13823 opcode->tencode ();
13824
13825 /* Clear current_it_mask at the end of an IT block. */
13826 if (current_it_mask == 0x10)
13827 current_it_mask = 0;
13828
13829 if (!(inst.error || inst.relax))
13830 {
13831 assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
13832 inst.size = (inst.instruction > 0xffff ? 4 : 2);
13833 if (inst.size_req && inst.size_req != inst.size)
13834 {
13835 as_bad (_("cannot honor width suffix -- `%s'"), str);
13836 return;
13837 }
13838 }
13839 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
13840 *opcode->tvariant);
13841 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
13842 set those bits when Thumb-2 32-bit instructions are seen. ie.
13843 anything other than bl/blx.
13844 This is overly pessimistic for relaxable instructions. */
13845 if ((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
13846 || inst.relax)
13847 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
13848 arm_ext_v6t2);
13849 }
13850 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
13851 {
13852 /* Check that this instruction is supported for this CPU. */
13853 if (!opcode->avariant ||
13854 !ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant))
13855 {
13856 as_bad (_("selected processor does not support `%s'"), str);
13857 return;
13858 }
13859 if (inst.size_req)
13860 {
13861 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
13862 return;
13863 }
13864
13865 mapping_state (MAP_ARM);
13866 inst.instruction = opcode->avalue;
13867 if (opcode->tag == OT_unconditionalF)
13868 inst.instruction |= 0xF << 28;
13869 else
13870 inst.instruction |= inst.cond << 28;
13871 inst.size = INSN_SIZE;
13872 if (!parse_operands (p, opcode->operands))
13873 opcode->aencode ();
13874 /* Arm mode bx is marked as both v4T and v5 because it's still required
13875 on a hypothetical non-thumb v5 core. */
13876 if (ARM_CPU_HAS_FEATURE (*opcode->avariant, arm_ext_v4t)
13877 || ARM_CPU_HAS_FEATURE (*opcode->avariant, arm_ext_v5))
13878 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
13879 else
13880 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
13881 *opcode->avariant);
13882 }
13883 else
13884 {
13885 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
13886 "-- `%s'"), str);
13887 return;
13888 }
13889 output_inst (str);
13890 }
13891
13892 /* Various frobbings of labels and their addresses. */
13893
13894 void
13895 arm_start_line_hook (void)
13896 {
13897 last_label_seen = NULL;
13898 }
13899
13900 void
13901 arm_frob_label (symbolS * sym)
13902 {
13903 last_label_seen = sym;
13904
13905 ARM_SET_THUMB (sym, thumb_mode);
13906
13907 #if defined OBJ_COFF || defined OBJ_ELF
13908 ARM_SET_INTERWORK (sym, support_interwork);
13909 #endif
13910
13911 /* Note - do not allow local symbols (.Lxxx) to be labeled
13912 as Thumb functions. This is because these labels, whilst
13913 they exist inside Thumb code, are not the entry points for
13914 possible ARM->Thumb calls. Also, these labels can be used
13915 as part of a computed goto or switch statement. eg gcc
13916 can generate code that looks like this:
13917
13918 ldr r2, [pc, .Laaa]
13919 lsl r3, r3, #2
13920 ldr r2, [r3, r2]
13921 mov pc, r2
13922
13923 .Lbbb: .word .Lxxx
13924 .Lccc: .word .Lyyy
13925 ..etc...
13926 .Laaa: .word Lbbb
13927
13928 The first instruction loads the address of the jump table.
13929 The second instruction converts a table index into a byte offset.
13930 The third instruction gets the jump address out of the table.
13931 The fourth instruction performs the jump.
13932
13933 If the address stored at .Laaa is that of a symbol which has the
13934 Thumb_Func bit set, then the linker will arrange for this address
13935 to have the bottom bit set, which in turn would mean that the
13936 address computation performed by the third instruction would end
13937 up with the bottom bit set. Since the ARM is capable of unaligned
13938 word loads, the instruction would then load the incorrect address
13939 out of the jump table, and chaos would ensue. */
13940 if (label_is_thumb_function_name
13941 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
13942 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
13943 {
13944 /* When the address of a Thumb function is taken the bottom
13945 bit of that address should be set. This will allow
13946 interworking between Arm and Thumb functions to work
13947 correctly. */
13948
13949 THUMB_SET_FUNC (sym, 1);
13950
13951 label_is_thumb_function_name = FALSE;
13952 }
13953
13954 dwarf2_emit_label (sym);
13955 }
13956
13957 int
13958 arm_data_in_code (void)
13959 {
13960 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
13961 {
13962 *input_line_pointer = '/';
13963 input_line_pointer += 5;
13964 *input_line_pointer = 0;
13965 return 1;
13966 }
13967
13968 return 0;
13969 }
13970
13971 char *
13972 arm_canonicalize_symbol_name (char * name)
13973 {
13974 int len;
13975
13976 if (thumb_mode && (len = strlen (name)) > 5
13977 && streq (name + len - 5, "/data"))
13978 *(name + len - 5) = 0;
13979
13980 return name;
13981 }
13982 \f
13983 /* Table of all register names defined by default. The user can
13984 define additional names with .req. Note that all register names
13985 should appear in both upper and lowercase variants. Some registers
13986 also have mixed-case names. */
13987
13988 #define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
13989 #define REGNUM(p,n,t) REGDEF(p##n, n, t)
13990 #define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
13991 #define REGSET(p,t) \
13992 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
13993 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
13994 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
13995 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
13996 #define REGSETH(p,t) \
13997 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
13998 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
13999 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
14000 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
14001 #define REGSET2(p,t) \
14002 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
14003 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
14004 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
14005 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
14006
14007 static const struct reg_entry reg_names[] =
14008 {
14009 /* ARM integer registers. */
14010 REGSET(r, RN), REGSET(R, RN),
14011
14012 /* ATPCS synonyms. */
14013 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
14014 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
14015 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
14016
14017 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
14018 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
14019 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
14020
14021 /* Well-known aliases. */
14022 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
14023 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
14024
14025 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
14026 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
14027
14028 /* Coprocessor numbers. */
14029 REGSET(p, CP), REGSET(P, CP),
14030
14031 /* Coprocessor register numbers. The "cr" variants are for backward
14032 compatibility. */
14033 REGSET(c, CN), REGSET(C, CN),
14034 REGSET(cr, CN), REGSET(CR, CN),
14035
14036 /* FPA registers. */
14037 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
14038 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
14039
14040 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
14041 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
14042
14043 /* VFP SP registers. */
14044 REGSET(s,VFS), REGSET(S,VFS),
14045 REGSETH(s,VFS), REGSETH(S,VFS),
14046
14047 /* VFP DP Registers. */
14048 REGSET(d,VFD), REGSET(D,VFD),
14049 /* Extra Neon DP registers. */
14050 REGSETH(d,VFD), REGSETH(D,VFD),
14051
14052 /* Neon QP registers. */
14053 REGSET2(q,NQ), REGSET2(Q,NQ),
14054
14055 /* VFP control registers. */
14056 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
14057 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
14058
14059 /* Maverick DSP coprocessor registers. */
14060 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
14061 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
14062
14063 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
14064 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
14065 REGDEF(dspsc,0,DSPSC),
14066
14067 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
14068 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
14069 REGDEF(DSPSC,0,DSPSC),
14070
14071 /* iWMMXt data registers - p0, c0-15. */
14072 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
14073
14074 /* iWMMXt control registers - p1, c0-3. */
14075 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
14076 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
14077 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
14078 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
14079
14080 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
14081 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
14082 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
14083 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
14084 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
14085
14086 /* XScale accumulator registers. */
14087 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
14088 };
14089 #undef REGDEF
14090 #undef REGNUM
14091 #undef REGSET
14092
14093 /* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
14094 within psr_required_here. */
14095 static const struct asm_psr psrs[] =
14096 {
14097 /* Backward compatibility notation. Note that "all" is no longer
14098 truly all possible PSR bits. */
14099 {"all", PSR_c | PSR_f},
14100 {"flg", PSR_f},
14101 {"ctl", PSR_c},
14102
14103 /* Individual flags. */
14104 {"f", PSR_f},
14105 {"c", PSR_c},
14106 {"x", PSR_x},
14107 {"s", PSR_s},
14108 /* Combinations of flags. */
14109 {"fs", PSR_f | PSR_s},
14110 {"fx", PSR_f | PSR_x},
14111 {"fc", PSR_f | PSR_c},
14112 {"sf", PSR_s | PSR_f},
14113 {"sx", PSR_s | PSR_x},
14114 {"sc", PSR_s | PSR_c},
14115 {"xf", PSR_x | PSR_f},
14116 {"xs", PSR_x | PSR_s},
14117 {"xc", PSR_x | PSR_c},
14118 {"cf", PSR_c | PSR_f},
14119 {"cs", PSR_c | PSR_s},
14120 {"cx", PSR_c | PSR_x},
14121 {"fsx", PSR_f | PSR_s | PSR_x},
14122 {"fsc", PSR_f | PSR_s | PSR_c},
14123 {"fxs", PSR_f | PSR_x | PSR_s},
14124 {"fxc", PSR_f | PSR_x | PSR_c},
14125 {"fcs", PSR_f | PSR_c | PSR_s},
14126 {"fcx", PSR_f | PSR_c | PSR_x},
14127 {"sfx", PSR_s | PSR_f | PSR_x},
14128 {"sfc", PSR_s | PSR_f | PSR_c},
14129 {"sxf", PSR_s | PSR_x | PSR_f},
14130 {"sxc", PSR_s | PSR_x | PSR_c},
14131 {"scf", PSR_s | PSR_c | PSR_f},
14132 {"scx", PSR_s | PSR_c | PSR_x},
14133 {"xfs", PSR_x | PSR_f | PSR_s},
14134 {"xfc", PSR_x | PSR_f | PSR_c},
14135 {"xsf", PSR_x | PSR_s | PSR_f},
14136 {"xsc", PSR_x | PSR_s | PSR_c},
14137 {"xcf", PSR_x | PSR_c | PSR_f},
14138 {"xcs", PSR_x | PSR_c | PSR_s},
14139 {"cfs", PSR_c | PSR_f | PSR_s},
14140 {"cfx", PSR_c | PSR_f | PSR_x},
14141 {"csf", PSR_c | PSR_s | PSR_f},
14142 {"csx", PSR_c | PSR_s | PSR_x},
14143 {"cxf", PSR_c | PSR_x | PSR_f},
14144 {"cxs", PSR_c | PSR_x | PSR_s},
14145 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
14146 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
14147 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
14148 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
14149 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
14150 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
14151 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
14152 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
14153 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
14154 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
14155 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
14156 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
14157 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
14158 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
14159 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
14160 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
14161 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
14162 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
14163 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
14164 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
14165 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
14166 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
14167 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
14168 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
14169 };
14170
14171 /* Table of V7M psr names. */
14172 static const struct asm_psr v7m_psrs[] =
14173 {
14174 {"apsr", 0 },
14175 {"iapsr", 1 },
14176 {"eapsr", 2 },
14177 {"psr", 3 },
14178 {"ipsr", 5 },
14179 {"epsr", 6 },
14180 {"iepsr", 7 },
14181 {"msp", 8 },
14182 {"psp", 9 },
14183 {"primask", 16},
14184 {"basepri", 17},
14185 {"basepri_max", 18},
14186 {"faultmask", 19},
14187 {"control", 20}
14188 };
14189
14190 /* Table of all shift-in-operand names. */
14191 static const struct asm_shift_name shift_names [] =
14192 {
14193 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
14194 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
14195 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
14196 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
14197 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
14198 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
14199 };
14200
14201 /* Table of all explicit relocation names. */
14202 #ifdef OBJ_ELF
14203 static struct reloc_entry reloc_names[] =
14204 {
14205 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
14206 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
14207 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
14208 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
14209 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
14210 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
14211 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
14212 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
14213 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
14214 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
14215 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32}
14216 };
14217 #endif
14218
14219 /* Table of all conditional affixes. 0xF is not defined as a condition code. */
14220 static const struct asm_cond conds[] =
14221 {
14222 {"eq", 0x0},
14223 {"ne", 0x1},
14224 {"cs", 0x2}, {"hs", 0x2},
14225 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
14226 {"mi", 0x4},
14227 {"pl", 0x5},
14228 {"vs", 0x6},
14229 {"vc", 0x7},
14230 {"hi", 0x8},
14231 {"ls", 0x9},
14232 {"ge", 0xa},
14233 {"lt", 0xb},
14234 {"gt", 0xc},
14235 {"le", 0xd},
14236 {"al", 0xe}
14237 };
14238
14239 static struct asm_barrier_opt barrier_opt_names[] =
14240 {
14241 { "sy", 0xf },
14242 { "un", 0x7 },
14243 { "st", 0xe },
14244 { "unst", 0x6 }
14245 };
14246
14247 /* Table of ARM-format instructions. */
14248
14249 /* Macros for gluing together operand strings. N.B. In all cases
14250 other than OPS0, the trailing OP_stop comes from default
14251 zero-initialization of the unspecified elements of the array. */
14252 #define OPS0() { OP_stop, }
14253 #define OPS1(a) { OP_##a, }
14254 #define OPS2(a,b) { OP_##a,OP_##b, }
14255 #define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
14256 #define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
14257 #define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
14258 #define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
14259
14260 /* These macros abstract out the exact format of the mnemonic table and
14261 save some repeated characters. */
14262
14263 /* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
14264 #define TxCE(mnem, op, top, nops, ops, ae, te) \
14265 { #mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
14266 THUMB_VARIANT, do_##ae, do_##te }
14267
14268 /* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
14269 a T_MNEM_xyz enumerator. */
14270 #define TCE(mnem, aop, top, nops, ops, ae, te) \
14271 TxCE(mnem, aop, 0x##top, nops, ops, ae, te)
14272 #define tCE(mnem, aop, top, nops, ops, ae, te) \
14273 TxCE(mnem, aop, T_MNEM_##top, nops, ops, ae, te)
14274
14275 /* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
14276 infix after the third character. */
14277 #define TxC3(mnem, op, top, nops, ops, ae, te) \
14278 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
14279 THUMB_VARIANT, do_##ae, do_##te }
14280 #define TxC3w(mnem, op, top, nops, ops, ae, te) \
14281 { #mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
14282 THUMB_VARIANT, do_##ae, do_##te }
14283 #define TC3(mnem, aop, top, nops, ops, ae, te) \
14284 TxC3(mnem, aop, 0x##top, nops, ops, ae, te)
14285 #define TC3w(mnem, aop, top, nops, ops, ae, te) \
14286 TxC3w(mnem, aop, 0x##top, nops, ops, ae, te)
14287 #define tC3(mnem, aop, top, nops, ops, ae, te) \
14288 TxC3(mnem, aop, T_MNEM_##top, nops, ops, ae, te)
14289 #define tC3w(mnem, aop, top, nops, ops, ae, te) \
14290 TxC3w(mnem, aop, T_MNEM_##top, nops, ops, ae, te)
14291
14292 /* Mnemonic with a conditional infix in an unusual place. Each and every variant has to
14293 appear in the condition table. */
14294 #define TxCM_(m1, m2, m3, op, top, nops, ops, ae, te) \
14295 { #m1 #m2 #m3, OPS##nops ops, sizeof(#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof(#m1) - 1, \
14296 0x##op, top, ARM_VARIANT, THUMB_VARIANT, do_##ae, do_##te }
14297
14298 #define TxCM(m1, m2, op, top, nops, ops, ae, te) \
14299 TxCM_(m1, , m2, op, top, nops, ops, ae, te), \
14300 TxCM_(m1, eq, m2, op, top, nops, ops, ae, te), \
14301 TxCM_(m1, ne, m2, op, top, nops, ops, ae, te), \
14302 TxCM_(m1, cs, m2, op, top, nops, ops, ae, te), \
14303 TxCM_(m1, hs, m2, op, top, nops, ops, ae, te), \
14304 TxCM_(m1, cc, m2, op, top, nops, ops, ae, te), \
14305 TxCM_(m1, ul, m2, op, top, nops, ops, ae, te), \
14306 TxCM_(m1, lo, m2, op, top, nops, ops, ae, te), \
14307 TxCM_(m1, mi, m2, op, top, nops, ops, ae, te), \
14308 TxCM_(m1, pl, m2, op, top, nops, ops, ae, te), \
14309 TxCM_(m1, vs, m2, op, top, nops, ops, ae, te), \
14310 TxCM_(m1, vc, m2, op, top, nops, ops, ae, te), \
14311 TxCM_(m1, hi, m2, op, top, nops, ops, ae, te), \
14312 TxCM_(m1, ls, m2, op, top, nops, ops, ae, te), \
14313 TxCM_(m1, ge, m2, op, top, nops, ops, ae, te), \
14314 TxCM_(m1, lt, m2, op, top, nops, ops, ae, te), \
14315 TxCM_(m1, gt, m2, op, top, nops, ops, ae, te), \
14316 TxCM_(m1, le, m2, op, top, nops, ops, ae, te), \
14317 TxCM_(m1, al, m2, op, top, nops, ops, ae, te)
14318
14319 #define TCM(m1,m2, aop, top, nops, ops, ae, te) \
14320 TxCM(m1,m2, aop, 0x##top, nops, ops, ae, te)
14321 #define tCM(m1,m2, aop, top, nops, ops, ae, te) \
14322 TxCM(m1,m2, aop, T_MNEM_##top, nops, ops, ae, te)
14323
14324 /* Mnemonic that cannot be conditionalized. The ARM condition-code
14325 field is still 0xE. Many of the Thumb variants can be executed
14326 conditionally, so this is checked separately. */
14327 #define TUE(mnem, op, top, nops, ops, ae, te) \
14328 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
14329 THUMB_VARIANT, do_##ae, do_##te }
14330
14331 /* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
14332 condition code field. */
14333 #define TUF(mnem, op, top, nops, ops, ae, te) \
14334 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
14335 THUMB_VARIANT, do_##ae, do_##te }
14336
14337 /* ARM-only variants of all the above. */
14338 #define CE(mnem, op, nops, ops, ae) \
14339 { #mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
14340
14341 #define C3(mnem, op, nops, ops, ae) \
14342 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
14343
14344 /* Legacy mnemonics that always have conditional infix after the third
14345 character. */
14346 #define CL(mnem, op, nops, ops, ae) \
14347 { #mnem, OPS##nops ops, OT_cinfix3_legacy, \
14348 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
14349
14350 /* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
14351 #define cCE(mnem, op, nops, ops, ae) \
14352 { #mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
14353
14354 /* Legacy coprocessor instructions where conditional infix and conditional
14355 suffix are ambiguous. For consistency this includes all FPA instructions,
14356 not just the potentially ambiguous ones. */
14357 #define cCL(mnem, op, nops, ops, ae) \
14358 { #mnem, OPS##nops ops, OT_cinfix3_legacy, \
14359 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
14360
14361 /* Coprocessor, takes either a suffix or a position-3 infix
14362 (for an FPA corner case). */
14363 #define C3E(mnem, op, nops, ops, ae) \
14364 { #mnem, OPS##nops ops, OT_csuf_or_in3, \
14365 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
14366
14367 #define xCM_(m1, m2, m3, op, nops, ops, ae) \
14368 { #m1 #m2 #m3, OPS##nops ops, \
14369 sizeof(#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof(#m1) - 1, \
14370 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
14371
14372 #define CM(m1, m2, op, nops, ops, ae) \
14373 xCM_(m1, , m2, op, nops, ops, ae), \
14374 xCM_(m1, eq, m2, op, nops, ops, ae), \
14375 xCM_(m1, ne, m2, op, nops, ops, ae), \
14376 xCM_(m1, cs, m2, op, nops, ops, ae), \
14377 xCM_(m1, hs, m2, op, nops, ops, ae), \
14378 xCM_(m1, cc, m2, op, nops, ops, ae), \
14379 xCM_(m1, ul, m2, op, nops, ops, ae), \
14380 xCM_(m1, lo, m2, op, nops, ops, ae), \
14381 xCM_(m1, mi, m2, op, nops, ops, ae), \
14382 xCM_(m1, pl, m2, op, nops, ops, ae), \
14383 xCM_(m1, vs, m2, op, nops, ops, ae), \
14384 xCM_(m1, vc, m2, op, nops, ops, ae), \
14385 xCM_(m1, hi, m2, op, nops, ops, ae), \
14386 xCM_(m1, ls, m2, op, nops, ops, ae), \
14387 xCM_(m1, ge, m2, op, nops, ops, ae), \
14388 xCM_(m1, lt, m2, op, nops, ops, ae), \
14389 xCM_(m1, gt, m2, op, nops, ops, ae), \
14390 xCM_(m1, le, m2, op, nops, ops, ae), \
14391 xCM_(m1, al, m2, op, nops, ops, ae)
14392
14393 #define UE(mnem, op, nops, ops, ae) \
14394 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
14395
14396 #define UF(mnem, op, nops, ops, ae) \
14397 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
14398
14399 /* Neon data-processing. ARM versions are unconditional with cond=0xf.
14400 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
14401 use the same encoding function for each. */
14402 #define NUF(mnem, op, nops, ops, enc) \
14403 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
14404 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
14405
14406 /* Neon data processing, version which indirects through neon_enc_tab for
14407 the various overloaded versions of opcodes. */
14408 #define nUF(mnem, op, nops, ops, enc) \
14409 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM_##op, N_MNEM_##op, \
14410 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
14411
14412 /* Neon insn with conditional suffix for the ARM version, non-overloaded
14413 version. */
14414 #define NCE_tag(mnem, op, nops, ops, enc, tag) \
14415 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
14416 THUMB_VARIANT, do_##enc, do_##enc }
14417
14418 #define NCE(mnem, op, nops, ops, enc) \
14419 NCE_tag(mnem, op, nops, ops, enc, OT_csuffix)
14420
14421 #define NCEF(mnem, op, nops, ops, enc) \
14422 NCE_tag(mnem, op, nops, ops, enc, OT_csuffixF)
14423
14424 /* Neon insn with conditional suffix for the ARM version, overloaded types. */
14425 #define nCE_tag(mnem, op, nops, ops, enc, tag) \
14426 { #mnem, OPS##nops ops, tag, N_MNEM_##op, N_MNEM_##op, \
14427 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
14428
14429 #define nCE(mnem, op, nops, ops, enc) \
14430 nCE_tag(mnem, op, nops, ops, enc, OT_csuffix)
14431
14432 #define nCEF(mnem, op, nops, ops, enc) \
14433 nCE_tag(mnem, op, nops, ops, enc, OT_csuffixF)
14434
14435 #define do_0 0
14436
14437 /* Thumb-only, unconditional. */
14438 #define UT(mnem, op, nops, ops, te) TUE(mnem, 0, op, nops, ops, 0, te)
14439
14440 static const struct asm_opcode insns[] =
14441 {
14442 #define ARM_VARIANT &arm_ext_v1 /* Core ARM Instructions. */
14443 #define THUMB_VARIANT &arm_ext_v4t
14444 tCE(and, 0000000, and, 3, (RR, oRR, SH), arit, t_arit3c),
14445 tC3(ands, 0100000, ands, 3, (RR, oRR, SH), arit, t_arit3c),
14446 tCE(eor, 0200000, eor, 3, (RR, oRR, SH), arit, t_arit3c),
14447 tC3(eors, 0300000, eors, 3, (RR, oRR, SH), arit, t_arit3c),
14448 tCE(sub, 0400000, sub, 3, (RR, oRR, SH), arit, t_add_sub),
14449 tC3(subs, 0500000, subs, 3, (RR, oRR, SH), arit, t_add_sub),
14450 tCE(add, 0800000, add, 3, (RR, oRR, SHG), arit, t_add_sub),
14451 tC3(adds, 0900000, adds, 3, (RR, oRR, SHG), arit, t_add_sub),
14452 tCE(adc, 0a00000, adc, 3, (RR, oRR, SH), arit, t_arit3c),
14453 tC3(adcs, 0b00000, adcs, 3, (RR, oRR, SH), arit, t_arit3c),
14454 tCE(sbc, 0c00000, sbc, 3, (RR, oRR, SH), arit, t_arit3),
14455 tC3(sbcs, 0d00000, sbcs, 3, (RR, oRR, SH), arit, t_arit3),
14456 tCE(orr, 1800000, orr, 3, (RR, oRR, SH), arit, t_arit3c),
14457 tC3(orrs, 1900000, orrs, 3, (RR, oRR, SH), arit, t_arit3c),
14458 tCE(bic, 1c00000, bic, 3, (RR, oRR, SH), arit, t_arit3),
14459 tC3(bics, 1d00000, bics, 3, (RR, oRR, SH), arit, t_arit3),
14460
14461 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
14462 for setting PSR flag bits. They are obsolete in V6 and do not
14463 have Thumb equivalents. */
14464 tCE(tst, 1100000, tst, 2, (RR, SH), cmp, t_mvn_tst),
14465 tC3w(tsts, 1100000, tst, 2, (RR, SH), cmp, t_mvn_tst),
14466 CL(tstp, 110f000, 2, (RR, SH), cmp),
14467 tCE(cmp, 1500000, cmp, 2, (RR, SH), cmp, t_mov_cmp),
14468 tC3w(cmps, 1500000, cmp, 2, (RR, SH), cmp, t_mov_cmp),
14469 CL(cmpp, 150f000, 2, (RR, SH), cmp),
14470 tCE(cmn, 1700000, cmn, 2, (RR, SH), cmp, t_mvn_tst),
14471 tC3w(cmns, 1700000, cmn, 2, (RR, SH), cmp, t_mvn_tst),
14472 CL(cmnp, 170f000, 2, (RR, SH), cmp),
14473
14474 tCE(mov, 1a00000, mov, 2, (RR, SH), mov, t_mov_cmp),
14475 tC3(movs, 1b00000, movs, 2, (RR, SH), mov, t_mov_cmp),
14476 tCE(mvn, 1e00000, mvn, 2, (RR, SH), mov, t_mvn_tst),
14477 tC3(mvns, 1f00000, mvns, 2, (RR, SH), mov, t_mvn_tst),
14478
14479 tCE(ldr, 4100000, ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
14480 tC3(ldrb, 4500000, ldrb, 2, (RR, ADDRGLDR),ldst, t_ldst),
14481 tCE(str, 4000000, str, 2, (RR, ADDRGLDR),ldst, t_ldst),
14482 tC3(strb, 4400000, strb, 2, (RR, ADDRGLDR),ldst, t_ldst),
14483
14484 tCE(stm, 8800000, stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14485 tC3(stmia, 8800000, stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14486 tC3(stmea, 8800000, stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14487 tCE(ldm, 8900000, ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14488 tC3(ldmia, 8900000, ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14489 tC3(ldmfd, 8900000, ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14490
14491 TCE(swi, f000000, df00, 1, (EXPi), swi, t_swi),
14492 TCE(svc, f000000, df00, 1, (EXPi), swi, t_swi),
14493 tCE(b, a000000, b, 1, (EXPr), branch, t_branch),
14494 TCE(bl, b000000, f000f800, 1, (EXPr), bl, t_branch23),
14495
14496 /* Pseudo ops. */
14497 tCE(adr, 28f0000, adr, 2, (RR, EXP), adr, t_adr),
14498 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
14499 tCE(nop, 1a00000, nop, 1, (oI255c), nop, t_nop),
14500
14501 /* Thumb-compatibility pseudo ops. */
14502 tCE(lsl, 1a00000, lsl, 3, (RR, oRR, SH), shift, t_shift),
14503 tC3(lsls, 1b00000, lsls, 3, (RR, oRR, SH), shift, t_shift),
14504 tCE(lsr, 1a00020, lsr, 3, (RR, oRR, SH), shift, t_shift),
14505 tC3(lsrs, 1b00020, lsrs, 3, (RR, oRR, SH), shift, t_shift),
14506 tCE(asr, 1a00040, asr, 3, (RR, oRR, SH), shift, t_shift),
14507 tC3(asrs, 1b00040, asrs, 3, (RR, oRR, SH), shift, t_shift),
14508 tCE(ror, 1a00060, ror, 3, (RR, oRR, SH), shift, t_shift),
14509 tC3(rors, 1b00060, rors, 3, (RR, oRR, SH), shift, t_shift),
14510 tCE(neg, 2600000, neg, 2, (RR, RR), rd_rn, t_neg),
14511 tC3(negs, 2700000, negs, 2, (RR, RR), rd_rn, t_neg),
14512 tCE(push, 92d0000, push, 1, (REGLST), push_pop, t_push_pop),
14513 tCE(pop, 8bd0000, pop, 1, (REGLST), push_pop, t_push_pop),
14514
14515 #undef THUMB_VARIANT
14516 #define THUMB_VARIANT &arm_ext_v6
14517 TCE(cpy, 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
14518
14519 /* V1 instructions with no Thumb analogue prior to V6T2. */
14520 #undef THUMB_VARIANT
14521 #define THUMB_VARIANT &arm_ext_v6t2
14522 TCE(rsb, 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
14523 TC3(rsbs, 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
14524 TCE(teq, 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
14525 TC3w(teqs, 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
14526 CL(teqp, 130f000, 2, (RR, SH), cmp),
14527
14528 TC3(ldrt, 4300000, f8500e00, 2, (RR, ADDR), ldstt, t_ldstt),
14529 TC3(ldrbt, 4700000, f8100e00, 2, (RR, ADDR), ldstt, t_ldstt),
14530 TC3(strt, 4200000, f8400e00, 2, (RR, ADDR), ldstt, t_ldstt),
14531 TC3(strbt, 4600000, f8000e00, 2, (RR, ADDR), ldstt, t_ldstt),
14532
14533 TC3(stmdb, 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14534 TC3(stmfd, 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14535
14536 TC3(ldmdb, 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14537 TC3(ldmea, 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
14538
14539 /* V1 instructions with no Thumb analogue at all. */
14540 CE(rsc, 0e00000, 3, (RR, oRR, SH), arit),
14541 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
14542
14543 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
14544 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
14545 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
14546 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
14547 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
14548 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
14549 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
14550 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
14551
14552 #undef ARM_VARIANT
14553 #define ARM_VARIANT &arm_ext_v2 /* ARM 2 - multiplies. */
14554 #undef THUMB_VARIANT
14555 #define THUMB_VARIANT &arm_ext_v4t
14556 tCE(mul, 0000090, mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
14557 tC3(muls, 0100090, muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
14558
14559 #undef THUMB_VARIANT
14560 #define THUMB_VARIANT &arm_ext_v6t2
14561 TCE(mla, 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
14562 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
14563
14564 /* Generic coprocessor instructions. */
14565 TCE(cdp, e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
14566 TCE(ldc, c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14567 TC3(ldcl, c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14568 TCE(stc, c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14569 TC3(stcl, c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14570 TCE(mcr, e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
14571 TCE(mrc, e100010, ee100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
14572
14573 #undef ARM_VARIANT
14574 #define ARM_VARIANT &arm_ext_v2s /* ARM 3 - swp instructions. */
14575 CE(swp, 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
14576 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
14577
14578 #undef ARM_VARIANT
14579 #define ARM_VARIANT &arm_ext_v3 /* ARM 6 Status register instructions. */
14580 TCE(mrs, 10f0000, f3ef8000, 2, (APSR_RR, RVC_PSR), mrs, t_mrs),
14581 TCE(msr, 120f000, f3808000, 2, (RVC_PSR, RR_EXi), msr, t_msr),
14582
14583 #undef ARM_VARIANT
14584 #define ARM_VARIANT &arm_ext_v3m /* ARM 7M long multiplies. */
14585 TCE(smull, 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
14586 CM(smull,s, 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
14587 TCE(umull, 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
14588 CM(umull,s, 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
14589 TCE(smlal, 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
14590 CM(smlal,s, 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
14591 TCE(umlal, 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
14592 CM(umlal,s, 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
14593
14594 #undef ARM_VARIANT
14595 #define ARM_VARIANT &arm_ext_v4 /* ARM Architecture 4. */
14596 #undef THUMB_VARIANT
14597 #define THUMB_VARIANT &arm_ext_v4t
14598 tC3(ldrh, 01000b0, ldrh, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14599 tC3(strh, 00000b0, strh, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14600 tC3(ldrsh, 01000f0, ldrsh, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14601 tC3(ldrsb, 01000d0, ldrsb, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14602 tCM(ld,sh, 01000f0, ldrsh, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14603 tCM(ld,sb, 01000d0, ldrsb, 2, (RR, ADDRGLDRS), ldstv4, t_ldst),
14604
14605 #undef ARM_VARIANT
14606 #define ARM_VARIANT &arm_ext_v4t_5
14607 /* ARM Architecture 4T. */
14608 /* Note: bx (and blx) are required on V5, even if the processor does
14609 not support Thumb. */
14610 TCE(bx, 12fff10, 4700, 1, (RR), bx, t_bx),
14611
14612 #undef ARM_VARIANT
14613 #define ARM_VARIANT &arm_ext_v5 /* ARM Architecture 5T. */
14614 #undef THUMB_VARIANT
14615 #define THUMB_VARIANT &arm_ext_v5t
14616 /* Note: blx has 2 variants; the .value coded here is for
14617 BLX(2). Only this variant has conditional execution. */
14618 TCE(blx, 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
14619 TUE(bkpt, 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
14620
14621 #undef THUMB_VARIANT
14622 #define THUMB_VARIANT &arm_ext_v6t2
14623 TCE(clz, 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
14624 TUF(ldc2, c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14625 TUF(ldc2l, c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14626 TUF(stc2, c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14627 TUF(stc2l, c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
14628 TUF(cdp2, e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
14629 TUF(mcr2, e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
14630 TUF(mrc2, e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
14631
14632 #undef ARM_VARIANT
14633 #define ARM_VARIANT &arm_ext_v5exp /* ARM Architecture 5TExP. */
14634 TCE(smlabb, 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14635 TCE(smlatb, 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14636 TCE(smlabt, 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14637 TCE(smlatt, 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14638
14639 TCE(smlawb, 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14640 TCE(smlawt, 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
14641
14642 TCE(smlalbb, 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
14643 TCE(smlaltb, 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
14644 TCE(smlalbt, 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
14645 TCE(smlaltt, 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
14646
14647 TCE(smulbb, 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14648 TCE(smultb, 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14649 TCE(smulbt, 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14650 TCE(smultt, 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14651
14652 TCE(smulwb, 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14653 TCE(smulwt, 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14654
14655 TCE(qadd, 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, rd_rm_rn),
14656 TCE(qdadd, 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, rd_rm_rn),
14657 TCE(qsub, 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, rd_rm_rn),
14658 TCE(qdsub, 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, rd_rm_rn),
14659
14660 #undef ARM_VARIANT
14661 #define ARM_VARIANT &arm_ext_v5e /* ARM Architecture 5TE. */
14662 TUF(pld, 450f000, f810f000, 1, (ADDR), pld, t_pld),
14663 TC3(ldrd, 00000d0, e9500000, 3, (RRnpc, oRRnpc, ADDRGLDRS), ldrd, t_ldstd),
14664 TC3(strd, 00000f0, e9400000, 3, (RRnpc, oRRnpc, ADDRGLDRS), ldrd, t_ldstd),
14665
14666 TCE(mcrr, c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
14667 TCE(mrrc, c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
14668
14669 #undef ARM_VARIANT
14670 #define ARM_VARIANT &arm_ext_v5j /* ARM Architecture 5TEJ. */
14671 TCE(bxj, 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
14672
14673 #undef ARM_VARIANT
14674 #define ARM_VARIANT &arm_ext_v6 /* ARM V6. */
14675 #undef THUMB_VARIANT
14676 #define THUMB_VARIANT &arm_ext_v6
14677 TUF(cpsie, 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
14678 TUF(cpsid, 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
14679 tCE(rev, 6bf0f30, rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
14680 tCE(rev16, 6bf0fb0, rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
14681 tCE(revsh, 6ff0fb0, revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
14682 tCE(sxth, 6bf0070, sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14683 tCE(uxth, 6ff0070, uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14684 tCE(sxtb, 6af0070, sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14685 tCE(uxtb, 6ef0070, uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14686 TUF(setend, 1010000, b650, 1, (ENDI), setend, t_setend),
14687
14688 #undef THUMB_VARIANT
14689 #define THUMB_VARIANT &arm_ext_v6t2
14690 TCE(ldrex, 1900f9f, e8500f00, 2, (RRnpc, ADDR), ldrex, t_ldrex),
14691 TUF(mcrr2, c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
14692 TUF(mrrc2, c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
14693
14694 TCE(ssat, 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
14695 TCE(usat, 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
14696
14697 /* ARM V6 not included in V7M (eg. integer SIMD). */
14698 #undef THUMB_VARIANT
14699 #define THUMB_VARIANT &arm_ext_v6_notm
14700 TUF(cps, 1020000, f3af8100, 1, (I31b), imm0, t_cps),
14701 TCE(pkhbt, 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
14702 TCE(pkhtb, 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
14703 TCE(qadd16, 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14704 TCE(qadd8, 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14705 TCE(qaddsubx, 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14706 TCE(qsub16, 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14707 TCE(qsub8, 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14708 TCE(qsubaddx, 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14709 TCE(sadd16, 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14710 TCE(sadd8, 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14711 TCE(saddsubx, 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14712 TCE(shadd16, 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14713 TCE(shadd8, 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14714 TCE(shaddsubx, 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14715 TCE(shsub16, 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14716 TCE(shsub8, 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14717 TCE(shsubaddx, 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14718 TCE(ssub16, 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14719 TCE(ssub8, 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14720 TCE(ssubaddx, 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14721 TCE(uadd16, 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14722 TCE(uadd8, 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14723 TCE(uaddsubx, 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14724 TCE(uhadd16, 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14725 TCE(uhadd8, 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14726 TCE(uhaddsubx, 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14727 TCE(uhsub16, 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14728 TCE(uhsub8, 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14729 TCE(uhsubaddx, 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14730 TCE(uqadd16, 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14731 TCE(uqadd8, 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14732 TCE(uqaddsubx, 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14733 TCE(uqsub16, 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14734 TCE(uqsub8, 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14735 TCE(uqsubaddx, 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14736 TCE(usub16, 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14737 TCE(usub8, 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14738 TCE(usubaddx, 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14739 TUF(rfeia, 8900a00, e990c000, 1, (RRw), rfe, rfe),
14740 UF(rfeib, 9900a00, 1, (RRw), rfe),
14741 UF(rfeda, 8100a00, 1, (RRw), rfe),
14742 TUF(rfedb, 9100a00, e810c000, 1, (RRw), rfe, rfe),
14743 TUF(rfefd, 8900a00, e990c000, 1, (RRw), rfe, rfe),
14744 UF(rfefa, 9900a00, 1, (RRw), rfe),
14745 UF(rfeea, 8100a00, 1, (RRw), rfe),
14746 TUF(rfeed, 9100a00, e810c000, 1, (RRw), rfe, rfe),
14747 TCE(sxtah, 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14748 TCE(sxtab16, 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14749 TCE(sxtab, 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14750 TCE(sxtb16, 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14751 TCE(uxtah, 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14752 TCE(uxtab16, 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14753 TCE(uxtab, 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
14754 TCE(uxtb16, 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
14755 TCE(sel, 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
14756 TCE(smlad, 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14757 TCE(smladx, 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14758 TCE(smlald, 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
14759 TCE(smlaldx, 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
14760 TCE(smlsd, 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14761 TCE(smlsdx, 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14762 TCE(smlsld, 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
14763 TCE(smlsldx, 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
14764 TCE(smmla, 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14765 TCE(smmlar, 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14766 TCE(smmls, 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14767 TCE(smmlsr, 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14768 TCE(smmul, 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14769 TCE(smmulr, 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14770 TCE(smuad, 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14771 TCE(smuadx, 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14772 TCE(smusd, 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14773 TCE(smusdx, 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14774 TUF(srsia, 8cd0500, e980c000, 1, (I31w), srs, srs),
14775 UF(srsib, 9cd0500, 1, (I31w), srs),
14776 UF(srsda, 84d0500, 1, (I31w), srs),
14777 TUF(srsdb, 94d0500, e800c000, 1, (I31w), srs, srs),
14778 TCE(ssat16, 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
14779 TCE(strex, 1800f90, e8400000, 3, (RRnpc, RRnpc, ADDR), strex, t_strex),
14780 TCE(umaal, 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
14781 TCE(usad8, 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
14782 TCE(usada8, 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
14783 TCE(usat16, 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
14784
14785 #undef ARM_VARIANT
14786 #define ARM_VARIANT &arm_ext_v6k
14787 #undef THUMB_VARIANT
14788 #define THUMB_VARIANT &arm_ext_v6k
14789 tCE(yield, 320f001, yield, 0, (), noargs, t_hint),
14790 tCE(wfe, 320f002, wfe, 0, (), noargs, t_hint),
14791 tCE(wfi, 320f003, wfi, 0, (), noargs, t_hint),
14792 tCE(sev, 320f004, sev, 0, (), noargs, t_hint),
14793
14794 #undef THUMB_VARIANT
14795 #define THUMB_VARIANT &arm_ext_v6_notm
14796 TCE(ldrexd, 1b00f9f, e8d0007f, 3, (RRnpc, oRRnpc, RRnpcb), ldrexd, t_ldrexd),
14797 TCE(strexd, 1a00f90, e8c00070, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb), strexd, t_strexd),
14798
14799 #undef THUMB_VARIANT
14800 #define THUMB_VARIANT &arm_ext_v6t2
14801 TCE(ldrexb, 1d00f9f, e8d00f4f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
14802 TCE(ldrexh, 1f00f9f, e8d00f5f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
14803 TCE(strexb, 1c00f90, e8c00f40, 3, (RRnpc, RRnpc, ADDR), strex, rm_rd_rn),
14804 TCE(strexh, 1e00f90, e8c00f50, 3, (RRnpc, RRnpc, ADDR), strex, rm_rd_rn),
14805 TUF(clrex, 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
14806
14807 #undef ARM_VARIANT
14808 #define ARM_VARIANT &arm_ext_v6z
14809 TCE(smc, 1600070, f7f08000, 1, (EXPi), smc, t_smc),
14810
14811 #undef ARM_VARIANT
14812 #define ARM_VARIANT &arm_ext_v6t2
14813 TCE(bfc, 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
14814 TCE(bfi, 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
14815 TCE(sbfx, 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
14816 TCE(ubfx, 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
14817
14818 TCE(mls, 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
14819 TCE(movw, 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
14820 TCE(movt, 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
14821 TCE(rbit, 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
14822
14823 TC3(ldrht, 03000b0, f8300e00, 2, (RR, ADDR), ldsttv4, t_ldstt),
14824 TC3(ldrsht, 03000f0, f9300e00, 2, (RR, ADDR), ldsttv4, t_ldstt),
14825 TC3(ldrsbt, 03000d0, f9100e00, 2, (RR, ADDR), ldsttv4, t_ldstt),
14826 TC3(strht, 02000b0, f8200e00, 2, (RR, ADDR), ldsttv4, t_ldstt),
14827
14828 UT(cbnz, b900, 2, (RR, EXP), t_czb),
14829 UT(cbz, b100, 2, (RR, EXP), t_czb),
14830 /* ARM does not really have an IT instruction. */
14831 TUE(it, 0, bf08, 1, (COND), it, t_it),
14832 TUE(itt, 0, bf0c, 1, (COND), it, t_it),
14833 TUE(ite, 0, bf04, 1, (COND), it, t_it),
14834 TUE(ittt, 0, bf0e, 1, (COND), it, t_it),
14835 TUE(itet, 0, bf06, 1, (COND), it, t_it),
14836 TUE(itte, 0, bf0a, 1, (COND), it, t_it),
14837 TUE(itee, 0, bf02, 1, (COND), it, t_it),
14838 TUE(itttt, 0, bf0f, 1, (COND), it, t_it),
14839 TUE(itett, 0, bf07, 1, (COND), it, t_it),
14840 TUE(ittet, 0, bf0b, 1, (COND), it, t_it),
14841 TUE(iteet, 0, bf03, 1, (COND), it, t_it),
14842 TUE(ittte, 0, bf0d, 1, (COND), it, t_it),
14843 TUE(itete, 0, bf05, 1, (COND), it, t_it),
14844 TUE(ittee, 0, bf09, 1, (COND), it, t_it),
14845 TUE(iteee, 0, bf01, 1, (COND), it, t_it),
14846
14847 /* Thumb2 only instructions. */
14848 #undef ARM_VARIANT
14849 #define ARM_VARIANT NULL
14850
14851 TCE(addw, 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
14852 TCE(subw, 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
14853 TCE(tbb, 0, e8d0f000, 1, (TB), 0, t_tb),
14854 TCE(tbh, 0, e8d0f010, 1, (TB), 0, t_tb),
14855
14856 /* Thumb-2 hardware division instructions (R and M profiles only). */
14857 #undef THUMB_VARIANT
14858 #define THUMB_VARIANT &arm_ext_div
14859 TCE(sdiv, 0, fb90f0f0, 3, (RR, oRR, RR), 0, t_div),
14860 TCE(udiv, 0, fbb0f0f0, 3, (RR, oRR, RR), 0, t_div),
14861
14862 /* ARM V7 instructions. */
14863 #undef ARM_VARIANT
14864 #define ARM_VARIANT &arm_ext_v7
14865 #undef THUMB_VARIANT
14866 #define THUMB_VARIANT &arm_ext_v7
14867 TUF(pli, 450f000, f910f000, 1, (ADDR), pli, t_pld),
14868 TCE(dbg, 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
14869 TUF(dmb, 57ff050, f3bf8f50, 1, (oBARRIER), barrier, t_barrier),
14870 TUF(dsb, 57ff040, f3bf8f40, 1, (oBARRIER), barrier, t_barrier),
14871 TUF(isb, 57ff060, f3bf8f60, 1, (oBARRIER), barrier, t_barrier),
14872
14873 #undef ARM_VARIANT
14874 #define ARM_VARIANT &fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
14875 cCE(wfs, e200110, 1, (RR), rd),
14876 cCE(rfs, e300110, 1, (RR), rd),
14877 cCE(wfc, e400110, 1, (RR), rd),
14878 cCE(rfc, e500110, 1, (RR), rd),
14879
14880 cCL(ldfs, c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
14881 cCL(ldfd, c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
14882 cCL(ldfe, c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
14883 cCL(ldfp, c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
14884
14885 cCL(stfs, c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
14886 cCL(stfd, c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
14887 cCL(stfe, c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
14888 cCL(stfp, c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
14889
14890 cCL(mvfs, e008100, 2, (RF, RF_IF), rd_rm),
14891 cCL(mvfsp, e008120, 2, (RF, RF_IF), rd_rm),
14892 cCL(mvfsm, e008140, 2, (RF, RF_IF), rd_rm),
14893 cCL(mvfsz, e008160, 2, (RF, RF_IF), rd_rm),
14894 cCL(mvfd, e008180, 2, (RF, RF_IF), rd_rm),
14895 cCL(mvfdp, e0081a0, 2, (RF, RF_IF), rd_rm),
14896 cCL(mvfdm, e0081c0, 2, (RF, RF_IF), rd_rm),
14897 cCL(mvfdz, e0081e0, 2, (RF, RF_IF), rd_rm),
14898 cCL(mvfe, e088100, 2, (RF, RF_IF), rd_rm),
14899 cCL(mvfep, e088120, 2, (RF, RF_IF), rd_rm),
14900 cCL(mvfem, e088140, 2, (RF, RF_IF), rd_rm),
14901 cCL(mvfez, e088160, 2, (RF, RF_IF), rd_rm),
14902
14903 cCL(mnfs, e108100, 2, (RF, RF_IF), rd_rm),
14904 cCL(mnfsp, e108120, 2, (RF, RF_IF), rd_rm),
14905 cCL(mnfsm, e108140, 2, (RF, RF_IF), rd_rm),
14906 cCL(mnfsz, e108160, 2, (RF, RF_IF), rd_rm),
14907 cCL(mnfd, e108180, 2, (RF, RF_IF), rd_rm),
14908 cCL(mnfdp, e1081a0, 2, (RF, RF_IF), rd_rm),
14909 cCL(mnfdm, e1081c0, 2, (RF, RF_IF), rd_rm),
14910 cCL(mnfdz, e1081e0, 2, (RF, RF_IF), rd_rm),
14911 cCL(mnfe, e188100, 2, (RF, RF_IF), rd_rm),
14912 cCL(mnfep, e188120, 2, (RF, RF_IF), rd_rm),
14913 cCL(mnfem, e188140, 2, (RF, RF_IF), rd_rm),
14914 cCL(mnfez, e188160, 2, (RF, RF_IF), rd_rm),
14915
14916 cCL(abss, e208100, 2, (RF, RF_IF), rd_rm),
14917 cCL(abssp, e208120, 2, (RF, RF_IF), rd_rm),
14918 cCL(abssm, e208140, 2, (RF, RF_IF), rd_rm),
14919 cCL(abssz, e208160, 2, (RF, RF_IF), rd_rm),
14920 cCL(absd, e208180, 2, (RF, RF_IF), rd_rm),
14921 cCL(absdp, e2081a0, 2, (RF, RF_IF), rd_rm),
14922 cCL(absdm, e2081c0, 2, (RF, RF_IF), rd_rm),
14923 cCL(absdz, e2081e0, 2, (RF, RF_IF), rd_rm),
14924 cCL(abse, e288100, 2, (RF, RF_IF), rd_rm),
14925 cCL(absep, e288120, 2, (RF, RF_IF), rd_rm),
14926 cCL(absem, e288140, 2, (RF, RF_IF), rd_rm),
14927 cCL(absez, e288160, 2, (RF, RF_IF), rd_rm),
14928
14929 cCL(rnds, e308100, 2, (RF, RF_IF), rd_rm),
14930 cCL(rndsp, e308120, 2, (RF, RF_IF), rd_rm),
14931 cCL(rndsm, e308140, 2, (RF, RF_IF), rd_rm),
14932 cCL(rndsz, e308160, 2, (RF, RF_IF), rd_rm),
14933 cCL(rndd, e308180, 2, (RF, RF_IF), rd_rm),
14934 cCL(rnddp, e3081a0, 2, (RF, RF_IF), rd_rm),
14935 cCL(rnddm, e3081c0, 2, (RF, RF_IF), rd_rm),
14936 cCL(rnddz, e3081e0, 2, (RF, RF_IF), rd_rm),
14937 cCL(rnde, e388100, 2, (RF, RF_IF), rd_rm),
14938 cCL(rndep, e388120, 2, (RF, RF_IF), rd_rm),
14939 cCL(rndem, e388140, 2, (RF, RF_IF), rd_rm),
14940 cCL(rndez, e388160, 2, (RF, RF_IF), rd_rm),
14941
14942 cCL(sqts, e408100, 2, (RF, RF_IF), rd_rm),
14943 cCL(sqtsp, e408120, 2, (RF, RF_IF), rd_rm),
14944 cCL(sqtsm, e408140, 2, (RF, RF_IF), rd_rm),
14945 cCL(sqtsz, e408160, 2, (RF, RF_IF), rd_rm),
14946 cCL(sqtd, e408180, 2, (RF, RF_IF), rd_rm),
14947 cCL(sqtdp, e4081a0, 2, (RF, RF_IF), rd_rm),
14948 cCL(sqtdm, e4081c0, 2, (RF, RF_IF), rd_rm),
14949 cCL(sqtdz, e4081e0, 2, (RF, RF_IF), rd_rm),
14950 cCL(sqte, e488100, 2, (RF, RF_IF), rd_rm),
14951 cCL(sqtep, e488120, 2, (RF, RF_IF), rd_rm),
14952 cCL(sqtem, e488140, 2, (RF, RF_IF), rd_rm),
14953 cCL(sqtez, e488160, 2, (RF, RF_IF), rd_rm),
14954
14955 cCL(logs, e508100, 2, (RF, RF_IF), rd_rm),
14956 cCL(logsp, e508120, 2, (RF, RF_IF), rd_rm),
14957 cCL(logsm, e508140, 2, (RF, RF_IF), rd_rm),
14958 cCL(logsz, e508160, 2, (RF, RF_IF), rd_rm),
14959 cCL(logd, e508180, 2, (RF, RF_IF), rd_rm),
14960 cCL(logdp, e5081a0, 2, (RF, RF_IF), rd_rm),
14961 cCL(logdm, e5081c0, 2, (RF, RF_IF), rd_rm),
14962 cCL(logdz, e5081e0, 2, (RF, RF_IF), rd_rm),
14963 cCL(loge, e588100, 2, (RF, RF_IF), rd_rm),
14964 cCL(logep, e588120, 2, (RF, RF_IF), rd_rm),
14965 cCL(logem, e588140, 2, (RF, RF_IF), rd_rm),
14966 cCL(logez, e588160, 2, (RF, RF_IF), rd_rm),
14967
14968 cCL(lgns, e608100, 2, (RF, RF_IF), rd_rm),
14969 cCL(lgnsp, e608120, 2, (RF, RF_IF), rd_rm),
14970 cCL(lgnsm, e608140, 2, (RF, RF_IF), rd_rm),
14971 cCL(lgnsz, e608160, 2, (RF, RF_IF), rd_rm),
14972 cCL(lgnd, e608180, 2, (RF, RF_IF), rd_rm),
14973 cCL(lgndp, e6081a0, 2, (RF, RF_IF), rd_rm),
14974 cCL(lgndm, e6081c0, 2, (RF, RF_IF), rd_rm),
14975 cCL(lgndz, e6081e0, 2, (RF, RF_IF), rd_rm),
14976 cCL(lgne, e688100, 2, (RF, RF_IF), rd_rm),
14977 cCL(lgnep, e688120, 2, (RF, RF_IF), rd_rm),
14978 cCL(lgnem, e688140, 2, (RF, RF_IF), rd_rm),
14979 cCL(lgnez, e688160, 2, (RF, RF_IF), rd_rm),
14980
14981 cCL(exps, e708100, 2, (RF, RF_IF), rd_rm),
14982 cCL(expsp, e708120, 2, (RF, RF_IF), rd_rm),
14983 cCL(expsm, e708140, 2, (RF, RF_IF), rd_rm),
14984 cCL(expsz, e708160, 2, (RF, RF_IF), rd_rm),
14985 cCL(expd, e708180, 2, (RF, RF_IF), rd_rm),
14986 cCL(expdp, e7081a0, 2, (RF, RF_IF), rd_rm),
14987 cCL(expdm, e7081c0, 2, (RF, RF_IF), rd_rm),
14988 cCL(expdz, e7081e0, 2, (RF, RF_IF), rd_rm),
14989 cCL(expe, e788100, 2, (RF, RF_IF), rd_rm),
14990 cCL(expep, e788120, 2, (RF, RF_IF), rd_rm),
14991 cCL(expem, e788140, 2, (RF, RF_IF), rd_rm),
14992 cCL(expdz, e788160, 2, (RF, RF_IF), rd_rm),
14993
14994 cCL(sins, e808100, 2, (RF, RF_IF), rd_rm),
14995 cCL(sinsp, e808120, 2, (RF, RF_IF), rd_rm),
14996 cCL(sinsm, e808140, 2, (RF, RF_IF), rd_rm),
14997 cCL(sinsz, e808160, 2, (RF, RF_IF), rd_rm),
14998 cCL(sind, e808180, 2, (RF, RF_IF), rd_rm),
14999 cCL(sindp, e8081a0, 2, (RF, RF_IF), rd_rm),
15000 cCL(sindm, e8081c0, 2, (RF, RF_IF), rd_rm),
15001 cCL(sindz, e8081e0, 2, (RF, RF_IF), rd_rm),
15002 cCL(sine, e888100, 2, (RF, RF_IF), rd_rm),
15003 cCL(sinep, e888120, 2, (RF, RF_IF), rd_rm),
15004 cCL(sinem, e888140, 2, (RF, RF_IF), rd_rm),
15005 cCL(sinez, e888160, 2, (RF, RF_IF), rd_rm),
15006
15007 cCL(coss, e908100, 2, (RF, RF_IF), rd_rm),
15008 cCL(cossp, e908120, 2, (RF, RF_IF), rd_rm),
15009 cCL(cossm, e908140, 2, (RF, RF_IF), rd_rm),
15010 cCL(cossz, e908160, 2, (RF, RF_IF), rd_rm),
15011 cCL(cosd, e908180, 2, (RF, RF_IF), rd_rm),
15012 cCL(cosdp, e9081a0, 2, (RF, RF_IF), rd_rm),
15013 cCL(cosdm, e9081c0, 2, (RF, RF_IF), rd_rm),
15014 cCL(cosdz, e9081e0, 2, (RF, RF_IF), rd_rm),
15015 cCL(cose, e988100, 2, (RF, RF_IF), rd_rm),
15016 cCL(cosep, e988120, 2, (RF, RF_IF), rd_rm),
15017 cCL(cosem, e988140, 2, (RF, RF_IF), rd_rm),
15018 cCL(cosez, e988160, 2, (RF, RF_IF), rd_rm),
15019
15020 cCL(tans, ea08100, 2, (RF, RF_IF), rd_rm),
15021 cCL(tansp, ea08120, 2, (RF, RF_IF), rd_rm),
15022 cCL(tansm, ea08140, 2, (RF, RF_IF), rd_rm),
15023 cCL(tansz, ea08160, 2, (RF, RF_IF), rd_rm),
15024 cCL(tand, ea08180, 2, (RF, RF_IF), rd_rm),
15025 cCL(tandp, ea081a0, 2, (RF, RF_IF), rd_rm),
15026 cCL(tandm, ea081c0, 2, (RF, RF_IF), rd_rm),
15027 cCL(tandz, ea081e0, 2, (RF, RF_IF), rd_rm),
15028 cCL(tane, ea88100, 2, (RF, RF_IF), rd_rm),
15029 cCL(tanep, ea88120, 2, (RF, RF_IF), rd_rm),
15030 cCL(tanem, ea88140, 2, (RF, RF_IF), rd_rm),
15031 cCL(tanez, ea88160, 2, (RF, RF_IF), rd_rm),
15032
15033 cCL(asns, eb08100, 2, (RF, RF_IF), rd_rm),
15034 cCL(asnsp, eb08120, 2, (RF, RF_IF), rd_rm),
15035 cCL(asnsm, eb08140, 2, (RF, RF_IF), rd_rm),
15036 cCL(asnsz, eb08160, 2, (RF, RF_IF), rd_rm),
15037 cCL(asnd, eb08180, 2, (RF, RF_IF), rd_rm),
15038 cCL(asndp, eb081a0, 2, (RF, RF_IF), rd_rm),
15039 cCL(asndm, eb081c0, 2, (RF, RF_IF), rd_rm),
15040 cCL(asndz, eb081e0, 2, (RF, RF_IF), rd_rm),
15041 cCL(asne, eb88100, 2, (RF, RF_IF), rd_rm),
15042 cCL(asnep, eb88120, 2, (RF, RF_IF), rd_rm),
15043 cCL(asnem, eb88140, 2, (RF, RF_IF), rd_rm),
15044 cCL(asnez, eb88160, 2, (RF, RF_IF), rd_rm),
15045
15046 cCL(acss, ec08100, 2, (RF, RF_IF), rd_rm),
15047 cCL(acssp, ec08120, 2, (RF, RF_IF), rd_rm),
15048 cCL(acssm, ec08140, 2, (RF, RF_IF), rd_rm),
15049 cCL(acssz, ec08160, 2, (RF, RF_IF), rd_rm),
15050 cCL(acsd, ec08180, 2, (RF, RF_IF), rd_rm),
15051 cCL(acsdp, ec081a0, 2, (RF, RF_IF), rd_rm),
15052 cCL(acsdm, ec081c0, 2, (RF, RF_IF), rd_rm),
15053 cCL(acsdz, ec081e0, 2, (RF, RF_IF), rd_rm),
15054 cCL(acse, ec88100, 2, (RF, RF_IF), rd_rm),
15055 cCL(acsep, ec88120, 2, (RF, RF_IF), rd_rm),
15056 cCL(acsem, ec88140, 2, (RF, RF_IF), rd_rm),
15057 cCL(acsez, ec88160, 2, (RF, RF_IF), rd_rm),
15058
15059 cCL(atns, ed08100, 2, (RF, RF_IF), rd_rm),
15060 cCL(atnsp, ed08120, 2, (RF, RF_IF), rd_rm),
15061 cCL(atnsm, ed08140, 2, (RF, RF_IF), rd_rm),
15062 cCL(atnsz, ed08160, 2, (RF, RF_IF), rd_rm),
15063 cCL(atnd, ed08180, 2, (RF, RF_IF), rd_rm),
15064 cCL(atndp, ed081a0, 2, (RF, RF_IF), rd_rm),
15065 cCL(atndm, ed081c0, 2, (RF, RF_IF), rd_rm),
15066 cCL(atndz, ed081e0, 2, (RF, RF_IF), rd_rm),
15067 cCL(atne, ed88100, 2, (RF, RF_IF), rd_rm),
15068 cCL(atnep, ed88120, 2, (RF, RF_IF), rd_rm),
15069 cCL(atnem, ed88140, 2, (RF, RF_IF), rd_rm),
15070 cCL(atnez, ed88160, 2, (RF, RF_IF), rd_rm),
15071
15072 cCL(urds, ee08100, 2, (RF, RF_IF), rd_rm),
15073 cCL(urdsp, ee08120, 2, (RF, RF_IF), rd_rm),
15074 cCL(urdsm, ee08140, 2, (RF, RF_IF), rd_rm),
15075 cCL(urdsz, ee08160, 2, (RF, RF_IF), rd_rm),
15076 cCL(urdd, ee08180, 2, (RF, RF_IF), rd_rm),
15077 cCL(urddp, ee081a0, 2, (RF, RF_IF), rd_rm),
15078 cCL(urddm, ee081c0, 2, (RF, RF_IF), rd_rm),
15079 cCL(urddz, ee081e0, 2, (RF, RF_IF), rd_rm),
15080 cCL(urde, ee88100, 2, (RF, RF_IF), rd_rm),
15081 cCL(urdep, ee88120, 2, (RF, RF_IF), rd_rm),
15082 cCL(urdem, ee88140, 2, (RF, RF_IF), rd_rm),
15083 cCL(urdez, ee88160, 2, (RF, RF_IF), rd_rm),
15084
15085 cCL(nrms, ef08100, 2, (RF, RF_IF), rd_rm),
15086 cCL(nrmsp, ef08120, 2, (RF, RF_IF), rd_rm),
15087 cCL(nrmsm, ef08140, 2, (RF, RF_IF), rd_rm),
15088 cCL(nrmsz, ef08160, 2, (RF, RF_IF), rd_rm),
15089 cCL(nrmd, ef08180, 2, (RF, RF_IF), rd_rm),
15090 cCL(nrmdp, ef081a0, 2, (RF, RF_IF), rd_rm),
15091 cCL(nrmdm, ef081c0, 2, (RF, RF_IF), rd_rm),
15092 cCL(nrmdz, ef081e0, 2, (RF, RF_IF), rd_rm),
15093 cCL(nrme, ef88100, 2, (RF, RF_IF), rd_rm),
15094 cCL(nrmep, ef88120, 2, (RF, RF_IF), rd_rm),
15095 cCL(nrmem, ef88140, 2, (RF, RF_IF), rd_rm),
15096 cCL(nrmez, ef88160, 2, (RF, RF_IF), rd_rm),
15097
15098 cCL(adfs, e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
15099 cCL(adfsp, e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
15100 cCL(adfsm, e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
15101 cCL(adfsz, e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
15102 cCL(adfd, e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
15103 cCL(adfdp, e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15104 cCL(adfdm, e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15105 cCL(adfdz, e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15106 cCL(adfe, e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
15107 cCL(adfep, e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
15108 cCL(adfem, e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
15109 cCL(adfez, e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
15110
15111 cCL(sufs, e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
15112 cCL(sufsp, e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
15113 cCL(sufsm, e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
15114 cCL(sufsz, e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
15115 cCL(sufd, e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
15116 cCL(sufdp, e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15117 cCL(sufdm, e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15118 cCL(sufdz, e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15119 cCL(sufe, e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
15120 cCL(sufep, e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
15121 cCL(sufem, e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
15122 cCL(sufez, e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
15123
15124 cCL(rsfs, e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
15125 cCL(rsfsp, e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
15126 cCL(rsfsm, e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
15127 cCL(rsfsz, e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
15128 cCL(rsfd, e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
15129 cCL(rsfdp, e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15130 cCL(rsfdm, e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15131 cCL(rsfdz, e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15132 cCL(rsfe, e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
15133 cCL(rsfep, e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
15134 cCL(rsfem, e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
15135 cCL(rsfez, e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
15136
15137 cCL(mufs, e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
15138 cCL(mufsp, e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
15139 cCL(mufsm, e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
15140 cCL(mufsz, e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
15141 cCL(mufd, e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
15142 cCL(mufdp, e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15143 cCL(mufdm, e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15144 cCL(mufdz, e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15145 cCL(mufe, e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
15146 cCL(mufep, e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
15147 cCL(mufem, e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
15148 cCL(mufez, e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
15149
15150 cCL(dvfs, e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
15151 cCL(dvfsp, e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
15152 cCL(dvfsm, e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
15153 cCL(dvfsz, e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
15154 cCL(dvfd, e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
15155 cCL(dvfdp, e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15156 cCL(dvfdm, e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15157 cCL(dvfdz, e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15158 cCL(dvfe, e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
15159 cCL(dvfep, e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
15160 cCL(dvfem, e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
15161 cCL(dvfez, e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
15162
15163 cCL(rdfs, e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
15164 cCL(rdfsp, e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
15165 cCL(rdfsm, e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
15166 cCL(rdfsz, e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
15167 cCL(rdfd, e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
15168 cCL(rdfdp, e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15169 cCL(rdfdm, e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15170 cCL(rdfdz, e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15171 cCL(rdfe, e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
15172 cCL(rdfep, e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
15173 cCL(rdfem, e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
15174 cCL(rdfez, e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
15175
15176 cCL(pows, e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
15177 cCL(powsp, e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
15178 cCL(powsm, e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
15179 cCL(powsz, e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
15180 cCL(powd, e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
15181 cCL(powdp, e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15182 cCL(powdm, e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15183 cCL(powdz, e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15184 cCL(powe, e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
15185 cCL(powep, e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
15186 cCL(powem, e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
15187 cCL(powez, e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
15188
15189 cCL(rpws, e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
15190 cCL(rpwsp, e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
15191 cCL(rpwsm, e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
15192 cCL(rpwsz, e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
15193 cCL(rpwd, e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
15194 cCL(rpwdp, e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15195 cCL(rpwdm, e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15196 cCL(rpwdz, e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15197 cCL(rpwe, e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
15198 cCL(rpwep, e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
15199 cCL(rpwem, e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
15200 cCL(rpwez, e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
15201
15202 cCL(rmfs, e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
15203 cCL(rmfsp, e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
15204 cCL(rmfsm, e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
15205 cCL(rmfsz, e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
15206 cCL(rmfd, e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
15207 cCL(rmfdp, e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15208 cCL(rmfdm, e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15209 cCL(rmfdz, e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15210 cCL(rmfe, e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
15211 cCL(rmfep, e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
15212 cCL(rmfem, e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
15213 cCL(rmfez, e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
15214
15215 cCL(fmls, e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
15216 cCL(fmlsp, e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
15217 cCL(fmlsm, e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
15218 cCL(fmlsz, e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
15219 cCL(fmld, e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
15220 cCL(fmldp, e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15221 cCL(fmldm, e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15222 cCL(fmldz, e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15223 cCL(fmle, e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
15224 cCL(fmlep, e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
15225 cCL(fmlem, e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
15226 cCL(fmlez, e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
15227
15228 cCL(fdvs, ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
15229 cCL(fdvsp, ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
15230 cCL(fdvsm, ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
15231 cCL(fdvsz, ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
15232 cCL(fdvd, ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
15233 cCL(fdvdp, ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15234 cCL(fdvdm, ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15235 cCL(fdvdz, ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15236 cCL(fdve, ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
15237 cCL(fdvep, ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
15238 cCL(fdvem, ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
15239 cCL(fdvez, ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
15240
15241 cCL(frds, eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
15242 cCL(frdsp, eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
15243 cCL(frdsm, eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
15244 cCL(frdsz, eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
15245 cCL(frdd, eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
15246 cCL(frddp, eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15247 cCL(frddm, eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15248 cCL(frddz, eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15249 cCL(frde, eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
15250 cCL(frdep, eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
15251 cCL(frdem, eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
15252 cCL(frdez, eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
15253
15254 cCL(pols, ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
15255 cCL(polsp, ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
15256 cCL(polsm, ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
15257 cCL(polsz, ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
15258 cCL(pold, ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
15259 cCL(poldp, ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
15260 cCL(poldm, ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
15261 cCL(poldz, ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
15262 cCL(pole, ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
15263 cCL(polep, ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
15264 cCL(polem, ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
15265 cCL(polez, ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
15266
15267 cCE(cmf, e90f110, 2, (RF, RF_IF), fpa_cmp),
15268 C3E(cmfe, ed0f110, 2, (RF, RF_IF), fpa_cmp),
15269 cCE(cnf, eb0f110, 2, (RF, RF_IF), fpa_cmp),
15270 C3E(cnfe, ef0f110, 2, (RF, RF_IF), fpa_cmp),
15271
15272 cCL(flts, e000110, 2, (RF, RR), rn_rd),
15273 cCL(fltsp, e000130, 2, (RF, RR), rn_rd),
15274 cCL(fltsm, e000150, 2, (RF, RR), rn_rd),
15275 cCL(fltsz, e000170, 2, (RF, RR), rn_rd),
15276 cCL(fltd, e000190, 2, (RF, RR), rn_rd),
15277 cCL(fltdp, e0001b0, 2, (RF, RR), rn_rd),
15278 cCL(fltdm, e0001d0, 2, (RF, RR), rn_rd),
15279 cCL(fltdz, e0001f0, 2, (RF, RR), rn_rd),
15280 cCL(flte, e080110, 2, (RF, RR), rn_rd),
15281 cCL(fltep, e080130, 2, (RF, RR), rn_rd),
15282 cCL(fltem, e080150, 2, (RF, RR), rn_rd),
15283 cCL(fltez, e080170, 2, (RF, RR), rn_rd),
15284
15285 /* The implementation of the FIX instruction is broken on some
15286 assemblers, in that it accepts a precision specifier as well as a
15287 rounding specifier, despite the fact that this is meaningless.
15288 To be more compatible, we accept it as well, though of course it
15289 does not set any bits. */
15290 cCE(fix, e100110, 2, (RR, RF), rd_rm),
15291 cCL(fixp, e100130, 2, (RR, RF), rd_rm),
15292 cCL(fixm, e100150, 2, (RR, RF), rd_rm),
15293 cCL(fixz, e100170, 2, (RR, RF), rd_rm),
15294 cCL(fixsp, e100130, 2, (RR, RF), rd_rm),
15295 cCL(fixsm, e100150, 2, (RR, RF), rd_rm),
15296 cCL(fixsz, e100170, 2, (RR, RF), rd_rm),
15297 cCL(fixdp, e100130, 2, (RR, RF), rd_rm),
15298 cCL(fixdm, e100150, 2, (RR, RF), rd_rm),
15299 cCL(fixdz, e100170, 2, (RR, RF), rd_rm),
15300 cCL(fixep, e100130, 2, (RR, RF), rd_rm),
15301 cCL(fixem, e100150, 2, (RR, RF), rd_rm),
15302 cCL(fixez, e100170, 2, (RR, RF), rd_rm),
15303
15304 /* Instructions that were new with the real FPA, call them V2. */
15305 #undef ARM_VARIANT
15306 #define ARM_VARIANT &fpu_fpa_ext_v2
15307 cCE(lfm, c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
15308 cCL(lfmfd, c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
15309 cCL(lfmea, d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
15310 cCE(sfm, c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
15311 cCL(sfmfd, d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
15312 cCL(sfmea, c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
15313
15314 #undef ARM_VARIANT
15315 #define ARM_VARIANT &fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
15316 /* Moves and type conversions. */
15317 cCE(fcpys, eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
15318 cCE(fmrs, e100a10, 2, (RR, RVS), vfp_reg_from_sp),
15319 cCE(fmsr, e000a10, 2, (RVS, RR), vfp_sp_from_reg),
15320 cCE(fmstat, ef1fa10, 0, (), noargs),
15321 cCE(fsitos, eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
15322 cCE(fuitos, eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
15323 cCE(ftosis, ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
15324 cCE(ftosizs, ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
15325 cCE(ftouis, ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
15326 cCE(ftouizs, ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
15327 cCE(fmrx, ef00a10, 2, (RR, RVC), rd_rn),
15328 cCE(fmxr, ee00a10, 2, (RVC, RR), rn_rd),
15329
15330 /* Memory operations. */
15331 cCE(flds, d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
15332 cCE(fsts, d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
15333 cCE(fldmias, c900a00, 2, (RRw, VRSLST), vfp_sp_ldstmia),
15334 cCE(fldmfds, c900a00, 2, (RRw, VRSLST), vfp_sp_ldstmia),
15335 cCE(fldmdbs, d300a00, 2, (RRw, VRSLST), vfp_sp_ldstmdb),
15336 cCE(fldmeas, d300a00, 2, (RRw, VRSLST), vfp_sp_ldstmdb),
15337 cCE(fldmiax, c900b00, 2, (RRw, VRDLST), vfp_xp_ldstmia),
15338 cCE(fldmfdx, c900b00, 2, (RRw, VRDLST), vfp_xp_ldstmia),
15339 cCE(fldmdbx, d300b00, 2, (RRw, VRDLST), vfp_xp_ldstmdb),
15340 cCE(fldmeax, d300b00, 2, (RRw, VRDLST), vfp_xp_ldstmdb),
15341 cCE(fstmias, c800a00, 2, (RRw, VRSLST), vfp_sp_ldstmia),
15342 cCE(fstmeas, c800a00, 2, (RRw, VRSLST), vfp_sp_ldstmia),
15343 cCE(fstmdbs, d200a00, 2, (RRw, VRSLST), vfp_sp_ldstmdb),
15344 cCE(fstmfds, d200a00, 2, (RRw, VRSLST), vfp_sp_ldstmdb),
15345 cCE(fstmiax, c800b00, 2, (RRw, VRDLST), vfp_xp_ldstmia),
15346 cCE(fstmeax, c800b00, 2, (RRw, VRDLST), vfp_xp_ldstmia),
15347 cCE(fstmdbx, d200b00, 2, (RRw, VRDLST), vfp_xp_ldstmdb),
15348 cCE(fstmfdx, d200b00, 2, (RRw, VRDLST), vfp_xp_ldstmdb),
15349
15350 /* Monadic operations. */
15351 cCE(fabss, eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
15352 cCE(fnegs, eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
15353 cCE(fsqrts, eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
15354
15355 /* Dyadic operations. */
15356 cCE(fadds, e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15357 cCE(fsubs, e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15358 cCE(fmuls, e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15359 cCE(fdivs, e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15360 cCE(fmacs, e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15361 cCE(fmscs, e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15362 cCE(fnmuls, e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15363 cCE(fnmacs, e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15364 cCE(fnmscs, e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
15365
15366 /* Comparisons. */
15367 cCE(fcmps, eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
15368 cCE(fcmpzs, eb50a40, 1, (RVS), vfp_sp_compare_z),
15369 cCE(fcmpes, eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
15370 cCE(fcmpezs, eb50ac0, 1, (RVS), vfp_sp_compare_z),
15371
15372 #undef ARM_VARIANT
15373 #define ARM_VARIANT &fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
15374 /* Moves and type conversions. */
15375 cCE(fcpyd, eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
15376 cCE(fcvtds, eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
15377 cCE(fcvtsd, eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
15378 cCE(fmdhr, e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
15379 cCE(fmdlr, e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
15380 cCE(fmrdh, e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
15381 cCE(fmrdl, e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
15382 cCE(fsitod, eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
15383 cCE(fuitod, eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
15384 cCE(ftosid, ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
15385 cCE(ftosizd, ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
15386 cCE(ftouid, ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
15387 cCE(ftouizd, ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
15388
15389 /* Memory operations. */
15390 cCE(fldd, d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
15391 cCE(fstd, d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
15392 cCE(fldmiad, c900b00, 2, (RRw, VRDLST), vfp_dp_ldstmia),
15393 cCE(fldmfdd, c900b00, 2, (RRw, VRDLST), vfp_dp_ldstmia),
15394 cCE(fldmdbd, d300b00, 2, (RRw, VRDLST), vfp_dp_ldstmdb),
15395 cCE(fldmead, d300b00, 2, (RRw, VRDLST), vfp_dp_ldstmdb),
15396 cCE(fstmiad, c800b00, 2, (RRw, VRDLST), vfp_dp_ldstmia),
15397 cCE(fstmead, c800b00, 2, (RRw, VRDLST), vfp_dp_ldstmia),
15398 cCE(fstmdbd, d200b00, 2, (RRw, VRDLST), vfp_dp_ldstmdb),
15399 cCE(fstmfdd, d200b00, 2, (RRw, VRDLST), vfp_dp_ldstmdb),
15400
15401 /* Monadic operations. */
15402 cCE(fabsd, eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
15403 cCE(fnegd, eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
15404 cCE(fsqrtd, eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
15405
15406 /* Dyadic operations. */
15407 cCE(faddd, e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15408 cCE(fsubd, e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15409 cCE(fmuld, e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15410 cCE(fdivd, e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15411 cCE(fmacd, e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15412 cCE(fmscd, e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15413 cCE(fnmuld, e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15414 cCE(fnmacd, e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15415 cCE(fnmscd, e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
15416
15417 /* Comparisons. */
15418 cCE(fcmpd, eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
15419 cCE(fcmpzd, eb50b40, 1, (RVD), vfp_dp_rd),
15420 cCE(fcmped, eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
15421 cCE(fcmpezd, eb50bc0, 1, (RVD), vfp_dp_rd),
15422
15423 #undef ARM_VARIANT
15424 #define ARM_VARIANT &fpu_vfp_ext_v2
15425 cCE(fmsrr, c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
15426 cCE(fmrrs, c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
15427 cCE(fmdrr, c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
15428 cCE(fmrrd, c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
15429
15430 /* Instructions which may belong to either the Neon or VFP instruction sets.
15431 Individual encoder functions perform additional architecture checks. */
15432 #undef ARM_VARIANT
15433 #define ARM_VARIANT &fpu_vfp_ext_v1xd
15434 #undef THUMB_VARIANT
15435 #define THUMB_VARIANT &fpu_vfp_ext_v1xd
15436 /* These mnemonics are unique to VFP. */
15437 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
15438 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
15439 nCE(vnmul, vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
15440 nCE(vnmla, vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
15441 nCE(vnmls, vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
15442 nCE(vcmp, vcmp, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
15443 nCE(vcmpe, vcmpe, 2, (RVSD, RVSD_I0), vfp_nsyn_cmp),
15444 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
15445 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
15446 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
15447
15448 /* Mnemonics shared by Neon and VFP. */
15449 nCEF(vmul, vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
15450 nCEF(vmla, vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
15451 nCEF(vmls, vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
15452
15453 nCEF(vadd, vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
15454 nCEF(vsub, vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
15455
15456 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
15457 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
15458
15459 NCE(vldm, c900b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15460 NCE(vldmia, c900b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15461 NCE(vldmdb, d100b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15462 NCE(vstm, c800b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15463 NCE(vstmia, c800b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15464 NCE(vstmdb, d000b00, 2, (RRw, VRSDLST), neon_ldm_stm),
15465 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
15466 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
15467
15468 nCEF(vcvt, vcvt, 3, (RNSDQ, RNSDQ, oI32b), neon_cvt),
15469
15470 /* NOTE: All VMOV encoding is special-cased! */
15471 NCE(vmov, 0, 1, (VMOV), neon_mov),
15472 NCE(vmovq, 0, 1, (VMOV), neon_mov),
15473
15474 #undef THUMB_VARIANT
15475 #define THUMB_VARIANT &fpu_neon_ext_v1
15476 #undef ARM_VARIANT
15477 #define ARM_VARIANT &fpu_neon_ext_v1
15478 /* Data processing with three registers of the same length. */
15479 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
15480 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
15481 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
15482 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
15483 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
15484 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
15485 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
15486 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
15487 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
15488 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
15489 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
15490 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
15491 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
15492 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
15493 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
15494 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
15495 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
15496 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
15497 /* If not immediate, fall back to neon_dyadic_i64_su.
15498 shl_imm should accept I8 I16 I32 I64,
15499 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
15500 nUF(vshl, vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
15501 nUF(vshlq, vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
15502 nUF(vqshl, vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
15503 nUF(vqshlq, vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
15504 /* Logic ops, types optional & ignored. */
15505 nUF(vand, vand, 2, (RNDQ, NILO), neon_logic),
15506 nUF(vandq, vand, 2, (RNQ, NILO), neon_logic),
15507 nUF(vbic, vbic, 2, (RNDQ, NILO), neon_logic),
15508 nUF(vbicq, vbic, 2, (RNQ, NILO), neon_logic),
15509 nUF(vorr, vorr, 2, (RNDQ, NILO), neon_logic),
15510 nUF(vorrq, vorr, 2, (RNQ, NILO), neon_logic),
15511 nUF(vorn, vorn, 2, (RNDQ, NILO), neon_logic),
15512 nUF(vornq, vorn, 2, (RNQ, NILO), neon_logic),
15513 nUF(veor, veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
15514 nUF(veorq, veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
15515 /* Bitfield ops, untyped. */
15516 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
15517 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
15518 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
15519 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
15520 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
15521 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
15522 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32. */
15523 nUF(vabd, vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
15524 nUF(vabdq, vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
15525 nUF(vmax, vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
15526 nUF(vmaxq, vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
15527 nUF(vmin, vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
15528 nUF(vminq, vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
15529 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
15530 back to neon_dyadic_if_su. */
15531 nUF(vcge, vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
15532 nUF(vcgeq, vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
15533 nUF(vcgt, vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
15534 nUF(vcgtq, vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
15535 nUF(vclt, vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
15536 nUF(vcltq, vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
15537 nUF(vcle, vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
15538 nUF(vcleq, vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
15539 /* Comparison. Type I8 I16 I32 F32. */
15540 nUF(vceq, vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
15541 nUF(vceqq, vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
15542 /* As above, D registers only. */
15543 nUF(vpmax, vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
15544 nUF(vpmin, vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
15545 /* Int and float variants, signedness unimportant. */
15546 nUF(vmlaq, vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
15547 nUF(vmlsq, vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
15548 nUF(vpadd, vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
15549 /* Add/sub take types I8 I16 I32 I64 F32. */
15550 nUF(vaddq, vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
15551 nUF(vsubq, vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
15552 /* vtst takes sizes 8, 16, 32. */
15553 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
15554 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
15555 /* VMUL takes I8 I16 I32 F32 P8. */
15556 nUF(vmulq, vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
15557 /* VQD{R}MULH takes S16 S32. */
15558 nUF(vqdmulh, vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
15559 nUF(vqdmulhq, vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
15560 nUF(vqrdmulh, vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
15561 nUF(vqrdmulhq, vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
15562 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
15563 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
15564 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
15565 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
15566 NUF(vaclt, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
15567 NUF(vacltq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
15568 NUF(vacle, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
15569 NUF(vacleq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
15570 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
15571 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
15572 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
15573 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
15574
15575 /* Two address, int/float. Types S8 S16 S32 F32. */
15576 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
15577 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
15578
15579 /* Data processing with two registers and a shift amount. */
15580 /* Right shifts, and variants with rounding.
15581 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
15582 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
15583 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
15584 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
15585 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
15586 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
15587 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
15588 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
15589 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
15590 /* Shift and insert. Sizes accepted 8 16 32 64. */
15591 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
15592 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
15593 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
15594 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
15595 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
15596 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
15597 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
15598 /* Right shift immediate, saturating & narrowing, with rounding variants.
15599 Types accepted S16 S32 S64 U16 U32 U64. */
15600 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
15601 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
15602 /* As above, unsigned. Types accepted S16 S32 S64. */
15603 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
15604 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
15605 /* Right shift narrowing. Types accepted I16 I32 I64. */
15606 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
15607 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
15608 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
15609 nUF(vshll, vshll, 3, (RNQ, RND, I32), neon_shll),
15610 /* CVT with optional immediate for fixed-point variant. */
15611 nUF(vcvtq, vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
15612
15613 nUF(vmvn, vmvn, 2, (RNDQ, RNDQ_IMVNb), neon_mvn),
15614 nUF(vmvnq, vmvn, 2, (RNQ, RNDQ_IMVNb), neon_mvn),
15615
15616 /* Data processing, three registers of different lengths. */
15617 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
15618 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
15619 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
15620 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
15621 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
15622 /* If not scalar, fall back to neon_dyadic_long.
15623 Vector types as above, scalar types S16 S32 U16 U32. */
15624 nUF(vmlal, vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
15625 nUF(vmlsl, vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
15626 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
15627 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
15628 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
15629 /* Dyadic, narrowing insns. Types I16 I32 I64. */
15630 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
15631 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
15632 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
15633 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
15634 /* Saturating doubling multiplies. Types S16 S32. */
15635 nUF(vqdmlal, vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
15636 nUF(vqdmlsl, vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
15637 nUF(vqdmull, vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
15638 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
15639 S16 S32 U16 U32. */
15640 nUF(vmull, vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
15641
15642 /* Extract. Size 8. */
15643 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I7), neon_ext),
15644 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I7), neon_ext),
15645
15646 /* Two registers, miscellaneous. */
15647 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
15648 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
15649 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
15650 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
15651 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
15652 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
15653 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
15654 /* Vector replicate. Sizes 8 16 32. */
15655 nCE(vdup, vdup, 2, (RNDQ, RR_RNSC), neon_dup),
15656 nCE(vdupq, vdup, 2, (RNQ, RR_RNSC), neon_dup),
15657 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
15658 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
15659 /* VMOVN. Types I16 I32 I64. */
15660 nUF(vmovn, vmovn, 2, (RND, RNQ), neon_movn),
15661 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
15662 nUF(vqmovn, vqmovn, 2, (RND, RNQ), neon_qmovn),
15663 /* VQMOVUN. Types S16 S32 S64. */
15664 nUF(vqmovun, vqmovun, 2, (RND, RNQ), neon_qmovun),
15665 /* VZIP / VUZP. Sizes 8 16 32. */
15666 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
15667 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
15668 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
15669 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
15670 /* VQABS / VQNEG. Types S8 S16 S32. */
15671 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
15672 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
15673 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
15674 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
15675 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
15676 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
15677 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
15678 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
15679 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
15680 /* Reciprocal estimates. Types U32 F32. */
15681 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
15682 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
15683 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
15684 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
15685 /* VCLS. Types S8 S16 S32. */
15686 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
15687 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
15688 /* VCLZ. Types I8 I16 I32. */
15689 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
15690 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
15691 /* VCNT. Size 8. */
15692 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
15693 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
15694 /* Two address, untyped. */
15695 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
15696 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
15697 /* VTRN. Sizes 8 16 32. */
15698 nUF(vtrn, vtrn, 2, (RNDQ, RNDQ), neon_trn),
15699 nUF(vtrnq, vtrn, 2, (RNQ, RNQ), neon_trn),
15700
15701 /* Table lookup. Size 8. */
15702 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
15703 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
15704
15705 #undef THUMB_VARIANT
15706 #define THUMB_VARIANT &fpu_vfp_v3_or_neon_ext
15707 #undef ARM_VARIANT
15708 #define ARM_VARIANT &fpu_vfp_v3_or_neon_ext
15709 /* Neon element/structure load/store. */
15710 nUF(vld1, vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
15711 nUF(vst1, vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
15712 nUF(vld2, vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
15713 nUF(vst2, vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
15714 nUF(vld3, vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
15715 nUF(vst3, vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
15716 nUF(vld4, vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
15717 nUF(vst4, vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
15718
15719 #undef THUMB_VARIANT
15720 #define THUMB_VARIANT &fpu_vfp_ext_v3
15721 #undef ARM_VARIANT
15722 #define ARM_VARIANT &fpu_vfp_ext_v3
15723 cCE(fconsts, eb00a00, 2, (RVS, I255), vfp_sp_const),
15724 cCE(fconstd, eb00b00, 2, (RVD, I255), vfp_dp_const),
15725 cCE(fshtos, eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
15726 cCE(fshtod, eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
15727 cCE(fsltos, eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
15728 cCE(fsltod, eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
15729 cCE(fuhtos, ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
15730 cCE(fuhtod, ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
15731 cCE(fultos, ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
15732 cCE(fultod, ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
15733 cCE(ftoshs, ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
15734 cCE(ftoshd, ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
15735 cCE(ftosls, ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
15736 cCE(ftosld, ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
15737 cCE(ftouhs, ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
15738 cCE(ftouhd, ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
15739 cCE(ftouls, ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
15740 cCE(ftould, ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
15741
15742 #undef THUMB_VARIANT
15743 #undef ARM_VARIANT
15744 #define ARM_VARIANT &arm_cext_xscale /* Intel XScale extensions. */
15745 cCE(mia, e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15746 cCE(miaph, e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15747 cCE(miabb, e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15748 cCE(miabt, e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15749 cCE(miatb, e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15750 cCE(miatt, e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
15751 cCE(mar, c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
15752 cCE(mra, c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
15753
15754 #undef ARM_VARIANT
15755 #define ARM_VARIANT &arm_cext_iwmmxt /* Intel Wireless MMX technology. */
15756 cCE(tandcb, e13f130, 1, (RR), iwmmxt_tandorc),
15757 cCE(tandch, e53f130, 1, (RR), iwmmxt_tandorc),
15758 cCE(tandcw, e93f130, 1, (RR), iwmmxt_tandorc),
15759 cCE(tbcstb, e400010, 2, (RIWR, RR), rn_rd),
15760 cCE(tbcsth, e400050, 2, (RIWR, RR), rn_rd),
15761 cCE(tbcstw, e400090, 2, (RIWR, RR), rn_rd),
15762 cCE(textrcb, e130170, 2, (RR, I7), iwmmxt_textrc),
15763 cCE(textrch, e530170, 2, (RR, I7), iwmmxt_textrc),
15764 cCE(textrcw, e930170, 2, (RR, I7), iwmmxt_textrc),
15765 cCE(textrmub, e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
15766 cCE(textrmuh, e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
15767 cCE(textrmuw, e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
15768 cCE(textrmsb, e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
15769 cCE(textrmsh, e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
15770 cCE(textrmsw, e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
15771 cCE(tinsrb, e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
15772 cCE(tinsrh, e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
15773 cCE(tinsrw, e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
15774 cCE(tmcr, e000110, 2, (RIWC_RIWG, RR), rn_rd),
15775 cCE(tmcrr, c400000, 3, (RIWR, RR, RR), rm_rd_rn),
15776 cCE(tmia, e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15777 cCE(tmiaph, e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15778 cCE(tmiabb, e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15779 cCE(tmiabt, e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15780 cCE(tmiatb, e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15781 cCE(tmiatt, e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
15782 cCE(tmovmskb, e100030, 2, (RR, RIWR), rd_rn),
15783 cCE(tmovmskh, e500030, 2, (RR, RIWR), rd_rn),
15784 cCE(tmovmskw, e900030, 2, (RR, RIWR), rd_rn),
15785 cCE(tmrc, e100110, 2, (RR, RIWC_RIWG), rd_rn),
15786 cCE(tmrrc, c500000, 3, (RR, RR, RIWR), rd_rn_rm),
15787 cCE(torcb, e13f150, 1, (RR), iwmmxt_tandorc),
15788 cCE(torch, e53f150, 1, (RR), iwmmxt_tandorc),
15789 cCE(torcw, e93f150, 1, (RR), iwmmxt_tandorc),
15790 cCE(waccb, e0001c0, 2, (RIWR, RIWR), rd_rn),
15791 cCE(wacch, e4001c0, 2, (RIWR, RIWR), rd_rn),
15792 cCE(waccw, e8001c0, 2, (RIWR, RIWR), rd_rn),
15793 cCE(waddbss, e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15794 cCE(waddb, e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15795 cCE(waddbus, e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15796 cCE(waddhss, e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15797 cCE(waddh, e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15798 cCE(waddhus, e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15799 cCE(waddwss, eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15800 cCE(waddw, e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15801 cCE(waddwus, e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15802 cCE(waligni, e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
15803 cCE(walignr0, e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15804 cCE(walignr1, e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15805 cCE(walignr2, ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15806 cCE(walignr3, eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15807 cCE(wand, e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15808 cCE(wandn, e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15809 cCE(wavg2b, e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15810 cCE(wavg2br, e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15811 cCE(wavg2h, ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15812 cCE(wavg2hr, ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15813 cCE(wcmpeqb, e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15814 cCE(wcmpeqh, e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15815 cCE(wcmpeqw, e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15816 cCE(wcmpgtub, e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15817 cCE(wcmpgtuh, e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15818 cCE(wcmpgtuw, e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15819 cCE(wcmpgtsb, e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15820 cCE(wcmpgtsh, e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15821 cCE(wcmpgtsw, eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15822 cCE(wldrb, c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
15823 cCE(wldrh, c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
15824 cCE(wldrw, c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
15825 cCE(wldrd, c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
15826 cCE(wmacs, e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15827 cCE(wmacsz, e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15828 cCE(wmacu, e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15829 cCE(wmacuz, e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15830 cCE(wmadds, ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15831 cCE(wmaddu, e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15832 cCE(wmaxsb, e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15833 cCE(wmaxsh, e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15834 cCE(wmaxsw, ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15835 cCE(wmaxub, e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15836 cCE(wmaxuh, e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15837 cCE(wmaxuw, e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15838 cCE(wminsb, e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15839 cCE(wminsh, e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15840 cCE(wminsw, eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15841 cCE(wminub, e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15842 cCE(wminuh, e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15843 cCE(wminuw, e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15844 cCE(wmov, e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
15845 cCE(wmulsm, e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15846 cCE(wmulsl, e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15847 cCE(wmulum, e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15848 cCE(wmulul, e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15849 cCE(wor, e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15850 cCE(wpackhss, e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15851 cCE(wpackhus, e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15852 cCE(wpackwss, eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15853 cCE(wpackwus, e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15854 cCE(wpackdss, ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15855 cCE(wpackdus, ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15856 cCE(wrorh, e700040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15857 cCE(wrorhg, e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15858 cCE(wrorw, eb00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15859 cCE(wrorwg, eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15860 cCE(wrord, ef00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15861 cCE(wrordg, ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15862 cCE(wsadb, e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15863 cCE(wsadbz, e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15864 cCE(wsadh, e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15865 cCE(wsadhz, e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15866 cCE(wshufh, e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
15867 cCE(wsllh, e500040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15868 cCE(wsllhg, e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15869 cCE(wsllw, e900040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15870 cCE(wsllwg, e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15871 cCE(wslld, ed00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15872 cCE(wslldg, ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15873 cCE(wsrah, e400040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15874 cCE(wsrahg, e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15875 cCE(wsraw, e800040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15876 cCE(wsrawg, e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15877 cCE(wsrad, ec00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15878 cCE(wsradg, ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15879 cCE(wsrlh, e600040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15880 cCE(wsrlhg, e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15881 cCE(wsrlw, ea00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15882 cCE(wsrlwg, ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15883 cCE(wsrld, ee00040, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15884 cCE(wsrldg, ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
15885 cCE(wstrb, c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
15886 cCE(wstrh, c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
15887 cCE(wstrw, c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
15888 cCE(wstrd, c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
15889 cCE(wsubbss, e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15890 cCE(wsubb, e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15891 cCE(wsubbus, e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15892 cCE(wsubhss, e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15893 cCE(wsubh, e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15894 cCE(wsubhus, e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15895 cCE(wsubwss, eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15896 cCE(wsubw, e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15897 cCE(wsubwus, e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15898 cCE(wunpckehub,e0000c0, 2, (RIWR, RIWR), rd_rn),
15899 cCE(wunpckehuh,e4000c0, 2, (RIWR, RIWR), rd_rn),
15900 cCE(wunpckehuw,e8000c0, 2, (RIWR, RIWR), rd_rn),
15901 cCE(wunpckehsb,e2000c0, 2, (RIWR, RIWR), rd_rn),
15902 cCE(wunpckehsh,e6000c0, 2, (RIWR, RIWR), rd_rn),
15903 cCE(wunpckehsw,ea000c0, 2, (RIWR, RIWR), rd_rn),
15904 cCE(wunpckihb, e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15905 cCE(wunpckihh, e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15906 cCE(wunpckihw, e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15907 cCE(wunpckelub,e0000e0, 2, (RIWR, RIWR), rd_rn),
15908 cCE(wunpckeluh,e4000e0, 2, (RIWR, RIWR), rd_rn),
15909 cCE(wunpckeluw,e8000e0, 2, (RIWR, RIWR), rd_rn),
15910 cCE(wunpckelsb,e2000e0, 2, (RIWR, RIWR), rd_rn),
15911 cCE(wunpckelsh,e6000e0, 2, (RIWR, RIWR), rd_rn),
15912 cCE(wunpckelsw,ea000e0, 2, (RIWR, RIWR), rd_rn),
15913 cCE(wunpckilb, e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15914 cCE(wunpckilh, e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15915 cCE(wunpckilw, e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15916 cCE(wxor, e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
15917 cCE(wzero, e300000, 1, (RIWR), iwmmxt_wzero),
15918
15919 #undef ARM_VARIANT
15920 #define ARM_VARIANT &arm_cext_maverick /* Cirrus Maverick instructions. */
15921 cCE(cfldrs, c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
15922 cCE(cfldrd, c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
15923 cCE(cfldr32, c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
15924 cCE(cfldr64, c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
15925 cCE(cfstrs, c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
15926 cCE(cfstrd, c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
15927 cCE(cfstr32, c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
15928 cCE(cfstr64, c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
15929 cCE(cfmvsr, e000450, 2, (RMF, RR), rn_rd),
15930 cCE(cfmvrs, e100450, 2, (RR, RMF), rd_rn),
15931 cCE(cfmvdlr, e000410, 2, (RMD, RR), rn_rd),
15932 cCE(cfmvrdl, e100410, 2, (RR, RMD), rd_rn),
15933 cCE(cfmvdhr, e000430, 2, (RMD, RR), rn_rd),
15934 cCE(cfmvrdh, e100430, 2, (RR, RMD), rd_rn),
15935 cCE(cfmv64lr, e000510, 2, (RMDX, RR), rn_rd),
15936 cCE(cfmvr64l, e100510, 2, (RR, RMDX), rd_rn),
15937 cCE(cfmv64hr, e000530, 2, (RMDX, RR), rn_rd),
15938 cCE(cfmvr64h, e100530, 2, (RR, RMDX), rd_rn),
15939 cCE(cfmval32, e200440, 2, (RMAX, RMFX), rd_rn),
15940 cCE(cfmv32al, e100440, 2, (RMFX, RMAX), rd_rn),
15941 cCE(cfmvam32, e200460, 2, (RMAX, RMFX), rd_rn),
15942 cCE(cfmv32am, e100460, 2, (RMFX, RMAX), rd_rn),
15943 cCE(cfmvah32, e200480, 2, (RMAX, RMFX), rd_rn),
15944 cCE(cfmv32ah, e100480, 2, (RMFX, RMAX), rd_rn),
15945 cCE(cfmva32, e2004a0, 2, (RMAX, RMFX), rd_rn),
15946 cCE(cfmv32a, e1004a0, 2, (RMFX, RMAX), rd_rn),
15947 cCE(cfmva64, e2004c0, 2, (RMAX, RMDX), rd_rn),
15948 cCE(cfmv64a, e1004c0, 2, (RMDX, RMAX), rd_rn),
15949 cCE(cfmvsc32, e2004e0, 2, (RMDS, RMDX), mav_dspsc),
15950 cCE(cfmv32sc, e1004e0, 2, (RMDX, RMDS), rd),
15951 cCE(cfcpys, e000400, 2, (RMF, RMF), rd_rn),
15952 cCE(cfcpyd, e000420, 2, (RMD, RMD), rd_rn),
15953 cCE(cfcvtsd, e000460, 2, (RMD, RMF), rd_rn),
15954 cCE(cfcvtds, e000440, 2, (RMF, RMD), rd_rn),
15955 cCE(cfcvt32s, e000480, 2, (RMF, RMFX), rd_rn),
15956 cCE(cfcvt32d, e0004a0, 2, (RMD, RMFX), rd_rn),
15957 cCE(cfcvt64s, e0004c0, 2, (RMF, RMDX), rd_rn),
15958 cCE(cfcvt64d, e0004e0, 2, (RMD, RMDX), rd_rn),
15959 cCE(cfcvts32, e100580, 2, (RMFX, RMF), rd_rn),
15960 cCE(cfcvtd32, e1005a0, 2, (RMFX, RMD), rd_rn),
15961 cCE(cftruncs32,e1005c0, 2, (RMFX, RMF), rd_rn),
15962 cCE(cftruncd32,e1005e0, 2, (RMFX, RMD), rd_rn),
15963 cCE(cfrshl32, e000550, 3, (RMFX, RMFX, RR), mav_triple),
15964 cCE(cfrshl64, e000570, 3, (RMDX, RMDX, RR), mav_triple),
15965 cCE(cfsh32, e000500, 3, (RMFX, RMFX, I63s), mav_shift),
15966 cCE(cfsh64, e200500, 3, (RMDX, RMDX, I63s), mav_shift),
15967 cCE(cfcmps, e100490, 3, (RR, RMF, RMF), rd_rn_rm),
15968 cCE(cfcmpd, e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
15969 cCE(cfcmp32, e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
15970 cCE(cfcmp64, e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
15971 cCE(cfabss, e300400, 2, (RMF, RMF), rd_rn),
15972 cCE(cfabsd, e300420, 2, (RMD, RMD), rd_rn),
15973 cCE(cfnegs, e300440, 2, (RMF, RMF), rd_rn),
15974 cCE(cfnegd, e300460, 2, (RMD, RMD), rd_rn),
15975 cCE(cfadds, e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
15976 cCE(cfaddd, e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
15977 cCE(cfsubs, e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
15978 cCE(cfsubd, e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
15979 cCE(cfmuls, e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
15980 cCE(cfmuld, e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
15981 cCE(cfabs32, e300500, 2, (RMFX, RMFX), rd_rn),
15982 cCE(cfabs64, e300520, 2, (RMDX, RMDX), rd_rn),
15983 cCE(cfneg32, e300540, 2, (RMFX, RMFX), rd_rn),
15984 cCE(cfneg64, e300560, 2, (RMDX, RMDX), rd_rn),
15985 cCE(cfadd32, e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15986 cCE(cfadd64, e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
15987 cCE(cfsub32, e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15988 cCE(cfsub64, e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
15989 cCE(cfmul32, e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15990 cCE(cfmul64, e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
15991 cCE(cfmac32, e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15992 cCE(cfmsc32, e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
15993 cCE(cfmadd32, e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
15994 cCE(cfmsub32, e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
15995 cCE(cfmadda32, e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
15996 cCE(cfmsuba32, e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
15997 };
15998 #undef ARM_VARIANT
15999 #undef THUMB_VARIANT
16000 #undef TCE
16001 #undef TCM
16002 #undef TUE
16003 #undef TUF
16004 #undef TCC
16005 #undef cCE
16006 #undef cCL
16007 #undef C3E
16008 #undef CE
16009 #undef CM
16010 #undef UE
16011 #undef UF
16012 #undef UT
16013 #undef NUF
16014 #undef nUF
16015 #undef NCE
16016 #undef nCE
16017 #undef OPS0
16018 #undef OPS1
16019 #undef OPS2
16020 #undef OPS3
16021 #undef OPS4
16022 #undef OPS5
16023 #undef OPS6
16024 #undef do_0
16025 \f
16026 /* MD interface: bits in the object file. */
16027
16028 /* Turn an integer of n bytes (in val) into a stream of bytes appropriate
16029 for use in the a.out file, and stores them in the array pointed to by buf.
16030 This knows about the endian-ness of the target machine and does
16031 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
16032 2 (short) and 4 (long) Floating numbers are put out as a series of
16033 LITTLENUMS (shorts, here at least). */
16034
16035 void
16036 md_number_to_chars (char * buf, valueT val, int n)
16037 {
16038 if (target_big_endian)
16039 number_to_chars_bigendian (buf, val, n);
16040 else
16041 number_to_chars_littleendian (buf, val, n);
16042 }
16043
16044 static valueT
16045 md_chars_to_number (char * buf, int n)
16046 {
16047 valueT result = 0;
16048 unsigned char * where = (unsigned char *) buf;
16049
16050 if (target_big_endian)
16051 {
16052 while (n--)
16053 {
16054 result <<= 8;
16055 result |= (*where++ & 255);
16056 }
16057 }
16058 else
16059 {
16060 while (n--)
16061 {
16062 result <<= 8;
16063 result |= (where[n] & 255);
16064 }
16065 }
16066
16067 return result;
16068 }
16069
16070 /* MD interface: Sections. */
16071
16072 /* Estimate the size of a frag before relaxing. Assume everything fits in
16073 2 bytes. */
16074
16075 int
16076 md_estimate_size_before_relax (fragS * fragp,
16077 segT segtype ATTRIBUTE_UNUSED)
16078 {
16079 fragp->fr_var = 2;
16080 return 2;
16081 }
16082
16083 /* Convert a machine dependent frag. */
16084
16085 void
16086 md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
16087 {
16088 unsigned long insn;
16089 unsigned long old_op;
16090 char *buf;
16091 expressionS exp;
16092 fixS *fixp;
16093 int reloc_type;
16094 int pc_rel;
16095 int opcode;
16096
16097 buf = fragp->fr_literal + fragp->fr_fix;
16098
16099 old_op = bfd_get_16(abfd, buf);
16100 if (fragp->fr_symbol) {
16101 exp.X_op = O_symbol;
16102 exp.X_add_symbol = fragp->fr_symbol;
16103 } else {
16104 exp.X_op = O_constant;
16105 }
16106 exp.X_add_number = fragp->fr_offset;
16107 opcode = fragp->fr_subtype;
16108 switch (opcode)
16109 {
16110 case T_MNEM_ldr_pc:
16111 case T_MNEM_ldr_pc2:
16112 case T_MNEM_ldr_sp:
16113 case T_MNEM_str_sp:
16114 case T_MNEM_ldr:
16115 case T_MNEM_ldrb:
16116 case T_MNEM_ldrh:
16117 case T_MNEM_str:
16118 case T_MNEM_strb:
16119 case T_MNEM_strh:
16120 if (fragp->fr_var == 4)
16121 {
16122 insn = THUMB_OP32(opcode);
16123 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
16124 {
16125 insn |= (old_op & 0x700) << 4;
16126 }
16127 else
16128 {
16129 insn |= (old_op & 7) << 12;
16130 insn |= (old_op & 0x38) << 13;
16131 }
16132 insn |= 0x00000c00;
16133 put_thumb32_insn (buf, insn);
16134 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
16135 }
16136 else
16137 {
16138 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
16139 }
16140 pc_rel = (opcode == T_MNEM_ldr_pc2);
16141 break;
16142 case T_MNEM_adr:
16143 if (fragp->fr_var == 4)
16144 {
16145 insn = THUMB_OP32 (opcode);
16146 insn |= (old_op & 0xf0) << 4;
16147 put_thumb32_insn (buf, insn);
16148 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
16149 }
16150 else
16151 {
16152 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
16153 exp.X_add_number -= 4;
16154 }
16155 pc_rel = 1;
16156 break;
16157 case T_MNEM_mov:
16158 case T_MNEM_movs:
16159 case T_MNEM_cmp:
16160 case T_MNEM_cmn:
16161 if (fragp->fr_var == 4)
16162 {
16163 int r0off = (opcode == T_MNEM_mov
16164 || opcode == T_MNEM_movs) ? 0 : 8;
16165 insn = THUMB_OP32 (opcode);
16166 insn = (insn & 0xe1ffffff) | 0x10000000;
16167 insn |= (old_op & 0x700) << r0off;
16168 put_thumb32_insn (buf, insn);
16169 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
16170 }
16171 else
16172 {
16173 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
16174 }
16175 pc_rel = 0;
16176 break;
16177 case T_MNEM_b:
16178 if (fragp->fr_var == 4)
16179 {
16180 insn = THUMB_OP32(opcode);
16181 put_thumb32_insn (buf, insn);
16182 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
16183 }
16184 else
16185 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
16186 pc_rel = 1;
16187 break;
16188 case T_MNEM_bcond:
16189 if (fragp->fr_var == 4)
16190 {
16191 insn = THUMB_OP32(opcode);
16192 insn |= (old_op & 0xf00) << 14;
16193 put_thumb32_insn (buf, insn);
16194 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
16195 }
16196 else
16197 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
16198 pc_rel = 1;
16199 break;
16200 case T_MNEM_add_sp:
16201 case T_MNEM_add_pc:
16202 case T_MNEM_inc_sp:
16203 case T_MNEM_dec_sp:
16204 if (fragp->fr_var == 4)
16205 {
16206 /* ??? Choose between add and addw. */
16207 insn = THUMB_OP32 (opcode);
16208 insn |= (old_op & 0xf0) << 4;
16209 put_thumb32_insn (buf, insn);
16210 if (opcode == T_MNEM_add_pc)
16211 reloc_type = BFD_RELOC_ARM_T32_IMM12;
16212 else
16213 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
16214 }
16215 else
16216 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
16217 pc_rel = 0;
16218 break;
16219
16220 case T_MNEM_addi:
16221 case T_MNEM_addis:
16222 case T_MNEM_subi:
16223 case T_MNEM_subis:
16224 if (fragp->fr_var == 4)
16225 {
16226 insn = THUMB_OP32 (opcode);
16227 insn |= (old_op & 0xf0) << 4;
16228 insn |= (old_op & 0xf) << 16;
16229 put_thumb32_insn (buf, insn);
16230 if (insn & (1 << 20))
16231 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
16232 else
16233 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
16234 }
16235 else
16236 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
16237 pc_rel = 0;
16238 break;
16239 default:
16240 abort();
16241 }
16242 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
16243 reloc_type);
16244 fixp->fx_file = fragp->fr_file;
16245 fixp->fx_line = fragp->fr_line;
16246 fragp->fr_fix += fragp->fr_var;
16247 }
16248
16249 /* Return the size of a relaxable immediate operand instruction.
16250 SHIFT and SIZE specify the form of the allowable immediate. */
16251 static int
16252 relax_immediate (fragS *fragp, int size, int shift)
16253 {
16254 offsetT offset;
16255 offsetT mask;
16256 offsetT low;
16257
16258 /* ??? Should be able to do better than this. */
16259 if (fragp->fr_symbol)
16260 return 4;
16261
16262 low = (1 << shift) - 1;
16263 mask = (1 << (shift + size)) - (1 << shift);
16264 offset = fragp->fr_offset;
16265 /* Force misaligned offsets to 32-bit variant. */
16266 if (offset & low)
16267 return -4;
16268 if (offset & ~mask)
16269 return 4;
16270 return 2;
16271 }
16272
16273 /* Return the size of a relaxable adr pseudo-instruction or PC-relative
16274 load. */
16275 static int
16276 relax_adr (fragS *fragp, asection *sec)
16277 {
16278 addressT addr;
16279 offsetT val;
16280
16281 /* Assume worst case for symbols not known to be in the same section. */
16282 if (!S_IS_DEFINED(fragp->fr_symbol)
16283 || sec != S_GET_SEGMENT (fragp->fr_symbol))
16284 return 4;
16285
16286 val = S_GET_VALUE(fragp->fr_symbol) + fragp->fr_offset;
16287 addr = fragp->fr_address + fragp->fr_fix;
16288 addr = (addr + 4) & ~3;
16289 /* Fix the insn as the 4-byte version if the target address is not
16290 sufficiently aligned. This is prevents an infinite loop when two
16291 instructions have contradictory range/alignment requirements. */
16292 if (val & 3)
16293 return -4;
16294 val -= addr;
16295 if (val < 0 || val > 1020)
16296 return 4;
16297 return 2;
16298 }
16299
16300 /* Return the size of a relaxable add/sub immediate instruction. */
16301 static int
16302 relax_addsub (fragS *fragp, asection *sec)
16303 {
16304 char *buf;
16305 int op;
16306
16307 buf = fragp->fr_literal + fragp->fr_fix;
16308 op = bfd_get_16(sec->owner, buf);
16309 if ((op & 0xf) == ((op >> 4) & 0xf))
16310 return relax_immediate (fragp, 8, 0);
16311 else
16312 return relax_immediate (fragp, 3, 0);
16313 }
16314
16315
16316 /* Return the size of a relaxable branch instruction. BITS is the
16317 size of the offset field in the narrow instruction. */
16318
16319 static int
16320 relax_branch (fragS *fragp, asection *sec, int bits)
16321 {
16322 addressT addr;
16323 offsetT val;
16324 offsetT limit;
16325
16326 /* Assume worst case for symbols not known to be in the same section. */
16327 if (!S_IS_DEFINED(fragp->fr_symbol)
16328 || sec != S_GET_SEGMENT (fragp->fr_symbol))
16329 return 4;
16330
16331 val = S_GET_VALUE(fragp->fr_symbol) + fragp->fr_offset;
16332 addr = fragp->fr_address + fragp->fr_fix + 4;
16333 val -= addr;
16334
16335 /* Offset is a signed value *2 */
16336 limit = 1 << bits;
16337 if (val >= limit || val < -limit)
16338 return 4;
16339 return 2;
16340 }
16341
16342
16343 /* Relax a machine dependent frag. This returns the amount by which
16344 the current size of the frag should change. */
16345
16346 int
16347 arm_relax_frag (asection *sec, fragS *fragp, long stretch ATTRIBUTE_UNUSED)
16348 {
16349 int oldsize;
16350 int newsize;
16351
16352 oldsize = fragp->fr_var;
16353 switch (fragp->fr_subtype)
16354 {
16355 case T_MNEM_ldr_pc2:
16356 newsize = relax_adr(fragp, sec);
16357 break;
16358 case T_MNEM_ldr_pc:
16359 case T_MNEM_ldr_sp:
16360 case T_MNEM_str_sp:
16361 newsize = relax_immediate(fragp, 8, 2);
16362 break;
16363 case T_MNEM_ldr:
16364 case T_MNEM_str:
16365 newsize = relax_immediate(fragp, 5, 2);
16366 break;
16367 case T_MNEM_ldrh:
16368 case T_MNEM_strh:
16369 newsize = relax_immediate(fragp, 5, 1);
16370 break;
16371 case T_MNEM_ldrb:
16372 case T_MNEM_strb:
16373 newsize = relax_immediate(fragp, 5, 0);
16374 break;
16375 case T_MNEM_adr:
16376 newsize = relax_adr(fragp, sec);
16377 break;
16378 case T_MNEM_mov:
16379 case T_MNEM_movs:
16380 case T_MNEM_cmp:
16381 case T_MNEM_cmn:
16382 newsize = relax_immediate(fragp, 8, 0);
16383 break;
16384 case T_MNEM_b:
16385 newsize = relax_branch(fragp, sec, 11);
16386 break;
16387 case T_MNEM_bcond:
16388 newsize = relax_branch(fragp, sec, 8);
16389 break;
16390 case T_MNEM_add_sp:
16391 case T_MNEM_add_pc:
16392 newsize = relax_immediate (fragp, 8, 2);
16393 break;
16394 case T_MNEM_inc_sp:
16395 case T_MNEM_dec_sp:
16396 newsize = relax_immediate (fragp, 7, 2);
16397 break;
16398 case T_MNEM_addi:
16399 case T_MNEM_addis:
16400 case T_MNEM_subi:
16401 case T_MNEM_subis:
16402 newsize = relax_addsub (fragp, sec);
16403 break;
16404 default:
16405 abort();
16406 }
16407 if (newsize < 0)
16408 {
16409 fragp->fr_var = -newsize;
16410 md_convert_frag (sec->owner, sec, fragp);
16411 frag_wane(fragp);
16412 return -(newsize + oldsize);
16413 }
16414 fragp->fr_var = newsize;
16415 return newsize - oldsize;
16416 }
16417
16418 /* Round up a section size to the appropriate boundary. */
16419
16420 valueT
16421 md_section_align (segT segment ATTRIBUTE_UNUSED,
16422 valueT size)
16423 {
16424 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
16425 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
16426 {
16427 /* For a.out, force the section size to be aligned. If we don't do
16428 this, BFD will align it for us, but it will not write out the
16429 final bytes of the section. This may be a bug in BFD, but it is
16430 easier to fix it here since that is how the other a.out targets
16431 work. */
16432 int align;
16433
16434 align = bfd_get_section_alignment (stdoutput, segment);
16435 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
16436 }
16437 #endif
16438
16439 return size;
16440 }
16441
16442 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
16443 of an rs_align_code fragment. */
16444
16445 void
16446 arm_handle_align (fragS * fragP)
16447 {
16448 static char const arm_noop[4] = { 0x00, 0x00, 0xa0, 0xe1 };
16449 static char const thumb_noop[2] = { 0xc0, 0x46 };
16450 static char const arm_bigend_noop[4] = { 0xe1, 0xa0, 0x00, 0x00 };
16451 static char const thumb_bigend_noop[2] = { 0x46, 0xc0 };
16452
16453 int bytes, fix, noop_size;
16454 char * p;
16455 const char * noop;
16456
16457 if (fragP->fr_type != rs_align_code)
16458 return;
16459
16460 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
16461 p = fragP->fr_literal + fragP->fr_fix;
16462 fix = 0;
16463
16464 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
16465 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
16466
16467 if (fragP->tc_frag_data)
16468 {
16469 if (target_big_endian)
16470 noop = thumb_bigend_noop;
16471 else
16472 noop = thumb_noop;
16473 noop_size = sizeof (thumb_noop);
16474 }
16475 else
16476 {
16477 if (target_big_endian)
16478 noop = arm_bigend_noop;
16479 else
16480 noop = arm_noop;
16481 noop_size = sizeof (arm_noop);
16482 }
16483
16484 if (bytes & (noop_size - 1))
16485 {
16486 fix = bytes & (noop_size - 1);
16487 memset (p, 0, fix);
16488 p += fix;
16489 bytes -= fix;
16490 }
16491
16492 while (bytes >= noop_size)
16493 {
16494 memcpy (p, noop, noop_size);
16495 p += noop_size;
16496 bytes -= noop_size;
16497 fix += noop_size;
16498 }
16499
16500 fragP->fr_fix += fix;
16501 fragP->fr_var = noop_size;
16502 }
16503
16504 /* Called from md_do_align. Used to create an alignment
16505 frag in a code section. */
16506
16507 void
16508 arm_frag_align_code (int n, int max)
16509 {
16510 char * p;
16511
16512 /* We assume that there will never be a requirement
16513 to support alignments greater than 32 bytes. */
16514 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
16515 as_fatal (_("alignments greater than 32 bytes not supported in .text sections."));
16516
16517 p = frag_var (rs_align_code,
16518 MAX_MEM_FOR_RS_ALIGN_CODE,
16519 1,
16520 (relax_substateT) max,
16521 (symbolS *) NULL,
16522 (offsetT) n,
16523 (char *) NULL);
16524 *p = 0;
16525 }
16526
16527 /* Perform target specific initialisation of a frag. */
16528
16529 void
16530 arm_init_frag (fragS * fragP)
16531 {
16532 /* Record whether this frag is in an ARM or a THUMB area. */
16533 fragP->tc_frag_data = thumb_mode;
16534 }
16535
16536 #ifdef OBJ_ELF
16537 /* When we change sections we need to issue a new mapping symbol. */
16538
16539 void
16540 arm_elf_change_section (void)
16541 {
16542 flagword flags;
16543 segment_info_type *seginfo;
16544
16545 /* Link an unlinked unwind index table section to the .text section. */
16546 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
16547 && elf_linked_to_section (now_seg) == NULL)
16548 elf_linked_to_section (now_seg) = text_section;
16549
16550 if (!SEG_NORMAL (now_seg))
16551 return;
16552
16553 flags = bfd_get_section_flags (stdoutput, now_seg);
16554
16555 /* We can ignore sections that only contain debug info. */
16556 if ((flags & SEC_ALLOC) == 0)
16557 return;
16558
16559 seginfo = seg_info (now_seg);
16560 mapstate = seginfo->tc_segment_info_data.mapstate;
16561 marked_pr_dependency = seginfo->tc_segment_info_data.marked_pr_dependency;
16562 }
16563
16564 int
16565 arm_elf_section_type (const char * str, size_t len)
16566 {
16567 if (len == 5 && strncmp (str, "exidx", 5) == 0)
16568 return SHT_ARM_EXIDX;
16569
16570 return -1;
16571 }
16572 \f
16573 /* Code to deal with unwinding tables. */
16574
16575 static void add_unwind_adjustsp (offsetT);
16576
16577 /* Cenerate and deferred unwind frame offset. */
16578
16579 static void
16580 flush_pending_unwind (void)
16581 {
16582 offsetT offset;
16583
16584 offset = unwind.pending_offset;
16585 unwind.pending_offset = 0;
16586 if (offset != 0)
16587 add_unwind_adjustsp (offset);
16588 }
16589
16590 /* Add an opcode to this list for this function. Two-byte opcodes should
16591 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
16592 order. */
16593
16594 static void
16595 add_unwind_opcode (valueT op, int length)
16596 {
16597 /* Add any deferred stack adjustment. */
16598 if (unwind.pending_offset)
16599 flush_pending_unwind ();
16600
16601 unwind.sp_restored = 0;
16602
16603 if (unwind.opcode_count + length > unwind.opcode_alloc)
16604 {
16605 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
16606 if (unwind.opcodes)
16607 unwind.opcodes = xrealloc (unwind.opcodes,
16608 unwind.opcode_alloc);
16609 else
16610 unwind.opcodes = xmalloc (unwind.opcode_alloc);
16611 }
16612 while (length > 0)
16613 {
16614 length--;
16615 unwind.opcodes[unwind.opcode_count] = op & 0xff;
16616 op >>= 8;
16617 unwind.opcode_count++;
16618 }
16619 }
16620
16621 /* Add unwind opcodes to adjust the stack pointer. */
16622
16623 static void
16624 add_unwind_adjustsp (offsetT offset)
16625 {
16626 valueT op;
16627
16628 if (offset > 0x200)
16629 {
16630 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
16631 char bytes[5];
16632 int n;
16633 valueT o;
16634
16635 /* Long form: 0xb2, uleb128. */
16636 /* This might not fit in a word so add the individual bytes,
16637 remembering the list is built in reverse order. */
16638 o = (valueT) ((offset - 0x204) >> 2);
16639 if (o == 0)
16640 add_unwind_opcode (0, 1);
16641
16642 /* Calculate the uleb128 encoding of the offset. */
16643 n = 0;
16644 while (o)
16645 {
16646 bytes[n] = o & 0x7f;
16647 o >>= 7;
16648 if (o)
16649 bytes[n] |= 0x80;
16650 n++;
16651 }
16652 /* Add the insn. */
16653 for (; n; n--)
16654 add_unwind_opcode (bytes[n - 1], 1);
16655 add_unwind_opcode (0xb2, 1);
16656 }
16657 else if (offset > 0x100)
16658 {
16659 /* Two short opcodes. */
16660 add_unwind_opcode (0x3f, 1);
16661 op = (offset - 0x104) >> 2;
16662 add_unwind_opcode (op, 1);
16663 }
16664 else if (offset > 0)
16665 {
16666 /* Short opcode. */
16667 op = (offset - 4) >> 2;
16668 add_unwind_opcode (op, 1);
16669 }
16670 else if (offset < 0)
16671 {
16672 offset = -offset;
16673 while (offset > 0x100)
16674 {
16675 add_unwind_opcode (0x7f, 1);
16676 offset -= 0x100;
16677 }
16678 op = ((offset - 4) >> 2) | 0x40;
16679 add_unwind_opcode (op, 1);
16680 }
16681 }
16682
16683 /* Finish the list of unwind opcodes for this function. */
16684 static void
16685 finish_unwind_opcodes (void)
16686 {
16687 valueT op;
16688
16689 if (unwind.fp_used)
16690 {
16691 /* Adjust sp as necessary. */
16692 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
16693 flush_pending_unwind ();
16694
16695 /* After restoring sp from the frame pointer. */
16696 op = 0x90 | unwind.fp_reg;
16697 add_unwind_opcode (op, 1);
16698 }
16699 else
16700 flush_pending_unwind ();
16701 }
16702
16703
16704 /* Start an exception table entry. If idx is nonzero this is an index table
16705 entry. */
16706
16707 static void
16708 start_unwind_section (const segT text_seg, int idx)
16709 {
16710 const char * text_name;
16711 const char * prefix;
16712 const char * prefix_once;
16713 const char * group_name;
16714 size_t prefix_len;
16715 size_t text_len;
16716 char * sec_name;
16717 size_t sec_name_len;
16718 int type;
16719 int flags;
16720 int linkonce;
16721
16722 if (idx)
16723 {
16724 prefix = ELF_STRING_ARM_unwind;
16725 prefix_once = ELF_STRING_ARM_unwind_once;
16726 type = SHT_ARM_EXIDX;
16727 }
16728 else
16729 {
16730 prefix = ELF_STRING_ARM_unwind_info;
16731 prefix_once = ELF_STRING_ARM_unwind_info_once;
16732 type = SHT_PROGBITS;
16733 }
16734
16735 text_name = segment_name (text_seg);
16736 if (streq (text_name, ".text"))
16737 text_name = "";
16738
16739 if (strncmp (text_name, ".gnu.linkonce.t.",
16740 strlen (".gnu.linkonce.t.")) == 0)
16741 {
16742 prefix = prefix_once;
16743 text_name += strlen (".gnu.linkonce.t.");
16744 }
16745
16746 prefix_len = strlen (prefix);
16747 text_len = strlen (text_name);
16748 sec_name_len = prefix_len + text_len;
16749 sec_name = xmalloc (sec_name_len + 1);
16750 memcpy (sec_name, prefix, prefix_len);
16751 memcpy (sec_name + prefix_len, text_name, text_len);
16752 sec_name[prefix_len + text_len] = '\0';
16753
16754 flags = SHF_ALLOC;
16755 linkonce = 0;
16756 group_name = 0;
16757
16758 /* Handle COMDAT group. */
16759 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
16760 {
16761 group_name = elf_group_name (text_seg);
16762 if (group_name == NULL)
16763 {
16764 as_bad ("Group section `%s' has no group signature",
16765 segment_name (text_seg));
16766 ignore_rest_of_line ();
16767 return;
16768 }
16769 flags |= SHF_GROUP;
16770 linkonce = 1;
16771 }
16772
16773 obj_elf_change_section (sec_name, type, flags, 0, group_name, linkonce, 0);
16774
16775 /* Set the setion link for index tables. */
16776 if (idx)
16777 elf_linked_to_section (now_seg) = text_seg;
16778 }
16779
16780
16781 /* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
16782 personality routine data. Returns zero, or the index table value for
16783 and inline entry. */
16784
16785 static valueT
16786 create_unwind_entry (int have_data)
16787 {
16788 int size;
16789 addressT where;
16790 char *ptr;
16791 /* The current word of data. */
16792 valueT data;
16793 /* The number of bytes left in this word. */
16794 int n;
16795
16796 finish_unwind_opcodes ();
16797
16798 /* Remember the current text section. */
16799 unwind.saved_seg = now_seg;
16800 unwind.saved_subseg = now_subseg;
16801
16802 start_unwind_section (now_seg, 0);
16803
16804 if (unwind.personality_routine == NULL)
16805 {
16806 if (unwind.personality_index == -2)
16807 {
16808 if (have_data)
16809 as_bad (_("handerdata in cantunwind frame"));
16810 return 1; /* EXIDX_CANTUNWIND. */
16811 }
16812
16813 /* Use a default personality routine if none is specified. */
16814 if (unwind.personality_index == -1)
16815 {
16816 if (unwind.opcode_count > 3)
16817 unwind.personality_index = 1;
16818 else
16819 unwind.personality_index = 0;
16820 }
16821
16822 /* Space for the personality routine entry. */
16823 if (unwind.personality_index == 0)
16824 {
16825 if (unwind.opcode_count > 3)
16826 as_bad (_("too many unwind opcodes for personality routine 0"));
16827
16828 if (!have_data)
16829 {
16830 /* All the data is inline in the index table. */
16831 data = 0x80;
16832 n = 3;
16833 while (unwind.opcode_count > 0)
16834 {
16835 unwind.opcode_count--;
16836 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
16837 n--;
16838 }
16839
16840 /* Pad with "finish" opcodes. */
16841 while (n--)
16842 data = (data << 8) | 0xb0;
16843
16844 return data;
16845 }
16846 size = 0;
16847 }
16848 else
16849 /* We get two opcodes "free" in the first word. */
16850 size = unwind.opcode_count - 2;
16851 }
16852 else
16853 /* An extra byte is required for the opcode count. */
16854 size = unwind.opcode_count + 1;
16855
16856 size = (size + 3) >> 2;
16857 if (size > 0xff)
16858 as_bad (_("too many unwind opcodes"));
16859
16860 frag_align (2, 0, 0);
16861 record_alignment (now_seg, 2);
16862 unwind.table_entry = expr_build_dot ();
16863
16864 /* Allocate the table entry. */
16865 ptr = frag_more ((size << 2) + 4);
16866 where = frag_now_fix () - ((size << 2) + 4);
16867
16868 switch (unwind.personality_index)
16869 {
16870 case -1:
16871 /* ??? Should this be a PLT generating relocation? */
16872 /* Custom personality routine. */
16873 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
16874 BFD_RELOC_ARM_PREL31);
16875
16876 where += 4;
16877 ptr += 4;
16878
16879 /* Set the first byte to the number of additional words. */
16880 data = size - 1;
16881 n = 3;
16882 break;
16883
16884 /* ABI defined personality routines. */
16885 case 0:
16886 /* Three opcodes bytes are packed into the first word. */
16887 data = 0x80;
16888 n = 3;
16889 break;
16890
16891 case 1:
16892 case 2:
16893 /* The size and first two opcode bytes go in the first word. */
16894 data = ((0x80 + unwind.personality_index) << 8) | size;
16895 n = 2;
16896 break;
16897
16898 default:
16899 /* Should never happen. */
16900 abort ();
16901 }
16902
16903 /* Pack the opcodes into words (MSB first), reversing the list at the same
16904 time. */
16905 while (unwind.opcode_count > 0)
16906 {
16907 if (n == 0)
16908 {
16909 md_number_to_chars (ptr, data, 4);
16910 ptr += 4;
16911 n = 4;
16912 data = 0;
16913 }
16914 unwind.opcode_count--;
16915 n--;
16916 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
16917 }
16918
16919 /* Finish off the last word. */
16920 if (n < 4)
16921 {
16922 /* Pad with "finish" opcodes. */
16923 while (n--)
16924 data = (data << 8) | 0xb0;
16925
16926 md_number_to_chars (ptr, data, 4);
16927 }
16928
16929 if (!have_data)
16930 {
16931 /* Add an empty descriptor if there is no user-specified data. */
16932 ptr = frag_more (4);
16933 md_number_to_chars (ptr, 0, 4);
16934 }
16935
16936 return 0;
16937 }
16938
16939
16940 /* Initialize the DWARF-2 unwind information for this procedure. */
16941
16942 void
16943 tc_arm_frame_initial_instructions (void)
16944 {
16945 cfi_add_CFA_def_cfa (REG_SP, 0);
16946 }
16947 #endif /* OBJ_ELF */
16948
16949 /* Convert REGNAME to a DWARF-2 register number. */
16950
16951 int
16952 tc_arm_regname_to_dw2regnum (char *regname)
16953 {
16954 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
16955
16956 if (reg == FAIL)
16957 return -1;
16958
16959 return reg;
16960 }
16961
16962 #ifdef TE_PE
16963 void
16964 tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
16965 {
16966 expressionS expr;
16967
16968 expr.X_op = O_secrel;
16969 expr.X_add_symbol = symbol;
16970 expr.X_add_number = 0;
16971 emit_expr (&expr, size);
16972 }
16973 #endif
16974
16975 /* MD interface: Symbol and relocation handling. */
16976
16977 /* Return the address within the segment that a PC-relative fixup is
16978 relative to. For ARM, PC-relative fixups applied to instructions
16979 are generally relative to the location of the fixup plus 8 bytes.
16980 Thumb branches are offset by 4, and Thumb loads relative to PC
16981 require special handling. */
16982
16983 long
16984 md_pcrel_from_section (fixS * fixP, segT seg)
16985 {
16986 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
16987
16988 /* If this is pc-relative and we are going to emit a relocation
16989 then we just want to put out any pipeline compensation that the linker
16990 will need. Otherwise we want to use the calculated base.
16991 For WinCE we skip the bias for externals as well, since this
16992 is how the MS ARM-CE assembler behaves and we want to be compatible. */
16993 if (fixP->fx_pcrel
16994 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
16995 || (arm_force_relocation (fixP)
16996 #ifdef TE_WINCE
16997 && !S_IS_EXTERNAL (fixP->fx_addsy)
16998 #endif
16999 )))
17000 base = 0;
17001
17002 switch (fixP->fx_r_type)
17003 {
17004 /* PC relative addressing on the Thumb is slightly odd as the
17005 bottom two bits of the PC are forced to zero for the
17006 calculation. This happens *after* application of the
17007 pipeline offset. However, Thumb adrl already adjusts for
17008 this, so we need not do it again. */
17009 case BFD_RELOC_ARM_THUMB_ADD:
17010 return base & ~3;
17011
17012 case BFD_RELOC_ARM_THUMB_OFFSET:
17013 case BFD_RELOC_ARM_T32_OFFSET_IMM:
17014 case BFD_RELOC_ARM_T32_ADD_PC12:
17015 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
17016 return (base + 4) & ~3;
17017
17018 /* Thumb branches are simply offset by +4. */
17019 case BFD_RELOC_THUMB_PCREL_BRANCH7:
17020 case BFD_RELOC_THUMB_PCREL_BRANCH9:
17021 case BFD_RELOC_THUMB_PCREL_BRANCH12:
17022 case BFD_RELOC_THUMB_PCREL_BRANCH20:
17023 case BFD_RELOC_THUMB_PCREL_BRANCH23:
17024 case BFD_RELOC_THUMB_PCREL_BRANCH25:
17025 case BFD_RELOC_THUMB_PCREL_BLX:
17026 return base + 4;
17027
17028 /* ARM mode branches are offset by +8. However, the Windows CE
17029 loader expects the relocation not to take this into account. */
17030 case BFD_RELOC_ARM_PCREL_BRANCH:
17031 case BFD_RELOC_ARM_PCREL_CALL:
17032 case BFD_RELOC_ARM_PCREL_JUMP:
17033 case BFD_RELOC_ARM_PCREL_BLX:
17034 case BFD_RELOC_ARM_PLT32:
17035 #ifdef TE_WINCE
17036 /* When handling fixups immediately, because we have already
17037 discovered the value of a symbol, or the address of the frag involved
17038 we must account for the offset by +8, as the OS loader will never see the reloc.
17039 see fixup_segment() in write.c
17040 The S_IS_EXTERNAL test handles the case of global symbols.
17041 Those need the calculated base, not just the pipe compensation the linker will need. */
17042 if (fixP->fx_pcrel
17043 && fixP->fx_addsy != NULL
17044 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
17045 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
17046 return base + 8;
17047 return base;
17048 #else
17049 return base + 8;
17050 #endif
17051
17052 /* ARM mode loads relative to PC are also offset by +8. Unlike
17053 branches, the Windows CE loader *does* expect the relocation
17054 to take this into account. */
17055 case BFD_RELOC_ARM_OFFSET_IMM:
17056 case BFD_RELOC_ARM_OFFSET_IMM8:
17057 case BFD_RELOC_ARM_HWLITERAL:
17058 case BFD_RELOC_ARM_LITERAL:
17059 case BFD_RELOC_ARM_CP_OFF_IMM:
17060 return base + 8;
17061
17062
17063 /* Other PC-relative relocations are un-offset. */
17064 default:
17065 return base;
17066 }
17067 }
17068
17069 /* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
17070 Otherwise we have no need to default values of symbols. */
17071
17072 symbolS *
17073 md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
17074 {
17075 #ifdef OBJ_ELF
17076 if (name[0] == '_' && name[1] == 'G'
17077 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
17078 {
17079 if (!GOT_symbol)
17080 {
17081 if (symbol_find (name))
17082 as_bad ("GOT already in the symbol table");
17083
17084 GOT_symbol = symbol_new (name, undefined_section,
17085 (valueT) 0, & zero_address_frag);
17086 }
17087
17088 return GOT_symbol;
17089 }
17090 #endif
17091
17092 return 0;
17093 }
17094
17095 /* Subroutine of md_apply_fix. Check to see if an immediate can be
17096 computed as two separate immediate values, added together. We
17097 already know that this value cannot be computed by just one ARM
17098 instruction. */
17099
17100 static unsigned int
17101 validate_immediate_twopart (unsigned int val,
17102 unsigned int * highpart)
17103 {
17104 unsigned int a;
17105 unsigned int i;
17106
17107 for (i = 0; i < 32; i += 2)
17108 if (((a = rotate_left (val, i)) & 0xff) != 0)
17109 {
17110 if (a & 0xff00)
17111 {
17112 if (a & ~ 0xffff)
17113 continue;
17114 * highpart = (a >> 8) | ((i + 24) << 7);
17115 }
17116 else if (a & 0xff0000)
17117 {
17118 if (a & 0xff000000)
17119 continue;
17120 * highpart = (a >> 16) | ((i + 16) << 7);
17121 }
17122 else
17123 {
17124 assert (a & 0xff000000);
17125 * highpart = (a >> 24) | ((i + 8) << 7);
17126 }
17127
17128 return (a & 0xff) | (i << 7);
17129 }
17130
17131 return FAIL;
17132 }
17133
17134 static int
17135 validate_offset_imm (unsigned int val, int hwse)
17136 {
17137 if ((hwse && val > 255) || val > 4095)
17138 return FAIL;
17139 return val;
17140 }
17141
17142 /* Subroutine of md_apply_fix. Do those data_ops which can take a
17143 negative immediate constant by altering the instruction. A bit of
17144 a hack really.
17145 MOV <-> MVN
17146 AND <-> BIC
17147 ADC <-> SBC
17148 by inverting the second operand, and
17149 ADD <-> SUB
17150 CMP <-> CMN
17151 by negating the second operand. */
17152
17153 static int
17154 negate_data_op (unsigned long * instruction,
17155 unsigned long value)
17156 {
17157 int op, new_inst;
17158 unsigned long negated, inverted;
17159
17160 negated = encode_arm_immediate (-value);
17161 inverted = encode_arm_immediate (~value);
17162
17163 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
17164 switch (op)
17165 {
17166 /* First negates. */
17167 case OPCODE_SUB: /* ADD <-> SUB */
17168 new_inst = OPCODE_ADD;
17169 value = negated;
17170 break;
17171
17172 case OPCODE_ADD:
17173 new_inst = OPCODE_SUB;
17174 value = negated;
17175 break;
17176
17177 case OPCODE_CMP: /* CMP <-> CMN */
17178 new_inst = OPCODE_CMN;
17179 value = negated;
17180 break;
17181
17182 case OPCODE_CMN:
17183 new_inst = OPCODE_CMP;
17184 value = negated;
17185 break;
17186
17187 /* Now Inverted ops. */
17188 case OPCODE_MOV: /* MOV <-> MVN */
17189 new_inst = OPCODE_MVN;
17190 value = inverted;
17191 break;
17192
17193 case OPCODE_MVN:
17194 new_inst = OPCODE_MOV;
17195 value = inverted;
17196 break;
17197
17198 case OPCODE_AND: /* AND <-> BIC */
17199 new_inst = OPCODE_BIC;
17200 value = inverted;
17201 break;
17202
17203 case OPCODE_BIC:
17204 new_inst = OPCODE_AND;
17205 value = inverted;
17206 break;
17207
17208 case OPCODE_ADC: /* ADC <-> SBC */
17209 new_inst = OPCODE_SBC;
17210 value = inverted;
17211 break;
17212
17213 case OPCODE_SBC:
17214 new_inst = OPCODE_ADC;
17215 value = inverted;
17216 break;
17217
17218 /* We cannot do anything. */
17219 default:
17220 return FAIL;
17221 }
17222
17223 if (value == (unsigned) FAIL)
17224 return FAIL;
17225
17226 *instruction &= OPCODE_MASK;
17227 *instruction |= new_inst << DATA_OP_SHIFT;
17228 return value;
17229 }
17230
17231 /* Like negate_data_op, but for Thumb-2. */
17232
17233 static unsigned int
17234 thumb32_negate_data_op (offsetT *instruction, offsetT value)
17235 {
17236 int op, new_inst;
17237 int rd;
17238 offsetT negated, inverted;
17239
17240 negated = encode_thumb32_immediate (-value);
17241 inverted = encode_thumb32_immediate (~value);
17242
17243 rd = (*instruction >> 8) & 0xf;
17244 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
17245 switch (op)
17246 {
17247 /* ADD <-> SUB. Includes CMP <-> CMN. */
17248 case T2_OPCODE_SUB:
17249 new_inst = T2_OPCODE_ADD;
17250 value = negated;
17251 break;
17252
17253 case T2_OPCODE_ADD:
17254 new_inst = T2_OPCODE_SUB;
17255 value = negated;
17256 break;
17257
17258 /* ORR <-> ORN. Includes MOV <-> MVN. */
17259 case T2_OPCODE_ORR:
17260 new_inst = T2_OPCODE_ORN;
17261 value = inverted;
17262 break;
17263
17264 case T2_OPCODE_ORN:
17265 new_inst = T2_OPCODE_ORR;
17266 value = inverted;
17267 break;
17268
17269 /* AND <-> BIC. TST has no inverted equivalent. */
17270 case T2_OPCODE_AND:
17271 new_inst = T2_OPCODE_BIC;
17272 if (rd == 15)
17273 value = FAIL;
17274 else
17275 value = inverted;
17276 break;
17277
17278 case T2_OPCODE_BIC:
17279 new_inst = T2_OPCODE_AND;
17280 value = inverted;
17281 break;
17282
17283 /* ADC <-> SBC */
17284 case T2_OPCODE_ADC:
17285 new_inst = T2_OPCODE_SBC;
17286 value = inverted;
17287 break;
17288
17289 case T2_OPCODE_SBC:
17290 new_inst = T2_OPCODE_ADC;
17291 value = inverted;
17292 break;
17293
17294 /* We cannot do anything. */
17295 default:
17296 return FAIL;
17297 }
17298
17299 if (value == FAIL)
17300 return FAIL;
17301
17302 *instruction &= T2_OPCODE_MASK;
17303 *instruction |= new_inst << T2_DATA_OP_SHIFT;
17304 return value;
17305 }
17306
17307 /* Read a 32-bit thumb instruction from buf. */
17308 static unsigned long
17309 get_thumb32_insn (char * buf)
17310 {
17311 unsigned long insn;
17312 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
17313 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
17314
17315 return insn;
17316 }
17317
17318
17319 /* We usually want to set the low bit on the address of thumb function
17320 symbols. In particular .word foo - . should have the low bit set.
17321 Generic code tries to fold the difference of two symbols to
17322 a constant. Prevent this and force a relocation when the first symbols
17323 is a thumb function. */
17324 int
17325 arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
17326 {
17327 if (op == O_subtract
17328 && l->X_op == O_symbol
17329 && r->X_op == O_symbol
17330 && THUMB_IS_FUNC (l->X_add_symbol))
17331 {
17332 l->X_op = O_subtract;
17333 l->X_op_symbol = r->X_add_symbol;
17334 l->X_add_number -= r->X_add_number;
17335 return 1;
17336 }
17337 /* Process as normal. */
17338 return 0;
17339 }
17340
17341 void
17342 md_apply_fix (fixS * fixP,
17343 valueT * valP,
17344 segT seg)
17345 {
17346 offsetT value = * valP;
17347 offsetT newval;
17348 unsigned int newimm;
17349 unsigned long temp;
17350 int sign;
17351 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
17352
17353 assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
17354
17355 /* Note whether this will delete the relocation. */
17356
17357 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
17358 fixP->fx_done = 1;
17359
17360 /* On a 64-bit host, silently truncate 'value' to 32 bits for
17361 consistency with the behavior on 32-bit hosts. Remember value
17362 for emit_reloc. */
17363 value &= 0xffffffff;
17364 value ^= 0x80000000;
17365 value -= 0x80000000;
17366
17367 *valP = value;
17368 fixP->fx_addnumber = value;
17369
17370 /* Same treatment for fixP->fx_offset. */
17371 fixP->fx_offset &= 0xffffffff;
17372 fixP->fx_offset ^= 0x80000000;
17373 fixP->fx_offset -= 0x80000000;
17374
17375 switch (fixP->fx_r_type)
17376 {
17377 case BFD_RELOC_NONE:
17378 /* This will need to go in the object file. */
17379 fixP->fx_done = 0;
17380 break;
17381
17382 case BFD_RELOC_ARM_IMMEDIATE:
17383 /* We claim that this fixup has been processed here,
17384 even if in fact we generate an error because we do
17385 not have a reloc for it, so tc_gen_reloc will reject it. */
17386 fixP->fx_done = 1;
17387
17388 if (fixP->fx_addsy
17389 && ! S_IS_DEFINED (fixP->fx_addsy))
17390 {
17391 as_bad_where (fixP->fx_file, fixP->fx_line,
17392 _("undefined symbol %s used as an immediate value"),
17393 S_GET_NAME (fixP->fx_addsy));
17394 break;
17395 }
17396
17397 newimm = encode_arm_immediate (value);
17398 temp = md_chars_to_number (buf, INSN_SIZE);
17399
17400 /* If the instruction will fail, see if we can fix things up by
17401 changing the opcode. */
17402 if (newimm == (unsigned int) FAIL
17403 && (newimm = negate_data_op (&temp, value)) == (unsigned int) FAIL)
17404 {
17405 as_bad_where (fixP->fx_file, fixP->fx_line,
17406 _("invalid constant (%lx) after fixup"),
17407 (unsigned long) value);
17408 break;
17409 }
17410
17411 newimm |= (temp & 0xfffff000);
17412 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
17413 break;
17414
17415 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
17416 {
17417 unsigned int highpart = 0;
17418 unsigned int newinsn = 0xe1a00000; /* nop. */
17419
17420 newimm = encode_arm_immediate (value);
17421 temp = md_chars_to_number (buf, INSN_SIZE);
17422
17423 /* If the instruction will fail, see if we can fix things up by
17424 changing the opcode. */
17425 if (newimm == (unsigned int) FAIL
17426 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
17427 {
17428 /* No ? OK - try using two ADD instructions to generate
17429 the value. */
17430 newimm = validate_immediate_twopart (value, & highpart);
17431
17432 /* Yes - then make sure that the second instruction is
17433 also an add. */
17434 if (newimm != (unsigned int) FAIL)
17435 newinsn = temp;
17436 /* Still No ? Try using a negated value. */
17437 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
17438 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
17439 /* Otherwise - give up. */
17440 else
17441 {
17442 as_bad_where (fixP->fx_file, fixP->fx_line,
17443 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
17444 (long) value);
17445 break;
17446 }
17447
17448 /* Replace the first operand in the 2nd instruction (which
17449 is the PC) with the destination register. We have
17450 already added in the PC in the first instruction and we
17451 do not want to do it again. */
17452 newinsn &= ~ 0xf0000;
17453 newinsn |= ((newinsn & 0x0f000) << 4);
17454 }
17455
17456 newimm |= (temp & 0xfffff000);
17457 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
17458
17459 highpart |= (newinsn & 0xfffff000);
17460 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
17461 }
17462 break;
17463
17464 case BFD_RELOC_ARM_OFFSET_IMM:
17465 if (!fixP->fx_done && seg->use_rela_p)
17466 value = 0;
17467
17468 case BFD_RELOC_ARM_LITERAL:
17469 sign = value >= 0;
17470
17471 if (value < 0)
17472 value = - value;
17473
17474 if (validate_offset_imm (value, 0) == FAIL)
17475 {
17476 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
17477 as_bad_where (fixP->fx_file, fixP->fx_line,
17478 _("invalid literal constant: pool needs to be closer"));
17479 else
17480 as_bad_where (fixP->fx_file, fixP->fx_line,
17481 _("bad immediate value for offset (%ld)"),
17482 (long) value);
17483 break;
17484 }
17485
17486 newval = md_chars_to_number (buf, INSN_SIZE);
17487 newval &= 0xff7ff000;
17488 newval |= value | (sign ? INDEX_UP : 0);
17489 md_number_to_chars (buf, newval, INSN_SIZE);
17490 break;
17491
17492 case BFD_RELOC_ARM_OFFSET_IMM8:
17493 case BFD_RELOC_ARM_HWLITERAL:
17494 sign = value >= 0;
17495
17496 if (value < 0)
17497 value = - value;
17498
17499 if (validate_offset_imm (value, 1) == FAIL)
17500 {
17501 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
17502 as_bad_where (fixP->fx_file, fixP->fx_line,
17503 _("invalid literal constant: pool needs to be closer"));
17504 else
17505 as_bad (_("bad immediate value for half-word offset (%ld)"),
17506 (long) value);
17507 break;
17508 }
17509
17510 newval = md_chars_to_number (buf, INSN_SIZE);
17511 newval &= 0xff7ff0f0;
17512 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
17513 md_number_to_chars (buf, newval, INSN_SIZE);
17514 break;
17515
17516 case BFD_RELOC_ARM_T32_OFFSET_U8:
17517 if (value < 0 || value > 1020 || value % 4 != 0)
17518 as_bad_where (fixP->fx_file, fixP->fx_line,
17519 _("bad immediate value for offset (%ld)"), (long) value);
17520 value /= 4;
17521
17522 newval = md_chars_to_number (buf+2, THUMB_SIZE);
17523 newval |= value;
17524 md_number_to_chars (buf+2, newval, THUMB_SIZE);
17525 break;
17526
17527 case BFD_RELOC_ARM_T32_OFFSET_IMM:
17528 /* This is a complicated relocation used for all varieties of Thumb32
17529 load/store instruction with immediate offset:
17530
17531 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
17532 *4, optional writeback(W)
17533 (doubleword load/store)
17534
17535 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
17536 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
17537 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
17538 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
17539 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
17540
17541 Uppercase letters indicate bits that are already encoded at
17542 this point. Lowercase letters are our problem. For the
17543 second block of instructions, the secondary opcode nybble
17544 (bits 8..11) is present, and bit 23 is zero, even if this is
17545 a PC-relative operation. */
17546 newval = md_chars_to_number (buf, THUMB_SIZE);
17547 newval <<= 16;
17548 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
17549
17550 if ((newval & 0xf0000000) == 0xe0000000)
17551 {
17552 /* Doubleword load/store: 8-bit offset, scaled by 4. */
17553 if (value >= 0)
17554 newval |= (1 << 23);
17555 else
17556 value = -value;
17557 if (value % 4 != 0)
17558 {
17559 as_bad_where (fixP->fx_file, fixP->fx_line,
17560 _("offset not a multiple of 4"));
17561 break;
17562 }
17563 value /= 4;
17564 if (value > 0xff)
17565 {
17566 as_bad_where (fixP->fx_file, fixP->fx_line,
17567 _("offset out of range"));
17568 break;
17569 }
17570 newval &= ~0xff;
17571 }
17572 else if ((newval & 0x000f0000) == 0x000f0000)
17573 {
17574 /* PC-relative, 12-bit offset. */
17575 if (value >= 0)
17576 newval |= (1 << 23);
17577 else
17578 value = -value;
17579 if (value > 0xfff)
17580 {
17581 as_bad_where (fixP->fx_file, fixP->fx_line,
17582 _("offset out of range"));
17583 break;
17584 }
17585 newval &= ~0xfff;
17586 }
17587 else if ((newval & 0x00000100) == 0x00000100)
17588 {
17589 /* Writeback: 8-bit, +/- offset. */
17590 if (value >= 0)
17591 newval |= (1 << 9);
17592 else
17593 value = -value;
17594 if (value > 0xff)
17595 {
17596 as_bad_where (fixP->fx_file, fixP->fx_line,
17597 _("offset out of range"));
17598 break;
17599 }
17600 newval &= ~0xff;
17601 }
17602 else if ((newval & 0x00000f00) == 0x00000e00)
17603 {
17604 /* T-instruction: positive 8-bit offset. */
17605 if (value < 0 || value > 0xff)
17606 {
17607 as_bad_where (fixP->fx_file, fixP->fx_line,
17608 _("offset out of range"));
17609 break;
17610 }
17611 newval &= ~0xff;
17612 newval |= value;
17613 }
17614 else
17615 {
17616 /* Positive 12-bit or negative 8-bit offset. */
17617 int limit;
17618 if (value >= 0)
17619 {
17620 newval |= (1 << 23);
17621 limit = 0xfff;
17622 }
17623 else
17624 {
17625 value = -value;
17626 limit = 0xff;
17627 }
17628 if (value > limit)
17629 {
17630 as_bad_where (fixP->fx_file, fixP->fx_line,
17631 _("offset out of range"));
17632 break;
17633 }
17634 newval &= ~limit;
17635 }
17636
17637 newval |= value;
17638 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
17639 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
17640 break;
17641
17642 case BFD_RELOC_ARM_SHIFT_IMM:
17643 newval = md_chars_to_number (buf, INSN_SIZE);
17644 if (((unsigned long) value) > 32
17645 || (value == 32
17646 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
17647 {
17648 as_bad_where (fixP->fx_file, fixP->fx_line,
17649 _("shift expression is too large"));
17650 break;
17651 }
17652
17653 if (value == 0)
17654 /* Shifts of zero must be done as lsl. */
17655 newval &= ~0x60;
17656 else if (value == 32)
17657 value = 0;
17658 newval &= 0xfffff07f;
17659 newval |= (value & 0x1f) << 7;
17660 md_number_to_chars (buf, newval, INSN_SIZE);
17661 break;
17662
17663 case BFD_RELOC_ARM_T32_IMMEDIATE:
17664 case BFD_RELOC_ARM_T32_ADD_IMM:
17665 case BFD_RELOC_ARM_T32_IMM12:
17666 case BFD_RELOC_ARM_T32_ADD_PC12:
17667 /* We claim that this fixup has been processed here,
17668 even if in fact we generate an error because we do
17669 not have a reloc for it, so tc_gen_reloc will reject it. */
17670 fixP->fx_done = 1;
17671
17672 if (fixP->fx_addsy
17673 && ! S_IS_DEFINED (fixP->fx_addsy))
17674 {
17675 as_bad_where (fixP->fx_file, fixP->fx_line,
17676 _("undefined symbol %s used as an immediate value"),
17677 S_GET_NAME (fixP->fx_addsy));
17678 break;
17679 }
17680
17681 newval = md_chars_to_number (buf, THUMB_SIZE);
17682 newval <<= 16;
17683 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
17684
17685 newimm = FAIL;
17686 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
17687 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
17688 {
17689 newimm = encode_thumb32_immediate (value);
17690 if (newimm == (unsigned int) FAIL)
17691 newimm = thumb32_negate_data_op (&newval, value);
17692 }
17693 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE
17694 && newimm == (unsigned int) FAIL)
17695 {
17696 /* Turn add/sum into addw/subw. */
17697 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
17698 newval = (newval & 0xfeffffff) | 0x02000000;
17699
17700 /* 12 bit immediate for addw/subw. */
17701 if (value < 0)
17702 {
17703 value = -value;
17704 newval ^= 0x00a00000;
17705 }
17706 if (value > 0xfff)
17707 newimm = (unsigned int) FAIL;
17708 else
17709 newimm = value;
17710 }
17711
17712 if (newimm == (unsigned int)FAIL)
17713 {
17714 as_bad_where (fixP->fx_file, fixP->fx_line,
17715 _("invalid constant (%lx) after fixup"),
17716 (unsigned long) value);
17717 break;
17718 }
17719
17720 newval |= (newimm & 0x800) << 15;
17721 newval |= (newimm & 0x700) << 4;
17722 newval |= (newimm & 0x0ff);
17723
17724 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
17725 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
17726 break;
17727
17728 case BFD_RELOC_ARM_SMC:
17729 if (((unsigned long) value) > 0xffff)
17730 as_bad_where (fixP->fx_file, fixP->fx_line,
17731 _("invalid smc expression"));
17732 newval = md_chars_to_number (buf, INSN_SIZE);
17733 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
17734 md_number_to_chars (buf, newval, INSN_SIZE);
17735 break;
17736
17737 case BFD_RELOC_ARM_SWI:
17738 if (fixP->tc_fix_data != 0)
17739 {
17740 if (((unsigned long) value) > 0xff)
17741 as_bad_where (fixP->fx_file, fixP->fx_line,
17742 _("invalid swi expression"));
17743 newval = md_chars_to_number (buf, THUMB_SIZE);
17744 newval |= value;
17745 md_number_to_chars (buf, newval, THUMB_SIZE);
17746 }
17747 else
17748 {
17749 if (((unsigned long) value) > 0x00ffffff)
17750 as_bad_where (fixP->fx_file, fixP->fx_line,
17751 _("invalid swi expression"));
17752 newval = md_chars_to_number (buf, INSN_SIZE);
17753 newval |= value;
17754 md_number_to_chars (buf, newval, INSN_SIZE);
17755 }
17756 break;
17757
17758 case BFD_RELOC_ARM_MULTI:
17759 if (((unsigned long) value) > 0xffff)
17760 as_bad_where (fixP->fx_file, fixP->fx_line,
17761 _("invalid expression in load/store multiple"));
17762 newval = value | md_chars_to_number (buf, INSN_SIZE);
17763 md_number_to_chars (buf, newval, INSN_SIZE);
17764 break;
17765
17766 #ifdef OBJ_ELF
17767 case BFD_RELOC_ARM_PCREL_CALL:
17768 newval = md_chars_to_number (buf, INSN_SIZE);
17769 if ((newval & 0xf0000000) == 0xf0000000)
17770 temp = 1;
17771 else
17772 temp = 3;
17773 goto arm_branch_common;
17774
17775 case BFD_RELOC_ARM_PCREL_JUMP:
17776 case BFD_RELOC_ARM_PLT32:
17777 #endif
17778 case BFD_RELOC_ARM_PCREL_BRANCH:
17779 temp = 3;
17780 goto arm_branch_common;
17781
17782 case BFD_RELOC_ARM_PCREL_BLX:
17783 temp = 1;
17784 arm_branch_common:
17785 /* We are going to store value (shifted right by two) in the
17786 instruction, in a 24 bit, signed field. Bits 26 through 32 either
17787 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
17788 also be be clear. */
17789 if (value & temp)
17790 as_bad_where (fixP->fx_file, fixP->fx_line,
17791 _("misaligned branch destination"));
17792 if ((value & (offsetT)0xfe000000) != (offsetT)0
17793 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
17794 as_bad_where (fixP->fx_file, fixP->fx_line,
17795 _("branch out of range"));
17796
17797 if (fixP->fx_done || !seg->use_rela_p)
17798 {
17799 newval = md_chars_to_number (buf, INSN_SIZE);
17800 newval |= (value >> 2) & 0x00ffffff;
17801 /* Set the H bit on BLX instructions. */
17802 if (temp == 1)
17803 {
17804 if (value & 2)
17805 newval |= 0x01000000;
17806 else
17807 newval &= ~0x01000000;
17808 }
17809 md_number_to_chars (buf, newval, INSN_SIZE);
17810 }
17811 break;
17812
17813 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CZB */
17814 /* CZB can only branch forward. */
17815 if (value & ~0x7e)
17816 as_bad_where (fixP->fx_file, fixP->fx_line,
17817 _("branch out of range"));
17818
17819 if (fixP->fx_done || !seg->use_rela_p)
17820 {
17821 newval = md_chars_to_number (buf, THUMB_SIZE);
17822 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
17823 md_number_to_chars (buf, newval, THUMB_SIZE);
17824 }
17825 break;
17826
17827 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
17828 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
17829 as_bad_where (fixP->fx_file, fixP->fx_line,
17830 _("branch out of range"));
17831
17832 if (fixP->fx_done || !seg->use_rela_p)
17833 {
17834 newval = md_chars_to_number (buf, THUMB_SIZE);
17835 newval |= (value & 0x1ff) >> 1;
17836 md_number_to_chars (buf, newval, THUMB_SIZE);
17837 }
17838 break;
17839
17840 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
17841 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
17842 as_bad_where (fixP->fx_file, fixP->fx_line,
17843 _("branch out of range"));
17844
17845 if (fixP->fx_done || !seg->use_rela_p)
17846 {
17847 newval = md_chars_to_number (buf, THUMB_SIZE);
17848 newval |= (value & 0xfff) >> 1;
17849 md_number_to_chars (buf, newval, THUMB_SIZE);
17850 }
17851 break;
17852
17853 case BFD_RELOC_THUMB_PCREL_BRANCH20:
17854 if ((value & ~0x1fffff) && ((value & ~0x1fffff) != ~0x1fffff))
17855 as_bad_where (fixP->fx_file, fixP->fx_line,
17856 _("conditional branch out of range"));
17857
17858 if (fixP->fx_done || !seg->use_rela_p)
17859 {
17860 offsetT newval2;
17861 addressT S, J1, J2, lo, hi;
17862
17863 S = (value & 0x00100000) >> 20;
17864 J2 = (value & 0x00080000) >> 19;
17865 J1 = (value & 0x00040000) >> 18;
17866 hi = (value & 0x0003f000) >> 12;
17867 lo = (value & 0x00000ffe) >> 1;
17868
17869 newval = md_chars_to_number (buf, THUMB_SIZE);
17870 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
17871 newval |= (S << 10) | hi;
17872 newval2 |= (J1 << 13) | (J2 << 11) | lo;
17873 md_number_to_chars (buf, newval, THUMB_SIZE);
17874 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
17875 }
17876 break;
17877
17878 case BFD_RELOC_THUMB_PCREL_BLX:
17879 case BFD_RELOC_THUMB_PCREL_BRANCH23:
17880 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
17881 as_bad_where (fixP->fx_file, fixP->fx_line,
17882 _("branch out of range"));
17883
17884 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
17885 /* For a BLX instruction, make sure that the relocation is rounded up
17886 to a word boundary. This follows the semantics of the instruction
17887 which specifies that bit 1 of the target address will come from bit
17888 1 of the base address. */
17889 value = (value + 1) & ~ 1;
17890
17891 if (fixP->fx_done || !seg->use_rela_p)
17892 {
17893 offsetT newval2;
17894
17895 newval = md_chars_to_number (buf, THUMB_SIZE);
17896 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
17897 newval |= (value & 0x7fffff) >> 12;
17898 newval2 |= (value & 0xfff) >> 1;
17899 md_number_to_chars (buf, newval, THUMB_SIZE);
17900 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
17901 }
17902 break;
17903
17904 case BFD_RELOC_THUMB_PCREL_BRANCH25:
17905 if ((value & ~0x1ffffff) && ((value & ~0x1ffffff) != ~0x1ffffff))
17906 as_bad_where (fixP->fx_file, fixP->fx_line,
17907 _("branch out of range"));
17908
17909 if (fixP->fx_done || !seg->use_rela_p)
17910 {
17911 offsetT newval2;
17912 addressT S, I1, I2, lo, hi;
17913
17914 S = (value & 0x01000000) >> 24;
17915 I1 = (value & 0x00800000) >> 23;
17916 I2 = (value & 0x00400000) >> 22;
17917 hi = (value & 0x003ff000) >> 12;
17918 lo = (value & 0x00000ffe) >> 1;
17919
17920 I1 = !(I1 ^ S);
17921 I2 = !(I2 ^ S);
17922
17923 newval = md_chars_to_number (buf, THUMB_SIZE);
17924 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
17925 newval |= (S << 10) | hi;
17926 newval2 |= (I1 << 13) | (I2 << 11) | lo;
17927 md_number_to_chars (buf, newval, THUMB_SIZE);
17928 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
17929 }
17930 break;
17931
17932 case BFD_RELOC_8:
17933 if (fixP->fx_done || !seg->use_rela_p)
17934 md_number_to_chars (buf, value, 1);
17935 break;
17936
17937 case BFD_RELOC_16:
17938 if (fixP->fx_done || !seg->use_rela_p)
17939 md_number_to_chars (buf, value, 2);
17940 break;
17941
17942 #ifdef OBJ_ELF
17943 case BFD_RELOC_ARM_TLS_GD32:
17944 case BFD_RELOC_ARM_TLS_LE32:
17945 case BFD_RELOC_ARM_TLS_IE32:
17946 case BFD_RELOC_ARM_TLS_LDM32:
17947 case BFD_RELOC_ARM_TLS_LDO32:
17948 S_SET_THREAD_LOCAL (fixP->fx_addsy);
17949 /* fall through */
17950
17951 case BFD_RELOC_ARM_GOT32:
17952 case BFD_RELOC_ARM_GOTOFF:
17953 case BFD_RELOC_ARM_TARGET2:
17954 if (fixP->fx_done || !seg->use_rela_p)
17955 md_number_to_chars (buf, 0, 4);
17956 break;
17957 #endif
17958
17959 case BFD_RELOC_RVA:
17960 case BFD_RELOC_32:
17961 case BFD_RELOC_ARM_TARGET1:
17962 case BFD_RELOC_ARM_ROSEGREL32:
17963 case BFD_RELOC_ARM_SBREL32:
17964 case BFD_RELOC_32_PCREL:
17965 #ifdef TE_PE
17966 case BFD_RELOC_32_SECREL:
17967 #endif
17968 if (fixP->fx_done || !seg->use_rela_p)
17969 #ifdef TE_WINCE
17970 /* For WinCE we only do this for pcrel fixups. */
17971 if (fixP->fx_done || fixP->fx_pcrel)
17972 #endif
17973 md_number_to_chars (buf, value, 4);
17974 break;
17975
17976 #ifdef OBJ_ELF
17977 case BFD_RELOC_ARM_PREL31:
17978 if (fixP->fx_done || !seg->use_rela_p)
17979 {
17980 newval = md_chars_to_number (buf, 4) & 0x80000000;
17981 if ((value ^ (value >> 1)) & 0x40000000)
17982 {
17983 as_bad_where (fixP->fx_file, fixP->fx_line,
17984 _("rel31 relocation overflow"));
17985 }
17986 newval |= value & 0x7fffffff;
17987 md_number_to_chars (buf, newval, 4);
17988 }
17989 break;
17990 #endif
17991
17992 case BFD_RELOC_ARM_CP_OFF_IMM:
17993 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
17994 if (value < -1023 || value > 1023 || (value & 3))
17995 as_bad_where (fixP->fx_file, fixP->fx_line,
17996 _("co-processor offset out of range"));
17997 cp_off_common:
17998 sign = value >= 0;
17999 if (value < 0)
18000 value = -value;
18001 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
18002 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
18003 newval = md_chars_to_number (buf, INSN_SIZE);
18004 else
18005 newval = get_thumb32_insn (buf);
18006 newval &= 0xff7fff00;
18007 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
18008 if (value == 0)
18009 newval &= ~WRITE_BACK;
18010 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
18011 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
18012 md_number_to_chars (buf, newval, INSN_SIZE);
18013 else
18014 put_thumb32_insn (buf, newval);
18015 break;
18016
18017 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
18018 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
18019 if (value < -255 || value > 255)
18020 as_bad_where (fixP->fx_file, fixP->fx_line,
18021 _("co-processor offset out of range"));
18022 value *= 4;
18023 goto cp_off_common;
18024
18025 case BFD_RELOC_ARM_THUMB_OFFSET:
18026 newval = md_chars_to_number (buf, THUMB_SIZE);
18027 /* Exactly what ranges, and where the offset is inserted depends
18028 on the type of instruction, we can establish this from the
18029 top 4 bits. */
18030 switch (newval >> 12)
18031 {
18032 case 4: /* PC load. */
18033 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
18034 forced to zero for these loads; md_pcrel_from has already
18035 compensated for this. */
18036 if (value & 3)
18037 as_bad_where (fixP->fx_file, fixP->fx_line,
18038 _("invalid offset, target not word aligned (0x%08lX)"),
18039 (((unsigned long) fixP->fx_frag->fr_address
18040 + (unsigned long) fixP->fx_where) & ~3)
18041 + (unsigned long) value);
18042
18043 if (value & ~0x3fc)
18044 as_bad_where (fixP->fx_file, fixP->fx_line,
18045 _("invalid offset, value too big (0x%08lX)"),
18046 (long) value);
18047
18048 newval |= value >> 2;
18049 break;
18050
18051 case 9: /* SP load/store. */
18052 if (value & ~0x3fc)
18053 as_bad_where (fixP->fx_file, fixP->fx_line,
18054 _("invalid offset, value too big (0x%08lX)"),
18055 (long) value);
18056 newval |= value >> 2;
18057 break;
18058
18059 case 6: /* Word load/store. */
18060 if (value & ~0x7c)
18061 as_bad_where (fixP->fx_file, fixP->fx_line,
18062 _("invalid offset, value too big (0x%08lX)"),
18063 (long) value);
18064 newval |= value << 4; /* 6 - 2. */
18065 break;
18066
18067 case 7: /* Byte load/store. */
18068 if (value & ~0x1f)
18069 as_bad_where (fixP->fx_file, fixP->fx_line,
18070 _("invalid offset, value too big (0x%08lX)"),
18071 (long) value);
18072 newval |= value << 6;
18073 break;
18074
18075 case 8: /* Halfword load/store. */
18076 if (value & ~0x3e)
18077 as_bad_where (fixP->fx_file, fixP->fx_line,
18078 _("invalid offset, value too big (0x%08lX)"),
18079 (long) value);
18080 newval |= value << 5; /* 6 - 1. */
18081 break;
18082
18083 default:
18084 as_bad_where (fixP->fx_file, fixP->fx_line,
18085 "Unable to process relocation for thumb opcode: %lx",
18086 (unsigned long) newval);
18087 break;
18088 }
18089 md_number_to_chars (buf, newval, THUMB_SIZE);
18090 break;
18091
18092 case BFD_RELOC_ARM_THUMB_ADD:
18093 /* This is a complicated relocation, since we use it for all of
18094 the following immediate relocations:
18095
18096 3bit ADD/SUB
18097 8bit ADD/SUB
18098 9bit ADD/SUB SP word-aligned
18099 10bit ADD PC/SP word-aligned
18100
18101 The type of instruction being processed is encoded in the
18102 instruction field:
18103
18104 0x8000 SUB
18105 0x00F0 Rd
18106 0x000F Rs
18107 */
18108 newval = md_chars_to_number (buf, THUMB_SIZE);
18109 {
18110 int rd = (newval >> 4) & 0xf;
18111 int rs = newval & 0xf;
18112 int subtract = !!(newval & 0x8000);
18113
18114 /* Check for HI regs, only very restricted cases allowed:
18115 Adjusting SP, and using PC or SP to get an address. */
18116 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
18117 || (rs > 7 && rs != REG_SP && rs != REG_PC))
18118 as_bad_where (fixP->fx_file, fixP->fx_line,
18119 _("invalid Hi register with immediate"));
18120
18121 /* If value is negative, choose the opposite instruction. */
18122 if (value < 0)
18123 {
18124 value = -value;
18125 subtract = !subtract;
18126 if (value < 0)
18127 as_bad_where (fixP->fx_file, fixP->fx_line,
18128 _("immediate value out of range"));
18129 }
18130
18131 if (rd == REG_SP)
18132 {
18133 if (value & ~0x1fc)
18134 as_bad_where (fixP->fx_file, fixP->fx_line,
18135 _("invalid immediate for stack address calculation"));
18136 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
18137 newval |= value >> 2;
18138 }
18139 else if (rs == REG_PC || rs == REG_SP)
18140 {
18141 if (subtract || value & ~0x3fc)
18142 as_bad_where (fixP->fx_file, fixP->fx_line,
18143 _("invalid immediate for address calculation (value = 0x%08lX)"),
18144 (unsigned long) value);
18145 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
18146 newval |= rd << 8;
18147 newval |= value >> 2;
18148 }
18149 else if (rs == rd)
18150 {
18151 if (value & ~0xff)
18152 as_bad_where (fixP->fx_file, fixP->fx_line,
18153 _("immediate value out of range"));
18154 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
18155 newval |= (rd << 8) | value;
18156 }
18157 else
18158 {
18159 if (value & ~0x7)
18160 as_bad_where (fixP->fx_file, fixP->fx_line,
18161 _("immediate value out of range"));
18162 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
18163 newval |= rd | (rs << 3) | (value << 6);
18164 }
18165 }
18166 md_number_to_chars (buf, newval, THUMB_SIZE);
18167 break;
18168
18169 case BFD_RELOC_ARM_THUMB_IMM:
18170 newval = md_chars_to_number (buf, THUMB_SIZE);
18171 if (value < 0 || value > 255)
18172 as_bad_where (fixP->fx_file, fixP->fx_line,
18173 _("invalid immediate: %ld is too large"),
18174 (long) value);
18175 newval |= value;
18176 md_number_to_chars (buf, newval, THUMB_SIZE);
18177 break;
18178
18179 case BFD_RELOC_ARM_THUMB_SHIFT:
18180 /* 5bit shift value (0..32). LSL cannot take 32. */
18181 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
18182 temp = newval & 0xf800;
18183 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
18184 as_bad_where (fixP->fx_file, fixP->fx_line,
18185 _("invalid shift value: %ld"), (long) value);
18186 /* Shifts of zero must be encoded as LSL. */
18187 if (value == 0)
18188 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
18189 /* Shifts of 32 are encoded as zero. */
18190 else if (value == 32)
18191 value = 0;
18192 newval |= value << 6;
18193 md_number_to_chars (buf, newval, THUMB_SIZE);
18194 break;
18195
18196 case BFD_RELOC_VTABLE_INHERIT:
18197 case BFD_RELOC_VTABLE_ENTRY:
18198 fixP->fx_done = 0;
18199 return;
18200
18201 case BFD_RELOC_ARM_MOVW:
18202 case BFD_RELOC_ARM_MOVT:
18203 case BFD_RELOC_ARM_THUMB_MOVW:
18204 case BFD_RELOC_ARM_THUMB_MOVT:
18205 if (fixP->fx_done || !seg->use_rela_p)
18206 {
18207 /* REL format relocations are limited to a 16-bit addend. */
18208 if (!fixP->fx_done)
18209 {
18210 if (value < -0x1000 || value > 0xffff)
18211 as_bad_where (fixP->fx_file, fixP->fx_line,
18212 _("offset too big"));
18213 }
18214 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
18215 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
18216 {
18217 value >>= 16;
18218 }
18219
18220 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
18221 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
18222 {
18223 newval = get_thumb32_insn (buf);
18224 newval &= 0xfbf08f00;
18225 newval |= (value & 0xf000) << 4;
18226 newval |= (value & 0x0800) << 15;
18227 newval |= (value & 0x0700) << 4;
18228 newval |= (value & 0x00ff);
18229 put_thumb32_insn (buf, newval);
18230 }
18231 else
18232 {
18233 newval = md_chars_to_number (buf, 4);
18234 newval &= 0xfff0f000;
18235 newval |= value & 0x0fff;
18236 newval |= (value & 0xf000) << 4;
18237 md_number_to_chars (buf, newval, 4);
18238 }
18239 }
18240 return;
18241
18242 case BFD_RELOC_ARM_ALU_PC_G0_NC:
18243 case BFD_RELOC_ARM_ALU_PC_G0:
18244 case BFD_RELOC_ARM_ALU_PC_G1_NC:
18245 case BFD_RELOC_ARM_ALU_PC_G1:
18246 case BFD_RELOC_ARM_ALU_PC_G2:
18247 case BFD_RELOC_ARM_ALU_SB_G0_NC:
18248 case BFD_RELOC_ARM_ALU_SB_G0:
18249 case BFD_RELOC_ARM_ALU_SB_G1_NC:
18250 case BFD_RELOC_ARM_ALU_SB_G1:
18251 case BFD_RELOC_ARM_ALU_SB_G2:
18252 assert (!fixP->fx_done);
18253 if (!seg->use_rela_p)
18254 {
18255 bfd_vma insn;
18256 bfd_vma encoded_addend;
18257 bfd_vma addend_abs = abs (value);
18258
18259 /* Check that the absolute value of the addend can be
18260 expressed as an 8-bit constant plus a rotation. */
18261 encoded_addend = encode_arm_immediate (addend_abs);
18262 if (encoded_addend == (unsigned int) FAIL)
18263 as_bad_where (fixP->fx_file, fixP->fx_line,
18264 _("the offset 0x%08lX is not representable"),
18265 addend_abs);
18266
18267 /* Extract the instruction. */
18268 insn = md_chars_to_number (buf, INSN_SIZE);
18269
18270 /* If the addend is positive, use an ADD instruction.
18271 Otherwise use a SUB. Take care not to destroy the S bit. */
18272 insn &= 0xff1fffff;
18273 if (value < 0)
18274 insn |= 1 << 22;
18275 else
18276 insn |= 1 << 23;
18277
18278 /* Place the encoded addend into the first 12 bits of the
18279 instruction. */
18280 insn &= 0xfffff000;
18281 insn |= encoded_addend;
18282
18283 /* Update the instruction. */
18284 md_number_to_chars (buf, insn, INSN_SIZE);
18285 }
18286 break;
18287
18288 case BFD_RELOC_ARM_LDR_PC_G0:
18289 case BFD_RELOC_ARM_LDR_PC_G1:
18290 case BFD_RELOC_ARM_LDR_PC_G2:
18291 case BFD_RELOC_ARM_LDR_SB_G0:
18292 case BFD_RELOC_ARM_LDR_SB_G1:
18293 case BFD_RELOC_ARM_LDR_SB_G2:
18294 assert (!fixP->fx_done);
18295 if (!seg->use_rela_p)
18296 {
18297 bfd_vma insn;
18298 bfd_vma addend_abs = abs (value);
18299
18300 /* Check that the absolute value of the addend can be
18301 encoded in 12 bits. */
18302 if (addend_abs >= 0x1000)
18303 as_bad_where (fixP->fx_file, fixP->fx_line,
18304 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
18305 addend_abs);
18306
18307 /* Extract the instruction. */
18308 insn = md_chars_to_number (buf, INSN_SIZE);
18309
18310 /* If the addend is negative, clear bit 23 of the instruction.
18311 Otherwise set it. */
18312 if (value < 0)
18313 insn &= ~(1 << 23);
18314 else
18315 insn |= 1 << 23;
18316
18317 /* Place the absolute value of the addend into the first 12 bits
18318 of the instruction. */
18319 insn &= 0xfffff000;
18320 insn |= addend_abs;
18321
18322 /* Update the instruction. */
18323 md_number_to_chars (buf, insn, INSN_SIZE);
18324 }
18325 break;
18326
18327 case BFD_RELOC_ARM_LDRS_PC_G0:
18328 case BFD_RELOC_ARM_LDRS_PC_G1:
18329 case BFD_RELOC_ARM_LDRS_PC_G2:
18330 case BFD_RELOC_ARM_LDRS_SB_G0:
18331 case BFD_RELOC_ARM_LDRS_SB_G1:
18332 case BFD_RELOC_ARM_LDRS_SB_G2:
18333 assert (!fixP->fx_done);
18334 if (!seg->use_rela_p)
18335 {
18336 bfd_vma insn;
18337 bfd_vma addend_abs = abs (value);
18338
18339 /* Check that the absolute value of the addend can be
18340 encoded in 8 bits. */
18341 if (addend_abs >= 0x100)
18342 as_bad_where (fixP->fx_file, fixP->fx_line,
18343 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
18344 addend_abs);
18345
18346 /* Extract the instruction. */
18347 insn = md_chars_to_number (buf, INSN_SIZE);
18348
18349 /* If the addend is negative, clear bit 23 of the instruction.
18350 Otherwise set it. */
18351 if (value < 0)
18352 insn &= ~(1 << 23);
18353 else
18354 insn |= 1 << 23;
18355
18356 /* Place the first four bits of the absolute value of the addend
18357 into the first 4 bits of the instruction, and the remaining
18358 four into bits 8 .. 11. */
18359 insn &= 0xfffff0f0;
18360 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
18361
18362 /* Update the instruction. */
18363 md_number_to_chars (buf, insn, INSN_SIZE);
18364 }
18365 break;
18366
18367 case BFD_RELOC_ARM_LDC_PC_G0:
18368 case BFD_RELOC_ARM_LDC_PC_G1:
18369 case BFD_RELOC_ARM_LDC_PC_G2:
18370 case BFD_RELOC_ARM_LDC_SB_G0:
18371 case BFD_RELOC_ARM_LDC_SB_G1:
18372 case BFD_RELOC_ARM_LDC_SB_G2:
18373 assert (!fixP->fx_done);
18374 if (!seg->use_rela_p)
18375 {
18376 bfd_vma insn;
18377 bfd_vma addend_abs = abs (value);
18378
18379 /* Check that the absolute value of the addend is a multiple of
18380 four and, when divided by four, fits in 8 bits. */
18381 if (addend_abs & 0x3)
18382 as_bad_where (fixP->fx_file, fixP->fx_line,
18383 _("bad offset 0x%08lX (must be word-aligned)"),
18384 addend_abs);
18385
18386 if ((addend_abs >> 2) > 0xff)
18387 as_bad_where (fixP->fx_file, fixP->fx_line,
18388 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
18389 addend_abs);
18390
18391 /* Extract the instruction. */
18392 insn = md_chars_to_number (buf, INSN_SIZE);
18393
18394 /* If the addend is negative, clear bit 23 of the instruction.
18395 Otherwise set it. */
18396 if (value < 0)
18397 insn &= ~(1 << 23);
18398 else
18399 insn |= 1 << 23;
18400
18401 /* Place the addend (divided by four) into the first eight
18402 bits of the instruction. */
18403 insn &= 0xfffffff0;
18404 insn |= addend_abs >> 2;
18405
18406 /* Update the instruction. */
18407 md_number_to_chars (buf, insn, INSN_SIZE);
18408 }
18409 break;
18410
18411 case BFD_RELOC_UNUSED:
18412 default:
18413 as_bad_where (fixP->fx_file, fixP->fx_line,
18414 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
18415 }
18416 }
18417
18418 /* Translate internal representation of relocation info to BFD target
18419 format. */
18420
18421 arelent *
18422 tc_gen_reloc (asection *section, fixS *fixp)
18423 {
18424 arelent * reloc;
18425 bfd_reloc_code_real_type code;
18426
18427 reloc = xmalloc (sizeof (arelent));
18428
18429 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
18430 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
18431 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
18432
18433 if (fixp->fx_pcrel)
18434 {
18435 if (section->use_rela_p)
18436 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
18437 else
18438 fixp->fx_offset = reloc->address;
18439 }
18440 reloc->addend = fixp->fx_offset;
18441
18442 switch (fixp->fx_r_type)
18443 {
18444 case BFD_RELOC_8:
18445 if (fixp->fx_pcrel)
18446 {
18447 code = BFD_RELOC_8_PCREL;
18448 break;
18449 }
18450
18451 case BFD_RELOC_16:
18452 if (fixp->fx_pcrel)
18453 {
18454 code = BFD_RELOC_16_PCREL;
18455 break;
18456 }
18457
18458 case BFD_RELOC_32:
18459 if (fixp->fx_pcrel)
18460 {
18461 code = BFD_RELOC_32_PCREL;
18462 break;
18463 }
18464
18465 case BFD_RELOC_ARM_MOVW:
18466 if (fixp->fx_pcrel)
18467 {
18468 code = BFD_RELOC_ARM_MOVW_PCREL;
18469 break;
18470 }
18471
18472 case BFD_RELOC_ARM_MOVT:
18473 if (fixp->fx_pcrel)
18474 {
18475 code = BFD_RELOC_ARM_MOVT_PCREL;
18476 break;
18477 }
18478
18479 case BFD_RELOC_ARM_THUMB_MOVW:
18480 if (fixp->fx_pcrel)
18481 {
18482 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
18483 break;
18484 }
18485
18486 case BFD_RELOC_ARM_THUMB_MOVT:
18487 if (fixp->fx_pcrel)
18488 {
18489 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
18490 break;
18491 }
18492
18493 case BFD_RELOC_NONE:
18494 case BFD_RELOC_ARM_PCREL_BRANCH:
18495 case BFD_RELOC_ARM_PCREL_BLX:
18496 case BFD_RELOC_RVA:
18497 case BFD_RELOC_THUMB_PCREL_BRANCH7:
18498 case BFD_RELOC_THUMB_PCREL_BRANCH9:
18499 case BFD_RELOC_THUMB_PCREL_BRANCH12:
18500 case BFD_RELOC_THUMB_PCREL_BRANCH20:
18501 case BFD_RELOC_THUMB_PCREL_BRANCH23:
18502 case BFD_RELOC_THUMB_PCREL_BRANCH25:
18503 case BFD_RELOC_THUMB_PCREL_BLX:
18504 case BFD_RELOC_VTABLE_ENTRY:
18505 case BFD_RELOC_VTABLE_INHERIT:
18506 #ifdef TE_PE
18507 case BFD_RELOC_32_SECREL:
18508 #endif
18509 code = fixp->fx_r_type;
18510 break;
18511
18512 case BFD_RELOC_ARM_LITERAL:
18513 case BFD_RELOC_ARM_HWLITERAL:
18514 /* If this is called then the a literal has
18515 been referenced across a section boundary. */
18516 as_bad_where (fixp->fx_file, fixp->fx_line,
18517 _("literal referenced across section boundary"));
18518 return NULL;
18519
18520 #ifdef OBJ_ELF
18521 case BFD_RELOC_ARM_GOT32:
18522 case BFD_RELOC_ARM_GOTOFF:
18523 case BFD_RELOC_ARM_PLT32:
18524 case BFD_RELOC_ARM_TARGET1:
18525 case BFD_RELOC_ARM_ROSEGREL32:
18526 case BFD_RELOC_ARM_SBREL32:
18527 case BFD_RELOC_ARM_PREL31:
18528 case BFD_RELOC_ARM_TARGET2:
18529 case BFD_RELOC_ARM_TLS_LE32:
18530 case BFD_RELOC_ARM_TLS_LDO32:
18531 case BFD_RELOC_ARM_PCREL_CALL:
18532 case BFD_RELOC_ARM_PCREL_JUMP:
18533 case BFD_RELOC_ARM_ALU_PC_G0_NC:
18534 case BFD_RELOC_ARM_ALU_PC_G0:
18535 case BFD_RELOC_ARM_ALU_PC_G1_NC:
18536 case BFD_RELOC_ARM_ALU_PC_G1:
18537 case BFD_RELOC_ARM_ALU_PC_G2:
18538 case BFD_RELOC_ARM_LDR_PC_G0:
18539 case BFD_RELOC_ARM_LDR_PC_G1:
18540 case BFD_RELOC_ARM_LDR_PC_G2:
18541 case BFD_RELOC_ARM_LDRS_PC_G0:
18542 case BFD_RELOC_ARM_LDRS_PC_G1:
18543 case BFD_RELOC_ARM_LDRS_PC_G2:
18544 case BFD_RELOC_ARM_LDC_PC_G0:
18545 case BFD_RELOC_ARM_LDC_PC_G1:
18546 case BFD_RELOC_ARM_LDC_PC_G2:
18547 case BFD_RELOC_ARM_ALU_SB_G0_NC:
18548 case BFD_RELOC_ARM_ALU_SB_G0:
18549 case BFD_RELOC_ARM_ALU_SB_G1_NC:
18550 case BFD_RELOC_ARM_ALU_SB_G1:
18551 case BFD_RELOC_ARM_ALU_SB_G2:
18552 case BFD_RELOC_ARM_LDR_SB_G0:
18553 case BFD_RELOC_ARM_LDR_SB_G1:
18554 case BFD_RELOC_ARM_LDR_SB_G2:
18555 case BFD_RELOC_ARM_LDRS_SB_G0:
18556 case BFD_RELOC_ARM_LDRS_SB_G1:
18557 case BFD_RELOC_ARM_LDRS_SB_G2:
18558 case BFD_RELOC_ARM_LDC_SB_G0:
18559 case BFD_RELOC_ARM_LDC_SB_G1:
18560 case BFD_RELOC_ARM_LDC_SB_G2:
18561 code = fixp->fx_r_type;
18562 break;
18563
18564 case BFD_RELOC_ARM_TLS_GD32:
18565 case BFD_RELOC_ARM_TLS_IE32:
18566 case BFD_RELOC_ARM_TLS_LDM32:
18567 /* BFD will include the symbol's address in the addend.
18568 But we don't want that, so subtract it out again here. */
18569 if (!S_IS_COMMON (fixp->fx_addsy))
18570 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
18571 code = fixp->fx_r_type;
18572 break;
18573 #endif
18574
18575 case BFD_RELOC_ARM_IMMEDIATE:
18576 as_bad_where (fixp->fx_file, fixp->fx_line,
18577 _("internal relocation (type: IMMEDIATE) not fixed up"));
18578 return NULL;
18579
18580 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
18581 as_bad_where (fixp->fx_file, fixp->fx_line,
18582 _("ADRL used for a symbol not defined in the same file"));
18583 return NULL;
18584
18585 case BFD_RELOC_ARM_OFFSET_IMM:
18586 if (section->use_rela_p)
18587 {
18588 code = fixp->fx_r_type;
18589 break;
18590 }
18591
18592 if (fixp->fx_addsy != NULL
18593 && !S_IS_DEFINED (fixp->fx_addsy)
18594 && S_IS_LOCAL (fixp->fx_addsy))
18595 {
18596 as_bad_where (fixp->fx_file, fixp->fx_line,
18597 _("undefined local label `%s'"),
18598 S_GET_NAME (fixp->fx_addsy));
18599 return NULL;
18600 }
18601
18602 as_bad_where (fixp->fx_file, fixp->fx_line,
18603 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
18604 return NULL;
18605
18606 default:
18607 {
18608 char * type;
18609
18610 switch (fixp->fx_r_type)
18611 {
18612 case BFD_RELOC_NONE: type = "NONE"; break;
18613 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
18614 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
18615 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
18616 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
18617 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
18618 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
18619 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
18620 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
18621 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
18622 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
18623 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
18624 default: type = _("<unknown>"); break;
18625 }
18626 as_bad_where (fixp->fx_file, fixp->fx_line,
18627 _("cannot represent %s relocation in this object file format"),
18628 type);
18629 return NULL;
18630 }
18631 }
18632
18633 #ifdef OBJ_ELF
18634 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
18635 && GOT_symbol
18636 && fixp->fx_addsy == GOT_symbol)
18637 {
18638 code = BFD_RELOC_ARM_GOTPC;
18639 reloc->addend = fixp->fx_offset = reloc->address;
18640 }
18641 #endif
18642
18643 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
18644
18645 if (reloc->howto == NULL)
18646 {
18647 as_bad_where (fixp->fx_file, fixp->fx_line,
18648 _("cannot represent %s relocation in this object file format"),
18649 bfd_get_reloc_code_name (code));
18650 return NULL;
18651 }
18652
18653 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
18654 vtable entry to be used in the relocation's section offset. */
18655 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
18656 reloc->address = fixp->fx_offset;
18657
18658 return reloc;
18659 }
18660
18661 /* This fix_new is called by cons via TC_CONS_FIX_NEW. */
18662
18663 void
18664 cons_fix_new_arm (fragS * frag,
18665 int where,
18666 int size,
18667 expressionS * exp)
18668 {
18669 bfd_reloc_code_real_type type;
18670 int pcrel = 0;
18671
18672 /* Pick a reloc.
18673 FIXME: @@ Should look at CPU word size. */
18674 switch (size)
18675 {
18676 case 1:
18677 type = BFD_RELOC_8;
18678 break;
18679 case 2:
18680 type = BFD_RELOC_16;
18681 break;
18682 case 4:
18683 default:
18684 type = BFD_RELOC_32;
18685 break;
18686 case 8:
18687 type = BFD_RELOC_64;
18688 break;
18689 }
18690
18691 #ifdef TE_PE
18692 if (exp->X_op == O_secrel)
18693 {
18694 exp->X_op = O_symbol;
18695 type = BFD_RELOC_32_SECREL;
18696 }
18697 #endif
18698
18699 fix_new_exp (frag, where, (int) size, exp, pcrel, type);
18700 }
18701
18702 #if defined OBJ_COFF || defined OBJ_ELF
18703 void
18704 arm_validate_fix (fixS * fixP)
18705 {
18706 /* If the destination of the branch is a defined symbol which does not have
18707 the THUMB_FUNC attribute, then we must be calling a function which has
18708 the (interfacearm) attribute. We look for the Thumb entry point to that
18709 function and change the branch to refer to that function instead. */
18710 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
18711 && fixP->fx_addsy != NULL
18712 && S_IS_DEFINED (fixP->fx_addsy)
18713 && ! THUMB_IS_FUNC (fixP->fx_addsy))
18714 {
18715 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
18716 }
18717 }
18718 #endif
18719
18720 int
18721 arm_force_relocation (struct fix * fixp)
18722 {
18723 #if defined (OBJ_COFF) && defined (TE_PE)
18724 if (fixp->fx_r_type == BFD_RELOC_RVA)
18725 return 1;
18726 #endif
18727
18728 /* Resolve these relocations even if the symbol is extern or weak. */
18729 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
18730 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
18731 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
18732 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
18733 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
18734 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
18735 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12)
18736 return 0;
18737
18738 /* Always leave these relocations for the linker. */
18739 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
18740 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
18741 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
18742 return 1;
18743
18744 return generic_force_reloc (fixp);
18745 }
18746
18747 #ifdef OBJ_COFF
18748 bfd_boolean
18749 arm_fix_adjustable (fixS * fixP)
18750 {
18751 /* This is a little hack to help the gas/arm/adrl.s test. It prevents
18752 local labels from being added to the output symbol table when they
18753 are used with the ADRL pseudo op. The ADRL relocation should always
18754 be resolved before the binbary is emitted, so it is safe to say that
18755 it is adjustable. */
18756 if (fixP->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE)
18757 return 1;
18758
18759 /* This is a hack for the gas/all/redef2.s test. This test causes symbols
18760 to be cloned, and without this test relocs would still be generated
18761 against the original, pre-cloned symbol. Such symbols would not appear
18762 in the symbol table however, and so a valid reloc could not be
18763 generated. So check to see if the fixup is against a symbol which has
18764 been removed from the symbol chain, and if it is, then allow it to be
18765 adjusted into a reloc against a section symbol. */
18766 if (fixP->fx_addsy != NULL
18767 && ! S_IS_LOCAL (fixP->fx_addsy)
18768 && symbol_next (fixP->fx_addsy) == NULL
18769 && symbol_next (fixP->fx_addsy) == symbol_previous (fixP->fx_addsy))
18770 return 1;
18771
18772 return 0;
18773 }
18774 #endif
18775
18776 #ifdef OBJ_ELF
18777 /* Relocations against function names must be left unadjusted,
18778 so that the linker can use this information to generate interworking
18779 stubs. The MIPS version of this function
18780 also prevents relocations that are mips-16 specific, but I do not
18781 know why it does this.
18782
18783 FIXME:
18784 There is one other problem that ought to be addressed here, but
18785 which currently is not: Taking the address of a label (rather
18786 than a function) and then later jumping to that address. Such
18787 addresses also ought to have their bottom bit set (assuming that
18788 they reside in Thumb code), but at the moment they will not. */
18789
18790 bfd_boolean
18791 arm_fix_adjustable (fixS * fixP)
18792 {
18793 if (fixP->fx_addsy == NULL)
18794 return 1;
18795
18796 /* Preserve relocations against symbols with function type. */
18797 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
18798 return 0;
18799
18800 if (THUMB_IS_FUNC (fixP->fx_addsy)
18801 && fixP->fx_subsy == NULL)
18802 return 0;
18803
18804 /* We need the symbol name for the VTABLE entries. */
18805 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
18806 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
18807 return 0;
18808
18809 /* Don't allow symbols to be discarded on GOT related relocs. */
18810 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
18811 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
18812 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
18813 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
18814 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
18815 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
18816 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
18817 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
18818 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
18819 return 0;
18820
18821 /* Similarly for group relocations. */
18822 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
18823 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
18824 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
18825 return 0;
18826
18827 return 1;
18828 }
18829
18830 const char *
18831 elf32_arm_target_format (void)
18832 {
18833 #ifdef TE_SYMBIAN
18834 return (target_big_endian
18835 ? "elf32-bigarm-symbian"
18836 : "elf32-littlearm-symbian");
18837 #elif defined (TE_VXWORKS)
18838 return (target_big_endian
18839 ? "elf32-bigarm-vxworks"
18840 : "elf32-littlearm-vxworks");
18841 #else
18842 if (target_big_endian)
18843 return "elf32-bigarm";
18844 else
18845 return "elf32-littlearm";
18846 #endif
18847 }
18848
18849 void
18850 armelf_frob_symbol (symbolS * symp,
18851 int * puntp)
18852 {
18853 elf_frob_symbol (symp, puntp);
18854 }
18855 #endif
18856
18857 /* MD interface: Finalization. */
18858
18859 /* A good place to do this, although this was probably not intended
18860 for this kind of use. We need to dump the literal pool before
18861 references are made to a null symbol pointer. */
18862
18863 void
18864 arm_cleanup (void)
18865 {
18866 literal_pool * pool;
18867
18868 for (pool = list_of_pools; pool; pool = pool->next)
18869 {
18870 /* Put it at the end of the relevent section. */
18871 subseg_set (pool->section, pool->sub_section);
18872 #ifdef OBJ_ELF
18873 arm_elf_change_section ();
18874 #endif
18875 s_ltorg (0);
18876 }
18877 }
18878
18879 /* Adjust the symbol table. This marks Thumb symbols as distinct from
18880 ARM ones. */
18881
18882 void
18883 arm_adjust_symtab (void)
18884 {
18885 #ifdef OBJ_COFF
18886 symbolS * sym;
18887
18888 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
18889 {
18890 if (ARM_IS_THUMB (sym))
18891 {
18892 if (THUMB_IS_FUNC (sym))
18893 {
18894 /* Mark the symbol as a Thumb function. */
18895 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
18896 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
18897 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
18898
18899 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
18900 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
18901 else
18902 as_bad (_("%s: unexpected function type: %d"),
18903 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
18904 }
18905 else switch (S_GET_STORAGE_CLASS (sym))
18906 {
18907 case C_EXT:
18908 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
18909 break;
18910 case C_STAT:
18911 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
18912 break;
18913 case C_LABEL:
18914 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
18915 break;
18916 default:
18917 /* Do nothing. */
18918 break;
18919 }
18920 }
18921
18922 if (ARM_IS_INTERWORK (sym))
18923 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
18924 }
18925 #endif
18926 #ifdef OBJ_ELF
18927 symbolS * sym;
18928 char bind;
18929
18930 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
18931 {
18932 if (ARM_IS_THUMB (sym))
18933 {
18934 elf_symbol_type * elf_sym;
18935
18936 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
18937 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
18938
18939 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
18940 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
18941 {
18942 /* If it's a .thumb_func, declare it as so,
18943 otherwise tag label as .code 16. */
18944 if (THUMB_IS_FUNC (sym))
18945 elf_sym->internal_elf_sym.st_info =
18946 ELF_ST_INFO (bind, STT_ARM_TFUNC);
18947 else
18948 elf_sym->internal_elf_sym.st_info =
18949 ELF_ST_INFO (bind, STT_ARM_16BIT);
18950 }
18951 }
18952 }
18953 #endif
18954 }
18955
18956 /* MD interface: Initialization. */
18957
18958 static void
18959 set_constant_flonums (void)
18960 {
18961 int i;
18962
18963 for (i = 0; i < NUM_FLOAT_VALS; i++)
18964 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
18965 abort ();
18966 }
18967
18968 /* Auto-select Thumb mode if it's the only available instruction set for the
18969 given architecture. */
18970
18971 static void
18972 autoselect_thumb_from_cpu_variant (void)
18973 {
18974 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
18975 opcode_select (16);
18976 }
18977
18978 void
18979 md_begin (void)
18980 {
18981 unsigned mach;
18982 unsigned int i;
18983
18984 if ( (arm_ops_hsh = hash_new ()) == NULL
18985 || (arm_cond_hsh = hash_new ()) == NULL
18986 || (arm_shift_hsh = hash_new ()) == NULL
18987 || (arm_psr_hsh = hash_new ()) == NULL
18988 || (arm_v7m_psr_hsh = hash_new ()) == NULL
18989 || (arm_reg_hsh = hash_new ()) == NULL
18990 || (arm_reloc_hsh = hash_new ()) == NULL
18991 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
18992 as_fatal (_("virtual memory exhausted"));
18993
18994 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
18995 hash_insert (arm_ops_hsh, insns[i].template, (PTR) (insns + i));
18996 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
18997 hash_insert (arm_cond_hsh, conds[i].template, (PTR) (conds + i));
18998 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
18999 hash_insert (arm_shift_hsh, shift_names[i].name, (PTR) (shift_names + i));
19000 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
19001 hash_insert (arm_psr_hsh, psrs[i].template, (PTR) (psrs + i));
19002 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
19003 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template, (PTR) (v7m_psrs + i));
19004 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
19005 hash_insert (arm_reg_hsh, reg_names[i].name, (PTR) (reg_names + i));
19006 for (i = 0;
19007 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
19008 i++)
19009 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template,
19010 (PTR) (barrier_opt_names + i));
19011 #ifdef OBJ_ELF
19012 for (i = 0; i < sizeof (reloc_names) / sizeof (struct reloc_entry); i++)
19013 hash_insert (arm_reloc_hsh, reloc_names[i].name, (PTR) (reloc_names + i));
19014 #endif
19015
19016 set_constant_flonums ();
19017
19018 /* Set the cpu variant based on the command-line options. We prefer
19019 -mcpu= over -march= if both are set (as for GCC); and we prefer
19020 -mfpu= over any other way of setting the floating point unit.
19021 Use of legacy options with new options are faulted. */
19022 if (legacy_cpu)
19023 {
19024 if (mcpu_cpu_opt || march_cpu_opt)
19025 as_bad (_("use of old and new-style options to set CPU type"));
19026
19027 mcpu_cpu_opt = legacy_cpu;
19028 }
19029 else if (!mcpu_cpu_opt)
19030 mcpu_cpu_opt = march_cpu_opt;
19031
19032 if (legacy_fpu)
19033 {
19034 if (mfpu_opt)
19035 as_bad (_("use of old and new-style options to set FPU type"));
19036
19037 mfpu_opt = legacy_fpu;
19038 }
19039 else if (!mfpu_opt)
19040 {
19041 #if !(defined (TE_LINUX) || defined (TE_NetBSD) || defined (TE_VXWORKS))
19042 /* Some environments specify a default FPU. If they don't, infer it
19043 from the processor. */
19044 if (mcpu_fpu_opt)
19045 mfpu_opt = mcpu_fpu_opt;
19046 else
19047 mfpu_opt = march_fpu_opt;
19048 #else
19049 mfpu_opt = &fpu_default;
19050 #endif
19051 }
19052
19053 if (!mfpu_opt)
19054 {
19055 if (!mcpu_cpu_opt)
19056 mfpu_opt = &fpu_default;
19057 else if (ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
19058 mfpu_opt = &fpu_arch_vfp_v2;
19059 else
19060 mfpu_opt = &fpu_arch_fpa;
19061 }
19062
19063 #ifdef CPU_DEFAULT
19064 if (!mcpu_cpu_opt)
19065 {
19066 mcpu_cpu_opt = &cpu_default;
19067 selected_cpu = cpu_default;
19068 }
19069 #else
19070 if (mcpu_cpu_opt)
19071 selected_cpu = *mcpu_cpu_opt;
19072 else
19073 mcpu_cpu_opt = &arm_arch_any;
19074 #endif
19075
19076 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
19077
19078 autoselect_thumb_from_cpu_variant ();
19079
19080 arm_arch_used = thumb_arch_used = arm_arch_none;
19081
19082 #if defined OBJ_COFF || defined OBJ_ELF
19083 {
19084 unsigned int flags = 0;
19085
19086 #if defined OBJ_ELF
19087 flags = meabi_flags;
19088
19089 switch (meabi_flags)
19090 {
19091 case EF_ARM_EABI_UNKNOWN:
19092 #endif
19093 /* Set the flags in the private structure. */
19094 if (uses_apcs_26) flags |= F_APCS26;
19095 if (support_interwork) flags |= F_INTERWORK;
19096 if (uses_apcs_float) flags |= F_APCS_FLOAT;
19097 if (pic_code) flags |= F_PIC;
19098 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
19099 flags |= F_SOFT_FLOAT;
19100
19101 switch (mfloat_abi_opt)
19102 {
19103 case ARM_FLOAT_ABI_SOFT:
19104 case ARM_FLOAT_ABI_SOFTFP:
19105 flags |= F_SOFT_FLOAT;
19106 break;
19107
19108 case ARM_FLOAT_ABI_HARD:
19109 if (flags & F_SOFT_FLOAT)
19110 as_bad (_("hard-float conflicts with specified fpu"));
19111 break;
19112 }
19113
19114 /* Using pure-endian doubles (even if soft-float). */
19115 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
19116 flags |= F_VFP_FLOAT;
19117
19118 #if defined OBJ_ELF
19119 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
19120 flags |= EF_ARM_MAVERICK_FLOAT;
19121 break;
19122
19123 case EF_ARM_EABI_VER4:
19124 case EF_ARM_EABI_VER5:
19125 /* No additional flags to set. */
19126 break;
19127
19128 default:
19129 abort ();
19130 }
19131 #endif
19132 bfd_set_private_flags (stdoutput, flags);
19133
19134 /* We have run out flags in the COFF header to encode the
19135 status of ATPCS support, so instead we create a dummy,
19136 empty, debug section called .arm.atpcs. */
19137 if (atpcs)
19138 {
19139 asection * sec;
19140
19141 sec = bfd_make_section (stdoutput, ".arm.atpcs");
19142
19143 if (sec != NULL)
19144 {
19145 bfd_set_section_flags
19146 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
19147 bfd_set_section_size (stdoutput, sec, 0);
19148 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
19149 }
19150 }
19151 }
19152 #endif
19153
19154 /* Record the CPU type as well. */
19155 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
19156 mach = bfd_mach_arm_iWMMXt;
19157 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
19158 mach = bfd_mach_arm_XScale;
19159 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
19160 mach = bfd_mach_arm_ep9312;
19161 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
19162 mach = bfd_mach_arm_5TE;
19163 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
19164 {
19165 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
19166 mach = bfd_mach_arm_5T;
19167 else
19168 mach = bfd_mach_arm_5;
19169 }
19170 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
19171 {
19172 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
19173 mach = bfd_mach_arm_4T;
19174 else
19175 mach = bfd_mach_arm_4;
19176 }
19177 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
19178 mach = bfd_mach_arm_3M;
19179 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
19180 mach = bfd_mach_arm_3;
19181 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
19182 mach = bfd_mach_arm_2a;
19183 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
19184 mach = bfd_mach_arm_2;
19185 else
19186 mach = bfd_mach_arm_unknown;
19187
19188 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
19189 }
19190
19191 /* Command line processing. */
19192
19193 /* md_parse_option
19194 Invocation line includes a switch not recognized by the base assembler.
19195 See if it's a processor-specific option.
19196
19197 This routine is somewhat complicated by the need for backwards
19198 compatibility (since older releases of gcc can't be changed).
19199 The new options try to make the interface as compatible as
19200 possible with GCC.
19201
19202 New options (supported) are:
19203
19204 -mcpu=<cpu name> Assemble for selected processor
19205 -march=<architecture name> Assemble for selected architecture
19206 -mfpu=<fpu architecture> Assemble for selected FPU.
19207 -EB/-mbig-endian Big-endian
19208 -EL/-mlittle-endian Little-endian
19209 -k Generate PIC code
19210 -mthumb Start in Thumb mode
19211 -mthumb-interwork Code supports ARM/Thumb interworking
19212
19213 For now we will also provide support for:
19214
19215 -mapcs-32 32-bit Program counter
19216 -mapcs-26 26-bit Program counter
19217 -macps-float Floats passed in FP registers
19218 -mapcs-reentrant Reentrant code
19219 -matpcs
19220 (sometime these will probably be replaced with -mapcs=<list of options>
19221 and -matpcs=<list of options>)
19222
19223 The remaining options are only supported for back-wards compatibility.
19224 Cpu variants, the arm part is optional:
19225 -m[arm]1 Currently not supported.
19226 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
19227 -m[arm]3 Arm 3 processor
19228 -m[arm]6[xx], Arm 6 processors
19229 -m[arm]7[xx][t][[d]m] Arm 7 processors
19230 -m[arm]8[10] Arm 8 processors
19231 -m[arm]9[20][tdmi] Arm 9 processors
19232 -mstrongarm[110[0]] StrongARM processors
19233 -mxscale XScale processors
19234 -m[arm]v[2345[t[e]]] Arm architectures
19235 -mall All (except the ARM1)
19236 FP variants:
19237 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
19238 -mfpe-old (No float load/store multiples)
19239 -mvfpxd VFP Single precision
19240 -mvfp All VFP
19241 -mno-fpu Disable all floating point instructions
19242
19243 The following CPU names are recognized:
19244 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
19245 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
19246 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
19247 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
19248 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
19249 arm10t arm10e, arm1020t, arm1020e, arm10200e,
19250 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
19251
19252 */
19253
19254 const char * md_shortopts = "m:k";
19255
19256 #ifdef ARM_BI_ENDIAN
19257 #define OPTION_EB (OPTION_MD_BASE + 0)
19258 #define OPTION_EL (OPTION_MD_BASE + 1)
19259 #else
19260 #if TARGET_BYTES_BIG_ENDIAN
19261 #define OPTION_EB (OPTION_MD_BASE + 0)
19262 #else
19263 #define OPTION_EL (OPTION_MD_BASE + 1)
19264 #endif
19265 #endif
19266
19267 struct option md_longopts[] =
19268 {
19269 #ifdef OPTION_EB
19270 {"EB", no_argument, NULL, OPTION_EB},
19271 #endif
19272 #ifdef OPTION_EL
19273 {"EL", no_argument, NULL, OPTION_EL},
19274 #endif
19275 {NULL, no_argument, NULL, 0}
19276 };
19277
19278 size_t md_longopts_size = sizeof (md_longopts);
19279
19280 struct arm_option_table
19281 {
19282 char *option; /* Option name to match. */
19283 char *help; /* Help information. */
19284 int *var; /* Variable to change. */
19285 int value; /* What to change it to. */
19286 char *deprecated; /* If non-null, print this message. */
19287 };
19288
19289 struct arm_option_table arm_opts[] =
19290 {
19291 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
19292 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
19293 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
19294 &support_interwork, 1, NULL},
19295 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
19296 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
19297 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
19298 1, NULL},
19299 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
19300 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
19301 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
19302 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
19303 NULL},
19304
19305 /* These are recognized by the assembler, but have no affect on code. */
19306 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
19307 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
19308 {NULL, NULL, NULL, 0, NULL}
19309 };
19310
19311 struct arm_legacy_option_table
19312 {
19313 char *option; /* Option name to match. */
19314 const arm_feature_set **var; /* Variable to change. */
19315 const arm_feature_set value; /* What to change it to. */
19316 char *deprecated; /* If non-null, print this message. */
19317 };
19318
19319 const struct arm_legacy_option_table arm_legacy_opts[] =
19320 {
19321 /* DON'T add any new processors to this list -- we want the whole list
19322 to go away... Add them to the processors table instead. */
19323 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
19324 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
19325 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
19326 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
19327 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
19328 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
19329 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
19330 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
19331 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
19332 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
19333 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
19334 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
19335 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
19336 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
19337 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
19338 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
19339 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
19340 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
19341 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
19342 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
19343 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
19344 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
19345 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
19346 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
19347 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
19348 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
19349 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
19350 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
19351 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
19352 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
19353 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
19354 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
19355 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
19356 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
19357 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
19358 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
19359 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
19360 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
19361 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
19362 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
19363 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
19364 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
19365 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
19366 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
19367 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
19368 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
19369 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
19370 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
19371 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
19372 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
19373 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
19374 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
19375 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
19376 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
19377 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
19378 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
19379 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
19380 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
19381 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
19382 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
19383 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
19384 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
19385 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
19386 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
19387 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
19388 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
19389 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
19390 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
19391 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
19392 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
19393 N_("use -mcpu=strongarm110")},
19394 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
19395 N_("use -mcpu=strongarm1100")},
19396 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
19397 N_("use -mcpu=strongarm1110")},
19398 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
19399 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
19400 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
19401
19402 /* Architecture variants -- don't add any more to this list either. */
19403 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
19404 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
19405 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
19406 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
19407 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
19408 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
19409 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
19410 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
19411 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
19412 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
19413 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
19414 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
19415 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
19416 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
19417 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
19418 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
19419 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
19420 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
19421
19422 /* Floating point variants -- don't add any more to this list either. */
19423 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
19424 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
19425 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
19426 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
19427 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
19428
19429 {NULL, NULL, ARM_ARCH_NONE, NULL}
19430 };
19431
19432 struct arm_cpu_option_table
19433 {
19434 char *name;
19435 const arm_feature_set value;
19436 /* For some CPUs we assume an FPU unless the user explicitly sets
19437 -mfpu=... */
19438 const arm_feature_set default_fpu;
19439 /* The canonical name of the CPU, or NULL to use NAME converted to upper
19440 case. */
19441 const char *canonical_name;
19442 };
19443
19444 /* This list should, at a minimum, contain all the cpu names
19445 recognized by GCC. */
19446 static const struct arm_cpu_option_table arm_cpus[] =
19447 {
19448 {"all", ARM_ANY, FPU_ARCH_FPA, NULL},
19449 {"arm1", ARM_ARCH_V1, FPU_ARCH_FPA, NULL},
19450 {"arm2", ARM_ARCH_V2, FPU_ARCH_FPA, NULL},
19451 {"arm250", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL},
19452 {"arm3", ARM_ARCH_V2S, FPU_ARCH_FPA, NULL},
19453 {"arm6", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19454 {"arm60", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19455 {"arm600", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19456 {"arm610", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19457 {"arm620", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19458 {"arm7", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19459 {"arm7m", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL},
19460 {"arm7d", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19461 {"arm7dm", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL},
19462 {"arm7di", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19463 {"arm7dmi", ARM_ARCH_V3M, FPU_ARCH_FPA, NULL},
19464 {"arm70", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19465 {"arm700", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19466 {"arm700i", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19467 {"arm710", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19468 {"arm710t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19469 {"arm720", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19470 {"arm720t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19471 {"arm740t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19472 {"arm710c", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19473 {"arm7100", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19474 {"arm7500", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19475 {"arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA, NULL},
19476 {"arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19477 {"arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19478 {"arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19479 {"arm8", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19480 {"arm810", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19481 {"strongarm", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19482 {"strongarm1", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19483 {"strongarm110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19484 {"strongarm1100", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19485 {"strongarm1110", ARM_ARCH_V4, FPU_ARCH_FPA, NULL},
19486 {"arm9", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19487 {"arm920", ARM_ARCH_V4T, FPU_ARCH_FPA, "ARM920T"},
19488 {"arm920t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19489 {"arm922t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19490 {"arm940t", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19491 {"arm9tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA, NULL},
19492 /* For V5 or later processors we default to using VFP; but the user
19493 should really set the FPU type explicitly. */
19494 {"arm9e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL},
19495 {"arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19496 {"arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"},
19497 {"arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM926EJ-S"},
19498 {"arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL},
19499 {"arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL},
19500 {"arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM946E-S"},
19501 {"arm946e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19502 {"arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2, NULL},
19503 {"arm966e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM966E-S"},
19504 {"arm966e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19505 {"arm968e-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19506 {"arm10t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL},
19507 {"arm10tdmi", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL},
19508 {"arm10e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19509 {"arm1020", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, "ARM1020E"},
19510 {"arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1, NULL},
19511 {"arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19512 {"arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL},
19513 {"arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM1026EJ-S"},
19514 {"arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL},
19515 {"arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"},
19516 {"arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL},
19517 {"arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2, "ARM1136JF-S"},
19518 {"arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL},
19519 {"mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, NULL},
19520 {"mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, NULL},
19521 {"arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL},
19522 {"arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL},
19523 {"arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL},
19524 {"arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL},
19525 {"cortex-a8", ARM_ARCH_V7A, ARM_FEATURE(0, FPU_VFP_V3
19526 | FPU_NEON_EXT_V1),
19527 NULL},
19528 {"cortex-r4", ARM_ARCH_V7R, FPU_NONE, NULL},
19529 {"cortex-m3", ARM_ARCH_V7M, FPU_NONE, NULL},
19530 /* ??? XSCALE is really an architecture. */
19531 {"xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL},
19532 /* ??? iwmmxt is not a processor. */
19533 {"iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP_V2, NULL},
19534 {"i80200", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL},
19535 /* Maverick */
19536 {"ep9312", ARM_FEATURE(ARM_AEXT_V4T, ARM_CEXT_MAVERICK), FPU_ARCH_MAVERICK, "ARM920T"},
19537 {NULL, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL}
19538 };
19539
19540 struct arm_arch_option_table
19541 {
19542 char *name;
19543 const arm_feature_set value;
19544 const arm_feature_set default_fpu;
19545 };
19546
19547 /* This list should, at a minimum, contain all the architecture names
19548 recognized by GCC. */
19549 static const struct arm_arch_option_table arm_archs[] =
19550 {
19551 {"all", ARM_ANY, FPU_ARCH_FPA},
19552 {"armv1", ARM_ARCH_V1, FPU_ARCH_FPA},
19553 {"armv2", ARM_ARCH_V2, FPU_ARCH_FPA},
19554 {"armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA},
19555 {"armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA},
19556 {"armv3", ARM_ARCH_V3, FPU_ARCH_FPA},
19557 {"armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA},
19558 {"armv4", ARM_ARCH_V4, FPU_ARCH_FPA},
19559 {"armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA},
19560 {"armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA},
19561 {"armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA},
19562 {"armv5", ARM_ARCH_V5, FPU_ARCH_VFP},
19563 {"armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP},
19564 {"armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP},
19565 {"armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP},
19566 {"armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP},
19567 {"armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP},
19568 {"armv6", ARM_ARCH_V6, FPU_ARCH_VFP},
19569 {"armv6j", ARM_ARCH_V6, FPU_ARCH_VFP},
19570 {"armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP},
19571 {"armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP},
19572 {"armv6zk", ARM_ARCH_V6ZK, FPU_ARCH_VFP},
19573 {"armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP},
19574 {"armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP},
19575 {"armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP},
19576 {"armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP},
19577 {"armv7", ARM_ARCH_V7, FPU_ARCH_VFP},
19578 {"armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP},
19579 {"armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP},
19580 {"armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP},
19581 {"xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP},
19582 {"iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP},
19583 {NULL, ARM_ARCH_NONE, ARM_ARCH_NONE}
19584 };
19585
19586 /* ISA extensions in the co-processor space. */
19587 struct arm_option_cpu_value_table
19588 {
19589 char *name;
19590 const arm_feature_set value;
19591 };
19592
19593 static const struct arm_option_cpu_value_table arm_extensions[] =
19594 {
19595 {"maverick", ARM_FEATURE (0, ARM_CEXT_MAVERICK)},
19596 {"xscale", ARM_FEATURE (0, ARM_CEXT_XSCALE)},
19597 {"iwmmxt", ARM_FEATURE (0, ARM_CEXT_IWMMXT)},
19598 {NULL, ARM_ARCH_NONE}
19599 };
19600
19601 /* This list should, at a minimum, contain all the fpu names
19602 recognized by GCC. */
19603 static const struct arm_option_cpu_value_table arm_fpus[] =
19604 {
19605 {"softfpa", FPU_NONE},
19606 {"fpe", FPU_ARCH_FPE},
19607 {"fpe2", FPU_ARCH_FPE},
19608 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
19609 {"fpa", FPU_ARCH_FPA},
19610 {"fpa10", FPU_ARCH_FPA},
19611 {"fpa11", FPU_ARCH_FPA},
19612 {"arm7500fe", FPU_ARCH_FPA},
19613 {"softvfp", FPU_ARCH_VFP},
19614 {"softvfp+vfp", FPU_ARCH_VFP_V2},
19615 {"vfp", FPU_ARCH_VFP_V2},
19616 {"vfp9", FPU_ARCH_VFP_V2},
19617 {"vfp3", FPU_ARCH_VFP_V3},
19618 {"vfp10", FPU_ARCH_VFP_V2},
19619 {"vfp10-r0", FPU_ARCH_VFP_V1},
19620 {"vfpxd", FPU_ARCH_VFP_V1xD},
19621 {"arm1020t", FPU_ARCH_VFP_V1},
19622 {"arm1020e", FPU_ARCH_VFP_V2},
19623 {"arm1136jfs", FPU_ARCH_VFP_V2},
19624 {"arm1136jf-s", FPU_ARCH_VFP_V2},
19625 {"maverick", FPU_ARCH_MAVERICK},
19626 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
19627 {NULL, ARM_ARCH_NONE}
19628 };
19629
19630 struct arm_option_value_table
19631 {
19632 char *name;
19633 long value;
19634 };
19635
19636 static const struct arm_option_value_table arm_float_abis[] =
19637 {
19638 {"hard", ARM_FLOAT_ABI_HARD},
19639 {"softfp", ARM_FLOAT_ABI_SOFTFP},
19640 {"soft", ARM_FLOAT_ABI_SOFT},
19641 {NULL, 0}
19642 };
19643
19644 #ifdef OBJ_ELF
19645 /* We only know how to output GNU and ver 4/5 (AAELF) formats. */
19646 static const struct arm_option_value_table arm_eabis[] =
19647 {
19648 {"gnu", EF_ARM_EABI_UNKNOWN},
19649 {"4", EF_ARM_EABI_VER4},
19650 {"5", EF_ARM_EABI_VER5},
19651 {NULL, 0}
19652 };
19653 #endif
19654
19655 struct arm_long_option_table
19656 {
19657 char * option; /* Substring to match. */
19658 char * help; /* Help information. */
19659 int (* func) (char * subopt); /* Function to decode sub-option. */
19660 char * deprecated; /* If non-null, print this message. */
19661 };
19662
19663 static int
19664 arm_parse_extension (char * str, const arm_feature_set **opt_p)
19665 {
19666 arm_feature_set *ext_set = xmalloc (sizeof (arm_feature_set));
19667
19668 /* Copy the feature set, so that we can modify it. */
19669 *ext_set = **opt_p;
19670 *opt_p = ext_set;
19671
19672 while (str != NULL && *str != 0)
19673 {
19674 const struct arm_option_cpu_value_table * opt;
19675 char * ext;
19676 int optlen;
19677
19678 if (*str != '+')
19679 {
19680 as_bad (_("invalid architectural extension"));
19681 return 0;
19682 }
19683
19684 str++;
19685 ext = strchr (str, '+');
19686
19687 if (ext != NULL)
19688 optlen = ext - str;
19689 else
19690 optlen = strlen (str);
19691
19692 if (optlen == 0)
19693 {
19694 as_bad (_("missing architectural extension"));
19695 return 0;
19696 }
19697
19698 for (opt = arm_extensions; opt->name != NULL; opt++)
19699 if (strncmp (opt->name, str, optlen) == 0)
19700 {
19701 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value);
19702 break;
19703 }
19704
19705 if (opt->name == NULL)
19706 {
19707 as_bad (_("unknown architectural extnsion `%s'"), str);
19708 return 0;
19709 }
19710
19711 str = ext;
19712 };
19713
19714 return 1;
19715 }
19716
19717 static int
19718 arm_parse_cpu (char * str)
19719 {
19720 const struct arm_cpu_option_table * opt;
19721 char * ext = strchr (str, '+');
19722 int optlen;
19723
19724 if (ext != NULL)
19725 optlen = ext - str;
19726 else
19727 optlen = strlen (str);
19728
19729 if (optlen == 0)
19730 {
19731 as_bad (_("missing cpu name `%s'"), str);
19732 return 0;
19733 }
19734
19735 for (opt = arm_cpus; opt->name != NULL; opt++)
19736 if (strncmp (opt->name, str, optlen) == 0)
19737 {
19738 mcpu_cpu_opt = &opt->value;
19739 mcpu_fpu_opt = &opt->default_fpu;
19740 if (opt->canonical_name)
19741 strcpy(selected_cpu_name, opt->canonical_name);
19742 else
19743 {
19744 int i;
19745 for (i = 0; i < optlen; i++)
19746 selected_cpu_name[i] = TOUPPER (opt->name[i]);
19747 selected_cpu_name[i] = 0;
19748 }
19749
19750 if (ext != NULL)
19751 return arm_parse_extension (ext, &mcpu_cpu_opt);
19752
19753 return 1;
19754 }
19755
19756 as_bad (_("unknown cpu `%s'"), str);
19757 return 0;
19758 }
19759
19760 static int
19761 arm_parse_arch (char * str)
19762 {
19763 const struct arm_arch_option_table *opt;
19764 char *ext = strchr (str, '+');
19765 int optlen;
19766
19767 if (ext != NULL)
19768 optlen = ext - str;
19769 else
19770 optlen = strlen (str);
19771
19772 if (optlen == 0)
19773 {
19774 as_bad (_("missing architecture name `%s'"), str);
19775 return 0;
19776 }
19777
19778 for (opt = arm_archs; opt->name != NULL; opt++)
19779 if (streq (opt->name, str))
19780 {
19781 march_cpu_opt = &opt->value;
19782 march_fpu_opt = &opt->default_fpu;
19783 strcpy(selected_cpu_name, opt->name);
19784
19785 if (ext != NULL)
19786 return arm_parse_extension (ext, &march_cpu_opt);
19787
19788 return 1;
19789 }
19790
19791 as_bad (_("unknown architecture `%s'\n"), str);
19792 return 0;
19793 }
19794
19795 static int
19796 arm_parse_fpu (char * str)
19797 {
19798 const struct arm_option_cpu_value_table * opt;
19799
19800 for (opt = arm_fpus; opt->name != NULL; opt++)
19801 if (streq (opt->name, str))
19802 {
19803 mfpu_opt = &opt->value;
19804 return 1;
19805 }
19806
19807 as_bad (_("unknown floating point format `%s'\n"), str);
19808 return 0;
19809 }
19810
19811 static int
19812 arm_parse_float_abi (char * str)
19813 {
19814 const struct arm_option_value_table * opt;
19815
19816 for (opt = arm_float_abis; opt->name != NULL; opt++)
19817 if (streq (opt->name, str))
19818 {
19819 mfloat_abi_opt = opt->value;
19820 return 1;
19821 }
19822
19823 as_bad (_("unknown floating point abi `%s'\n"), str);
19824 return 0;
19825 }
19826
19827 #ifdef OBJ_ELF
19828 static int
19829 arm_parse_eabi (char * str)
19830 {
19831 const struct arm_option_value_table *opt;
19832
19833 for (opt = arm_eabis; opt->name != NULL; opt++)
19834 if (streq (opt->name, str))
19835 {
19836 meabi_flags = opt->value;
19837 return 1;
19838 }
19839 as_bad (_("unknown EABI `%s'\n"), str);
19840 return 0;
19841 }
19842 #endif
19843
19844 struct arm_long_option_table arm_long_opts[] =
19845 {
19846 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
19847 arm_parse_cpu, NULL},
19848 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
19849 arm_parse_arch, NULL},
19850 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
19851 arm_parse_fpu, NULL},
19852 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
19853 arm_parse_float_abi, NULL},
19854 #ifdef OBJ_ELF
19855 {"meabi=", N_("<ver>\t assemble for eabi version <ver>"),
19856 arm_parse_eabi, NULL},
19857 #endif
19858 {NULL, NULL, 0, NULL}
19859 };
19860
19861 int
19862 md_parse_option (int c, char * arg)
19863 {
19864 struct arm_option_table *opt;
19865 const struct arm_legacy_option_table *fopt;
19866 struct arm_long_option_table *lopt;
19867
19868 switch (c)
19869 {
19870 #ifdef OPTION_EB
19871 case OPTION_EB:
19872 target_big_endian = 1;
19873 break;
19874 #endif
19875
19876 #ifdef OPTION_EL
19877 case OPTION_EL:
19878 target_big_endian = 0;
19879 break;
19880 #endif
19881
19882 case 'a':
19883 /* Listing option. Just ignore these, we don't support additional
19884 ones. */
19885 return 0;
19886
19887 default:
19888 for (opt = arm_opts; opt->option != NULL; opt++)
19889 {
19890 if (c == opt->option[0]
19891 && ((arg == NULL && opt->option[1] == 0)
19892 || streq (arg, opt->option + 1)))
19893 {
19894 #if WARN_DEPRECATED
19895 /* If the option is deprecated, tell the user. */
19896 if (opt->deprecated != NULL)
19897 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
19898 arg ? arg : "", _(opt->deprecated));
19899 #endif
19900
19901 if (opt->var != NULL)
19902 *opt->var = opt->value;
19903
19904 return 1;
19905 }
19906 }
19907
19908 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
19909 {
19910 if (c == fopt->option[0]
19911 && ((arg == NULL && fopt->option[1] == 0)
19912 || streq (arg, fopt->option + 1)))
19913 {
19914 #if WARN_DEPRECATED
19915 /* If the option is deprecated, tell the user. */
19916 if (fopt->deprecated != NULL)
19917 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
19918 arg ? arg : "", _(fopt->deprecated));
19919 #endif
19920
19921 if (fopt->var != NULL)
19922 *fopt->var = &fopt->value;
19923
19924 return 1;
19925 }
19926 }
19927
19928 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
19929 {
19930 /* These options are expected to have an argument. */
19931 if (c == lopt->option[0]
19932 && arg != NULL
19933 && strncmp (arg, lopt->option + 1,
19934 strlen (lopt->option + 1)) == 0)
19935 {
19936 #if WARN_DEPRECATED
19937 /* If the option is deprecated, tell the user. */
19938 if (lopt->deprecated != NULL)
19939 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
19940 _(lopt->deprecated));
19941 #endif
19942
19943 /* Call the sup-option parser. */
19944 return lopt->func (arg + strlen (lopt->option) - 1);
19945 }
19946 }
19947
19948 return 0;
19949 }
19950
19951 return 1;
19952 }
19953
19954 void
19955 md_show_usage (FILE * fp)
19956 {
19957 struct arm_option_table *opt;
19958 struct arm_long_option_table *lopt;
19959
19960 fprintf (fp, _(" ARM-specific assembler options:\n"));
19961
19962 for (opt = arm_opts; opt->option != NULL; opt++)
19963 if (opt->help != NULL)
19964 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
19965
19966 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
19967 if (lopt->help != NULL)
19968 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
19969
19970 #ifdef OPTION_EB
19971 fprintf (fp, _("\
19972 -EB assemble code for a big-endian cpu\n"));
19973 #endif
19974
19975 #ifdef OPTION_EL
19976 fprintf (fp, _("\
19977 -EL assemble code for a little-endian cpu\n"));
19978 #endif
19979 }
19980
19981
19982 #ifdef OBJ_ELF
19983 typedef struct
19984 {
19985 int val;
19986 arm_feature_set flags;
19987 } cpu_arch_ver_table;
19988
19989 /* Mapping from CPU features to EABI CPU arch values. Table must be sorted
19990 least features first. */
19991 static const cpu_arch_ver_table cpu_arch_ver[] =
19992 {
19993 {1, ARM_ARCH_V4},
19994 {2, ARM_ARCH_V4T},
19995 {3, ARM_ARCH_V5},
19996 {4, ARM_ARCH_V5TE},
19997 {5, ARM_ARCH_V5TEJ},
19998 {6, ARM_ARCH_V6},
19999 {7, ARM_ARCH_V6Z},
20000 {8, ARM_ARCH_V6K},
20001 {9, ARM_ARCH_V6T2},
20002 {10, ARM_ARCH_V7A},
20003 {10, ARM_ARCH_V7R},
20004 {10, ARM_ARCH_V7M},
20005 {0, ARM_ARCH_NONE}
20006 };
20007
20008 /* Set the public EABI object attributes. */
20009 static void
20010 aeabi_set_public_attributes (void)
20011 {
20012 int arch;
20013 arm_feature_set flags;
20014 arm_feature_set tmp;
20015 const cpu_arch_ver_table *p;
20016
20017 /* Choose the architecture based on the capabilities of the requested cpu
20018 (if any) and/or the instructions actually used. */
20019 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
20020 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
20021 ARM_MERGE_FEATURE_SETS (flags, flags, selected_cpu);
20022
20023 tmp = flags;
20024 arch = 0;
20025 for (p = cpu_arch_ver; p->val; p++)
20026 {
20027 if (ARM_CPU_HAS_FEATURE (tmp, p->flags))
20028 {
20029 arch = p->val;
20030 ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
20031 }
20032 }
20033
20034 /* Tag_CPU_name. */
20035 if (selected_cpu_name[0])
20036 {
20037 char *p;
20038
20039 p = selected_cpu_name;
20040 if (strncmp(p, "armv", 4) == 0)
20041 {
20042 int i;
20043
20044 p += 4;
20045 for (i = 0; p[i]; i++)
20046 p[i] = TOUPPER (p[i]);
20047 }
20048 elf32_arm_add_eabi_attr_string (stdoutput, 5, p);
20049 }
20050 /* Tag_CPU_arch. */
20051 elf32_arm_add_eabi_attr_int (stdoutput, 6, arch);
20052 /* Tag_CPU_arch_profile. */
20053 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
20054 elf32_arm_add_eabi_attr_int (stdoutput, 7, 'A');
20055 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
20056 elf32_arm_add_eabi_attr_int (stdoutput, 7, 'R');
20057 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m))
20058 elf32_arm_add_eabi_attr_int (stdoutput, 7, 'M');
20059 /* Tag_ARM_ISA_use. */
20060 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_full))
20061 elf32_arm_add_eabi_attr_int (stdoutput, 8, 1);
20062 /* Tag_THUMB_ISA_use. */
20063 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_full))
20064 elf32_arm_add_eabi_attr_int (stdoutput, 9,
20065 ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_t2) ? 2 : 1);
20066 /* Tag_VFP_arch. */
20067 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_vfp_ext_v3)
20068 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_vfp_ext_v3))
20069 elf32_arm_add_eabi_attr_int (stdoutput, 10, 3);
20070 else if (ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_vfp_ext_v2)
20071 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_vfp_ext_v2))
20072 elf32_arm_add_eabi_attr_int (stdoutput, 10, 2);
20073 else if (ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_vfp_ext_v1)
20074 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_vfp_ext_v1)
20075 || ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_vfp_ext_v1xd)
20076 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_vfp_ext_v1xd))
20077 elf32_arm_add_eabi_attr_int (stdoutput, 10, 1);
20078 /* Tag_WMMX_arch. */
20079 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_cext_iwmmxt)
20080 || ARM_CPU_HAS_FEATURE (arm_arch_used, arm_cext_iwmmxt))
20081 elf32_arm_add_eabi_attr_int (stdoutput, 11, 1);
20082 /* Tag_NEON_arch. */
20083 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, fpu_neon_ext_v1)
20084 || ARM_CPU_HAS_FEATURE (arm_arch_used, fpu_neon_ext_v1))
20085 elf32_arm_add_eabi_attr_int (stdoutput, 12, 1);
20086 }
20087
20088 /* Add the .ARM.attributes section. */
20089 void
20090 arm_md_end (void)
20091 {
20092 segT s;
20093 char *p;
20094 addressT addr;
20095 offsetT size;
20096
20097 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
20098 return;
20099
20100 aeabi_set_public_attributes ();
20101 size = elf32_arm_eabi_attr_size (stdoutput);
20102 s = subseg_new (".ARM.attributes", 0);
20103 bfd_set_section_flags (stdoutput, s, SEC_READONLY | SEC_DATA);
20104 addr = frag_now_fix ();
20105 p = frag_more (size);
20106 elf32_arm_set_eabi_attr_contents (stdoutput, (bfd_byte *)p, size);
20107 }
20108 #endif /* OBJ_ELF */
20109
20110
20111 /* Parse a .cpu directive. */
20112
20113 static void
20114 s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
20115 {
20116 const struct arm_cpu_option_table *opt;
20117 char *name;
20118 char saved_char;
20119
20120 name = input_line_pointer;
20121 while (*input_line_pointer && !ISSPACE(*input_line_pointer))
20122 input_line_pointer++;
20123 saved_char = *input_line_pointer;
20124 *input_line_pointer = 0;
20125
20126 /* Skip the first "all" entry. */
20127 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
20128 if (streq (opt->name, name))
20129 {
20130 mcpu_cpu_opt = &opt->value;
20131 selected_cpu = opt->value;
20132 if (opt->canonical_name)
20133 strcpy(selected_cpu_name, opt->canonical_name);
20134 else
20135 {
20136 int i;
20137 for (i = 0; opt->name[i]; i++)
20138 selected_cpu_name[i] = TOUPPER (opt->name[i]);
20139 selected_cpu_name[i] = 0;
20140 }
20141 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
20142 *input_line_pointer = saved_char;
20143 demand_empty_rest_of_line ();
20144 return;
20145 }
20146 as_bad (_("unknown cpu `%s'"), name);
20147 *input_line_pointer = saved_char;
20148 ignore_rest_of_line ();
20149 }
20150
20151
20152 /* Parse a .arch directive. */
20153
20154 static void
20155 s_arm_arch (int ignored ATTRIBUTE_UNUSED)
20156 {
20157 const struct arm_arch_option_table *opt;
20158 char saved_char;
20159 char *name;
20160
20161 name = input_line_pointer;
20162 while (*input_line_pointer && !ISSPACE(*input_line_pointer))
20163 input_line_pointer++;
20164 saved_char = *input_line_pointer;
20165 *input_line_pointer = 0;
20166
20167 /* Skip the first "all" entry. */
20168 for (opt = arm_archs + 1; opt->name != NULL; opt++)
20169 if (streq (opt->name, name))
20170 {
20171 mcpu_cpu_opt = &opt->value;
20172 selected_cpu = opt->value;
20173 strcpy(selected_cpu_name, opt->name);
20174 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
20175 *input_line_pointer = saved_char;
20176 demand_empty_rest_of_line ();
20177 return;
20178 }
20179
20180 as_bad (_("unknown architecture `%s'\n"), name);
20181 *input_line_pointer = saved_char;
20182 ignore_rest_of_line ();
20183 }
20184
20185
20186 /* Parse a .fpu directive. */
20187
20188 static void
20189 s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
20190 {
20191 const struct arm_option_cpu_value_table *opt;
20192 char saved_char;
20193 char *name;
20194
20195 name = input_line_pointer;
20196 while (*input_line_pointer && !ISSPACE(*input_line_pointer))
20197 input_line_pointer++;
20198 saved_char = *input_line_pointer;
20199 *input_line_pointer = 0;
20200
20201 for (opt = arm_fpus; opt->name != NULL; opt++)
20202 if (streq (opt->name, name))
20203 {
20204 mfpu_opt = &opt->value;
20205 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
20206 *input_line_pointer = saved_char;
20207 demand_empty_rest_of_line ();
20208 return;
20209 }
20210
20211 as_bad (_("unknown floating point format `%s'\n"), name);
20212 *input_line_pointer = saved_char;
20213 ignore_rest_of_line ();
20214 }
20215
This page took 0.492756 seconds and 5 git commands to generate.