873f28bd71aaedf6c864ad0eea961fe8d3078feb
[binutils-gdb.git] / gas / config / tc-cris.c
1 /* tc-cris.c -- Assembler code for the CRIS CPU core.
2 Copyright (C) 2000-2020 Free Software Foundation, Inc.
3
4 Contributed by Axis Communications AB, Lund, Sweden.
5 Originally written for GAS 1.38.1 by Mikael Asker.
6 Updates, BFDizing, GNUifying and ELF support by Hans-Peter Nilsson.
7
8 This file is part of GAS, the GNU Assembler.
9
10 GAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
14
15 GAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GAS; see the file COPYING. If not, write to the
22 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
23 MA 02110-1301, USA. */
24
25 #include "as.h"
26 #include "safe-ctype.h"
27 #include "subsegs.h"
28 #include "opcode/cris.h"
29 #include "dwarf2dbg.h"
30
31 /* Conventions used here:
32 Generally speaking, pointers to binutils types such as "fragS" and
33 "expressionS" get parameter and variable names ending in "P", such as
34 "fragP", to harmonize with the rest of the binutils code. Other
35 pointers get a "p" suffix, such as "bufp". Any function or type-name
36 that could clash with a current or future binutils or GAS function get
37 a "cris_" prefix. */
38
39 #define SYNTAX_RELAX_REG_PREFIX "no_register_prefix"
40 #define SYNTAX_ENFORCE_REG_PREFIX "register_prefix"
41 #define SYNTAX_USER_SYM_LEADING_UNDERSCORE "leading_underscore"
42 #define SYNTAX_USER_SYM_NO_LEADING_UNDERSCORE "no_leading_underscore"
43 #define REGISTER_PREFIX_CHAR '$'
44
45 /* True for expressions where getting X_add_symbol and X_add_number is
46 enough to get the "base" and "offset"; no need to make_expr_symbol.
47 It's not enough to check if X_op_symbol is NULL; that misses unary
48 operations like O_uminus. */
49 #define SIMPLE_EXPR(EXP) \
50 ((EXP)->X_op == O_constant || (EXP)->X_op == O_symbol)
51
52 /* Like in ":GOT", ":GOTOFF" etc. Other ports use '@', but that's in
53 line_separator_chars for CRIS, so we avoid it. */
54 #define RELOC_SUFFIX_CHAR ':'
55
56 /* This might be CRIS_INSN_NONE if we're assembling a prefix-insn only.
57 Note that some prefix-insns might be assembled as CRIS_INSN_NORMAL. */
58 enum cris_insn_kind
59 {
60 CRIS_INSN_NORMAL, CRIS_INSN_NONE, CRIS_INSN_BRANCH, CRIS_INSN_MUL
61 };
62
63 /* An instruction will have one of these prefixes.
64 Although the same bit-pattern, we handle BDAP with an immediate
65 expression (eventually quick or [pc+]) different from when we only have
66 register expressions. */
67 enum prefix_kind
68 {
69 PREFIX_NONE, PREFIX_BDAP_IMM, PREFIX_BDAP, PREFIX_BIAP, PREFIX_DIP,
70 PREFIX_PUSH
71 };
72
73 /* The prefix for an instruction. */
74 struct cris_prefix
75 {
76 enum prefix_kind kind;
77 int base_reg_number;
78 unsigned int opcode;
79
80 /* There might be an expression to be evaluated, like I in [rN+I]. */
81 expressionS expr;
82
83 /* If there's an expression, we might need a relocation. Here's the
84 type of what relocation to start relaxation with.
85 The relocation is assumed to start immediately after the prefix insn,
86 so we don't provide an offset. */
87 enum bfd_reloc_code_real reloc;
88 };
89
90 /* The description of the instruction being assembled. */
91 struct cris_instruction
92 {
93 /* If CRIS_INSN_NONE, then this insn is of zero length. */
94 enum cris_insn_kind insn_type;
95
96 /* If a special register was mentioned, this is its description, else
97 it is NULL. */
98 const struct cris_spec_reg *spec_reg;
99
100 unsigned int opcode;
101
102 /* An insn may have at most one expression; theoretically there could be
103 another in its prefix (but I don't see how that could happen). */
104 expressionS expr;
105
106 /* The expression might need a relocation. Here's one to start
107 relaxation with. */
108 enum bfd_reloc_code_real reloc;
109
110 /* The size in bytes of an immediate expression, or zero if
111 nonapplicable. */
112 int imm_oprnd_size;
113 };
114
115 enum cris_archs
116 {
117 arch_cris_unknown,
118 arch_crisv0, arch_crisv3, arch_crisv8, arch_crisv10,
119 arch_cris_any_v0_v10, arch_crisv32, arch_cris_common_v10_v32
120 };
121
122 static enum cris_archs cris_arch_from_string (const char **);
123 static int cris_insn_ver_valid_for_arch (enum cris_insn_version_usage,
124 enum cris_archs);
125
126 static void cris_process_instruction (char *, struct cris_instruction *,
127 struct cris_prefix *);
128 static int get_bwd_size_modifier (char **, int *);
129 static int get_bw_size_modifier (char **, int *);
130 static int get_gen_reg (char **, int *);
131 static int get_spec_reg (char **, const struct cris_spec_reg **);
132 static int get_sup_reg (char **, int *);
133 static int get_autoinc_prefix_or_indir_op (char **, struct cris_prefix *,
134 int *, int *, int *,
135 expressionS *);
136 static int get_3op_or_dip_prefix_op (char **, struct cris_prefix *);
137 static int cris_get_expression (char **, expressionS *);
138 static int get_flags (char **, int *);
139 static void gen_bdap (int, expressionS *);
140 static int branch_disp (int);
141 static void gen_cond_branch_32 (char *, char *, fragS *, symbolS *, symbolS *,
142 long int);
143 static void cris_number_to_imm (char *, long, int, fixS *, segT);
144 static void s_syntax (int);
145 static void s_cris_file (int);
146 static void s_cris_loc (int);
147 static void s_cris_arch (int);
148 static void s_cris_dtpoff (int);
149
150 /* Get ":GOT", ":GOTOFF", ":PLT" etc. suffixes. */
151 static void cris_get_reloc_suffix (char **, bfd_reloc_code_real_type *,
152 expressionS *);
153 static unsigned int cris_get_specified_reloc_size (bfd_reloc_code_real_type);
154
155 /* All the .syntax functions. */
156 static void cris_force_reg_prefix (void);
157 static void cris_relax_reg_prefix (void);
158 static void cris_sym_leading_underscore (void);
159 static void cris_sym_no_leading_underscore (void);
160 static char *cris_insn_first_word_frag (void);
161
162 /* Handle to the opcode hash table. */
163 static htab_t op_hash = NULL;
164
165 /* If we target cris-axis-linux-gnu (as opposed to generic cris-axis-elf),
166 we default to no underscore and required register-prefixes. The
167 difference is in the default values. */
168 #ifdef TE_LINUX
169 #define DEFAULT_CRIS_AXIS_LINUX_GNU TRUE
170 #else
171 #define DEFAULT_CRIS_AXIS_LINUX_GNU FALSE
172 #endif
173
174 /* Whether we demand that registers have a `$' prefix. Default here. */
175 static bfd_boolean demand_register_prefix = DEFAULT_CRIS_AXIS_LINUX_GNU;
176
177 /* Whether global user symbols have a leading underscore. Default here. */
178 static bfd_boolean symbols_have_leading_underscore
179 = !DEFAULT_CRIS_AXIS_LINUX_GNU;
180
181 /* Whether or not we allow PIC, and expand to PIC-friendly constructs. */
182 static bfd_boolean pic = FALSE;
183
184 /* Whether or not we allow TLS suffixes. For the moment, we always do. */
185 static const bfd_boolean tls = TRUE;
186
187 /* If we're configured for "cris", default to allow all v0..v10
188 instructions and register names. */
189 #ifndef DEFAULT_CRIS_ARCH
190 #define DEFAULT_CRIS_ARCH cris_any_v0_v10
191 #endif
192
193 /* No whitespace in the CONCAT2 parameter list. */
194 static enum cris_archs cris_arch = XCONCAT2 (arch_,DEFAULT_CRIS_ARCH);
195
196 const pseudo_typeS md_pseudo_table[] =
197 {
198 {"dword", cons, 4},
199 {"dtpoffd", s_cris_dtpoff, 4},
200 {"syntax", s_syntax, 0},
201 {"file", s_cris_file, 0},
202 {"loc", s_cris_loc, 0},
203 {"arch", s_cris_arch, 0},
204 {NULL, 0, 0}
205 };
206
207 static int warn_for_branch_expansion = 0;
208
209 /* Whether to emit error when a MULS/MULU could be located last on a
210 cache-line. */
211 static int err_for_dangerous_mul_placement
212 = (XCONCAT2 (arch_,DEFAULT_CRIS_ARCH) != arch_crisv32);
213
214 const char cris_comment_chars[] = ";";
215
216 /* This array holds the chars that only start a comment at the beginning of
217 a line. If the line seems to have the form '# 123 filename'
218 .line and .file directives will appear in the pre-processed output. */
219 /* Note that input_file.c hand-checks for '#' at the beginning of the
220 first line of the input file. This is because the compiler outputs
221 #NO_APP at the beginning of its output. */
222 /* Also note that slash-star will always start a comment. */
223 const char line_comment_chars[] = "#";
224 const char line_separator_chars[] = "@";
225
226 /* Now all floating point support is shut off. See md_atof. */
227 const char EXP_CHARS[] = "";
228 const char FLT_CHARS[] = "";
229
230 /* For CRIS, we encode the relax_substateTs (in e.g. fr_substate) as:
231 2 1 0
232 ---/ /--+-----------------+-----------------+-----------------+
233 | what state ? | how long ? |
234 ---/ /--+-----------------+-----------------+-----------------+
235
236 The "how long" bits are 00 = byte, 01 = word, 10 = dword (long).
237 Not all lengths are legit for a given value of (what state).
238
239 Groups for CRIS address relaxing:
240
241 1. Bcc (pre-V32)
242 length: byte, word, 10-byte expansion
243
244 2. BDAP
245 length: byte, word, dword
246
247 3. MULS/MULU
248 Not really a relaxation (no infrastructure to get delay-slots
249 right), just an alignment and placement checker for the v10
250 multiply/cache-bug.
251
252 4. Bcc (V32 and later)
253 length: byte, word, 14-byte expansion
254
255 5. Bcc (V10+V32)
256 length: byte, word, error
257
258 6. BA (V32)
259 length: byte, word, dword
260
261 7. LAPC (V32)
262 length: byte, dword
263 */
264
265 #define STATE_COND_BRANCH (1)
266 #define STATE_BASE_PLUS_DISP_PREFIX (2)
267 #define STATE_MUL (3)
268 #define STATE_COND_BRANCH_V32 (4)
269 #define STATE_COND_BRANCH_COMMON (5)
270 #define STATE_ABS_BRANCH_V32 (6)
271 #define STATE_LAPC (7)
272 #define STATE_COND_BRANCH_PIC (8)
273
274 #define STATE_LENGTH_MASK (3)
275 #define STATE_BYTE (0)
276 #define STATE_WORD (1)
277 #define STATE_DWORD (2)
278 /* Symbol undefined. */
279 #define STATE_UNDF (3)
280 #define STATE_MAX_LENGTH (3)
281
282 /* These displacements are relative to the address following the opcode
283 word of the instruction. The first letter is Byte, Word. The 2nd
284 letter is Forward, Backward. */
285
286 #define BRANCH_BF ( 254)
287 #define BRANCH_BB (-256)
288 #define BRANCH_BF_V32 ( 252)
289 #define BRANCH_BB_V32 (-258)
290 #define BRANCH_WF (2 + 32767)
291 #define BRANCH_WB (2 + -32768)
292 #define BRANCH_WF_V32 (-2 + 32767)
293 #define BRANCH_WB_V32 (-2 + -32768)
294
295 #define BDAP_BF ( 127)
296 #define BDAP_BB (-128)
297 #define BDAP_WF ( 32767)
298 #define BDAP_WB (-32768)
299
300 #define ENCODE_RELAX(what, length) (((what) << 2) + (length))
301
302 const relax_typeS md_cris_relax_table[] =
303 {
304 /* Error sentinel (0, 0). */
305 {1, 1, 0, 0},
306
307 /* Unused (0, 1). */
308 {1, 1, 0, 0},
309
310 /* Unused (0, 2). */
311 {1, 1, 0, 0},
312
313 /* Unused (0, 3). */
314 {1, 1, 0, 0},
315
316 /* Bcc o (1, 0). */
317 {BRANCH_BF, BRANCH_BB, 0, ENCODE_RELAX (1, 1)},
318
319 /* Bcc [PC+] (1, 1). */
320 {BRANCH_WF, BRANCH_WB, 2, ENCODE_RELAX (1, 2)},
321
322 /* BEXT/BWF, BA, JUMP (external), JUMP (always), Bnot_cc, JUMP (default)
323 (1, 2). */
324 {0, 0, 10, 0},
325
326 /* Unused (1, 3). */
327 {1, 1, 0, 0},
328
329 /* BDAP o (2, 0). */
330 {BDAP_BF, BDAP_BB, 0, ENCODE_RELAX (2, 1)},
331
332 /* BDAP.[bw] [PC+] (2, 1). */
333 {BDAP_WF, BDAP_WB, 2, ENCODE_RELAX (2, 2)},
334
335 /* BDAP.d [PC+] (2, 2). */
336 {0, 0, 4, 0},
337
338 /* Unused (2, 3). */
339 {1, 1, 0, 0},
340
341 /* MULS/MULU (3, 0). Positions (3, 1..3) are unused. */
342 {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0},
343
344 /* V32: Bcc o (4, 0). */
345 {BRANCH_BF_V32, BRANCH_BB_V32, 0, ENCODE_RELAX (4, 1)},
346
347 /* V32: Bcc [PC+] (4, 1). */
348 {BRANCH_WF_V32, BRANCH_WB_V32, 2, ENCODE_RELAX (4, 2)},
349
350 /* V32: BA .+12; NOP; BA32 target; NOP; Bcc .-6 (4, 2). */
351 {0, 0, 12, 0},
352
353 /* Unused (4, 3). */
354 {1, 1, 0, 0},
355
356 /* COMMON: Bcc o (5, 0). The offsets are calculated as for v32. Code
357 should contain two nop insns (or four if offset size is large or
358 unknown) after every label. */
359 {BRANCH_BF_V32, BRANCH_BB_V32, 0, ENCODE_RELAX (5, 1)},
360
361 /* COMMON: Bcc [PC+] (5, 1). */
362 {BRANCH_WF_V32, BRANCH_WB_V32, 2, ENCODE_RELAX (5, 2)},
363
364 /* COMMON: FIXME: ???. Treat as error currently. */
365 {0, 0, 12, 0},
366
367 /* Unused (5, 3). */
368 {1, 1, 0, 0},
369
370 /* V32: BA o (6, 0). */
371 {BRANCH_BF_V32, BRANCH_BB_V32, 0, ENCODE_RELAX (6, 1)},
372
373 /* V32: BA.W (6, 1). */
374 {BRANCH_WF_V32, BRANCH_WB_V32, 2, ENCODE_RELAX (6, 2)},
375
376 /* V32: BA.D (6, 2). */
377 {0, 0, 4, 0},
378
379 /* Unused (6, 3). */
380 {1, 1, 0, 0},
381
382 /* LAPC: LAPCQ .+0..15*2,Rn (7, 0). */
383 {14*2, -1*2, 0, ENCODE_RELAX (7, 2)},
384
385 /* Unused (7, 1).
386 While there's a shorter sequence, e.g. LAPCQ + an ADDQ or SUBQ,
387 that would affect flags, so we can't do that as it wouldn't be a
388 proper insn expansion of LAPCQ. This row is associated with a
389 2-byte expansion, so it's unused rather than the next. */
390 {1, 1, 0, 0},
391
392 /* LAPC: LAPC.D (7, 2). */
393 {0, 0, 4, 0},
394
395 /* Unused (7, 3). */
396 {1, 1, 0, 0},
397
398 /* PIC for pre-v32: Bcc o (8, 0). */
399 {BRANCH_BF, BRANCH_BB, 0, ENCODE_RELAX (STATE_COND_BRANCH_PIC, 1)},
400
401 /* Bcc [PC+] (8, 1). */
402 {BRANCH_WF, BRANCH_WB, 2, ENCODE_RELAX (STATE_COND_BRANCH_PIC, 2)},
403
404 /* 32-bit expansion, PIC (8, 2). */
405 {0, 0, 12, 0},
406
407 /* Unused (8, 3). */
408 {1, 1, 0, 0}
409 };
410
411 #undef BDAP_BF
412 #undef BDAP_BB
413 #undef BDAP_WF
414 #undef BDAP_WB
415
416 /* Target-specific multicharacter options, not const-declared. */
417 struct option md_longopts[] =
418 {
419 #define OPTION_NO_US (OPTION_MD_BASE + 0)
420 {"no-underscore", no_argument, NULL, OPTION_NO_US},
421 #define OPTION_US (OPTION_MD_BASE + 1)
422 {"underscore", no_argument, NULL, OPTION_US},
423 #define OPTION_PIC (OPTION_US + 1)
424 {"pic", no_argument, NULL, OPTION_PIC},
425 #define OPTION_MULBUG_ABORT_ON (OPTION_PIC + 1)
426 {"mul-bug-abort", no_argument, NULL, OPTION_MULBUG_ABORT_ON},
427 #define OPTION_MULBUG_ABORT_OFF (OPTION_MULBUG_ABORT_ON + 1)
428 {"no-mul-bug-abort", no_argument, NULL, OPTION_MULBUG_ABORT_OFF},
429 #define OPTION_ARCH (OPTION_MULBUG_ABORT_OFF + 1)
430 {"march", required_argument, NULL, OPTION_ARCH},
431 {NULL, no_argument, NULL, 0}
432 };
433
434 /* Not const-declared. */
435 size_t md_longopts_size = sizeof (md_longopts);
436 const char *md_shortopts = "hHN";
437
438 /* At first glance, this may seems wrong and should be 4 (ba + nop); but
439 since a short_jump must skip a *number* of long jumps, it must also be
440 a long jump. Here, we hope to make it a "ba [16bit_offs]" and a "nop"
441 for the delay slot and hope that the jump table at most needs
442 32767/4=8191 long-jumps. A branch is better than a jump, since it is
443 relative; we will not have a reloc to fix up somewhere.
444
445 Note that we can't add relocs, because relaxation uses these fixed
446 numbers, and md_create_short_jump is called after relaxation. */
447
448 int md_short_jump_size = 6;
449
450 /* The v32 version has a delay-slot, hence two bytes longer.
451 The pre-v32 PIC version uses a prefixed insn. */
452 #define cris_any_v0_v10_long_jump_size 6
453 #define cris_any_v0_v10_long_jump_size_pic 8
454 #define crisv32_long_jump_size 8
455
456 int md_long_jump_size = XCONCAT2 (DEFAULT_CRIS_ARCH,_long_jump_size);
457
458 /* Report output format. Small changes in output format (like elf
459 variants below) can happen until all options are parsed, but after
460 that, the output format must remain fixed. */
461
462 const char *
463 cris_target_format (void)
464 {
465 switch (OUTPUT_FLAVOR)
466 {
467 case bfd_target_aout_flavour:
468 return "a.out-cris";
469
470 case bfd_target_elf_flavour:
471 if (symbols_have_leading_underscore)
472 return "elf32-us-cris";
473 return "elf32-cris";
474
475 default:
476 abort ();
477 return NULL;
478 }
479 }
480
481 /* Return a bfd_mach_cris... value corresponding to the value of
482 cris_arch. */
483
484 unsigned int
485 cris_mach (void)
486 {
487 unsigned int retval = 0;
488
489 switch (cris_arch)
490 {
491 case arch_cris_common_v10_v32:
492 retval = bfd_mach_cris_v10_v32;
493 break;
494
495 case arch_crisv32:
496 retval = bfd_mach_cris_v32;
497 break;
498
499 case arch_crisv10:
500 case arch_cris_any_v0_v10:
501 retval = bfd_mach_cris_v0_v10;
502 break;
503
504 default:
505 BAD_CASE (cris_arch);
506 }
507
508 return retval;
509 }
510
511 /* We need a port-specific relaxation function to cope with sym2 - sym1
512 relative expressions with both symbols in the same segment (but not
513 necessarily in the same frag as this insn), for example:
514 move.d [pc+sym2-(sym1-2)],r10
515 sym1:
516 The offset can be 8, 16 or 32 bits long. */
517
518 long
519 cris_relax_frag (segT seg ATTRIBUTE_UNUSED, fragS *fragP,
520 long stretch ATTRIBUTE_UNUSED)
521 {
522 long growth;
523 offsetT aim = 0;
524 symbolS *symbolP;
525 const relax_typeS *this_type;
526 const relax_typeS *start_type;
527 relax_substateT next_state;
528 relax_substateT this_state;
529 const relax_typeS *table = TC_GENERIC_RELAX_TABLE;
530
531 /* We only have to cope with frags as prepared by
532 md_estimate_size_before_relax. The dword cases may get here
533 because of the different reasons that they aren't relaxable. */
534 switch (fragP->fr_subtype)
535 {
536 case ENCODE_RELAX (STATE_COND_BRANCH_PIC, STATE_DWORD):
537 case ENCODE_RELAX (STATE_COND_BRANCH, STATE_DWORD):
538 case ENCODE_RELAX (STATE_COND_BRANCH_V32, STATE_DWORD):
539 case ENCODE_RELAX (STATE_COND_BRANCH_COMMON, STATE_DWORD):
540 case ENCODE_RELAX (STATE_ABS_BRANCH_V32, STATE_DWORD):
541 case ENCODE_RELAX (STATE_LAPC, STATE_DWORD):
542 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_DWORD):
543 /* When we get to these states, the frag won't grow any more. */
544 return 0;
545
546 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_WORD):
547 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_BYTE):
548 if (fragP->fr_symbol == NULL
549 || S_GET_SEGMENT (fragP->fr_symbol) != absolute_section)
550 as_fatal (_("internal inconsistency problem in %s: fr_symbol %lx"),
551 __FUNCTION__, (long) fragP->fr_symbol);
552 symbolP = fragP->fr_symbol;
553 if (symbol_resolved_p (symbolP))
554 as_fatal (_("internal inconsistency problem in %s: resolved symbol"),
555 __FUNCTION__);
556 aim = S_GET_VALUE (symbolP);
557 break;
558
559 case ENCODE_RELAX (STATE_MUL, STATE_BYTE):
560 /* Nothing to do here. */
561 return 0;
562
563 default:
564 as_fatal (_("internal inconsistency problem in %s: fr_subtype %d"),
565 __FUNCTION__, fragP->fr_subtype);
566 }
567
568 /* The rest is stolen from relax_frag. There's no obvious way to
569 share the code, but fortunately no requirement to keep in sync as
570 long as fragP->fr_symbol does not have its segment changed. */
571
572 this_state = fragP->fr_subtype;
573 start_type = this_type = table + this_state;
574
575 if (aim < 0)
576 {
577 /* Look backwards. */
578 for (next_state = this_type->rlx_more; next_state;)
579 if (aim >= this_type->rlx_backward)
580 next_state = 0;
581 else
582 {
583 /* Grow to next state. */
584 this_state = next_state;
585 this_type = table + this_state;
586 next_state = this_type->rlx_more;
587 }
588 }
589 else
590 {
591 /* Look forwards. */
592 for (next_state = this_type->rlx_more; next_state;)
593 if (aim <= this_type->rlx_forward)
594 next_state = 0;
595 else
596 {
597 /* Grow to next state. */
598 this_state = next_state;
599 this_type = table + this_state;
600 next_state = this_type->rlx_more;
601 }
602 }
603
604 growth = this_type->rlx_length - start_type->rlx_length;
605 if (growth != 0)
606 fragP->fr_subtype = this_state;
607 return growth;
608 }
609
610 /* Prepare machine-dependent frags for relaxation.
611
612 Called just before relaxation starts. Any symbol that is now undefined
613 will not become defined.
614
615 Return the correct fr_subtype in the frag.
616
617 Return the initial "guess for fr_var" to caller. The guess for fr_var
618 is *actually* the growth beyond fr_fix. Whatever we do to grow fr_fix
619 or fr_var contributes to our returned value.
620
621 Although it may not be explicit in the frag, pretend
622 fr_var starts with a value. */
623
624 int
625 md_estimate_size_before_relax (fragS *fragP, segT segment_type)
626 {
627 int old_fr_fix;
628 symbolS *symbolP = fragP->fr_symbol;
629
630 #define HANDLE_RELAXABLE(state) \
631 case ENCODE_RELAX (state, STATE_UNDF): \
632 if (symbolP != NULL \
633 && S_GET_SEGMENT (symbolP) == segment_type \
634 && !S_IS_WEAK (symbolP)) \
635 /* The symbol lies in the same segment - a relaxable \
636 case. */ \
637 fragP->fr_subtype \
638 = ENCODE_RELAX (state, STATE_BYTE); \
639 else \
640 /* Unknown or not the same segment, so not relaxable. */ \
641 fragP->fr_subtype \
642 = ENCODE_RELAX (state, STATE_DWORD); \
643 fragP->fr_var \
644 = md_cris_relax_table[fragP->fr_subtype].rlx_length; \
645 break
646
647 old_fr_fix = fragP->fr_fix;
648
649 switch (fragP->fr_subtype)
650 {
651 HANDLE_RELAXABLE (STATE_COND_BRANCH);
652 HANDLE_RELAXABLE (STATE_COND_BRANCH_V32);
653 HANDLE_RELAXABLE (STATE_COND_BRANCH_COMMON);
654 HANDLE_RELAXABLE (STATE_COND_BRANCH_PIC);
655 HANDLE_RELAXABLE (STATE_ABS_BRANCH_V32);
656
657 case ENCODE_RELAX (STATE_LAPC, STATE_UNDF):
658 if (symbolP != NULL
659 && S_GET_SEGMENT (symbolP) == segment_type
660 && !S_IS_WEAK (symbolP))
661 {
662 /* The symbol lies in the same segment - a relaxable case.
663 Check if we currently have an odd offset; we can't code
664 that into the instruction. Relaxing presumably only cause
665 multiple-of-two changes, so we should only need to adjust
666 for that here. */
667 bfd_vma target_address
668 = (symbolP
669 ? S_GET_VALUE (symbolP)
670 : 0) + fragP->fr_offset;
671 bfd_vma var_part_offset = fragP->fr_fix;
672 bfd_vma address_of_var_part = fragP->fr_address + var_part_offset;
673 long offset = target_address - (address_of_var_part - 2);
674
675 fragP->fr_subtype
676 = (offset & 1)
677 ? ENCODE_RELAX (STATE_LAPC, STATE_DWORD)
678 : ENCODE_RELAX (STATE_LAPC, STATE_BYTE);
679 }
680 else
681 /* Unknown or not the same segment, so not relaxable. */
682 fragP->fr_subtype
683 = ENCODE_RELAX (STATE_LAPC, STATE_DWORD);
684 fragP->fr_var
685 = md_cris_relax_table[fragP->fr_subtype].rlx_length;
686 break;
687
688 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_UNDF):
689 /* Note that we can not do anything sane with relaxing
690 [rX + a_known_symbol_in_text], it will have to be a 32-bit
691 value.
692
693 We could play tricks with managing a constant pool and make
694 a_known_symbol_in_text a "bdap [pc + offset]" pointing there
695 (like the GOT for ELF shared libraries), but that's no use, it
696 would in general be no shorter or faster code, only more
697 complicated. */
698
699 if (S_GET_SEGMENT (symbolP) != absolute_section)
700 {
701 /* Go for dword if not absolute or same segment. */
702 fragP->fr_subtype
703 = ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_DWORD);
704 fragP->fr_var = md_cris_relax_table[fragP->fr_subtype].rlx_length;
705 }
706 else if (!symbol_resolved_p (fragP->fr_symbol))
707 {
708 /* The symbol will eventually be completely resolved as an
709 absolute expression, but right now it depends on the result
710 of relaxation and we don't know anything else about the
711 value. We start relaxation with the assumption that it'll
712 fit in a byte. */
713 fragP->fr_subtype
714 = ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_BYTE);
715 fragP->fr_var = md_cris_relax_table[fragP->fr_subtype].rlx_length;
716 }
717 else
718 {
719 /* Absolute expression. */
720 long int value;
721 value = (symbolP != NULL
722 ? S_GET_VALUE (symbolP) : 0) + fragP->fr_offset;
723
724 if (value >= -128 && value <= 127)
725 {
726 /* Byte displacement. */
727 (fragP->fr_opcode)[0] = value;
728 }
729 else
730 {
731 /* Word or dword displacement. */
732 int pow2_of_size = 1;
733 char *writep;
734
735 if (value < -32768 || value > 32767)
736 {
737 /* Outside word range, make it a dword. */
738 pow2_of_size = 2;
739 }
740
741 /* Modify the byte-offset BDAP into a word or dword offset
742 BDAP. Or really, a BDAP rX,8bit into a
743 BDAP.[wd] rX,[PC+] followed by a word or dword. */
744 (fragP->fr_opcode)[0] = BDAP_PC_LOW + pow2_of_size * 16;
745
746 /* Keep the register number in the highest four bits. */
747 (fragP->fr_opcode)[1] &= 0xF0;
748 (fragP->fr_opcode)[1] |= BDAP_INCR_HIGH;
749
750 /* It grew by two or four bytes. */
751 fragP->fr_fix += 1 << pow2_of_size;
752 writep = fragP->fr_literal + old_fr_fix;
753 md_number_to_chars (writep, value, 1 << pow2_of_size);
754 }
755 frag_wane (fragP);
756 }
757 break;
758
759 case ENCODE_RELAX (STATE_COND_BRANCH, STATE_BYTE):
760 case ENCODE_RELAX (STATE_COND_BRANCH, STATE_WORD):
761 case ENCODE_RELAX (STATE_COND_BRANCH, STATE_DWORD):
762 case ENCODE_RELAX (STATE_COND_BRANCH_PIC, STATE_BYTE):
763 case ENCODE_RELAX (STATE_COND_BRANCH_PIC, STATE_WORD):
764 case ENCODE_RELAX (STATE_COND_BRANCH_PIC, STATE_DWORD):
765 case ENCODE_RELAX (STATE_COND_BRANCH_V32, STATE_BYTE):
766 case ENCODE_RELAX (STATE_COND_BRANCH_V32, STATE_WORD):
767 case ENCODE_RELAX (STATE_COND_BRANCH_V32, STATE_DWORD):
768 case ENCODE_RELAX (STATE_COND_BRANCH_COMMON, STATE_BYTE):
769 case ENCODE_RELAX (STATE_COND_BRANCH_COMMON, STATE_WORD):
770 case ENCODE_RELAX (STATE_COND_BRANCH_COMMON, STATE_DWORD):
771 case ENCODE_RELAX (STATE_ABS_BRANCH_V32, STATE_BYTE):
772 case ENCODE_RELAX (STATE_ABS_BRANCH_V32, STATE_WORD):
773 case ENCODE_RELAX (STATE_ABS_BRANCH_V32, STATE_DWORD):
774 case ENCODE_RELAX (STATE_LAPC, STATE_BYTE):
775 case ENCODE_RELAX (STATE_LAPC, STATE_DWORD):
776 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_BYTE):
777 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_WORD):
778 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_DWORD):
779 /* When relaxing a section for the second time, we don't need to
780 do anything except making sure that fr_var is set right. */
781 fragP->fr_var = md_cris_relax_table[fragP->fr_subtype].rlx_length;
782 break;
783
784 case ENCODE_RELAX (STATE_MUL, STATE_BYTE):
785 /* Nothing to do here. */
786 break;
787
788 default:
789 BAD_CASE (fragP->fr_subtype);
790 }
791
792 return fragP->fr_var + (fragP->fr_fix - old_fr_fix);
793 }
794
795 /* Perform post-processing of machine-dependent frags after relaxation.
796 Called after relaxation is finished.
797 In: Address of frag.
798 fr_type == rs_machine_dependent.
799 fr_subtype is what the address relaxed to.
800
801 Out: Any fixS:s and constants are set up.
802
803 The caller will turn the frag into a ".space 0". */
804
805 void
806 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
807 fragS *fragP)
808 {
809 /* Pointer to first byte in variable-sized part of the frag. */
810 char *var_partp;
811
812 /* Pointer to first opcode byte in frag. */
813 char *opcodep;
814
815 /* Used to check integrity of the relaxation.
816 One of 2 = long, 1 = word, or 0 = byte. */
817 int length_code ATTRIBUTE_UNUSED;
818
819 /* Size in bytes of variable-sized part of frag. */
820 int var_part_size = 0;
821
822 /* This is part of *fragP. It contains all information about addresses
823 and offsets to varying parts. */
824 symbolS *symbolP;
825 unsigned long var_part_offset;
826
827 /* Where, in file space, is _var of *fragP? */
828 unsigned long address_of_var_part = 0;
829
830 /* Where, in file space, does addr point? */
831 unsigned long target_address;
832
833 know (fragP->fr_type == rs_machine_dependent);
834
835 length_code = fragP->fr_subtype & STATE_LENGTH_MASK;
836 know (length_code >= 0 && length_code < STATE_MAX_LENGTH);
837
838 var_part_offset = fragP->fr_fix;
839 var_partp = fragP->fr_literal + var_part_offset;
840 opcodep = fragP->fr_opcode;
841
842 symbolP = fragP->fr_symbol;
843 target_address = (symbolP ? S_GET_VALUE (symbolP) : 0) + fragP->fr_offset;
844 address_of_var_part = fragP->fr_address + var_part_offset;
845
846 switch (fragP->fr_subtype)
847 {
848 case ENCODE_RELAX (STATE_COND_BRANCH, STATE_BYTE):
849 case ENCODE_RELAX (STATE_COND_BRANCH_PIC, STATE_BYTE):
850 case ENCODE_RELAX (STATE_COND_BRANCH_V32, STATE_BYTE):
851 case ENCODE_RELAX (STATE_COND_BRANCH_COMMON, STATE_BYTE):
852 case ENCODE_RELAX (STATE_ABS_BRANCH_V32, STATE_BYTE):
853 opcodep[0] = branch_disp ((target_address - address_of_var_part));
854 var_part_size = 0;
855 break;
856
857 case ENCODE_RELAX (STATE_COND_BRANCH, STATE_WORD):
858 case ENCODE_RELAX (STATE_COND_BRANCH_PIC, STATE_WORD):
859 case ENCODE_RELAX (STATE_COND_BRANCH_V32, STATE_WORD):
860 case ENCODE_RELAX (STATE_COND_BRANCH_COMMON, STATE_WORD):
861 case ENCODE_RELAX (STATE_ABS_BRANCH_V32, STATE_WORD):
862 /* We had a quick immediate branch, now turn it into a word one i.e. a
863 PC autoincrement. */
864 opcodep[0] = BRANCH_PC_LOW;
865 opcodep[1] &= 0xF0;
866 opcodep[1] |= BRANCH_INCR_HIGH;
867 md_number_to_chars (var_partp,
868 (long)
869 (target_address
870 - (address_of_var_part
871 + (cris_arch == arch_crisv32
872 || cris_arch == arch_cris_common_v10_v32
873 ? -2 : 2))),
874 2);
875 var_part_size = 2;
876 break;
877
878 case ENCODE_RELAX (STATE_COND_BRANCH, STATE_DWORD):
879 gen_cond_branch_32 (fragP->fr_opcode, var_partp, fragP,
880 fragP->fr_symbol, (symbolS *) NULL,
881 fragP->fr_offset);
882 /* Ten bytes added: a branch, nop and a jump. */
883 var_part_size = 2 + 2 + 4 + 2;
884 break;
885
886 case ENCODE_RELAX (STATE_COND_BRANCH_PIC, STATE_DWORD):
887 gen_cond_branch_32 (fragP->fr_opcode, var_partp, fragP,
888 fragP->fr_symbol, (symbolS *) NULL,
889 fragP->fr_offset);
890 /* Twelve bytes added: a branch, nop and a pic-branch-32. */
891 var_part_size = 2 + 2 + 4 + 2 + 2;
892 break;
893
894 case ENCODE_RELAX (STATE_COND_BRANCH_V32, STATE_DWORD):
895 gen_cond_branch_32 (fragP->fr_opcode, var_partp, fragP,
896 fragP->fr_symbol, (symbolS *) NULL,
897 fragP->fr_offset);
898 /* Twelve bytes added: a branch, nop and another branch and nop. */
899 var_part_size = 2 + 2 + 2 + 4 + 2;
900 break;
901
902 case ENCODE_RELAX (STATE_COND_BRANCH_COMMON, STATE_DWORD):
903 as_bad_where (fragP->fr_file, fragP->fr_line,
904 _("Relaxation to long branches for .arch common_v10_v32\
905 not implemented"));
906 /* Pretend we have twelve bytes for sake of quelling further
907 errors. */
908 var_part_size = 2 + 2 + 2 + 4 + 2;
909 break;
910
911 case ENCODE_RELAX (STATE_ABS_BRANCH_V32, STATE_DWORD):
912 /* We had a quick immediate branch or a word immediate ba. Now
913 turn it into a dword one. */
914 opcodep[0] = BA_DWORD_OPCODE & 255;
915 opcodep[1] = (BA_DWORD_OPCODE >> 8) & 255;
916 fix_new (fragP, var_partp - fragP->fr_literal, 4, symbolP,
917 fragP->fr_offset + 6, 1, BFD_RELOC_32_PCREL);
918 var_part_size = 4;
919 break;
920
921 case ENCODE_RELAX (STATE_LAPC, STATE_BYTE):
922 {
923 long offset = target_address - (address_of_var_part - 2);
924
925 /* This is mostly a sanity check; useful occurrences (if there
926 really are any) should have been caught in
927 md_estimate_size_before_relax. We can (at least
928 theoretically) stumble over invalid code with odd sizes and
929 .p2aligns within the code, so emit an error if that happens.
930 (The generic relaxation machinery is not fit to check this.) */
931
932 if (offset & 1)
933 as_bad_where (fragP->fr_file, fragP->fr_line,
934 _("Complicated LAPC target operand is not\
935 a multiple of two. Use LAPC.D"));
936
937 /* FIXME: This *is* a sanity check. Remove when done with. */
938 if (offset > 15*2 || offset < 0)
939 as_fatal (_("Internal error found in md_convert_frag: offset %ld.\
940 Please report this."),
941 offset);
942
943 opcodep[0] |= (offset / 2) & 0xf;
944 var_part_size = 0;
945 }
946 break;
947
948 case ENCODE_RELAX (STATE_LAPC, STATE_DWORD):
949 {
950 md_number_to_chars (opcodep,
951 LAPC_DWORD_OPCODE + (opcodep[1] & 0xf0) * 256,
952 2);
953 /* Remember that the reloc is against the position *after* the
954 relocated contents, so we need to adjust to the start of
955 the insn. */
956 fix_new (fragP, var_partp - fragP->fr_literal, 4, fragP->fr_symbol,
957 fragP->fr_offset + 6, 1, BFD_RELOC_32_PCREL);
958 var_part_size = 4;
959 }
960 break;
961
962 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_BYTE):
963 if (symbolP == NULL)
964 as_fatal (_("internal inconsistency in %s: bdapq no symbol"),
965 __FUNCTION__);
966 opcodep[0] = S_GET_VALUE (symbolP);
967 var_part_size = 0;
968 break;
969
970 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_WORD):
971 /* We had a BDAP 8-bit "quick immediate", now turn it into a 16-bit
972 one that uses PC autoincrement. */
973 opcodep[0] = BDAP_PC_LOW + (1 << 4);
974 opcodep[1] &= 0xF0;
975 opcodep[1] |= BDAP_INCR_HIGH;
976 if (symbolP == NULL)
977 as_fatal (_("internal inconsistency in %s: bdap.w with no symbol"),
978 __FUNCTION__);
979 md_number_to_chars (var_partp, S_GET_VALUE (symbolP), 2);
980 var_part_size = 2;
981 break;
982
983 case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_DWORD):
984 /* We had a BDAP 16-bit "word", change the offset to a dword. */
985 opcodep[0] = BDAP_PC_LOW + (2 << 4);
986 opcodep[1] &= 0xF0;
987 opcodep[1] |= BDAP_INCR_HIGH;
988 if (fragP->fr_symbol == NULL)
989 md_number_to_chars (var_partp, fragP->fr_offset, 4);
990 else
991 fix_new (fragP, var_partp - fragP->fr_literal, 4, fragP->fr_symbol,
992 fragP->fr_offset, 0, BFD_RELOC_32);
993 var_part_size = 4;
994 break;
995
996 case ENCODE_RELAX (STATE_MUL, STATE_BYTE):
997 /* This is the only time we check position and alignment of the
998 placement-tracking frag. */
999 if (sec->alignment_power < 2)
1000 as_bad_where (fragP->fr_file, fragP->fr_line,
1001 _("section alignment must be >= 4 bytes to check MULS/MULU safeness"));
1002 else
1003 {
1004 /* If the address after the MULS/MULU has alignment which is
1005 that of the section and may be that of a cache-size of the
1006 buggy versions, then the MULS/MULU can be placed badly. */
1007 if ((address_of_var_part
1008 & ((1 << sec->alignment_power) - 1) & 31) == 0)
1009 as_bad_where (fragP->fr_file, fragP->fr_line,
1010 _("dangerous MULS/MULU location; give it higher alignment"));
1011 }
1012 break;
1013
1014 default:
1015 BAD_CASE (fragP->fr_subtype);
1016 break;
1017 }
1018
1019 fragP->fr_fix += var_part_size;
1020 }
1021
1022 /* Generate a short jump around a secondary jump table.
1023 Also called from md_create_long_jump, when sufficient. */
1024
1025 void
1026 md_create_short_jump (char *storep, addressT from_addr, addressT to_addr,
1027 fragS *fragP ATTRIBUTE_UNUSED,
1028 symbolS *to_symbol ATTRIBUTE_UNUSED)
1029 {
1030 long int distance;
1031
1032 /* See md_create_long_jump about the comment on the "+ 2". */
1033 long int max_minimal_minus_distance;
1034 long int max_minimal_plus_distance;
1035 long int max_minus_distance;
1036 long int max_plus_distance;
1037 int nop_opcode;
1038
1039 if (cris_arch == arch_crisv32)
1040 {
1041 max_minimal_minus_distance = BRANCH_BB_V32 + 2;
1042 max_minimal_plus_distance = BRANCH_BF_V32 + 2;
1043 max_minus_distance = BRANCH_WB_V32 + 2;
1044 max_plus_distance = BRANCH_WF_V32 + 2;
1045 nop_opcode = NOP_OPCODE_V32;
1046 }
1047 else if (cris_arch == arch_cris_common_v10_v32)
1048 /* Bail out for compatibility mode. (It seems it can be implemented,
1049 perhaps with a 10-byte sequence: "move.d NNNN,$pc/$acr", "jump
1050 $acr", "nop"; but doesn't seem worth it at the moment.) */
1051 as_fatal (_("Out-of-range .word offset handling\
1052 is not implemented for .arch common_v10_v32"));
1053 else
1054 {
1055 max_minimal_minus_distance = BRANCH_BB + 2;
1056 max_minimal_plus_distance = BRANCH_BF + 2;
1057 max_minus_distance = BRANCH_WB + 2;
1058 max_plus_distance = BRANCH_WF + 2;
1059 nop_opcode = NOP_OPCODE;
1060 }
1061
1062 distance = to_addr - from_addr;
1063
1064 if (max_minimal_minus_distance <= distance
1065 && distance <= max_minimal_plus_distance)
1066 {
1067 /* Create a "short" short jump: "BA distance - 2". */
1068 storep[0] = branch_disp (distance - 2);
1069 storep[1] = BA_QUICK_HIGH;
1070
1071 /* A nop for the delay slot. */
1072 md_number_to_chars (storep + 2, nop_opcode, 2);
1073
1074 /* The extra word should be filled with something sane too. Make it
1075 a nop to keep disassembly sane. */
1076 md_number_to_chars (storep + 4, nop_opcode, 2);
1077 }
1078 else if (max_minus_distance <= distance
1079 && distance <= max_plus_distance)
1080 {
1081 /* Make it a "long" short jump: "BA (PC+)". */
1082 md_number_to_chars (storep, BA_PC_INCR_OPCODE, 2);
1083
1084 /* ".WORD distance - 4". */
1085 md_number_to_chars (storep + 2,
1086 (long) (distance - 4
1087 - (cris_arch == arch_crisv32
1088 ? -4 : 0)),
1089 2);
1090
1091 /* A nop for the delay slot. */
1092 md_number_to_chars (storep + 4, nop_opcode, 2);
1093 }
1094 else
1095 as_bad_where (fragP->fr_file, fragP->fr_line,
1096 _(".word case-table handling failed: table too large"));
1097 }
1098
1099 /* Generate a long jump in a secondary jump table.
1100
1101 storep Where to store the jump instruction.
1102 from_addr Address of the jump instruction.
1103 to_addr Destination address of the jump.
1104 fragP Which frag the destination address operand
1105 lies in.
1106 to_symbol Destination symbol. */
1107
1108 void
1109 md_create_long_jump (char *storep, addressT from_addr, addressT to_addr,
1110 fragS *fragP, symbolS *to_symbol)
1111 {
1112 long int distance;
1113
1114 /* FIXME: What's that "+ 3"? It comes from the magic numbers that
1115 used to be here, it's just translated to the limit macros used in
1116 the relax table. But why + 3? */
1117 long int max_short_minus_distance
1118 = cris_arch != arch_crisv32 ? BRANCH_WB + 3 : BRANCH_WB_V32 + 3;
1119
1120 long int max_short_plus_distance
1121 = cris_arch != arch_crisv32 ? BRANCH_WF + 3 : BRANCH_WF_V32 + 3;
1122
1123 distance = to_addr - from_addr;
1124
1125 if (max_short_minus_distance <= distance
1126 && distance <= max_short_plus_distance)
1127 {
1128 /* Then make it a "short" long jump. */
1129 md_create_short_jump (storep, from_addr, to_addr, fragP,
1130 to_symbol);
1131 if (cris_arch == arch_crisv32)
1132 md_number_to_chars (storep + 6, NOP_OPCODE_V32, 2);
1133 else
1134 md_number_to_chars (storep + 6, NOP_OPCODE, 2);
1135 }
1136 else
1137 {
1138 /* We have a "long" long jump: "JUMP [PC+]". If CRISv32, always
1139 make it a BA. Else make it an "MOVE [PC=PC+N],P0" if we're supposed
1140 to emit PIC code. */
1141 md_number_to_chars (storep,
1142 cris_arch == arch_crisv32
1143 ? BA_DWORD_OPCODE
1144 : (pic ? MOVE_PC_INCR_OPCODE_PREFIX
1145 : JUMP_PC_INCR_OPCODE),
1146 2);
1147
1148 /* Follow with a ".DWORD to_addr", PC-relative for PIC. */
1149 fix_new (fragP, storep + 2 - fragP->fr_literal, 4, to_symbol,
1150 cris_arch == arch_crisv32 ? 6 : 0,
1151 cris_arch == arch_crisv32 || pic ? 1 : 0,
1152 cris_arch == arch_crisv32 || pic
1153 ? BFD_RELOC_32_PCREL : BFD_RELOC_32);
1154
1155 /* Follow it with a "NOP" for CRISv32. */
1156 if (cris_arch == arch_crisv32)
1157 md_number_to_chars (storep + 6, NOP_OPCODE_V32, 2);
1158 else if (pic)
1159 /* ...and the rest of the move-opcode for pre-v32 PIC. */
1160 md_number_to_chars (storep + 6, MOVE_PC_INCR_OPCODE_SUFFIX, 2);
1161 }
1162 }
1163
1164 /* Allocate space for the first piece of an insn, and mark it as the
1165 start of the insn for debug-format use. */
1166
1167 static char *
1168 cris_insn_first_word_frag (void)
1169 {
1170 char *insnp = frag_more (2);
1171
1172 /* We need to mark the start of the insn by passing dwarf2_emit_insn
1173 the offset from the current fragment position. This must be done
1174 after the first fragment is created but before any other fragments
1175 (fixed or varying) are created. Note that the offset only
1176 corresponds to the "size" of the insn for a fixed-size,
1177 non-expanded insn. */
1178 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1179 dwarf2_emit_insn (2);
1180
1181 return insnp;
1182 }
1183
1184 /* Port-specific assembler initialization. */
1185
1186 void
1187 md_begin (void)
1188 {
1189 int i = 0;
1190
1191 /* Set up a hash table for the instructions. */
1192 op_hash = str_htab_create ();
1193 if (op_hash == NULL)
1194 as_fatal (_("Virtual memory exhausted"));
1195
1196 /* Enable use of ".if ..asm.arch.cris.v32"
1197 and ".if ..asm.arch.cris.common_v10_v32" and a few others. */
1198 symbol_table_insert (symbol_new ("..asm.arch.cris.v32", absolute_section,
1199 &zero_address_frag,
1200 cris_arch == arch_crisv32));
1201 symbol_table_insert (symbol_new ("..asm.arch.cris.v10", absolute_section,
1202 &zero_address_frag,
1203 cris_arch == arch_crisv10));
1204 symbol_table_insert (symbol_new ("..asm.arch.cris.common_v10_v32",
1205 absolute_section,
1206 &zero_address_frag,
1207 cris_arch == arch_cris_common_v10_v32));
1208 symbol_table_insert (symbol_new ("..asm.arch.cris.any_v0_v10",
1209 absolute_section,
1210 &zero_address_frag,
1211 cris_arch == arch_cris_any_v0_v10));
1212
1213 while (cris_opcodes[i].name != NULL)
1214 {
1215 const char *name = cris_opcodes[i].name;
1216
1217 if (! cris_insn_ver_valid_for_arch (cris_opcodes[i].applicable_version,
1218 cris_arch))
1219 {
1220 i++;
1221 continue;
1222 }
1223
1224 if (str_hash_insert (op_hash, name, &cris_opcodes[i], 0) != NULL)
1225 as_fatal (_("duplicate %s"), name);
1226
1227 do
1228 {
1229 if (cris_opcodes[i].match & cris_opcodes[i].lose)
1230 as_fatal (_("Buggy opcode: `%s' \"%s\"\n"), cris_opcodes[i].name,
1231 cris_opcodes[i].args);
1232
1233 ++i;
1234 }
1235 while (cris_opcodes[i].name != NULL
1236 && strcmp (cris_opcodes[i].name, name) == 0);
1237 }
1238 }
1239
1240 /* Assemble a source line. */
1241
1242 void
1243 md_assemble (char *str)
1244 {
1245 struct cris_instruction output_instruction;
1246 struct cris_prefix prefix;
1247 char *opcodep;
1248 char *p;
1249
1250 know (str);
1251
1252 /* Do the low-level grunt - assemble to bits and split up into a prefix
1253 and ordinary insn. */
1254 cris_process_instruction (str, &output_instruction, &prefix);
1255
1256 /* Handle any prefixes to the instruction. */
1257 switch (prefix.kind)
1258 {
1259 case PREFIX_NONE:
1260 break;
1261
1262 /* When the expression is unknown for a BDAP, it can need 0, 2 or 4
1263 extra bytes, so we handle it separately. */
1264 case PREFIX_BDAP_IMM:
1265 /* We only do it if the relocation is unspecified, i.e. not a PIC or TLS
1266 relocation. */
1267 if (prefix.reloc == BFD_RELOC_NONE)
1268 {
1269 gen_bdap (prefix.base_reg_number, &prefix.expr);
1270 break;
1271 }
1272 /* Fall through. */
1273 case PREFIX_BDAP:
1274 case PREFIX_BIAP:
1275 case PREFIX_DIP:
1276 opcodep = cris_insn_first_word_frag ();
1277
1278 /* Output the prefix opcode. */
1279 md_number_to_chars (opcodep, (long) prefix.opcode, 2);
1280
1281 /* Having a specified reloc only happens for DIP and for BDAP with
1282 PIC or TLS operands, but it is ok to drop through here for the other
1283 prefixes as they can have no relocs specified. */
1284 if (prefix.reloc != BFD_RELOC_NONE)
1285 {
1286 unsigned int relocsize
1287 = (prefix.kind == PREFIX_DIP
1288 ? 4 : cris_get_specified_reloc_size (prefix.reloc));
1289
1290 p = frag_more (relocsize);
1291 fix_new_exp (frag_now, (p - frag_now->fr_literal), relocsize,
1292 &prefix.expr, 0, prefix.reloc);
1293 }
1294 break;
1295
1296 case PREFIX_PUSH:
1297 opcodep = cris_insn_first_word_frag ();
1298
1299 /* Output the prefix opcode. Being a "push", we add the negative
1300 size of the register to "sp". */
1301 if (output_instruction.spec_reg != NULL)
1302 {
1303 /* Special register. */
1304 opcodep[0] = -output_instruction.spec_reg->reg_size;
1305 }
1306 else
1307 {
1308 /* General register. */
1309 opcodep[0] = -4;
1310 }
1311 opcodep[1] = (REG_SP << 4) + (BDAP_QUICK_OPCODE >> 8);
1312 break;
1313
1314 default:
1315 BAD_CASE (prefix.kind);
1316 }
1317
1318 /* If we only had a prefix insn, we're done. */
1319 if (output_instruction.insn_type == CRIS_INSN_NONE)
1320 return;
1321
1322 /* Done with the prefix. Continue with the main instruction. */
1323 if (prefix.kind == PREFIX_NONE)
1324 opcodep = cris_insn_first_word_frag ();
1325 else
1326 opcodep = frag_more (2);
1327
1328 /* Output the instruction opcode. */
1329 md_number_to_chars (opcodep, (long) (output_instruction.opcode), 2);
1330
1331 /* Output the symbol-dependent instruction stuff. */
1332 if (output_instruction.insn_type == CRIS_INSN_BRANCH)
1333 {
1334 segT to_seg = absolute_section;
1335 int is_undefined = 0;
1336 int length_code;
1337
1338 if (output_instruction.expr.X_op != O_constant)
1339 {
1340 to_seg = S_GET_SEGMENT (output_instruction.expr.X_add_symbol);
1341
1342 if (to_seg == undefined_section)
1343 is_undefined = 1;
1344 }
1345
1346 if (to_seg == now_seg || is_undefined
1347 /* In CRISv32, there *is* a 32-bit absolute branch, so don't
1348 emit the 12-byte sequence for known symbols in other
1349 segments. */
1350 || (cris_arch == arch_crisv32
1351 && output_instruction.opcode == BA_QUICK_OPCODE))
1352 {
1353 /* Handle complex expressions. */
1354 valueT addvalue
1355 = (SIMPLE_EXPR (&output_instruction.expr)
1356 ? output_instruction.expr.X_add_number
1357 : 0);
1358 symbolS *sym
1359 = (SIMPLE_EXPR (&output_instruction.expr)
1360 ? output_instruction.expr.X_add_symbol
1361 : make_expr_symbol (&output_instruction.expr));
1362
1363 /* If is_undefined, the expression may still become now_seg.
1364 That case is handled by md_estimate_size_before_relax. */
1365 length_code = to_seg == now_seg ? STATE_BYTE : STATE_UNDF;
1366
1367 /* Make room for max twelve bytes of variable length for v32 mode
1368 or PIC, ten for v10 and older. */
1369 frag_var (rs_machine_dependent,
1370 (cris_arch == arch_crisv32
1371 || cris_arch == arch_cris_common_v10_v32
1372 || pic) ? 12 : 10, 0,
1373 ENCODE_RELAX (cris_arch == arch_crisv32
1374 ? (output_instruction.opcode
1375 == BA_QUICK_OPCODE
1376 ? STATE_ABS_BRANCH_V32
1377 : STATE_COND_BRANCH_V32)
1378 : (cris_arch == arch_cris_common_v10_v32
1379 ? STATE_COND_BRANCH_COMMON
1380 : (pic ? STATE_COND_BRANCH_PIC
1381 : STATE_COND_BRANCH)),
1382 length_code),
1383 sym, addvalue, opcodep);
1384 }
1385 else
1386 {
1387 /* We have: to_seg != now_seg && to_seg != undefined_section.
1388 This means it is a branch to a known symbol in another
1389 section, perhaps an absolute address. Emit a 32-bit branch. */
1390 char *cond_jump
1391 = frag_more ((cris_arch == arch_crisv32
1392 || cris_arch == arch_cris_common_v10_v32
1393 || pic)
1394 ? 12 : 10);
1395
1396 gen_cond_branch_32 (opcodep, cond_jump, frag_now,
1397 output_instruction.expr.X_add_symbol,
1398 (symbolS *) NULL,
1399 output_instruction.expr.X_add_number);
1400 }
1401 }
1402 else if (output_instruction.insn_type == CRIS_INSN_MUL
1403 && err_for_dangerous_mul_placement)
1404 /* Create a frag which which we track the location of the mul insn
1405 (in the last two bytes before the mul-frag). */
1406 frag_variant (rs_machine_dependent, 0, 0,
1407 ENCODE_RELAX (STATE_MUL, STATE_BYTE),
1408 NULL, 0, opcodep);
1409 else
1410 {
1411 if (output_instruction.imm_oprnd_size > 0)
1412 {
1413 /* The instruction has an immediate operand. */
1414 enum bfd_reloc_code_real reloc = BFD_RELOC_NONE;
1415
1416 switch (output_instruction.imm_oprnd_size)
1417 {
1418 /* Any byte-size immediate constants are treated as
1419 word-size. FIXME: Thus overflow check does not work
1420 correctly. */
1421
1422 case 2:
1423 /* Note that size-check for the explicit reloc has already
1424 been done when we get here. */
1425 if (output_instruction.reloc != BFD_RELOC_NONE)
1426 reloc = output_instruction.reloc;
1427 else
1428 reloc = BFD_RELOC_16;
1429 break;
1430
1431 case 4:
1432 /* Allow a relocation specified in the operand. */
1433 if (output_instruction.reloc != BFD_RELOC_NONE)
1434 reloc = output_instruction.reloc;
1435 else
1436 reloc = BFD_RELOC_32;
1437 break;
1438
1439 default:
1440 BAD_CASE (output_instruction.imm_oprnd_size);
1441 }
1442
1443 p = frag_more (output_instruction.imm_oprnd_size);
1444 fix_new_exp (frag_now, (p - frag_now->fr_literal),
1445 output_instruction.imm_oprnd_size,
1446 &output_instruction.expr,
1447 reloc == BFD_RELOC_32_PCREL
1448 || reloc == BFD_RELOC_16_PCREL
1449 || reloc == BFD_RELOC_8_PCREL, reloc);
1450 }
1451 else if (output_instruction.reloc == BFD_RELOC_CRIS_LAPCQ_OFFSET
1452 && output_instruction.expr.X_md != 0)
1453 {
1454 /* Handle complex expressions. */
1455 valueT addvalue
1456 = (output_instruction.expr.X_op_symbol != NULL
1457 ? 0 : output_instruction.expr.X_add_number);
1458 symbolS *sym
1459 = (output_instruction.expr.X_op_symbol != NULL
1460 ? make_expr_symbol (&output_instruction.expr)
1461 : output_instruction.expr.X_add_symbol);
1462
1463 /* This is a relaxing construct, so we need a frag_var rather
1464 than the fix_new_exp call below. */
1465 frag_var (rs_machine_dependent,
1466 4, 0,
1467 ENCODE_RELAX (STATE_LAPC, STATE_UNDF),
1468 sym, addvalue, opcodep);
1469 }
1470 else if (output_instruction.reloc != BFD_RELOC_NONE)
1471 {
1472 /* An immediate operand that has a relocation and needs to be
1473 processed further. */
1474
1475 /* It is important to use fix_new_exp here and everywhere else
1476 (and not fix_new), as fix_new_exp can handle "difference
1477 expressions" - where the expression contains a difference of
1478 two symbols in the same segment. */
1479 fix_new_exp (frag_now, (opcodep - frag_now->fr_literal), 2,
1480 &output_instruction.expr,
1481 output_instruction.reloc == BFD_RELOC_32_PCREL
1482 || output_instruction.reloc == BFD_RELOC_16_PCREL
1483 || output_instruction.reloc == BFD_RELOC_8_PCREL
1484 || (output_instruction.reloc
1485 == BFD_RELOC_CRIS_LAPCQ_OFFSET),
1486 output_instruction.reloc);
1487 }
1488 }
1489 }
1490
1491 /* Helper error-reporting function: calls as_bad for a format string
1492 for a single value and zeroes the offending value (zero assumed
1493 being a valid value) to avoid repeated error reports in later value
1494 checking. */
1495
1496 static void
1497 cris_bad (const char *format, offsetT *valp)
1498 {
1499 /* We cast to long so the format string can assume that format. */
1500 as_bad (format, (long) *valp);
1501 *valp = 0;
1502 }
1503
1504 /* Low level text-to-bits assembly. */
1505
1506 static void
1507 cris_process_instruction (char *insn_text, struct cris_instruction *out_insnp,
1508 struct cris_prefix *prefixp)
1509 {
1510 char *s;
1511 char modified_char = 0;
1512 const char *args;
1513 struct cris_opcode *instruction;
1514 char *operands;
1515 int match = 0;
1516 int mode;
1517 int regno;
1518 int size_bits;
1519
1520 /* Reset these fields to a harmless state in case we need to return in
1521 error. */
1522 prefixp->kind = PREFIX_NONE;
1523 prefixp->reloc = BFD_RELOC_NONE;
1524 out_insnp->insn_type = CRIS_INSN_NONE;
1525 out_insnp->imm_oprnd_size = 0;
1526
1527 /* Find the end of the opcode mnemonic. We assume (true in 2.9.1)
1528 that the caller has translated the opcode to lower-case, up to the
1529 first non-letter. */
1530 for (operands = insn_text; ISLOWER (*operands); ++operands)
1531 ;
1532
1533 /* Terminate the opcode after letters, but save the character there if
1534 it was of significance. */
1535 switch (*operands)
1536 {
1537 case '\0':
1538 break;
1539
1540 case '.':
1541 /* Put back the modified character later. */
1542 modified_char = *operands;
1543 /* Fall through. */
1544
1545 case ' ':
1546 /* Consume the character after the mnemonic
1547 and replace it with '\0'. */
1548 *operands++ = '\0';
1549 break;
1550
1551 default:
1552 as_bad (_("Unknown opcode: `%s'"), insn_text);
1553 return;
1554 }
1555
1556 /* Find the instruction. */
1557 instruction = (struct cris_opcode *) str_hash_find (op_hash, insn_text);
1558 if (instruction == NULL)
1559 {
1560 as_bad (_("Unknown opcode: `%s'"), insn_text);
1561 return;
1562 }
1563
1564 /* Put back the modified character. */
1565 switch (modified_char)
1566 {
1567 case 0:
1568 break;
1569
1570 default:
1571 *--operands = modified_char;
1572 }
1573
1574 /* Try to match an opcode table slot. */
1575 for (s = operands;;)
1576 {
1577 int imm_expr_found;
1578
1579 /* Initialize *prefixp, perhaps after being modified for a
1580 "near match". */
1581 prefixp->kind = PREFIX_NONE;
1582 prefixp->reloc = BFD_RELOC_NONE;
1583
1584 /* Initialize *out_insnp. */
1585 memset (out_insnp, 0, sizeof (*out_insnp));
1586 out_insnp->opcode = instruction->match;
1587 out_insnp->reloc = BFD_RELOC_NONE;
1588 out_insnp->insn_type = CRIS_INSN_NORMAL;
1589 out_insnp->imm_oprnd_size = 0;
1590
1591 imm_expr_found = 0;
1592
1593 /* Build the opcode, checking as we go to make sure that the
1594 operands match. */
1595 for (args = instruction->args;; ++args)
1596 {
1597 switch (*args)
1598 {
1599 case '\0':
1600 /* If we've come to the end of arguments, we're done. */
1601 if (*s == '\0')
1602 match = 1;
1603 break;
1604
1605 case '!':
1606 /* Non-matcher character for disassembly.
1607 Ignore it here. */
1608 continue;
1609
1610 case '[':
1611 case ']':
1612 case ',':
1613 case ' ':
1614 /* These must match exactly. */
1615 if (*s++ == *args)
1616 continue;
1617 break;
1618
1619 case 'A':
1620 /* "ACR", case-insensitive.
1621 Handle a sometimes-mandatory dollar sign as register
1622 prefix. */
1623 if (*s == REGISTER_PREFIX_CHAR)
1624 s++;
1625 else if (demand_register_prefix)
1626 break;
1627
1628 if ((*s++ != 'a' && s[-1] != 'A')
1629 || (*s++ != 'c' && s[-1] != 'C')
1630 || (*s++ != 'r' && s[-1] != 'R'))
1631 break;
1632 continue;
1633
1634 case 'B':
1635 /* This is not really an operand, but causes a "BDAP
1636 -size,SP" prefix to be output, for PUSH instructions. */
1637 prefixp->kind = PREFIX_PUSH;
1638 continue;
1639
1640 case 'b':
1641 /* This letter marks an operand that should not be matched
1642 in the assembler. It is a branch with 16-bit
1643 displacement. The assembler will create them from the
1644 8-bit flavor when necessary. The assembler does not
1645 support the [rN+] operand, as the [r15+] that is
1646 generated for 16-bit displacements. */
1647 break;
1648
1649 case 'c':
1650 /* A 5-bit unsigned immediate in bits <4:0>. */
1651 if (! cris_get_expression (&s, &out_insnp->expr))
1652 break;
1653 else
1654 {
1655 if (out_insnp->expr.X_op == O_constant
1656 && (out_insnp->expr.X_add_number < 0
1657 || out_insnp->expr.X_add_number > 31))
1658 cris_bad (_("Immediate value not in 5 bit unsigned range: %ld"),
1659 &out_insnp->expr.X_add_number);
1660
1661 out_insnp->reloc = BFD_RELOC_CRIS_UNSIGNED_5;
1662 continue;
1663 }
1664
1665 case 'C':
1666 /* A 4-bit unsigned immediate in bits <3:0>. */
1667 if (! cris_get_expression (&s, &out_insnp->expr))
1668 break;
1669 else
1670 {
1671 if (out_insnp->expr.X_op == O_constant
1672 && (out_insnp->expr.X_add_number < 0
1673 || out_insnp->expr.X_add_number > 15))
1674 cris_bad (_("Immediate value not in 4 bit unsigned range: %ld"),
1675 &out_insnp->expr.X_add_number);
1676
1677 out_insnp->reloc = BFD_RELOC_CRIS_UNSIGNED_4;
1678 continue;
1679 }
1680
1681 /* For 'd', check for an optional ".d" or ".D" at the
1682 start of the operands, followed by a space character. */
1683 case 'd':
1684 if (modified_char == '.' && *s == '.')
1685 {
1686 if ((s[1] != 'd' && s[1] == 'D')
1687 || ! ISSPACE (s[2]))
1688 break;
1689 s += 2;
1690 continue;
1691 }
1692 continue;
1693
1694 case 'D':
1695 /* General register in bits <15:12> and <3:0>. */
1696 if (! get_gen_reg (&s, &regno))
1697 break;
1698 else
1699 {
1700 out_insnp->opcode |= regno /* << 0 */;
1701 out_insnp->opcode |= regno << 12;
1702 continue;
1703 }
1704
1705 case 'f':
1706 /* Flags from the condition code register. */
1707 {
1708 int flags = 0;
1709
1710 if (! get_flags (&s, &flags))
1711 break;
1712
1713 out_insnp->opcode |= ((flags & 0xf0) << 8) | (flags & 0xf);
1714 continue;
1715 }
1716
1717 case 'i':
1718 /* A 6-bit signed immediate in bits <5:0>. */
1719 if (! cris_get_expression (&s, &out_insnp->expr))
1720 break;
1721 else
1722 {
1723 if (out_insnp->expr.X_op == O_constant
1724 && (out_insnp->expr.X_add_number < -32
1725 || out_insnp->expr.X_add_number > 31))
1726 cris_bad (_("Immediate value not in 6 bit range: %ld"),
1727 &out_insnp->expr.X_add_number);
1728
1729 out_insnp->reloc = BFD_RELOC_CRIS_SIGNED_6;
1730 continue;
1731 }
1732
1733 case 'I':
1734 /* A 6-bit unsigned immediate in bits <5:0>. */
1735 if (! cris_get_expression (&s, &out_insnp->expr))
1736 break;
1737 else
1738 {
1739 if (out_insnp->expr.X_op == O_constant
1740 && (out_insnp->expr.X_add_number < 0
1741 || out_insnp->expr.X_add_number > 63))
1742 cris_bad (_("Immediate value not in 6 bit unsigned range: %ld"),
1743 &out_insnp->expr.X_add_number);
1744
1745 out_insnp->reloc = BFD_RELOC_CRIS_UNSIGNED_6;
1746 continue;
1747 }
1748
1749 case 'M':
1750 /* A size modifier, B, W or D, to be put in a bit position
1751 suitable for CLEAR instructions (i.e. reflecting a zero
1752 register). */
1753 if (! get_bwd_size_modifier (&s, &size_bits))
1754 break;
1755 else
1756 {
1757 switch (size_bits)
1758 {
1759 case 0:
1760 out_insnp->opcode |= 0 << 12;
1761 break;
1762
1763 case 1:
1764 out_insnp->opcode |= 4 << 12;
1765 break;
1766
1767 case 2:
1768 out_insnp->opcode |= 8 << 12;
1769 break;
1770 }
1771 continue;
1772 }
1773
1774 case 'm':
1775 /* A size modifier, B, W or D, to be put in bits <5:4>. */
1776 if (modified_char != '.'
1777 || ! get_bwd_size_modifier (&s, &size_bits))
1778 break;
1779 else
1780 {
1781 out_insnp->opcode |= size_bits << 4;
1782 continue;
1783 }
1784
1785 case 'o':
1786 /* A branch expression. */
1787 if (! cris_get_expression (&s, &out_insnp->expr))
1788 break;
1789 else
1790 {
1791 out_insnp->insn_type = CRIS_INSN_BRANCH;
1792 continue;
1793 }
1794
1795 case 'Q':
1796 /* A 8-bit quick BDAP expression, "expr,R". */
1797 if (! cris_get_expression (&s, &out_insnp->expr))
1798 break;
1799
1800 if (*s != ',')
1801 break;
1802
1803 s++;
1804
1805 if (!get_gen_reg (&s, &regno))
1806 break;
1807
1808 out_insnp->opcode |= regno << 12;
1809 out_insnp->reloc = BFD_RELOC_CRIS_SIGNED_8;
1810 continue;
1811
1812 case 'O':
1813 /* A BDAP expression for any size, "expr,R". */
1814 if (! cris_get_expression (&s, &prefixp->expr))
1815 break;
1816 else
1817 {
1818 if (*s != ',')
1819 break;
1820
1821 s++;
1822
1823 if (!get_gen_reg (&s, &prefixp->base_reg_number))
1824 break;
1825
1826 /* Since 'O' is used with an explicit bdap, we have no
1827 "real" instruction. */
1828 prefixp->kind = PREFIX_BDAP_IMM;
1829 prefixp->opcode
1830 = BDAP_QUICK_OPCODE | (prefixp->base_reg_number << 12);
1831
1832 out_insnp->insn_type = CRIS_INSN_NONE;
1833 continue;
1834 }
1835
1836 case 'P':
1837 /* Special register in bits <15:12>. */
1838 if (! get_spec_reg (&s, &out_insnp->spec_reg))
1839 break;
1840 else
1841 {
1842 /* Use of some special register names come with a
1843 specific warning. Note that we have no ".cpu type"
1844 pseudo yet, so some of this is just unused
1845 framework. */
1846 if (out_insnp->spec_reg->warning)
1847 as_warn ("%s", out_insnp->spec_reg->warning);
1848 else if (out_insnp->spec_reg->applicable_version
1849 == cris_ver_warning)
1850 /* Others have a generic warning. */
1851 as_warn (_("Unimplemented register `%s' specified"),
1852 out_insnp->spec_reg->name);
1853
1854 out_insnp->opcode
1855 |= out_insnp->spec_reg->number << 12;
1856 continue;
1857 }
1858
1859 case 'p':
1860 /* This character is used in the disassembler to
1861 recognize a prefix instruction to fold into the
1862 addressing mode for the next instruction. It is
1863 ignored here. */
1864 continue;
1865
1866 case 'R':
1867 /* General register in bits <15:12>. */
1868 if (! get_gen_reg (&s, &regno))
1869 break;
1870 else
1871 {
1872 out_insnp->opcode |= regno << 12;
1873 continue;
1874 }
1875
1876 case 'r':
1877 /* General register in bits <3:0>. */
1878 if (! get_gen_reg (&s, &regno))
1879 break;
1880 else
1881 {
1882 out_insnp->opcode |= regno /* << 0 */;
1883 continue;
1884 }
1885
1886 case 'S':
1887 /* Source operand in bit <10> and a prefix; a 3-operand
1888 prefix. */
1889 if (! get_3op_or_dip_prefix_op (&s, prefixp))
1890 break;
1891 else
1892 continue;
1893
1894 case 's':
1895 /* Source operand in bits <10>, <3:0> and optionally a
1896 prefix; i.e. an indirect operand or an side-effect
1897 prefix (where valid). */
1898 if (! get_autoinc_prefix_or_indir_op (&s, prefixp, &mode,
1899 &regno,
1900 &imm_expr_found,
1901 &out_insnp->expr))
1902 break;
1903 else
1904 {
1905 if (prefixp->kind != PREFIX_NONE)
1906 {
1907 /* A prefix, so it has the autoincrement bit
1908 set. */
1909 out_insnp->opcode |= (AUTOINCR_BIT << 8);
1910 }
1911 else
1912 {
1913 /* No prefix. The "mode" variable contains bits like
1914 whether or not this is autoincrement mode. */
1915 out_insnp->opcode |= (mode << 10);
1916
1917 /* If there was a reloc specifier, then it was
1918 attached to the prefix. Note that we can't check
1919 that the reloc size matches, since we don't have
1920 all the operands yet in all cases. */
1921 if (prefixp->reloc != BFD_RELOC_NONE)
1922 out_insnp->reloc = prefixp->reloc;
1923 }
1924
1925 out_insnp->opcode |= regno /* << 0 */ ;
1926 continue;
1927 }
1928
1929 case 'N':
1930 case 'Y':
1931 /* Like 's', but immediate operand only. Also do not
1932 modify insn. There are no insns where an explicit reloc
1933 specifier makes sense. */
1934 if (cris_get_expression (&s, &out_insnp->expr))
1935 {
1936 imm_expr_found = 1;
1937 continue;
1938 }
1939 break;
1940
1941 case 'n':
1942 /* Like 'N', but PC-relative to the start of the insn.
1943 There might be a :PLT to request a PLT entry. */
1944 if (cris_get_expression (&s, &out_insnp->expr))
1945 {
1946 imm_expr_found = 1;
1947 out_insnp->reloc = BFD_RELOC_32_PCREL;
1948
1949 /* We have to adjust the expression, because that
1950 relocation is to the location *after* the
1951 relocation. So add 2 for the insn and 4 for the
1952 relocation. */
1953 out_insnp->expr.X_add_number += 6;
1954
1955 /* TLS specifiers do not make sense here. */
1956 if (pic && *s == RELOC_SUFFIX_CHAR)
1957 cris_get_reloc_suffix (&s, &out_insnp->reloc,
1958 &out_insnp->expr);
1959
1960 continue;
1961 }
1962 break;
1963
1964 case 'U':
1965 /* Maybe 'u', maybe 'n'. Only for LAPC/LAPCQ. */
1966 if (cris_get_expression (&s, &out_insnp->expr))
1967 {
1968 out_insnp->reloc = BFD_RELOC_CRIS_LAPCQ_OFFSET;
1969
1970 /* Define 1 as relaxing. */
1971 out_insnp->expr.X_md = 1;
1972 continue;
1973 }
1974 break;
1975
1976 case 'u':
1977 /* Four PC-relative bits in <3:0> representing <4:1>:0 of
1978 an offset relative to the beginning of the current
1979 insn. */
1980 if (cris_get_expression (&s, &out_insnp->expr))
1981 {
1982 out_insnp->reloc = BFD_RELOC_CRIS_LAPCQ_OFFSET;
1983
1984 /* Define 0 as non-relaxing. */
1985 out_insnp->expr.X_md = 0;
1986
1987 /* We have to adjust the expression, because that
1988 relocation is to the location *after* the
1989 insn. So add 2 for the insn. */
1990 out_insnp->expr.X_add_number += 2;
1991 continue;
1992 }
1993 break;
1994
1995 case 'x':
1996 /* Rs.m in bits <15:12> and <5:4>. */
1997 if (! get_gen_reg (&s, &regno)
1998 || ! get_bwd_size_modifier (&s, &size_bits))
1999 break;
2000 else
2001 {
2002 out_insnp->opcode |= (regno << 12) | (size_bits << 4);
2003 continue;
2004 }
2005
2006 case 'y':
2007 /* Source operand in bits <10>, <3:0> and optionally a
2008 prefix; i.e. an indirect operand or an side-effect
2009 prefix.
2010
2011 The difference to 's' is that this does not allow an
2012 "immediate" expression. */
2013 if (! get_autoinc_prefix_or_indir_op (&s, prefixp,
2014 &mode, &regno,
2015 &imm_expr_found,
2016 &out_insnp->expr)
2017 || imm_expr_found)
2018 break;
2019 else
2020 {
2021 if (prefixp->kind != PREFIX_NONE)
2022 {
2023 /* A prefix, and those matched here always have
2024 side-effects (see 's' case). */
2025 out_insnp->opcode |= (AUTOINCR_BIT << 8);
2026 }
2027 else
2028 {
2029 /* No prefix. The "mode" variable contains bits
2030 like whether or not this is autoincrement
2031 mode. */
2032 out_insnp->opcode |= (mode << 10);
2033 }
2034
2035 out_insnp->opcode |= regno /* << 0 */;
2036 continue;
2037 }
2038
2039 case 'z':
2040 /* Size modifier (B or W) in bit <4>. */
2041 if (! get_bw_size_modifier (&s, &size_bits))
2042 break;
2043 else
2044 {
2045 out_insnp->opcode |= size_bits << 4;
2046 continue;
2047 }
2048
2049 case 'T':
2050 if (cris_arch == arch_crisv32
2051 && get_sup_reg (&s, &regno))
2052 {
2053 out_insnp->opcode |= regno << 12;
2054 continue;
2055 }
2056 break;
2057
2058 default:
2059 BAD_CASE (*args);
2060 }
2061
2062 /* We get here when we fail a match above or we found a
2063 complete match. Break out of this loop. */
2064 break;
2065 }
2066
2067 /* Was it a match or a miss? */
2068 if (match == 0)
2069 {
2070 /* If it's just that the args don't match, maybe the next
2071 item in the table is the same opcode but with
2072 matching operands. First skip any invalid ones. */
2073 while (instruction[1].name != NULL
2074 && strcmp (instruction->name, instruction[1].name) == 0
2075 && ! cris_insn_ver_valid_for_arch (instruction[1]
2076 .applicable_version,
2077 cris_arch))
2078 ++instruction;
2079
2080 if (instruction[1].name != NULL
2081 && strcmp (instruction->name, instruction[1].name) == 0
2082 && cris_insn_ver_valid_for_arch (instruction[1]
2083 .applicable_version,
2084 cris_arch))
2085 {
2086 /* Yep. Restart and try that one instead. */
2087 ++instruction;
2088 s = operands;
2089 continue;
2090 }
2091 else
2092 {
2093 /* We've come to the end of instructions with this
2094 opcode, so it must be an error. */
2095 as_bad (_("Illegal operands"));
2096
2097 /* As discard_rest_of_line, but without continuing to the
2098 next line. */
2099 while (!is_end_of_line[(unsigned char) *input_line_pointer])
2100 input_line_pointer++;
2101 return;
2102 }
2103 }
2104 else
2105 {
2106 /* We have a match. Check if there's anything more to do. */
2107 if (imm_expr_found)
2108 {
2109 /* There was an immediate mode operand, so we must check
2110 that it has an appropriate size. */
2111 switch (instruction->imm_oprnd_size)
2112 {
2113 default:
2114 case SIZE_NONE:
2115 /* Shouldn't happen; this one does not have immediate
2116 operands with different sizes. */
2117 BAD_CASE (instruction->imm_oprnd_size);
2118 break;
2119
2120 case SIZE_FIX_32:
2121 out_insnp->imm_oprnd_size = 4;
2122 break;
2123
2124 case SIZE_SPEC_REG:
2125 if (cris_arch == arch_crisv32)
2126 /* All immediate loads of special registers are
2127 32-bit on CRISv32. */
2128 out_insnp->imm_oprnd_size = 4;
2129 else
2130 switch (out_insnp->spec_reg->reg_size)
2131 {
2132 case 1:
2133 if (out_insnp->expr.X_op == O_constant
2134 && (out_insnp->expr.X_add_number < -128
2135 || out_insnp->expr.X_add_number > 255))
2136 cris_bad (_("Immediate value not in 8 bit range: %ld"),
2137 &out_insnp->expr.X_add_number);
2138 /* Fall through. */
2139 case 2:
2140 /* FIXME: We need an indicator in the instruction
2141 table to pass on, to indicate if we need to check
2142 overflow for a signed or unsigned number. */
2143 if (out_insnp->expr.X_op == O_constant
2144 && (out_insnp->expr.X_add_number < -32768
2145 || out_insnp->expr.X_add_number > 65535))
2146 cris_bad (_("Immediate value not in 16 bit range: %ld"),
2147 &out_insnp->expr.X_add_number);
2148 out_insnp->imm_oprnd_size = 2;
2149 break;
2150
2151 case 4:
2152 out_insnp->imm_oprnd_size = 4;
2153 break;
2154
2155 default:
2156 BAD_CASE (out_insnp->spec_reg->reg_size);
2157 }
2158 break;
2159
2160 case SIZE_FIELD:
2161 case SIZE_FIELD_SIGNED:
2162 case SIZE_FIELD_UNSIGNED:
2163 switch (size_bits)
2164 {
2165 /* FIXME: Find way to pass un/signedness to
2166 caller, and set reloc type instead, postponing
2167 this check until cris_number_to_imm. That
2168 necessarily corrects the reloc type for the
2169 byte case, maybe requiring further changes. */
2170 case 0:
2171 if (out_insnp->expr.X_op == O_constant)
2172 {
2173 if (instruction->imm_oprnd_size == SIZE_FIELD
2174 && (out_insnp->expr.X_add_number < -128
2175 || out_insnp->expr.X_add_number > 255))
2176 cris_bad (_("Immediate value not in 8 bit range: %ld"),
2177 &out_insnp->expr.X_add_number);
2178 else if (instruction->imm_oprnd_size == SIZE_FIELD_SIGNED
2179 && (out_insnp->expr.X_add_number < -128
2180 || out_insnp->expr.X_add_number > 127))
2181 cris_bad (_("Immediate value not in 8 bit signed range: %ld"),
2182 &out_insnp->expr.X_add_number);
2183 else if (instruction->imm_oprnd_size == SIZE_FIELD_UNSIGNED
2184 && (out_insnp->expr.X_add_number < 0
2185 || out_insnp->expr.X_add_number > 255))
2186 cris_bad (_("Immediate value not in 8 bit unsigned range: %ld"),
2187 &out_insnp->expr.X_add_number);
2188 }
2189
2190 /* Fall through. */
2191 case 1:
2192 if (out_insnp->expr.X_op == O_constant)
2193 {
2194 if (instruction->imm_oprnd_size == SIZE_FIELD
2195 && (out_insnp->expr.X_add_number < -32768
2196 || out_insnp->expr.X_add_number > 65535))
2197 cris_bad (_("Immediate value not in 16 bit range: %ld"),
2198 &out_insnp->expr.X_add_number);
2199 else if (instruction->imm_oprnd_size == SIZE_FIELD_SIGNED
2200 && (out_insnp->expr.X_add_number < -32768
2201 || out_insnp->expr.X_add_number > 32767))
2202 cris_bad (_("Immediate value not in 16 bit signed range: %ld"),
2203 &out_insnp->expr.X_add_number);
2204 else if (instruction->imm_oprnd_size == SIZE_FIELD_UNSIGNED
2205 && (out_insnp->expr.X_add_number < 0
2206 || out_insnp->expr.X_add_number > 65535))
2207 cris_bad (_("Immediate value not in 16 bit unsigned range: %ld"),
2208 &out_insnp->expr.X_add_number);
2209 }
2210 out_insnp->imm_oprnd_size = 2;
2211 break;
2212
2213 case 2:
2214 out_insnp->imm_oprnd_size = 4;
2215 break;
2216
2217 default:
2218 BAD_CASE (out_insnp->spec_reg->reg_size);
2219 }
2220 }
2221
2222 /* If there was a relocation specified for the immediate
2223 expression (i.e. it had a PIC or TLS modifier) check that the
2224 size of the relocation matches the size specified by
2225 the opcode. */
2226 if (out_insnp->reloc != BFD_RELOC_NONE
2227 && (cris_get_specified_reloc_size (out_insnp->reloc)
2228 != (unsigned int) out_insnp->imm_oprnd_size))
2229 as_bad (out_insnp->reloc == BFD_RELOC_CRIS_32_GD
2230 || out_insnp->reloc == BFD_RELOC_CRIS_32_TPREL
2231 || out_insnp->reloc == BFD_RELOC_CRIS_16_TPREL
2232 || out_insnp->reloc == BFD_RELOC_CRIS_32_IE
2233 ? _("TLS relocation size does not match operand size")
2234 : _("PIC relocation size does not match operand size"));
2235 }
2236 else if (instruction->op == cris_muls_op
2237 || instruction->op == cris_mulu_op)
2238 out_insnp->insn_type = CRIS_INSN_MUL;
2239 }
2240 break;
2241 }
2242 }
2243
2244 /* Get a B, W, or D size modifier from the string pointed out by *cPP,
2245 which must point to a '.' in front of the modifier. On successful
2246 return, *cPP is advanced to the character following the size
2247 modifier, and is undefined otherwise.
2248
2249 cPP Pointer to pointer to string starting
2250 with the size modifier.
2251
2252 size_bitsp Pointer to variable to contain the size bits on
2253 successful return.
2254
2255 Return 1 iff a correct size modifier is found, else 0. */
2256
2257 static int
2258 get_bwd_size_modifier (char **cPP, int *size_bitsp)
2259 {
2260 if (**cPP != '.')
2261 return 0;
2262 else
2263 {
2264 /* Consume the '.'. */
2265 (*cPP)++;
2266
2267 switch (**cPP)
2268 {
2269 case 'B':
2270 case 'b':
2271 *size_bitsp = 0;
2272 break;
2273
2274 case 'W':
2275 case 'w':
2276 *size_bitsp = 1;
2277 break;
2278
2279 case 'D':
2280 case 'd':
2281 *size_bitsp = 2;
2282 break;
2283
2284 default:
2285 return 0;
2286 }
2287
2288 /* Consume the size letter. */
2289 (*cPP)++;
2290 return 1;
2291 }
2292 }
2293
2294 /* Get a B or W size modifier from the string pointed out by *cPP,
2295 which must point to a '.' in front of the modifier. On successful
2296 return, *cPP is advanced to the character following the size
2297 modifier, and is undefined otherwise.
2298
2299 cPP Pointer to pointer to string starting
2300 with the size modifier.
2301
2302 size_bitsp Pointer to variable to contain the size bits on
2303 successful return.
2304
2305 Return 1 iff a correct size modifier is found, else 0. */
2306
2307 static int
2308 get_bw_size_modifier (char **cPP, int *size_bitsp)
2309 {
2310 if (**cPP != '.')
2311 return 0;
2312 else
2313 {
2314 /* Consume the '.'. */
2315 (*cPP)++;
2316
2317 switch (**cPP)
2318 {
2319 case 'B':
2320 case 'b':
2321 *size_bitsp = 0;
2322 break;
2323
2324 case 'W':
2325 case 'w':
2326 *size_bitsp = 1;
2327 break;
2328
2329 default:
2330 return 0;
2331 }
2332
2333 /* Consume the size letter. */
2334 (*cPP)++;
2335 return 1;
2336 }
2337 }
2338
2339 /* Get a general register from the string pointed out by *cPP. The
2340 variable *cPP is advanced to the character following the general
2341 register name on a successful return, and has its initial position
2342 otherwise.
2343
2344 cPP Pointer to pointer to string, beginning with a general
2345 register name.
2346
2347 regnop Pointer to int containing the register number.
2348
2349 Return 1 iff a correct general register designator is found,
2350 else 0. */
2351
2352 static int
2353 get_gen_reg (char **cPP, int *regnop)
2354 {
2355 char *oldp;
2356 oldp = *cPP;
2357
2358 /* Handle a sometimes-mandatory dollar sign as register prefix. */
2359 if (**cPP == REGISTER_PREFIX_CHAR)
2360 (*cPP)++;
2361 else if (demand_register_prefix)
2362 return 0;
2363
2364 switch (**cPP)
2365 {
2366 case 'P':
2367 case 'p':
2368 /* "P" as in "PC"? Consume the "P". */
2369 (*cPP)++;
2370
2371 if ((**cPP == 'C' || **cPP == 'c')
2372 && ! ISALNUM ((*cPP)[1])
2373 /* Here's a little twist: For v32 and the compatibility mode,
2374 we only recognize PC as a register number if there's '+]'
2375 after. We don't consume that, but the presence can only be
2376 valid after a register in a post-increment context, which
2377 is also the only valid context for PC as a register for
2378 v32. Not that it's used very often, but saying "MOVE.D
2379 [PC+],R5" should remain valid. It's not supported for
2380 jump-type insns or other insns with no [Rn+] mode, though. */
2381 && ((cris_arch != arch_crisv32
2382 && cris_arch != arch_cris_common_v10_v32)
2383 || ((*cPP)[1] == '+' && (*cPP)[2] == ']')))
2384 {
2385 /* It's "PC": consume the "c" and we're done. */
2386 (*cPP)++;
2387 *regnop = REG_PC;
2388 return 1;
2389 }
2390 break;
2391
2392 /* Like with PC, we recognize ACR, but only if it's *not* followed
2393 by '+', and only for v32. */
2394 case 'A':
2395 case 'a':
2396 if (cris_arch != arch_crisv32
2397 || ((*cPP)[1] != 'c' && (*cPP)[1] != 'C')
2398 || ((*cPP)[2] != 'r' && (*cPP)[2] != 'R')
2399 || ISALNUM ((*cPP)[3])
2400 || (*cPP)[3] == '+')
2401 break;
2402 (*cPP) += 3;
2403 *regnop = 15;
2404 return 1;
2405
2406 case 'R':
2407 case 'r':
2408 /* Hopefully r[0-9] or r1[0-5]. Consume 'R' or 'r'. */
2409 (*cPP)++;
2410
2411 if (ISDIGIT (**cPP))
2412 {
2413 /* It's r[0-9]. Consume and check the next digit. */
2414 *regnop = **cPP - '0';
2415 (*cPP)++;
2416
2417 if (! ISALNUM (**cPP))
2418 {
2419 /* No more digits, we're done. */
2420 return 1;
2421 }
2422 else
2423 {
2424 /* One more digit. Consume and add. */
2425 *regnop = *regnop * 10 + (**cPP - '0');
2426
2427 /* We need to check for a valid register number; Rn,
2428 0 <= n <= MAX_REG. */
2429 if (*regnop <= MAX_REG)
2430 {
2431 /* Consume second digit. */
2432 (*cPP)++;
2433 return 1;
2434 }
2435 }
2436 }
2437 break;
2438
2439 case 'S':
2440 case 's':
2441 /* "S" as in "SP"? Consume the "S". */
2442 (*cPP)++;
2443 if (**cPP == 'P' || **cPP == 'p')
2444 {
2445 /* It's "SP": consume the "p" and we're done. */
2446 (*cPP)++;
2447 *regnop = REG_SP;
2448 return 1;
2449 }
2450 break;
2451
2452 default:
2453 /* Just here to silence compilation warnings. */
2454 ;
2455 }
2456
2457 /* We get here if we fail. Restore the pointer. */
2458 *cPP = oldp;
2459 return 0;
2460 }
2461
2462 /* Get a special register from the string pointed out by *cPP. The
2463 variable *cPP is advanced to the character following the special
2464 register name if one is found, and retains its original position
2465 otherwise.
2466
2467 cPP Pointer to pointer to string starting with a special register
2468 name.
2469
2470 sregpp Pointer to Pointer to struct spec_reg, where a pointer to the
2471 register description will be stored.
2472
2473 Return 1 iff a correct special register name is found. */
2474
2475 static int
2476 get_spec_reg (char **cPP, const struct cris_spec_reg **sregpp)
2477 {
2478 char *s1;
2479 const char *s2;
2480 char *name_begin = *cPP;
2481
2482 const struct cris_spec_reg *sregp;
2483
2484 /* Handle a sometimes-mandatory dollar sign as register prefix. */
2485 if (*name_begin == REGISTER_PREFIX_CHAR)
2486 name_begin++;
2487 else if (demand_register_prefix)
2488 return 0;
2489
2490 /* Loop over all special registers. */
2491 for (sregp = cris_spec_regs; sregp->name != NULL; sregp++)
2492 {
2493 /* Start over from beginning of the supposed name. */
2494 s1 = name_begin;
2495 s2 = sregp->name;
2496
2497 while (*s2 != '\0' && TOLOWER (*s1) == *s2)
2498 {
2499 s1++;
2500 s2++;
2501 }
2502
2503 /* For a match, we must have consumed the name in the table, and we
2504 must be outside what could be part of a name. Assume here that a
2505 test for alphanumerics is sufficient for a name test. */
2506 if (*s2 == 0 && ! ISALNUM (*s1)
2507 && cris_insn_ver_valid_for_arch (sregp->applicable_version,
2508 cris_arch))
2509 {
2510 /* We have a match. Update the pointer and be done. */
2511 *cPP = s1;
2512 *sregpp = sregp;
2513 return 1;
2514 }
2515 }
2516
2517 /* If we got here, we did not find any name. */
2518 return 0;
2519 }
2520
2521 /* Get a support register from the string pointed out by *cPP. The
2522 variable *cPP is advanced to the character following the support-
2523 register name if one is found, and retains its original position
2524 otherwise.
2525
2526 cPP Pointer to pointer to string starting with a support-register
2527 name.
2528
2529 sregpp Pointer to int containing the register number.
2530
2531 Return 1 iff a correct support-register name is found. */
2532
2533 static int
2534 get_sup_reg (char **cPP, int *regnop)
2535 {
2536 char *s1;
2537 const char *s2;
2538 char *name_begin = *cPP;
2539
2540 const struct cris_support_reg *sregp;
2541
2542 /* Handle a sometimes-mandatory dollar sign as register prefix. */
2543 if (*name_begin == REGISTER_PREFIX_CHAR)
2544 name_begin++;
2545 else if (demand_register_prefix)
2546 return 0;
2547
2548 /* Loop over all support-registers. */
2549 for (sregp = cris_support_regs; sregp->name != NULL; sregp++)
2550 {
2551 /* Start over from beginning of the supposed name. */
2552 s1 = name_begin;
2553 s2 = sregp->name;
2554
2555 while (*s2 != '\0' && TOLOWER (*s1) == *s2)
2556 {
2557 s1++;
2558 s2++;
2559 }
2560
2561 /* For a match, we must have consumed the name in the table, and we
2562 must be outside what could be part of a name. Assume here that a
2563 test for alphanumerics is sufficient for a name test. */
2564 if (*s2 == 0 && ! ISALNUM (*s1))
2565 {
2566 /* We have a match. Update the pointer and be done. */
2567 *cPP = s1;
2568 *regnop = sregp->number;
2569 return 1;
2570 }
2571 }
2572
2573 /* If we got here, we did not find any name. */
2574 return 0;
2575 }
2576
2577 /* Get an unprefixed or side-effect-prefix operand from the string pointed
2578 out by *cPP. The pointer *cPP is advanced to the character following
2579 the indirect operand if we have success, else it contains an undefined
2580 value.
2581
2582 cPP Pointer to pointer to string beginning with the first
2583 character of the supposed operand.
2584
2585 prefixp Pointer to structure containing an optional instruction
2586 prefix.
2587
2588 is_autoincp Pointer to int indicating the indirect or autoincrement
2589 bits.
2590
2591 src_regnop Pointer to int containing the source register number in
2592 the instruction.
2593
2594 imm_foundp Pointer to an int indicating if an immediate expression
2595 is found.
2596
2597 imm_exprP Pointer to a structure containing an immediate
2598 expression, if success and if *imm_foundp is nonzero.
2599
2600 Return 1 iff a correct indirect operand is found. */
2601
2602 static int
2603 get_autoinc_prefix_or_indir_op (char **cPP, struct cris_prefix *prefixp,
2604 int *is_autoincp, int *src_regnop,
2605 int *imm_foundp, expressionS *imm_exprP)
2606 {
2607 /* Assume there was no immediate mode expression. */
2608 *imm_foundp = 0;
2609
2610 if (**cPP == '[')
2611 {
2612 /* So this operand is one of:
2613 Indirect: [rN]
2614 Autoincrement: [rN+]
2615 Indexed with assign: [rN=rM+rO.S]
2616 Offset with assign: [rN=rM+I], [rN=rM+[rO].s], [rN=rM+[rO+].s]
2617
2618 Either way, consume the '['. */
2619 (*cPP)++;
2620
2621 /* Get the rN register. */
2622 if (! get_gen_reg (cPP, src_regnop))
2623 /* If there was no register, then this cannot match. */
2624 return 0;
2625 else
2626 {
2627 /* We got the register, now check the next character. */
2628 switch (**cPP)
2629 {
2630 case ']':
2631 /* Indirect mode. We're done here. */
2632 prefixp->kind = PREFIX_NONE;
2633 *is_autoincp = 0;
2634 break;
2635
2636 case '+':
2637 /* This must be an auto-increment mode, if there's a
2638 match. */
2639 prefixp->kind = PREFIX_NONE;
2640 *is_autoincp = 1;
2641
2642 /* We consume this character and break out to check the
2643 closing ']'. */
2644 (*cPP)++;
2645 break;
2646
2647 case '=':
2648 /* This must be indexed with assign, or offset with assign
2649 to match. Not supported for crisv32 or in
2650 compatibility mode. */
2651 if (cris_arch == arch_crisv32
2652 || cris_arch == arch_cris_common_v10_v32)
2653 return 0;
2654
2655 (*cPP)++;
2656
2657 /* Either way, the next thing must be a register. */
2658 if (! get_gen_reg (cPP, &prefixp->base_reg_number))
2659 /* No register, no match. */
2660 return 0;
2661 else
2662 {
2663 /* We've consumed "[rN=rM", so we must be looking at
2664 "+rO.s]" or "+I]", or "-I]", or "+[rO].s]" or
2665 "+[rO+].s]". */
2666 if (**cPP == '+')
2667 {
2668 int index_reg_number;
2669 (*cPP)++;
2670
2671 if (**cPP == '[')
2672 {
2673 int size_bits;
2674 /* This must be [rx=ry+[rz].s] or
2675 [rx=ry+[rz+].s] or no match. We must be
2676 looking at rz after consuming the '['. */
2677 (*cPP)++;
2678
2679 if (!get_gen_reg (cPP, &index_reg_number))
2680 return 0;
2681
2682 prefixp->kind = PREFIX_BDAP;
2683 prefixp->opcode
2684 = (BDAP_INDIR_OPCODE
2685 + (prefixp->base_reg_number << 12)
2686 + index_reg_number);
2687
2688 if (**cPP == '+')
2689 {
2690 /* We've seen "[rx=ry+[rz+" here, so now we
2691 know that there must be "].s]" left to
2692 check. */
2693 (*cPP)++;
2694 prefixp->opcode |= AUTOINCR_BIT << 8;
2695 }
2696
2697 /* If it wasn't autoincrement, we don't need to
2698 add anything. */
2699
2700 /* Check the next-to-last ']'. */
2701 if (**cPP != ']')
2702 return 0;
2703
2704 (*cPP)++;
2705
2706 /* Check the ".s" modifier. */
2707 if (! get_bwd_size_modifier (cPP, &size_bits))
2708 return 0;
2709
2710 prefixp->opcode |= size_bits << 4;
2711
2712 /* Now we got [rx=ry+[rz+].s or [rx=ry+[rz].s.
2713 We break out to check the final ']'. */
2714 break;
2715 }
2716 /* It wasn't an indirection. Check if it's a
2717 register. */
2718 else if (get_gen_reg (cPP, &index_reg_number))
2719 {
2720 int size_bits;
2721
2722 /* Indexed with assign mode: "[rN+rM.S]". */
2723 prefixp->kind = PREFIX_BIAP;
2724 prefixp->opcode
2725 = (BIAP_OPCODE + (index_reg_number << 12)
2726 + prefixp->base_reg_number /* << 0 */);
2727
2728 if (! get_bwd_size_modifier (cPP, &size_bits))
2729 /* Size missing, this isn't a match. */
2730 return 0;
2731 else
2732 {
2733 /* Size found, break out to check the
2734 final ']'. */
2735 prefixp->opcode |= size_bits << 4;
2736 break;
2737 }
2738 }
2739 /* Not a register. Then this must be "[rN+I]". */
2740 else if (cris_get_expression (cPP, &prefixp->expr))
2741 {
2742 /* We've got offset with assign mode. Fill
2743 in the blanks and break out to match the
2744 final ']'. */
2745 prefixp->kind = PREFIX_BDAP_IMM;
2746
2747 /* We tentatively put an opcode corresponding to
2748 a 32-bit operand here, although it may be
2749 relaxed when there's no relocation
2750 specifier for the operand. */
2751 prefixp->opcode
2752 = (BDAP_INDIR_OPCODE
2753 | (prefixp->base_reg_number << 12)
2754 | (AUTOINCR_BIT << 8)
2755 | (2 << 4)
2756 | REG_PC /* << 0 */);
2757
2758 /* This can have a PIC suffix, specifying reloc
2759 type to use. */
2760 if ((pic || tls) && **cPP == RELOC_SUFFIX_CHAR)
2761 {
2762 unsigned int relocsize;
2763
2764 cris_get_reloc_suffix (cPP, &prefixp->reloc,
2765 &prefixp->expr);
2766
2767 /* Tweak the size of the immediate operand
2768 in the prefix opcode if it isn't what we
2769 set. */
2770 relocsize
2771 = cris_get_specified_reloc_size (prefixp->reloc);
2772 if (relocsize != 4)
2773 prefixp->opcode
2774 = ((prefixp->opcode & ~(3 << 4))
2775 | ((relocsize >> 1) << 4));
2776 }
2777 break;
2778 }
2779 else
2780 /* Neither register nor expression found, so
2781 this can't be a match. */
2782 return 0;
2783 }
2784 /* Not "[rN+" but perhaps "[rN-"? */
2785 else if (**cPP == '-')
2786 {
2787 /* We must have an offset with assign mode. */
2788 if (! cris_get_expression (cPP, &prefixp->expr))
2789 /* No expression, no match. */
2790 return 0;
2791 else
2792 {
2793 /* We've got offset with assign mode. Fill
2794 in the blanks and break out to match the
2795 final ']'.
2796
2797 Note that we don't allow a relocation
2798 suffix for an operand with a minus
2799 sign. */
2800 prefixp->kind = PREFIX_BDAP_IMM;
2801 break;
2802 }
2803 }
2804 else
2805 /* Neither '+' nor '-' after "[rN=rM". Lose. */
2806 return 0;
2807 }
2808 default:
2809 /* Neither ']' nor '+' nor '=' after "[rN". Lose. */
2810 return 0;
2811 }
2812 }
2813
2814 /* When we get here, we have a match and will just check the closing
2815 ']'. We can still fail though. */
2816 if (**cPP != ']')
2817 return 0;
2818 else
2819 {
2820 /* Don't forget to consume the final ']'.
2821 Then return in glory. */
2822 (*cPP)++;
2823 return 1;
2824 }
2825 }
2826 /* No indirection. Perhaps a constant? */
2827 else if (cris_get_expression (cPP, imm_exprP))
2828 {
2829 /* Expression found, this is immediate mode. */
2830 prefixp->kind = PREFIX_NONE;
2831 *is_autoincp = 1;
2832 *src_regnop = REG_PC;
2833 *imm_foundp = 1;
2834
2835 /* This can have a PIC suffix, specifying reloc type to use. The
2836 caller must check that the reloc size matches the operand size. */
2837 if ((pic || tls) && **cPP == RELOC_SUFFIX_CHAR)
2838 cris_get_reloc_suffix (cPP, &prefixp->reloc, imm_exprP);
2839
2840 return 1;
2841 }
2842
2843 /* No luck today. */
2844 return 0;
2845 }
2846
2847 /* This function gets an indirect operand in a three-address operand
2848 combination from the string pointed out by *cPP. The pointer *cPP is
2849 advanced to the character following the indirect operand on success, or
2850 has an unspecified value on failure.
2851
2852 cPP Pointer to pointer to string beginning
2853 with the operand
2854
2855 prefixp Pointer to structure containing an
2856 instruction prefix
2857
2858 Returns 1 iff a correct indirect operand is found. */
2859
2860 static int
2861 get_3op_or_dip_prefix_op (char **cPP, struct cris_prefix *prefixp)
2862 {
2863 int reg_number;
2864
2865 if (**cPP != '[')
2866 /* We must have a '[' or it's a clean failure. */
2867 return 0;
2868
2869 /* Eat the first '['. */
2870 (*cPP)++;
2871
2872 if (**cPP == '[')
2873 {
2874 /* A second '[', so this must be double-indirect mode. */
2875 (*cPP)++;
2876 prefixp->kind = PREFIX_DIP;
2877 prefixp->opcode = DIP_OPCODE;
2878
2879 /* Get the register or fail entirely. */
2880 if (! get_gen_reg (cPP, &reg_number))
2881 return 0;
2882 else
2883 {
2884 prefixp->opcode |= reg_number /* << 0 */ ;
2885 if (**cPP == '+')
2886 {
2887 /* Since we found a '+', this must be double-indirect
2888 autoincrement mode. */
2889 (*cPP)++;
2890 prefixp->opcode |= AUTOINCR_BIT << 8;
2891 }
2892
2893 /* There's nothing particular to do, if this was a
2894 double-indirect *without* autoincrement. */
2895 }
2896
2897 /* Check the first ']'. The second one is checked at the end. */
2898 if (**cPP != ']')
2899 return 0;
2900
2901 /* Eat the first ']', so we'll be looking at a second ']'. */
2902 (*cPP)++;
2903 }
2904 /* No second '['. Then we should have a register here, making
2905 it "[rN". */
2906 else if (get_gen_reg (cPP, &prefixp->base_reg_number))
2907 {
2908 /* This must be indexed or offset mode: "[rN+I]" or
2909 "[rN+rM.S]" or "[rN+[rM].S]" or "[rN+[rM+].S]". */
2910 if (**cPP == '+')
2911 {
2912 int index_reg_number;
2913
2914 (*cPP)++;
2915
2916 if (**cPP == '[')
2917 {
2918 /* This is "[rx+["... Expect a register next. */
2919 int size_bits;
2920 (*cPP)++;
2921
2922 if (!get_gen_reg (cPP, &index_reg_number))
2923 return 0;
2924
2925 prefixp->kind = PREFIX_BDAP;
2926 prefixp->opcode
2927 = (BDAP_INDIR_OPCODE
2928 + (prefixp->base_reg_number << 12)
2929 + index_reg_number);
2930
2931 /* We've seen "[rx+[ry", so check if this is
2932 autoincrement. */
2933 if (**cPP == '+')
2934 {
2935 /* Yep, now at "[rx+[ry+". */
2936 (*cPP)++;
2937 prefixp->opcode |= AUTOINCR_BIT << 8;
2938 }
2939 /* If it wasn't autoincrement, we don't need to
2940 add anything. */
2941
2942 /* Check a first closing ']': "[rx+[ry]" or
2943 "[rx+[ry+]". */
2944 if (**cPP != ']')
2945 return 0;
2946 (*cPP)++;
2947
2948 /* Now expect a size modifier ".S". */
2949 if (! get_bwd_size_modifier (cPP, &size_bits))
2950 return 0;
2951
2952 prefixp->opcode |= size_bits << 4;
2953
2954 /* Ok, all interesting stuff has been seen:
2955 "[rx+[ry+].S" or "[rx+[ry].S". We only need to
2956 expect a final ']', which we'll do in a common
2957 closing session. */
2958 }
2959 /* Seen "[rN+", but not a '[', so check if we have a
2960 register. */
2961 else if (get_gen_reg (cPP, &index_reg_number))
2962 {
2963 /* This is indexed mode: "[rN+rM.S]" or
2964 "[rN+rM.S+]". */
2965 int size_bits;
2966 prefixp->kind = PREFIX_BIAP;
2967 prefixp->opcode
2968 = (BIAP_OPCODE
2969 | prefixp->base_reg_number /* << 0 */
2970 | (index_reg_number << 12));
2971
2972 /* Consume the ".S". */
2973 if (! get_bwd_size_modifier (cPP, &size_bits))
2974 /* Missing size, so fail. */
2975 return 0;
2976 else
2977 /* Size found. Add that piece and drop down to
2978 the common checking of the closing ']'. */
2979 prefixp->opcode |= size_bits << 4;
2980 }
2981 /* Seen "[rN+", but not a '[' or a register, so then
2982 it must be a constant "I".
2983
2984 As a quality of implementation improvement, we check for a
2985 closing ']', like in an erroneous "[rN+]". If we don't,
2986 the expression parser will emit a confusing "bad
2987 expression" when it sees the ']', probably because it
2988 doesn't like seeing no expression. */
2989 else if (**cPP != ']' && cris_get_expression (cPP, &prefixp->expr))
2990 {
2991 /* Expression found, so fill in the bits of offset
2992 mode and drop down to check the closing ']'. */
2993 prefixp->kind = PREFIX_BDAP_IMM;
2994
2995 /* We tentatively put an opcode corresponding to a 32-bit
2996 operand here, although it may be relaxed when there's no
2997 PIC specifier for the operand. */
2998 prefixp->opcode
2999 = (BDAP_INDIR_OPCODE
3000 | (prefixp->base_reg_number << 12)
3001 | (AUTOINCR_BIT << 8)
3002 | (2 << 4)
3003 | REG_PC /* << 0 */);
3004
3005 /* This can have a PIC suffix, specifying reloc type to use. */
3006 if ((pic || tls) && **cPP == RELOC_SUFFIX_CHAR)
3007 {
3008 unsigned int relocsize;
3009
3010 cris_get_reloc_suffix (cPP, &prefixp->reloc, &prefixp->expr);
3011
3012 /* Tweak the size of the immediate operand in the prefix
3013 opcode if it isn't what we set. */
3014 relocsize = cris_get_specified_reloc_size (prefixp->reloc);
3015 if (relocsize != 4)
3016 prefixp->opcode
3017 = ((prefixp->opcode & ~(3 << 4))
3018 | ((relocsize >> 1) << 4));
3019 }
3020 }
3021 else
3022 /* Nothing valid here: lose. */
3023 return 0;
3024 }
3025 /* Seen "[rN" but no '+', so check if it's a '-'. */
3026 else if (**cPP == '-')
3027 {
3028 /* Yep, we must have offset mode. */
3029 if (! cris_get_expression (cPP, &prefixp->expr))
3030 /* No expression, so we lose. */
3031 return 0;
3032 else
3033 {
3034 /* Expression found to make this offset mode, so
3035 fill those bits and drop down to check the
3036 closing ']'.
3037
3038 Note that we don't allow a PIC suffix for
3039 an operand with a minus sign like this. */
3040 prefixp->kind = PREFIX_BDAP_IMM;
3041 }
3042 }
3043 else
3044 {
3045 /* We've seen "[rN", but not '+' or '-'; rather a ']'.
3046 Hmm. Normally this is a simple indirect mode that we
3047 shouldn't match, but if we expect ']', then we have a
3048 zero offset, so it can be a three-address-operand,
3049 like "[rN],rO,rP", thus offset mode.
3050
3051 Don't eat the ']', that will be done in the closing
3052 ceremony. */
3053 prefixp->expr.X_op = O_constant;
3054 prefixp->expr.X_add_number = 0;
3055 prefixp->expr.X_add_symbol = NULL;
3056 prefixp->expr.X_op_symbol = NULL;
3057 prefixp->kind = PREFIX_BDAP_IMM;
3058 }
3059 }
3060 /* A '[', but no second '[', and no register. Check if we
3061 have an expression, making this "[I]" for a double-indirect
3062 prefix. */
3063 else if (cris_get_expression (cPP, &prefixp->expr))
3064 {
3065 /* Expression found, the so called absolute mode for a
3066 double-indirect prefix on PC. */
3067 prefixp->kind = PREFIX_DIP;
3068 prefixp->opcode = DIP_OPCODE | (AUTOINCR_BIT << 8) | REG_PC;
3069 prefixp->reloc = BFD_RELOC_32;
3070
3071 /* For :GD and :IE, it makes sense to have TLS specifiers here. */
3072 if ((pic || tls) && **cPP == RELOC_SUFFIX_CHAR)
3073 cris_get_reloc_suffix (cPP, &prefixp->reloc, &prefixp->expr);
3074 }
3075 else
3076 /* Neither '[' nor register nor expression. We lose. */
3077 return 0;
3078
3079 /* We get here as a closing ceremony to a successful match. We just
3080 need to check the closing ']'. */
3081 if (**cPP != ']')
3082 /* Oops. Close but no air-polluter. */
3083 return 0;
3084
3085 /* Don't forget to consume that ']', before returning in glory. */
3086 (*cPP)++;
3087 return 1;
3088 }
3089
3090 /* Get an expression from the string pointed out by *cPP.
3091 The pointer *cPP is advanced to the character following the expression
3092 on a success, or retains its original value otherwise.
3093
3094 cPP Pointer to pointer to string beginning with the expression.
3095
3096 exprP Pointer to structure containing the expression.
3097
3098 Return 1 iff a correct expression is found. */
3099
3100 static int
3101 cris_get_expression (char **cPP, expressionS *exprP)
3102 {
3103 char *saved_input_line_pointer;
3104
3105 /* The "expression" function expects to find an expression at the
3106 global variable input_line_pointer, so we have to save it to give
3107 the impression that we don't fiddle with global variables. */
3108 saved_input_line_pointer = input_line_pointer;
3109 input_line_pointer = *cPP;
3110
3111 /* Avoid a common error, confusing addressing modes. Beware that the
3112 call to expression below does not signal that error; it treats []
3113 as parentheses, unless #define NEED_INDEX_OPERATOR in which case it
3114 gives them other confusing semantics rather than plain outlawing
3115 them, which is what we want. */
3116 if (*input_line_pointer == '[')
3117 {
3118 input_line_pointer = saved_input_line_pointer;
3119 return 0;
3120 }
3121
3122 expression (exprP);
3123 if (exprP->X_op == O_illegal || exprP->X_op == O_absent)
3124 {
3125 input_line_pointer = saved_input_line_pointer;
3126 return 0;
3127 }
3128
3129 /* Everything seems to be fine, just restore the global
3130 input_line_pointer and say we're successful. */
3131 *cPP = input_line_pointer;
3132 input_line_pointer = saved_input_line_pointer;
3133 return 1;
3134 }
3135
3136 /* Get a sequence of flag characters from *spp. The pointer *cPP is
3137 advanced to the character following the expression. The flag
3138 characters are consecutive, no commas or spaces.
3139
3140 cPP Pointer to pointer to string beginning with the expression.
3141
3142 flagp Pointer to int to return the flags expression.
3143
3144 Return 1 iff a correct flags expression is found. */
3145
3146 static int
3147 get_flags (char **cPP, int *flagsp)
3148 {
3149 for (;;)
3150 {
3151 switch (**cPP)
3152 {
3153 case 'd':
3154 case 'D':
3155 if (! cris_insn_ver_valid_for_arch (cris_ver_v0_3,
3156 cris_arch))
3157 return 0;
3158 *flagsp |= 0x80;
3159 break;
3160
3161 case 'm':
3162 case 'M':
3163 if (! cris_insn_ver_valid_for_arch (cris_ver_v8_10,
3164 cris_arch))
3165 return 0;
3166 *flagsp |= 0x80;
3167 break;
3168
3169 case 'e':
3170 case 'E':
3171 if (! cris_insn_ver_valid_for_arch (cris_ver_v0_3,
3172 cris_arch))
3173 return 0;
3174 *flagsp |= 0x40;
3175 break;
3176
3177 case 'b':
3178 case 'B':
3179 if (! cris_insn_ver_valid_for_arch (cris_ver_v8_10,
3180 cris_arch))
3181 return 0;
3182 *flagsp |= 0x40;
3183 break;
3184
3185 case 'p':
3186 case 'P':
3187 if (! cris_insn_ver_valid_for_arch (cris_ver_v32p,
3188 cris_arch))
3189 return 0;
3190 *flagsp |= 0x80;
3191 break;
3192
3193 case 'u':
3194 case 'U':
3195 if (! cris_insn_ver_valid_for_arch (cris_ver_v32p,
3196 cris_arch))
3197 return 0;
3198 *flagsp |= 0x40;
3199 break;
3200
3201 case 'i':
3202 case 'I':
3203 *flagsp |= 0x20;
3204 break;
3205
3206 case 'x':
3207 case 'X':
3208 *flagsp |= 0x10;
3209 break;
3210
3211 case 'n':
3212 case 'N':
3213 *flagsp |= 0x8;
3214 break;
3215
3216 case 'z':
3217 case 'Z':
3218 *flagsp |= 0x4;
3219 break;
3220
3221 case 'v':
3222 case 'V':
3223 *flagsp |= 0x2;
3224 break;
3225
3226 case 'c':
3227 case 'C':
3228 *flagsp |= 1;
3229 break;
3230
3231 default:
3232 /* We consider this successful if we stop at a comma or
3233 whitespace. Anything else, and we consider it a failure. */
3234 if (**cPP != ','
3235 && **cPP != 0
3236 && ! ISSPACE (**cPP))
3237 return 0;
3238 else
3239 return 1;
3240 }
3241
3242 /* Don't forget to consume each flag character. */
3243 (*cPP)++;
3244 }
3245 }
3246
3247 /* Generate code and fixes for a BDAP prefix.
3248 For v32, this handles ADDOQ because thankfully the opcodes are the
3249 same.
3250
3251 base_regno Int containing the base register number.
3252
3253 exprP Pointer to structure containing the offset expression. */
3254
3255 static void
3256 gen_bdap (int base_regno, expressionS *exprP)
3257 {
3258 unsigned int opcode;
3259 char *opcodep;
3260
3261 /* Put out the prefix opcode; assume quick immediate mode at first. */
3262 opcode = BDAP_QUICK_OPCODE | (base_regno << 12);
3263 opcodep = cris_insn_first_word_frag ();
3264 md_number_to_chars (opcodep, opcode, 2);
3265
3266 if (exprP->X_op == O_constant)
3267 {
3268 /* We have an absolute expression that we know the size of right
3269 now. */
3270 long int value;
3271 int size;
3272
3273 value = exprP->X_add_number;
3274 if (value < -32768 || value > 32767)
3275 /* Outside range for a "word", make it a dword. */
3276 size = 2;
3277 else
3278 /* Assume "word" size. */
3279 size = 1;
3280
3281 /* If this is a signed-byte value, we can fit it into the prefix
3282 insn itself. */
3283 if (value >= -128 && value <= 127)
3284 opcodep[0] = value;
3285 else
3286 {
3287 /* This is a word or dword displacement, which will be put in a
3288 word or dword after the prefix. */
3289 char *p;
3290
3291 opcodep[0] = BDAP_PC_LOW + (size << 4);
3292 opcodep[1] &= 0xF0;
3293 opcodep[1] |= BDAP_INCR_HIGH;
3294 p = frag_more (1 << size);
3295 md_number_to_chars (p, value, 1 << size);
3296 }
3297 }
3298 else
3299 {
3300 /* Handle complex expressions. */
3301 valueT addvalue
3302 = SIMPLE_EXPR (exprP) ? exprP->X_add_number : 0;
3303 symbolS *sym
3304 = (SIMPLE_EXPR (exprP)
3305 ? exprP->X_add_symbol : make_expr_symbol (exprP));
3306
3307 /* The expression is not defined yet but may become absolute. We
3308 make it a relocation to be relaxed. */
3309 frag_var (rs_machine_dependent, 4, 0,
3310 ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_UNDF),
3311 sym, addvalue, opcodep);
3312 }
3313 }
3314
3315 /* Encode a branch displacement in the range -256..254 into the form used
3316 by CRIS conditional branch instructions.
3317
3318 offset The displacement value in bytes. */
3319
3320 static int
3321 branch_disp (int offset)
3322 {
3323 int disp;
3324
3325 /* Adjust all short branch offsets here. */
3326 if (cris_arch == arch_crisv32 || cris_arch == arch_cris_common_v10_v32)
3327 offset += 2;
3328
3329 disp = offset & 0xFE;
3330
3331 if (offset < 0)
3332 disp |= 1;
3333
3334 return disp;
3335 }
3336
3337 /* Generate code and fixes for a 32-bit conditional branch instruction
3338 created by "extending" an existing 8-bit branch instruction.
3339
3340 opcodep Pointer to the word containing the original 8-bit branch
3341 instruction.
3342
3343 writep Pointer to "extension area" following the first instruction
3344 word.
3345
3346 fragP Pointer to the frag containing the instruction.
3347
3348 add_symP, Parts of the destination address expression.
3349 sub_symP,
3350 add_num. */
3351
3352 static void
3353 gen_cond_branch_32 (char *opcodep, char *writep, fragS *fragP,
3354 symbolS *add_symP, symbolS *sub_symP, long int add_num)
3355 {
3356 int nop_opcode;
3357 int opc_offset;
3358 int branch_offset;
3359
3360 if (cris_arch == arch_crisv32)
3361 {
3362 nop_opcode = NOP_OPCODE_V32;
3363 opc_offset = 10;
3364 branch_offset = -2 - 8;
3365 }
3366 else if (pic)
3367 {
3368 nop_opcode = NOP_OPCODE;
3369 opc_offset = 10;
3370 branch_offset = -2 - 8;
3371 }
3372 else
3373 {
3374 nop_opcode = NOP_OPCODE;
3375 opc_offset = 8;
3376 branch_offset = -2 - 6;
3377 }
3378
3379 /* We should never get here for compatibility mode. */
3380 if (cris_arch == arch_cris_common_v10_v32)
3381 as_fatal (_("Calling gen_cond_branch_32 for .arch common_v10_v32\n"));
3382
3383 if (warn_for_branch_expansion)
3384 as_warn_where (fragP->fr_file, fragP->fr_line,
3385 _("32-bit conditional branch generated"));
3386
3387 /* Here, writep points to what will be opcodep + 2. First, we change
3388 the actual branch in opcodep[0] and opcodep[1], so that in the
3389 final insn, it will look like:
3390 opcodep+10: Bcc .-6
3391
3392 This means we don't have to worry about changing the opcode or
3393 messing with the delay-slot instruction. So, we move it to last in
3394 the "extended" branch, and just change the displacement. Admittedly,
3395 it's not the optimal extended construct, but we should get this
3396 rarely enough that it shouldn't matter. */
3397
3398 writep[opc_offset] = branch_disp (branch_offset);
3399 writep[opc_offset + 1] = opcodep[1];
3400
3401 /* Then, we change the branch to an unconditional branch over the
3402 extended part, to the new location of the Bcc:
3403 opcodep: BA .+10
3404 opcodep+2: NOP
3405
3406 Note that these two writes are to currently different locations,
3407 merged later. */
3408
3409 md_number_to_chars (opcodep, BA_QUICK_OPCODE
3410 + (cris_arch == arch_crisv32 ? 12 : (pic ? 10 : 8)),
3411 2);
3412 md_number_to_chars (writep, nop_opcode, 2);
3413
3414 /* Then the extended thing, the 32-bit jump insn.
3415 opcodep+4: JUMP [PC+]
3416 or, in the PIC case,
3417 opcodep+4: MOVE [PC=PC+N],P0. */
3418
3419 md_number_to_chars (writep + 2,
3420 cris_arch == arch_crisv32
3421 ? BA_DWORD_OPCODE
3422 : (pic ? MOVE_PC_INCR_OPCODE_PREFIX
3423 : JUMP_PC_INCR_OPCODE), 2);
3424
3425 /* We have to fill in the actual value too.
3426 opcodep+6: .DWORD
3427 This is most probably an expression, but we can cope with an absolute
3428 value too. FIXME: Testcase needed with and without pic. */
3429
3430 if (add_symP == NULL && sub_symP == NULL)
3431 {
3432 /* An absolute address. */
3433 if (pic || cris_arch == arch_crisv32)
3434 fix_new (fragP, writep + 4 - fragP->fr_literal, 4,
3435 section_symbol (absolute_section),
3436 add_num
3437 + (cris_arch == arch_crisv32 ? 6 : 0),
3438 1, BFD_RELOC_32_PCREL);
3439 else
3440 md_number_to_chars (writep + 4, add_num, 4);
3441 }
3442 else
3443 {
3444 if (sub_symP != NULL)
3445 as_bad_where (fragP->fr_file, fragP->fr_line,
3446 _("Complex expression not supported"));
3447
3448 /* Not absolute, we have to make it a frag for later evaluation. */
3449 fix_new (fragP, writep + 4 - fragP->fr_literal, 4, add_symP,
3450 add_num + (cris_arch == arch_crisv32 ? 6 : 0),
3451 pic || cris_arch == arch_crisv32 ? 1 : 0,
3452 pic || cris_arch == arch_crisv32
3453 ? BFD_RELOC_32_PCREL : BFD_RELOC_32);
3454 }
3455
3456 if (cris_arch == arch_crisv32)
3457 /* Follow it with a "NOP" for CRISv32. */
3458 md_number_to_chars (writep + 8, NOP_OPCODE_V32, 2);
3459 else if (pic)
3460 /* ...and the rest of the move-opcode for pre-v32 PIC. */
3461 md_number_to_chars (writep + 8, MOVE_PC_INCR_OPCODE_SUFFIX, 2);
3462 }
3463
3464 /* Get the size of an immediate-reloc in bytes. Only valid for
3465 specified relocs (TLS, PIC). */
3466
3467 static unsigned int
3468 cris_get_specified_reloc_size (bfd_reloc_code_real_type reloc)
3469 {
3470 return
3471 reloc == BFD_RELOC_CRIS_16_GOTPLT
3472 || reloc == BFD_RELOC_CRIS_16_GOT
3473 || reloc == BFD_RELOC_CRIS_16_GOT_GD
3474 || reloc == BFD_RELOC_CRIS_16_DTPREL
3475 || reloc == BFD_RELOC_CRIS_16_GOT_TPREL
3476 || reloc == BFD_RELOC_CRIS_16_TPREL
3477 ? 2 : 4;
3478 }
3479
3480 /* Store a reloc type at *RELOCP corresponding to the PIC suffix at *CPP.
3481 Adjust *EXPRP with any addend found after the PIC suffix. */
3482
3483 static void
3484 cris_get_reloc_suffix (char **cPP, bfd_reloc_code_real_type *relocp,
3485 expressionS *exprP)
3486 {
3487 char *s = *cPP;
3488 unsigned int i;
3489 expressionS const_expr;
3490
3491 const struct pic_suffixes_struct
3492 {
3493 const char *const suffix;
3494 unsigned int len;
3495 bfd_reloc_code_real_type reloc;
3496 bfd_boolean pic_p;
3497 bfd_boolean tls_p;
3498 } pic_suffixes[] =
3499 {
3500 #undef PICMAP
3501 #define PICMAP(s, r) {s, sizeof (s) - 1, r, TRUE, FALSE}
3502 #define PICTLSMAP(s, r) {s, sizeof (s) - 1, r, TRUE, TRUE}
3503 #define TLSMAP(s, r) {s, sizeof (s) - 1, r, FALSE, TRUE}
3504 /* Keep this in order with longest unambiguous prefix first. */
3505 PICMAP ("GOTPLT16", BFD_RELOC_CRIS_16_GOTPLT),
3506 PICMAP ("GOTPLT", BFD_RELOC_CRIS_32_GOTPLT),
3507 PICMAP ("PLTG", BFD_RELOC_CRIS_32_PLT_GOTREL),
3508 PICMAP ("PLT", BFD_RELOC_CRIS_32_PLT_PCREL),
3509 PICMAP ("GOTOFF", BFD_RELOC_CRIS_32_GOTREL),
3510 PICMAP ("GOT16", BFD_RELOC_CRIS_16_GOT),
3511 PICMAP ("GOT", BFD_RELOC_CRIS_32_GOT),
3512 PICTLSMAP ("GDGOTREL16", BFD_RELOC_CRIS_16_GOT_GD),
3513 PICTLSMAP ("GDGOTREL", BFD_RELOC_CRIS_32_GOT_GD),
3514 TLSMAP ("GD", BFD_RELOC_CRIS_32_GD),
3515 PICTLSMAP ("DTPREL16", BFD_RELOC_CRIS_16_DTPREL),
3516 PICTLSMAP ("DTPREL", BFD_RELOC_CRIS_32_DTPREL),
3517 TLSMAP ("IE", BFD_RELOC_CRIS_32_IE),
3518 PICTLSMAP ("TPOFFGOT16", BFD_RELOC_CRIS_16_GOT_TPREL),
3519 PICTLSMAP ("TPOFFGOT", BFD_RELOC_CRIS_32_GOT_TPREL),
3520 TLSMAP ("TPOFF16", BFD_RELOC_CRIS_16_TPREL),
3521 TLSMAP ("TPOFF", BFD_RELOC_CRIS_32_TPREL)
3522 };
3523
3524 /* We've already seen the ':', so consume it. */
3525 s++;
3526
3527 for (i = 0; i < sizeof (pic_suffixes)/sizeof (pic_suffixes[0]); i++)
3528 {
3529 if (strncmp (s, pic_suffixes[i].suffix, pic_suffixes[i].len) == 0
3530 && ! is_part_of_name (s[pic_suffixes[i].len])
3531 /* PIC and non-PIC relocations are exclusive. */
3532 && (pic != 0) == (pic_suffixes[i].pic_p != 0)
3533 /* But TLS can be active for non-TLS relocations too. */
3534 && (pic_suffixes[i].tls_p == 0 || tls))
3535 {
3536 /* We have a match. Consume the suffix and set the relocation
3537 type. */
3538 s += pic_suffixes[i].len;
3539
3540 /* There can be a constant term appended. If so, we will add it
3541 to *EXPRP. */
3542 if (*s == '+' || *s == '-')
3543 {
3544 if (! cris_get_expression (&s, &const_expr))
3545 /* There was some kind of syntax error. Bail out. */
3546 break;
3547
3548 /* Allow complex expressions as the constant part. It still
3549 has to be an assembly-time constant or there will be an
3550 error emitting the reloc. This makes the PIC qualifiers
3551 idempotent; foo:GOTOFF+32 == foo+32:GOTOFF. The former we
3552 recognize here; the latter is parsed in the incoming
3553 expression. */
3554 exprP->X_add_symbol = make_expr_symbol (exprP);
3555 exprP->X_op = O_add;
3556 exprP->X_add_number = 0;
3557 exprP->X_op_symbol = make_expr_symbol (&const_expr);
3558 }
3559
3560 *relocp = pic_suffixes[i].reloc;
3561 *cPP = s;
3562 return;
3563 }
3564 }
3565
3566 /* No match. Don't consume anything; fall back and there will be a
3567 syntax error. */
3568 }
3569
3570 /* This *could* have been:
3571
3572 Turn a string in input_line_pointer into a floating point constant
3573 of type TYPE, and store the appropriate bytes in *LITP. The number
3574 of LITTLENUMS emitted is stored in *SIZEP.
3575
3576 type A character from FLTCHARS that describes what kind of
3577 floating-point number is wanted.
3578
3579 litp A pointer to an array that the result should be stored in.
3580
3581 sizep A pointer to an integer where the size of the result is stored.
3582
3583 But we don't support floating point constants in assembly code *at all*,
3584 since it's suboptimal and just opens up bug opportunities. GCC emits
3585 the bit patterns as hex. All we could do here is to emit what GCC
3586 would have done in the first place. *Nobody* writes floating-point
3587 code as assembly code, but if they do, they should be able enough to
3588 find out the correct bit patterns and use them. */
3589
3590 const char *
3591 md_atof (int type ATTRIBUTE_UNUSED, char *litp ATTRIBUTE_UNUSED,
3592 int *sizep ATTRIBUTE_UNUSED)
3593 {
3594 /* FIXME: Is this function mentioned in the internals.texi manual? If
3595 not, add it. */
3596 return _("Bad call to md_atof () - floating point formats are not supported");
3597 }
3598
3599 /* Turn a number as a fixS * into a series of bytes that represents the
3600 number on the target machine. The purpose of this procedure is the
3601 same as that of md_number_to_chars but this procedure is supposed to
3602 handle general bit field fixes and machine-dependent fixups.
3603
3604 bufp Pointer to an array where the result should be stored.
3605
3606 val The value to store.
3607
3608 n The number of bytes in "val" that should be stored.
3609
3610 fixP The fix to be applied to the bit field starting at bufp.
3611
3612 seg The segment containing this number. */
3613
3614 static void
3615 cris_number_to_imm (char *bufp, long val, int n, fixS *fixP, segT seg)
3616 {
3617 segT sym_seg;
3618
3619 know (n <= 4);
3620 know (fixP);
3621
3622 /* We put the relative "vma" for the other segment for inter-segment
3623 relocations in the object data to stay binary "compatible" (with an
3624 uninteresting old version) for the relocation.
3625 Maybe delete some day. */
3626 if (fixP->fx_addsy
3627 && (sym_seg = S_GET_SEGMENT (fixP->fx_addsy)) != seg)
3628 val += sym_seg->vma;
3629
3630 if (fixP->fx_addsy != NULL || fixP->fx_pcrel)
3631 switch (fixP->fx_r_type)
3632 {
3633 /* These must be fully resolved when getting here. */
3634 case BFD_RELOC_16_PCREL:
3635 case BFD_RELOC_8_PCREL:
3636 as_bad_where (fixP->fx_file, fixP->fx_line,
3637 _("PC-relative relocation must be trivially resolved"));
3638 default:
3639 ;
3640 }
3641
3642 /* Only use the computed value for old-arch binaries. For all
3643 others, where we're going to output a relocation, put 0 in the
3644 code. */
3645 if (cris_arch != arch_cris_any_v0_v10
3646 && (fixP->fx_addsy != NULL || fixP->fx_pcrel))
3647 val = 0;
3648
3649 switch (fixP->fx_r_type)
3650 {
3651 /* Ditto here, we put the addend into the object code as
3652 well as the reloc addend. Keep it that way for now, to simplify
3653 regression tests on the object file contents. FIXME: Seems
3654 uninteresting now that we have a test suite. */
3655
3656 case BFD_RELOC_CRIS_32_GOT_GD:
3657 case BFD_RELOC_CRIS_16_GOT_GD:
3658 case BFD_RELOC_CRIS_32_GD:
3659 case BFD_RELOC_CRIS_32_IE:
3660 case BFD_RELOC_CRIS_32_DTPREL:
3661 case BFD_RELOC_CRIS_16_DTPREL:
3662 case BFD_RELOC_CRIS_32_GOT_TPREL:
3663 case BFD_RELOC_CRIS_16_GOT_TPREL:
3664 case BFD_RELOC_CRIS_32_TPREL:
3665 case BFD_RELOC_CRIS_16_TPREL:
3666 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
3667 if (IS_ELF && fixP->fx_addsy != NULL)
3668 S_SET_THREAD_LOCAL (fixP->fx_addsy);
3669 #endif
3670 /* Fall through. */
3671
3672 case BFD_RELOC_CRIS_16_GOT:
3673 case BFD_RELOC_CRIS_32_GOT:
3674 case BFD_RELOC_CRIS_32_GOTREL:
3675 case BFD_RELOC_CRIS_16_GOTPLT:
3676 case BFD_RELOC_CRIS_32_GOTPLT:
3677 case BFD_RELOC_CRIS_32_PLT_GOTREL:
3678 case BFD_RELOC_CRIS_32_PLT_PCREL:
3679 /* We don't want to put in any kind of non-zero bits in the data
3680 being relocated for these. */
3681 md_number_to_chars (bufp, 0, n);
3682 break;
3683
3684 case BFD_RELOC_32_PCREL:
3685 /* If this one isn't fully resolved, we don't want to put non-zero
3686 in the object. */
3687 if (fixP->fx_addsy != NULL || fixP->fx_pcrel)
3688 val = 0;
3689
3690 /* Fall through. */
3691 case BFD_RELOC_32:
3692 /* No use having warnings here, since most hosts have a 32-bit type
3693 for "long" (which will probably change soon, now that I wrote
3694 this). */
3695 bufp[3] = (val >> 24) & 0xFF;
3696 bufp[2] = (val >> 16) & 0xFF;
3697 bufp[1] = (val >> 8) & 0xFF;
3698 bufp[0] = val & 0xFF;
3699 break;
3700
3701 /* FIXME: The 16 and 8-bit cases should have a way to check
3702 whether a signed or unsigned (or any signedness) number is
3703 accepted. */
3704
3705 case BFD_RELOC_16:
3706 case BFD_RELOC_16_PCREL:
3707 if (val > 0xffff || val < -32768)
3708 as_bad_where (fixP->fx_file, fixP->fx_line,
3709 _("Value not in 16 bit range: %ld"), val);
3710 bufp[1] = (val >> 8) & 0xFF;
3711 bufp[0] = val & 0xFF;
3712 break;
3713
3714 case BFD_RELOC_CRIS_SIGNED_16:
3715 if (val > 32767 || val < -32768)
3716 as_bad_where (fixP->fx_file, fixP->fx_line,
3717 _("Value not in 16 bit signed range: %ld"), val);
3718 bufp[1] = (val >> 8) & 0xFF;
3719 bufp[0] = val & 0xFF;
3720 break;
3721
3722 case BFD_RELOC_8:
3723 case BFD_RELOC_8_PCREL:
3724 if (val > 255 || val < -128)
3725 as_bad_where (fixP->fx_file, fixP->fx_line, _("Value not in 8 bit range: %ld"), val);
3726 bufp[0] = val & 0xFF;
3727 break;
3728
3729 case BFD_RELOC_CRIS_SIGNED_8:
3730 if (val > 127 || val < -128)
3731 as_bad_where (fixP->fx_file, fixP->fx_line,
3732 _("Value not in 8 bit signed range: %ld"), val);
3733 bufp[0] = val & 0xFF;
3734 break;
3735
3736 case BFD_RELOC_CRIS_LAPCQ_OFFSET:
3737 /* FIXME: Test-cases for out-of-range values. Probably also need
3738 to use as_bad_where. */
3739 case BFD_RELOC_CRIS_UNSIGNED_4:
3740 if (val > 15 || val < 0)
3741 as_bad_where (fixP->fx_file, fixP->fx_line,
3742 _("Value not in 4 bit unsigned range: %ld"), val);
3743 bufp[0] |= val & 0x0F;
3744 break;
3745
3746 case BFD_RELOC_CRIS_UNSIGNED_5:
3747 if (val > 31 || val < 0)
3748 as_bad_where (fixP->fx_file, fixP->fx_line,
3749 _("Value not in 5 bit unsigned range: %ld"), val);
3750 bufp[0] |= val & 0x1F;
3751 break;
3752
3753 case BFD_RELOC_CRIS_SIGNED_6:
3754 if (val > 31 || val < -32)
3755 as_bad_where (fixP->fx_file, fixP->fx_line,
3756 _("Value not in 6 bit range: %ld"), val);
3757 bufp[0] |= val & 0x3F;
3758 break;
3759
3760 case BFD_RELOC_CRIS_UNSIGNED_6:
3761 if (val > 63 || val < 0)
3762 as_bad_where (fixP->fx_file, fixP->fx_line,
3763 _("Value not in 6 bit unsigned range: %ld"), val);
3764 bufp[0] |= val & 0x3F;
3765 break;
3766
3767 case BFD_RELOC_CRIS_BDISP8:
3768 bufp[0] = branch_disp (val);
3769 break;
3770
3771 case BFD_RELOC_NONE:
3772 /* May actually happen automatically. For example at broken
3773 words, if the word turns out not to be broken.
3774 FIXME: When? Which testcase? */
3775 if (! fixP->fx_addsy)
3776 md_number_to_chars (bufp, val, n);
3777 break;
3778
3779 case BFD_RELOC_VTABLE_INHERIT:
3780 /* This borrowed from tc-ppc.c on a whim. */
3781 if (fixP->fx_addsy
3782 && !S_IS_DEFINED (fixP->fx_addsy)
3783 && !S_IS_WEAK (fixP->fx_addsy))
3784 S_SET_WEAK (fixP->fx_addsy);
3785 /* Fall through. */
3786
3787 case BFD_RELOC_VTABLE_ENTRY:
3788 fixP->fx_done = 0;
3789 break;
3790
3791 default:
3792 BAD_CASE (fixP->fx_r_type);
3793 }
3794 }
3795
3796 /* Processes machine-dependent command line options. Called once for
3797 each option on the command line that the machine-independent part of
3798 GAS does not understand. */
3799
3800 int
3801 md_parse_option (int arg, const char *argp ATTRIBUTE_UNUSED)
3802 {
3803 switch (arg)
3804 {
3805 case 'H':
3806 case 'h':
3807 printf (_("Please use --help to see usage and options for this assembler.\n"));
3808 md_show_usage (stdout);
3809 exit (EXIT_SUCCESS);
3810
3811 case 'N':
3812 warn_for_branch_expansion = 1;
3813 break;
3814
3815 case OPTION_NO_US:
3816 demand_register_prefix = TRUE;
3817
3818 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
3819 as_bad (_("--no-underscore is invalid with a.out format"));
3820 else
3821 symbols_have_leading_underscore = FALSE;
3822 break;
3823
3824 case OPTION_US:
3825 demand_register_prefix = FALSE;
3826 symbols_have_leading_underscore = TRUE;
3827 break;
3828
3829 case OPTION_PIC:
3830 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
3831 as_bad (_("--pic is invalid for this object format"));
3832 pic = TRUE;
3833 if (cris_arch != arch_crisv32)
3834 md_long_jump_size = cris_any_v0_v10_long_jump_size_pic;
3835 else
3836 md_long_jump_size = crisv32_long_jump_size;
3837 break;
3838
3839 case OPTION_ARCH:
3840 {
3841 const char *str = argp;
3842 enum cris_archs argarch = cris_arch_from_string (&str);
3843
3844 if (argarch == arch_cris_unknown)
3845 as_bad (_("invalid <arch> in --march=<arch>: %s"), argp);
3846 else
3847 cris_arch = argarch;
3848
3849 if (argarch == arch_crisv32)
3850 {
3851 err_for_dangerous_mul_placement = 0;
3852 md_long_jump_size = crisv32_long_jump_size;
3853 }
3854 else
3855 {
3856 if (pic)
3857 md_long_jump_size = cris_any_v0_v10_long_jump_size_pic;
3858 else
3859 md_long_jump_size = cris_any_v0_v10_long_jump_size;
3860 }
3861 }
3862 break;
3863
3864 case OPTION_MULBUG_ABORT_OFF:
3865 err_for_dangerous_mul_placement = 0;
3866 break;
3867
3868 case OPTION_MULBUG_ABORT_ON:
3869 err_for_dangerous_mul_placement = 1;
3870 break;
3871
3872 default:
3873 return 0;
3874 }
3875
3876 return 1;
3877 }
3878
3879 /* Round up a section size to the appropriate boundary. */
3880 valueT
3881 md_section_align (segT segment, valueT size)
3882 {
3883 /* Round all sects to multiple of 4, except the bss section, which
3884 we'll round to word-size.
3885
3886 FIXME: Check if this really matters. All sections should be
3887 rounded up, and all sections should (optionally) be assumed to be
3888 dword-aligned, it's just that there is actual usage of linking to a
3889 multiple of two. */
3890 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
3891 {
3892 if (segment == bss_section)
3893 return (size + 1) & ~1;
3894 return (size + 3) & ~3;
3895 }
3896 else
3897 {
3898 /* FIXME: Is this wanted? It matches the testsuite, but that's not
3899 really a valid reason. */
3900 if (segment == text_section)
3901 return (size + 3) & ~3;
3902 }
3903
3904 return size;
3905 }
3906
3907 /* Generate a machine-dependent relocation. */
3908 arelent *
3909 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixP)
3910 {
3911 arelent *relP;
3912 bfd_reloc_code_real_type code;
3913
3914 switch (fixP->fx_r_type)
3915 {
3916 case BFD_RELOC_CRIS_SIGNED_8:
3917 code = BFD_RELOC_8;
3918 break;
3919
3920 case BFD_RELOC_CRIS_SIGNED_16:
3921 code = BFD_RELOC_16;
3922 break;
3923
3924 case BFD_RELOC_CRIS_16_GOT:
3925 case BFD_RELOC_CRIS_32_GOT:
3926 case BFD_RELOC_CRIS_16_GOTPLT:
3927 case BFD_RELOC_CRIS_32_GOTPLT:
3928 case BFD_RELOC_CRIS_32_GOTREL:
3929 case BFD_RELOC_CRIS_32_PLT_GOTREL:
3930 case BFD_RELOC_CRIS_32_PLT_PCREL:
3931 case BFD_RELOC_32:
3932 case BFD_RELOC_32_PCREL:
3933 case BFD_RELOC_16:
3934 case BFD_RELOC_8:
3935 case BFD_RELOC_VTABLE_INHERIT:
3936 case BFD_RELOC_VTABLE_ENTRY:
3937 case BFD_RELOC_CRIS_UNSIGNED_8:
3938 case BFD_RELOC_CRIS_UNSIGNED_16:
3939 case BFD_RELOC_CRIS_LAPCQ_OFFSET:
3940 case BFD_RELOC_CRIS_32_GOT_GD:
3941 case BFD_RELOC_CRIS_16_GOT_GD:
3942 case BFD_RELOC_CRIS_32_GD:
3943 case BFD_RELOC_CRIS_32_IE:
3944 case BFD_RELOC_CRIS_32_DTPREL:
3945 case BFD_RELOC_CRIS_16_DTPREL:
3946 case BFD_RELOC_CRIS_32_GOT_TPREL:
3947 case BFD_RELOC_CRIS_16_GOT_TPREL:
3948 case BFD_RELOC_CRIS_32_TPREL:
3949 case BFD_RELOC_CRIS_16_TPREL:
3950 code = fixP->fx_r_type;
3951 break;
3952 default:
3953 as_bad_where (fixP->fx_file, fixP->fx_line,
3954 _("Semantics error. This type of operand can not be relocated, it must be an assembly-time constant"));
3955 return 0;
3956 }
3957
3958 relP = XNEW (arelent);
3959 gas_assert (relP != 0);
3960 relP->sym_ptr_ptr = XNEW (asymbol *);
3961 *relP->sym_ptr_ptr = symbol_get_bfdsym (fixP->fx_addsy);
3962 relP->address = fixP->fx_frag->fr_address + fixP->fx_where;
3963
3964 relP->addend = fixP->fx_offset;
3965
3966 /* This is the standard place for KLUDGEs to work around bugs in
3967 bfd_install_relocation (first such note in the documentation
3968 appears with binutils-2.8).
3969
3970 That function bfd_install_relocation does the wrong thing with
3971 putting stuff into the addend of a reloc (it should stay out) for a
3972 weak symbol. The really bad thing is that it adds the
3973 "segment-relative offset" of the symbol into the reloc. In this
3974 case, the reloc should instead be relative to the symbol with no
3975 other offset than the assembly code shows; and since the symbol is
3976 weak, any local definition should be ignored until link time (or
3977 thereafter).
3978 To wit: weaksym+42 should be weaksym+42 in the reloc,
3979 not weaksym+(offset_from_segment_of_local_weaksym_definition)
3980
3981 To "work around" this, we subtract the segment-relative offset of
3982 "known" weak symbols. This evens out the extra offset.
3983
3984 That happens for a.out but not for ELF, since for ELF,
3985 bfd_install_relocation uses the "special function" field of the
3986 howto, and does not execute the code that needs to be undone. */
3987
3988 if (OUTPUT_FLAVOR == bfd_target_aout_flavour
3989 && fixP->fx_addsy && S_IS_WEAK (fixP->fx_addsy)
3990 && ! bfd_is_und_section (S_GET_SEGMENT (fixP->fx_addsy)))
3991 {
3992 relP->addend -= S_GET_VALUE (fixP->fx_addsy);
3993 }
3994
3995 relP->howto = bfd_reloc_type_lookup (stdoutput, code);
3996 if (! relP->howto)
3997 {
3998 const char *name;
3999
4000 name = S_GET_NAME (fixP->fx_addsy);
4001 if (name == NULL)
4002 name = _("<unknown>");
4003 as_fatal (_("Cannot generate relocation type for symbol %s, code %s"),
4004 name, bfd_get_reloc_code_name (code));
4005 }
4006
4007 return relP;
4008 }
4009
4010 /* Machine-dependent usage-output. */
4011
4012 void
4013 md_show_usage (FILE *stream)
4014 {
4015 /* The messages are formatted to line up with the generic options. */
4016 fprintf (stream, _("CRIS-specific options:\n"));
4017 fprintf (stream, "%s",
4018 _(" -h, -H Don't execute, print this help text. Deprecated.\n"));
4019 fprintf (stream, "%s",
4020 _(" -N Warn when branches are expanded to jumps.\n"));
4021 fprintf (stream, "%s",
4022 _(" --underscore User symbols are normally prepended with underscore.\n"));
4023 fprintf (stream, "%s",
4024 _(" Registers will not need any prefix.\n"));
4025 fprintf (stream, "%s",
4026 _(" --no-underscore User symbols do not have any prefix.\n"));
4027 fprintf (stream, "%s",
4028 _(" Registers will require a `$'-prefix.\n"));
4029 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4030 fprintf (stream, "%s",
4031 _(" --pic Enable generation of position-independent code.\n"));
4032 #endif
4033 fprintf (stream, "%s",
4034 _(" --march=<arch> Generate code for <arch>. Valid choices for <arch>\n\
4035 are v0_v10, v10, v32 and common_v10_v32.\n"));
4036 }
4037
4038 /* Apply a fixS (fixup of an instruction or data that we didn't have
4039 enough info to complete immediately) to the data in a frag. */
4040
4041 void
4042 md_apply_fix (fixS *fixP, valueT *valP, segT seg)
4043 {
4044 /* This assignment truncates upper bits if valueT is 64 bits (as with
4045 --enable-64-bit-bfd), which is fine here, though we cast to avoid
4046 any compiler warnings. */
4047 long val = (long) *valP;
4048 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
4049
4050 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
4051 fixP->fx_done = 1;
4052
4053 /* We can't actually support subtracting a symbol. */
4054 if (fixP->fx_subsy != (symbolS *) NULL)
4055 as_bad_where (fixP->fx_file, fixP->fx_line,
4056 _("expression too complex"));
4057
4058 /* This operand-type is scaled. */
4059 if (fixP->fx_r_type == BFD_RELOC_CRIS_LAPCQ_OFFSET)
4060 val /= 2;
4061 cris_number_to_imm (buf, val, fixP->fx_size, fixP, seg);
4062 }
4063
4064 /* All relocations are relative to the location just after the fixup;
4065 the address of the fixup plus its size. */
4066
4067 long
4068 md_pcrel_from (fixS *fixP)
4069 {
4070 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
4071
4072 /* FIXME: We get here only at the end of assembly, when X in ".-X" is
4073 still unknown. Since we don't have pc-relative relocations in a.out,
4074 this is invalid. What to do if anything for a.out, is to add
4075 pc-relative relocations everywhere including the elinux program
4076 loader. For ELF, allow straight-forward PC-relative relocations,
4077 which are always relative to the location after the relocation. */
4078 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
4079 || (fixP->fx_r_type != BFD_RELOC_8_PCREL
4080 && fixP->fx_r_type != BFD_RELOC_16_PCREL
4081 && fixP->fx_r_type != BFD_RELOC_32_PCREL
4082 && fixP->fx_r_type != BFD_RELOC_CRIS_LAPCQ_OFFSET))
4083 as_bad_where (fixP->fx_file, fixP->fx_line,
4084 _("Invalid pc-relative relocation"));
4085 return fixP->fx_size + addr;
4086 }
4087
4088 /* We have no need to give defaults for symbol-values. */
4089 symbolS *
4090 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
4091 {
4092 return 0;
4093 }
4094
4095 /* If this function returns non-zero, it prevents the relocation
4096 against symbol(s) in the FIXP from being replaced with relocations
4097 against section symbols, and guarantees that a relocation will be
4098 emitted even when the value can be resolved locally. */
4099 int
4100 md_cris_force_relocation (struct fix *fixp)
4101 {
4102 switch (fixp->fx_r_type)
4103 {
4104 case BFD_RELOC_CRIS_16_GOT:
4105 case BFD_RELOC_CRIS_32_GOT:
4106 case BFD_RELOC_CRIS_16_GOTPLT:
4107 case BFD_RELOC_CRIS_32_GOTPLT:
4108 case BFD_RELOC_CRIS_32_GOTREL:
4109 case BFD_RELOC_CRIS_32_PLT_GOTREL:
4110 case BFD_RELOC_CRIS_32_PLT_PCREL:
4111 return 1;
4112 default:
4113 ;
4114 }
4115
4116 return generic_force_reloc (fixp);
4117 }
4118
4119 /* Check and emit error if broken-word handling has failed to fix up a
4120 case-table. This is called from write.c, after doing everything it
4121 knows about how to handle broken words. */
4122
4123 void
4124 tc_cris_check_adjusted_broken_word (offsetT new_offset, struct broken_word *brokwP)
4125 {
4126 if (new_offset > 32767 || new_offset < -32768)
4127 /* We really want a genuine error, not a warning, so make it one. */
4128 as_bad_where (brokwP->frag->fr_file, brokwP->frag->fr_line,
4129 _("Adjusted signed .word (%ld) overflows: `switch'-statement too large."),
4130 (long) new_offset);
4131 }
4132
4133 /* Make a leading REGISTER_PREFIX_CHAR mandatory for all registers. */
4134
4135 static void
4136 cris_force_reg_prefix (void)
4137 {
4138 demand_register_prefix = TRUE;
4139 }
4140
4141 /* Do not demand a leading REGISTER_PREFIX_CHAR for all registers. */
4142
4143 static void
4144 cris_relax_reg_prefix (void)
4145 {
4146 demand_register_prefix = FALSE;
4147 }
4148
4149 /* Adjust for having a leading '_' on all user symbols. */
4150
4151 static void
4152 cris_sym_leading_underscore (void)
4153 {
4154 /* We can't really do anything more than assert that what the program
4155 thinks symbol starts with agrees with the command-line options, since
4156 the bfd is already created. */
4157
4158 if (!symbols_have_leading_underscore)
4159 as_bad (_(".syntax %s requires command-line option `--underscore'"),
4160 SYNTAX_USER_SYM_LEADING_UNDERSCORE);
4161 }
4162
4163 /* Adjust for not having any particular prefix on user symbols. */
4164
4165 static void cris_sym_no_leading_underscore (void)
4166 {
4167 if (symbols_have_leading_underscore)
4168 as_bad (_(".syntax %s requires command-line option `--no-underscore'"),
4169 SYNTAX_USER_SYM_NO_LEADING_UNDERSCORE);
4170 }
4171
4172 /* Handle the .syntax pseudo, which takes an argument that decides what
4173 syntax the assembly code has. */
4174
4175 static void
4176 s_syntax (int ignore ATTRIBUTE_UNUSED)
4177 {
4178 static const struct syntaxes
4179 {
4180 const char *const operand;
4181 void (*fn) (void);
4182 } syntax_table[] =
4183 {{SYNTAX_ENFORCE_REG_PREFIX, cris_force_reg_prefix},
4184 {SYNTAX_RELAX_REG_PREFIX, cris_relax_reg_prefix},
4185 {SYNTAX_USER_SYM_LEADING_UNDERSCORE, cris_sym_leading_underscore},
4186 {SYNTAX_USER_SYM_NO_LEADING_UNDERSCORE, cris_sym_no_leading_underscore}};
4187
4188 const struct syntaxes *sp;
4189
4190 for (sp = syntax_table;
4191 sp < syntax_table + sizeof (syntax_table) / sizeof (syntax_table[0]);
4192 sp++)
4193 {
4194 if (strncmp (input_line_pointer, sp->operand,
4195 strlen (sp->operand)) == 0)
4196 {
4197 (sp->fn) ();
4198
4199 input_line_pointer += strlen (sp->operand);
4200 demand_empty_rest_of_line ();
4201 return;
4202 }
4203 }
4204
4205 as_bad (_("Unknown .syntax operand"));
4206 }
4207
4208 /* Wrapper for dwarf2_directive_file to emit error if this is seen when
4209 not emitting ELF. */
4210
4211 static void
4212 s_cris_file (int dummy)
4213 {
4214 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
4215 as_bad (_("Pseudodirective .file is only valid when generating ELF"));
4216 else
4217 dwarf2_directive_file (dummy);
4218 }
4219
4220 /* Wrapper for dwarf2_directive_loc to emit error if this is seen when not
4221 emitting ELF. */
4222
4223 static void
4224 s_cris_loc (int dummy)
4225 {
4226 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
4227 as_bad (_("Pseudodirective .loc is only valid when generating ELF"));
4228 else
4229 dwarf2_directive_loc (dummy);
4230 }
4231
4232 /* Worker for .dtpoffd: generate a R_CRIS_32_DTPREL reloc, as for
4233 expr:DTPREL but for use in debug info. */
4234
4235 static void
4236 s_cris_dtpoff (int bytes)
4237 {
4238 expressionS ex;
4239 char *p;
4240
4241 if (bytes != 4)
4242 as_fatal (_("internal inconsistency problem: %s called for %d bytes"),
4243 __FUNCTION__, bytes);
4244
4245 expression (&ex);
4246
4247 p = frag_more (bytes);
4248 md_number_to_chars (p, 0, bytes);
4249 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE,
4250 BFD_RELOC_CRIS_32_DTPREL);
4251
4252 demand_empty_rest_of_line ();
4253 }
4254
4255
4256 /* Translate a <arch> string (as common to --march=<arch> and .arch <arch>)
4257 into an enum. If the string *STR is recognized, *STR is updated to point
4258 to the end of the string. If the string is not recognized,
4259 arch_cris_unknown is returned. */
4260
4261 static enum cris_archs
4262 cris_arch_from_string (const char **str)
4263 {
4264 static const struct cris_arch_struct
4265 {
4266 const char *const name;
4267 enum cris_archs arch;
4268 } arch_table[] =
4269 /* Keep in order longest-first for choices where one is a prefix
4270 of another. */
4271 {{"v0_v10", arch_cris_any_v0_v10},
4272 {"v10", arch_crisv10},
4273 {"v32", arch_crisv32},
4274 {"common_v10_v32", arch_cris_common_v10_v32}};
4275
4276 const struct cris_arch_struct *ap;
4277
4278 for (ap = arch_table;
4279 ap < arch_table + sizeof (arch_table) / sizeof (arch_table[0]);
4280 ap++)
4281 {
4282 int len = strlen (ap->name);
4283
4284 if (strncmp (*str, ap->name, len) == 0
4285 && (str[0][len] == 0 || ISSPACE (str[0][len])))
4286 {
4287 *str += strlen (ap->name);
4288 return ap->arch;
4289 }
4290 }
4291
4292 return arch_cris_unknown;
4293 }
4294
4295 /* Return nonzero if architecture version ARCH matches version range in
4296 IVER. */
4297
4298 static int
4299 cris_insn_ver_valid_for_arch (enum cris_insn_version_usage iver,
4300 enum cris_archs arch)
4301 {
4302 switch (arch)
4303 {
4304 case arch_cris_any_v0_v10:
4305 return
4306 (iver == cris_ver_version_all
4307 || iver == cris_ver_warning
4308 || iver == cris_ver_v0_3
4309 || iver == cris_ver_v3p
4310 || iver == cris_ver_v0_10
4311 || iver == cris_ver_sim_v0_10
4312 || iver == cris_ver_v3_10
4313 || iver == cris_ver_v8
4314 || iver == cris_ver_v8p
4315 || iver == cris_ver_v8_10
4316 || iver == cris_ver_v10
4317 || iver == cris_ver_v10p);
4318
4319 case arch_crisv32:
4320 return
4321 (iver == cris_ver_version_all
4322 || iver == cris_ver_v3p
4323 || iver == cris_ver_v8p
4324 || iver == cris_ver_v10p
4325 || iver == cris_ver_v32p);
4326
4327 case arch_cris_common_v10_v32:
4328 return
4329 (iver == cris_ver_version_all
4330 || iver == cris_ver_v3p
4331 || iver == cris_ver_v8p
4332 || iver == cris_ver_v10p);
4333
4334 case arch_crisv0:
4335 return
4336 (iver == cris_ver_version_all
4337 || iver == cris_ver_v0_3
4338 || iver == cris_ver_v0_10
4339 || iver == cris_ver_sim_v0_10);
4340
4341 case arch_crisv3:
4342 return
4343 (iver == cris_ver_version_all
4344 || iver == cris_ver_v0_3
4345 || iver == cris_ver_v3p
4346 || iver == cris_ver_v0_10
4347 || iver == cris_ver_sim_v0_10
4348 || iver == cris_ver_v3_10);
4349
4350 case arch_crisv8:
4351 return
4352 (iver == cris_ver_version_all
4353 || iver == cris_ver_v3p
4354 || iver == cris_ver_v0_10
4355 || iver == cris_ver_sim_v0_10
4356 || iver == cris_ver_v3_10
4357 || iver == cris_ver_v8
4358 || iver == cris_ver_v8p
4359 || iver == cris_ver_v8_10);
4360
4361 case arch_crisv10:
4362 return
4363 (iver == cris_ver_version_all
4364 || iver == cris_ver_v3p
4365 || iver == cris_ver_v0_10
4366 || iver == cris_ver_sim_v0_10
4367 || iver == cris_ver_v3_10
4368 || iver == cris_ver_v8p
4369 || iver == cris_ver_v8_10
4370 || iver == cris_ver_v10
4371 || iver == cris_ver_v10p);
4372
4373 default:
4374 BAD_CASE (arch);
4375 }
4376 }
4377
4378 /* Assert that the .arch ARCHCHOICE1 is compatible with the specified or
4379 default --march=<ARCHCHOICE2> option. */
4380
4381 static void
4382 s_cris_arch (int dummy ATTRIBUTE_UNUSED)
4383 {
4384 /* Right now we take the easy route and check for sameness. It's not
4385 obvious that allowing e.g. --march=v32 and .arch common_v0_v32
4386 would be more useful than confusing, implementation-wise and
4387 user-wise. */
4388
4389 const char *str = input_line_pointer;
4390 enum cris_archs arch = cris_arch_from_string (&str);
4391
4392 if (arch == arch_cris_unknown)
4393 {
4394 as_bad (_("unknown operand to .arch"));
4395
4396 /* For this one, str does not reflect the end of the operand,
4397 since there was no matching arch. Skip it manually; skip
4398 things that can be part of a word (a name). */
4399 while (is_part_of_name (*str))
4400 str++;
4401 }
4402 else if (arch != cris_arch)
4403 as_bad (_(".arch <arch> requires a matching --march=... option"));
4404
4405 input_line_pointer = (char *) str;
4406 demand_empty_rest_of_line ();
4407 return;
4408 }
4409
4410 /*
4411 * Local variables:
4412 * eval: (c-set-style "gnu")
4413 * indent-tabs-mode: t
4414 * End:
4415 */