gas/arc: Use BFD_VMA_FMT for printf format specifier
[deliverable/binutils-gdb.git] / gas / config / tc-arc.c
CommitLineData
252b5132 1/* tc-arc.c -- Assembler for the ARC
6f2750fe 2 Copyright (C) 1994-2016 Free Software Foundation, Inc.
886a2506
NC
3
4 Contributor: Claudiu Zissulescu <claziss@synopsys.com>
252b5132
RH
5
6 This file is part of GAS, the GNU Assembler.
7
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
ec2655a6 10 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
11 any later version.
12
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19203624 19 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 02110-1301, USA. */
252b5132 22
252b5132 23#include "as.h"
886a2506 24#include "subsegs.h"
a161fe53 25#include "struc-symbol.h"
886a2506 26#include "dwarf2dbg.h"
726c18e1 27#include "dw2gencfi.h"
3882b010 28#include "safe-ctype.h"
886a2506 29
252b5132
RH
30#include "opcode/arc.h"
31#include "elf/arc.h"
b99747ae 32#include "../opcodes/arc-ext.h"
252b5132 33
886a2506 34/* Defines section. */
0d2bcfaf 35
886a2506
NC
36#define MAX_INSN_FIXUPS 2
37#define MAX_CONSTR_STR 20
4670103e 38#define FRAG_MAX_GROWTH 8
0d2bcfaf 39
886a2506
NC
40#ifdef DEBUG
41# define pr_debug(fmt, args...) fprintf (stderr, fmt, ##args)
42#else
43# define pr_debug(fmt, args...)
44#endif
45
46#define MAJOR_OPCODE(x) (((x) & 0xF8000000) >> 27)
47#define SUB_OPCODE(x) (((x) & 0x003F0000) >> 16)
4670103e 48#define LP_INSN(x) ((MAJOR_OPCODE (x) == 0x4) && \
886a2506
NC
49 (SUB_OPCODE (x) == 0x28))
50
51/* Equal to MAX_PRECISION in atof-ieee.c. */
52#define MAX_LITTLENUMS 6
53
4670103e
CZ
54/* Enum used to enumerate the relaxable ins operands. */
55enum rlx_operand_type
56{
57 EMPTY = 0,
58 REGISTER,
59 REGISTER_S, /* Register for short instruction(s). */
60 REGISTER_NO_GP, /* Is a register but not gp register specifically. */
61 REGISTER_DUP, /* Duplication of previous operand of type register. */
62 IMMEDIATE,
63 BRACKET
64};
65
66enum arc_rlx_types
67{
68 ARC_RLX_NONE = 0,
69 ARC_RLX_BL_S,
70 ARC_RLX_BL,
71 ARC_RLX_B_S,
72 ARC_RLX_B,
73 ARC_RLX_ADD_U3,
74 ARC_RLX_ADD_U6,
75 ARC_RLX_ADD_LIMM,
76 ARC_RLX_LD_U7,
77 ARC_RLX_LD_S9,
78 ARC_RLX_LD_LIMM,
79 ARC_RLX_MOV_U8,
80 ARC_RLX_MOV_S12,
81 ARC_RLX_MOV_LIMM,
82 ARC_RLX_SUB_U3,
83 ARC_RLX_SUB_U6,
84 ARC_RLX_SUB_LIMM,
85 ARC_RLX_MPY_U6,
86 ARC_RLX_MPY_LIMM,
87 ARC_RLX_MOV_RU6,
88 ARC_RLX_MOV_RLIMM,
89 ARC_RLX_ADD_RRU6,
90 ARC_RLX_ADD_RRLIMM,
91};
92
886a2506
NC
93/* Macros section. */
94
95#define regno(x) ((x) & 0x3F)
96#define is_ir_num(x) (((x) & ~0x3F) == 0)
8ddf6b2a
CZ
97#define is_code_density_p(sc) (((sc) == CD1 || (sc) == CD2))
98#define is_spfp_p(op) (((sc) == SPX))
99#define is_dpfp_p(op) (((sc) == DPX))
100#define is_fpuda_p(op) (((sc) == DPA))
886a2506
NC
101#define is_br_jmp_insn_p(op) (((op)->class == BRANCH || (op)->class == JUMP))
102#define is_kernel_insn_p(op) (((op)->class == KERNEL))
0d2bcfaf 103
886a2506
NC
104/* Generic assembler global variables which must be defined by all
105 targets. */
0d2bcfaf 106
886a2506 107/* Characters which always start a comment. */
252b5132
RH
108const char comment_chars[] = "#;";
109
886a2506 110/* Characters which start a comment at the beginning of a line. */
252b5132
RH
111const char line_comment_chars[] = "#";
112
886a2506
NC
113/* Characters which may be used to separate multiple commands on a
114 single line. */
115const char line_separator_chars[] = "`";
252b5132 116
886a2506
NC
117/* Characters which are used to indicate an exponent in a floating
118 point number. */
252b5132
RH
119const char EXP_CHARS[] = "eE";
120
bcee8eb8
AM
121/* Chars that mean this number is a floating point constant
122 As in 0f12.456 or 0d1.2345e12. */
252b5132
RH
123const char FLT_CHARS[] = "rRsSfFdD";
124
125/* Byte order. */
126extern int target_big_endian;
127const char *arc_target_format = DEFAULT_TARGET_FORMAT;
128static int byte_order = DEFAULT_BYTE_ORDER;
129
b99747ae
CZ
130/* Arc extension section. */
131static segT arcext_section;
132
4670103e
CZ
133/* By default relaxation is disabled. */
134static int relaxation_state = 0;
135
886a2506 136extern int arc_get_mach (char *);
0d2bcfaf 137
4670103e 138/* Forward declarations. */
886a2506
NC
139static void arc_lcomm (int);
140static void arc_option (int);
141static void arc_extra_reloc (int);
b99747ae 142static void arc_extinsn (int);
f36e33da 143static void arc_extcorereg (int);
4670103e 144
886a2506 145const pseudo_typeS md_pseudo_table[] =
6f4b1afc
CM
146{
147 /* Make sure that .word is 32 bits. */
148 { "word", cons, 4 },
886a2506 149
6f4b1afc
CM
150 { "align", s_align_bytes, 0 }, /* Defaulting is invalid (0). */
151 { "lcomm", arc_lcomm, 0 },
152 { "lcommon", arc_lcomm, 0 },
153 { "cpu", arc_option, 0 },
252b5132 154
f36e33da
CZ
155 { "extinstruction", arc_extinsn, 0 },
156 { "extcoreregister", arc_extcorereg, EXT_CORE_REGISTER },
157 { "extauxregister", arc_extcorereg, EXT_AUX_REGISTER },
158 { "extcondcode", arc_extcorereg, EXT_COND_CODE },
b99747ae 159
6f4b1afc
CM
160 { "tls_gd_ld", arc_extra_reloc, BFD_RELOC_ARC_TLS_GD_LD },
161 { "tls_gd_call", arc_extra_reloc, BFD_RELOC_ARC_TLS_GD_CALL },
886a2506 162
6f4b1afc
CM
163 { NULL, NULL, 0 }
164};
252b5132 165
252b5132 166const char *md_shortopts = "";
ea1562b3
NC
167
168enum options
6f4b1afc
CM
169{
170 OPTION_EB = OPTION_MD_BASE,
171 OPTION_EL,
172
173 OPTION_ARC600,
174 OPTION_ARC601,
175 OPTION_ARC700,
176 OPTION_ARCEM,
177 OPTION_ARCHS,
178
179 OPTION_MCPU,
180 OPTION_CD,
4670103e 181 OPTION_RELAX,
6f4b1afc
CM
182
183 /* The following options are deprecated and provided here only for
184 compatibility reasons. */
185 OPTION_USER_MODE,
186 OPTION_LD_EXT_MASK,
187 OPTION_SWAP,
188 OPTION_NORM,
189 OPTION_BARREL_SHIFT,
190 OPTION_MIN_MAX,
191 OPTION_NO_MPY,
192 OPTION_EA,
193 OPTION_MUL64,
194 OPTION_SIMD,
195 OPTION_SPFP,
196 OPTION_DPFP,
197 OPTION_XMAC_D16,
198 OPTION_XMAC_24,
199 OPTION_DSP_PACKA,
200 OPTION_CRC,
201 OPTION_DVBF,
202 OPTION_TELEPHONY,
203 OPTION_XYMEMORY,
204 OPTION_LOCK,
205 OPTION_SWAPE,
206 OPTION_RTSC,
207 OPTION_FPUDA
208};
ea1562b3
NC
209
210struct option md_longopts[] =
6f4b1afc
CM
211{
212 { "EB", no_argument, NULL, OPTION_EB },
213 { "EL", no_argument, NULL, OPTION_EL },
214 { "mcpu", required_argument, NULL, OPTION_MCPU },
215 { "mA6", no_argument, NULL, OPTION_ARC600 },
24b368f8
CZ
216 { "mARC600", no_argument, NULL, OPTION_ARC600 },
217 { "mARC601", no_argument, NULL, OPTION_ARC601 },
218 { "mARC700", no_argument, NULL, OPTION_ARC700 },
6f4b1afc
CM
219 { "mA7", no_argument, NULL, OPTION_ARC700 },
220 { "mEM", no_argument, NULL, OPTION_ARCEM },
221 { "mHS", no_argument, NULL, OPTION_ARCHS },
222 { "mcode-density", no_argument, NULL, OPTION_CD },
4670103e 223 { "mrelax", no_argument, NULL, OPTION_RELAX },
6f4b1afc
CM
224
225 /* The following options are deprecated and provided here only for
226 compatibility reasons. */
227 { "mav2em", no_argument, NULL, OPTION_ARCEM },
228 { "mav2hs", no_argument, NULL, OPTION_ARCHS },
229 { "muser-mode-only", no_argument, NULL, OPTION_USER_MODE },
230 { "mld-extension-reg-mask", required_argument, NULL, OPTION_LD_EXT_MASK },
231 { "mswap", no_argument, NULL, OPTION_SWAP },
232 { "mnorm", no_argument, NULL, OPTION_NORM },
233 { "mbarrel-shifter", no_argument, NULL, OPTION_BARREL_SHIFT },
234 { "mbarrel_shifter", no_argument, NULL, OPTION_BARREL_SHIFT },
235 { "mmin-max", no_argument, NULL, OPTION_MIN_MAX },
236 { "mmin_max", no_argument, NULL, OPTION_MIN_MAX },
237 { "mno-mpy", no_argument, NULL, OPTION_NO_MPY },
238 { "mea", no_argument, NULL, OPTION_EA },
239 { "mEA", no_argument, NULL, OPTION_EA },
240 { "mmul64", no_argument, NULL, OPTION_MUL64 },
241 { "msimd", no_argument, NULL, OPTION_SIMD},
242 { "mspfp", no_argument, NULL, OPTION_SPFP},
243 { "mspfp-compact", no_argument, NULL, OPTION_SPFP},
244 { "mspfp_compact", no_argument, NULL, OPTION_SPFP},
245 { "mspfp-fast", no_argument, NULL, OPTION_SPFP},
246 { "mspfp_fast", no_argument, NULL, OPTION_SPFP},
247 { "mdpfp", no_argument, NULL, OPTION_DPFP},
248 { "mdpfp-compact", no_argument, NULL, OPTION_DPFP},
249 { "mdpfp_compact", no_argument, NULL, OPTION_DPFP},
250 { "mdpfp-fast", no_argument, NULL, OPTION_DPFP},
251 { "mdpfp_fast", no_argument, NULL, OPTION_DPFP},
252 { "mmac-d16", no_argument, NULL, OPTION_XMAC_D16},
253 { "mmac_d16", no_argument, NULL, OPTION_XMAC_D16},
254 { "mmac-24", no_argument, NULL, OPTION_XMAC_24},
255 { "mmac_24", no_argument, NULL, OPTION_XMAC_24},
256 { "mdsp-packa", no_argument, NULL, OPTION_DSP_PACKA},
257 { "mdsp_packa", no_argument, NULL, OPTION_DSP_PACKA},
258 { "mcrc", no_argument, NULL, OPTION_CRC},
259 { "mdvbf", no_argument, NULL, OPTION_DVBF},
260 { "mtelephony", no_argument, NULL, OPTION_TELEPHONY},
261 { "mxy", no_argument, NULL, OPTION_XYMEMORY},
262 { "mlock", no_argument, NULL, OPTION_LOCK},
263 { "mswape", no_argument, NULL, OPTION_SWAPE},
264 { "mrtsc", no_argument, NULL, OPTION_RTSC},
265 { "mfpuda", no_argument, NULL, OPTION_FPUDA},
266
267 { NULL, no_argument, NULL, 0 }
268};
252b5132 269
886a2506 270size_t md_longopts_size = sizeof (md_longopts);
0d2bcfaf 271
886a2506 272/* Local data and data types. */
252b5132 273
886a2506
NC
274/* Used since new relocation types are introduced in this
275 file (DUMMY_RELOC_LITUSE_*). */
276typedef int extended_bfd_reloc_code_real_type;
252b5132 277
886a2506 278struct arc_fixup
252b5132 279{
886a2506 280 expressionS exp;
252b5132 281
886a2506 282 extended_bfd_reloc_code_real_type reloc;
252b5132 283
886a2506
NC
284 /* index into arc_operands. */
285 unsigned int opindex;
252b5132 286
886a2506
NC
287 /* PC-relative, used by internals fixups. */
288 unsigned char pcrel;
252b5132 289
886a2506
NC
290 /* TRUE if this fixup is for LIMM operand. */
291 bfd_boolean islong;
292};
252b5132 293
886a2506
NC
294struct arc_insn
295{
296 unsigned int insn;
297 int nfixups;
298 struct arc_fixup fixups[MAX_INSN_FIXUPS];
299 long limm;
300 bfd_boolean short_insn; /* Boolean value: TRUE if current insn is
301 short. */
302 bfd_boolean has_limm; /* Boolean value: TRUE if limm field is
303 valid. */
4670103e
CZ
304 bfd_boolean relax; /* Boolean value: TRUE if needs
305 relaxation. */
886a2506 306};
ea1562b3 307
886a2506
NC
308/* Structure to hold any last two instructions. */
309static struct arc_last_insn
252b5132 310{
886a2506
NC
311 /* Saved instruction opcode. */
312 const struct arc_opcode *opcode;
252b5132 313
886a2506
NC
314 /* Boolean value: TRUE if current insn is short. */
315 bfd_boolean has_limm;
252b5132 316
886a2506
NC
317 /* Boolean value: TRUE if current insn has delay slot. */
318 bfd_boolean has_delay_slot;
319} arc_last_insns[2];
252b5132 320
b99747ae
CZ
321/* Extension instruction suffix classes. */
322typedef struct
323{
324 const char *name;
325 int len;
326 int class;
327} attributes_t;
328
329static const attributes_t suffixclass[] =
330{
331 { "SUFFIX_FLAG", 11, ARC_SUFFIX_FLAG },
332 { "SUFFIX_COND", 11, ARC_SUFFIX_COND },
333 { "SUFFIX_NONE", 11, ARC_SUFFIX_NONE }
334};
335
336/* Extension instruction syntax classes. */
337static const attributes_t syntaxclass[] =
338{
339 { "SYNTAX_3OP", 10, ARC_SYNTAX_3OP },
945e0f82
CZ
340 { "SYNTAX_2OP", 10, ARC_SYNTAX_2OP },
341 { "SYNTAX_1OP", 10, ARC_SYNTAX_1OP },
342 { "SYNTAX_NOP", 10, ARC_SYNTAX_NOP }
b99747ae
CZ
343};
344
345/* Extension instruction syntax classes modifiers. */
346static const attributes_t syntaxclassmod[] =
347{
348 { "OP1_IMM_IMPLIED" , 15, ARC_OP1_IMM_IMPLIED },
349 { "OP1_MUST_BE_IMM" , 15, ARC_OP1_MUST_BE_IMM }
350};
351
f36e33da
CZ
352/* Extension register type. */
353typedef struct
354{
355 char *name;
356 int number;
357 int imode;
358} extRegister_t;
359
360/* A structure to hold the additional conditional codes. */
361static struct
362{
363 struct arc_flag_operand *arc_ext_condcode;
364 int size;
365} ext_condcode = { NULL, 0 };
366
da5be039
AB
367/* Structure to hold an entry in ARC_OPCODE_HASH. */
368struct arc_opcode_hash_entry
369{
370 /* The number of pointers in the OPCODE list. */
371 size_t count;
372
373 /* Points to a list of opcode pointers. */
374 const struct arc_opcode **opcode;
375};
376
1328504b
AB
377/* Structure used for iterating through an arc_opcode_hash_entry. */
378struct arc_opcode_hash_entry_iterator
379{
380 /* Index into the OPCODE element of the arc_opcode_hash_entry. */
381 size_t index;
382
383 /* The specific ARC_OPCODE from the ARC_OPCODES table that was last
384 returned by this iterator. */
385 const struct arc_opcode *opcode;
386};
387
4670103e
CZ
388/* Forward declaration. */
389static void assemble_insn
390 (const struct arc_opcode *, const expressionS *, int,
391 const struct arc_flags *, int, struct arc_insn *);
392
886a2506 393/* The cpu for which we are generating code. */
24740d83
AB
394static unsigned arc_target;
395static const char *arc_target_name;
396static unsigned arc_features;
252b5132 397
886a2506 398/* The default architecture. */
24740d83 399static int arc_mach_type;
252b5132 400
1adc8a9a
CZ
401/* TRUE if the cpu type has been explicitly specified. */
402static bfd_boolean mach_type_specified_p = FALSE;
0d2bcfaf 403
886a2506
NC
404/* The hash table of instruction opcodes. */
405static struct hash_control *arc_opcode_hash;
0d2bcfaf 406
886a2506
NC
407/* The hash table of register symbols. */
408static struct hash_control *arc_reg_hash;
252b5132 409
f36e33da
CZ
410/* The hash table of aux register symbols. */
411static struct hash_control *arc_aux_hash;
412
886a2506
NC
413/* A table of CPU names and opcode sets. */
414static const struct cpu_type
415{
416 const char *name;
417 unsigned flags;
418 int mach;
419 unsigned eflags;
420 unsigned features;
252b5132 421}
886a2506 422 cpu_types[] =
252b5132 423{
886a2506
NC
424 { "arc600", ARC_OPCODE_ARC600, bfd_mach_arc_arc600,
425 E_ARC_MACH_ARC600, 0x00},
426 { "arc700", ARC_OPCODE_ARC700, bfd_mach_arc_arc700,
427 E_ARC_MACH_ARC700, 0x00},
8699fc3e
AB
428 { "nps400", ARC_OPCODE_ARC700 | ARC_OPCODE_NPS400, bfd_mach_arc_nps400,
429 E_ARC_MACH_NPS400, 0x00},
886a2506 430 { "arcem", ARC_OPCODE_ARCv2EM, bfd_mach_arc_arcv2,
7e458899 431 EF_ARC_CPU_ARCV2EM, ARC_CD},
886a2506
NC
432 { "archs", ARC_OPCODE_ARCv2HS, bfd_mach_arc_arcv2,
433 EF_ARC_CPU_ARCV2HS, ARC_CD},
886a2506
NC
434 { 0, 0, 0, 0, 0 }
435};
252b5132 436
886a2506
NC
437/* Used by the arc_reloc_op table. Order is important. */
438#define O_gotoff O_md1 /* @gotoff relocation. */
439#define O_gotpc O_md2 /* @gotpc relocation. */
440#define O_plt O_md3 /* @plt relocation. */
441#define O_sda O_md4 /* @sda relocation. */
442#define O_pcl O_md5 /* @pcl relocation. */
443#define O_tlsgd O_md6 /* @tlsgd relocation. */
444#define O_tlsie O_md7 /* @tlsie relocation. */
445#define O_tpoff9 O_md8 /* @tpoff9 relocation. */
446#define O_tpoff O_md9 /* @tpoff relocation. */
447#define O_dtpoff9 O_md10 /* @dtpoff9 relocation. */
448#define O_dtpoff O_md11 /* @dtpoff relocation. */
449#define O_last O_dtpoff
450
451/* Used to define a bracket as operand in tokens. */
452#define O_bracket O_md32
453
454/* Dummy relocation, to be sorted out. */
455#define DUMMY_RELOC_ARC_ENTRY (BFD_RELOC_UNUSED + 1)
456
457#define USER_RELOC_P(R) ((R) >= O_gotoff && (R) <= O_last)
458
459/* A table to map the spelling of a relocation operand into an appropriate
460 bfd_reloc_code_real_type type. The table is assumed to be ordered such
461 that op-O_literal indexes into it. */
462#define ARC_RELOC_TABLE(op) \
463 (&arc_reloc_op[ ((!USER_RELOC_P (op)) \
464 ? (abort (), 0) \
465 : (int) (op) - (int) O_gotoff) ])
466
467#define DEF(NAME, RELOC, REQ) \
468 { #NAME, sizeof (#NAME)-1, O_##NAME, RELOC, REQ}
469
470static const struct arc_reloc_op_tag
471{
472 /* String to lookup. */
473 const char *name;
474 /* Size of the string. */
475 size_t length;
476 /* Which operator to use. */
477 operatorT op;
478 extended_bfd_reloc_code_real_type reloc;
479 /* Allows complex relocation expression like identifier@reloc +
480 const. */
481 unsigned int complex_expr : 1;
482}
483 arc_reloc_op[] =
6f4b1afc
CM
484{
485 DEF (gotoff, BFD_RELOC_ARC_GOTOFF, 1),
486 DEF (gotpc, BFD_RELOC_ARC_GOTPC32, 0),
487 DEF (plt, BFD_RELOC_ARC_PLT32, 0),
488 DEF (sda, DUMMY_RELOC_ARC_ENTRY, 1),
489 DEF (pcl, BFD_RELOC_ARC_PC32, 1),
490 DEF (tlsgd, BFD_RELOC_ARC_TLS_GD_GOT, 0),
491 DEF (tlsie, BFD_RELOC_ARC_TLS_IE_GOT, 0),
492 DEF (tpoff9, BFD_RELOC_ARC_TLS_LE_S9, 0),
b125bd17 493 DEF (tpoff, BFD_RELOC_ARC_TLS_LE_32, 1),
6f4b1afc
CM
494 DEF (dtpoff9, BFD_RELOC_ARC_TLS_DTPOFF_S9, 0),
495 DEF (dtpoff, BFD_RELOC_ARC_TLS_DTPOFF, 0),
496};
252b5132 497
886a2506
NC
498static const int arc_num_reloc_op
499= sizeof (arc_reloc_op) / sizeof (*arc_reloc_op);
500
4670103e
CZ
501/* Structure for relaxable instruction that have to be swapped with a
502 smaller alternative instruction. */
503struct arc_relaxable_ins
504{
505 /* Mnemonic that should be checked. */
506 const char *mnemonic_r;
507
508 /* Operands that should be checked.
509 Indexes of operands from operand array. */
510 enum rlx_operand_type operands[6];
511
512 /* Flags that should be checked. */
513 unsigned flag_classes[5];
514
515 /* Mnemonic (smaller) alternative to be used later for relaxation. */
516 const char *mnemonic_alt;
517
518 /* Index of operand that generic relaxation has to check. */
519 unsigned opcheckidx;
520
521 /* Base subtype index used. */
522 enum arc_rlx_types subtype;
523};
524
525#define RELAX_TABLE_ENTRY(BITS, ISSIGNED, SIZE, NEXT) \
526 { (ISSIGNED) ? ((1 << ((BITS) - 1)) - 1) : ((1 << (BITS)) - 1), \
527 (ISSIGNED) ? -(1 << ((BITS) - 1)) : 0, \
528 (SIZE), \
529 (NEXT) } \
530
531#define RELAX_TABLE_ENTRY_MAX(ISSIGNED, SIZE, NEXT) \
532 { (ISSIGNED) ? 0x7FFFFFFF : 0xFFFFFFFF, \
533 (ISSIGNED) ? -(0x7FFFFFFF) : 0, \
534 (SIZE), \
535 (NEXT) } \
536
537
538/* ARC relaxation table. */
539const relax_typeS md_relax_table[] =
540{
541 /* Fake entry. */
542 {0, 0, 0, 0},
543
544 /* BL_S s13 ->
545 BL s25. */
546 RELAX_TABLE_ENTRY(13, 1, 2, ARC_RLX_BL),
547 RELAX_TABLE_ENTRY(25, 1, 4, ARC_RLX_NONE),
548
549 /* B_S s10 ->
550 B s25. */
551 RELAX_TABLE_ENTRY(10, 1, 2, ARC_RLX_B),
552 RELAX_TABLE_ENTRY(25, 1, 4, ARC_RLX_NONE),
553
554 /* ADD_S c,b, u3 ->
555 ADD<.f> a,b,u6 ->
556 ADD<.f> a,b,limm. */
557 RELAX_TABLE_ENTRY(3, 0, 2, ARC_RLX_ADD_U6),
558 RELAX_TABLE_ENTRY(6, 0, 4, ARC_RLX_ADD_LIMM),
559 RELAX_TABLE_ENTRY_MAX(0, 8, ARC_RLX_NONE),
560
561 /* LD_S a, [b, u7] ->
562 LD<zz><.x><.aa><.di> a, [b, s9] ->
563 LD<zz><.x><.aa><.di> a, [b, limm] */
564 RELAX_TABLE_ENTRY(7, 0, 2, ARC_RLX_LD_S9),
565 RELAX_TABLE_ENTRY(9, 1, 4, ARC_RLX_LD_LIMM),
566 RELAX_TABLE_ENTRY_MAX(1, 8, ARC_RLX_NONE),
567
568 /* MOV_S b, u8 ->
569 MOV<.f> b, s12 ->
570 MOV<.f> b, limm. */
571 RELAX_TABLE_ENTRY(8, 0, 2, ARC_RLX_MOV_S12),
572 RELAX_TABLE_ENTRY(8, 0, 4, ARC_RLX_MOV_LIMM),
573 RELAX_TABLE_ENTRY_MAX(0, 8, ARC_RLX_NONE),
574
575 /* SUB_S c, b, u3 ->
576 SUB<.f> a, b, u6 ->
577 SUB<.f> a, b, limm. */
578 RELAX_TABLE_ENTRY(3, 0, 2, ARC_RLX_SUB_U6),
579 RELAX_TABLE_ENTRY(6, 0, 4, ARC_RLX_SUB_LIMM),
580 RELAX_TABLE_ENTRY_MAX(0, 8, ARC_RLX_NONE),
581
582 /* MPY<.f> a, b, u6 ->
583 MPY<.f> a, b, limm. */
584 RELAX_TABLE_ENTRY(6, 0, 4, ARC_RLX_MPY_LIMM),
585 RELAX_TABLE_ENTRY_MAX(0, 8, ARC_RLX_NONE),
586
587 /* MOV<.f><.cc> b, u6 ->
588 MOV<.f><.cc> b, limm. */
589 RELAX_TABLE_ENTRY(6, 0, 4, ARC_RLX_MOV_RLIMM),
590 RELAX_TABLE_ENTRY_MAX(0, 8, ARC_RLX_NONE),
591
592 /* ADD<.f><.cc> b, b, u6 ->
593 ADD<.f><.cc> b, b, limm. */
594 RELAX_TABLE_ENTRY(6, 0, 4, ARC_RLX_ADD_RRLIMM),
595 RELAX_TABLE_ENTRY_MAX(0, 8, ARC_RLX_NONE),
596};
597
598/* Order of this table's entries matters! */
599const struct arc_relaxable_ins arc_relaxable_insns[] =
600{
601 { "bl", { IMMEDIATE }, { 0 }, "bl_s", 0, ARC_RLX_BL_S },
602 { "b", { IMMEDIATE }, { 0 }, "b_s", 0, ARC_RLX_B_S },
603 { "add", { REGISTER, REGISTER_DUP, IMMEDIATE }, { 5, 1, 0 }, "add",
604 2, ARC_RLX_ADD_RRU6},
605 { "add", { REGISTER_S, REGISTER_S, IMMEDIATE }, { 0 }, "add_s", 2,
606 ARC_RLX_ADD_U3 },
607 { "add", { REGISTER, REGISTER, IMMEDIATE }, { 5, 0 }, "add", 2,
608 ARC_RLX_ADD_U6 },
609 { "ld", { REGISTER_S, BRACKET, REGISTER_S, IMMEDIATE, BRACKET },
610 { 0 }, "ld_s", 3, ARC_RLX_LD_U7 },
611 { "ld", { REGISTER, BRACKET, REGISTER_NO_GP, IMMEDIATE, BRACKET },
612 { 11, 4, 14, 17, 0 }, "ld", 3, ARC_RLX_LD_S9 },
613 { "mov", { REGISTER_S, IMMEDIATE }, { 0 }, "mov_s", 1, ARC_RLX_MOV_U8 },
614 { "mov", { REGISTER, IMMEDIATE }, { 5, 0 }, "mov", 1, ARC_RLX_MOV_S12 },
615 { "mov", { REGISTER, IMMEDIATE }, { 5, 1, 0 },"mov", 1, ARC_RLX_MOV_RU6 },
616 { "sub", { REGISTER_S, REGISTER_S, IMMEDIATE }, { 0 }, "sub_s", 2,
617 ARC_RLX_SUB_U3 },
618 { "sub", { REGISTER, REGISTER, IMMEDIATE }, { 5, 0 }, "sub", 2,
619 ARC_RLX_SUB_U6 },
620 { "mpy", { REGISTER, REGISTER, IMMEDIATE }, { 5, 0 }, "mpy", 2,
621 ARC_RLX_MPY_U6 },
622};
623
624const unsigned arc_num_relaxable_ins = ARRAY_SIZE (arc_relaxable_insns);
625
886a2506
NC
626/* Flags to set in the elf header. */
627static flagword arc_eflag = 0x00;
628
629/* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
630symbolS * GOT_symbol = 0;
631
632/* Set to TRUE when we assemble instructions. */
633static bfd_boolean assembling_insn = FALSE;
634
886a2506
NC
635/* Functions implementation. */
636
b9b47ab7
AB
637/* Return a pointer to ARC_OPCODE_HASH_ENTRY that identifies all
638 ARC_OPCODE entries in ARC_OPCODE_HASH that match NAME, or NULL if there
639 are no matching entries in ARC_OPCODE_HASH. */
da5be039 640
b9b47ab7 641static const struct arc_opcode_hash_entry *
da5be039
AB
642arc_find_opcode (const char *name)
643{
644 const struct arc_opcode_hash_entry *entry;
da5be039
AB
645
646 entry = hash_find (arc_opcode_hash, name);
b9b47ab7 647 return entry;
da5be039
AB
648}
649
1328504b
AB
650/* Initialise the iterator ITER. */
651
652static void
653arc_opcode_hash_entry_iterator_init (struct arc_opcode_hash_entry_iterator *iter)
654{
655 iter->index = 0;
656 iter->opcode = NULL;
657}
658
659/* Return the next ARC_OPCODE from ENTRY, using ITER to hold state between
660 calls to this function. Return NULL when all ARC_OPCODE entries have
661 been returned. */
662
663static const struct arc_opcode *
664arc_opcode_hash_entry_iterator_next (const struct arc_opcode_hash_entry *entry,
665 struct arc_opcode_hash_entry_iterator *iter)
666{
667 if (iter->opcode == NULL && iter->index == 0)
668 {
669 gas_assert (entry->count > 0);
670 iter->opcode = entry->opcode[iter->index];
671 }
672 else if (iter->opcode != NULL)
673 {
674 const char *old_name = iter->opcode->name;
675
676 iter->opcode++;
fe779266
AB
677 if (iter->opcode->name == NULL
678 || strcmp (old_name, iter->opcode->name) != 0)
1328504b
AB
679 {
680 iter->index++;
681 if (iter->index == entry->count)
682 iter->opcode = NULL;
683 else
684 iter->opcode = entry->opcode[iter->index];
685 }
686 }
687
688 return iter->opcode;
689}
690
b99747ae
CZ
691/* Insert an opcode into opcode hash structure. */
692
693static void
694arc_insert_opcode (const struct arc_opcode *opcode)
695{
696 const char *name, *retval;
697 struct arc_opcode_hash_entry *entry;
698 name = opcode->name;
699
700 entry = hash_find (arc_opcode_hash, name);
701 if (entry == NULL)
702 {
add39d23 703 entry = XNEW (struct arc_opcode_hash_entry);
b99747ae
CZ
704 entry->count = 0;
705 entry->opcode = NULL;
706
707 retval = hash_insert (arc_opcode_hash, name, (void *) entry);
708 if (retval)
709 as_fatal (_("internal error: can't hash opcode '%s': %s"),
710 name, retval);
711 }
712
add39d23
TS
713 entry->opcode = XRESIZEVEC (const struct arc_opcode *, entry->opcode,
714 entry->count + 1);
b99747ae
CZ
715
716 if (entry->opcode == NULL)
717 as_fatal (_("Virtual memory exhausted"));
718
719 entry->opcode[entry->count] = opcode;
720 entry->count++;
721}
722
723
886a2506
NC
724/* Like md_number_to_chars but used for limms. The 4-byte limm value,
725 is encoded as 'middle-endian' for a little-endian target. FIXME!
726 this function is used for regular 4 byte instructions as well. */
727
728static void
6f4b1afc 729md_number_to_chars_midend (char *buf, valueT val, int n)
886a2506
NC
730{
731 if (n == 4)
732 {
733 md_number_to_chars (buf, (val & 0xffff0000) >> 16, 2);
734 md_number_to_chars (buf + 2, (val & 0xffff), 2);
252b5132
RH
735 }
736 else
886a2506
NC
737 {
738 md_number_to_chars (buf, val, n);
739 }
252b5132
RH
740}
741
24740d83
AB
742/* Select an appropriate entry from CPU_TYPES based on ARG and initialise
743 the relevant static global variables. */
744
745static void
746arc_select_cpu (const char *arg)
747{
a9522a21 748 int cpu_flags = 0;
24740d83
AB
749 int i;
750
751 for (i = 0; cpu_types[i].name; ++i)
752 {
753 if (!strcasecmp (cpu_types[i].name, arg))
754 {
755 arc_target = cpu_types[i].flags;
756 arc_target_name = cpu_types[i].name;
757 arc_features = cpu_types[i].features;
758 arc_mach_type = cpu_types[i].mach;
759 cpu_flags = cpu_types[i].eflags;
760 break;
761 }
762 }
763
764 if (!cpu_types[i].name)
765 as_fatal (_("unknown architecture: %s\n"), arg);
a9522a21
AB
766 gas_assert (cpu_flags != 0);
767 arc_eflag = (arc_eflag & ~EF_ARC_MACH_MSK) | cpu_flags;
24740d83
AB
768}
769
886a2506
NC
770/* Here ends all the ARCompact extension instruction assembling
771 stuff. */
252b5132 772
886a2506
NC
773static void
774arc_extra_reloc (int r_type)
ea1562b3 775{
886a2506
NC
776 char *sym_name, c;
777 symbolS *sym, *lab = NULL;
778
779 if (*input_line_pointer == '@')
780 input_line_pointer++;
781 c = get_symbol_name (&sym_name);
782 sym = symbol_find_or_make (sym_name);
783 restore_line_pointer (c);
784 if (c == ',' && r_type == BFD_RELOC_ARC_TLS_GD_LD)
785 {
786 ++input_line_pointer;
787 char *lab_name;
788 c = get_symbol_name (&lab_name);
789 lab = symbol_find_or_make (lab_name);
790 restore_line_pointer (c);
791 }
841fdfcd
CZ
792
793 /* These relocations exist as a mechanism for the compiler to tell the
794 linker how to patch the code if the tls model is optimised. However,
795 the relocation itself does not require any space within the assembler
796 fragment, and so we pass a size of 0.
797
798 The lines that generate these relocations look like this:
799
800 .tls_gd_ld @.tdata`bl __tls_get_addr@plt
801
802 The '.tls_gd_ld @.tdata' is processed first and generates the
803 additional relocation, while the 'bl __tls_get_addr@plt' is processed
804 second and generates the additional branch.
805
806 It is possible that the additional relocation generated by the
807 '.tls_gd_ld @.tdata' will be attached at the very end of one fragment,
808 while the 'bl __tls_get_addr@plt' will be generated as the first thing
809 in the next fragment. This will be fine; both relocations will still
810 appear to be at the same address in the generated object file.
811 However, this only works as the additional relocation is generated
812 with size of 0 bytes. */
886a2506
NC
813 fixS *fixP
814 = fix_new (frag_now, /* Which frag? */
815 frag_now_fix (), /* Where in that frag? */
841fdfcd 816 0, /* size: 1, 2, or 4 usually. */
886a2506
NC
817 sym, /* X_add_symbol. */
818 0, /* X_add_number. */
819 FALSE, /* TRUE if PC-relative relocation. */
820 r_type /* Relocation type. */);
821 fixP->fx_subsy = lab;
822}
252b5132 823
886a2506
NC
824static symbolS *
825arc_lcomm_internal (int ignore ATTRIBUTE_UNUSED,
826 symbolS *symbolP, addressT size)
827{
828 addressT align = 0;
829 SKIP_WHITESPACE ();
252b5132 830
886a2506
NC
831 if (*input_line_pointer == ',')
832 {
833 align = parse_align (1);
252b5132 834
886a2506
NC
835 if (align == (addressT) -1)
836 return NULL;
837 }
838 else
839 {
840 if (size >= 8)
841 align = 3;
842 else if (size >= 4)
843 align = 2;
844 else if (size >= 2)
845 align = 1;
846 else
847 align = 0;
848 }
252b5132 849
886a2506
NC
850 bss_alloc (symbolP, size, align);
851 S_CLEAR_EXTERNAL (symbolP);
ea1562b3 852
886a2506
NC
853 return symbolP;
854}
ea1562b3 855
886a2506
NC
856static void
857arc_lcomm (int ignore)
858{
859 symbolS *symbolP = s_comm_internal (ignore, arc_lcomm_internal);
ea1562b3 860
886a2506
NC
861 if (symbolP)
862 symbol_get_bfdsym (symbolP)->flags |= BSF_OBJECT;
863}
ea1562b3 864
886a2506 865/* Select the cpu we're assembling for. */
ea1562b3 866
886a2506
NC
867static void
868arc_option (int ignore ATTRIBUTE_UNUSED)
252b5132 869{
886a2506
NC
870 int mach = -1;
871 char c;
872 char *cpu;
252b5132 873
886a2506
NC
874 c = get_symbol_name (&cpu);
875 mach = arc_get_mach (cpu);
252b5132 876
886a2506
NC
877 if (mach == -1)
878 goto bad_cpu;
879
880 if (!mach_type_specified_p)
ea1562b3 881 {
644aca26
AB
882 if ((!strcmp ("ARC600", cpu))
883 || (!strcmp ("ARC601", cpu))
884 || (!strcmp ("A6", cpu)))
24b368f8
CZ
885 {
886 md_parse_option (OPTION_MCPU, "arc600");
887 }
644aca26
AB
888 else if ((!strcmp ("ARC700", cpu))
889 || (!strcmp ("A7", cpu)))
24b368f8
CZ
890 {
891 md_parse_option (OPTION_MCPU, "arc700");
892 }
644aca26 893 else if (!strcmp ("EM", cpu))
24b368f8
CZ
894 {
895 md_parse_option (OPTION_MCPU, "arcem");
896 }
644aca26 897 else if (!strcmp ("HS", cpu))
24b368f8
CZ
898 {
899 md_parse_option (OPTION_MCPU, "archs");
900 }
644aca26 901 else if (!strcmp ("NPS400", cpu))
5e001f26
AB
902 {
903 md_parse_option (OPTION_MCPU, "nps400");
904 }
24b368f8 905 else
e6ba1cba 906 as_fatal (_("could not find the architecture"));
24b368f8 907
886a2506 908 if (!bfd_set_arch_mach (stdoutput, bfd_arch_arc, mach))
e6ba1cba 909 as_fatal (_("could not set architecture and machine"));
1adc8a9a
CZ
910
911 /* Set elf header flags. */
912 bfd_set_private_flags (stdoutput, arc_eflag);
ea1562b3
NC
913 }
914 else
886a2506 915 if (arc_mach_type != mach)
e6ba1cba 916 as_warn (_("Command-line value overrides \".cpu\" directive"));
886a2506 917
24b368f8 918 restore_line_pointer (c);
886a2506 919 demand_empty_rest_of_line ();
886a2506
NC
920 return;
921
922 bad_cpu:
24b368f8 923 restore_line_pointer (c);
e6ba1cba 924 as_bad (_("invalid identifier for \".cpu\""));
886a2506 925 ignore_rest_of_line ();
ea1562b3 926}
252b5132 927
886a2506
NC
928/* Smartly print an expression. */
929
ea1562b3 930static void
886a2506 931debug_exp (expressionS *t)
ea1562b3 932{
886a2506
NC
933 const char *name ATTRIBUTE_UNUSED;
934 const char *namemd ATTRIBUTE_UNUSED;
252b5132 935
886a2506 936 pr_debug ("debug_exp: ");
252b5132 937
886a2506 938 switch (t->X_op)
252b5132 939 {
886a2506
NC
940 default: name = "unknown"; break;
941 case O_illegal: name = "O_illegal"; break;
942 case O_absent: name = "O_absent"; break;
943 case O_constant: name = "O_constant"; break;
944 case O_symbol: name = "O_symbol"; break;
945 case O_symbol_rva: name = "O_symbol_rva"; break;
946 case O_register: name = "O_register"; break;
947 case O_big: name = "O_big"; break;
948 case O_uminus: name = "O_uminus"; break;
949 case O_bit_not: name = "O_bit_not"; break;
950 case O_logical_not: name = "O_logical_not"; break;
951 case O_multiply: name = "O_multiply"; break;
952 case O_divide: name = "O_divide"; break;
953 case O_modulus: name = "O_modulus"; break;
954 case O_left_shift: name = "O_left_shift"; break;
955 case O_right_shift: name = "O_right_shift"; break;
956 case O_bit_inclusive_or: name = "O_bit_inclusive_or"; break;
957 case O_bit_or_not: name = "O_bit_or_not"; break;
958 case O_bit_exclusive_or: name = "O_bit_exclusive_or"; break;
959 case O_bit_and: name = "O_bit_and"; break;
960 case O_add: name = "O_add"; break;
961 case O_subtract: name = "O_subtract"; break;
962 case O_eq: name = "O_eq"; break;
963 case O_ne: name = "O_ne"; break;
964 case O_lt: name = "O_lt"; break;
965 case O_le: name = "O_le"; break;
966 case O_ge: name = "O_ge"; break;
967 case O_gt: name = "O_gt"; break;
968 case O_logical_and: name = "O_logical_and"; break;
969 case O_logical_or: name = "O_logical_or"; break;
970 case O_index: name = "O_index"; break;
971 case O_bracket: name = "O_bracket"; break;
ea1562b3 972 }
252b5132 973
886a2506 974 switch (t->X_md)
ea1562b3 975 {
886a2506
NC
976 default: namemd = "unknown"; break;
977 case O_gotoff: namemd = "O_gotoff"; break;
978 case O_gotpc: namemd = "O_gotpc"; break;
979 case O_plt: namemd = "O_plt"; break;
980 case O_sda: namemd = "O_sda"; break;
981 case O_pcl: namemd = "O_pcl"; break;
982 case O_tlsgd: namemd = "O_tlsgd"; break;
983 case O_tlsie: namemd = "O_tlsie"; break;
984 case O_tpoff9: namemd = "O_tpoff9"; break;
985 case O_tpoff: namemd = "O_tpoff"; break;
986 case O_dtpoff9: namemd = "O_dtpoff9"; break;
987 case O_dtpoff: namemd = "O_dtpoff"; break;
ea1562b3 988 }
252b5132 989
886a2506
NC
990 pr_debug ("%s (%s, %s, %d, %s)", name,
991 (t->X_add_symbol) ? S_GET_NAME (t->X_add_symbol) : "--",
992 (t->X_op_symbol) ? S_GET_NAME (t->X_op_symbol) : "--",
993 (int) t->X_add_number,
994 (t->X_md) ? namemd : "--");
995 pr_debug ("\n");
996 fflush (stderr);
997}
252b5132 998
886a2506
NC
999/* Parse the arguments to an opcode. */
1000
1001static int
1002tokenize_arguments (char *str,
1003 expressionS *tok,
1004 int ntok)
1005{
1006 char *old_input_line_pointer;
1007 bfd_boolean saw_comma = FALSE;
1008 bfd_boolean saw_arg = FALSE;
1009 int brk_lvl = 0;
1010 int num_args = 0;
886a2506
NC
1011 int i;
1012 size_t len;
1013 const struct arc_reloc_op_tag *r;
1014 expressionS tmpE;
6f4b1afc 1015 char *reloc_name, c;
886a2506
NC
1016
1017 memset (tok, 0, sizeof (*tok) * ntok);
1018
1019 /* Save and restore input_line_pointer around this function. */
1020 old_input_line_pointer = input_line_pointer;
1021 input_line_pointer = str;
ea1562b3 1022
886a2506 1023 while (*input_line_pointer)
ea1562b3
NC
1024 {
1025 SKIP_WHITESPACE ();
886a2506 1026 switch (*input_line_pointer)
252b5132 1027 {
886a2506
NC
1028 case '\0':
1029 goto fini;
1030
1031 case ',':
1032 input_line_pointer++;
1033 if (saw_comma || !saw_arg)
1034 goto err;
1035 saw_comma = TRUE;
1036 break;
252b5132 1037
886a2506
NC
1038 case '}':
1039 case ']':
1040 ++input_line_pointer;
1041 --brk_lvl;
3b889a78 1042 if (!saw_arg || num_args == ntok)
886a2506
NC
1043 goto err;
1044 tok->X_op = O_bracket;
1045 ++tok;
1046 ++num_args;
1047 break;
ea1562b3 1048
886a2506
NC
1049 case '{':
1050 case '[':
1051 input_line_pointer++;
3b889a78 1052 if (brk_lvl || num_args == ntok)
886a2506
NC
1053 goto err;
1054 ++brk_lvl;
1055 tok->X_op = O_bracket;
1056 ++tok;
1057 ++num_args;
1058 break;
1059
1060 case '@':
1061 /* We have labels, function names and relocations, all
1062 starting with @ symbol. Sort them out. */
3b889a78 1063 if ((saw_arg && !saw_comma) || num_args == ntok)
886a2506
NC
1064 goto err;
1065
1066 /* Parse @label. */
1067 tok->X_op = O_symbol;
1068 tok->X_md = O_absent;
1069 expression (tok);
1070 if (*input_line_pointer != '@')
1071 goto normalsymbol; /* This is not a relocation. */
1072
6f4b1afc
CM
1073 relocationsym:
1074
886a2506
NC
1075 /* A relocation opernad has the following form
1076 @identifier@relocation_type. The identifier is already
1077 in tok! */
1078 if (tok->X_op != O_symbol)
ea1562b3 1079 {
886a2506
NC
1080 as_bad (_("No valid label relocation operand"));
1081 goto err;
252b5132 1082 }
886a2506
NC
1083
1084 /* Parse @relocation_type. */
6f4b1afc
CM
1085 input_line_pointer++;
1086 c = get_symbol_name (&reloc_name);
1087 len = input_line_pointer - reloc_name;
1088 if (len == 0)
252b5132 1089 {
886a2506
NC
1090 as_bad (_("No relocation operand"));
1091 goto err;
252b5132 1092 }
252b5132 1093
886a2506
NC
1094 /* Go through known relocation and try to find a match. */
1095 r = &arc_reloc_op[0];
1096 for (i = arc_num_reloc_op - 1; i >= 0; i--, r++)
6f4b1afc
CM
1097 if (len == r->length
1098 && memcmp (reloc_name, r->name, len) == 0)
886a2506 1099 break;
886a2506 1100 if (i < 0)
252b5132 1101 {
6f4b1afc 1102 as_bad (_("Unknown relocation operand: @%s"), reloc_name);
886a2506
NC
1103 goto err;
1104 }
1105
6f4b1afc
CM
1106 *input_line_pointer = c;
1107 SKIP_WHITESPACE_AFTER_NAME ();
886a2506
NC
1108 /* Extra check for TLS: base. */
1109 if (*input_line_pointer == '@')
1110 {
1111 symbolS *base;
1112 if (tok->X_op_symbol != NULL
1113 || tok->X_op != O_symbol)
252b5132 1114 {
6f4b1afc
CM
1115 as_bad (_("Unable to parse TLS base: %s"),
1116 input_line_pointer);
886a2506 1117 goto err;
252b5132 1118 }
886a2506
NC
1119 input_line_pointer++;
1120 char *sym_name;
6f4b1afc 1121 c = get_symbol_name (&sym_name);
886a2506
NC
1122 base = symbol_find_or_make (sym_name);
1123 tok->X_op = O_subtract;
1124 tok->X_op_symbol = base;
1125 restore_line_pointer (c);
6f4b1afc
CM
1126 tmpE.X_add_number = 0;
1127 }
1128 else if ((*input_line_pointer != '+')
1129 && (*input_line_pointer != '-'))
1130 {
1131 tmpE.X_add_number = 0;
ea1562b3 1132 }
6f4b1afc
CM
1133 else
1134 {
1135 /* Parse the constant of a complex relocation expression
1136 like @identifier@reloc +/- const. */
1137 if (! r->complex_expr)
1138 {
1139 as_bad (_("@%s is not a complex relocation."), r->name);
1140 goto err;
1141 }
1142 expression (&tmpE);
1143 if (tmpE.X_op != O_constant)
1144 {
1145 as_bad (_("Bad expression: @%s + %s."),
1146 r->name, input_line_pointer);
1147 goto err;
1148 }
1149 }
1150
1151 tok->X_md = r->op;
1152 tok->X_add_number = tmpE.X_add_number;
1e07b820 1153
886a2506 1154 debug_exp (tok);
ea1562b3 1155
886a2506
NC
1156 saw_comma = FALSE;
1157 saw_arg = TRUE;
1158 tok++;
1159 num_args++;
1160 break;
252b5132 1161
886a2506
NC
1162 case '%':
1163 /* Can be a register. */
1164 ++input_line_pointer;
1165 /* Fall through. */
1166 default:
252b5132 1167
3b889a78 1168 if ((saw_arg && !saw_comma) || num_args == ntok)
886a2506 1169 goto err;
252b5132 1170
886a2506 1171 tok->X_op = O_absent;
6f4b1afc 1172 tok->X_md = O_absent;
886a2506 1173 expression (tok);
252b5132 1174
6f4b1afc
CM
1175 /* Legacy: There are cases when we have
1176 identifier@relocation_type, if it is the case parse the
1177 relocation type as well. */
1178 if (*input_line_pointer == '@')
1179 goto relocationsym;
1180
886a2506
NC
1181 normalsymbol:
1182 debug_exp (tok);
252b5132 1183
3b889a78
AB
1184 if (tok->X_op == O_illegal
1185 || tok->X_op == O_absent
1186 || num_args == ntok)
886a2506 1187 goto err;
252b5132 1188
886a2506
NC
1189 saw_comma = FALSE;
1190 saw_arg = TRUE;
1191 tok++;
1192 num_args++;
1193 break;
1194 }
ea1562b3 1195 }
252b5132 1196
886a2506
NC
1197 fini:
1198 if (saw_comma || brk_lvl)
1199 goto err;
1200 input_line_pointer = old_input_line_pointer;
252b5132 1201
886a2506 1202 return num_args;
252b5132 1203
886a2506
NC
1204 err:
1205 if (brk_lvl)
1206 as_bad (_("Brackets in operand field incorrect"));
1207 else if (saw_comma)
1208 as_bad (_("extra comma"));
1209 else if (!saw_arg)
1210 as_bad (_("missing argument"));
1211 else
1212 as_bad (_("missing comma or colon"));
1213 input_line_pointer = old_input_line_pointer;
1214 return -1;
252b5132 1215}
ea1562b3 1216
886a2506
NC
1217/* Parse the flags to a structure. */
1218
1219static int
1220tokenize_flags (const char *str,
1221 struct arc_flags flags[],
1222 int nflg)
252b5132 1223{
886a2506
NC
1224 char *old_input_line_pointer;
1225 bfd_boolean saw_flg = FALSE;
1226 bfd_boolean saw_dot = FALSE;
1227 int num_flags = 0;
1228 size_t flgnamelen;
252b5132 1229
886a2506 1230 memset (flags, 0, sizeof (*flags) * nflg);
0d2bcfaf 1231
886a2506
NC
1232 /* Save and restore input_line_pointer around this function. */
1233 old_input_line_pointer = input_line_pointer;
1234 input_line_pointer = (char *) str;
0d2bcfaf 1235
886a2506
NC
1236 while (*input_line_pointer)
1237 {
1238 switch (*input_line_pointer)
1239 {
1240 case ' ':
1241 case '\0':
1242 goto fini;
1243
1244 case '.':
1245 input_line_pointer++;
1246 if (saw_dot)
1247 goto err;
1248 saw_dot = TRUE;
1249 saw_flg = FALSE;
1250 break;
ea1562b3 1251
886a2506
NC
1252 default:
1253 if (saw_flg && !saw_dot)
1254 goto err;
0d2bcfaf 1255
886a2506
NC
1256 if (num_flags >= nflg)
1257 goto err;
0d2bcfaf 1258
692166c2
AB
1259 flgnamelen = strspn (input_line_pointer,
1260 "abcdefghijklmnopqrstuvwxyz0123456789");
83cda17b 1261 if (flgnamelen > MAX_FLAG_NAME_LENGTH)
886a2506 1262 goto err;
0d2bcfaf 1263
886a2506 1264 memcpy (flags->name, input_line_pointer, flgnamelen);
0d2bcfaf 1265
886a2506
NC
1266 input_line_pointer += flgnamelen;
1267 flags++;
1268 saw_dot = FALSE;
1269 saw_flg = TRUE;
1270 num_flags++;
1271 break;
1e07b820 1272 }
0d2bcfaf
NC
1273 }
1274
886a2506
NC
1275 fini:
1276 input_line_pointer = old_input_line_pointer;
1277 return num_flags;
0d2bcfaf 1278
886a2506
NC
1279 err:
1280 if (saw_dot)
1281 as_bad (_("extra dot"));
1282 else if (!saw_flg)
1283 as_bad (_("unrecognized flag"));
1284 else
1285 as_bad (_("failed to parse flags"));
1286 input_line_pointer = old_input_line_pointer;
1287 return -1;
1288}
0d2bcfaf 1289
4670103e 1290/* Apply the fixups in order. */
0d2bcfaf 1291
4670103e
CZ
1292static void
1293apply_fixups (struct arc_insn *insn, fragS *fragP, int fix)
886a2506 1294{
4670103e 1295 int i;
0d2bcfaf 1296
4670103e 1297 for (i = 0; i < insn->nfixups; i++)
252b5132 1298 {
4670103e
CZ
1299 struct arc_fixup *fixup = &insn->fixups[i];
1300 int size, pcrel, offset = 0;
0d2bcfaf 1301
4670103e
CZ
1302 /* FIXME! the reloc size is wrong in the BFD file.
1303 When it is fixed please delete me. */
1304 size = (insn->short_insn && !fixup->islong) ? 2 : 4;
0d2bcfaf 1305
4670103e
CZ
1306 if (fixup->islong)
1307 offset = (insn->short_insn) ? 2 : 4;
252b5132 1308
4670103e
CZ
1309 /* Some fixups are only used internally, thus no howto. */
1310 if ((int) fixup->reloc == 0)
1311 as_fatal (_("Unhandled reloc type"));
886a2506 1312
4670103e
CZ
1313 if ((int) fixup->reloc < 0)
1314 {
1315 /* FIXME! the reloc size is wrong in the BFD file.
1316 When it is fixed please enable me.
1317 size = (insn->short_insn && !fixup->islong) ? 2 : 4; */
1318 pcrel = fixup->pcrel;
1319 }
1320 else
1321 {
1322 reloc_howto_type *reloc_howto =
1323 bfd_reloc_type_lookup (stdoutput,
1324 (bfd_reloc_code_real_type) fixup->reloc);
1325 gas_assert (reloc_howto);
0d2bcfaf 1326
4670103e
CZ
1327 /* FIXME! the reloc size is wrong in the BFD file.
1328 When it is fixed please enable me.
1329 size = bfd_get_reloc_size (reloc_howto); */
1330 pcrel = reloc_howto->pc_relative;
1331 }
0d2bcfaf 1332
4670103e
CZ
1333 pr_debug ("%s:%d: apply_fixups: new %s fixup (PCrel:%s) of size %d @ \
1334offset %d + %d\n",
1335 fragP->fr_file, fragP->fr_line,
1336 (fixup->reloc < 0) ? "Internal" :
1337 bfd_get_reloc_code_name (fixup->reloc),
1338 pcrel ? "Y" : "N",
1339 size, fix, offset);
1340 fix_new_exp (fragP, fix + offset,
1341 size, &fixup->exp, pcrel, fixup->reloc);
0d2bcfaf 1342
4670103e
CZ
1343 /* Check for ZOLs, and update symbol info if any. */
1344 if (LP_INSN (insn->insn))
886a2506 1345 {
4670103e
CZ
1346 gas_assert (fixup->exp.X_add_symbol);
1347 ARC_SET_FLAG (fixup->exp.X_add_symbol, ARC_FLAG_ZOL);
886a2506
NC
1348 }
1349 }
252b5132
RH
1350}
1351
4670103e 1352/* Actually output an instruction with its fixup. */
886a2506 1353
4670103e
CZ
1354static void
1355emit_insn0 (struct arc_insn *insn, char *where, bfd_boolean relax)
252b5132 1356{
4670103e 1357 char *f = where;
252b5132 1358
4670103e
CZ
1359 pr_debug ("Emit insn : 0x%x\n", insn->insn);
1360 pr_debug ("\tShort : 0x%d\n", insn->short_insn);
1361 pr_debug ("\tLong imm: 0x%lx\n", insn->limm);
0d2bcfaf 1362
4670103e
CZ
1363 /* Write out the instruction. */
1364 if (insn->short_insn)
0d2bcfaf 1365 {
4670103e
CZ
1366 if (insn->has_limm)
1367 {
1368 if (!relax)
1369 f = frag_more (6);
1370 md_number_to_chars (f, insn->insn, 2);
1371 md_number_to_chars_midend (f + 2, insn->limm, 4);
1372 dwarf2_emit_insn (6);
1373 }
1374 else
1375 {
1376 if (!relax)
1377 f = frag_more (2);
1378 md_number_to_chars (f, insn->insn, 2);
1379 dwarf2_emit_insn (2);
1380 }
1381 }
1382 else
1383 {
1384 if (insn->has_limm)
1385 {
1386 if (!relax)
1387 f = frag_more (8);
1388 md_number_to_chars_midend (f, insn->insn, 4);
1389 md_number_to_chars_midend (f + 4, insn->limm, 4);
1390 dwarf2_emit_insn (8);
1391 }
1392 else
1393 {
1394 if (!relax)
1395 f = frag_more (4);
1396 md_number_to_chars_midend (f, insn->insn, 4);
1397 dwarf2_emit_insn (4);
1398 }
252b5132 1399 }
252b5132 1400
4670103e
CZ
1401 if (!relax)
1402 apply_fixups (insn, frag_now, (f - frag_now->fr_literal));
1403}
252b5132 1404
4670103e
CZ
1405static void
1406emit_insn1 (struct arc_insn *insn)
1407{
1408 /* How frag_var's args are currently configured:
1409 - rs_machine_dependent, to dictate it's a relaxation frag.
1410 - FRAG_MAX_GROWTH, maximum size of instruction
1411 - 0, variable size that might grow...unused by generic relaxation.
1412 - frag_now->fr_subtype, fr_subtype starting value, set previously.
1413 - s, opand expression.
1414 - 0, offset but it's unused.
1415 - 0, opcode but it's unused. */
1416 symbolS *s = make_expr_symbol (&insn->fixups[0].exp);
1417 frag_now->tc_frag_data.pcrel = insn->fixups[0].pcrel;
1418
1419 if (frag_room () < FRAG_MAX_GROWTH)
1420 {
1421 /* Handle differently when frag literal memory is exhausted.
1422 This is used because when there's not enough memory left in
1423 the current frag, a new frag is created and the information
1424 we put into frag_now->tc_frag_data is disregarded. */
252b5132 1425
4670103e
CZ
1426 struct arc_relax_type relax_info_copy;
1427 relax_substateT subtype = frag_now->fr_subtype;
252b5132 1428
4670103e
CZ
1429 memcpy (&relax_info_copy, &frag_now->tc_frag_data,
1430 sizeof (struct arc_relax_type));
0d2bcfaf 1431
4670103e
CZ
1432 frag_wane (frag_now);
1433 frag_grow (FRAG_MAX_GROWTH);
0d2bcfaf 1434
4670103e
CZ
1435 memcpy (&frag_now->tc_frag_data, &relax_info_copy,
1436 sizeof (struct arc_relax_type));
252b5132 1437
4670103e
CZ
1438 frag_var (rs_machine_dependent, FRAG_MAX_GROWTH, 0,
1439 subtype, s, 0, 0);
1440 }
1441 else
1442 frag_var (rs_machine_dependent, FRAG_MAX_GROWTH, 0,
1443 frag_now->fr_subtype, s, 0, 0);
1444}
252b5132 1445
4670103e
CZ
1446static void
1447emit_insn (struct arc_insn *insn)
252b5132 1448{
4670103e
CZ
1449 if (insn->relax)
1450 emit_insn1 (insn);
252b5132 1451 else
4670103e 1452 emit_insn0 (insn, NULL, FALSE);
252b5132
RH
1453}
1454
4670103e 1455/* Check whether a symbol involves a register. */
252b5132 1456
4670103e
CZ
1457static bfd_boolean
1458contains_register (symbolS *sym)
252b5132 1459{
4670103e
CZ
1460 if (sym)
1461 {
1462 expressionS *ex = symbol_get_value_expression (sym);
252b5132 1463
4670103e
CZ
1464 return ((O_register == ex->X_op)
1465 && !contains_register (ex->X_add_symbol)
1466 && !contains_register (ex->X_op_symbol));
1467 }
1468
1469 return FALSE;
252b5132
RH
1470}
1471
4670103e 1472/* Returns the register number within a symbol. */
252b5132 1473
4670103e
CZ
1474static int
1475get_register (symbolS *sym)
252b5132 1476{
4670103e
CZ
1477 if (!contains_register (sym))
1478 return -1;
0d2bcfaf 1479
4670103e
CZ
1480 expressionS *ex = symbol_get_value_expression (sym);
1481 return regno (ex->X_add_number);
1482}
252b5132 1483
4670103e
CZ
1484/* Return true if a RELOC is generic. A generic reloc is PC-rel of a
1485 simple ME relocation (e.g. RELOC_ARC_32_ME, BFD_RELOC_ARC_PC32. */
f17c130b 1486
4670103e
CZ
1487static bfd_boolean
1488generic_reloc_p (extended_bfd_reloc_code_real_type reloc)
1489{
1490 if (!reloc)
1491 return FALSE;
886a2506 1492
4670103e
CZ
1493 switch (reloc)
1494 {
1495 case BFD_RELOC_ARC_SDA_LDST:
1496 case BFD_RELOC_ARC_SDA_LDST1:
1497 case BFD_RELOC_ARC_SDA_LDST2:
1498 case BFD_RELOC_ARC_SDA16_LD:
1499 case BFD_RELOC_ARC_SDA16_LD1:
1500 case BFD_RELOC_ARC_SDA16_LD2:
1501 case BFD_RELOC_ARC_SDA16_ST2:
1502 case BFD_RELOC_ARC_SDA32_ME:
1503 return FALSE;
1504 default:
1505 return TRUE;
f17c130b 1506 }
252b5132
RH
1507}
1508
4670103e 1509/* Allocates a tok entry. */
252b5132 1510
4670103e
CZ
1511static int
1512allocate_tok (expressionS *tok, int ntok, int cidx)
252b5132 1513{
4670103e
CZ
1514 if (ntok > MAX_INSN_ARGS - 2)
1515 return 0; /* No space left. */
252b5132 1516
4670103e
CZ
1517 if (cidx > ntok)
1518 return 0; /* Incorect args. */
252b5132 1519
4670103e 1520 memcpy (&tok[ntok+1], &tok[ntok], sizeof (*tok));
252b5132 1521
4670103e
CZ
1522 if (cidx == ntok)
1523 return 1; /* Success. */
1524 return allocate_tok (tok, ntok - 1, cidx);
1525}
886a2506 1526
8ddf6b2a
CZ
1527/* Check if an particular ARC feature is enabled. */
1528
1529static bfd_boolean
1530check_cpu_feature (insn_subclass_t sc)
1531{
1532 if (!(arc_features & ARC_CD)
1533 && is_code_density_p (sc))
1534 return FALSE;
1535
1536 if (!(arc_features & ARC_SPFP)
1537 && is_spfp_p (sc))
1538 return FALSE;
1539
1540 if (!(arc_features & ARC_DPFP)
1541 && is_dpfp_p (sc))
1542 return FALSE;
1543
1544 if (!(arc_features & ARC_FPUDA)
1545 && is_fpuda_p (sc))
1546 return FALSE;
1547
1548 return TRUE;
1549}
1550
4670103e
CZ
1551/* Search forward through all variants of an opcode looking for a
1552 syntax match. */
886a2506 1553
4670103e 1554static const struct arc_opcode *
b9b47ab7 1555find_opcode_match (const struct arc_opcode_hash_entry *entry,
4670103e
CZ
1556 expressionS *tok,
1557 int *pntok,
1558 struct arc_flags *first_pflag,
1559 int nflgs,
1560 int *pcpumatch)
1561{
1328504b
AB
1562 const struct arc_opcode *opcode;
1563 struct arc_opcode_hash_entry_iterator iter;
4670103e
CZ
1564 int ntok = *pntok;
1565 int got_cpu_match = 0;
1566 expressionS bktok[MAX_INSN_ARGS];
1567 int bkntok;
1568 expressionS emptyE;
886a2506 1569
1328504b 1570 arc_opcode_hash_entry_iterator_init (&iter);
4670103e
CZ
1571 memset (&emptyE, 0, sizeof (emptyE));
1572 memcpy (bktok, tok, MAX_INSN_ARGS * sizeof (*tok));
1573 bkntok = ntok;
a161fe53 1574
1328504b
AB
1575 for (opcode = arc_opcode_hash_entry_iterator_next (entry, &iter);
1576 opcode != NULL;
1577 opcode = arc_opcode_hash_entry_iterator_next (entry, &iter))
252b5132 1578 {
4670103e
CZ
1579 const unsigned char *opidx;
1580 const unsigned char *flgidx;
1ae8ab47 1581 int tokidx = 0, lnflg, i;
4670103e 1582 const expressionS *t = &emptyE;
252b5132 1583
4670103e
CZ
1584 pr_debug ("%s:%d: find_opcode_match: trying opcode 0x%08X ",
1585 frag_now->fr_file, frag_now->fr_line, opcode->opcode);
886a2506 1586
4670103e
CZ
1587 /* Don't match opcodes that don't exist on this
1588 architecture. */
1589 if (!(opcode->cpu & arc_target))
1590 goto match_failed;
886a2506 1591
8ddf6b2a 1592 if (!check_cpu_feature (opcode->subclass))
4670103e 1593 goto match_failed;
886a2506 1594
4670103e
CZ
1595 got_cpu_match = 1;
1596 pr_debug ("cpu ");
886a2506 1597
4670103e
CZ
1598 /* Check the operands. */
1599 for (opidx = opcode->operands; *opidx; ++opidx)
252b5132 1600 {
4670103e 1601 const struct arc_operand *operand = &arc_operands[*opidx];
252b5132 1602
4670103e
CZ
1603 /* Only take input from real operands. */
1604 if ((operand->flags & ARC_OPERAND_FAKE)
1605 && !(operand->flags & ARC_OPERAND_BRAKET))
1606 continue;
252b5132 1607
4670103e
CZ
1608 /* When we expect input, make sure we have it. */
1609 if (tokidx >= ntok)
1610 goto match_failed;
6f4b1afc 1611
4670103e
CZ
1612 /* Match operand type with expression type. */
1613 switch (operand->flags & ARC_OPERAND_TYPECHECK_MASK)
1614 {
1615 case ARC_OPERAND_IR:
1616 /* Check to be a register. */
1617 if ((tok[tokidx].X_op != O_register
1618 || !is_ir_num (tok[tokidx].X_add_number))
1619 && !(operand->flags & ARC_OPERAND_IGNORE))
1620 goto match_failed;
1621
1622 /* If expect duplicate, make sure it is duplicate. */
1623 if (operand->flags & ARC_OPERAND_DUPLICATE)
1624 {
1625 /* Check for duplicate. */
1626 if (t->X_op != O_register
1627 || !is_ir_num (t->X_add_number)
1628 || (regno (t->X_add_number) !=
1629 regno (tok[tokidx].X_add_number)))
1630 goto match_failed;
1631 }
1632
1633 /* Special handling? */
1634 if (operand->insert)
1635 {
1636 const char *errmsg = NULL;
1637 (*operand->insert)(0,
1638 regno (tok[tokidx].X_add_number),
1639 &errmsg);
1640 if (errmsg)
1641 {
1642 if (operand->flags & ARC_OPERAND_IGNORE)
1643 {
1644 /* Missing argument, create one. */
1645 if (!allocate_tok (tok, ntok - 1, tokidx))
1646 goto match_failed;
1647
1648 tok[tokidx].X_op = O_absent;
1649 ++ntok;
1650 }
1651 else
1652 goto match_failed;
1653 }
1654 }
1655
1656 t = &tok[tokidx];
1657 break;
1658
1659 case ARC_OPERAND_BRAKET:
1660 /* Check if bracket is also in opcode table as
1661 operand. */
1662 if (tok[tokidx].X_op != O_bracket)
1663 goto match_failed;
1664 break;
1665
1666 case ARC_OPERAND_LIMM:
1667 case ARC_OPERAND_SIGNED:
1668 case ARC_OPERAND_UNSIGNED:
1669 switch (tok[tokidx].X_op)
1670 {
1671 case O_illegal:
1672 case O_absent:
1673 case O_register:
1674 goto match_failed;
1675
1676 case O_bracket:
1677 /* Got an (too) early bracket, check if it is an
1678 ignored operand. N.B. This procedure works only
1679 when bracket is the last operand! */
1680 if (!(operand->flags & ARC_OPERAND_IGNORE))
1681 goto match_failed;
1682 /* Insert the missing operand. */
1683 if (!allocate_tok (tok, ntok - 1, tokidx))
1684 goto match_failed;
1685
1686 tok[tokidx].X_op = O_absent;
1687 ++ntok;
1688 break;
1689
22b92fc4
AB
1690 case O_symbol:
1691 {
1692 const char *p;
22b92fc4 1693 const struct arc_aux_reg *auxr;
22b92fc4
AB
1694
1695 if (opcode->class != AUXREG)
1696 goto de_fault;
1697 p = S_GET_NAME (tok[tokidx].X_add_symbol);
f36e33da
CZ
1698
1699 auxr = hash_find (arc_aux_hash, p);
1700 if (auxr)
1701 {
1702 /* We modify the token array here, safe in the
1703 knowledge, that if this was the wrong
1704 choice then the original contents will be
1705 restored from BKTOK. */
1706 tok[tokidx].X_op = O_constant;
1707 tok[tokidx].X_add_number = auxr->address;
1708 ARC_SET_FLAG (tok[tokidx].X_add_symbol, ARC_FLAG_AUX);
1709 }
22b92fc4
AB
1710
1711 if (tok[tokidx].X_op != O_constant)
1712 goto de_fault;
1713 }
1714 /* Fall-through */
4670103e
CZ
1715 case O_constant:
1716 /* Check the range. */
1717 if (operand->bits != 32
1718 && !(operand->flags & ARC_OPERAND_NCHK))
1719 {
1720 offsetT min, max, val;
1721 val = tok[tokidx].X_add_number;
1722
1723 if (operand->flags & ARC_OPERAND_SIGNED)
1724 {
1725 max = (1 << (operand->bits - 1)) - 1;
1726 min = -(1 << (operand->bits - 1));
1727 }
1728 else
1729 {
1730 max = (1 << operand->bits) - 1;
1731 min = 0;
1732 }
1733
1734 if (val < min || val > max)
1735 goto match_failed;
1736
1737 /* Check alignmets. */
1738 if ((operand->flags & ARC_OPERAND_ALIGNED32)
1739 && (val & 0x03))
1740 goto match_failed;
1741
1742 if ((operand->flags & ARC_OPERAND_ALIGNED16)
1743 && (val & 0x01))
1744 goto match_failed;
1745 }
1746 else if (operand->flags & ARC_OPERAND_NCHK)
1747 {
1748 if (operand->insert)
1749 {
1750 const char *errmsg = NULL;
1751 (*operand->insert)(0,
1752 tok[tokidx].X_add_number,
1753 &errmsg);
1754 if (errmsg)
1755 goto match_failed;
1756 }
1757 else
1758 goto match_failed;
1759 }
1760 break;
1761
1762 case O_subtract:
1763 /* Check if it is register range. */
1764 if ((tok[tokidx].X_add_number == 0)
1765 && contains_register (tok[tokidx].X_add_symbol)
1766 && contains_register (tok[tokidx].X_op_symbol))
1767 {
1768 int regs;
1769
1770 regs = get_register (tok[tokidx].X_add_symbol);
1771 regs <<= 16;
1772 regs |= get_register (tok[tokidx].X_op_symbol);
1773 if (operand->insert)
1774 {
1775 const char *errmsg = NULL;
1776 (*operand->insert)(0,
1777 regs,
1778 &errmsg);
1779 if (errmsg)
1780 goto match_failed;
1781 }
1782 else
1783 goto match_failed;
1784 break;
1785 }
1786 default:
22b92fc4 1787 de_fault:
4670103e
CZ
1788 if (operand->default_reloc == 0)
1789 goto match_failed; /* The operand needs relocation. */
1790
1791 /* Relocs requiring long immediate. FIXME! make it
1792 generic and move it to a function. */
1793 switch (tok[tokidx].X_md)
1794 {
1795 case O_gotoff:
1796 case O_gotpc:
1797 case O_pcl:
1798 case O_tpoff:
1799 case O_dtpoff:
1800 case O_tlsgd:
1801 case O_tlsie:
1802 if (!(operand->flags & ARC_OPERAND_LIMM))
1803 goto match_failed;
1804 case O_absent:
1805 if (!generic_reloc_p (operand->default_reloc))
1806 goto match_failed;
1807 default:
1808 break;
1809 }
1810 break;
1811 }
1812 /* If expect duplicate, make sure it is duplicate. */
1813 if (operand->flags & ARC_OPERAND_DUPLICATE)
1814 {
1815 if (t->X_op == O_illegal
1816 || t->X_op == O_absent
1817 || t->X_op == O_register
1818 || (t->X_add_number != tok[tokidx].X_add_number))
1819 goto match_failed;
1820 }
1821 t = &tok[tokidx];
1822 break;
1823
1824 default:
1825 /* Everything else should have been fake. */
1826 abort ();
1827 }
1828
1829 ++tokidx;
1830 }
1831 pr_debug ("opr ");
1832
1ae8ab47
AB
1833 /* Setup ready for flag parsing. */
1834 lnflg = nflgs;
1835 for (i = 0; i < nflgs; i++)
f36e33da 1836 first_pflag[i].flgp = NULL;
4670103e 1837
1ae8ab47
AB
1838 /* Check the flags. Iterate over the valid flag classes. */
1839 for (flgidx = opcode->flags; *flgidx; ++flgidx)
4670103e
CZ
1840 {
1841 /* Get a valid flag class. */
1842 const struct arc_flag_class *cl_flags = &arc_flag_classes[*flgidx];
1843 const unsigned *flgopridx;
1ae8ab47 1844 int cl_matches = 0;
f36e33da
CZ
1845 struct arc_flags *pflag = NULL;
1846
1847 /* Check for extension conditional codes. */
1848 if (ext_condcode.arc_ext_condcode
1849 && cl_flags->class & F_CLASS_EXTEND)
1850 {
1851 struct arc_flag_operand *pf = ext_condcode.arc_ext_condcode;
1852 while (pf->name)
1853 {
1854 pflag = first_pflag;
1855 for (i = 0; i < nflgs; i++, pflag++)
1856 {
1857 if (!strcmp (pf->name, pflag->name))
1858 {
1859 if (pflag->flgp != NULL)
1860 goto match_failed;
1861 /* Found it. */
1862 cl_matches++;
1863 pflag->flgp = pf;
1864 lnflg--;
1865 break;
1866 }
1867 }
1868 pf++;
1869 }
1870 }
4670103e
CZ
1871
1872 for (flgopridx = cl_flags->flags; *flgopridx; ++flgopridx)
1873 {
1874 const struct arc_flag_operand *flg_operand;
4670103e 1875
f36e33da 1876 pflag = first_pflag;
4670103e
CZ
1877 flg_operand = &arc_flag_operands[*flgopridx];
1878 for (i = 0; i < nflgs; i++, pflag++)
1879 {
1880 /* Match against the parsed flags. */
1881 if (!strcmp (flg_operand->name, pflag->name))
1882 {
f36e33da 1883 if (pflag->flgp != NULL)
1ae8ab47
AB
1884 goto match_failed;
1885 cl_matches++;
f36e33da 1886 pflag->flgp = (struct arc_flag_operand *) flg_operand;
4670103e
CZ
1887 lnflg--;
1888 break; /* goto next flag class and parsed flag. */
1889 }
1890 }
1891 }
1ae8ab47 1892
f36e33da 1893 if ((cl_flags->class & F_CLASS_REQUIRED) && cl_matches == 0)
1ae8ab47 1894 goto match_failed;
f36e33da 1895 if ((cl_flags->class & F_CLASS_OPTIONAL) && cl_matches > 1)
1ae8ab47 1896 goto match_failed;
4670103e
CZ
1897 }
1898 /* Did I check all the parsed flags? */
1899 if (lnflg)
1900 goto match_failed;
1901
1902 pr_debug ("flg");
1903 /* Possible match -- did we use all of our input? */
1904 if (tokidx == ntok)
1905 {
1906 *pntok = ntok;
1907 pr_debug ("\n");
1908 return opcode;
1909 }
1910
1911 match_failed:;
1912 pr_debug ("\n");
1913 /* Restore the original parameters. */
1914 memcpy (tok, bktok, MAX_INSN_ARGS * sizeof (*tok));
1915 ntok = bkntok;
1916 }
4670103e
CZ
1917
1918 if (*pcpumatch)
1919 *pcpumatch = got_cpu_match;
1920
1921 return NULL;
1922}
1923
1924/* Swap operand tokens. */
1925
1926static void
1927swap_operand (expressionS *operand_array,
1928 unsigned source,
1929 unsigned destination)
1930{
1931 expressionS cpy_operand;
1932 expressionS *src_operand;
1933 expressionS *dst_operand;
1934 size_t size;
1935
1936 if (source == destination)
1937 return;
1938
1939 src_operand = &operand_array[source];
1940 dst_operand = &operand_array[destination];
1941 size = sizeof (expressionS);
1942
1943 /* Make copy of operand to swap with and swap. */
1944 memcpy (&cpy_operand, dst_operand, size);
1945 memcpy (dst_operand, src_operand, size);
1946 memcpy (src_operand, &cpy_operand, size);
1947}
1948
1949/* Check if *op matches *tok type.
1950 Returns FALSE if they don't match, TRUE if they match. */
1951
1952static bfd_boolean
1953pseudo_operand_match (const expressionS *tok,
1954 const struct arc_operand_operation *op)
1955{
1956 offsetT min, max, val;
1957 bfd_boolean ret;
1958 const struct arc_operand *operand_real = &arc_operands[op->operand_idx];
1959
1960 ret = FALSE;
1961 switch (tok->X_op)
1962 {
1963 case O_constant:
1964 if (operand_real->bits == 32 && (operand_real->flags & ARC_OPERAND_LIMM))
1965 ret = 1;
1966 else if (!(operand_real->flags & ARC_OPERAND_IR))
1967 {
1968 val = tok->X_add_number + op->count;
1969 if (operand_real->flags & ARC_OPERAND_SIGNED)
1970 {
1971 max = (1 << (operand_real->bits - 1)) - 1;
1972 min = -(1 << (operand_real->bits - 1));
1973 }
1974 else
1975 {
1976 max = (1 << operand_real->bits) - 1;
1977 min = 0;
1978 }
1979 if (min <= val && val <= max)
1980 ret = TRUE;
1981 }
6f4b1afc
CM
1982 break;
1983
4670103e
CZ
1984 case O_symbol:
1985 /* Handle all symbols as long immediates or signed 9. */
1986 if (operand_real->flags & ARC_OPERAND_LIMM ||
1987 ((operand_real->flags & ARC_OPERAND_SIGNED) && operand_real->bits == 9))
1988 ret = TRUE;
6f4b1afc
CM
1989 break;
1990
4670103e
CZ
1991 case O_register:
1992 if (operand_real->flags & ARC_OPERAND_IR)
1993 ret = TRUE;
1994 break;
1995
1996 case O_bracket:
1997 if (operand_real->flags & ARC_OPERAND_BRAKET)
1998 ret = TRUE;
6f4b1afc
CM
1999 break;
2000
2001 default:
4670103e 2002 /* Unknown. */
6f4b1afc
CM
2003 break;
2004 }
4670103e
CZ
2005 return ret;
2006}
6f4b1afc 2007
4670103e
CZ
2008/* Find pseudo instruction in array. */
2009
2010static const struct arc_pseudo_insn *
2011find_pseudo_insn (const char *opname,
2012 int ntok,
2013 const expressionS *tok)
2014{
2015 const struct arc_pseudo_insn *pseudo_insn = NULL;
2016 const struct arc_operand_operation *op;
2017 unsigned int i;
2018 int j;
2019
2020 for (i = 0; i < arc_num_pseudo_insn; ++i)
6f4b1afc 2021 {
4670103e
CZ
2022 pseudo_insn = &arc_pseudo_insns[i];
2023 if (strcmp (pseudo_insn->mnemonic_p, opname) == 0)
2024 {
2025 op = pseudo_insn->operand;
2026 for (j = 0; j < ntok; ++j)
2027 if (!pseudo_operand_match (&tok[j], &op[j]))
2028 break;
2029
2030 /* Found the right instruction. */
2031 if (j == ntok)
2032 return pseudo_insn;
2033 }
6f4b1afc 2034 }
4670103e
CZ
2035 return NULL;
2036}
252b5132 2037
4670103e 2038/* Assumes the expressionS *tok is of sufficient size. */
252b5132 2039
b9b47ab7 2040static const struct arc_opcode_hash_entry *
4670103e
CZ
2041find_special_case_pseudo (const char *opname,
2042 int *ntok,
2043 expressionS *tok,
2044 int *nflgs,
2045 struct arc_flags *pflags)
2046{
2047 const struct arc_pseudo_insn *pseudo_insn = NULL;
2048 const struct arc_operand_operation *operand_pseudo;
2049 const struct arc_operand *operand_real;
2050 unsigned i;
2051 char construct_operand[MAX_CONSTR_STR];
886a2506 2052
4670103e
CZ
2053 /* Find whether opname is in pseudo instruction array. */
2054 pseudo_insn = find_pseudo_insn (opname, *ntok, tok);
2055
2056 if (pseudo_insn == NULL)
2057 return NULL;
2058
2059 /* Handle flag, Limited to one flag at the moment. */
2060 if (pseudo_insn->flag_r != NULL)
2061 *nflgs += tokenize_flags (pseudo_insn->flag_r, &pflags[*nflgs],
2062 MAX_INSN_FLGS - *nflgs);
2063
2064 /* Handle operand operations. */
2065 for (i = 0; i < pseudo_insn->operand_cnt; ++i)
252b5132 2066 {
4670103e
CZ
2067 operand_pseudo = &pseudo_insn->operand[i];
2068 operand_real = &arc_operands[operand_pseudo->operand_idx];
886a2506 2069
4670103e
CZ
2070 if (operand_real->flags & ARC_OPERAND_BRAKET &&
2071 !operand_pseudo->needs_insert)
2072 continue;
b125bd17 2073
4670103e
CZ
2074 /* Has to be inserted (i.e. this token does not exist yet). */
2075 if (operand_pseudo->needs_insert)
2076 {
2077 if (operand_real->flags & ARC_OPERAND_BRAKET)
2078 {
2079 tok[i].X_op = O_bracket;
2080 ++(*ntok);
2081 continue;
2082 }
b125bd17 2083
4670103e
CZ
2084 /* Check if operand is a register or constant and handle it
2085 by type. */
2086 if (operand_real->flags & ARC_OPERAND_IR)
2087 snprintf (construct_operand, MAX_CONSTR_STR, "r%d",
2088 operand_pseudo->count);
2089 else
2090 snprintf (construct_operand, MAX_CONSTR_STR, "%d",
2091 operand_pseudo->count);
886a2506 2092
4670103e
CZ
2093 tokenize_arguments (construct_operand, &tok[i], 1);
2094 ++(*ntok);
2095 }
2096
2097 else if (operand_pseudo->count)
2098 {
2099 /* Operand number has to be adjusted accordingly (by operand
2100 type). */
2101 switch (tok[i].X_op)
2102 {
2103 case O_constant:
2104 tok[i].X_add_number += operand_pseudo->count;
2105 break;
2106
2107 case O_symbol:
2108 break;
2109
2110 default:
2111 /* Ignored. */
2112 break;
2113 }
2114 }
2115 }
2116
2117 /* Swap operands if necessary. Only supports one swap at the
2118 moment. */
2119 for (i = 0; i < pseudo_insn->operand_cnt; ++i)
2120 {
2121 operand_pseudo = &pseudo_insn->operand[i];
2122
2123 if (operand_pseudo->swap_operand_idx == i)
2124 continue;
2125
2126 swap_operand (tok, i, operand_pseudo->swap_operand_idx);
2127
2128 /* Prevent a swap back later by breaking out. */
2129 break;
2130 }
2131
da5be039 2132 return arc_find_opcode (pseudo_insn->mnemonic_r);
4670103e
CZ
2133}
2134
b9b47ab7 2135static const struct arc_opcode_hash_entry *
4670103e
CZ
2136find_special_case_flag (const char *opname,
2137 int *nflgs,
2138 struct arc_flags *pflags)
2139{
2140 unsigned int i;
2141 const char *flagnm;
2142 unsigned flag_idx, flag_arr_idx;
2143 size_t flaglen, oplen;
2144 const struct arc_flag_special *arc_flag_special_opcode;
b9b47ab7 2145 const struct arc_opcode_hash_entry *entry;
4670103e
CZ
2146
2147 /* Search for special case instruction. */
2148 for (i = 0; i < arc_num_flag_special; i++)
2149 {
2150 arc_flag_special_opcode = &arc_flag_special_cases[i];
2151 oplen = strlen (arc_flag_special_opcode->name);
2152
2153 if (strncmp (opname, arc_flag_special_opcode->name, oplen) != 0)
2154 continue;
2155
2156 /* Found a potential special case instruction, now test for
2157 flags. */
2158 for (flag_arr_idx = 0;; ++flag_arr_idx)
2159 {
2160 flag_idx = arc_flag_special_opcode->flags[flag_arr_idx];
2161 if (flag_idx == 0)
2162 break; /* End of array, nothing found. */
886a2506 2163
4670103e
CZ
2164 flagnm = arc_flag_operands[flag_idx].name;
2165 flaglen = strlen (flagnm);
2166 if (strcmp (opname + oplen, flagnm) == 0)
2167 {
b9b47ab7 2168 entry = arc_find_opcode (arc_flag_special_opcode->name);
886a2506 2169
4670103e
CZ
2170 if (*nflgs + 1 > MAX_INSN_FLGS)
2171 break;
2172 memcpy (pflags[*nflgs].name, flagnm, flaglen);
2173 pflags[*nflgs].name[flaglen] = '\0';
2174 (*nflgs)++;
b9b47ab7 2175 return entry;
4670103e
CZ
2176 }
2177 }
2178 }
2179 return NULL;
2180}
886a2506 2181
4670103e 2182/* Used to find special case opcode. */
886a2506 2183
b9b47ab7 2184static const struct arc_opcode_hash_entry *
4670103e
CZ
2185find_special_case (const char *opname,
2186 int *nflgs,
2187 struct arc_flags *pflags,
2188 expressionS *tok,
2189 int *ntok)
2190{
b9b47ab7 2191 const struct arc_opcode_hash_entry *entry;
886a2506 2192
b9b47ab7 2193 entry = find_special_case_pseudo (opname, ntok, tok, nflgs, pflags);
886a2506 2194
b9b47ab7
AB
2195 if (entry == NULL)
2196 entry = find_special_case_flag (opname, nflgs, pflags);
886a2506 2197
b9b47ab7 2198 return entry;
4670103e 2199}
886a2506 2200
4670103e
CZ
2201/* Given an opcode name, pre-tockenized set of argumenst and the
2202 opcode flags, take it all the way through emission. */
886a2506 2203
4670103e
CZ
2204static void
2205assemble_tokens (const char *opname,
2206 expressionS *tok,
2207 int ntok,
2208 struct arc_flags *pflags,
2209 int nflgs)
2210{
2211 bfd_boolean found_something = FALSE;
b9b47ab7 2212 const struct arc_opcode_hash_entry *entry;
4670103e 2213 int cpumatch = 1;
886a2506 2214
4670103e 2215 /* Search opcodes. */
b9b47ab7 2216 entry = arc_find_opcode (opname);
886a2506 2217
4670103e 2218 /* Couldn't find opcode conventional way, try special cases. */
b9b47ab7
AB
2219 if (entry == NULL)
2220 entry = find_special_case (opname, &nflgs, pflags, tok, &ntok);
886a2506 2221
b9b47ab7 2222 if (entry != NULL)
4670103e 2223 {
b9b47ab7
AB
2224 const struct arc_opcode *opcode;
2225
1328504b
AB
2226 pr_debug ("%s:%d: assemble_tokens: %s\n",
2227 frag_now->fr_file, frag_now->fr_line, opname);
4670103e 2228 found_something = TRUE;
b9b47ab7
AB
2229 opcode = find_opcode_match (entry, tok, &ntok, pflags,
2230 nflgs, &cpumatch);
2231 if (opcode != NULL)
4670103e
CZ
2232 {
2233 struct arc_insn insn;
b9b47ab7 2234
4670103e
CZ
2235 assemble_insn (opcode, tok, ntok, pflags, nflgs, &insn);
2236 emit_insn (&insn);
2237 return;
2238 }
2239 }
886a2506 2240
4670103e
CZ
2241 if (found_something)
2242 {
2243 if (cpumatch)
2244 as_bad (_("inappropriate arguments for opcode '%s'"), opname);
2245 else
2246 as_bad (_("opcode '%s' not supported for target %s"), opname,
2247 arc_target_name);
2248 }
2249 else
2250 as_bad (_("unknown opcode '%s'"), opname);
886a2506
NC
2251}
2252
4670103e 2253/* The public interface to the instruction assembler. */
886a2506 2254
4670103e
CZ
2255void
2256md_assemble (char *str)
886a2506 2257{
4670103e
CZ
2258 char *opname;
2259 expressionS tok[MAX_INSN_ARGS];
2260 int ntok, nflg;
2261 size_t opnamelen;
2262 struct arc_flags flags[MAX_INSN_FLGS];
886a2506 2263
4670103e
CZ
2264 /* Split off the opcode. */
2265 opnamelen = strspn (str, "abcdefghijklmnopqrstuvwxyz_0123468");
29a2809e 2266 opname = xmemdup0 (str, opnamelen);
886a2506 2267
4670103e
CZ
2268 /* Signalize we are assmbling the instructions. */
2269 assembling_insn = TRUE;
886a2506 2270
4670103e
CZ
2271 /* Tokenize the flags. */
2272 if ((nflg = tokenize_flags (str + opnamelen, flags, MAX_INSN_FLGS)) == -1)
2273 {
2274 as_bad (_("syntax error"));
2275 return;
2276 }
886a2506 2277
4670103e
CZ
2278 /* Scan up to the end of the mnemonic which must end in space or end
2279 of string. */
2280 str += opnamelen;
2281 for (; *str != '\0'; str++)
2282 if (*str == ' ')
2283 break;
886a2506 2284
4670103e
CZ
2285 /* Tokenize the rest of the line. */
2286 if ((ntok = tokenize_arguments (str, tok, MAX_INSN_ARGS)) < 0)
886a2506 2287 {
4670103e
CZ
2288 as_bad (_("syntax error"));
2289 return;
252b5132
RH
2290 }
2291
4670103e
CZ
2292 /* Finish it off. */
2293 assemble_tokens (opname, tok, ntok, flags, nflg);
2294 assembling_insn = FALSE;
2295}
2296
2297/* Callback to insert a register into the hash table. */
2298
2299static void
f86f5863 2300declare_register (const char *name, int number)
4670103e
CZ
2301{
2302 const char *err;
2303 symbolS *regS = symbol_create (name, reg_section,
2304 number, &zero_address_frag);
2305
2306 err = hash_insert (arc_reg_hash, S_GET_NAME (regS), (void *) regS);
2307 if (err)
e6ba1cba 2308 as_fatal (_("Inserting \"%s\" into register table failed: %s"),
4670103e
CZ
2309 name, err);
2310}
252b5132 2311
4670103e 2312/* Construct symbols for each of the general registers. */
252b5132 2313
4670103e
CZ
2314static void
2315declare_register_set (void)
2316{
2317 int i;
2318 for (i = 0; i < 64; ++i)
886a2506 2319 {
4670103e
CZ
2320 char name[7];
2321
2322 sprintf (name, "r%d", i);
2323 declare_register (name, i);
2324 if ((i & 0x01) == 0)
886a2506 2325 {
4670103e
CZ
2326 sprintf (name, "r%dr%d", i, i+1);
2327 declare_register (name, i);
886a2506
NC
2328 }
2329 }
252b5132 2330}
ea1562b3 2331
4670103e
CZ
2332/* Port-specific assembler initialization. This function is called
2333 once, at assembler startup time. */
ea1562b3
NC
2334
2335void
4670103e 2336md_begin (void)
ea1562b3 2337{
b99747ae 2338 const struct arc_opcode *opcode = arc_opcodes;
886a2506 2339
24740d83
AB
2340 if (!mach_type_specified_p)
2341 arc_select_cpu ("arc700");
2342
4670103e
CZ
2343 /* The endianness can be chosen "at the factory". */
2344 target_big_endian = byte_order == BIG_ENDIAN;
886a2506 2345
4670103e
CZ
2346 if (!bfd_set_arch_mach (stdoutput, bfd_arch_arc, arc_mach_type))
2347 as_warn (_("could not set architecture and machine"));
2348
2349 /* Set elf header flags. */
2350 bfd_set_private_flags (stdoutput, arc_eflag);
2351
2352 /* Set up a hash table for the instructions. */
2353 arc_opcode_hash = hash_new ();
2354 if (arc_opcode_hash == NULL)
2355 as_fatal (_("Virtual memory exhausted"));
2356
2357 /* Initialize the hash table with the insns. */
b99747ae 2358 do
ea1562b3 2359 {
b99747ae 2360 const char *name = opcode->name;
da5be039 2361
b99747ae 2362 arc_insert_opcode (opcode);
4670103e 2363
b99747ae
CZ
2364 while (++opcode && opcode->name
2365 && (opcode->name == name
2366 || !strcmp (opcode->name, name)))
4670103e 2367 continue;
b99747ae 2368 }while (opcode->name);
4670103e
CZ
2369
2370 /* Register declaration. */
2371 arc_reg_hash = hash_new ();
2372 if (arc_reg_hash == NULL)
2373 as_fatal (_("Virtual memory exhausted"));
2374
2375 declare_register_set ();
2376 declare_register ("gp", 26);
2377 declare_register ("fp", 27);
2378 declare_register ("sp", 28);
2379 declare_register ("ilink", 29);
2380 declare_register ("ilink1", 29);
2381 declare_register ("ilink2", 30);
2382 declare_register ("blink", 31);
2383
2384 declare_register ("mlo", 57);
2385 declare_register ("mmid", 58);
2386 declare_register ("mhi", 59);
2387
2388 declare_register ("acc1", 56);
2389 declare_register ("acc2", 57);
2390
2391 declare_register ("lp_count", 60);
2392 declare_register ("pcl", 63);
2393
2394 /* Initialize the last instructions. */
2395 memset (&arc_last_insns[0], 0, sizeof (arc_last_insns));
f36e33da
CZ
2396
2397 /* Aux register declaration. */
2398 arc_aux_hash = hash_new ();
2399 if (arc_aux_hash == NULL)
2400 as_fatal (_("Virtual memory exhausted"));
2401
2402 const struct arc_aux_reg *auxr = &arc_aux_regs[0];
2403 unsigned int i;
2404 for (i = 0; i < arc_num_aux_regs; i++, auxr++)
2405 {
2406 const char *retval;
2407
2408 if (!(auxr->cpu & arc_target))
2409 continue;
2410
2411 if ((auxr->subclass != NONE)
2412 && !check_cpu_feature (auxr->subclass))
2413 continue;
2414
2415 retval = hash_insert (arc_aux_hash, auxr->name, (void *) auxr);
2416 if (retval)
2417 as_fatal (_("internal error: can't hash aux register '%s': %s"),
2418 auxr->name, retval);
2419 }
886a2506 2420}
ea1562b3 2421
4670103e
CZ
2422/* Write a value out to the object file, using the appropriate
2423 endianness. */
ea1562b3 2424
4670103e
CZ
2425void
2426md_number_to_chars (char *buf,
2427 valueT val,
2428 int n)
886a2506 2429{
4670103e
CZ
2430 if (target_big_endian)
2431 number_to_chars_bigendian (buf, val, n);
2432 else
2433 number_to_chars_littleendian (buf, val, n);
886a2506 2434}
ea1562b3 2435
4670103e 2436/* Round up a section size to the appropriate boundary. */
ea1562b3 2437
4670103e
CZ
2438valueT
2439md_section_align (segT segment,
2440 valueT size)
886a2506 2441{
4670103e
CZ
2442 int align = bfd_get_section_alignment (stdoutput, segment);
2443
2444 return ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
886a2506 2445}
ea1562b3 2446
4670103e
CZ
2447/* The location from which a PC relative jump should be calculated,
2448 given a PC relative reloc. */
ea1562b3 2449
4670103e
CZ
2450long
2451md_pcrel_from_section (fixS *fixP,
2452 segT sec)
886a2506 2453{
4670103e 2454 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
ea1562b3 2455
4670103e 2456 pr_debug ("pcrel_from_section, fx_offset = %d\n", (int) fixP->fx_offset);
ea1562b3 2457
4670103e
CZ
2458 if (fixP->fx_addsy != (symbolS *) NULL
2459 && (!S_IS_DEFINED (fixP->fx_addsy)
2460 || S_GET_SEGMENT (fixP->fx_addsy) != sec))
2461 {
2462 pr_debug ("Unknown pcrel symbol: %s\n", S_GET_NAME (fixP->fx_addsy));
ea1562b3 2463
4670103e
CZ
2464 /* The symbol is undefined (or is defined but not in this section).
2465 Let the linker figure it out. */
2466 return 0;
2467 }
2468
2469 if ((int) fixP->fx_r_type < 0)
886a2506 2470 {
4670103e
CZ
2471 /* These are the "internal" relocations. Align them to
2472 32 bit boundary (PCL), for the moment. */
2473 base &= ~3;
886a2506 2474 }
4670103e
CZ
2475 else
2476 {
2477 switch (fixP->fx_r_type)
2478 {
2479 case BFD_RELOC_ARC_PC32:
2480 /* The hardware calculates relative to the start of the
2481 insn, but this relocation is relative to location of the
2482 LIMM, compensate. The base always needs to be
2483 substracted by 4 as we do not support this type of PCrel
2484 relocation for short instructions. */
2485 base -= 4;
2486 /* Fall through. */
2487 case BFD_RELOC_ARC_PLT32:
2488 case BFD_RELOC_ARC_S25H_PCREL_PLT:
2489 case BFD_RELOC_ARC_S21H_PCREL_PLT:
2490 case BFD_RELOC_ARC_S25W_PCREL_PLT:
2491 case BFD_RELOC_ARC_S21W_PCREL_PLT:
2492
2493 case BFD_RELOC_ARC_S21H_PCREL:
2494 case BFD_RELOC_ARC_S25H_PCREL:
2495 case BFD_RELOC_ARC_S13_PCREL:
2496 case BFD_RELOC_ARC_S21W_PCREL:
2497 case BFD_RELOC_ARC_S25W_PCREL:
2498 base &= ~3;
2499 break;
2500 default:
2501 as_bad_where (fixP->fx_file, fixP->fx_line,
2502 _("unhandled reloc %s in md_pcrel_from_section"),
2503 bfd_get_reloc_code_name (fixP->fx_r_type));
2504 break;
2505 }
2506 }
2507
9e32d9ae
AB
2508 pr_debug ("pcrel from %"BFD_VMA_FMT"x + %lx = %"BFD_VMA_FMT"x, "
2509 "symbol: %s (%"BFD_VMA_FMT"x)\n",
4670103e
CZ
2510 fixP->fx_frag->fr_address, fixP->fx_where, base,
2511 fixP->fx_addsy ? S_GET_NAME (fixP->fx_addsy) : "(null)",
2512 fixP->fx_addsy ? S_GET_VALUE (fixP->fx_addsy) : 0);
2513
2514 return base;
886a2506 2515}
ea1562b3 2516
4670103e 2517/* Given a BFD relocation find the coresponding operand. */
ea1562b3 2518
4670103e
CZ
2519static const struct arc_operand *
2520find_operand_for_reloc (extended_bfd_reloc_code_real_type reloc)
2521{
2522 unsigned i;
ea1562b3 2523
4670103e
CZ
2524 for (i = 0; i < arc_num_operands; i++)
2525 if (arc_operands[i].default_reloc == reloc)
2526 return &arc_operands[i];
2527 return NULL;
2528}
ea1562b3 2529
4670103e 2530/* Insert an operand value into an instruction. */
ea1562b3 2531
4670103e
CZ
2532static unsigned
2533insert_operand (unsigned insn,
2534 const struct arc_operand *operand,
2535 offsetT val,
3b4dbbbf 2536 const char *file,
4670103e 2537 unsigned line)
886a2506 2538{
4670103e 2539 offsetT min = 0, max = 0;
ea1562b3 2540
4670103e
CZ
2541 if (operand->bits != 32
2542 && !(operand->flags & ARC_OPERAND_NCHK)
2543 && !(operand->flags & ARC_OPERAND_FAKE))
886a2506 2544 {
4670103e
CZ
2545 if (operand->flags & ARC_OPERAND_SIGNED)
2546 {
2547 max = (1 << (operand->bits - 1)) - 1;
2548 min = -(1 << (operand->bits - 1));
2549 }
2550 else
2551 {
2552 max = (1 << operand->bits) - 1;
2553 min = 0;
2554 }
886a2506 2555
4670103e
CZ
2556 if (val < min || val > max)
2557 as_bad_value_out_of_range (_("operand"),
2558 val, min, max, file, line);
2559 }
ea1562b3 2560
4670103e
CZ
2561 pr_debug ("insert field: %ld <= %ld <= %ld in 0x%08x\n",
2562 min, val, max, insn);
ea1562b3 2563
4670103e
CZ
2564 if ((operand->flags & ARC_OPERAND_ALIGNED32)
2565 && (val & 0x03))
2566 as_bad_where (file, line,
2567 _("Unaligned operand. Needs to be 32bit aligned"));
ea1562b3 2568
4670103e
CZ
2569 if ((operand->flags & ARC_OPERAND_ALIGNED16)
2570 && (val & 0x01))
2571 as_bad_where (file, line,
2572 _("Unaligned operand. Needs to be 16bit aligned"));
ea1562b3 2573
4670103e
CZ
2574 if (operand->insert)
2575 {
2576 const char *errmsg = NULL;
ea1562b3 2577
4670103e
CZ
2578 insn = (*operand->insert) (insn, val, &errmsg);
2579 if (errmsg)
2580 as_warn_where (file, line, "%s", errmsg);
2581 }
2582 else
2583 {
2584 if (operand->flags & ARC_OPERAND_TRUNCATE)
2585 {
2586 if (operand->flags & ARC_OPERAND_ALIGNED32)
2587 val >>= 2;
2588 if (operand->flags & ARC_OPERAND_ALIGNED16)
2589 val >>= 1;
886a2506 2590 }
4670103e
CZ
2591 insn |= ((val & ((1 << operand->bits) - 1)) << operand->shift);
2592 }
2593 return insn;
2594}
ea1562b3 2595
4670103e
CZ
2596/* Apply a fixup to the object code. At this point all symbol values
2597 should be fully resolved, and we attempt to completely resolve the
2598 reloc. If we can not do that, we determine the correct reloc code
2599 and put it back in the fixup. To indicate that a fixup has been
2600 eliminated, set fixP->fx_done. */
ea1562b3 2601
4670103e
CZ
2602void
2603md_apply_fix (fixS *fixP,
2604 valueT *valP,
2605 segT seg)
2606{
2607 char * const fixpos = fixP->fx_frag->fr_literal + fixP->fx_where;
2608 valueT value = *valP;
2609 unsigned insn = 0;
2610 symbolS *fx_addsy, *fx_subsy;
2611 offsetT fx_offset;
2612 segT add_symbol_segment = absolute_section;
2613 segT sub_symbol_segment = absolute_section;
2614 const struct arc_operand *operand = NULL;
2615 extended_bfd_reloc_code_real_type reloc;
886a2506 2616
4670103e
CZ
2617 pr_debug ("%s:%u: apply_fix: r_type=%d (%s) value=0x%lX offset=0x%lX\n",
2618 fixP->fx_file, fixP->fx_line, fixP->fx_r_type,
2619 ((int) fixP->fx_r_type < 0) ? "Internal":
2620 bfd_get_reloc_code_name (fixP->fx_r_type), value,
2621 fixP->fx_offset);
886a2506 2622
4670103e
CZ
2623 fx_addsy = fixP->fx_addsy;
2624 fx_subsy = fixP->fx_subsy;
2625 fx_offset = 0;
886a2506 2626
4670103e
CZ
2627 if (fx_addsy)
2628 {
2629 add_symbol_segment = S_GET_SEGMENT (fx_addsy);
886a2506
NC
2630 }
2631
4670103e
CZ
2632 if (fx_subsy
2633 && fixP->fx_r_type != BFD_RELOC_ARC_TLS_DTPOFF
2634 && fixP->fx_r_type != BFD_RELOC_ARC_TLS_DTPOFF_S9
2635 && fixP->fx_r_type != BFD_RELOC_ARC_TLS_GD_LD)
2636 {
2637 resolve_symbol_value (fx_subsy);
2638 sub_symbol_segment = S_GET_SEGMENT (fx_subsy);
886a2506 2639
4670103e
CZ
2640 if (sub_symbol_segment == absolute_section)
2641 {
2642 /* The symbol is really a constant. */
2643 fx_offset -= S_GET_VALUE (fx_subsy);
2644 fx_subsy = NULL;
2645 }
2646 else
2647 {
2648 as_bad_where (fixP->fx_file, fixP->fx_line,
2649 _("can't resolve `%s' {%s section} - `%s' {%s section}"),
2650 fx_addsy ? S_GET_NAME (fx_addsy) : "0",
2651 segment_name (add_symbol_segment),
2652 S_GET_NAME (fx_subsy),
2653 segment_name (sub_symbol_segment));
2654 return;
2655 }
2656 }
886a2506 2657
4670103e
CZ
2658 if (fx_addsy
2659 && !S_IS_WEAK (fx_addsy))
2660 {
2661 if (add_symbol_segment == seg
2662 && fixP->fx_pcrel)
2663 {
2664 value += S_GET_VALUE (fx_addsy);
2665 value -= md_pcrel_from_section (fixP, seg);
2666 fx_addsy = NULL;
2667 fixP->fx_pcrel = FALSE;
2668 }
2669 else if (add_symbol_segment == absolute_section)
2670 {
2671 value = fixP->fx_offset;
2672 fx_offset += S_GET_VALUE (fixP->fx_addsy);
2673 fx_addsy = NULL;
2674 fixP->fx_pcrel = FALSE;
2675 }
2676 }
886a2506 2677
4670103e
CZ
2678 if (!fx_addsy)
2679 fixP->fx_done = TRUE;
886a2506 2680
4670103e 2681 if (fixP->fx_pcrel)
886a2506 2682 {
4670103e
CZ
2683 if (fx_addsy
2684 && ((S_IS_DEFINED (fx_addsy)
2685 && S_GET_SEGMENT (fx_addsy) != seg)
2686 || S_IS_WEAK (fx_addsy)))
2687 value += md_pcrel_from_section (fixP, seg);
886a2506 2688
4670103e
CZ
2689 switch (fixP->fx_r_type)
2690 {
2691 case BFD_RELOC_ARC_32_ME:
2692 /* This is a pc-relative value in a LIMM. Adjust it to the
2693 address of the instruction not to the address of the
2694 LIMM. Note: it is not anylonger valid this afirmation as
2695 the linker consider ARC_PC32 a fixup to entire 64 bit
2696 insn. */
2697 fixP->fx_offset += fixP->fx_frag->fr_address;
2698 /* Fall through. */
2699 case BFD_RELOC_32:
2700 fixP->fx_r_type = BFD_RELOC_ARC_PC32;
2701 /* Fall through. */
2702 case BFD_RELOC_ARC_PC32:
2703 /* fixP->fx_offset += fixP->fx_where - fixP->fx_dot_value; */
886a2506
NC
2704 break;
2705 default:
4670103e
CZ
2706 if ((int) fixP->fx_r_type < 0)
2707 as_fatal (_("PC relative relocation not allowed for (internal) type %d"),
2708 fixP->fx_r_type);
886a2506 2709 break;
ea1562b3
NC
2710 }
2711 }
2712
4670103e
CZ
2713 pr_debug ("%s:%u: apply_fix: r_type=%d (%s) value=0x%lX offset=0x%lX\n",
2714 fixP->fx_file, fixP->fx_line, fixP->fx_r_type,
2715 ((int) fixP->fx_r_type < 0) ? "Internal":
2716 bfd_get_reloc_code_name (fixP->fx_r_type), value,
2717 fixP->fx_offset);
886a2506 2718
886a2506 2719
4670103e
CZ
2720 /* Now check for TLS relocations. */
2721 reloc = fixP->fx_r_type;
2722 switch (reloc)
886a2506 2723 {
4670103e
CZ
2724 case BFD_RELOC_ARC_TLS_DTPOFF:
2725 case BFD_RELOC_ARC_TLS_LE_32:
2726 if (fixP->fx_done)
2727 break;
2728 /* Fall through. */
2729 case BFD_RELOC_ARC_TLS_GD_GOT:
2730 case BFD_RELOC_ARC_TLS_IE_GOT:
2731 S_SET_THREAD_LOCAL (fixP->fx_addsy);
2732 break;
886a2506 2733
4670103e
CZ
2734 case BFD_RELOC_ARC_TLS_GD_LD:
2735 gas_assert (!fixP->fx_offset);
2736 if (fixP->fx_subsy)
2737 fixP->fx_offset
2738 = (S_GET_VALUE (fixP->fx_subsy)
2739 - fixP->fx_frag->fr_address- fixP->fx_where);
2740 fixP->fx_subsy = NULL;
2741 /* Fall through. */
2742 case BFD_RELOC_ARC_TLS_GD_CALL:
2743 /* These two relocs are there just to allow ld to change the tls
2744 model for this symbol, by patching the code. The offset -
2745 and scale, if any - will be installed by the linker. */
2746 S_SET_THREAD_LOCAL (fixP->fx_addsy);
2747 break;
886a2506 2748
4670103e
CZ
2749 case BFD_RELOC_ARC_TLS_LE_S9:
2750 case BFD_RELOC_ARC_TLS_DTPOFF_S9:
2751 as_bad (_("TLS_*_S9 relocs are not supported yet"));
2752 break;
2753
2754 default:
2755 break;
886a2506
NC
2756 }
2757
4670103e 2758 if (!fixP->fx_done)
886a2506 2759 {
4670103e 2760 return;
886a2506 2761 }
886a2506 2762
4670103e
CZ
2763 /* Addjust the value if we have a constant. */
2764 value += fx_offset;
886a2506 2765
4670103e
CZ
2766 /* For hosts with longs bigger than 32-bits make sure that the top
2767 bits of a 32-bit negative value read in by the parser are set,
2768 so that the correct comparisons are made. */
2769 if (value & 0x80000000)
2770 value |= (-1L << 31);
886a2506 2771
4670103e
CZ
2772 reloc = fixP->fx_r_type;
2773 switch (reloc)
2774 {
2775 case BFD_RELOC_8:
2776 case BFD_RELOC_16:
2777 case BFD_RELOC_24:
2778 case BFD_RELOC_32:
2779 case BFD_RELOC_64:
2780 case BFD_RELOC_ARC_32_PCREL:
2781 md_number_to_chars (fixpos, value, fixP->fx_size);
2782 return;
886a2506 2783
4670103e
CZ
2784 case BFD_RELOC_ARC_GOTPC32:
2785 /* I cannot fix an GOTPC relocation because I need to relax it
2786 from ld rx,[pcl,@sym@gotpc] to add rx,pcl,@sym@gotpc. */
2787 as_bad (_("Unsupported operation on reloc"));
2788 return;
886a2506 2789
4670103e
CZ
2790 case BFD_RELOC_ARC_TLS_DTPOFF:
2791 case BFD_RELOC_ARC_TLS_LE_32:
2792 gas_assert (!fixP->fx_addsy);
2793 gas_assert (!fixP->fx_subsy);
886a2506 2794
4670103e
CZ
2795 case BFD_RELOC_ARC_GOTOFF:
2796 case BFD_RELOC_ARC_32_ME:
2797 case BFD_RELOC_ARC_PC32:
2798 md_number_to_chars_midend (fixpos, value, fixP->fx_size);
2799 return;
886a2506 2800
4670103e
CZ
2801 case BFD_RELOC_ARC_PLT32:
2802 md_number_to_chars_midend (fixpos, value, fixP->fx_size);
2803 return;
886a2506 2804
4670103e
CZ
2805 case BFD_RELOC_ARC_S25H_PCREL_PLT:
2806 reloc = BFD_RELOC_ARC_S25W_PCREL;
2807 goto solve_plt;
886a2506 2808
4670103e
CZ
2809 case BFD_RELOC_ARC_S21H_PCREL_PLT:
2810 reloc = BFD_RELOC_ARC_S21H_PCREL;
2811 goto solve_plt;
886a2506 2812
4670103e
CZ
2813 case BFD_RELOC_ARC_S25W_PCREL_PLT:
2814 reloc = BFD_RELOC_ARC_S25W_PCREL;
2815 goto solve_plt;
886a2506 2816
4670103e
CZ
2817 case BFD_RELOC_ARC_S21W_PCREL_PLT:
2818 reloc = BFD_RELOC_ARC_S21W_PCREL;
886a2506 2819
4670103e
CZ
2820 case BFD_RELOC_ARC_S25W_PCREL:
2821 case BFD_RELOC_ARC_S21W_PCREL:
2822 case BFD_RELOC_ARC_S21H_PCREL:
2823 case BFD_RELOC_ARC_S25H_PCREL:
2824 case BFD_RELOC_ARC_S13_PCREL:
2825 solve_plt:
2826 operand = find_operand_for_reloc (reloc);
2827 gas_assert (operand);
886a2506
NC
2828 break;
2829
2830 default:
4670103e
CZ
2831 {
2832 if ((int) fixP->fx_r_type >= 0)
2833 as_fatal (_("unhandled relocation type %s"),
2834 bfd_get_reloc_code_name (fixP->fx_r_type));
886a2506 2835
4670103e
CZ
2836 /* The rest of these fixups needs to be completely resolved as
2837 constants. */
2838 if (fixP->fx_addsy != 0
2839 && S_GET_SEGMENT (fixP->fx_addsy) != absolute_section)
2840 as_bad_where (fixP->fx_file, fixP->fx_line,
2841 _("non-absolute expression in constant field"));
886a2506 2842
4670103e
CZ
2843 gas_assert (-(int) fixP->fx_r_type < (int) arc_num_operands);
2844 operand = &arc_operands[-(int) fixP->fx_r_type];
2845 break;
2846 }
2847 }
886a2506 2848
4670103e 2849 if (target_big_endian)
886a2506 2850 {
4670103e 2851 switch (fixP->fx_size)
886a2506 2852 {
4670103e
CZ
2853 case 4:
2854 insn = bfd_getb32 (fixpos);
2855 break;
2856 case 2:
2857 insn = bfd_getb16 (fixpos);
2858 break;
2859 default:
2860 as_bad_where (fixP->fx_file, fixP->fx_line,
2861 _("unknown fixup size"));
2862 }
2863 }
2864 else
2865 {
2866 insn = 0;
2867 switch (fixP->fx_size)
2868 {
2869 case 4:
2870 insn = bfd_getl16 (fixpos) << 16 | bfd_getl16 (fixpos + 2);
2871 break;
2872 case 2:
2873 insn = bfd_getl16 (fixpos);
2874 break;
2875 default:
2876 as_bad_where (fixP->fx_file, fixP->fx_line,
2877 _("unknown fixup size"));
886a2506
NC
2878 }
2879 }
886a2506 2880
4670103e
CZ
2881 insn = insert_operand (insn, operand, (offsetT) value,
2882 fixP->fx_file, fixP->fx_line);
886a2506 2883
4670103e
CZ
2884 md_number_to_chars_midend (fixpos, insn, fixP->fx_size);
2885}
886a2506 2886
4670103e 2887/* Prepare machine-dependent frags for relaxation.
886a2506 2888
4670103e
CZ
2889 Called just before relaxation starts. Any symbol that is now undefined
2890 will not become defined.
886a2506 2891
4670103e 2892 Return the correct fr_subtype in the frag.
886a2506 2893
4670103e
CZ
2894 Return the initial "guess for fr_var" to caller. The guess for fr_var
2895 is *actually* the growth beyond fr_fix. Whatever we do to grow fr_fix
2896 or fr_var contributes to our returned value.
886a2506 2897
4670103e
CZ
2898 Although it may not be explicit in the frag, pretend
2899 fr_var starts with a value. */
886a2506 2900
4670103e
CZ
2901int
2902md_estimate_size_before_relax (fragS *fragP,
2903 segT segment)
2904{
2905 int growth;
2906
2907 /* If the symbol is not located within the same section AND it's not
2908 an absolute section, use the maximum. OR if the symbol is a
2909 constant AND the insn is by nature not pc-rel, use the maximum.
2910 OR if the symbol is being equated against another symbol, use the
2911 maximum. OR if the symbol is weak use the maximum. */
2912 if ((S_GET_SEGMENT (fragP->fr_symbol) != segment
2913 && S_GET_SEGMENT (fragP->fr_symbol) != absolute_section)
2914 || (symbol_constant_p (fragP->fr_symbol)
2915 && !fragP->tc_frag_data.pcrel)
2916 || symbol_equated_p (fragP->fr_symbol)
2917 || S_IS_WEAK (fragP->fr_symbol))
2918 {
2919 while (md_relax_table[fragP->fr_subtype].rlx_more != ARC_RLX_NONE)
2920 ++fragP->fr_subtype;
2921 }
886a2506 2922
4670103e
CZ
2923 growth = md_relax_table[fragP->fr_subtype].rlx_length;
2924 fragP->fr_var = growth;
886a2506 2925
4670103e
CZ
2926 pr_debug ("%s:%d: md_estimate_size_before_relax: %d\n",
2927 fragP->fr_file, fragP->fr_line, growth);
886a2506 2928
4670103e
CZ
2929 return growth;
2930}
886a2506 2931
4670103e
CZ
2932/* Translate internal representation of relocation info to BFD target
2933 format. */
886a2506 2934
4670103e
CZ
2935arelent *
2936tc_gen_reloc (asection *section ATTRIBUTE_UNUSED,
2937 fixS *fixP)
2938{
2939 arelent *reloc;
2940 bfd_reloc_code_real_type code;
886a2506 2941
add39d23
TS
2942 reloc = XNEW (arelent);
2943 reloc->sym_ptr_ptr = XNEW (asymbol *);
4670103e
CZ
2944 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixP->fx_addsy);
2945 reloc->address = fixP->fx_frag->fr_address + fixP->fx_where;
886a2506 2946
4670103e
CZ
2947 /* Make sure none of our internal relocations make it this far.
2948 They'd better have been fully resolved by this point. */
2949 gas_assert ((int) fixP->fx_r_type > 0);
886a2506 2950
4670103e 2951 code = fixP->fx_r_type;
886a2506 2952
4670103e
CZ
2953 /* if we have something like add gp, pcl,
2954 _GLOBAL_OFFSET_TABLE_@gotpc. */
2955 if (code == BFD_RELOC_ARC_GOTPC32
2956 && GOT_symbol
2957 && fixP->fx_addsy == GOT_symbol)
2958 code = BFD_RELOC_ARC_GOTPC;
886a2506 2959
4670103e
CZ
2960 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
2961 if (reloc->howto == NULL)
886a2506 2962 {
4670103e
CZ
2963 as_bad_where (fixP->fx_file, fixP->fx_line,
2964 _("cannot represent `%s' relocation in object file"),
2965 bfd_get_reloc_code_name (code));
2966 return NULL;
2967 }
886a2506 2968
4670103e
CZ
2969 if (!fixP->fx_pcrel != !reloc->howto->pc_relative)
2970 as_fatal (_("internal error? cannot generate `%s' relocation"),
2971 bfd_get_reloc_code_name (code));
886a2506 2972
4670103e 2973 gas_assert (!fixP->fx_pcrel == !reloc->howto->pc_relative);
886a2506 2974
4670103e
CZ
2975 if (code == BFD_RELOC_ARC_TLS_DTPOFF
2976 || code == BFD_RELOC_ARC_TLS_DTPOFF_S9)
2977 {
2978 asymbol *sym
2979 = fixP->fx_subsy ? symbol_get_bfdsym (fixP->fx_subsy) : NULL;
2980 /* We just want to store a 24 bit index, but we have to wait
2981 till after write_contents has been called via
2982 bfd_map_over_sections before we can get the index from
2983 _bfd_elf_symbol_from_bfd_symbol. Thus, the write_relocs
2984 function is elf32-arc.c has to pick up the slack.
2985 Unfortunately, this leads to problems with hosts that have
2986 pointers wider than long (bfd_vma). There would be various
2987 ways to handle this, all error-prone :-( */
2988 reloc->addend = (bfd_vma) sym;
2989 if ((asymbol *) reloc->addend != sym)
2990 {
2991 as_bad ("Can't store pointer\n");
2992 return NULL;
886a2506
NC
2993 }
2994 }
4670103e
CZ
2995 else
2996 reloc->addend = fixP->fx_offset;
2997
2998 return reloc;
886a2506
NC
2999}
3000
4670103e
CZ
3001/* Perform post-processing of machine-dependent frags after relaxation.
3002 Called after relaxation is finished.
3003 In: Address of frag.
3004 fr_type == rs_machine_dependent.
3005 fr_subtype is what the address relaxed to.
886a2506 3006
4670103e
CZ
3007 Out: Any fixS:s and constants are set up. */
3008
3009void
3010md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
3011 segT segment ATTRIBUTE_UNUSED,
3012 fragS *fragP)
886a2506 3013{
4670103e
CZ
3014 const relax_typeS *table_entry;
3015 char *dest;
3016 const struct arc_opcode *opcode;
3017 struct arc_insn insn;
3018 int size, fix;
3019 struct arc_relax_type *relax_arg = &fragP->tc_frag_data;
886a2506 3020
4670103e
CZ
3021 fix = (fragP->fr_fix < 0 ? 0 : fragP->fr_fix);
3022 dest = fragP->fr_literal + fix;
3023 table_entry = TC_GENERIC_RELAX_TABLE + fragP->fr_subtype;
886a2506 3024
9e32d9ae
AB
3025 pr_debug ("%s:%d: md_convert_frag, subtype: %d, fix: %d, "
3026 "var: %"BFD_VMA_FMT"d\n",
4670103e
CZ
3027 fragP->fr_file, fragP->fr_line,
3028 fragP->fr_subtype, fix, fragP->fr_var);
886a2506 3029
4670103e
CZ
3030 if (fragP->fr_subtype <= 0
3031 && fragP->fr_subtype >= arc_num_relax_opcodes)
3032 as_fatal (_("no relaxation found for this instruction."));
886a2506 3033
4670103e 3034 opcode = &arc_relax_opcodes[fragP->fr_subtype];
886a2506 3035
4670103e
CZ
3036 assemble_insn (opcode, relax_arg->tok, relax_arg->ntok, relax_arg->pflags,
3037 relax_arg->nflg, &insn);
886a2506 3038
4670103e 3039 apply_fixups (&insn, fragP, fix);
886a2506 3040
4670103e
CZ
3041 size = insn.short_insn ? (insn.has_limm ? 6 : 2) : (insn.has_limm ? 8 : 4);
3042 gas_assert (table_entry->rlx_length == size);
3043 emit_insn0 (&insn, dest, TRUE);
886a2506 3044
4670103e
CZ
3045 fragP->fr_fix += table_entry->rlx_length;
3046 fragP->fr_var = 0;
886a2506
NC
3047}
3048
4670103e
CZ
3049/* We have no need to default values of symbols. We could catch
3050 register names here, but that is handled by inserting them all in
3051 the symbol table to begin with. */
886a2506 3052
4670103e
CZ
3053symbolS *
3054md_undefined_symbol (char *name)
886a2506 3055{
4670103e
CZ
3056 /* The arc abi demands that a GOT[0] should be referencible as
3057 [pc+_DYNAMIC@gotpc]. Hence we convert a _DYNAMIC@gotpc to a
3058 GOTPC reference to _GLOBAL_OFFSET_TABLE_. */
3059 if (((*name == '_')
3060 && (*(name+1) == 'G')
3061 && (strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0))
3062 || ((*name == '_')
3063 && (*(name+1) == 'D')
3064 && (strcmp (name, DYNAMIC_STRUCT_NAME) == 0)))
886a2506 3065 {
4670103e
CZ
3066 if (!GOT_symbol)
3067 {
3068 if (symbol_find (name))
3069 as_bad ("GOT already in symbol table");
3070
3071 GOT_symbol = symbol_new (GLOBAL_OFFSET_TABLE_NAME, undefined_section,
3072 (valueT) 0, &zero_address_frag);
3073 };
3074 return GOT_symbol;
886a2506 3075 }
4670103e 3076 return NULL;
886a2506
NC
3077}
3078
4670103e
CZ
3079/* Turn a string in input_line_pointer into a floating point constant
3080 of type type, and store the appropriate bytes in *litP. The number
3081 of LITTLENUMS emitted is stored in *sizeP. An error message is
3082 returned, or NULL on OK. */
886a2506 3083
6d4af3c2 3084const char *
4670103e 3085md_atof (int type, char *litP, int *sizeP)
886a2506 3086{
4670103e
CZ
3087 return ieee_md_atof (type, litP, sizeP, target_big_endian);
3088}
886a2506 3089
4670103e
CZ
3090/* Called for any expression that can not be recognized. When the
3091 function is called, `input_line_pointer' will point to the start of
3092 the expression. */
886a2506 3093
4670103e
CZ
3094void
3095md_operand (expressionS *expressionP ATTRIBUTE_UNUSED)
3096{
3097 char *p = input_line_pointer;
3098 if (*p == '@')
886a2506 3099 {
4670103e
CZ
3100 input_line_pointer++;
3101 expressionP->X_op = O_symbol;
3102 expression (expressionP);
3103 }
3104}
886a2506 3105
4670103e
CZ
3106/* This function is called from the function 'expression', it attempts
3107 to parse special names (in our case register names). It fills in
3108 the expression with the identified register. It returns TRUE if
3109 it is a register and FALSE otherwise. */
886a2506 3110
4670103e
CZ
3111bfd_boolean
3112arc_parse_name (const char *name,
3113 struct expressionS *e)
3114{
3115 struct symbol *sym;
886a2506 3116
4670103e
CZ
3117 if (!assembling_insn)
3118 return FALSE;
886a2506 3119
4670103e
CZ
3120 /* Handle only registers. */
3121 if (e->X_op != O_absent)
3122 return FALSE;
886a2506 3123
4670103e
CZ
3124 sym = hash_find (arc_reg_hash, name);
3125 if (sym)
3126 {
3127 e->X_op = O_register;
3128 e->X_add_number = S_GET_VALUE (sym);
3129 return TRUE;
3130 }
3131 return FALSE;
3132}
886a2506 3133
4670103e
CZ
3134/* md_parse_option
3135 Invocation line includes a switch not recognized by the base assembler.
3136 See if it's a processor-specific option.
886a2506 3137
4670103e 3138 New options (supported) are:
886a2506 3139
4670103e
CZ
3140 -mcpu=<cpu name> Assemble for selected processor
3141 -EB/-mbig-endian Big-endian
3142 -EL/-mlittle-endian Little-endian
3143 -mrelax Enable relaxation
886a2506 3144
4670103e
CZ
3145 The following CPU names are recognized:
3146 arc700, av2em, av2hs. */
886a2506 3147
4670103e 3148int
17b9d67d 3149md_parse_option (int c, const char *arg ATTRIBUTE_UNUSED)
4670103e 3150{
4670103e
CZ
3151 switch (c)
3152 {
3153 case OPTION_ARC600:
3154 case OPTION_ARC601:
3155 return md_parse_option (OPTION_MCPU, "arc600");
886a2506 3156
4670103e
CZ
3157 case OPTION_ARC700:
3158 return md_parse_option (OPTION_MCPU, "arc700");
886a2506 3159
4670103e
CZ
3160 case OPTION_ARCEM:
3161 return md_parse_option (OPTION_MCPU, "arcem");
886a2506 3162
4670103e
CZ
3163 case OPTION_ARCHS:
3164 return md_parse_option (OPTION_MCPU, "archs");
886a2506 3165
4670103e
CZ
3166 case OPTION_MCPU:
3167 {
24740d83 3168 arc_select_cpu (arg);
1adc8a9a 3169 mach_type_specified_p = TRUE;
4670103e
CZ
3170 break;
3171 }
886a2506 3172
4670103e
CZ
3173 case OPTION_EB:
3174 arc_target_format = "elf32-bigarc";
3175 byte_order = BIG_ENDIAN;
3176 break;
886a2506 3177
4670103e
CZ
3178 case OPTION_EL:
3179 arc_target_format = "elf32-littlearc";
3180 byte_order = LITTLE_ENDIAN;
3181 break;
886a2506 3182
4670103e
CZ
3183 case OPTION_CD:
3184 /* This option has an effect only on ARC EM. */
3185 if (arc_target & ARC_OPCODE_ARCv2EM)
3186 arc_features |= ARC_CD;
8ddf6b2a
CZ
3187 else
3188 as_warn (_("Code density option invalid for selected CPU"));
4670103e 3189 break;
886a2506 3190
4670103e
CZ
3191 case OPTION_RELAX:
3192 relaxation_state = 1;
3193 break;
886a2506 3194
4670103e
CZ
3195 case OPTION_USER_MODE:
3196 case OPTION_LD_EXT_MASK:
3197 case OPTION_SWAP:
3198 case OPTION_NORM:
3199 case OPTION_BARREL_SHIFT:
3200 case OPTION_MIN_MAX:
3201 case OPTION_NO_MPY:
3202 case OPTION_EA:
3203 case OPTION_MUL64:
3204 case OPTION_SIMD:
8ddf6b2a
CZ
3205 /* Dummy options are accepted but have no effect. */
3206 break;
3207
4670103e 3208 case OPTION_SPFP:
8ddf6b2a
CZ
3209 arc_features |= ARC_SPFP;
3210 break;
3211
4670103e 3212 case OPTION_DPFP:
8ddf6b2a
CZ
3213 arc_features |= ARC_DPFP;
3214 break;
3215
4670103e
CZ
3216 case OPTION_XMAC_D16:
3217 case OPTION_XMAC_24:
3218 case OPTION_DSP_PACKA:
3219 case OPTION_CRC:
3220 case OPTION_DVBF:
3221 case OPTION_TELEPHONY:
3222 case OPTION_XYMEMORY:
3223 case OPTION_LOCK:
3224 case OPTION_SWAPE:
3225 case OPTION_RTSC:
4670103e
CZ
3226 /* Dummy options are accepted but have no effect. */
3227 break;
886a2506 3228
8ddf6b2a
CZ
3229 case OPTION_FPUDA:
3230 /* This option has an effect only on ARC EM. */
3231 if (arc_target & ARC_OPCODE_ARCv2EM)
3232 arc_features |= ARC_FPUDA;
3233 else
3234 as_warn (_("FPUDA invalid for selected CPU"));
3235 break;
3236
4670103e
CZ
3237 default:
3238 return 0;
3239 }
886a2506 3240
4670103e
CZ
3241 return 1;
3242}
886a2506 3243
4670103e
CZ
3244void
3245md_show_usage (FILE *stream)
3246{
3247 fprintf (stream, _("ARC-specific assembler options:\n"));
886a2506 3248
4670103e
CZ
3249 fprintf (stream, " -mcpu=<cpu name>\t assemble for CPU <cpu name>\n");
3250 fprintf (stream,
3251 " -mcode-density\t enable code density option for ARC EM\n");
3252
3253 fprintf (stream, _("\
3254 -EB assemble code for a big-endian cpu\n"));
3255 fprintf (stream, _("\
3256 -EL assemble code for a little-endian cpu\n"));
3257 fprintf (stream, _("\
3258 -mrelax Enable relaxation\n"));
886a2506 3259
886a2506
NC
3260}
3261
3262/* Find the proper relocation for the given opcode. */
3263
3264static extended_bfd_reloc_code_real_type
3265find_reloc (const char *name,
3266 const char *opcodename,
3267 const struct arc_flags *pflags,
3268 int nflg,
3269 extended_bfd_reloc_code_real_type reloc)
3270{
3271 unsigned int i;
3272 int j;
24b368f8 3273 bfd_boolean found_flag, tmp;
886a2506
NC
3274 extended_bfd_reloc_code_real_type ret = BFD_RELOC_UNUSED;
3275
3276 for (i = 0; i < arc_num_equiv_tab; i++)
3277 {
3278 const struct arc_reloc_equiv_tab *r = &arc_reloc_equiv[i];
3279
3280 /* Find the entry. */
3281 if (strcmp (name, r->name))
3282 continue;
3283 if (r->mnemonic && (strcmp (r->mnemonic, opcodename)))
3284 continue;
24b368f8 3285 if (r->flags[0])
886a2506
NC
3286 {
3287 if (!nflg)
3288 continue;
3289 found_flag = FALSE;
24b368f8
CZ
3290 unsigned * psflg = (unsigned *)r->flags;
3291 do
3292 {
3293 tmp = FALSE;
3294 for (j = 0; j < nflg; j++)
3295 if (!strcmp (pflags[j].name,
3296 arc_flag_operands[*psflg].name))
3297 {
3298 tmp = TRUE;
3299 break;
3300 }
3301 if (!tmp)
3302 {
3303 found_flag = FALSE;
3304 break;
3305 }
3306 else
3307 {
3308 found_flag = TRUE;
3309 }
3310 ++ psflg;
3311 } while (*psflg);
3312
886a2506
NC
3313 if (!found_flag)
3314 continue;
3315 }
3316
3317 if (reloc != r->oldreloc)
3318 continue;
3319 /* Found it. */
3320 ret = r->newreloc;
3321 break;
3322 }
3323
3324 if (ret == BFD_RELOC_UNUSED)
3325 as_bad (_("Unable to find %s relocation for instruction %s"),
3326 name, opcodename);
3327 return ret;
3328}
3329
4670103e
CZ
3330/* All the symbol types that are allowed to be used for
3331 relaxation. */
3332
3333static bfd_boolean
3334may_relax_expr (expressionS tok)
3335{
3336 /* Check if we have unrelaxable relocs. */
3337 switch (tok.X_md)
3338 {
3339 default:
3340 break;
3341 case O_plt:
3342 return FALSE;
3343 }
3344
3345 switch (tok.X_op)
3346 {
3347 case O_symbol:
3348 case O_multiply:
3349 case O_divide:
3350 case O_modulus:
3351 case O_add:
3352 case O_subtract:
3353 break;
3354
3355 default:
3356 return FALSE;
3357 }
3358 return TRUE;
3359}
3360
3361/* Checks if flags are in line with relaxable insn. */
3362
3363static bfd_boolean
3364relaxable_flag (const struct arc_relaxable_ins *ins,
3365 const struct arc_flags *pflags,
3366 int nflgs)
3367{
3368 unsigned flag_class,
3369 flag,
3370 flag_class_idx = 0,
3371 flag_idx = 0;
3372
3373 const struct arc_flag_operand *flag_opand;
3374 int i, counttrue = 0;
3375
3376 /* Iterate through flags classes. */
3377 while ((flag_class = ins->flag_classes[flag_class_idx]) != 0)
3378 {
3379 /* Iterate through flags in flag class. */
3380 while ((flag = arc_flag_classes[flag_class].flags[flag_idx])
3381 != 0)
3382 {
3383 flag_opand = &arc_flag_operands[flag];
3384 /* Iterate through flags in ins to compare. */
3385 for (i = 0; i < nflgs; ++i)
3386 {
3387 if (strcmp (flag_opand->name, pflags[i].name) == 0)
3388 ++counttrue;
3389 }
3390
3391 ++flag_idx;
3392 }
3393
3394 ++flag_class_idx;
3395 flag_idx = 0;
3396 }
3397
3398 /* If counttrue == nflgs, then all flags have been found. */
3399 return (counttrue == nflgs ? TRUE : FALSE);
3400}
3401
3402/* Checks if operands are in line with relaxable insn. */
3403
3404static bfd_boolean
3405relaxable_operand (const struct arc_relaxable_ins *ins,
3406 const expressionS *tok,
3407 int ntok)
3408{
3409 const enum rlx_operand_type *operand = &ins->operands[0];
3410 int i = 0;
3411
3412 while (*operand != EMPTY)
3413 {
3414 const expressionS *epr = &tok[i];
3415
3416 if (i != 0 && i >= ntok)
3417 return FALSE;
3418
3419 switch (*operand)
3420 {
3421 case IMMEDIATE:
3422 if (!(epr->X_op == O_multiply
3423 || epr->X_op == O_divide
3424 || epr->X_op == O_modulus
3425 || epr->X_op == O_add
3426 || epr->X_op == O_subtract
3427 || epr->X_op == O_symbol))
3428 return FALSE;
3429 break;
3430
3431 case REGISTER_DUP:
3432 if ((i <= 0)
3433 || (epr->X_add_number != tok[i - 1].X_add_number))
3434 return FALSE;
3435 /* Fall through. */
3436 case REGISTER:
3437 if (epr->X_op != O_register)
3438 return FALSE;
3439 break;
3440
3441 case REGISTER_S:
3442 if (epr->X_op != O_register)
3443 return FALSE;
3444
3445 switch (epr->X_add_number)
3446 {
3447 case 0: case 1: case 2: case 3:
3448 case 12: case 13: case 14: case 15:
3449 break;
3450 default:
3451 return FALSE;
3452 }
3453 break;
3454
3455 case REGISTER_NO_GP:
3456 if ((epr->X_op != O_register)
3457 || (epr->X_add_number == 26)) /* 26 is the gp register. */
3458 return FALSE;
3459 break;
3460
3461 case BRACKET:
3462 if (epr->X_op != O_bracket)
3463 return FALSE;
3464 break;
3465
3466 default:
3467 /* Don't understand, bail out. */
3468 return FALSE;
3469 break;
3470 }
3471
3472 ++i;
3473 operand = &ins->operands[i];
3474 }
3475
3476 return (i == ntok ? TRUE : FALSE);
3477}
3478
3479/* Return TRUE if this OPDCODE is a candidate for relaxation. */
3480
3481static bfd_boolean
3482relax_insn_p (const struct arc_opcode *opcode,
3483 const expressionS *tok,
3484 int ntok,
3485 const struct arc_flags *pflags,
3486 int nflg)
3487{
3488 unsigned i;
3489 bfd_boolean rv = FALSE;
3490
3491 /* Check the relaxation table. */
3492 for (i = 0; i < arc_num_relaxable_ins && relaxation_state; ++i)
3493 {
3494 const struct arc_relaxable_ins *arc_rlx_ins = &arc_relaxable_insns[i];
3495
3496 if ((strcmp (opcode->name, arc_rlx_ins->mnemonic_r) == 0)
3497 && may_relax_expr (tok[arc_rlx_ins->opcheckidx])
3498 && relaxable_operand (arc_rlx_ins, tok, ntok)
3499 && relaxable_flag (arc_rlx_ins, pflags, nflg))
3500 {
3501 rv = TRUE;
3502 frag_now->fr_subtype = arc_relaxable_insns[i].subtype;
3503 memcpy (&frag_now->tc_frag_data.tok, tok,
3504 sizeof (expressionS) * ntok);
3505 memcpy (&frag_now->tc_frag_data.pflags, pflags,
3506 sizeof (struct arc_flags) * nflg);
3507 frag_now->tc_frag_data.nflg = nflg;
3508 frag_now->tc_frag_data.ntok = ntok;
3509 break;
3510 }
3511 }
3512
3513 return rv;
3514}
3515
886a2506
NC
3516/* Turn an opcode description and a set of arguments into
3517 an instruction and a fixup. */
3518
3519static void
3520assemble_insn (const struct arc_opcode *opcode,
3521 const expressionS *tok,
3522 int ntok,
3523 const struct arc_flags *pflags,
3524 int nflg,
3525 struct arc_insn *insn)
3526{
3527 const expressionS *reloc_exp = NULL;
3528 unsigned image;
3529 const unsigned char *argidx;
3530 int i;
3531 int tokidx = 0;
3532 unsigned char pcrel = 0;
3533 bfd_boolean needGOTSymbol;
3534 bfd_boolean has_delay_slot = FALSE;
3535 extended_bfd_reloc_code_real_type reloc = BFD_RELOC_UNUSED;
3536
3537 memset (insn, 0, sizeof (*insn));
3538 image = opcode->opcode;
3539
3540 pr_debug ("%s:%d: assemble_insn: %s using opcode %x\n",
3541 frag_now->fr_file, frag_now->fr_line, opcode->name,
3542 opcode->opcode);
3543
3544 /* Handle operands. */
3545 for (argidx = opcode->operands; *argidx; ++argidx)
3546 {
3547 const struct arc_operand *operand = &arc_operands[*argidx];
3548 const expressionS *t = (const expressionS *) 0;
3549
3550 if ((operand->flags & ARC_OPERAND_FAKE)
3551 && !(operand->flags & ARC_OPERAND_BRAKET))
3552 continue;
3553
3554 if (operand->flags & ARC_OPERAND_DUPLICATE)
3555 {
3556 /* Duplicate operand, already inserted. */
3557 tokidx ++;
3558 continue;
3559 }
3560
3561 if (tokidx >= ntok)
3562 {
3563 abort ();
3564 }
3565 else
3566 t = &tok[tokidx++];
3567
3568 /* Regardless if we have a reloc or not mark the instruction
3569 limm if it is the case. */
3570 if (operand->flags & ARC_OPERAND_LIMM)
3571 insn->has_limm = TRUE;
3572
3573 switch (t->X_op)
3574 {
3575 case O_register:
3576 image = insert_operand (image, operand, regno (t->X_add_number),
3577 NULL, 0);
3578 break;
3579
3580 case O_constant:
3581 image = insert_operand (image, operand, t->X_add_number, NULL, 0);
3582 reloc_exp = t;
3583 if (operand->flags & ARC_OPERAND_LIMM)
3584 insn->limm = t->X_add_number;
3585 break;
3586
3587 case O_bracket:
3588 /* Ignore brackets. */
3589 break;
3590
3591 case O_absent:
3592 gas_assert (operand->flags & ARC_OPERAND_IGNORE);
3593 break;
3594
3595 case O_subtract:
3596 /* Maybe register range. */
3597 if ((t->X_add_number == 0)
3598 && contains_register (t->X_add_symbol)
3599 && contains_register (t->X_op_symbol))
3600 {
3601 int regs;
3602
3603 regs = get_register (t->X_add_symbol);
3604 regs <<= 16;
3605 regs |= get_register (t->X_op_symbol);
3606 image = insert_operand (image, operand, regs, NULL, 0);
3607 break;
3608 }
3609
3610 default:
3611 /* This operand needs a relocation. */
3612 needGOTSymbol = FALSE;
3613
3614 switch (t->X_md)
3615 {
3616 case O_plt:
6ec1f282
CZ
3617 if (opcode->class == JUMP)
3618 as_bad_where (frag_now->fr_file, frag_now->fr_line,
3619 _("Unable to use @plt relocatio for insn %s"),
3620 opcode->name);
886a2506
NC
3621 needGOTSymbol = TRUE;
3622 reloc = find_reloc ("plt", opcode->name,
3623 pflags, nflg,
3624 operand->default_reloc);
3625 break;
3626
3627 case O_gotoff:
3628 case O_gotpc:
3629 needGOTSymbol = TRUE;
3630 reloc = ARC_RELOC_TABLE (t->X_md)->reloc;
3631 break;
3632 case O_pcl:
3633 reloc = ARC_RELOC_TABLE (t->X_md)->reloc;
6ec1f282 3634 if (ARC_SHORT (opcode->mask) || opcode->class == JUMP)
886a2506
NC
3635 as_bad_where (frag_now->fr_file, frag_now->fr_line,
3636 _("Unable to use @pcl relocation for insn %s"),
3637 opcode->name);
3638 break;
3639 case O_sda:
3640 reloc = find_reloc ("sda", opcode->name,
3641 pflags, nflg,
3642 operand->default_reloc);
3643 break;
3644 case O_tlsgd:
3645 case O_tlsie:
3646 needGOTSymbol = TRUE;
3647 /* Fall-through. */
3648
3649 case O_tpoff:
3650 case O_dtpoff:
3651 reloc = ARC_RELOC_TABLE (t->X_md)->reloc;
3652 break;
3653
3654 case O_tpoff9: /*FIXME! Check for the conditionality of
3655 the insn. */
3656 case O_dtpoff9: /*FIXME! Check for the conditionality of
3657 the insn. */
3658 as_bad (_("TLS_*_S9 relocs are not supported yet"));
3659 break;
3660
3661 default:
3662 /* Just consider the default relocation. */
3663 reloc = operand->default_reloc;
3664 break;
3665 }
3666
3667 if (needGOTSymbol && (GOT_symbol == NULL))
3668 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
3669
3670 reloc_exp = t;
3671
3672#if 0
3673 if (reloc > 0)
3674 {
3675 /* sanity checks. */
3676 reloc_howto_type *reloc_howto
3677 = bfd_reloc_type_lookup (stdoutput,
3678 (bfd_reloc_code_real_type) reloc);
3679 unsigned reloc_bitsize = reloc_howto->bitsize;
3680 if (reloc_howto->rightshift)
3681 reloc_bitsize -= reloc_howto->rightshift;
3682 if (reloc_bitsize != operand->bits)
3683 {
3684 as_bad (_("invalid relocation %s for field"),
3685 bfd_get_reloc_code_name (reloc));
3686 return;
3687 }
3688 }
3689#endif
3690 if (insn->nfixups >= MAX_INSN_FIXUPS)
3691 as_fatal (_("too many fixups"));
3692
3693 struct arc_fixup *fixup;
3694 fixup = &insn->fixups[insn->nfixups++];
3695 fixup->exp = *t;
3696 fixup->reloc = reloc;
3697 pcrel = (operand->flags & ARC_OPERAND_PCREL) ? 1 : 0;
3698 fixup->pcrel = pcrel;
3699 fixup->islong = (operand->flags & ARC_OPERAND_LIMM) ?
3700 TRUE : FALSE;
3701 break;
3702 }
3703 }
3704
3705 /* Handle flags. */
3706 for (i = 0; i < nflg; i++)
3707 {
f36e33da 3708 const struct arc_flag_operand *flg_operand = pflags[i].flgp;
886a2506
NC
3709
3710 /* Check if the instruction has a delay slot. */
3711 if (!strcmp (flg_operand->name, "d"))
3712 has_delay_slot = TRUE;
3713
3714 /* There is an exceptional case when we cannot insert a flag
3715 just as it is. The .T flag must be handled in relation with
3716 the relative address. */
3717 if (!strcmp (flg_operand->name, "t")
3718 || !strcmp (flg_operand->name, "nt"))
3719 {
3720 unsigned bitYoperand = 0;
3721 /* FIXME! move selection bbit/brcc in arc-opc.c. */
3722 if (!strcmp (flg_operand->name, "t"))
3723 if (!strcmp (opcode->name, "bbit0")
3724 || !strcmp (opcode->name, "bbit1"))
3725 bitYoperand = arc_NToperand;
3726 else
3727 bitYoperand = arc_Toperand;
3728 else
3729 if (!strcmp (opcode->name, "bbit0")
3730 || !strcmp (opcode->name, "bbit1"))
3731 bitYoperand = arc_Toperand;
3732 else
3733 bitYoperand = arc_NToperand;
3734
3735 gas_assert (reloc_exp != NULL);
3736 if (reloc_exp->X_op == O_constant)
3737 {
3738 /* Check if we have a constant and solved it
3739 immediately. */
3740 offsetT val = reloc_exp->X_add_number;
3741 image |= insert_operand (image, &arc_operands[bitYoperand],
3742 val, NULL, 0);
3743 }
3744 else
3745 {
3746 struct arc_fixup *fixup;
3747
3748 if (insn->nfixups >= MAX_INSN_FIXUPS)
3749 as_fatal (_("too many fixups"));
3750
3751 fixup = &insn->fixups[insn->nfixups++];
3752 fixup->exp = *reloc_exp;
3753 fixup->reloc = -bitYoperand;
3754 fixup->pcrel = pcrel;
3755 fixup->islong = FALSE;
3756 }
3757 }
3758 else
3759 image |= (flg_operand->code & ((1 << flg_operand->bits) - 1))
3760 << flg_operand->shift;
3761 }
3762
4670103e
CZ
3763 insn->relax = relax_insn_p (opcode, tok, ntok, pflags, nflg);
3764
886a2506
NC
3765 /* Short instruction? */
3766 insn->short_insn = ARC_SHORT (opcode->mask) ? TRUE : FALSE;
3767
3768 insn->insn = image;
3769
3770 /* Update last insn status. */
3771 arc_last_insns[1] = arc_last_insns[0];
3772 arc_last_insns[0].opcode = opcode;
3773 arc_last_insns[0].has_limm = insn->has_limm;
3774 arc_last_insns[0].has_delay_slot = has_delay_slot;
3775
3776 /* Check if the current instruction is legally used. */
3777 if (arc_last_insns[1].has_delay_slot
3778 && is_br_jmp_insn_p (arc_last_insns[0].opcode))
3779 as_bad_where (frag_now->fr_file, frag_now->fr_line,
3780 _("A jump/branch instruction in delay slot."));
3781}
3782
886a2506
NC
3783void
3784arc_handle_align (fragS* fragP)
3785{
3786 if ((fragP)->fr_type == rs_align_code)
3787 {
3788 char *dest = (fragP)->fr_literal + (fragP)->fr_fix;
3789 valueT count = ((fragP)->fr_next->fr_address
3790 - (fragP)->fr_address - (fragP)->fr_fix);
3791
3792 (fragP)->fr_var = 2;
3793
3794 if (count & 1)/* Padding in the gap till the next 2-byte
3795 boundary with 0s. */
3796 {
3797 (fragP)->fr_fix++;
3798 *dest++ = 0;
3799 }
3800 /* Writing nop_s. */
3801 md_number_to_chars (dest, NOP_OPCODE_S, 2);
3802 }
3803}
3804
3805/* Here we decide which fixups can be adjusted to make them relative
3806 to the beginning of the section instead of the symbol. Basically
3807 we need to make sure that the dynamic relocations are done
3808 correctly, so in some cases we force the original symbol to be
3809 used. */
3810
3811int
3812tc_arc_fix_adjustable (fixS *fixP)
3813{
3814
3815 /* Prevent all adjustments to global symbols. */
3816 if (S_IS_EXTERNAL (fixP->fx_addsy))
3817 return 0;
3818 if (S_IS_WEAK (fixP->fx_addsy))
3819 return 0;
3820
3821 /* Adjust_reloc_syms doesn't know about the GOT. */
3822 switch (fixP->fx_r_type)
3823 {
3824 case BFD_RELOC_ARC_GOTPC32:
3825 case BFD_RELOC_ARC_PLT32:
3826 case BFD_RELOC_ARC_S25H_PCREL_PLT:
3827 case BFD_RELOC_ARC_S21H_PCREL_PLT:
3828 case BFD_RELOC_ARC_S25W_PCREL_PLT:
3829 case BFD_RELOC_ARC_S21W_PCREL_PLT:
3830 return 0;
3831
3832 default:
3833 break;
3834 }
3835
841fdfcd 3836 return 1;
886a2506
NC
3837}
3838
3839/* Compute the reloc type of an expression EXP. */
3840
3841static void
3842arc_check_reloc (expressionS *exp,
3843 bfd_reloc_code_real_type *r_type_p)
3844{
3845 if (*r_type_p == BFD_RELOC_32
3846 && exp->X_op == O_subtract
3847 && exp->X_op_symbol != NULL
3848 && exp->X_op_symbol->bsym->section == now_seg)
6f4b1afc 3849 *r_type_p = BFD_RELOC_ARC_32_PCREL;
886a2506
NC
3850}
3851
3852
3853/* Add expression EXP of SIZE bytes to offset OFF of fragment FRAG. */
3854
3855void
3856arc_cons_fix_new (fragS *frag,
3857 int off,
3858 int size,
3859 expressionS *exp,
3860 bfd_reloc_code_real_type r_type)
3861{
3862 r_type = BFD_RELOC_UNUSED;
3863
3864 switch (size)
3865 {
3866 case 1:
3867 r_type = BFD_RELOC_8;
3868 break;
3869
3870 case 2:
3871 r_type = BFD_RELOC_16;
3872 break;
3873
3874 case 3:
3875 r_type = BFD_RELOC_24;
3876 break;
3877
3878 case 4:
3879 r_type = BFD_RELOC_32;
3880 arc_check_reloc (exp, &r_type);
3881 break;
3882
3883 case 8:
3884 r_type = BFD_RELOC_64;
3885 break;
3886
3887 default:
3888 as_bad (_("unsupported BFD relocation size %u"), size);
3889 r_type = BFD_RELOC_UNUSED;
3890 }
3891
3892 fix_new_exp (frag, off, size, exp, 0, r_type);
3893}
3894
3895/* The actual routine that checks the ZOL conditions. */
3896
3897static void
3898check_zol (symbolS *s)
3899{
3900 switch (arc_mach_type)
3901 {
3902 case bfd_mach_arc_arcv2:
3903 if (arc_target & ARC_OPCODE_ARCv2EM)
3904 return;
3905
3906 if (is_br_jmp_insn_p (arc_last_insns[0].opcode)
3907 || arc_last_insns[1].has_delay_slot)
3908 as_bad (_("Jump/Branch instruction detected at the end of the ZOL label @%s"),
3909 S_GET_NAME (s));
3910
3911 break;
3912 case bfd_mach_arc_arc600:
3913
3914 if (is_kernel_insn_p (arc_last_insns[0].opcode))
3915 as_bad (_("Kernel instruction detected at the end of the ZOL label @%s"),
3916 S_GET_NAME (s));
3917
3918 if (arc_last_insns[0].has_limm
3919 && is_br_jmp_insn_p (arc_last_insns[0].opcode))
3920 as_bad (_("A jump instruction with long immediate detected at the \
3921end of the ZOL label @%s"), S_GET_NAME (s));
3922
3923 /* Fall through. */
8699fc3e 3924 case bfd_mach_arc_nps400:
886a2506
NC
3925 case bfd_mach_arc_arc700:
3926 if (arc_last_insns[0].has_delay_slot)
3927 as_bad (_("An illegal use of delay slot detected at the end of the ZOL label @%s"),
3928 S_GET_NAME (s));
3929
3930 break;
3931 default:
3932 break;
3933 }
3934}
3935
3936/* If ZOL end check the last two instruction for illegals. */
3937void
3938arc_frob_label (symbolS * sym)
3939{
3940 if (ARC_GET_FLAG (sym) & ARC_FLAG_ZOL)
3941 check_zol (sym);
3942
3943 dwarf2_emit_label (sym);
ea1562b3 3944}
4670103e
CZ
3945
3946/* Used because generic relaxation assumes a pc-rel value whilst we
3947 also relax instructions that use an absolute value resolved out of
3948 relative values (if that makes any sense). An example: 'add r1,
3949 r2, @.L2 - .' The symbols . and @.L2 are relative to the section
3950 but if they're in the same section we can subtract the section
3951 offset relocation which ends up in a resolved value. So if @.L2 is
3952 .text + 0x50 and . is .text + 0x10, we can say that .text + 0x50 -
3953 .text + 0x40 = 0x10. */
3954int
3955arc_pcrel_adjust (fragS *fragP)
3956{
3957 if (!fragP->tc_frag_data.pcrel)
3958 return fragP->fr_address + fragP->fr_fix;
3959
3960 return 0;
3961}
726c18e1
CZ
3962
3963/* Initialize the DWARF-2 unwind information for this procedure. */
3964
3965void
3966tc_arc_frame_initial_instructions (void)
3967{
3968 /* Stack pointer is register 28. */
3969 cfi_add_CFA_def_cfa_register (28);
3970}
3971
3972int
3973tc_arc_regname_to_dw2regnum (char *regname)
3974{
3975 struct symbol *sym;
3976
3977 sym = hash_find (arc_reg_hash, regname);
3978 if (sym)
3979 return S_GET_VALUE (sym);
3980
3981 return -1;
3982}
37ab9779
CZ
3983
3984/* Adjust the symbol table. Delete found AUX register symbols. */
3985
3986void
3987arc_adjust_symtab (void)
3988{
3989 symbolS * sym;
3990
3991 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
3992 {
3993 /* I've created a symbol during parsing process. Now, remove
3994 the symbol as it is found to be an AUX register. */
3995 if (ARC_GET_FLAG (sym) & ARC_FLAG_AUX)
3996 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
3997 }
3998
3999 /* Now do generic ELF adjustments. */
4000 elf_adjust_symtab ();
4001}
b99747ae
CZ
4002
4003static void
4004tokenize_extinsn (extInstruction_t *einsn)
4005{
4006 char *p, c;
4007 char *insn_name;
4008 unsigned char major_opcode;
4009 unsigned char sub_opcode;
4010 unsigned char syntax_class = 0;
4011 unsigned char syntax_class_modifiers = 0;
4012 unsigned char suffix_class = 0;
4013 unsigned int i;
4014
4015 SKIP_WHITESPACE ();
4016
4017 /* 1st: get instruction name. */
4018 p = input_line_pointer;
4019 c = get_symbol_name (&p);
4020
4021 insn_name = xstrdup (p);
4022 restore_line_pointer (c);
4023
4024 /* 2nd: get major opcode. */
4025 if (*input_line_pointer != ',')
4026 {
4027 as_bad (_("expected comma after instruction name"));
4028 ignore_rest_of_line ();
4029 return;
4030 }
4031 input_line_pointer++;
4032 major_opcode = get_absolute_expression ();
4033
4034 /* 3rd: get sub-opcode. */
4035 SKIP_WHITESPACE ();
4036
4037 if (*input_line_pointer != ',')
4038 {
4039 as_bad (_("expected comma after major opcode"));
4040 ignore_rest_of_line ();
4041 return;
4042 }
4043 input_line_pointer++;
4044 sub_opcode = get_absolute_expression ();
4045
4046 /* 4th: get suffix class. */
4047 SKIP_WHITESPACE ();
4048
4049 if (*input_line_pointer != ',')
4050 {
4051 as_bad ("expected comma after sub opcode");
4052 ignore_rest_of_line ();
4053 return;
4054 }
4055 input_line_pointer++;
4056
4057 while (1)
4058 {
4059 SKIP_WHITESPACE ();
4060
4061 for (i = 0; i < ARRAY_SIZE (suffixclass); i++)
4062 {
4063 if (!strncmp (suffixclass[i].name, input_line_pointer,
4064 suffixclass[i].len))
4065 {
4066 suffix_class |= suffixclass[i].class;
4067 input_line_pointer += suffixclass[i].len;
4068 break;
4069 }
4070 }
4071
4072 if (i == ARRAY_SIZE (suffixclass))
4073 {
4074 as_bad ("invalid suffix class");
4075 ignore_rest_of_line ();
4076 return;
4077 }
4078
4079 SKIP_WHITESPACE ();
4080
4081 if (*input_line_pointer == '|')
4082 input_line_pointer++;
4083 else
4084 break;
4085 }
4086
4087 /* 5th: get syntax class and syntax class modifiers. */
4088 if (*input_line_pointer != ',')
4089 {
4090 as_bad ("expected comma after suffix class");
4091 ignore_rest_of_line ();
4092 return;
4093 }
4094 input_line_pointer++;
4095
4096 while (1)
4097 {
4098 SKIP_WHITESPACE ();
4099
4100 for (i = 0; i < ARRAY_SIZE (syntaxclassmod); i++)
4101 {
4102 if (!strncmp (syntaxclassmod[i].name,
4103 input_line_pointer,
4104 syntaxclassmod[i].len))
4105 {
4106 syntax_class_modifiers |= syntaxclassmod[i].class;
4107 input_line_pointer += syntaxclassmod[i].len;
4108 break;
4109 }
4110 }
4111
4112 if (i == ARRAY_SIZE (syntaxclassmod))
4113 {
4114 for (i = 0; i < ARRAY_SIZE (syntaxclass); i++)
4115 {
4116 if (!strncmp (syntaxclass[i].name,
4117 input_line_pointer,
4118 syntaxclass[i].len))
4119 {
4120 syntax_class |= syntaxclass[i].class;
4121 input_line_pointer += syntaxclass[i].len;
4122 break;
4123 }
4124 }
4125
4126 if (i == ARRAY_SIZE (syntaxclass))
4127 {
4128 as_bad ("missing syntax class");
4129 ignore_rest_of_line ();
4130 return;
4131 }
4132 }
4133
4134 SKIP_WHITESPACE ();
4135
4136 if (*input_line_pointer == '|')
4137 input_line_pointer++;
4138 else
4139 break;
4140 }
4141
4142 demand_empty_rest_of_line ();
4143
4144 einsn->name = insn_name;
4145 einsn->major = major_opcode;
4146 einsn->minor = sub_opcode;
4147 einsn->syntax = syntax_class;
4148 einsn->modsyn = syntax_class_modifiers;
4149 einsn->suffix = suffix_class;
4150 einsn->flags = syntax_class
4151 | (syntax_class_modifiers & ARC_OP1_IMM_IMPLIED ? 0x10 : 0);
4152}
4153
4154/* Generate an extension section. */
4155
4156static int
4157arc_set_ext_seg (void)
4158{
4159 if (!arcext_section)
4160 {
4161 arcext_section = subseg_new (".arcextmap", 0);
4162 bfd_set_section_flags (stdoutput, arcext_section,
4163 SEC_READONLY | SEC_HAS_CONTENTS);
4164 }
4165 else
4166 subseg_set (arcext_section, 0);
4167 return 1;
4168}
4169
4170/* Create an extension instruction description in the arc extension
4171 section of the output file.
4172 The structure for an instruction is like this:
4173 [0]: Length of the record.
4174 [1]: Type of the record.
4175
4176 [2]: Major opcode.
4177 [3]: Sub-opcode.
4178 [4]: Syntax (flags).
4179 [5]+ Name instruction.
4180
4181 The sequence is terminated by an empty entry. */
4182
4183static void
4184create_extinst_section (extInstruction_t *einsn)
4185{
4186
4187 segT old_sec = now_seg;
4188 int old_subsec = now_subseg;
4189 char *p;
4190 int name_len = strlen (einsn->name);
4191
4192 arc_set_ext_seg ();
4193
4194 p = frag_more (1);
4195 *p = 5 + name_len + 1;
4196 p = frag_more (1);
4197 *p = EXT_INSTRUCTION;
4198 p = frag_more (1);
4199 *p = einsn->major;
4200 p = frag_more (1);
4201 *p = einsn->minor;
4202 p = frag_more (1);
4203 *p = einsn->flags;
4204 p = frag_more (name_len + 1);
4205 strcpy (p, einsn->name);
4206
4207 subseg_set (old_sec, old_subsec);
4208}
4209
4210/* Handler .extinstruction pseudo-op. */
4211
4212static void
4213arc_extinsn (int ignore ATTRIBUTE_UNUSED)
4214{
4215 extInstruction_t einsn;
4216 struct arc_opcode *arc_ext_opcodes;
4217 const char *errmsg = NULL;
4218 unsigned char moplow, mophigh;
4219
4220 memset (&einsn, 0, sizeof (einsn));
4221 tokenize_extinsn (&einsn);
4222
4223 /* Check if the name is already used. */
4224 if (arc_find_opcode (einsn.name))
4225 as_warn (_("Pseudocode already used %s"), einsn.name);
4226
4227 /* Check the opcode ranges. */
4228 moplow = 0x05;
4229 mophigh = (arc_target & (ARC_OPCODE_ARCv2EM
4230 | ARC_OPCODE_ARCv2HS)) ? 0x07 : 0x0a;
4231
4232 if ((einsn.major > mophigh) || (einsn.major < moplow))
4233 as_fatal (_("major opcode not in range [0x%02x - 0x%02x]"), moplow, mophigh);
4234
4235 if ((einsn.minor > 0x3f) && (einsn.major != 0x0a)
4236 && (einsn.major != 5) && (einsn.major != 9))
4237 as_fatal (_("minor opcode not in range [0x00 - 0x3f]"));
4238
945e0f82 4239 switch (einsn.syntax & ARC_SYNTAX_MASK)
b99747ae
CZ
4240 {
4241 case ARC_SYNTAX_3OP:
4242 if (einsn.modsyn & ARC_OP1_IMM_IMPLIED)
4243 as_fatal (_("Improper use of OP1_IMM_IMPLIED"));
4244 break;
4245 case ARC_SYNTAX_2OP:
945e0f82
CZ
4246 case ARC_SYNTAX_1OP:
4247 case ARC_SYNTAX_NOP:
b99747ae
CZ
4248 if (einsn.modsyn & ARC_OP1_MUST_BE_IMM)
4249 as_fatal (_("Improper use of OP1_MUST_BE_IMM"));
4250 break;
4251 default:
4252 break;
4253 }
4254
4255 arc_ext_opcodes = arcExtMap_genOpcode (&einsn, arc_target, &errmsg);
4256 if (arc_ext_opcodes == NULL)
4257 {
4258 if (errmsg)
4259 as_fatal ("%s", errmsg);
4260 else
4261 as_fatal (_("Couldn't generate extension instruction opcodes"));
4262 }
4263 else if (errmsg)
4264 as_warn ("%s", errmsg);
4265
4266 /* Insert the extension instruction. */
4267 arc_insert_opcode ((const struct arc_opcode *) arc_ext_opcodes);
4268
4269 create_extinst_section (&einsn);
4270}
4271
f36e33da
CZ
4272static void
4273tokenize_extregister (extRegister_t *ereg, int opertype)
4274{
4275 char *name;
4276 char *mode;
4277 char c;
4278 char *p;
4279 int number, imode = 0;
4280 bfd_boolean isCore_p = (opertype == EXT_CORE_REGISTER) ? TRUE : FALSE;
4281 bfd_boolean isReg_p = (opertype == EXT_CORE_REGISTER
4282 || opertype == EXT_AUX_REGISTER) ? TRUE : FALSE;
4283
4284 /* 1st: get register name. */
4285 SKIP_WHITESPACE ();
4286 p = input_line_pointer;
4287 c = get_symbol_name (&p);
4288
4289 name = xstrdup (p);
4290 restore_line_pointer (c);
4291
4292 /* 2nd: get register number. */
4293 SKIP_WHITESPACE ();
4294
4295 if (*input_line_pointer != ',')
4296 {
4297 as_bad (_("expected comma after register name"));
4298 ignore_rest_of_line ();
4299 free (name);
4300 return;
4301 }
4302 input_line_pointer++;
4303 number = get_absolute_expression ();
4304
4305 if (number < 0)
4306 {
4307 as_bad (_("negative operand number %d"), number);
4308 ignore_rest_of_line ();
4309 free (name);
4310 return;
4311 }
4312
4313 if (isReg_p)
4314 {
4315 /* 3rd: get register mode. */
4316 SKIP_WHITESPACE ();
4317
4318 if (*input_line_pointer != ',')
4319 {
4320 as_bad (_("expected comma after register number"));
4321 ignore_rest_of_line ();
4322 free (name);
4323 return;
4324 }
4325
4326 input_line_pointer++;
4327 mode = input_line_pointer;
4328
4329 if (!strncmp (mode, "r|w", 3))
4330 {
4331 imode = 0;
4332 input_line_pointer += 3;
4333 }
4334 else if (!strncmp (mode, "r", 1))
4335 {
4336 imode = ARC_REGISTER_READONLY;
4337 input_line_pointer += 1;
4338 }
4339 else if (strncmp (mode, "w", 1))
4340 {
4341 as_bad (_("invalid mode"));
4342 ignore_rest_of_line ();
4343 free (name);
4344 return;
4345 }
4346 else
4347 {
4348 imode = ARC_REGISTER_WRITEONLY;
4349 input_line_pointer += 1;
4350 }
4351 }
4352
4353 if (isCore_p)
4354 {
4355 /* 4th: get core register shortcut. */
4356 SKIP_WHITESPACE ();
4357 if (*input_line_pointer != ',')
4358 {
4359 as_bad (_("expected comma after register mode"));
4360 ignore_rest_of_line ();
4361 free (name);
4362 return;
4363 }
4364
4365 input_line_pointer++;
4366
4367 if (!strncmp (input_line_pointer, "cannot_shortcut", 15))
4368 {
4369 imode |= ARC_REGISTER_NOSHORT_CUT;
4370 input_line_pointer += 15;
4371 }
4372 else if (strncmp (input_line_pointer, "can_shortcut", 12))
4373 {
4374 as_bad (_("shortcut designator invalid"));
4375 ignore_rest_of_line ();
4376 free (name);
4377 return;
4378 }
4379 else
4380 {
4381 input_line_pointer += 12;
4382 }
4383 }
4384 demand_empty_rest_of_line ();
4385
4386 ereg->name = name;
4387 ereg->number = number;
4388 ereg->imode = imode;
4389}
4390
4391/* Create an extension register/condition description in the arc
4392 extension section of the output file.
4393
4394 The structure for an instruction is like this:
4395 [0]: Length of the record.
4396 [1]: Type of the record.
4397
4398 For core regs and condition codes:
4399 [2]: Value.
4400 [3]+ Name.
4401
4402 For auxilirary registers:
4403 [2..5]: Value.
4404 [6]+ Name
4405
4406 The sequence is terminated by an empty entry. */
4407
4408static void
4409create_extcore_section (extRegister_t *ereg, int opertype)
4410{
4411 segT old_sec = now_seg;
4412 int old_subsec = now_subseg;
4413 char *p;
4414 int name_len = strlen (ereg->name);
4415
4416 arc_set_ext_seg ();
4417
4418 switch (opertype)
4419 {
4420 case EXT_COND_CODE:
4421 case EXT_CORE_REGISTER:
4422 p = frag_more (1);
4423 *p = 3 + name_len + 1;
4424 p = frag_more (1);
4425 *p = opertype;
4426 p = frag_more (1);
4427 *p = ereg->number;
4428 break;
4429 case EXT_AUX_REGISTER:
4430 p = frag_more (1);
4431 *p = 6 + name_len + 1;
4432 p = frag_more (1);
4433 *p = EXT_AUX_REGISTER;
4434 p = frag_more (1);
4435 *p = (ereg->number >> 24) & 0xff;
4436 p = frag_more (1);
4437 *p = (ereg->number >> 16) & 0xff;
4438 p = frag_more (1);
4439 *p = (ereg->number >> 8) & 0xff;
4440 p = frag_more (1);
4441 *p = (ereg->number) & 0xff;
4442 break;
4443 default:
4444 break;
4445 }
4446
4447 p = frag_more (name_len + 1);
4448 strcpy (p, ereg->name);
4449
4450 subseg_set (old_sec, old_subsec);
4451}
4452
4453/* Handler .extCoreRegister pseudo-op. */
4454
4455static void
4456arc_extcorereg (int opertype)
4457{
4458 extRegister_t ereg;
4459 struct arc_aux_reg *auxr;
4460 const char *retval;
4461 struct arc_flag_operand *ccode;
4462
4463 memset (&ereg, 0, sizeof (ereg));
4464 tokenize_extregister (&ereg, opertype);
4465
4466 switch (opertype)
4467 {
4468 case EXT_CORE_REGISTER:
4469 /* Core register. */
4470 if (ereg.number > 60)
4471 as_bad (_("core register %s value (%d) too large"), ereg.name,
4472 ereg.number);
4473 declare_register (ereg.name, ereg.number);
4474 break;
4475 case EXT_AUX_REGISTER:
4476 /* Auxiliary register. */
add39d23 4477 auxr = XNEW (struct arc_aux_reg);
f36e33da
CZ
4478 auxr->name = ereg.name;
4479 auxr->cpu = arc_target;
4480 auxr->subclass = NONE;
4481 auxr->address = ereg.number;
4482 retval = hash_insert (arc_aux_hash, auxr->name, (void *) auxr);
4483 if (retval)
4484 as_fatal (_("internal error: can't hash aux register '%s': %s"),
4485 auxr->name, retval);
4486 break;
4487 case EXT_COND_CODE:
4488 /* Condition code. */
4489 if (ereg.number > 31)
4490 as_bad (_("condition code %s value (%d) too large"), ereg.name,
4491 ereg.number);
4492 ext_condcode.size ++;
4493 ext_condcode.arc_ext_condcode =
add39d23
TS
4494 XRESIZEVEC (struct arc_flag_operand, ext_condcode.arc_ext_condcode,
4495 ext_condcode.size + 1);
f36e33da
CZ
4496 if (ext_condcode.arc_ext_condcode == NULL)
4497 as_fatal (_("Virtual memory exhausted"));
4498
4499 ccode = ext_condcode.arc_ext_condcode + ext_condcode.size - 1;
4500 ccode->name = ereg.name;
4501 ccode->code = ereg.number;
4502 ccode->bits = 5;
4503 ccode->shift = 0;
4504 ccode->favail = 0; /* not used. */
4505 ccode++;
4506 memset (ccode, 0, sizeof (struct arc_flag_operand));
4507 break;
4508 default:
4509 as_bad (_("Unknown extension"));
4510 break;
4511 }
4512 create_extcore_section (&ereg, opertype);
4513}
4514
b99747ae
CZ
4515/* Local variables:
4516 eval: (c-set-style "gnu")
4517 indent-tabs-mode: t
4518 End: */
This page took 0.94951 seconds and 4 git commands to generate.