* config/xtensa-istack.h (tinsn_struct): Replace linenum field
[deliverable/binutils-gdb.git] / gas / config / tc-xtensa.c
1 /* tc-xtensa.c -- Assemble Xtensa instructions.
2 Copyright 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21 #include <limits.h>
22 #include "as.h"
23 #include "sb.h"
24 #include "safe-ctype.h"
25 #include "tc-xtensa.h"
26 #include "subsegs.h"
27 #include "xtensa-relax.h"
28 #include "dwarf2dbg.h"
29 #include "xtensa-istack.h"
30 #include "struc-symbol.h"
31 #include "xtensa-config.h"
32
33 /* Provide default values for new configuration settings. */
34 #ifndef XSHAL_ABI
35 #define XSHAL_ABI 0
36 #endif
37
38 #ifndef uint32
39 #define uint32 unsigned int
40 #endif
41 #ifndef int32
42 #define int32 signed int
43 #endif
44
45 /* Notes:
46
47 Naming conventions (used somewhat inconsistently):
48 The xtensa_ functions are exported
49 The xg_ functions are internal
50
51 We also have a couple of different extensibility mechanisms.
52 1) The idiom replacement:
53 This is used when a line is first parsed to
54 replace an instruction pattern with another instruction
55 It is currently limited to replacements of instructions
56 with constant operands.
57 2) The xtensa-relax.c mechanism that has stronger instruction
58 replacement patterns. When an instruction's immediate field
59 does not fit the next instruction sequence is attempted.
60 In addition, "narrow" opcodes are supported this way. */
61
62
63 /* Define characters with special meanings to GAS. */
64 const char comment_chars[] = "#";
65 const char line_comment_chars[] = "#";
66 const char line_separator_chars[] = ";";
67 const char EXP_CHARS[] = "eE";
68 const char FLT_CHARS[] = "rRsSfFdDxXpP";
69
70
71 /* Flags to indicate whether the hardware supports the density and
72 absolute literals options. */
73
74 bfd_boolean density_supported = XCHAL_HAVE_DENSITY;
75 bfd_boolean absolute_literals_supported = XSHAL_USE_ABSOLUTE_LITERALS;
76
77 /* Maximum width we would pad an unreachable frag to get alignment. */
78 #define UNREACHABLE_MAX_WIDTH 8
79
80 static vliw_insn cur_vinsn;
81
82 unsigned xtensa_fetch_width = XCHAL_INST_FETCH_WIDTH;
83
84 static enum debug_info_type xt_saved_debug_type = DEBUG_NONE;
85
86 /* Some functions are only valid in the front end. This variable
87 allows us to assert that we haven't crossed over into the
88 back end. */
89 static bfd_boolean past_xtensa_end = FALSE;
90
91 /* Flags for properties of the last instruction in a segment. */
92 #define FLAG_IS_A0_WRITER 0x1
93 #define FLAG_IS_BAD_LOOPEND 0x2
94
95
96 /* We define a special segment names ".literal" to place literals
97 into. The .fini and .init sections are special because they
98 contain code that is moved together by the linker. We give them
99 their own special .fini.literal and .init.literal sections. */
100
101 #define LITERAL_SECTION_NAME xtensa_section_rename (".literal")
102 #define LIT4_SECTION_NAME xtensa_section_rename (".lit4")
103 #define INIT_SECTION_NAME xtensa_section_rename (".init")
104 #define FINI_SECTION_NAME xtensa_section_rename (".fini")
105
106
107 /* This type is used for the directive_stack to keep track of the
108 state of the literal collection pools. If lit_prefix is set, it is
109 used to determine the literal section names; otherwise, the literal
110 sections are determined based on the current text section. The
111 lit_seg and lit4_seg fields cache these literal sections, with the
112 current_text_seg field used a tag to indicate whether the cached
113 values are valid. */
114
115 typedef struct lit_state_struct
116 {
117 char *lit_prefix;
118 segT current_text_seg;
119 segT lit_seg;
120 segT lit4_seg;
121 } lit_state;
122
123 static lit_state default_lit_sections;
124
125
126 /* We keep a list of literal segments. The seg_list type is the node
127 for this list. The literal_head pointer is the head of the list,
128 with the literal_head_h dummy node at the start. */
129
130 typedef struct seg_list_struct
131 {
132 struct seg_list_struct *next;
133 segT seg;
134 } seg_list;
135
136 static seg_list literal_head_h;
137 static seg_list *literal_head = &literal_head_h;
138
139
140 /* Lists of symbols. We keep a list of symbols that label the current
141 instruction, so that we can adjust the symbols when inserting alignment
142 for various instructions. We also keep a list of all the symbols on
143 literals, so that we can fix up those symbols when the literals are
144 later moved into the text sections. */
145
146 typedef struct sym_list_struct
147 {
148 struct sym_list_struct *next;
149 symbolS *sym;
150 } sym_list;
151
152 static sym_list *insn_labels = NULL;
153 static sym_list *free_insn_labels = NULL;
154 static sym_list *saved_insn_labels = NULL;
155
156 static sym_list *literal_syms;
157
158
159 /* Flags to determine whether to prefer const16 or l32r
160 if both options are available. */
161 int prefer_const16 = 0;
162 int prefer_l32r = 0;
163
164 /* Global flag to indicate when we are emitting literals. */
165 int generating_literals = 0;
166
167 /* The following PROPERTY table definitions are copied from
168 <elf/xtensa.h> and must be kept in sync with the code there. */
169
170 /* Flags in the property tables to specify whether blocks of memory
171 are literals, instructions, data, or unreachable. For
172 instructions, blocks that begin loop targets and branch targets are
173 designated. Blocks that do not allow density, instruction
174 reordering or transformation are also specified. Finally, for
175 branch targets, branch target alignment priority is included.
176 Alignment of the next block is specified in the current block
177 and the size of the current block does not include any fill required
178 to align to the next block. */
179
180 #define XTENSA_PROP_LITERAL 0x00000001
181 #define XTENSA_PROP_INSN 0x00000002
182 #define XTENSA_PROP_DATA 0x00000004
183 #define XTENSA_PROP_UNREACHABLE 0x00000008
184 /* Instruction only properties at beginning of code. */
185 #define XTENSA_PROP_INSN_LOOP_TARGET 0x00000010
186 #define XTENSA_PROP_INSN_BRANCH_TARGET 0x00000020
187 /* Instruction only properties about code. */
188 #define XTENSA_PROP_INSN_NO_DENSITY 0x00000040
189 #define XTENSA_PROP_INSN_NO_REORDER 0x00000080
190 /* Historically, NO_TRANSFORM was a property of instructions,
191 but it should apply to literals under certain circumstances. */
192 #define XTENSA_PROP_NO_TRANSFORM 0x00000100
193
194 /* Branch target alignment information. This transmits information
195 to the linker optimization about the priority of aligning a
196 particular block for branch target alignment: None, low priority,
197 high priority, or required. These only need to be checked in
198 instruction blocks marked as XTENSA_PROP_INSN_BRANCH_TARGET.
199 Common usage is
200
201 switch (GET_XTENSA_PROP_BT_ALIGN (flags))
202 case XTENSA_PROP_BT_ALIGN_NONE:
203 case XTENSA_PROP_BT_ALIGN_LOW:
204 case XTENSA_PROP_BT_ALIGN_HIGH:
205 case XTENSA_PROP_BT_ALIGN_REQUIRE:
206 */
207 #define XTENSA_PROP_BT_ALIGN_MASK 0x00000600
208
209 /* No branch target alignment. */
210 #define XTENSA_PROP_BT_ALIGN_NONE 0x0
211 /* Low priority branch target alignment. */
212 #define XTENSA_PROP_BT_ALIGN_LOW 0x1
213 /* High priority branch target alignment. */
214 #define XTENSA_PROP_BT_ALIGN_HIGH 0x2
215 /* Required branch target alignment. */
216 #define XTENSA_PROP_BT_ALIGN_REQUIRE 0x3
217
218 #define GET_XTENSA_PROP_BT_ALIGN(flag) \
219 (((unsigned) ((flag) & (XTENSA_PROP_BT_ALIGN_MASK))) >> 9)
220 #define SET_XTENSA_PROP_BT_ALIGN(flag, align) \
221 (((flag) & (~XTENSA_PROP_BT_ALIGN_MASK)) | \
222 (((align) << 9) & XTENSA_PROP_BT_ALIGN_MASK))
223
224
225 /* Alignment is specified in the block BEFORE the one that needs
226 alignment. Up to 5 bits. Use GET_XTENSA_PROP_ALIGNMENT(flags) to
227 get the required alignment specified as a power of 2. Use
228 SET_XTENSA_PROP_ALIGNMENT(flags, pow2) to set the required
229 alignment. Be careful of side effects since the SET will evaluate
230 flags twice. Also, note that the SIZE of a block in the property
231 table does not include the alignment size, so the alignment fill
232 must be calculated to determine if two blocks are contiguous.
233 TEXT_ALIGN is not currently implemented but is a placeholder for a
234 possible future implementation. */
235
236 #define XTENSA_PROP_ALIGN 0x00000800
237
238 #define XTENSA_PROP_ALIGNMENT_MASK 0x0001f000
239
240 #define GET_XTENSA_PROP_ALIGNMENT(flag) \
241 (((unsigned) ((flag) & (XTENSA_PROP_ALIGNMENT_MASK))) >> 12)
242 #define SET_XTENSA_PROP_ALIGNMENT(flag, align) \
243 (((flag) & (~XTENSA_PROP_ALIGNMENT_MASK)) | \
244 (((align) << 12) & XTENSA_PROP_ALIGNMENT_MASK))
245
246 #define XTENSA_PROP_INSN_ABSLIT 0x00020000
247
248
249 /* Structure for saving instruction and alignment per-fragment data
250 that will be written to the object file. This structure is
251 equivalent to the actual data that will be written out to the file
252 but is easier to use. We provide a conversion to file flags
253 in frag_flags_to_number. */
254
255 typedef struct frag_flags_struct frag_flags;
256
257 struct frag_flags_struct
258 {
259 /* is_literal should only be used after xtensa_move_literals.
260 If you need to check if you are generating a literal fragment,
261 then use the generating_literals global. */
262
263 unsigned is_literal : 1;
264 unsigned is_insn : 1;
265 unsigned is_data : 1;
266 unsigned is_unreachable : 1;
267
268 /* is_specific_opcode implies no_transform. */
269 unsigned is_no_transform : 1;
270
271 struct
272 {
273 unsigned is_loop_target : 1;
274 unsigned is_branch_target : 1; /* Branch targets have a priority. */
275 unsigned bt_align_priority : 2;
276
277 unsigned is_no_density : 1;
278 /* no_longcalls flag does not need to be placed in the object file. */
279
280 unsigned is_no_reorder : 1;
281
282 /* Uses absolute literal addressing for l32r. */
283 unsigned is_abslit : 1;
284 } insn;
285 unsigned is_align : 1;
286 unsigned alignment : 5;
287 };
288
289
290 /* Structure for saving information about a block of property data
291 for frags that have the same flags. */
292 struct xtensa_block_info_struct
293 {
294 segT sec;
295 bfd_vma offset;
296 size_t size;
297 frag_flags flags;
298 struct xtensa_block_info_struct *next;
299 };
300
301
302 /* Structure for saving the current state before emitting literals. */
303 typedef struct emit_state_struct
304 {
305 const char *name;
306 segT now_seg;
307 subsegT now_subseg;
308 int generating_literals;
309 } emit_state;
310
311
312 /* Opcode placement information */
313
314 typedef unsigned long long bitfield;
315 #define bit_is_set(bit, bf) ((bf) & (0x01ll << (bit)))
316 #define set_bit(bit, bf) ((bf) |= (0x01ll << (bit)))
317 #define clear_bit(bit, bf) ((bf) &= ~(0x01ll << (bit)))
318
319 #define MAX_FORMATS 32
320
321 typedef struct op_placement_info_struct
322 {
323 int num_formats;
324 /* A number describing how restrictive the issue is for this
325 opcode. For example, an opcode that fits lots of different
326 formats has a high freedom, as does an opcode that fits
327 only one format but many slots in that format. The most
328 restrictive is the opcode that fits only one slot in one
329 format. */
330 int issuef;
331 xtensa_format narrowest;
332 char narrowest_size;
333 char narrowest_slot;
334
335 /* formats is a bitfield with the Nth bit set
336 if the opcode fits in the Nth xtensa_format. */
337 bitfield formats;
338
339 /* slots[N]'s Mth bit is set if the op fits in the
340 Mth slot of the Nth xtensa_format. */
341 bitfield slots[MAX_FORMATS];
342
343 /* A count of the number of slots in a given format
344 an op can fit (i.e., the bitcount of the slot field above). */
345 char slots_in_format[MAX_FORMATS];
346
347 } op_placement_info, *op_placement_info_table;
348
349 op_placement_info_table op_placement_table;
350
351
352 /* Extra expression types. */
353
354 #define O_pltrel O_md1 /* like O_symbol but use a PLT reloc */
355 #define O_hi16 O_md2 /* use high 16 bits of symbolic value */
356 #define O_lo16 O_md3 /* use low 16 bits of symbolic value */
357
358 struct suffix_reloc_map
359 {
360 char *suffix;
361 int length;
362 bfd_reloc_code_real_type reloc;
363 unsigned char operator;
364 };
365
366 #define SUFFIX_MAP(str, reloc, op) { str, sizeof (str) - 1, reloc, op }
367
368 static struct suffix_reloc_map suffix_relocs[] =
369 {
370 SUFFIX_MAP ("l", BFD_RELOC_LO16, O_lo16),
371 SUFFIX_MAP ("h", BFD_RELOC_HI16, O_hi16),
372 SUFFIX_MAP ("plt", BFD_RELOC_XTENSA_PLT, O_pltrel),
373 { (char *) 0, 0, BFD_RELOC_UNUSED, 0 }
374 };
375
376
377 /* Directives. */
378
379 typedef enum
380 {
381 directive_none = 0,
382 directive_literal,
383 directive_density,
384 directive_transform,
385 directive_freeregs,
386 directive_longcalls,
387 directive_literal_prefix,
388 directive_schedule,
389 directive_absolute_literals,
390 directive_last_directive
391 } directiveE;
392
393 typedef struct
394 {
395 const char *name;
396 bfd_boolean can_be_negated;
397 } directive_infoS;
398
399 const directive_infoS directive_info[] =
400 {
401 { "none", FALSE },
402 { "literal", FALSE },
403 { "density", TRUE },
404 { "transform", TRUE },
405 { "freeregs", FALSE },
406 { "longcalls", TRUE },
407 { "literal_prefix", FALSE },
408 { "schedule", TRUE },
409 { "absolute-literals", TRUE }
410 };
411
412 bfd_boolean directive_state[] =
413 {
414 FALSE, /* none */
415 FALSE, /* literal */
416 #if !XCHAL_HAVE_DENSITY
417 FALSE, /* density */
418 #else
419 TRUE, /* density */
420 #endif
421 TRUE, /* transform */
422 FALSE, /* freeregs */
423 FALSE, /* longcalls */
424 FALSE, /* literal_prefix */
425 FALSE, /* schedule */
426 #if XSHAL_USE_ABSOLUTE_LITERALS
427 TRUE /* absolute_literals */
428 #else
429 FALSE /* absolute_literals */
430 #endif
431 };
432
433
434 /* Directive functions. */
435
436 static void xtensa_begin_directive (int);
437 static void xtensa_end_directive (int);
438 static void xtensa_literal_prefix (void);
439 static void xtensa_literal_position (int);
440 static void xtensa_literal_pseudo (int);
441 static void xtensa_frequency_pseudo (int);
442 static void xtensa_elf_cons (int);
443
444 /* Parsing and Idiom Translation. */
445
446 static bfd_reloc_code_real_type xtensa_elf_suffix (char **, expressionS *);
447
448 /* Various Other Internal Functions. */
449
450 extern bfd_boolean xg_is_single_relaxable_insn (TInsn *, TInsn *, bfd_boolean);
451 static bfd_boolean xg_build_to_insn (TInsn *, TInsn *, BuildInstr *);
452 static void xtensa_mark_literal_pool_location (void);
453 static addressT get_expanded_loop_offset (xtensa_opcode);
454 static fragS *get_literal_pool_location (segT);
455 static void set_literal_pool_location (segT, fragS *);
456 static void xtensa_set_frag_assembly_state (fragS *);
457 static void finish_vinsn (vliw_insn *);
458 static bfd_boolean emit_single_op (TInsn *);
459 static int total_frag_text_expansion (fragS *);
460
461 /* Alignment Functions. */
462
463 static int get_text_align_power (unsigned);
464 static int get_text_align_max_fill_size (int, bfd_boolean, bfd_boolean);
465 static int branch_align_power (segT);
466
467 /* Helpers for xtensa_relax_frag(). */
468
469 static long relax_frag_add_nop (fragS *);
470
471 /* Accessors for additional per-subsegment information. */
472
473 static unsigned get_last_insn_flags (segT, subsegT);
474 static void set_last_insn_flags (segT, subsegT, unsigned, bfd_boolean);
475 static float get_subseg_total_freq (segT, subsegT);
476 static float get_subseg_target_freq (segT, subsegT);
477 static void set_subseg_freq (segT, subsegT, float, float);
478
479 /* Segment list functions. */
480
481 static void xtensa_move_literals (void);
482 static void xtensa_reorder_segments (void);
483 static void xtensa_switch_to_literal_fragment (emit_state *);
484 static void xtensa_switch_to_non_abs_literal_fragment (emit_state *);
485 static void xtensa_switch_section_emit_state (emit_state *, segT, subsegT);
486 static void xtensa_restore_emit_state (emit_state *);
487 static segT cache_literal_section (bfd_boolean);
488
489 /* Import from elf32-xtensa.c in BFD library. */
490
491 extern asection *xtensa_get_property_section (asection *, const char *);
492
493 /* op_placement_info functions. */
494
495 static void init_op_placement_info_table (void);
496 extern bfd_boolean opcode_fits_format_slot (xtensa_opcode, xtensa_format, int);
497 static int xg_get_single_size (xtensa_opcode);
498 static xtensa_format xg_get_single_format (xtensa_opcode);
499 static int xg_get_single_slot (xtensa_opcode);
500
501 /* TInsn and IStack functions. */
502
503 static bfd_boolean tinsn_has_symbolic_operands (const TInsn *);
504 static bfd_boolean tinsn_has_invalid_symbolic_operands (const TInsn *);
505 static bfd_boolean tinsn_has_complex_operands (const TInsn *);
506 static bfd_boolean tinsn_to_insnbuf (TInsn *, xtensa_insnbuf);
507 static bfd_boolean tinsn_check_arguments (const TInsn *);
508 static void tinsn_from_chars (TInsn *, char *, int);
509 static void tinsn_immed_from_frag (TInsn *, fragS *, int);
510 static int get_num_stack_text_bytes (IStack *);
511 static int get_num_stack_literal_bytes (IStack *);
512
513 /* vliw_insn functions. */
514
515 static void xg_init_vinsn (vliw_insn *);
516 static void xg_clear_vinsn (vliw_insn *);
517 static bfd_boolean vinsn_has_specific_opcodes (vliw_insn *);
518 static void xg_free_vinsn (vliw_insn *);
519 static bfd_boolean vinsn_to_insnbuf
520 (vliw_insn *, char *, fragS *, bfd_boolean);
521 static void vinsn_from_chars (vliw_insn *, char *);
522
523 /* Expression Utilities. */
524
525 bfd_boolean expr_is_const (const expressionS *);
526 offsetT get_expr_const (const expressionS *);
527 void set_expr_const (expressionS *, offsetT);
528 bfd_boolean expr_is_register (const expressionS *);
529 offsetT get_expr_register (const expressionS *);
530 void set_expr_symbol_offset (expressionS *, symbolS *, offsetT);
531 bfd_boolean expr_is_equal (expressionS *, expressionS *);
532 static void copy_expr (expressionS *, const expressionS *);
533
534 /* Section renaming. */
535
536 static void build_section_rename (const char *);
537
538
539 /* ISA imported from bfd. */
540 extern xtensa_isa xtensa_default_isa;
541
542 extern int target_big_endian;
543
544 static xtensa_opcode xtensa_addi_opcode;
545 static xtensa_opcode xtensa_addmi_opcode;
546 static xtensa_opcode xtensa_call0_opcode;
547 static xtensa_opcode xtensa_call4_opcode;
548 static xtensa_opcode xtensa_call8_opcode;
549 static xtensa_opcode xtensa_call12_opcode;
550 static xtensa_opcode xtensa_callx0_opcode;
551 static xtensa_opcode xtensa_callx4_opcode;
552 static xtensa_opcode xtensa_callx8_opcode;
553 static xtensa_opcode xtensa_callx12_opcode;
554 static xtensa_opcode xtensa_const16_opcode;
555 static xtensa_opcode xtensa_entry_opcode;
556 static xtensa_opcode xtensa_extui_opcode;
557 static xtensa_opcode xtensa_movi_opcode;
558 static xtensa_opcode xtensa_movi_n_opcode;
559 static xtensa_opcode xtensa_isync_opcode;
560 static xtensa_opcode xtensa_jx_opcode;
561 static xtensa_opcode xtensa_l32r_opcode;
562 static xtensa_opcode xtensa_loop_opcode;
563 static xtensa_opcode xtensa_loopnez_opcode;
564 static xtensa_opcode xtensa_loopgtz_opcode;
565 static xtensa_opcode xtensa_nop_opcode;
566 static xtensa_opcode xtensa_nop_n_opcode;
567 static xtensa_opcode xtensa_or_opcode;
568 static xtensa_opcode xtensa_ret_opcode;
569 static xtensa_opcode xtensa_ret_n_opcode;
570 static xtensa_opcode xtensa_retw_opcode;
571 static xtensa_opcode xtensa_retw_n_opcode;
572 static xtensa_opcode xtensa_rsr_lcount_opcode;
573 static xtensa_opcode xtensa_waiti_opcode;
574
575 \f
576 /* Command-line Options. */
577
578 bfd_boolean use_literal_section = TRUE;
579 static bfd_boolean align_targets = TRUE;
580 static bfd_boolean warn_unaligned_branch_targets = FALSE;
581 static bfd_boolean has_a0_b_retw = FALSE;
582 static bfd_boolean workaround_a0_b_retw = FALSE;
583 static bfd_boolean workaround_b_j_loop_end = FALSE;
584 static bfd_boolean workaround_short_loop = FALSE;
585 static bfd_boolean maybe_has_short_loop = FALSE;
586 static bfd_boolean workaround_close_loop_end = FALSE;
587 static bfd_boolean maybe_has_close_loop_end = FALSE;
588 static bfd_boolean enforce_three_byte_loop_align = FALSE;
589
590 /* When workaround_short_loops is TRUE, all loops with early exits must
591 have at least 3 instructions. workaround_all_short_loops is a modifier
592 to the workaround_short_loop flag. In addition to the
593 workaround_short_loop actions, all straightline loopgtz and loopnez
594 must have at least 3 instructions. */
595
596 static bfd_boolean workaround_all_short_loops = FALSE;
597
598
599 static void
600 xtensa_setup_hw_workarounds (int earliest, int latest)
601 {
602 if (earliest > latest)
603 as_fatal (_("illegal range of target hardware versions"));
604
605 /* Enable all workarounds for pre-T1050.0 hardware. */
606 if (earliest < 105000 || latest < 105000)
607 {
608 workaround_a0_b_retw |= TRUE;
609 workaround_b_j_loop_end |= TRUE;
610 workaround_short_loop |= TRUE;
611 workaround_close_loop_end |= TRUE;
612 workaround_all_short_loops |= TRUE;
613 enforce_three_byte_loop_align = TRUE;
614 }
615 }
616
617
618 enum
619 {
620 option_density = OPTION_MD_BASE,
621 option_no_density,
622
623 option_relax,
624 option_no_relax,
625
626 option_link_relax,
627 option_no_link_relax,
628
629 option_generics,
630 option_no_generics,
631
632 option_transform,
633 option_no_transform,
634
635 option_text_section_literals,
636 option_no_text_section_literals,
637
638 option_absolute_literals,
639 option_no_absolute_literals,
640
641 option_align_targets,
642 option_no_align_targets,
643
644 option_warn_unaligned_targets,
645
646 option_longcalls,
647 option_no_longcalls,
648
649 option_workaround_a0_b_retw,
650 option_no_workaround_a0_b_retw,
651
652 option_workaround_b_j_loop_end,
653 option_no_workaround_b_j_loop_end,
654
655 option_workaround_short_loop,
656 option_no_workaround_short_loop,
657
658 option_workaround_all_short_loops,
659 option_no_workaround_all_short_loops,
660
661 option_workaround_close_loop_end,
662 option_no_workaround_close_loop_end,
663
664 option_no_workarounds,
665
666 option_rename_section_name,
667
668 option_prefer_l32r,
669 option_prefer_const16,
670
671 option_target_hardware
672 };
673
674 const char *md_shortopts = "";
675
676 struct option md_longopts[] =
677 {
678 { "density", no_argument, NULL, option_density },
679 { "no-density", no_argument, NULL, option_no_density },
680
681 /* Both "relax" and "generics" are deprecated and treated as equivalent
682 to the "transform" option. */
683 { "relax", no_argument, NULL, option_relax },
684 { "no-relax", no_argument, NULL, option_no_relax },
685 { "generics", no_argument, NULL, option_generics },
686 { "no-generics", no_argument, NULL, option_no_generics },
687
688 { "transform", no_argument, NULL, option_transform },
689 { "no-transform", no_argument, NULL, option_no_transform },
690 { "text-section-literals", no_argument, NULL, option_text_section_literals },
691 { "no-text-section-literals", no_argument, NULL,
692 option_no_text_section_literals },
693 { "absolute-literals", no_argument, NULL, option_absolute_literals },
694 { "no-absolute-literals", no_argument, NULL, option_no_absolute_literals },
695 /* This option was changed from -align-target to -target-align
696 because it conflicted with the "-al" option. */
697 { "target-align", no_argument, NULL, option_align_targets },
698 { "no-target-align", no_argument, NULL, option_no_align_targets },
699 { "warn-unaligned-targets", no_argument, NULL,
700 option_warn_unaligned_targets },
701 { "longcalls", no_argument, NULL, option_longcalls },
702 { "no-longcalls", no_argument, NULL, option_no_longcalls },
703
704 { "no-workaround-a0-b-retw", no_argument, NULL,
705 option_no_workaround_a0_b_retw },
706 { "workaround-a0-b-retw", no_argument, NULL, option_workaround_a0_b_retw },
707
708 { "no-workaround-b-j-loop-end", no_argument, NULL,
709 option_no_workaround_b_j_loop_end },
710 { "workaround-b-j-loop-end", no_argument, NULL,
711 option_workaround_b_j_loop_end },
712
713 { "no-workaround-short-loops", no_argument, NULL,
714 option_no_workaround_short_loop },
715 { "workaround-short-loops", no_argument, NULL,
716 option_workaround_short_loop },
717
718 { "no-workaround-all-short-loops", no_argument, NULL,
719 option_no_workaround_all_short_loops },
720 { "workaround-all-short-loop", no_argument, NULL,
721 option_workaround_all_short_loops },
722
723 { "prefer-l32r", no_argument, NULL, option_prefer_l32r },
724 { "prefer-const16", no_argument, NULL, option_prefer_const16 },
725
726 { "no-workarounds", no_argument, NULL, option_no_workarounds },
727
728 { "no-workaround-close-loop-end", no_argument, NULL,
729 option_no_workaround_close_loop_end },
730 { "workaround-close-loop-end", no_argument, NULL,
731 option_workaround_close_loop_end },
732
733 { "rename-section", required_argument, NULL, option_rename_section_name },
734
735 { "link-relax", no_argument, NULL, option_link_relax },
736 { "no-link-relax", no_argument, NULL, option_no_link_relax },
737
738 { "target-hardware", required_argument, NULL, option_target_hardware },
739
740 { NULL, no_argument, NULL, 0 }
741 };
742
743 size_t md_longopts_size = sizeof md_longopts;
744
745
746 int
747 md_parse_option (int c, char *arg)
748 {
749 switch (c)
750 {
751 case option_density:
752 as_warn (_("--density option is ignored"));
753 return 1;
754 case option_no_density:
755 as_warn (_("--no-density option is ignored"));
756 return 1;
757 case option_link_relax:
758 linkrelax = 1;
759 return 1;
760 case option_no_link_relax:
761 linkrelax = 0;
762 return 1;
763 case option_generics:
764 as_warn (_("--generics is deprecated; use --transform instead"));
765 return md_parse_option (option_transform, arg);
766 case option_no_generics:
767 as_warn (_("--no-generics is deprecated; use --no-transform instead"));
768 return md_parse_option (option_no_transform, arg);
769 case option_relax:
770 as_warn (_("--relax is deprecated; use --transform instead"));
771 return md_parse_option (option_transform, arg);
772 case option_no_relax:
773 as_warn (_("--no-relax is deprecated; use --no-transform instead"));
774 return md_parse_option (option_no_transform, arg);
775 case option_longcalls:
776 directive_state[directive_longcalls] = TRUE;
777 return 1;
778 case option_no_longcalls:
779 directive_state[directive_longcalls] = FALSE;
780 return 1;
781 case option_text_section_literals:
782 use_literal_section = FALSE;
783 return 1;
784 case option_no_text_section_literals:
785 use_literal_section = TRUE;
786 return 1;
787 case option_absolute_literals:
788 if (!absolute_literals_supported)
789 {
790 as_fatal (_("--absolute-literals option not supported in this Xtensa configuration"));
791 return 0;
792 }
793 directive_state[directive_absolute_literals] = TRUE;
794 return 1;
795 case option_no_absolute_literals:
796 directive_state[directive_absolute_literals] = FALSE;
797 return 1;
798
799 case option_workaround_a0_b_retw:
800 workaround_a0_b_retw = TRUE;
801 return 1;
802 case option_no_workaround_a0_b_retw:
803 workaround_a0_b_retw = FALSE;
804 return 1;
805 case option_workaround_b_j_loop_end:
806 workaround_b_j_loop_end = TRUE;
807 return 1;
808 case option_no_workaround_b_j_loop_end:
809 workaround_b_j_loop_end = FALSE;
810 return 1;
811
812 case option_workaround_short_loop:
813 workaround_short_loop = TRUE;
814 return 1;
815 case option_no_workaround_short_loop:
816 workaround_short_loop = FALSE;
817 return 1;
818
819 case option_workaround_all_short_loops:
820 workaround_all_short_loops = TRUE;
821 return 1;
822 case option_no_workaround_all_short_loops:
823 workaround_all_short_loops = FALSE;
824 return 1;
825
826 case option_workaround_close_loop_end:
827 workaround_close_loop_end = TRUE;
828 return 1;
829 case option_no_workaround_close_loop_end:
830 workaround_close_loop_end = FALSE;
831 return 1;
832
833 case option_no_workarounds:
834 workaround_a0_b_retw = FALSE;
835 workaround_b_j_loop_end = FALSE;
836 workaround_short_loop = FALSE;
837 workaround_all_short_loops = FALSE;
838 workaround_close_loop_end = FALSE;
839 return 1;
840
841 case option_align_targets:
842 align_targets = TRUE;
843 return 1;
844 case option_no_align_targets:
845 align_targets = FALSE;
846 return 1;
847
848 case option_warn_unaligned_targets:
849 warn_unaligned_branch_targets = TRUE;
850 return 1;
851
852 case option_rename_section_name:
853 build_section_rename (arg);
854 return 1;
855
856 case 'Q':
857 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
858 should be emitted or not. FIXME: Not implemented. */
859 return 1;
860
861 case option_prefer_l32r:
862 if (prefer_const16)
863 as_fatal (_("prefer-l32r conflicts with prefer-const16"));
864 prefer_l32r = 1;
865 return 1;
866
867 case option_prefer_const16:
868 if (prefer_l32r)
869 as_fatal (_("prefer-const16 conflicts with prefer-l32r"));
870 prefer_const16 = 1;
871 return 1;
872
873 case option_target_hardware:
874 {
875 int earliest, latest = 0;
876 if (*arg == 0 || *arg == '-')
877 as_fatal (_("invalid target hardware version"));
878
879 earliest = strtol (arg, &arg, 0);
880
881 if (*arg == 0)
882 latest = earliest;
883 else if (*arg == '-')
884 {
885 if (*++arg == 0)
886 as_fatal (_("invalid target hardware version"));
887 latest = strtol (arg, &arg, 0);
888 }
889 if (*arg != 0)
890 as_fatal (_("invalid target hardware version"));
891
892 xtensa_setup_hw_workarounds (earliest, latest);
893 return 1;
894 }
895
896 case option_transform:
897 /* This option has no affect other than to use the defaults,
898 which are already set. */
899 return 1;
900
901 case option_no_transform:
902 /* This option turns off all transformations of any kind.
903 However, because we want to preserve the state of other
904 directives, we only change its own field. Thus, before
905 you perform any transformation, always check if transform
906 is available. If you use the functions we provide for this
907 purpose, you will be ok. */
908 directive_state[directive_transform] = FALSE;
909 return 1;
910
911 default:
912 return 0;
913 }
914 }
915
916
917 void
918 md_show_usage (FILE *stream)
919 {
920 fputs ("\n\
921 Xtensa options:\n\
922 --[no-]text-section-literals\n\
923 [Do not] put literals in the text section\n\
924 --[no-]absolute-literals\n\
925 [Do not] default to use non-PC-relative literals\n\
926 --[no-]target-align [Do not] try to align branch targets\n\
927 --[no-]longcalls [Do not] emit 32-bit call sequences\n\
928 --[no-]transform [Do not] transform instructions\n\
929 --rename-section old=new Rename section 'old' to 'new'\n", stream);
930 }
931
932 \f
933 /* Functions related to the list of current label symbols. */
934
935 static void
936 xtensa_add_insn_label (symbolS *sym)
937 {
938 sym_list *l;
939
940 if (!free_insn_labels)
941 l = (sym_list *) xmalloc (sizeof (sym_list));
942 else
943 {
944 l = free_insn_labels;
945 free_insn_labels = l->next;
946 }
947
948 l->sym = sym;
949 l->next = insn_labels;
950 insn_labels = l;
951 }
952
953
954 static void
955 xtensa_clear_insn_labels (void)
956 {
957 sym_list **pl;
958
959 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
960 ;
961 *pl = insn_labels;
962 insn_labels = NULL;
963 }
964
965
966 static void
967 xtensa_move_labels (fragS *new_frag, valueT new_offset)
968 {
969 sym_list *lit;
970
971 for (lit = insn_labels; lit; lit = lit->next)
972 {
973 symbolS *lit_sym = lit->sym;
974 S_SET_VALUE (lit_sym, new_offset);
975 symbol_set_frag (lit_sym, new_frag);
976 }
977 }
978
979 \f
980 /* Directive data and functions. */
981
982 typedef struct state_stackS_struct
983 {
984 directiveE directive;
985 bfd_boolean negated;
986 bfd_boolean old_state;
987 const char *file;
988 unsigned int line;
989 const void *datum;
990 struct state_stackS_struct *prev;
991 } state_stackS;
992
993 state_stackS *directive_state_stack;
994
995 const pseudo_typeS md_pseudo_table[] =
996 {
997 { "align", s_align_bytes, 0 }, /* Defaulting is invalid (0). */
998 { "literal_position", xtensa_literal_position, 0 },
999 { "frame", s_ignore, 0 }, /* Formerly used for STABS debugging. */
1000 { "long", xtensa_elf_cons, 4 },
1001 { "word", xtensa_elf_cons, 4 },
1002 { "short", xtensa_elf_cons, 2 },
1003 { "begin", xtensa_begin_directive, 0 },
1004 { "end", xtensa_end_directive, 0 },
1005 { "literal", xtensa_literal_pseudo, 0 },
1006 { "frequency", xtensa_frequency_pseudo, 0 },
1007 { NULL, 0, 0 },
1008 };
1009
1010
1011 static bfd_boolean
1012 use_transform (void)
1013 {
1014 /* After md_end, you should be checking frag by frag, rather
1015 than state directives. */
1016 assert (!past_xtensa_end);
1017 return directive_state[directive_transform];
1018 }
1019
1020
1021 static bfd_boolean
1022 do_align_targets (void)
1023 {
1024 /* Do not use this function after md_end; just look at align_targets
1025 instead. There is no target-align directive, so alignment is either
1026 enabled for all frags or not done at all. */
1027 assert (!past_xtensa_end);
1028 return align_targets && use_transform ();
1029 }
1030
1031
1032 static void
1033 directive_push (directiveE directive, bfd_boolean negated, const void *datum)
1034 {
1035 char *file;
1036 unsigned int line;
1037 state_stackS *stack = (state_stackS *) xmalloc (sizeof (state_stackS));
1038
1039 as_where (&file, &line);
1040
1041 stack->directive = directive;
1042 stack->negated = negated;
1043 stack->old_state = directive_state[directive];
1044 stack->file = file;
1045 stack->line = line;
1046 stack->datum = datum;
1047 stack->prev = directive_state_stack;
1048 directive_state_stack = stack;
1049
1050 directive_state[directive] = !negated;
1051 }
1052
1053
1054 static void
1055 directive_pop (directiveE *directive,
1056 bfd_boolean *negated,
1057 const char **file,
1058 unsigned int *line,
1059 const void **datum)
1060 {
1061 state_stackS *top = directive_state_stack;
1062
1063 if (!directive_state_stack)
1064 {
1065 as_bad (_("unmatched end directive"));
1066 *directive = directive_none;
1067 return;
1068 }
1069
1070 directive_state[directive_state_stack->directive] = top->old_state;
1071 *directive = top->directive;
1072 *negated = top->negated;
1073 *file = top->file;
1074 *line = top->line;
1075 *datum = top->datum;
1076 directive_state_stack = top->prev;
1077 free (top);
1078 }
1079
1080
1081 static void
1082 directive_balance (void)
1083 {
1084 while (directive_state_stack)
1085 {
1086 directiveE directive;
1087 bfd_boolean negated;
1088 const char *file;
1089 unsigned int line;
1090 const void *datum;
1091
1092 directive_pop (&directive, &negated, &file, &line, &datum);
1093 as_warn_where ((char *) file, line,
1094 _(".begin directive with no matching .end directive"));
1095 }
1096 }
1097
1098
1099 static bfd_boolean
1100 inside_directive (directiveE dir)
1101 {
1102 state_stackS *top = directive_state_stack;
1103
1104 while (top && top->directive != dir)
1105 top = top->prev;
1106
1107 return (top != NULL);
1108 }
1109
1110
1111 static void
1112 get_directive (directiveE *directive, bfd_boolean *negated)
1113 {
1114 int len;
1115 unsigned i;
1116 char *directive_string;
1117
1118 if (strncmp (input_line_pointer, "no-", 3) != 0)
1119 *negated = FALSE;
1120 else
1121 {
1122 *negated = TRUE;
1123 input_line_pointer += 3;
1124 }
1125
1126 len = strspn (input_line_pointer,
1127 "abcdefghijklmnopqrstuvwxyz_-/0123456789.");
1128
1129 /* This code is a hack to make .begin [no-][generics|relax] exactly
1130 equivalent to .begin [no-]transform. We should remove it when
1131 we stop accepting those options. */
1132
1133 if (strncmp (input_line_pointer, "generics", strlen ("generics")) == 0)
1134 {
1135 as_warn (_("[no-]generics is deprecated; use [no-]transform instead"));
1136 directive_string = "transform";
1137 }
1138 else if (strncmp (input_line_pointer, "relax", strlen ("relax")) == 0)
1139 {
1140 as_warn (_("[no-]relax is deprecated; use [no-]transform instead"));
1141 directive_string = "transform";
1142 }
1143 else
1144 directive_string = input_line_pointer;
1145
1146 for (i = 0; i < sizeof (directive_info) / sizeof (*directive_info); ++i)
1147 {
1148 if (strncmp (directive_string, directive_info[i].name, len) == 0)
1149 {
1150 input_line_pointer += len;
1151 *directive = (directiveE) i;
1152 if (*negated && !directive_info[i].can_be_negated)
1153 as_bad (_("directive %s cannot be negated"),
1154 directive_info[i].name);
1155 return;
1156 }
1157 }
1158
1159 as_bad (_("unknown directive"));
1160 *directive = (directiveE) XTENSA_UNDEFINED;
1161 }
1162
1163
1164 static void
1165 xtensa_begin_directive (int ignore ATTRIBUTE_UNUSED)
1166 {
1167 directiveE directive;
1168 bfd_boolean negated;
1169 emit_state *state;
1170 lit_state *ls;
1171
1172 get_directive (&directive, &negated);
1173 if (directive == (directiveE) XTENSA_UNDEFINED)
1174 {
1175 discard_rest_of_line ();
1176 return;
1177 }
1178
1179 if (cur_vinsn.inside_bundle)
1180 as_bad (_("directives are not valid inside bundles"));
1181
1182 switch (directive)
1183 {
1184 case directive_literal:
1185 if (!inside_directive (directive_literal))
1186 {
1187 /* Previous labels go with whatever follows this directive, not with
1188 the literal, so save them now. */
1189 saved_insn_labels = insn_labels;
1190 insn_labels = NULL;
1191 }
1192 as_warn (_(".begin literal is deprecated; use .literal instead"));
1193 state = (emit_state *) xmalloc (sizeof (emit_state));
1194 xtensa_switch_to_literal_fragment (state);
1195 directive_push (directive_literal, negated, state);
1196 break;
1197
1198 case directive_literal_prefix:
1199 /* Have to flush pending output because a movi relaxed to an l32r
1200 might produce a literal. */
1201 md_flush_pending_output ();
1202 /* Check to see if the current fragment is a literal
1203 fragment. If it is, then this operation is not allowed. */
1204 if (generating_literals)
1205 {
1206 as_bad (_("cannot set literal_prefix inside literal fragment"));
1207 return;
1208 }
1209
1210 /* Allocate the literal state for this section and push
1211 onto the directive stack. */
1212 ls = xmalloc (sizeof (lit_state));
1213 assert (ls);
1214
1215 *ls = default_lit_sections;
1216 directive_push (directive_literal_prefix, negated, ls);
1217
1218 /* Process the new prefix. */
1219 xtensa_literal_prefix ();
1220 break;
1221
1222 case directive_freeregs:
1223 /* This information is currently unused, but we'll accept the statement
1224 and just discard the rest of the line. This won't check the syntax,
1225 but it will accept every correct freeregs directive. */
1226 input_line_pointer += strcspn (input_line_pointer, "\n");
1227 directive_push (directive_freeregs, negated, 0);
1228 break;
1229
1230 case directive_schedule:
1231 md_flush_pending_output ();
1232 frag_var (rs_fill, 0, 0, frag_now->fr_subtype,
1233 frag_now->fr_symbol, frag_now->fr_offset, NULL);
1234 directive_push (directive_schedule, negated, 0);
1235 xtensa_set_frag_assembly_state (frag_now);
1236 break;
1237
1238 case directive_density:
1239 as_warn (_(".begin [no-]density is ignored"));
1240 break;
1241
1242 case directive_absolute_literals:
1243 md_flush_pending_output ();
1244 if (!absolute_literals_supported && !negated)
1245 {
1246 as_warn (_("Xtensa absolute literals option not supported; ignored"));
1247 break;
1248 }
1249 xtensa_set_frag_assembly_state (frag_now);
1250 directive_push (directive, negated, 0);
1251 break;
1252
1253 default:
1254 md_flush_pending_output ();
1255 xtensa_set_frag_assembly_state (frag_now);
1256 directive_push (directive, negated, 0);
1257 break;
1258 }
1259
1260 demand_empty_rest_of_line ();
1261 }
1262
1263
1264 static void
1265 xtensa_end_directive (int ignore ATTRIBUTE_UNUSED)
1266 {
1267 directiveE begin_directive, end_directive;
1268 bfd_boolean begin_negated, end_negated;
1269 const char *file;
1270 unsigned int line;
1271 emit_state *state;
1272 emit_state **state_ptr;
1273 lit_state *s;
1274
1275 if (cur_vinsn.inside_bundle)
1276 as_bad (_("directives are not valid inside bundles"));
1277
1278 get_directive (&end_directive, &end_negated);
1279
1280 md_flush_pending_output ();
1281
1282 switch (end_directive)
1283 {
1284 case (directiveE) XTENSA_UNDEFINED:
1285 discard_rest_of_line ();
1286 return;
1287
1288 case directive_density:
1289 as_warn (_(".end [no-]density is ignored"));
1290 demand_empty_rest_of_line ();
1291 break;
1292
1293 case directive_absolute_literals:
1294 if (!absolute_literals_supported && !end_negated)
1295 {
1296 as_warn (_("Xtensa absolute literals option not supported; ignored"));
1297 demand_empty_rest_of_line ();
1298 return;
1299 }
1300 break;
1301
1302 default:
1303 break;
1304 }
1305
1306 state_ptr = &state; /* use state_ptr to avoid type-punning warning */
1307 directive_pop (&begin_directive, &begin_negated, &file, &line,
1308 (const void **) state_ptr);
1309
1310 if (begin_directive != directive_none)
1311 {
1312 if (begin_directive != end_directive || begin_negated != end_negated)
1313 {
1314 as_bad (_("does not match begin %s%s at %s:%d"),
1315 begin_negated ? "no-" : "",
1316 directive_info[begin_directive].name, file, line);
1317 }
1318 else
1319 {
1320 switch (end_directive)
1321 {
1322 case directive_literal:
1323 frag_var (rs_fill, 0, 0, 0, NULL, 0, NULL);
1324 xtensa_restore_emit_state (state);
1325 xtensa_set_frag_assembly_state (frag_now);
1326 free (state);
1327 if (!inside_directive (directive_literal))
1328 {
1329 /* Restore the list of current labels. */
1330 xtensa_clear_insn_labels ();
1331 insn_labels = saved_insn_labels;
1332 }
1333 break;
1334
1335 case directive_literal_prefix:
1336 /* Restore the default collection sections from saved state. */
1337 s = (lit_state *) state;
1338 assert (s);
1339 default_lit_sections = *s;
1340
1341 /* Free the state storage. */
1342 free (s->lit_prefix);
1343 free (s);
1344 break;
1345
1346 case directive_schedule:
1347 case directive_freeregs:
1348 break;
1349
1350 default:
1351 xtensa_set_frag_assembly_state (frag_now);
1352 break;
1353 }
1354 }
1355 }
1356
1357 demand_empty_rest_of_line ();
1358 }
1359
1360
1361 /* Place an aligned literal fragment at the current location. */
1362
1363 static void
1364 xtensa_literal_position (int ignore ATTRIBUTE_UNUSED)
1365 {
1366 md_flush_pending_output ();
1367
1368 if (inside_directive (directive_literal))
1369 as_warn (_(".literal_position inside literal directive; ignoring"));
1370 xtensa_mark_literal_pool_location ();
1371
1372 demand_empty_rest_of_line ();
1373 xtensa_clear_insn_labels ();
1374 }
1375
1376
1377 /* Support .literal label, expr, ... */
1378
1379 static void
1380 xtensa_literal_pseudo (int ignored ATTRIBUTE_UNUSED)
1381 {
1382 emit_state state;
1383 char *p, *base_name;
1384 char c;
1385 segT dest_seg;
1386
1387 if (inside_directive (directive_literal))
1388 {
1389 as_bad (_(".literal not allowed inside .begin literal region"));
1390 ignore_rest_of_line ();
1391 return;
1392 }
1393
1394 md_flush_pending_output ();
1395
1396 /* Previous labels go with whatever follows this directive, not with
1397 the literal, so save them now. */
1398 saved_insn_labels = insn_labels;
1399 insn_labels = NULL;
1400
1401 /* If we are using text-section literals, then this is the right value... */
1402 dest_seg = now_seg;
1403
1404 base_name = input_line_pointer;
1405
1406 xtensa_switch_to_literal_fragment (&state);
1407
1408 /* ...but if we aren't using text-section-literals, then we
1409 need to put them in the section we just switched to. */
1410 if (use_literal_section || directive_state[directive_absolute_literals])
1411 dest_seg = now_seg;
1412
1413 /* All literals are aligned to four-byte boundaries. */
1414 frag_align (2, 0, 0);
1415 record_alignment (now_seg, 2);
1416
1417 c = get_symbol_end ();
1418 /* Just after name is now '\0'. */
1419 p = input_line_pointer;
1420 *p = c;
1421 SKIP_WHITESPACE ();
1422
1423 if (*input_line_pointer != ',' && *input_line_pointer != ':')
1424 {
1425 as_bad (_("expected comma or colon after symbol name; "
1426 "rest of line ignored"));
1427 ignore_rest_of_line ();
1428 xtensa_restore_emit_state (&state);
1429 return;
1430 }
1431 *p = 0;
1432
1433 colon (base_name);
1434
1435 *p = c;
1436 input_line_pointer++; /* skip ',' or ':' */
1437
1438 xtensa_elf_cons (4);
1439
1440 xtensa_restore_emit_state (&state);
1441
1442 /* Restore the list of current labels. */
1443 xtensa_clear_insn_labels ();
1444 insn_labels = saved_insn_labels;
1445 }
1446
1447
1448 static void
1449 xtensa_literal_prefix (void)
1450 {
1451 char *name;
1452 int len;
1453
1454 /* Parse the new prefix from the input_line_pointer. */
1455 SKIP_WHITESPACE ();
1456 len = strspn (input_line_pointer,
1457 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1458 "abcdefghijklmnopqrstuvwxyz_/0123456789.$");
1459
1460 /* Get a null-terminated copy of the name. */
1461 name = xmalloc (len + 1);
1462 assert (name);
1463 strncpy (name, input_line_pointer, len);
1464 name[len] = 0;
1465
1466 /* Skip the name in the input line. */
1467 input_line_pointer += len;
1468
1469 default_lit_sections.lit_prefix = name;
1470
1471 /* Clear cached literal sections, since the prefix has changed. */
1472 default_lit_sections.lit_seg = NULL;
1473 default_lit_sections.lit4_seg = NULL;
1474 }
1475
1476
1477 /* Support ".frequency branch_target_frequency fall_through_frequency". */
1478
1479 static void
1480 xtensa_frequency_pseudo (int ignored ATTRIBUTE_UNUSED)
1481 {
1482 float fall_through_f, target_f;
1483
1484 fall_through_f = (float) strtod (input_line_pointer, &input_line_pointer);
1485 if (fall_through_f < 0)
1486 {
1487 as_bad (_("fall through frequency must be greater than 0"));
1488 ignore_rest_of_line ();
1489 return;
1490 }
1491
1492 target_f = (float) strtod (input_line_pointer, &input_line_pointer);
1493 if (target_f < 0)
1494 {
1495 as_bad (_("branch target frequency must be greater than 0"));
1496 ignore_rest_of_line ();
1497 return;
1498 }
1499
1500 set_subseg_freq (now_seg, now_subseg, target_f + fall_through_f, target_f);
1501
1502 demand_empty_rest_of_line ();
1503 }
1504
1505
1506 /* Like normal .long/.short/.word, except support @plt, etc.
1507 Clobbers input_line_pointer, checks end-of-line. */
1508
1509 static void
1510 xtensa_elf_cons (int nbytes)
1511 {
1512 expressionS exp;
1513 bfd_reloc_code_real_type reloc;
1514
1515 md_flush_pending_output ();
1516
1517 if (cur_vinsn.inside_bundle)
1518 as_bad (_("directives are not valid inside bundles"));
1519
1520 if (is_it_end_of_statement ())
1521 {
1522 demand_empty_rest_of_line ();
1523 return;
1524 }
1525
1526 do
1527 {
1528 expression (&exp);
1529 if (exp.X_op == O_symbol
1530 && *input_line_pointer == '@'
1531 && ((reloc = xtensa_elf_suffix (&input_line_pointer, &exp))
1532 != BFD_RELOC_NONE))
1533 {
1534 reloc_howto_type *reloc_howto =
1535 bfd_reloc_type_lookup (stdoutput, reloc);
1536
1537 if (reloc == BFD_RELOC_UNUSED || !reloc_howto)
1538 as_bad (_("unsupported relocation"));
1539 else if ((reloc >= BFD_RELOC_XTENSA_SLOT0_OP
1540 && reloc <= BFD_RELOC_XTENSA_SLOT14_OP)
1541 || (reloc >= BFD_RELOC_XTENSA_SLOT0_ALT
1542 && reloc <= BFD_RELOC_XTENSA_SLOT14_ALT))
1543 as_bad (_("opcode-specific %s relocation used outside "
1544 "an instruction"), reloc_howto->name);
1545 else if (nbytes != (int) bfd_get_reloc_size (reloc_howto))
1546 as_bad (_("%s relocations do not fit in %d bytes"),
1547 reloc_howto->name, nbytes);
1548 else
1549 {
1550 char *p = frag_more ((int) nbytes);
1551 xtensa_set_frag_assembly_state (frag_now);
1552 fix_new_exp (frag_now, p - frag_now->fr_literal,
1553 nbytes, &exp, 0, reloc);
1554 }
1555 }
1556 else
1557 emit_expr (&exp, (unsigned int) nbytes);
1558 }
1559 while (*input_line_pointer++ == ',');
1560
1561 input_line_pointer--; /* Put terminator back into stream. */
1562 demand_empty_rest_of_line ();
1563 }
1564
1565 \f
1566 /* Parsing and Idiom Translation. */
1567
1568 /* Parse @plt, etc. and return the desired relocation. */
1569 static bfd_reloc_code_real_type
1570 xtensa_elf_suffix (char **str_p, expressionS *exp_p)
1571 {
1572 char ident[20];
1573 char *str = *str_p;
1574 char *str2;
1575 int ch;
1576 int len;
1577 struct suffix_reloc_map *ptr;
1578
1579 if (*str++ != '@')
1580 return BFD_RELOC_NONE;
1581
1582 for (ch = *str, str2 = ident;
1583 (str2 < ident + sizeof (ident) - 1
1584 && (ISALNUM (ch) || ch == '@'));
1585 ch = *++str)
1586 {
1587 *str2++ = (ISLOWER (ch)) ? ch : TOLOWER (ch);
1588 }
1589
1590 *str2 = '\0';
1591 len = str2 - ident;
1592
1593 ch = ident[0];
1594 for (ptr = &suffix_relocs[0]; ptr->length > 0; ptr++)
1595 if (ch == ptr->suffix[0]
1596 && len == ptr->length
1597 && memcmp (ident, ptr->suffix, ptr->length) == 0)
1598 {
1599 /* Now check for "identifier@suffix+constant". */
1600 if (*str == '-' || *str == '+')
1601 {
1602 char *orig_line = input_line_pointer;
1603 expressionS new_exp;
1604
1605 input_line_pointer = str;
1606 expression (&new_exp);
1607 if (new_exp.X_op == O_constant)
1608 {
1609 exp_p->X_add_number += new_exp.X_add_number;
1610 str = input_line_pointer;
1611 }
1612
1613 if (&input_line_pointer != str_p)
1614 input_line_pointer = orig_line;
1615 }
1616
1617 *str_p = str;
1618 return ptr->reloc;
1619 }
1620
1621 return BFD_RELOC_UNUSED;
1622 }
1623
1624
1625 /* Find the matching operator type. */
1626 static unsigned char
1627 map_suffix_reloc_to_operator (bfd_reloc_code_real_type reloc)
1628 {
1629 struct suffix_reloc_map *sfx;
1630 unsigned char operator = (unsigned char) -1;
1631
1632 for (sfx = &suffix_relocs[0]; sfx->suffix; sfx++)
1633 {
1634 if (sfx->reloc == reloc)
1635 {
1636 operator = sfx->operator;
1637 break;
1638 }
1639 }
1640 assert (operator != (unsigned char) -1);
1641 return operator;
1642 }
1643
1644
1645 /* Find the matching reloc type. */
1646 static bfd_reloc_code_real_type
1647 map_operator_to_reloc (unsigned char operator)
1648 {
1649 struct suffix_reloc_map *sfx;
1650 bfd_reloc_code_real_type reloc = BFD_RELOC_UNUSED;
1651
1652 for (sfx = &suffix_relocs[0]; sfx->suffix; sfx++)
1653 {
1654 if (sfx->operator == operator)
1655 {
1656 reloc = sfx->reloc;
1657 break;
1658 }
1659 }
1660
1661 if (reloc == BFD_RELOC_UNUSED)
1662 return BFD_RELOC_32;
1663
1664 return reloc;
1665 }
1666
1667
1668 static const char *
1669 expression_end (const char *name)
1670 {
1671 while (1)
1672 {
1673 switch (*name)
1674 {
1675 case '}':
1676 case ';':
1677 case '\0':
1678 case ',':
1679 case ':':
1680 return name;
1681 case ' ':
1682 case '\t':
1683 ++name;
1684 continue;
1685 default:
1686 return 0;
1687 }
1688 }
1689 }
1690
1691
1692 #define ERROR_REG_NUM ((unsigned) -1)
1693
1694 static unsigned
1695 tc_get_register (const char *prefix)
1696 {
1697 unsigned reg;
1698 const char *next_expr;
1699 const char *old_line_pointer;
1700
1701 SKIP_WHITESPACE ();
1702 old_line_pointer = input_line_pointer;
1703
1704 if (*input_line_pointer == '$')
1705 ++input_line_pointer;
1706
1707 /* Accept "sp" as a synonym for "a1". */
1708 if (input_line_pointer[0] == 's' && input_line_pointer[1] == 'p'
1709 && expression_end (input_line_pointer + 2))
1710 {
1711 input_line_pointer += 2;
1712 return 1; /* AR[1] */
1713 }
1714
1715 while (*input_line_pointer++ == *prefix++)
1716 ;
1717 --input_line_pointer;
1718 --prefix;
1719
1720 if (*prefix)
1721 {
1722 as_bad (_("bad register name: %s"), old_line_pointer);
1723 return ERROR_REG_NUM;
1724 }
1725
1726 if (!ISDIGIT ((unsigned char) *input_line_pointer))
1727 {
1728 as_bad (_("bad register number: %s"), input_line_pointer);
1729 return ERROR_REG_NUM;
1730 }
1731
1732 reg = 0;
1733
1734 while (ISDIGIT ((int) *input_line_pointer))
1735 reg = reg * 10 + *input_line_pointer++ - '0';
1736
1737 if (!(next_expr = expression_end (input_line_pointer)))
1738 {
1739 as_bad (_("bad register name: %s"), old_line_pointer);
1740 return ERROR_REG_NUM;
1741 }
1742
1743 input_line_pointer = (char *) next_expr;
1744
1745 return reg;
1746 }
1747
1748
1749 static void
1750 expression_maybe_register (xtensa_opcode opc, int opnd, expressionS *tok)
1751 {
1752 xtensa_isa isa = xtensa_default_isa;
1753
1754 /* Check if this is an immediate operand. */
1755 if (xtensa_operand_is_register (isa, opc, opnd) == 0)
1756 {
1757 bfd_reloc_code_real_type reloc;
1758 segT t = expression (tok);
1759 if (t == absolute_section
1760 && xtensa_operand_is_PCrelative (isa, opc, opnd) == 1)
1761 {
1762 assert (tok->X_op == O_constant);
1763 tok->X_op = O_symbol;
1764 tok->X_add_symbol = &abs_symbol;
1765 }
1766
1767 if ((tok->X_op == O_constant || tok->X_op == O_symbol)
1768 && ((reloc = xtensa_elf_suffix (&input_line_pointer, tok))
1769 != BFD_RELOC_NONE))
1770 {
1771 if (reloc == BFD_RELOC_UNUSED)
1772 {
1773 as_bad (_("unsupported relocation"));
1774 return;
1775 }
1776
1777 if (tok->X_op == O_constant)
1778 {
1779 switch (reloc)
1780 {
1781 case BFD_RELOC_LO16:
1782 tok->X_add_number &= 0xffff;
1783 return;
1784
1785 case BFD_RELOC_HI16:
1786 tok->X_add_number = ((unsigned) tok->X_add_number) >> 16;
1787 return;
1788
1789 default:
1790 break;
1791 }
1792 }
1793 tok->X_op = map_suffix_reloc_to_operator (reloc);
1794 }
1795 }
1796 else
1797 {
1798 xtensa_regfile opnd_rf = xtensa_operand_regfile (isa, opc, opnd);
1799 unsigned reg = tc_get_register (xtensa_regfile_shortname (isa, opnd_rf));
1800
1801 if (reg != ERROR_REG_NUM) /* Already errored */
1802 {
1803 uint32 buf = reg;
1804 if (xtensa_operand_encode (isa, opc, opnd, &buf))
1805 as_bad (_("register number out of range"));
1806 }
1807
1808 tok->X_op = O_register;
1809 tok->X_add_symbol = 0;
1810 tok->X_add_number = reg;
1811 }
1812 }
1813
1814
1815 /* Split up the arguments for an opcode or pseudo-op. */
1816
1817 static int
1818 tokenize_arguments (char **args, char *str)
1819 {
1820 char *old_input_line_pointer;
1821 bfd_boolean saw_comma = FALSE;
1822 bfd_boolean saw_arg = FALSE;
1823 bfd_boolean saw_colon = FALSE;
1824 int num_args = 0;
1825 char *arg_end, *arg;
1826 int arg_len;
1827
1828 /* Save and restore input_line_pointer around this function. */
1829 old_input_line_pointer = input_line_pointer;
1830 input_line_pointer = str;
1831
1832 while (*input_line_pointer)
1833 {
1834 SKIP_WHITESPACE ();
1835 switch (*input_line_pointer)
1836 {
1837 case '\0':
1838 case '}':
1839 goto fini;
1840
1841 case ':':
1842 input_line_pointer++;
1843 if (saw_comma || saw_colon || !saw_arg)
1844 goto err;
1845 saw_colon = TRUE;
1846 break;
1847
1848 case ',':
1849 input_line_pointer++;
1850 if (saw_comma || saw_colon || !saw_arg)
1851 goto err;
1852 saw_comma = TRUE;
1853 break;
1854
1855 default:
1856 if (!saw_comma && !saw_colon && saw_arg)
1857 goto err;
1858
1859 arg_end = input_line_pointer + 1;
1860 while (!expression_end (arg_end))
1861 arg_end += 1;
1862
1863 arg_len = arg_end - input_line_pointer;
1864 arg = (char *) xmalloc ((saw_colon ? 1 : 0) + arg_len + 1);
1865 args[num_args] = arg;
1866
1867 if (saw_colon)
1868 *arg++ = ':';
1869 strncpy (arg, input_line_pointer, arg_len);
1870 arg[arg_len] = '\0';
1871
1872 input_line_pointer = arg_end;
1873 num_args += 1;
1874 saw_comma = FALSE;
1875 saw_colon = FALSE;
1876 saw_arg = TRUE;
1877 break;
1878 }
1879 }
1880
1881 fini:
1882 if (saw_comma || saw_colon)
1883 goto err;
1884 input_line_pointer = old_input_line_pointer;
1885 return num_args;
1886
1887 err:
1888 if (saw_comma)
1889 as_bad (_("extra comma"));
1890 else if (saw_colon)
1891 as_bad (_("extra colon"));
1892 else if (!saw_arg)
1893 as_bad (_("missing argument"));
1894 else
1895 as_bad (_("missing comma or colon"));
1896 input_line_pointer = old_input_line_pointer;
1897 return -1;
1898 }
1899
1900
1901 /* Parse the arguments to an opcode. Return TRUE on error. */
1902
1903 static bfd_boolean
1904 parse_arguments (TInsn *insn, int num_args, char **arg_strings)
1905 {
1906 expressionS *tok, *last_tok;
1907 xtensa_opcode opcode = insn->opcode;
1908 bfd_boolean had_error = TRUE;
1909 xtensa_isa isa = xtensa_default_isa;
1910 int n, num_regs = 0;
1911 int opcode_operand_count;
1912 int opnd_cnt, last_opnd_cnt;
1913 unsigned int next_reg = 0;
1914 char *old_input_line_pointer;
1915
1916 if (insn->insn_type == ITYPE_LITERAL)
1917 opcode_operand_count = 1;
1918 else
1919 opcode_operand_count = xtensa_opcode_num_operands (isa, opcode);
1920
1921 tok = insn->tok;
1922 memset (tok, 0, sizeof (*tok) * MAX_INSN_ARGS);
1923
1924 /* Save and restore input_line_pointer around this function. */
1925 old_input_line_pointer = input_line_pointer;
1926
1927 last_tok = 0;
1928 last_opnd_cnt = -1;
1929 opnd_cnt = 0;
1930
1931 /* Skip invisible operands. */
1932 while (xtensa_operand_is_visible (isa, opcode, opnd_cnt) == 0)
1933 {
1934 opnd_cnt += 1;
1935 tok++;
1936 }
1937
1938 for (n = 0; n < num_args; n++)
1939 {
1940 input_line_pointer = arg_strings[n];
1941 if (*input_line_pointer == ':')
1942 {
1943 xtensa_regfile opnd_rf;
1944 input_line_pointer++;
1945 if (num_regs == 0)
1946 goto err;
1947 assert (opnd_cnt > 0);
1948 num_regs--;
1949 opnd_rf = xtensa_operand_regfile (isa, opcode, last_opnd_cnt);
1950 if (next_reg
1951 != tc_get_register (xtensa_regfile_shortname (isa, opnd_rf)))
1952 as_warn (_("incorrect register number, ignoring"));
1953 next_reg++;
1954 }
1955 else
1956 {
1957 if (opnd_cnt >= opcode_operand_count)
1958 {
1959 as_warn (_("too many arguments"));
1960 goto err;
1961 }
1962 assert (opnd_cnt < MAX_INSN_ARGS);
1963
1964 expression_maybe_register (opcode, opnd_cnt, tok);
1965 next_reg = tok->X_add_number + 1;
1966
1967 if (tok->X_op == O_illegal || tok->X_op == O_absent)
1968 goto err;
1969 if (xtensa_operand_is_register (isa, opcode, opnd_cnt) == 1)
1970 {
1971 num_regs = xtensa_operand_num_regs (isa, opcode, opnd_cnt) - 1;
1972 /* minus 1 because we are seeing one right now */
1973 }
1974 else
1975 num_regs = 0;
1976
1977 last_tok = tok;
1978 last_opnd_cnt = opnd_cnt;
1979
1980 do
1981 {
1982 opnd_cnt += 1;
1983 tok++;
1984 }
1985 while (xtensa_operand_is_visible (isa, opcode, opnd_cnt) == 0);
1986 }
1987 }
1988
1989 if (num_regs > 0 && ((int) next_reg != last_tok->X_add_number + 1))
1990 goto err;
1991
1992 insn->ntok = tok - insn->tok;
1993 had_error = FALSE;
1994
1995 err:
1996 input_line_pointer = old_input_line_pointer;
1997 return had_error;
1998 }
1999
2000
2001 static int
2002 get_invisible_operands (TInsn *insn)
2003 {
2004 xtensa_isa isa = xtensa_default_isa;
2005 static xtensa_insnbuf slotbuf = NULL;
2006 xtensa_format fmt;
2007 xtensa_opcode opc = insn->opcode;
2008 int slot, opnd, fmt_found;
2009 unsigned val;
2010
2011 if (!slotbuf)
2012 slotbuf = xtensa_insnbuf_alloc (isa);
2013
2014 /* Find format/slot where this can be encoded. */
2015 fmt_found = 0;
2016 slot = 0;
2017 for (fmt = 0; fmt < xtensa_isa_num_formats (isa); fmt++)
2018 {
2019 for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++)
2020 {
2021 if (xtensa_opcode_encode (isa, fmt, slot, slotbuf, opc) == 0)
2022 {
2023 fmt_found = 1;
2024 break;
2025 }
2026 }
2027 if (fmt_found) break;
2028 }
2029
2030 if (!fmt_found)
2031 {
2032 as_bad (_("cannot encode opcode \"%s\""), xtensa_opcode_name (isa, opc));
2033 return -1;
2034 }
2035
2036 /* First encode all the visible operands
2037 (to deal with shared field operands). */
2038 for (opnd = 0; opnd < insn->ntok; opnd++)
2039 {
2040 if (xtensa_operand_is_visible (isa, opc, opnd) == 1
2041 && (insn->tok[opnd].X_op == O_register
2042 || insn->tok[opnd].X_op == O_constant))
2043 {
2044 val = insn->tok[opnd].X_add_number;
2045 xtensa_operand_encode (isa, opc, opnd, &val);
2046 xtensa_operand_set_field (isa, opc, opnd, fmt, slot, slotbuf, val);
2047 }
2048 }
2049
2050 /* Then pull out the values for the invisible ones. */
2051 for (opnd = 0; opnd < insn->ntok; opnd++)
2052 {
2053 if (xtensa_operand_is_visible (isa, opc, opnd) == 0)
2054 {
2055 xtensa_operand_get_field (isa, opc, opnd, fmt, slot, slotbuf, &val);
2056 xtensa_operand_decode (isa, opc, opnd, &val);
2057 insn->tok[opnd].X_add_number = val;
2058 if (xtensa_operand_is_register (isa, opc, opnd) == 1)
2059 insn->tok[opnd].X_op = O_register;
2060 else
2061 insn->tok[opnd].X_op = O_constant;
2062 }
2063 }
2064
2065 return 0;
2066 }
2067
2068
2069 static void
2070 xg_reverse_shift_count (char **cnt_argp)
2071 {
2072 char *cnt_arg, *new_arg;
2073 cnt_arg = *cnt_argp;
2074
2075 /* replace the argument with "31-(argument)" */
2076 new_arg = (char *) xmalloc (strlen (cnt_arg) + 6);
2077 sprintf (new_arg, "31-(%s)", cnt_arg);
2078
2079 free (cnt_arg);
2080 *cnt_argp = new_arg;
2081 }
2082
2083
2084 /* If "arg" is a constant expression, return non-zero with the value
2085 in *valp. */
2086
2087 static int
2088 xg_arg_is_constant (char *arg, offsetT *valp)
2089 {
2090 expressionS exp;
2091 char *save_ptr = input_line_pointer;
2092
2093 input_line_pointer = arg;
2094 expression (&exp);
2095 input_line_pointer = save_ptr;
2096
2097 if (exp.X_op == O_constant)
2098 {
2099 *valp = exp.X_add_number;
2100 return 1;
2101 }
2102
2103 return 0;
2104 }
2105
2106
2107 static void
2108 xg_replace_opname (char **popname, char *newop)
2109 {
2110 free (*popname);
2111 *popname = (char *) xmalloc (strlen (newop) + 1);
2112 strcpy (*popname, newop);
2113 }
2114
2115
2116 static int
2117 xg_check_num_args (int *pnum_args,
2118 int expected_num,
2119 char *opname,
2120 char **arg_strings)
2121 {
2122 int num_args = *pnum_args;
2123
2124 if (num_args < expected_num)
2125 {
2126 as_bad (_("not enough operands (%d) for '%s'; expected %d"),
2127 num_args, opname, expected_num);
2128 return -1;
2129 }
2130
2131 if (num_args > expected_num)
2132 {
2133 as_warn (_("too many operands (%d) for '%s'; expected %d"),
2134 num_args, opname, expected_num);
2135 while (num_args-- > expected_num)
2136 {
2137 free (arg_strings[num_args]);
2138 arg_strings[num_args] = 0;
2139 }
2140 *pnum_args = expected_num;
2141 return -1;
2142 }
2143
2144 return 0;
2145 }
2146
2147
2148 /* If the register is not specified as part of the opcode,
2149 then get it from the operand and move it to the opcode. */
2150
2151 static int
2152 xg_translate_sysreg_op (char **popname, int *pnum_args, char **arg_strings)
2153 {
2154 xtensa_isa isa = xtensa_default_isa;
2155 xtensa_sysreg sr;
2156 char *opname, *new_opname;
2157 const char *sr_name;
2158 int is_user, is_write;
2159
2160 opname = *popname;
2161 if (*opname == '_')
2162 opname += 1;
2163 is_user = (opname[1] == 'u');
2164 is_write = (opname[0] == 'w');
2165
2166 /* Opname == [rw]ur or [rwx]sr... */
2167
2168 if (xg_check_num_args (pnum_args, 2, opname, arg_strings))
2169 return -1;
2170
2171 /* Check if the argument is a symbolic register name. */
2172 sr = xtensa_sysreg_lookup_name (isa, arg_strings[1]);
2173 /* Handle WSR to "INTSET" as a special case. */
2174 if (sr == XTENSA_UNDEFINED && is_write && !is_user
2175 && !strcasecmp (arg_strings[1], "intset"))
2176 sr = xtensa_sysreg_lookup_name (isa, "interrupt");
2177 if (sr == XTENSA_UNDEFINED
2178 || (xtensa_sysreg_is_user (isa, sr) == 1) != is_user)
2179 {
2180 /* Maybe it's a register number.... */
2181 offsetT val;
2182 if (!xg_arg_is_constant (arg_strings[1], &val))
2183 {
2184 as_bad (_("invalid register '%s' for '%s' instruction"),
2185 arg_strings[1], opname);
2186 return -1;
2187 }
2188 sr = xtensa_sysreg_lookup (isa, val, is_user);
2189 if (sr == XTENSA_UNDEFINED)
2190 {
2191 as_bad (_("invalid register number (%ld) for '%s' instruction"),
2192 (long) val, opname);
2193 return -1;
2194 }
2195 }
2196
2197 /* Remove the last argument, which is now part of the opcode. */
2198 free (arg_strings[1]);
2199 arg_strings[1] = 0;
2200 *pnum_args = 1;
2201
2202 /* Translate the opcode. */
2203 sr_name = xtensa_sysreg_name (isa, sr);
2204 /* Another special case for "WSR.INTSET".... */
2205 if (is_write && !is_user && !strcasecmp ("interrupt", sr_name))
2206 sr_name = "intset";
2207 new_opname = (char *) xmalloc (strlen (sr_name) + 6);
2208 sprintf (new_opname, "%s.%s", *popname, sr_name);
2209 free (*popname);
2210 *popname = new_opname;
2211
2212 return 0;
2213 }
2214
2215
2216 static int
2217 xtensa_translate_old_userreg_ops (char **popname)
2218 {
2219 xtensa_isa isa = xtensa_default_isa;
2220 xtensa_sysreg sr;
2221 char *opname, *new_opname;
2222 const char *sr_name;
2223 bfd_boolean has_underbar = FALSE;
2224
2225 opname = *popname;
2226 if (opname[0] == '_')
2227 {
2228 has_underbar = TRUE;
2229 opname += 1;
2230 }
2231
2232 sr = xtensa_sysreg_lookup_name (isa, opname + 1);
2233 if (sr != XTENSA_UNDEFINED)
2234 {
2235 /* The new default name ("nnn") is different from the old default
2236 name ("URnnn"). The old default is handled below, and we don't
2237 want to recognize [RW]nnn, so do nothing if the name is the (new)
2238 default. */
2239 static char namebuf[10];
2240 sprintf (namebuf, "%d", xtensa_sysreg_number (isa, sr));
2241 if (strcmp (namebuf, opname + 1) == 0)
2242 return 0;
2243 }
2244 else
2245 {
2246 offsetT val;
2247 char *end;
2248
2249 /* Only continue if the reg name is "URnnn". */
2250 if (opname[1] != 'u' || opname[2] != 'r')
2251 return 0;
2252 val = strtoul (opname + 3, &end, 10);
2253 if (*end != '\0')
2254 return 0;
2255
2256 sr = xtensa_sysreg_lookup (isa, val, 1);
2257 if (sr == XTENSA_UNDEFINED)
2258 {
2259 as_bad (_("invalid register number (%ld) for '%s'"),
2260 (long) val, opname);
2261 return -1;
2262 }
2263 }
2264
2265 /* Translate the opcode. */
2266 sr_name = xtensa_sysreg_name (isa, sr);
2267 new_opname = (char *) xmalloc (strlen (sr_name) + 6);
2268 sprintf (new_opname, "%s%cur.%s", (has_underbar ? "_" : ""),
2269 opname[0], sr_name);
2270 free (*popname);
2271 *popname = new_opname;
2272
2273 return 0;
2274 }
2275
2276
2277 static int
2278 xtensa_translate_zero_immed (char *old_op,
2279 char *new_op,
2280 char **popname,
2281 int *pnum_args,
2282 char **arg_strings)
2283 {
2284 char *opname;
2285 offsetT val;
2286
2287 opname = *popname;
2288 assert (opname[0] != '_');
2289
2290 if (strcmp (opname, old_op) != 0)
2291 return 0;
2292
2293 if (xg_check_num_args (pnum_args, 3, opname, arg_strings))
2294 return -1;
2295 if (xg_arg_is_constant (arg_strings[1], &val) && val == 0)
2296 {
2297 xg_replace_opname (popname, new_op);
2298 free (arg_strings[1]);
2299 arg_strings[1] = arg_strings[2];
2300 arg_strings[2] = 0;
2301 *pnum_args = 2;
2302 }
2303
2304 return 0;
2305 }
2306
2307
2308 /* If the instruction is an idiom (i.e., a built-in macro), translate it.
2309 Returns non-zero if an error was found. */
2310
2311 static int
2312 xg_translate_idioms (char **popname, int *pnum_args, char **arg_strings)
2313 {
2314 char *opname = *popname;
2315 bfd_boolean has_underbar = FALSE;
2316
2317 if (*opname == '_')
2318 {
2319 has_underbar = TRUE;
2320 opname += 1;
2321 }
2322
2323 if (strcmp (opname, "mov") == 0)
2324 {
2325 if (use_transform () && !has_underbar && density_supported)
2326 xg_replace_opname (popname, "mov.n");
2327 else
2328 {
2329 if (xg_check_num_args (pnum_args, 2, opname, arg_strings))
2330 return -1;
2331 xg_replace_opname (popname, (has_underbar ? "_or" : "or"));
2332 arg_strings[2] = (char *) xmalloc (strlen (arg_strings[1]) + 1);
2333 strcpy (arg_strings[2], arg_strings[1]);
2334 *pnum_args = 3;
2335 }
2336 return 0;
2337 }
2338
2339 if (strcmp (opname, "bbsi.l") == 0)
2340 {
2341 if (xg_check_num_args (pnum_args, 3, opname, arg_strings))
2342 return -1;
2343 xg_replace_opname (popname, (has_underbar ? "_bbsi" : "bbsi"));
2344 if (target_big_endian)
2345 xg_reverse_shift_count (&arg_strings[1]);
2346 return 0;
2347 }
2348
2349 if (strcmp (opname, "bbci.l") == 0)
2350 {
2351 if (xg_check_num_args (pnum_args, 3, opname, arg_strings))
2352 return -1;
2353 xg_replace_opname (popname, (has_underbar ? "_bbci" : "bbci"));
2354 if (target_big_endian)
2355 xg_reverse_shift_count (&arg_strings[1]);
2356 return 0;
2357 }
2358
2359 /* Don't do anything special with NOPs inside FLIX instructions. They
2360 are handled elsewhere. Real NOP instructions are always available
2361 in configurations with FLIX, so this should never be an issue but
2362 check for it anyway. */
2363 if (!cur_vinsn.inside_bundle && xtensa_nop_opcode == XTENSA_UNDEFINED
2364 && strcmp (opname, "nop") == 0)
2365 {
2366 if (use_transform () && !has_underbar && density_supported)
2367 xg_replace_opname (popname, "nop.n");
2368 else
2369 {
2370 if (xg_check_num_args (pnum_args, 0, opname, arg_strings))
2371 return -1;
2372 xg_replace_opname (popname, (has_underbar ? "_or" : "or"));
2373 arg_strings[0] = (char *) xmalloc (3);
2374 arg_strings[1] = (char *) xmalloc (3);
2375 arg_strings[2] = (char *) xmalloc (3);
2376 strcpy (arg_strings[0], "a1");
2377 strcpy (arg_strings[1], "a1");
2378 strcpy (arg_strings[2], "a1");
2379 *pnum_args = 3;
2380 }
2381 return 0;
2382 }
2383
2384 /* Recognize [RW]UR and [RWX]SR. */
2385 if ((((opname[0] == 'r' || opname[0] == 'w')
2386 && (opname[1] == 'u' || opname[1] == 's'))
2387 || (opname[0] == 'x' && opname[1] == 's'))
2388 && opname[2] == 'r'
2389 && opname[3] == '\0')
2390 return xg_translate_sysreg_op (popname, pnum_args, arg_strings);
2391
2392 /* Backward compatibility for RUR and WUR: Recognize [RW]UR<nnn> and
2393 [RW]<name> if <name> is the non-default name of a user register. */
2394 if ((opname[0] == 'r' || opname[0] == 'w')
2395 && xtensa_opcode_lookup (xtensa_default_isa, opname) == XTENSA_UNDEFINED)
2396 return xtensa_translate_old_userreg_ops (popname);
2397
2398 /* Relax branches that don't allow comparisons against an immediate value
2399 of zero to the corresponding branches with implicit zero immediates. */
2400 if (!has_underbar && use_transform ())
2401 {
2402 if (xtensa_translate_zero_immed ("bnei", "bnez", popname,
2403 pnum_args, arg_strings))
2404 return -1;
2405
2406 if (xtensa_translate_zero_immed ("beqi", "beqz", popname,
2407 pnum_args, arg_strings))
2408 return -1;
2409
2410 if (xtensa_translate_zero_immed ("bgei", "bgez", popname,
2411 pnum_args, arg_strings))
2412 return -1;
2413
2414 if (xtensa_translate_zero_immed ("blti", "bltz", popname,
2415 pnum_args, arg_strings))
2416 return -1;
2417 }
2418
2419 return 0;
2420 }
2421
2422 \f
2423 /* Functions for dealing with the Xtensa ISA. */
2424
2425 /* Currently the assembler only allows us to use a single target per
2426 fragment. Because of this, only one operand for a given
2427 instruction may be symbolic. If there is a PC-relative operand,
2428 the last one is chosen. Otherwise, the result is the number of the
2429 last immediate operand, and if there are none of those, we fail and
2430 return -1. */
2431
2432 static int
2433 get_relaxable_immed (xtensa_opcode opcode)
2434 {
2435 int last_immed = -1;
2436 int noperands, opi;
2437
2438 if (opcode == XTENSA_UNDEFINED)
2439 return -1;
2440
2441 noperands = xtensa_opcode_num_operands (xtensa_default_isa, opcode);
2442 for (opi = noperands - 1; opi >= 0; opi--)
2443 {
2444 if (xtensa_operand_is_visible (xtensa_default_isa, opcode, opi) == 0)
2445 continue;
2446 if (xtensa_operand_is_PCrelative (xtensa_default_isa, opcode, opi) == 1)
2447 return opi;
2448 if (last_immed == -1
2449 && xtensa_operand_is_register (xtensa_default_isa, opcode, opi) == 0)
2450 last_immed = opi;
2451 }
2452 return last_immed;
2453 }
2454
2455
2456 static xtensa_opcode
2457 get_opcode_from_buf (const char *buf, int slot)
2458 {
2459 static xtensa_insnbuf insnbuf = NULL;
2460 static xtensa_insnbuf slotbuf = NULL;
2461 xtensa_isa isa = xtensa_default_isa;
2462 xtensa_format fmt;
2463
2464 if (!insnbuf)
2465 {
2466 insnbuf = xtensa_insnbuf_alloc (isa);
2467 slotbuf = xtensa_insnbuf_alloc (isa);
2468 }
2469
2470 xtensa_insnbuf_from_chars (isa, insnbuf, (const unsigned char *) buf, 0);
2471 fmt = xtensa_format_decode (isa, insnbuf);
2472 if (fmt == XTENSA_UNDEFINED)
2473 return XTENSA_UNDEFINED;
2474
2475 if (slot >= xtensa_format_num_slots (isa, fmt))
2476 return XTENSA_UNDEFINED;
2477
2478 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf);
2479 return xtensa_opcode_decode (isa, fmt, slot, slotbuf);
2480 }
2481
2482
2483 #ifdef TENSILICA_DEBUG
2484
2485 /* For debugging, print out the mapping of opcode numbers to opcodes. */
2486
2487 static void
2488 xtensa_print_insn_table (void)
2489 {
2490 int num_opcodes, num_operands;
2491 xtensa_opcode opcode;
2492 xtensa_isa isa = xtensa_default_isa;
2493
2494 num_opcodes = xtensa_isa_num_opcodes (xtensa_default_isa);
2495 for (opcode = 0; opcode < num_opcodes; opcode++)
2496 {
2497 int opn;
2498 fprintf (stderr, "%d: %s: ", opcode, xtensa_opcode_name (isa, opcode));
2499 num_operands = xtensa_opcode_num_operands (isa, opcode);
2500 for (opn = 0; opn < num_operands; opn++)
2501 {
2502 if (xtensa_operand_is_visible (isa, opcode, opn) == 0)
2503 continue;
2504 if (xtensa_operand_is_register (isa, opcode, opn) == 1)
2505 {
2506 xtensa_regfile opnd_rf =
2507 xtensa_operand_regfile (isa, opcode, opn);
2508 fprintf (stderr, "%s ", xtensa_regfile_shortname (isa, opnd_rf));
2509 }
2510 else if (xtensa_operand_is_PCrelative (isa, opcode, opn) == 1)
2511 fputs ("[lLr] ", stderr);
2512 else
2513 fputs ("i ", stderr);
2514 }
2515 fprintf (stderr, "\n");
2516 }
2517 }
2518
2519
2520 static void
2521 print_vliw_insn (xtensa_insnbuf vbuf)
2522 {
2523 xtensa_isa isa = xtensa_default_isa;
2524 xtensa_format f = xtensa_format_decode (isa, vbuf);
2525 xtensa_insnbuf sbuf = xtensa_insnbuf_alloc (isa);
2526 int op;
2527
2528 fprintf (stderr, "format = %d\n", f);
2529
2530 for (op = 0; op < xtensa_format_num_slots (isa, f); op++)
2531 {
2532 xtensa_opcode opcode;
2533 const char *opname;
2534 int operands;
2535
2536 xtensa_format_get_slot (isa, f, op, vbuf, sbuf);
2537 opcode = xtensa_opcode_decode (isa, f, op, sbuf);
2538 opname = xtensa_opcode_name (isa, opcode);
2539
2540 fprintf (stderr, "op in slot %i is %s;\n", op, opname);
2541 fprintf (stderr, " operands = ");
2542 for (operands = 0;
2543 operands < xtensa_opcode_num_operands (isa, opcode);
2544 operands++)
2545 {
2546 unsigned int val;
2547 if (xtensa_operand_is_visible (isa, opcode, operands) == 0)
2548 continue;
2549 xtensa_operand_get_field (isa, opcode, operands, f, op, sbuf, &val);
2550 xtensa_operand_decode (isa, opcode, operands, &val);
2551 fprintf (stderr, "%d ", val);
2552 }
2553 fprintf (stderr, "\n");
2554 }
2555 xtensa_insnbuf_free (isa, sbuf);
2556 }
2557
2558 #endif /* TENSILICA_DEBUG */
2559
2560
2561 static bfd_boolean
2562 is_direct_call_opcode (xtensa_opcode opcode)
2563 {
2564 xtensa_isa isa = xtensa_default_isa;
2565 int n, num_operands;
2566
2567 if (xtensa_opcode_is_call (isa, opcode) != 1)
2568 return FALSE;
2569
2570 num_operands = xtensa_opcode_num_operands (isa, opcode);
2571 for (n = 0; n < num_operands; n++)
2572 {
2573 if (xtensa_operand_is_register (isa, opcode, n) == 0
2574 && xtensa_operand_is_PCrelative (isa, opcode, n) == 1)
2575 return TRUE;
2576 }
2577 return FALSE;
2578 }
2579
2580
2581 /* Convert from BFD relocation type code to slot and operand number.
2582 Returns non-zero on failure. */
2583
2584 static int
2585 decode_reloc (bfd_reloc_code_real_type reloc, int *slot, bfd_boolean *is_alt)
2586 {
2587 if (reloc >= BFD_RELOC_XTENSA_SLOT0_OP
2588 && reloc <= BFD_RELOC_XTENSA_SLOT14_OP)
2589 {
2590 *slot = reloc - BFD_RELOC_XTENSA_SLOT0_OP;
2591 *is_alt = FALSE;
2592 }
2593 else if (reloc >= BFD_RELOC_XTENSA_SLOT0_ALT
2594 && reloc <= BFD_RELOC_XTENSA_SLOT14_ALT)
2595 {
2596 *slot = reloc - BFD_RELOC_XTENSA_SLOT0_ALT;
2597 *is_alt = TRUE;
2598 }
2599 else
2600 return -1;
2601
2602 return 0;
2603 }
2604
2605
2606 /* Convert from slot number to BFD relocation type code for the
2607 standard PC-relative relocations. Return BFD_RELOC_NONE on
2608 failure. */
2609
2610 static bfd_reloc_code_real_type
2611 encode_reloc (int slot)
2612 {
2613 if (slot < 0 || slot > 14)
2614 return BFD_RELOC_NONE;
2615
2616 return BFD_RELOC_XTENSA_SLOT0_OP + slot;
2617 }
2618
2619
2620 /* Convert from slot numbers to BFD relocation type code for the
2621 "alternate" relocations. Return BFD_RELOC_NONE on failure. */
2622
2623 static bfd_reloc_code_real_type
2624 encode_alt_reloc (int slot)
2625 {
2626 if (slot < 0 || slot > 14)
2627 return BFD_RELOC_NONE;
2628
2629 return BFD_RELOC_XTENSA_SLOT0_ALT + slot;
2630 }
2631
2632
2633 static void
2634 xtensa_insnbuf_set_operand (xtensa_insnbuf slotbuf,
2635 xtensa_format fmt,
2636 int slot,
2637 xtensa_opcode opcode,
2638 int operand,
2639 uint32 value,
2640 const char *file,
2641 unsigned int line)
2642 {
2643 uint32 valbuf = value;
2644
2645 if (xtensa_operand_encode (xtensa_default_isa, opcode, operand, &valbuf))
2646 {
2647 if (xtensa_operand_is_PCrelative (xtensa_default_isa, opcode, operand)
2648 == 1)
2649 as_bad_where ((char *) file, line,
2650 _("operand %d of '%s' has out of range value '%u'"),
2651 operand + 1,
2652 xtensa_opcode_name (xtensa_default_isa, opcode),
2653 value);
2654 else
2655 as_bad_where ((char *) file, line,
2656 _("operand %d of '%s' has invalid value '%u'"),
2657 operand + 1,
2658 xtensa_opcode_name (xtensa_default_isa, opcode),
2659 value);
2660 return;
2661 }
2662
2663 xtensa_operand_set_field (xtensa_default_isa, opcode, operand, fmt, slot,
2664 slotbuf, valbuf);
2665 }
2666
2667
2668 static uint32
2669 xtensa_insnbuf_get_operand (xtensa_insnbuf slotbuf,
2670 xtensa_format fmt,
2671 int slot,
2672 xtensa_opcode opcode,
2673 int opnum)
2674 {
2675 uint32 val = 0;
2676 (void) xtensa_operand_get_field (xtensa_default_isa, opcode, opnum,
2677 fmt, slot, slotbuf, &val);
2678 (void) xtensa_operand_decode (xtensa_default_isa, opcode, opnum, &val);
2679 return val;
2680 }
2681
2682 \f
2683 /* Checks for rules from xtensa-relax tables. */
2684
2685 /* The routine xg_instruction_matches_option_term must return TRUE
2686 when a given option term is true. The meaning of all of the option
2687 terms is given interpretation by this function. This is needed when
2688 an option depends on the state of a directive, but there are no such
2689 options in use right now. */
2690
2691 static bfd_boolean
2692 xg_instruction_matches_option_term (TInsn *insn ATTRIBUTE_UNUSED,
2693 const ReqOrOption *option)
2694 {
2695 if (strcmp (option->option_name, "realnop") == 0
2696 || strncmp (option->option_name, "IsaUse", 6) == 0)
2697 {
2698 /* These conditions were evaluated statically when building the
2699 relaxation table. There's no need to reevaluate them now. */
2700 return TRUE;
2701 }
2702 else
2703 {
2704 as_fatal (_("internal error: unknown option name '%s'"),
2705 option->option_name);
2706 }
2707 }
2708
2709
2710 static bfd_boolean
2711 xg_instruction_matches_or_options (TInsn *insn,
2712 const ReqOrOptionList *or_option)
2713 {
2714 const ReqOrOption *option;
2715 /* Must match each of the AND terms. */
2716 for (option = or_option; option != NULL; option = option->next)
2717 {
2718 if (xg_instruction_matches_option_term (insn, option))
2719 return TRUE;
2720 }
2721 return FALSE;
2722 }
2723
2724
2725 static bfd_boolean
2726 xg_instruction_matches_options (TInsn *insn, const ReqOptionList *options)
2727 {
2728 const ReqOption *req_options;
2729 /* Must match each of the AND terms. */
2730 for (req_options = options;
2731 req_options != NULL;
2732 req_options = req_options->next)
2733 {
2734 /* Must match one of the OR clauses. */
2735 if (!xg_instruction_matches_or_options (insn,
2736 req_options->or_option_terms))
2737 return FALSE;
2738 }
2739 return TRUE;
2740 }
2741
2742
2743 /* Return the transition rule that matches or NULL if none matches. */
2744
2745 static bfd_boolean
2746 xg_instruction_matches_rule (TInsn *insn, TransitionRule *rule)
2747 {
2748 PreconditionList *condition_l;
2749
2750 if (rule->opcode != insn->opcode)
2751 return FALSE;
2752
2753 for (condition_l = rule->conditions;
2754 condition_l != NULL;
2755 condition_l = condition_l->next)
2756 {
2757 expressionS *exp1;
2758 expressionS *exp2;
2759 Precondition *cond = condition_l->precond;
2760
2761 switch (cond->typ)
2762 {
2763 case OP_CONSTANT:
2764 /* The expression must be the constant. */
2765 assert (cond->op_num < insn->ntok);
2766 exp1 = &insn->tok[cond->op_num];
2767 if (expr_is_const (exp1))
2768 {
2769 switch (cond->cmp)
2770 {
2771 case OP_EQUAL:
2772 if (get_expr_const (exp1) != cond->op_data)
2773 return FALSE;
2774 break;
2775 case OP_NOTEQUAL:
2776 if (get_expr_const (exp1) == cond->op_data)
2777 return FALSE;
2778 break;
2779 default:
2780 return FALSE;
2781 }
2782 }
2783 else if (expr_is_register (exp1))
2784 {
2785 switch (cond->cmp)
2786 {
2787 case OP_EQUAL:
2788 if (get_expr_register (exp1) != cond->op_data)
2789 return FALSE;
2790 break;
2791 case OP_NOTEQUAL:
2792 if (get_expr_register (exp1) == cond->op_data)
2793 return FALSE;
2794 break;
2795 default:
2796 return FALSE;
2797 }
2798 }
2799 else
2800 return FALSE;
2801 break;
2802
2803 case OP_OPERAND:
2804 assert (cond->op_num < insn->ntok);
2805 assert (cond->op_data < insn->ntok);
2806 exp1 = &insn->tok[cond->op_num];
2807 exp2 = &insn->tok[cond->op_data];
2808
2809 switch (cond->cmp)
2810 {
2811 case OP_EQUAL:
2812 if (!expr_is_equal (exp1, exp2))
2813 return FALSE;
2814 break;
2815 case OP_NOTEQUAL:
2816 if (expr_is_equal (exp1, exp2))
2817 return FALSE;
2818 break;
2819 }
2820 break;
2821
2822 case OP_LITERAL:
2823 case OP_LABEL:
2824 default:
2825 return FALSE;
2826 }
2827 }
2828 if (!xg_instruction_matches_options (insn, rule->options))
2829 return FALSE;
2830
2831 return TRUE;
2832 }
2833
2834
2835 static int
2836 transition_rule_cmp (const TransitionRule *a, const TransitionRule *b)
2837 {
2838 bfd_boolean a_greater = FALSE;
2839 bfd_boolean b_greater = FALSE;
2840
2841 ReqOptionList *l_a = a->options;
2842 ReqOptionList *l_b = b->options;
2843
2844 /* We only care if they both are the same except for
2845 a const16 vs. an l32r. */
2846
2847 while (l_a && l_b && ((l_a->next == NULL) == (l_b->next == NULL)))
2848 {
2849 ReqOrOptionList *l_or_a = l_a->or_option_terms;
2850 ReqOrOptionList *l_or_b = l_b->or_option_terms;
2851 while (l_or_a && l_or_b && ((l_a->next == NULL) == (l_b->next == NULL)))
2852 {
2853 if (l_or_a->is_true != l_or_b->is_true)
2854 return 0;
2855 if (strcmp (l_or_a->option_name, l_or_b->option_name) != 0)
2856 {
2857 /* This is the case we care about. */
2858 if (strcmp (l_or_a->option_name, "IsaUseConst16") == 0
2859 && strcmp (l_or_b->option_name, "IsaUseL32R") == 0)
2860 {
2861 if (prefer_const16)
2862 a_greater = TRUE;
2863 else
2864 b_greater = TRUE;
2865 }
2866 else if (strcmp (l_or_a->option_name, "IsaUseL32R") == 0
2867 && strcmp (l_or_b->option_name, "IsaUseConst16") == 0)
2868 {
2869 if (prefer_const16)
2870 b_greater = TRUE;
2871 else
2872 a_greater = TRUE;
2873 }
2874 else
2875 return 0;
2876 }
2877 l_or_a = l_or_a->next;
2878 l_or_b = l_or_b->next;
2879 }
2880 if (l_or_a || l_or_b)
2881 return 0;
2882
2883 l_a = l_a->next;
2884 l_b = l_b->next;
2885 }
2886 if (l_a || l_b)
2887 return 0;
2888
2889 /* Incomparable if the substitution was used differently in two cases. */
2890 if (a_greater && b_greater)
2891 return 0;
2892
2893 if (b_greater)
2894 return 1;
2895 if (a_greater)
2896 return -1;
2897
2898 return 0;
2899 }
2900
2901
2902 static TransitionRule *
2903 xg_instruction_match (TInsn *insn)
2904 {
2905 TransitionTable *table = xg_build_simplify_table (&transition_rule_cmp);
2906 TransitionList *l;
2907 assert (insn->opcode < table->num_opcodes);
2908
2909 /* Walk through all of the possible transitions. */
2910 for (l = table->table[insn->opcode]; l != NULL; l = l->next)
2911 {
2912 TransitionRule *rule = l->rule;
2913 if (xg_instruction_matches_rule (insn, rule))
2914 return rule;
2915 }
2916 return NULL;
2917 }
2918
2919 \f
2920 /* Various Other Internal Functions. */
2921
2922 static bfd_boolean
2923 is_unique_insn_expansion (TransitionRule *r)
2924 {
2925 if (!r->to_instr || r->to_instr->next != NULL)
2926 return FALSE;
2927 if (r->to_instr->typ != INSTR_INSTR)
2928 return FALSE;
2929 return TRUE;
2930 }
2931
2932
2933 /* Check if there is exactly one relaxation for INSN that converts it to
2934 another instruction of equal or larger size. If so, and if TARG is
2935 non-null, go ahead and generate the relaxed instruction into TARG. If
2936 NARROW_ONLY is true, then only consider relaxations that widen a narrow
2937 instruction, i.e., ignore relaxations that convert to an instruction of
2938 equal size. In some contexts where this function is used, only
2939 a single widening is allowed and the NARROW_ONLY argument is used to
2940 exclude cases like ADDI being "widened" to an ADDMI, which may
2941 later be relaxed to an ADDMI/ADDI pair. */
2942
2943 bfd_boolean
2944 xg_is_single_relaxable_insn (TInsn *insn, TInsn *targ, bfd_boolean narrow_only)
2945 {
2946 TransitionTable *table = xg_build_widen_table (&transition_rule_cmp);
2947 TransitionList *l;
2948 TransitionRule *match = 0;
2949
2950 assert (insn->insn_type == ITYPE_INSN);
2951 assert (insn->opcode < table->num_opcodes);
2952
2953 for (l = table->table[insn->opcode]; l != NULL; l = l->next)
2954 {
2955 TransitionRule *rule = l->rule;
2956
2957 if (xg_instruction_matches_rule (insn, rule)
2958 && is_unique_insn_expansion (rule)
2959 && (xg_get_single_size (insn->opcode) + (narrow_only ? 1 : 0)
2960 <= xg_get_single_size (rule->to_instr->opcode)))
2961 {
2962 if (match)
2963 return FALSE;
2964 match = rule;
2965 }
2966 }
2967 if (!match)
2968 return FALSE;
2969
2970 if (targ)
2971 xg_build_to_insn (targ, insn, match->to_instr);
2972 return TRUE;
2973 }
2974
2975
2976 /* Return the maximum number of bytes this opcode can expand to. */
2977
2978 static int
2979 xg_get_max_insn_widen_size (xtensa_opcode opcode)
2980 {
2981 TransitionTable *table = xg_build_widen_table (&transition_rule_cmp);
2982 TransitionList *l;
2983 int max_size = xg_get_single_size (opcode);
2984
2985 assert (opcode < table->num_opcodes);
2986
2987 for (l = table->table[opcode]; l != NULL; l = l->next)
2988 {
2989 TransitionRule *rule = l->rule;
2990 BuildInstr *build_list;
2991 int this_size = 0;
2992
2993 if (!rule)
2994 continue;
2995 build_list = rule->to_instr;
2996 if (is_unique_insn_expansion (rule))
2997 {
2998 assert (build_list->typ == INSTR_INSTR);
2999 this_size = xg_get_max_insn_widen_size (build_list->opcode);
3000 }
3001 else
3002 for (; build_list != NULL; build_list = build_list->next)
3003 {
3004 switch (build_list->typ)
3005 {
3006 case INSTR_INSTR:
3007 this_size += xg_get_single_size (build_list->opcode);
3008 break;
3009 case INSTR_LITERAL_DEF:
3010 case INSTR_LABEL_DEF:
3011 default:
3012 break;
3013 }
3014 }
3015 if (this_size > max_size)
3016 max_size = this_size;
3017 }
3018 return max_size;
3019 }
3020
3021
3022 /* Return the maximum number of literal bytes this opcode can generate. */
3023
3024 static int
3025 xg_get_max_insn_widen_literal_size (xtensa_opcode opcode)
3026 {
3027 TransitionTable *table = xg_build_widen_table (&transition_rule_cmp);
3028 TransitionList *l;
3029 int max_size = 0;
3030
3031 assert (opcode < table->num_opcodes);
3032
3033 for (l = table->table[opcode]; l != NULL; l = l->next)
3034 {
3035 TransitionRule *rule = l->rule;
3036 BuildInstr *build_list;
3037 int this_size = 0;
3038
3039 if (!rule)
3040 continue;
3041 build_list = rule->to_instr;
3042 if (is_unique_insn_expansion (rule))
3043 {
3044 assert (build_list->typ == INSTR_INSTR);
3045 this_size = xg_get_max_insn_widen_literal_size (build_list->opcode);
3046 }
3047 else
3048 for (; build_list != NULL; build_list = build_list->next)
3049 {
3050 switch (build_list->typ)
3051 {
3052 case INSTR_LITERAL_DEF:
3053 /* Hard-coded 4-byte literal. */
3054 this_size += 4;
3055 break;
3056 case INSTR_INSTR:
3057 case INSTR_LABEL_DEF:
3058 default:
3059 break;
3060 }
3061 }
3062 if (this_size > max_size)
3063 max_size = this_size;
3064 }
3065 return max_size;
3066 }
3067
3068
3069 static bfd_boolean
3070 xg_is_relaxable_insn (TInsn *insn, int lateral_steps)
3071 {
3072 int steps_taken = 0;
3073 TransitionTable *table = xg_build_widen_table (&transition_rule_cmp);
3074 TransitionList *l;
3075
3076 assert (insn->insn_type == ITYPE_INSN);
3077 assert (insn->opcode < table->num_opcodes);
3078
3079 for (l = table->table[insn->opcode]; l != NULL; l = l->next)
3080 {
3081 TransitionRule *rule = l->rule;
3082
3083 if (xg_instruction_matches_rule (insn, rule))
3084 {
3085 if (steps_taken == lateral_steps)
3086 return TRUE;
3087 steps_taken++;
3088 }
3089 }
3090 return FALSE;
3091 }
3092
3093
3094 static symbolS *
3095 get_special_literal_symbol (void)
3096 {
3097 static symbolS *sym = NULL;
3098
3099 if (sym == NULL)
3100 sym = symbol_find_or_make ("SPECIAL_LITERAL0\001");
3101 return sym;
3102 }
3103
3104
3105 static symbolS *
3106 get_special_label_symbol (void)
3107 {
3108 static symbolS *sym = NULL;
3109
3110 if (sym == NULL)
3111 sym = symbol_find_or_make ("SPECIAL_LABEL0\001");
3112 return sym;
3113 }
3114
3115
3116 static bfd_boolean
3117 xg_valid_literal_expression (const expressionS *exp)
3118 {
3119 switch (exp->X_op)
3120 {
3121 case O_constant:
3122 case O_symbol:
3123 case O_big:
3124 case O_uminus:
3125 case O_subtract:
3126 case O_pltrel:
3127 return TRUE;
3128 default:
3129 return FALSE;
3130 }
3131 }
3132
3133
3134 /* This will check to see if the value can be converted into the
3135 operand type. It will return TRUE if it does not fit. */
3136
3137 static bfd_boolean
3138 xg_check_operand (int32 value, xtensa_opcode opcode, int operand)
3139 {
3140 uint32 valbuf = value;
3141 if (xtensa_operand_encode (xtensa_default_isa, opcode, operand, &valbuf))
3142 return TRUE;
3143 return FALSE;
3144 }
3145
3146
3147 /* Assumes: All immeds are constants. Check that all constants fit
3148 into their immeds; return FALSE if not. */
3149
3150 static bfd_boolean
3151 xg_immeds_fit (const TInsn *insn)
3152 {
3153 xtensa_isa isa = xtensa_default_isa;
3154 int i;
3155
3156 int n = insn->ntok;
3157 assert (insn->insn_type == ITYPE_INSN);
3158 for (i = 0; i < n; ++i)
3159 {
3160 const expressionS *expr = &insn->tok[i];
3161 if (xtensa_operand_is_register (isa, insn->opcode, i) == 1)
3162 continue;
3163
3164 switch (expr->X_op)
3165 {
3166 case O_register:
3167 case O_constant:
3168 if (xg_check_operand (expr->X_add_number, insn->opcode, i))
3169 return FALSE;
3170 break;
3171
3172 default:
3173 /* The symbol should have a fixup associated with it. */
3174 assert (FALSE);
3175 break;
3176 }
3177 }
3178 return TRUE;
3179 }
3180
3181
3182 /* This should only be called after we have an initial
3183 estimate of the addresses. */
3184
3185 static bfd_boolean
3186 xg_symbolic_immeds_fit (const TInsn *insn,
3187 segT pc_seg,
3188 fragS *pc_frag,
3189 offsetT pc_offset,
3190 long stretch)
3191 {
3192 xtensa_isa isa = xtensa_default_isa;
3193 symbolS *symbolP;
3194 fragS *sym_frag;
3195 offsetT target, pc;
3196 uint32 new_offset;
3197 int i;
3198 int n = insn->ntok;
3199
3200 assert (insn->insn_type == ITYPE_INSN);
3201
3202 for (i = 0; i < n; ++i)
3203 {
3204 const expressionS *expr = &insn->tok[i];
3205 if (xtensa_operand_is_register (isa, insn->opcode, i) == 1)
3206 continue;
3207
3208 switch (expr->X_op)
3209 {
3210 case O_register:
3211 case O_constant:
3212 if (xg_check_operand (expr->X_add_number, insn->opcode, i))
3213 return FALSE;
3214 break;
3215
3216 case O_lo16:
3217 case O_hi16:
3218 /* Check for the worst case. */
3219 if (xg_check_operand (0xffff, insn->opcode, i))
3220 return FALSE;
3221 break;
3222
3223 case O_symbol:
3224 /* We only allow symbols for PC-relative references.
3225 If pc_frag == 0, then we don't have frag locations yet. */
3226 if (pc_frag == 0
3227 || xtensa_operand_is_PCrelative (isa, insn->opcode, i) == 0)
3228 return FALSE;
3229
3230 /* If it is a weak symbol, then assume it won't reach. */
3231 if (S_IS_WEAK (expr->X_add_symbol))
3232 return FALSE;
3233
3234 if (is_direct_call_opcode (insn->opcode)
3235 && ! pc_frag->tc_frag_data.use_longcalls)
3236 {
3237 /* If callee is undefined or in a different segment, be
3238 optimistic and assume it will be in range. */
3239 if (S_GET_SEGMENT (expr->X_add_symbol) != pc_seg)
3240 return TRUE;
3241 }
3242
3243 /* Only references within a segment can be known to fit in the
3244 operands at assembly time. */
3245 if (S_GET_SEGMENT (expr->X_add_symbol) != pc_seg)
3246 return FALSE;
3247
3248 symbolP = expr->X_add_symbol;
3249 sym_frag = symbol_get_frag (symbolP);
3250 target = S_GET_VALUE (symbolP) + expr->X_add_number;
3251 pc = pc_frag->fr_address + pc_offset;
3252
3253 /* If frag has yet to be reached on this pass, assume it
3254 will move by STRETCH just as we did. If this is not so,
3255 it will be because some frag between grows, and that will
3256 force another pass. Beware zero-length frags. There
3257 should be a faster way to do this. */
3258
3259 if (stretch != 0
3260 && sym_frag->relax_marker != pc_frag->relax_marker
3261 && S_GET_SEGMENT (symbolP) == pc_seg)
3262 {
3263 target += stretch;
3264 }
3265
3266 new_offset = target;
3267 xtensa_operand_do_reloc (isa, insn->opcode, i, &new_offset, pc);
3268 if (xg_check_operand (new_offset, insn->opcode, i))
3269 return FALSE;
3270 break;
3271
3272 default:
3273 /* The symbol should have a fixup associated with it. */
3274 return FALSE;
3275 }
3276 }
3277
3278 return TRUE;
3279 }
3280
3281
3282 /* Return TRUE on success. */
3283
3284 static bfd_boolean
3285 xg_build_to_insn (TInsn *targ, TInsn *insn, BuildInstr *bi)
3286 {
3287 BuildOp *op;
3288 symbolS *sym;
3289
3290 tinsn_init (targ);
3291 targ->debug_line = insn->debug_line;
3292 targ->loc_directive_seen = insn->loc_directive_seen;
3293 switch (bi->typ)
3294 {
3295 case INSTR_INSTR:
3296 op = bi->ops;
3297 targ->opcode = bi->opcode;
3298 targ->insn_type = ITYPE_INSN;
3299 targ->is_specific_opcode = FALSE;
3300
3301 for (; op != NULL; op = op->next)
3302 {
3303 int op_num = op->op_num;
3304 int op_data = op->op_data;
3305
3306 assert (op->op_num < MAX_INSN_ARGS);
3307
3308 if (targ->ntok <= op_num)
3309 targ->ntok = op_num + 1;
3310
3311 switch (op->typ)
3312 {
3313 case OP_CONSTANT:
3314 set_expr_const (&targ->tok[op_num], op_data);
3315 break;
3316 case OP_OPERAND:
3317 assert (op_data < insn->ntok);
3318 copy_expr (&targ->tok[op_num], &insn->tok[op_data]);
3319 break;
3320 case OP_LITERAL:
3321 sym = get_special_literal_symbol ();
3322 set_expr_symbol_offset (&targ->tok[op_num], sym, 0);
3323 break;
3324 case OP_LABEL:
3325 sym = get_special_label_symbol ();
3326 set_expr_symbol_offset (&targ->tok[op_num], sym, 0);
3327 break;
3328 case OP_OPERAND_HI16U:
3329 case OP_OPERAND_LOW16U:
3330 assert (op_data < insn->ntok);
3331 if (expr_is_const (&insn->tok[op_data]))
3332 {
3333 long val;
3334 copy_expr (&targ->tok[op_num], &insn->tok[op_data]);
3335 val = xg_apply_userdef_op_fn (op->typ,
3336 targ->tok[op_num].
3337 X_add_number);
3338 targ->tok[op_num].X_add_number = val;
3339 }
3340 else
3341 {
3342 /* For const16 we can create relocations for these. */
3343 if (targ->opcode == XTENSA_UNDEFINED
3344 || (targ->opcode != xtensa_const16_opcode))
3345 return FALSE;
3346 assert (op_data < insn->ntok);
3347 /* Need to build a O_lo16 or O_hi16. */
3348 copy_expr (&targ->tok[op_num], &insn->tok[op_data]);
3349 if (targ->tok[op_num].X_op == O_symbol)
3350 {
3351 if (op->typ == OP_OPERAND_HI16U)
3352 targ->tok[op_num].X_op = O_hi16;
3353 else if (op->typ == OP_OPERAND_LOW16U)
3354 targ->tok[op_num].X_op = O_lo16;
3355 else
3356 return FALSE;
3357 }
3358 }
3359 break;
3360 default:
3361 /* currently handles:
3362 OP_OPERAND_LOW8
3363 OP_OPERAND_HI24S
3364 OP_OPERAND_F32MINUS */
3365 if (xg_has_userdef_op_fn (op->typ))
3366 {
3367 assert (op_data < insn->ntok);
3368 if (expr_is_const (&insn->tok[op_data]))
3369 {
3370 long val;
3371 copy_expr (&targ->tok[op_num], &insn->tok[op_data]);
3372 val = xg_apply_userdef_op_fn (op->typ,
3373 targ->tok[op_num].
3374 X_add_number);
3375 targ->tok[op_num].X_add_number = val;
3376 }
3377 else
3378 return FALSE; /* We cannot use a relocation for this. */
3379 break;
3380 }
3381 assert (0);
3382 break;
3383 }
3384 }
3385 break;
3386
3387 case INSTR_LITERAL_DEF:
3388 op = bi->ops;
3389 targ->opcode = XTENSA_UNDEFINED;
3390 targ->insn_type = ITYPE_LITERAL;
3391 targ->is_specific_opcode = FALSE;
3392 for (; op != NULL; op = op->next)
3393 {
3394 int op_num = op->op_num;
3395 int op_data = op->op_data;
3396 assert (op->op_num < MAX_INSN_ARGS);
3397
3398 if (targ->ntok <= op_num)
3399 targ->ntok = op_num + 1;
3400
3401 switch (op->typ)
3402 {
3403 case OP_OPERAND:
3404 assert (op_data < insn->ntok);
3405 /* We can only pass resolvable literals through. */
3406 if (!xg_valid_literal_expression (&insn->tok[op_data]))
3407 return FALSE;
3408 copy_expr (&targ->tok[op_num], &insn->tok[op_data]);
3409 break;
3410 case OP_LITERAL:
3411 case OP_CONSTANT:
3412 case OP_LABEL:
3413 default:
3414 assert (0);
3415 break;
3416 }
3417 }
3418 break;
3419
3420 case INSTR_LABEL_DEF:
3421 op = bi->ops;
3422 targ->opcode = XTENSA_UNDEFINED;
3423 targ->insn_type = ITYPE_LABEL;
3424 targ->is_specific_opcode = FALSE;
3425 /* Literal with no ops is a label? */
3426 assert (op == NULL);
3427 break;
3428
3429 default:
3430 assert (0);
3431 }
3432
3433 return TRUE;
3434 }
3435
3436
3437 /* Return TRUE on success. */
3438
3439 static bfd_boolean
3440 xg_build_to_stack (IStack *istack, TInsn *insn, BuildInstr *bi)
3441 {
3442 for (; bi != NULL; bi = bi->next)
3443 {
3444 TInsn *next_insn = istack_push_space (istack);
3445
3446 if (!xg_build_to_insn (next_insn, insn, bi))
3447 return FALSE;
3448 }
3449 return TRUE;
3450 }
3451
3452
3453 /* Return TRUE on valid expansion. */
3454
3455 static bfd_boolean
3456 xg_expand_to_stack (IStack *istack, TInsn *insn, int lateral_steps)
3457 {
3458 int stack_size = istack->ninsn;
3459 int steps_taken = 0;
3460 TransitionTable *table = xg_build_widen_table (&transition_rule_cmp);
3461 TransitionList *l;
3462
3463 assert (insn->insn_type == ITYPE_INSN);
3464 assert (insn->opcode < table->num_opcodes);
3465
3466 for (l = table->table[insn->opcode]; l != NULL; l = l->next)
3467 {
3468 TransitionRule *rule = l->rule;
3469
3470 if (xg_instruction_matches_rule (insn, rule))
3471 {
3472 if (lateral_steps == steps_taken)
3473 {
3474 int i;
3475
3476 /* This is it. Expand the rule to the stack. */
3477 if (!xg_build_to_stack (istack, insn, rule->to_instr))
3478 return FALSE;
3479
3480 /* Check to see if it fits. */
3481 for (i = stack_size; i < istack->ninsn; i++)
3482 {
3483 TInsn *insn = &istack->insn[i];
3484
3485 if (insn->insn_type == ITYPE_INSN
3486 && !tinsn_has_symbolic_operands (insn)
3487 && !xg_immeds_fit (insn))
3488 {
3489 istack->ninsn = stack_size;
3490 return FALSE;
3491 }
3492 }
3493 return TRUE;
3494 }
3495 steps_taken++;
3496 }
3497 }
3498 return FALSE;
3499 }
3500
3501 \f
3502 /* Relax the assembly instruction at least "min_steps".
3503 Return the number of steps taken.
3504
3505 For relaxation to correctly terminate, every relaxation chain must
3506 terminate in one of two ways:
3507
3508 1. If the chain from one instruction to the next consists entirely of
3509 single instructions, then the chain *must* handle all possible
3510 immediates without failing. It must not ever fail because an
3511 immediate is out of range. The MOVI.N -> MOVI -> L32R relaxation
3512 chain is one example. L32R loads 32 bits, and there cannot be an
3513 immediate larger than 32 bits, so it satisfies this condition.
3514 Single instruction relaxation chains are as defined by
3515 xg_is_single_relaxable_instruction.
3516
3517 2. Otherwise, the chain must end in a multi-instruction expansion: e.g.,
3518 BNEZ.N -> BNEZ -> BNEZ.W15 -> BENZ.N/J
3519
3520 Strictly speaking, in most cases you can violate condition 1 and be OK
3521 -- in particular when the last two instructions have the same single
3522 size. But nevertheless, you should guarantee the above two conditions.
3523
3524 We could fix this so that single-instruction expansions correctly
3525 terminate when they can't handle the range, but the error messages are
3526 worse, and it actually turns out that in every case but one (18-bit wide
3527 branches), you need a multi-instruction expansion to get the full range
3528 anyway. And because 18-bit branches are handled identically to 15-bit
3529 branches, there isn't any point in changing it. */
3530
3531 static int
3532 xg_assembly_relax (IStack *istack,
3533 TInsn *insn,
3534 segT pc_seg,
3535 fragS *pc_frag, /* if pc_frag == 0, not pc-relative */
3536 offsetT pc_offset, /* offset in fragment */
3537 int min_steps, /* minimum conversion steps */
3538 long stretch) /* number of bytes stretched so far */
3539 {
3540 int steps_taken = 0;
3541
3542 /* Some of its immeds don't fit. Try to build a relaxed version.
3543 This may go through a couple of stages of single instruction
3544 transformations before we get there. */
3545
3546 TInsn single_target;
3547 TInsn current_insn;
3548 int lateral_steps = 0;
3549 int istack_size = istack->ninsn;
3550
3551 if (xg_symbolic_immeds_fit (insn, pc_seg, pc_frag, pc_offset, stretch)
3552 && steps_taken >= min_steps)
3553 {
3554 istack_push (istack, insn);
3555 return steps_taken;
3556 }
3557 current_insn = *insn;
3558
3559 /* Walk through all of the single instruction expansions. */
3560 while (xg_is_single_relaxable_insn (&current_insn, &single_target, FALSE))
3561 {
3562 steps_taken++;
3563 if (xg_symbolic_immeds_fit (&single_target, pc_seg, pc_frag, pc_offset,
3564 stretch))
3565 {
3566 if (steps_taken >= min_steps)
3567 {
3568 istack_push (istack, &single_target);
3569 return steps_taken;
3570 }
3571 }
3572 current_insn = single_target;
3573 }
3574
3575 /* Now check for a multi-instruction expansion. */
3576 while (xg_is_relaxable_insn (&current_insn, lateral_steps))
3577 {
3578 if (xg_symbolic_immeds_fit (&current_insn, pc_seg, pc_frag, pc_offset,
3579 stretch))
3580 {
3581 if (steps_taken >= min_steps)
3582 {
3583 istack_push (istack, &current_insn);
3584 return steps_taken;
3585 }
3586 }
3587 steps_taken++;
3588 if (xg_expand_to_stack (istack, &current_insn, lateral_steps))
3589 {
3590 if (steps_taken >= min_steps)
3591 return steps_taken;
3592 }
3593 lateral_steps++;
3594 istack->ninsn = istack_size;
3595 }
3596
3597 /* It's not going to work -- use the original. */
3598 istack_push (istack, insn);
3599 return steps_taken;
3600 }
3601
3602
3603 static void
3604 xg_force_frag_space (int size)
3605 {
3606 /* This may have the side effect of creating a new fragment for the
3607 space to go into. I just do not like the name of the "frag"
3608 functions. */
3609 frag_grow (size);
3610 }
3611
3612
3613 static void
3614 xg_finish_frag (char *last_insn,
3615 enum xtensa_relax_statesE frag_state,
3616 enum xtensa_relax_statesE slot0_state,
3617 int max_growth,
3618 bfd_boolean is_insn)
3619 {
3620 /* Finish off this fragment so that it has at LEAST the desired
3621 max_growth. If it doesn't fit in this fragment, close this one
3622 and start a new one. In either case, return a pointer to the
3623 beginning of the growth area. */
3624
3625 fragS *old_frag;
3626
3627 xg_force_frag_space (max_growth);
3628
3629 old_frag = frag_now;
3630
3631 frag_now->fr_opcode = last_insn;
3632 if (is_insn)
3633 frag_now->tc_frag_data.is_insn = TRUE;
3634
3635 frag_var (rs_machine_dependent, max_growth, max_growth,
3636 frag_state, frag_now->fr_symbol, frag_now->fr_offset, last_insn);
3637
3638 old_frag->tc_frag_data.slot_subtypes[0] = slot0_state;
3639 xtensa_set_frag_assembly_state (frag_now);
3640
3641 /* Just to make sure that we did not split it up. */
3642 assert (old_frag->fr_next == frag_now);
3643 }
3644
3645
3646 /* Return TRUE if the target frag is one of the next non-empty frags. */
3647
3648 static bfd_boolean
3649 is_next_frag_target (const fragS *fragP, const fragS *target)
3650 {
3651 if (fragP == NULL)
3652 return FALSE;
3653
3654 for (; fragP; fragP = fragP->fr_next)
3655 {
3656 if (fragP == target)
3657 return TRUE;
3658 if (fragP->fr_fix != 0)
3659 return FALSE;
3660 if (fragP->fr_type == rs_fill && fragP->fr_offset != 0)
3661 return FALSE;
3662 if ((fragP->fr_type == rs_align || fragP->fr_type == rs_align_code)
3663 && ((fragP->fr_address % (1 << fragP->fr_offset)) != 0))
3664 return FALSE;
3665 if (fragP->fr_type == rs_space)
3666 return FALSE;
3667 }
3668 return FALSE;
3669 }
3670
3671
3672 static bfd_boolean
3673 is_branch_jmp_to_next (TInsn *insn, fragS *fragP)
3674 {
3675 xtensa_isa isa = xtensa_default_isa;
3676 int i;
3677 int num_ops = xtensa_opcode_num_operands (isa, insn->opcode);
3678 int target_op = -1;
3679 symbolS *sym;
3680 fragS *target_frag;
3681
3682 if (xtensa_opcode_is_branch (isa, insn->opcode) != 1
3683 && xtensa_opcode_is_jump (isa, insn->opcode) != 1)
3684 return FALSE;
3685
3686 for (i = 0; i < num_ops; i++)
3687 {
3688 if (xtensa_operand_is_PCrelative (isa, insn->opcode, i) == 1)
3689 {
3690 target_op = i;
3691 break;
3692 }
3693 }
3694 if (target_op == -1)
3695 return FALSE;
3696
3697 if (insn->ntok <= target_op)
3698 return FALSE;
3699
3700 if (insn->tok[target_op].X_op != O_symbol)
3701 return FALSE;
3702
3703 sym = insn->tok[target_op].X_add_symbol;
3704 if (sym == NULL)
3705 return FALSE;
3706
3707 if (insn->tok[target_op].X_add_number != 0)
3708 return FALSE;
3709
3710 target_frag = symbol_get_frag (sym);
3711 if (target_frag == NULL)
3712 return FALSE;
3713
3714 if (is_next_frag_target (fragP->fr_next, target_frag)
3715 && S_GET_VALUE (sym) == target_frag->fr_address)
3716 return TRUE;
3717
3718 return FALSE;
3719 }
3720
3721
3722 static void
3723 xg_add_branch_and_loop_targets (TInsn *insn)
3724 {
3725 xtensa_isa isa = xtensa_default_isa;
3726 int num_ops = xtensa_opcode_num_operands (isa, insn->opcode);
3727
3728 if (xtensa_opcode_is_loop (isa, insn->opcode) == 1)
3729 {
3730 int i = 1;
3731 if (xtensa_operand_is_PCrelative (isa, insn->opcode, i) == 1
3732 && insn->tok[i].X_op == O_symbol)
3733 symbol_get_tc (insn->tok[i].X_add_symbol)->is_loop_target = TRUE;
3734 return;
3735 }
3736
3737 if (xtensa_opcode_is_branch (isa, insn->opcode) == 1
3738 || xtensa_opcode_is_loop (isa, insn->opcode) == 1)
3739 {
3740 int i;
3741
3742 for (i = 0; i < insn->ntok && i < num_ops; i++)
3743 {
3744 if (xtensa_operand_is_PCrelative (isa, insn->opcode, i) == 1
3745 && insn->tok[i].X_op == O_symbol)
3746 {
3747 symbolS *sym = insn->tok[i].X_add_symbol;
3748 symbol_get_tc (sym)->is_branch_target = TRUE;
3749 if (S_IS_DEFINED (sym))
3750 symbol_get_frag (sym)->tc_frag_data.is_branch_target = TRUE;
3751 }
3752 }
3753 }
3754 }
3755
3756
3757 /* Return FALSE if no error. */
3758
3759 static bfd_boolean
3760 xg_build_token_insn (BuildInstr *instr_spec, TInsn *old_insn, TInsn *new_insn)
3761 {
3762 int num_ops = 0;
3763 BuildOp *b_op;
3764
3765 switch (instr_spec->typ)
3766 {
3767 case INSTR_INSTR:
3768 new_insn->insn_type = ITYPE_INSN;
3769 new_insn->opcode = instr_spec->opcode;
3770 break;
3771 case INSTR_LITERAL_DEF:
3772 new_insn->insn_type = ITYPE_LITERAL;
3773 new_insn->opcode = XTENSA_UNDEFINED;
3774 break;
3775 case INSTR_LABEL_DEF:
3776 abort ();
3777 }
3778 new_insn->is_specific_opcode = FALSE;
3779 new_insn->debug_line = old_insn->debug_line;
3780 new_insn->loc_directive_seen = old_insn->loc_directive_seen;
3781
3782 for (b_op = instr_spec->ops; b_op != NULL; b_op = b_op->next)
3783 {
3784 expressionS *exp;
3785 const expressionS *src_exp;
3786
3787 num_ops++;
3788 switch (b_op->typ)
3789 {
3790 case OP_CONSTANT:
3791 /* The expression must be the constant. */
3792 assert (b_op->op_num < MAX_INSN_ARGS);
3793 exp = &new_insn->tok[b_op->op_num];
3794 set_expr_const (exp, b_op->op_data);
3795 break;
3796
3797 case OP_OPERAND:
3798 assert (b_op->op_num < MAX_INSN_ARGS);
3799 assert (b_op->op_data < (unsigned) old_insn->ntok);
3800 src_exp = &old_insn->tok[b_op->op_data];
3801 exp = &new_insn->tok[b_op->op_num];
3802 copy_expr (exp, src_exp);
3803 break;
3804
3805 case OP_LITERAL:
3806 case OP_LABEL:
3807 as_bad (_("can't handle generation of literal/labels yet"));
3808 assert (0);
3809
3810 default:
3811 as_bad (_("can't handle undefined OP TYPE"));
3812 assert (0);
3813 }
3814 }
3815
3816 new_insn->ntok = num_ops;
3817 return FALSE;
3818 }
3819
3820
3821 /* Return TRUE if it was simplified. */
3822
3823 static bfd_boolean
3824 xg_simplify_insn (TInsn *old_insn, TInsn *new_insn)
3825 {
3826 TransitionRule *rule;
3827 BuildInstr *insn_spec;
3828
3829 if (old_insn->is_specific_opcode || !density_supported)
3830 return FALSE;
3831
3832 rule = xg_instruction_match (old_insn);
3833 if (rule == NULL)
3834 return FALSE;
3835
3836 insn_spec = rule->to_instr;
3837 /* There should only be one. */
3838 assert (insn_spec != NULL);
3839 assert (insn_spec->next == NULL);
3840 if (insn_spec->next != NULL)
3841 return FALSE;
3842
3843 xg_build_token_insn (insn_spec, old_insn, new_insn);
3844
3845 return TRUE;
3846 }
3847
3848
3849 /* xg_expand_assembly_insn: (1) Simplify the instruction, i.e., l32i ->
3850 l32i.n. (2) Check the number of operands. (3) Place the instruction
3851 tokens into the stack or relax it and place multiple
3852 instructions/literals onto the stack. Return FALSE if no error. */
3853
3854 static bfd_boolean
3855 xg_expand_assembly_insn (IStack *istack, TInsn *orig_insn)
3856 {
3857 int noperands;
3858 TInsn new_insn;
3859 bfd_boolean do_expand;
3860
3861 tinsn_init (&new_insn);
3862
3863 /* Narrow it if we can. xg_simplify_insn now does all the
3864 appropriate checking (e.g., for the density option). */
3865 if (xg_simplify_insn (orig_insn, &new_insn))
3866 orig_insn = &new_insn;
3867
3868 noperands = xtensa_opcode_num_operands (xtensa_default_isa,
3869 orig_insn->opcode);
3870 if (orig_insn->ntok < noperands)
3871 {
3872 as_bad (_("found %d operands for '%s': Expected %d"),
3873 orig_insn->ntok,
3874 xtensa_opcode_name (xtensa_default_isa, orig_insn->opcode),
3875 noperands);
3876 return TRUE;
3877 }
3878 if (orig_insn->ntok > noperands)
3879 as_warn (_("found too many (%d) operands for '%s': Expected %d"),
3880 orig_insn->ntok,
3881 xtensa_opcode_name (xtensa_default_isa, orig_insn->opcode),
3882 noperands);
3883
3884 /* If there are not enough operands, we will assert above. If there
3885 are too many, just cut out the extras here. */
3886 orig_insn->ntok = noperands;
3887
3888 if (tinsn_has_invalid_symbolic_operands (orig_insn))
3889 return TRUE;
3890
3891 /* Special case for extui opcode which has constraints not handled
3892 by the ordinary operand encoding checks. The number of operands
3893 and related syntax issues have already been checked. */
3894 if (orig_insn->opcode == xtensa_extui_opcode)
3895 {
3896 int shiftimm = orig_insn->tok[2].X_add_number;
3897 int maskimm = orig_insn->tok[3].X_add_number;
3898 if (shiftimm + maskimm > 32)
3899 {
3900 as_bad (_("immediate operands sum to greater than 32"));
3901 return TRUE;
3902 }
3903 }
3904
3905 /* If the instruction will definitely need to be relaxed, it is better
3906 to expand it now for better scheduling. Decide whether to expand
3907 now.... */
3908 do_expand = (!orig_insn->is_specific_opcode && use_transform ());
3909
3910 /* Calls should be expanded to longcalls only in the backend relaxation
3911 so that the assembly scheduler will keep the L32R/CALLX instructions
3912 adjacent. */
3913 if (is_direct_call_opcode (orig_insn->opcode))
3914 do_expand = FALSE;
3915
3916 if (tinsn_has_symbolic_operands (orig_insn))
3917 {
3918 /* The values of symbolic operands are not known yet, so only expand
3919 now if an operand is "complex" (e.g., difference of symbols) and
3920 will have to be stored as a literal regardless of the value. */
3921 if (!tinsn_has_complex_operands (orig_insn))
3922 do_expand = FALSE;
3923 }
3924 else if (xg_immeds_fit (orig_insn))
3925 do_expand = FALSE;
3926
3927 if (do_expand)
3928 xg_assembly_relax (istack, orig_insn, 0, 0, 0, 0, 0);
3929 else
3930 istack_push (istack, orig_insn);
3931
3932 return FALSE;
3933 }
3934
3935
3936 /* Return TRUE if the section flags are marked linkonce
3937 or the name is .gnu.linkonce.*. */
3938
3939 static int linkonce_len = sizeof (".gnu.linkonce.") - 1;
3940
3941 static bfd_boolean
3942 get_is_linkonce_section (bfd *abfd ATTRIBUTE_UNUSED, segT sec)
3943 {
3944 flagword flags, link_once_flags;
3945
3946 flags = bfd_get_section_flags (abfd, sec);
3947 link_once_flags = (flags & SEC_LINK_ONCE);
3948
3949 /* Flags might not be set yet. */
3950 if (!link_once_flags
3951 && strncmp (segment_name (sec), ".gnu.linkonce.", linkonce_len) == 0)
3952 link_once_flags = SEC_LINK_ONCE;
3953
3954 return (link_once_flags != 0);
3955 }
3956
3957
3958 static void
3959 xtensa_add_literal_sym (symbolS *sym)
3960 {
3961 sym_list *l;
3962
3963 l = (sym_list *) xmalloc (sizeof (sym_list));
3964 l->sym = sym;
3965 l->next = literal_syms;
3966 literal_syms = l;
3967 }
3968
3969
3970 static symbolS *
3971 xtensa_create_literal_symbol (segT sec, fragS *frag)
3972 {
3973 static int lit_num = 0;
3974 static char name[256];
3975 symbolS *symbolP;
3976
3977 sprintf (name, ".L_lit_sym%d", lit_num);
3978
3979 /* Create a local symbol. If it is in a linkonce section, we have to
3980 be careful to make sure that if it is used in a relocation that the
3981 symbol will be in the output file. */
3982 if (get_is_linkonce_section (stdoutput, sec))
3983 {
3984 symbolP = symbol_new (name, sec, 0, frag);
3985 S_CLEAR_EXTERNAL (symbolP);
3986 /* symbolP->local = 1; */
3987 }
3988 else
3989 symbolP = symbol_new (name, sec, 0, frag);
3990
3991 xtensa_add_literal_sym (symbolP);
3992
3993 lit_num++;
3994 return symbolP;
3995 }
3996
3997
3998 /* Currently all literals that are generated here are 32-bit L32R targets. */
3999
4000 static symbolS *
4001 xg_assemble_literal (/* const */ TInsn *insn)
4002 {
4003 emit_state state;
4004 symbolS *lit_sym = NULL;
4005 bfd_reloc_code_real_type reloc;
4006 char *p;
4007
4008 /* size = 4 for L32R. It could easily be larger when we move to
4009 larger constants. Add a parameter later. */
4010 offsetT litsize = 4;
4011 offsetT litalign = 2; /* 2^2 = 4 */
4012 expressionS saved_loc;
4013 expressionS * emit_val;
4014
4015 set_expr_symbol_offset (&saved_loc, frag_now->fr_symbol, frag_now_fix ());
4016
4017 assert (insn->insn_type == ITYPE_LITERAL);
4018 assert (insn->ntok == 1); /* must be only one token here */
4019
4020 xtensa_switch_to_literal_fragment (&state);
4021
4022 emit_val = &insn->tok[0];
4023 if (emit_val->X_op == O_big)
4024 {
4025 int size = emit_val->X_add_number * CHARS_PER_LITTLENUM;
4026 if (size > litsize)
4027 {
4028 /* This happens when someone writes a "movi a2, big_number". */
4029 as_bad_where (frag_now->fr_file, frag_now->fr_line,
4030 _("invalid immediate"));
4031 xtensa_restore_emit_state (&state);
4032 return NULL;
4033 }
4034 }
4035
4036 /* Force a 4-byte align here. Note that this opens a new frag, so all
4037 literals done with this function have a frag to themselves. That's
4038 important for the way text section literals work. */
4039 frag_align (litalign, 0, 0);
4040 record_alignment (now_seg, litalign);
4041
4042 switch (emit_val->X_op)
4043 {
4044 case O_pltrel:
4045 p = frag_more (litsize);
4046 xtensa_set_frag_assembly_state (frag_now);
4047 reloc = map_operator_to_reloc (emit_val->X_op);
4048 if (emit_val->X_add_symbol)
4049 emit_val->X_op = O_symbol;
4050 else
4051 emit_val->X_op = O_constant;
4052 fix_new_exp (frag_now, p - frag_now->fr_literal,
4053 litsize, emit_val, 0, reloc);
4054 break;
4055
4056 default:
4057 emit_expr (emit_val, litsize);
4058 break;
4059 }
4060
4061 assert (frag_now->tc_frag_data.literal_frag == NULL);
4062 frag_now->tc_frag_data.literal_frag = get_literal_pool_location (now_seg);
4063 frag_now->fr_symbol = xtensa_create_literal_symbol (now_seg, frag_now);
4064 lit_sym = frag_now->fr_symbol;
4065
4066 /* Go back. */
4067 xtensa_restore_emit_state (&state);
4068 return lit_sym;
4069 }
4070
4071
4072 static void
4073 xg_assemble_literal_space (/* const */ int size, int slot)
4074 {
4075 emit_state state;
4076 /* We might have to do something about this alignment. It only
4077 takes effect if something is placed here. */
4078 offsetT litalign = 2; /* 2^2 = 4 */
4079 fragS *lit_saved_frag;
4080
4081 assert (size % 4 == 0);
4082
4083 xtensa_switch_to_literal_fragment (&state);
4084
4085 /* Force a 4-byte align here. */
4086 frag_align (litalign, 0, 0);
4087 record_alignment (now_seg, litalign);
4088
4089 xg_force_frag_space (size);
4090
4091 lit_saved_frag = frag_now;
4092 frag_now->tc_frag_data.literal_frag = get_literal_pool_location (now_seg);
4093 frag_now->fr_symbol = xtensa_create_literal_symbol (now_seg, frag_now);
4094 xg_finish_frag (0, RELAX_LITERAL, 0, size, FALSE);
4095
4096 /* Go back. */
4097 xtensa_restore_emit_state (&state);
4098 frag_now->tc_frag_data.literal_frags[slot] = lit_saved_frag;
4099 }
4100
4101
4102 /* Put in a fixup record based on the opcode.
4103 Return TRUE on success. */
4104
4105 static bfd_boolean
4106 xg_add_opcode_fix (TInsn *tinsn,
4107 int opnum,
4108 xtensa_format fmt,
4109 int slot,
4110 expressionS *expr,
4111 fragS *fragP,
4112 offsetT offset)
4113 {
4114 xtensa_opcode opcode = tinsn->opcode;
4115 bfd_reloc_code_real_type reloc;
4116 reloc_howto_type *howto;
4117 int fmt_length;
4118 fixS *the_fix;
4119
4120 reloc = BFD_RELOC_NONE;
4121
4122 /* First try the special cases for "alternate" relocs. */
4123 if (opcode == xtensa_l32r_opcode)
4124 {
4125 if (fragP->tc_frag_data.use_absolute_literals)
4126 reloc = encode_alt_reloc (slot);
4127 }
4128 else if (opcode == xtensa_const16_opcode)
4129 {
4130 if (expr->X_op == O_lo16)
4131 {
4132 reloc = encode_reloc (slot);
4133 expr->X_op = O_symbol;
4134 }
4135 else if (expr->X_op == O_hi16)
4136 {
4137 reloc = encode_alt_reloc (slot);
4138 expr->X_op = O_symbol;
4139 }
4140 }
4141
4142 if (opnum != get_relaxable_immed (opcode))
4143 {
4144 as_bad (_("invalid relocation for operand %i of '%s'"),
4145 opnum + 1, xtensa_opcode_name (xtensa_default_isa, opcode));
4146 return FALSE;
4147 }
4148
4149 /* Handle erroneous "@h" and "@l" expressions here before they propagate
4150 into the symbol table where the generic portions of the assembler
4151 won't know what to do with them. */
4152 if (expr->X_op == O_lo16 || expr->X_op == O_hi16)
4153 {
4154 as_bad (_("invalid expression for operand %i of '%s'"),
4155 opnum + 1, xtensa_opcode_name (xtensa_default_isa, opcode));
4156 return FALSE;
4157 }
4158
4159 /* Next try the generic relocs. */
4160 if (reloc == BFD_RELOC_NONE)
4161 reloc = encode_reloc (slot);
4162 if (reloc == BFD_RELOC_NONE)
4163 {
4164 as_bad (_("invalid relocation in instruction slot %i"), slot);
4165 return FALSE;
4166 }
4167
4168 howto = bfd_reloc_type_lookup (stdoutput, reloc);
4169 if (!howto)
4170 {
4171 as_bad (_("undefined symbol for opcode \"%s\""),
4172 xtensa_opcode_name (xtensa_default_isa, opcode));
4173 return FALSE;
4174 }
4175
4176 fmt_length = xtensa_format_length (xtensa_default_isa, fmt);
4177 the_fix = fix_new_exp (fragP, offset, fmt_length, expr,
4178 howto->pc_relative, reloc);
4179 the_fix->fx_no_overflow = 1;
4180 the_fix->tc_fix_data.X_add_symbol = expr->X_add_symbol;
4181 the_fix->tc_fix_data.X_add_number = expr->X_add_number;
4182 the_fix->tc_fix_data.slot = slot;
4183
4184 return TRUE;
4185 }
4186
4187
4188 static bfd_boolean
4189 xg_emit_insn_to_buf (TInsn *tinsn,
4190 char *buf,
4191 fragS *fragP,
4192 offsetT offset,
4193 bfd_boolean build_fix)
4194 {
4195 static xtensa_insnbuf insnbuf = NULL;
4196 bfd_boolean has_symbolic_immed = FALSE;
4197 bfd_boolean ok = TRUE;
4198
4199 if (!insnbuf)
4200 insnbuf = xtensa_insnbuf_alloc (xtensa_default_isa);
4201
4202 has_symbolic_immed = tinsn_to_insnbuf (tinsn, insnbuf);
4203 if (has_symbolic_immed && build_fix)
4204 {
4205 /* Add a fixup. */
4206 xtensa_format fmt = xg_get_single_format (tinsn->opcode);
4207 int slot = xg_get_single_slot (tinsn->opcode);
4208 int opnum = get_relaxable_immed (tinsn->opcode);
4209 expressionS *exp = &tinsn->tok[opnum];
4210
4211 if (!xg_add_opcode_fix (tinsn, opnum, fmt, slot, exp, fragP, offset))
4212 ok = FALSE;
4213 }
4214 fragP->tc_frag_data.is_insn = TRUE;
4215 xtensa_insnbuf_to_chars (xtensa_default_isa, insnbuf,
4216 (unsigned char *) buf, 0);
4217 return ok;
4218 }
4219
4220
4221 static void
4222 xg_resolve_literals (TInsn *insn, symbolS *lit_sym)
4223 {
4224 symbolS *sym = get_special_literal_symbol ();
4225 int i;
4226 if (lit_sym == 0)
4227 return;
4228 assert (insn->insn_type == ITYPE_INSN);
4229 for (i = 0; i < insn->ntok; i++)
4230 if (insn->tok[i].X_add_symbol == sym)
4231 insn->tok[i].X_add_symbol = lit_sym;
4232
4233 }
4234
4235
4236 static void
4237 xg_resolve_labels (TInsn *insn, symbolS *label_sym)
4238 {
4239 symbolS *sym = get_special_label_symbol ();
4240 int i;
4241 for (i = 0; i < insn->ntok; i++)
4242 if (insn->tok[i].X_add_symbol == sym)
4243 insn->tok[i].X_add_symbol = label_sym;
4244
4245 }
4246
4247
4248 /* Return TRUE if the instruction can write to the specified
4249 integer register. */
4250
4251 static bfd_boolean
4252 is_register_writer (const TInsn *insn, const char *regset, int regnum)
4253 {
4254 int i;
4255 int num_ops;
4256 xtensa_isa isa = xtensa_default_isa;
4257
4258 num_ops = xtensa_opcode_num_operands (isa, insn->opcode);
4259
4260 for (i = 0; i < num_ops; i++)
4261 {
4262 char inout;
4263 inout = xtensa_operand_inout (isa, insn->opcode, i);
4264 if ((inout == 'o' || inout == 'm')
4265 && xtensa_operand_is_register (isa, insn->opcode, i) == 1)
4266 {
4267 xtensa_regfile opnd_rf =
4268 xtensa_operand_regfile (isa, insn->opcode, i);
4269 if (!strcmp (xtensa_regfile_shortname (isa, opnd_rf), regset))
4270 {
4271 if ((insn->tok[i].X_op == O_register)
4272 && (insn->tok[i].X_add_number == regnum))
4273 return TRUE;
4274 }
4275 }
4276 }
4277 return FALSE;
4278 }
4279
4280
4281 static bfd_boolean
4282 is_bad_loopend_opcode (const TInsn *tinsn)
4283 {
4284 xtensa_opcode opcode = tinsn->opcode;
4285
4286 if (opcode == XTENSA_UNDEFINED)
4287 return FALSE;
4288
4289 if (opcode == xtensa_call0_opcode
4290 || opcode == xtensa_callx0_opcode
4291 || opcode == xtensa_call4_opcode
4292 || opcode == xtensa_callx4_opcode
4293 || opcode == xtensa_call8_opcode
4294 || opcode == xtensa_callx8_opcode
4295 || opcode == xtensa_call12_opcode
4296 || opcode == xtensa_callx12_opcode
4297 || opcode == xtensa_isync_opcode
4298 || opcode == xtensa_ret_opcode
4299 || opcode == xtensa_ret_n_opcode
4300 || opcode == xtensa_retw_opcode
4301 || opcode == xtensa_retw_n_opcode
4302 || opcode == xtensa_waiti_opcode
4303 || opcode == xtensa_rsr_lcount_opcode)
4304 return TRUE;
4305
4306 return FALSE;
4307 }
4308
4309
4310 /* Labels that begin with ".Ln" or ".LM" are unaligned.
4311 This allows the debugger to add unaligned labels.
4312 Also, the assembler generates stabs labels that need
4313 not be aligned: FAKE_LABEL_NAME . {"F", "L", "endfunc"}. */
4314
4315 static bfd_boolean
4316 is_unaligned_label (symbolS *sym)
4317 {
4318 const char *name = S_GET_NAME (sym);
4319 static size_t fake_size = 0;
4320
4321 if (name
4322 && name[0] == '.'
4323 && name[1] == 'L' && (name[2] == 'n' || name[2] == 'M'))
4324 return TRUE;
4325
4326 /* FAKE_LABEL_NAME followed by "F", "L" or "endfunc" */
4327 if (fake_size == 0)
4328 fake_size = strlen (FAKE_LABEL_NAME);
4329
4330 if (name
4331 && strncmp (FAKE_LABEL_NAME, name, fake_size) == 0
4332 && (name[fake_size] == 'F'
4333 || name[fake_size] == 'L'
4334 || (name[fake_size] == 'e'
4335 && strncmp ("endfunc", name+fake_size, 7) == 0)))
4336 return TRUE;
4337
4338 return FALSE;
4339 }
4340
4341
4342 static fragS *
4343 next_non_empty_frag (const fragS *fragP)
4344 {
4345 fragS *next_fragP = fragP->fr_next;
4346
4347 /* Sometimes an empty will end up here due storage allocation issues.
4348 So we have to skip until we find something legit. */
4349 while (next_fragP && next_fragP->fr_fix == 0)
4350 next_fragP = next_fragP->fr_next;
4351
4352 if (next_fragP == NULL || next_fragP->fr_fix == 0)
4353 return NULL;
4354
4355 return next_fragP;
4356 }
4357
4358
4359 static bfd_boolean
4360 next_frag_opcode_is_loop (const fragS *fragP, xtensa_opcode *opcode)
4361 {
4362 xtensa_opcode out_opcode;
4363 const fragS *next_fragP = next_non_empty_frag (fragP);
4364
4365 if (next_fragP == NULL)
4366 return FALSE;
4367
4368 out_opcode = get_opcode_from_buf (next_fragP->fr_literal, 0);
4369 if (xtensa_opcode_is_loop (xtensa_default_isa, out_opcode) == 1)
4370 {
4371 *opcode = out_opcode;
4372 return TRUE;
4373 }
4374 return FALSE;
4375 }
4376
4377
4378 static int
4379 frag_format_size (const fragS *fragP)
4380 {
4381 static xtensa_insnbuf insnbuf = NULL;
4382 xtensa_isa isa = xtensa_default_isa;
4383 xtensa_format fmt;
4384 int fmt_size;
4385
4386 if (!insnbuf)
4387 insnbuf = xtensa_insnbuf_alloc (isa);
4388
4389 if (fragP == NULL)
4390 return XTENSA_UNDEFINED;
4391
4392 xtensa_insnbuf_from_chars (isa, insnbuf,
4393 (unsigned char *) fragP->fr_literal, 0);
4394
4395 fmt = xtensa_format_decode (isa, insnbuf);
4396 if (fmt == XTENSA_UNDEFINED)
4397 return XTENSA_UNDEFINED;
4398 fmt_size = xtensa_format_length (isa, fmt);
4399
4400 /* If the next format won't be changing due to relaxation, just
4401 return the length of the first format. */
4402 if (fragP->fr_opcode != fragP->fr_literal)
4403 return fmt_size;
4404
4405 /* If during relaxation we have to pull an instruction out of a
4406 multi-slot instruction, we will return the more conservative
4407 number. This works because alignment on bigger instructions
4408 is more restrictive than alignment on smaller instructions.
4409 This is more conservative than we would like, but it happens
4410 infrequently. */
4411
4412 if (xtensa_format_num_slots (xtensa_default_isa, fmt) > 1)
4413 return fmt_size;
4414
4415 /* If we aren't doing one of our own relaxations or it isn't
4416 slot-based, then the insn size won't change. */
4417 if (fragP->fr_type != rs_machine_dependent)
4418 return fmt_size;
4419 if (fragP->fr_subtype != RELAX_SLOTS)
4420 return fmt_size;
4421
4422 /* If an instruction is about to grow, return the longer size. */
4423 if (fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED_STEP1
4424 || fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED_STEP2
4425 || fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED_STEP3)
4426 return 3;
4427
4428 if (fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW)
4429 return 2 + fragP->tc_frag_data.text_expansion[0];
4430
4431 return fmt_size;
4432 }
4433
4434
4435 static int
4436 next_frag_format_size (const fragS *fragP)
4437 {
4438 const fragS *next_fragP = next_non_empty_frag (fragP);
4439 return frag_format_size (next_fragP);
4440 }
4441
4442
4443 /* In early Xtensa Processors, for reasons that are unclear, the ISA
4444 required two-byte instructions to be treated as three-byte instructions
4445 for loop instruction alignment. This restriction was removed beginning
4446 with Xtensa LX. Now the only requirement on loop instruction alignment
4447 is that the first instruction of the loop must appear at an address that
4448 does not cross a fetch boundary. */
4449
4450 static int
4451 get_loop_align_size (int insn_size)
4452 {
4453 if (insn_size == XTENSA_UNDEFINED)
4454 return xtensa_fetch_width;
4455
4456 if (enforce_three_byte_loop_align && insn_size == 2)
4457 return 3;
4458
4459 return insn_size;
4460 }
4461
4462
4463 /* If the next legit fragment is an end-of-loop marker,
4464 switch its state so it will instantiate a NOP. */
4465
4466 static void
4467 update_next_frag_state (fragS *fragP)
4468 {
4469 fragS *next_fragP = fragP->fr_next;
4470 fragS *new_target = NULL;
4471
4472 if (align_targets)
4473 {
4474 /* We are guaranteed there will be one of these... */
4475 while (!(next_fragP->fr_type == rs_machine_dependent
4476 && (next_fragP->fr_subtype == RELAX_MAYBE_UNREACHABLE
4477 || next_fragP->fr_subtype == RELAX_UNREACHABLE)))
4478 next_fragP = next_fragP->fr_next;
4479
4480 assert (next_fragP->fr_type == rs_machine_dependent
4481 && (next_fragP->fr_subtype == RELAX_MAYBE_UNREACHABLE
4482 || next_fragP->fr_subtype == RELAX_UNREACHABLE));
4483
4484 /* ...and one of these. */
4485 new_target = next_fragP->fr_next;
4486 while (!(new_target->fr_type == rs_machine_dependent
4487 && (new_target->fr_subtype == RELAX_MAYBE_DESIRE_ALIGN
4488 || new_target->fr_subtype == RELAX_DESIRE_ALIGN)))
4489 new_target = new_target->fr_next;
4490
4491 assert (new_target->fr_type == rs_machine_dependent
4492 && (new_target->fr_subtype == RELAX_MAYBE_DESIRE_ALIGN
4493 || new_target->fr_subtype == RELAX_DESIRE_ALIGN));
4494 }
4495
4496 while (next_fragP && next_fragP->fr_fix == 0)
4497 {
4498 if (next_fragP->fr_type == rs_machine_dependent
4499 && next_fragP->fr_subtype == RELAX_LOOP_END)
4500 {
4501 next_fragP->fr_subtype = RELAX_LOOP_END_ADD_NOP;
4502 return;
4503 }
4504
4505 next_fragP = next_fragP->fr_next;
4506 }
4507 }
4508
4509
4510 static bfd_boolean
4511 next_frag_is_branch_target (const fragS *fragP)
4512 {
4513 /* Sometimes an empty will end up here due to storage allocation issues,
4514 so we have to skip until we find something legit. */
4515 for (fragP = fragP->fr_next; fragP; fragP = fragP->fr_next)
4516 {
4517 if (fragP->tc_frag_data.is_branch_target)
4518 return TRUE;
4519 if (fragP->fr_fix != 0)
4520 break;
4521 }
4522 return FALSE;
4523 }
4524
4525
4526 static bfd_boolean
4527 next_frag_is_loop_target (const fragS *fragP)
4528 {
4529 /* Sometimes an empty will end up here due storage allocation issues.
4530 So we have to skip until we find something legit. */
4531 for (fragP = fragP->fr_next; fragP; fragP = fragP->fr_next)
4532 {
4533 if (fragP->tc_frag_data.is_loop_target)
4534 return TRUE;
4535 if (fragP->fr_fix != 0)
4536 break;
4537 }
4538 return FALSE;
4539 }
4540
4541
4542 static addressT
4543 next_frag_pre_opcode_bytes (const fragS *fragp)
4544 {
4545 const fragS *next_fragp = fragp->fr_next;
4546 xtensa_opcode next_opcode;
4547
4548 if (!next_frag_opcode_is_loop (fragp, &next_opcode))
4549 return 0;
4550
4551 /* Sometimes an empty will end up here due to storage allocation issues,
4552 so we have to skip until we find something legit. */
4553 while (next_fragp->fr_fix == 0)
4554 next_fragp = next_fragp->fr_next;
4555
4556 if (next_fragp->fr_type != rs_machine_dependent)
4557 return 0;
4558
4559 /* There is some implicit knowledge encoded in here.
4560 The LOOP instructions that are NOT RELAX_IMMED have
4561 been relaxed. Note that we can assume that the LOOP
4562 instruction is in slot 0 because loops aren't bundleable. */
4563 if (next_fragp->tc_frag_data.slot_subtypes[0] > RELAX_IMMED)
4564 return get_expanded_loop_offset (next_opcode);
4565
4566 return 0;
4567 }
4568
4569
4570 /* Mark a location where we can later insert literal frags. Update
4571 the section's literal_pool_loc, so subsequent literals can be
4572 placed nearest to their use. */
4573
4574 static void
4575 xtensa_mark_literal_pool_location (void)
4576 {
4577 /* Any labels pointing to the current location need
4578 to be adjusted to after the literal pool. */
4579 emit_state s;
4580 fragS *pool_location;
4581
4582 if (use_literal_section)
4583 return;
4584
4585 /* We stash info in these frags so we can later move the literal's
4586 fixes into this frchain's fix list. */
4587 pool_location = frag_now;
4588 frag_now->tc_frag_data.lit_frchain = frchain_now;
4589 frag_now->tc_frag_data.literal_frag = frag_now;
4590 frag_variant (rs_machine_dependent, 0, 0,
4591 RELAX_LITERAL_POOL_BEGIN, NULL, 0, NULL);
4592 xtensa_set_frag_assembly_state (frag_now);
4593 frag_now->tc_frag_data.lit_seg = now_seg;
4594 frag_variant (rs_machine_dependent, 0, 0,
4595 RELAX_LITERAL_POOL_END, NULL, 0, NULL);
4596 xtensa_set_frag_assembly_state (frag_now);
4597
4598 /* Now put a frag into the literal pool that points to this location. */
4599 set_literal_pool_location (now_seg, pool_location);
4600 xtensa_switch_to_non_abs_literal_fragment (&s);
4601 frag_align (2, 0, 0);
4602 record_alignment (now_seg, 2);
4603
4604 /* Close whatever frag is there. */
4605 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
4606 xtensa_set_frag_assembly_state (frag_now);
4607 frag_now->tc_frag_data.literal_frag = pool_location;
4608 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
4609 xtensa_restore_emit_state (&s);
4610 xtensa_set_frag_assembly_state (frag_now);
4611 }
4612
4613
4614 /* Build a nop of the correct size into tinsn. */
4615
4616 static void
4617 build_nop (TInsn *tinsn, int size)
4618 {
4619 tinsn_init (tinsn);
4620 switch (size)
4621 {
4622 case 2:
4623 tinsn->opcode = xtensa_nop_n_opcode;
4624 tinsn->ntok = 0;
4625 if (tinsn->opcode == XTENSA_UNDEFINED)
4626 as_fatal (_("opcode 'NOP.N' unavailable in this configuration"));
4627 break;
4628
4629 case 3:
4630 if (xtensa_nop_opcode == XTENSA_UNDEFINED)
4631 {
4632 tinsn->opcode = xtensa_or_opcode;
4633 set_expr_const (&tinsn->tok[0], 1);
4634 set_expr_const (&tinsn->tok[1], 1);
4635 set_expr_const (&tinsn->tok[2], 1);
4636 tinsn->ntok = 3;
4637 }
4638 else
4639 tinsn->opcode = xtensa_nop_opcode;
4640
4641 assert (tinsn->opcode != XTENSA_UNDEFINED);
4642 }
4643 }
4644
4645
4646 /* Assemble a NOP of the requested size in the buffer. User must have
4647 allocated "buf" with at least "size" bytes. */
4648
4649 static void
4650 assemble_nop (int size, char *buf)
4651 {
4652 static xtensa_insnbuf insnbuf = NULL;
4653 TInsn tinsn;
4654
4655 build_nop (&tinsn, size);
4656
4657 if (!insnbuf)
4658 insnbuf = xtensa_insnbuf_alloc (xtensa_default_isa);
4659
4660 tinsn_to_insnbuf (&tinsn, insnbuf);
4661 xtensa_insnbuf_to_chars (xtensa_default_isa, insnbuf,
4662 (unsigned char *) buf, 0);
4663 }
4664
4665
4666 /* Return the number of bytes for the offset of the expanded loop
4667 instruction. This should be incorporated into the relaxation
4668 specification but is hard-coded here. This is used to auto-align
4669 the loop instruction. It is invalid to call this function if the
4670 configuration does not have loops or if the opcode is not a loop
4671 opcode. */
4672
4673 static addressT
4674 get_expanded_loop_offset (xtensa_opcode opcode)
4675 {
4676 /* This is the OFFSET of the loop instruction in the expanded loop.
4677 This MUST correspond directly to the specification of the loop
4678 expansion. It will be validated on fragment conversion. */
4679 assert (opcode != XTENSA_UNDEFINED);
4680 if (opcode == xtensa_loop_opcode)
4681 return 0;
4682 if (opcode == xtensa_loopnez_opcode)
4683 return 3;
4684 if (opcode == xtensa_loopgtz_opcode)
4685 return 6;
4686 as_fatal (_("get_expanded_loop_offset: invalid opcode"));
4687 return 0;
4688 }
4689
4690
4691 static fragS *
4692 get_literal_pool_location (segT seg)
4693 {
4694 return seg_info (seg)->tc_segment_info_data.literal_pool_loc;
4695 }
4696
4697
4698 static void
4699 set_literal_pool_location (segT seg, fragS *literal_pool_loc)
4700 {
4701 seg_info (seg)->tc_segment_info_data.literal_pool_loc = literal_pool_loc;
4702 }
4703
4704
4705 /* Set frag assembly state should be called when a new frag is
4706 opened and after a frag has been closed. */
4707
4708 static void
4709 xtensa_set_frag_assembly_state (fragS *fragP)
4710 {
4711 if (!density_supported)
4712 fragP->tc_frag_data.is_no_density = TRUE;
4713
4714 /* This function is called from subsegs_finish, which is called
4715 after xtensa_end, so we can't use "use_transform" or
4716 "use_schedule" here. */
4717 if (!directive_state[directive_transform])
4718 fragP->tc_frag_data.is_no_transform = TRUE;
4719 if (directive_state[directive_longcalls])
4720 fragP->tc_frag_data.use_longcalls = TRUE;
4721 fragP->tc_frag_data.use_absolute_literals =
4722 directive_state[directive_absolute_literals];
4723 fragP->tc_frag_data.is_assembly_state_set = TRUE;
4724 }
4725
4726
4727 static bfd_boolean
4728 relaxable_section (asection *sec)
4729 {
4730 return ((sec->flags & SEC_DEBUGGING) == 0
4731 && strcmp (sec->name, ".eh_frame") != 0);
4732 }
4733
4734
4735 static void
4736 xtensa_mark_frags_for_org (void)
4737 {
4738 segT *seclist;
4739
4740 /* Walk over each fragment of all of the current segments. If we find
4741 a .org frag in any of the segments, mark all frags prior to it as
4742 "no transform", which will prevent linker optimizations from messing
4743 up the .org distance. This should be done after
4744 xtensa_find_unmarked_state_frags, because we don't want to worry here
4745 about that function trashing the data we save here. */
4746
4747 for (seclist = &stdoutput->sections;
4748 seclist && *seclist;
4749 seclist = &(*seclist)->next)
4750 {
4751 segT sec = *seclist;
4752 segment_info_type *seginfo;
4753 fragS *fragP;
4754 flagword flags;
4755 flags = bfd_get_section_flags (stdoutput, sec);
4756 if (flags & SEC_DEBUGGING)
4757 continue;
4758 if (!(flags & SEC_ALLOC))
4759 continue;
4760
4761 seginfo = seg_info (sec);
4762 if (seginfo && seginfo->frchainP)
4763 {
4764 fragS *last_fragP = seginfo->frchainP->frch_root;
4765 for (fragP = seginfo->frchainP->frch_root; fragP;
4766 fragP = fragP->fr_next)
4767 {
4768 /* cvt_frag_to_fill has changed the fr_type of org frags to
4769 rs_fill, so use the value as cached in rs_subtype here. */
4770 if (fragP->fr_subtype == RELAX_ORG)
4771 {
4772 while (last_fragP != fragP->fr_next)
4773 {
4774 last_fragP->tc_frag_data.is_no_transform = TRUE;
4775 last_fragP = last_fragP->fr_next;
4776 }
4777 }
4778 }
4779 }
4780 }
4781 }
4782
4783
4784 static void
4785 xtensa_find_unmarked_state_frags (void)
4786 {
4787 segT *seclist;
4788
4789 /* Walk over each fragment of all of the current segments. For each
4790 unmarked fragment, mark it with the same info as the previous
4791 fragment. */
4792 for (seclist = &stdoutput->sections;
4793 seclist && *seclist;
4794 seclist = &(*seclist)->next)
4795 {
4796 segT sec = *seclist;
4797 segment_info_type *seginfo;
4798 fragS *fragP;
4799 flagword flags;
4800 flags = bfd_get_section_flags (stdoutput, sec);
4801 if (flags & SEC_DEBUGGING)
4802 continue;
4803 if (!(flags & SEC_ALLOC))
4804 continue;
4805
4806 seginfo = seg_info (sec);
4807 if (seginfo && seginfo->frchainP)
4808 {
4809 fragS *last_fragP = 0;
4810 for (fragP = seginfo->frchainP->frch_root; fragP;
4811 fragP = fragP->fr_next)
4812 {
4813 if (fragP->fr_fix != 0
4814 && !fragP->tc_frag_data.is_assembly_state_set)
4815 {
4816 if (last_fragP == 0)
4817 {
4818 as_warn_where (fragP->fr_file, fragP->fr_line,
4819 _("assembly state not set for first frag in section %s"),
4820 sec->name);
4821 }
4822 else
4823 {
4824 fragP->tc_frag_data.is_assembly_state_set = TRUE;
4825 fragP->tc_frag_data.is_no_density =
4826 last_fragP->tc_frag_data.is_no_density;
4827 fragP->tc_frag_data.is_no_transform =
4828 last_fragP->tc_frag_data.is_no_transform;
4829 fragP->tc_frag_data.use_longcalls =
4830 last_fragP->tc_frag_data.use_longcalls;
4831 fragP->tc_frag_data.use_absolute_literals =
4832 last_fragP->tc_frag_data.use_absolute_literals;
4833 }
4834 }
4835 if (fragP->tc_frag_data.is_assembly_state_set)
4836 last_fragP = fragP;
4837 }
4838 }
4839 }
4840 }
4841
4842
4843 static void
4844 xtensa_find_unaligned_branch_targets (bfd *abfd ATTRIBUTE_UNUSED,
4845 asection *sec,
4846 void *unused ATTRIBUTE_UNUSED)
4847 {
4848 flagword flags = bfd_get_section_flags (abfd, sec);
4849 segment_info_type *seginfo = seg_info (sec);
4850 fragS *frag = seginfo->frchainP->frch_root;
4851
4852 if (flags & SEC_CODE)
4853 {
4854 xtensa_isa isa = xtensa_default_isa;
4855 xtensa_insnbuf insnbuf = xtensa_insnbuf_alloc (isa);
4856 while (frag != NULL)
4857 {
4858 if (frag->tc_frag_data.is_branch_target)
4859 {
4860 int op_size;
4861 addressT branch_align, frag_addr;
4862 xtensa_format fmt;
4863
4864 xtensa_insnbuf_from_chars
4865 (isa, insnbuf, (unsigned char *) frag->fr_literal, 0);
4866 fmt = xtensa_format_decode (isa, insnbuf);
4867 op_size = xtensa_format_length (isa, fmt);
4868 branch_align = 1 << branch_align_power (sec);
4869 frag_addr = frag->fr_address % branch_align;
4870 if (frag_addr + op_size > branch_align)
4871 as_warn_where (frag->fr_file, frag->fr_line,
4872 _("unaligned branch target: %d bytes at 0x%lx"),
4873 op_size, (long) frag->fr_address);
4874 }
4875 frag = frag->fr_next;
4876 }
4877 xtensa_insnbuf_free (isa, insnbuf);
4878 }
4879 }
4880
4881
4882 static void
4883 xtensa_find_unaligned_loops (bfd *abfd ATTRIBUTE_UNUSED,
4884 asection *sec,
4885 void *unused ATTRIBUTE_UNUSED)
4886 {
4887 flagword flags = bfd_get_section_flags (abfd, sec);
4888 segment_info_type *seginfo = seg_info (sec);
4889 fragS *frag = seginfo->frchainP->frch_root;
4890 xtensa_isa isa = xtensa_default_isa;
4891
4892 if (flags & SEC_CODE)
4893 {
4894 xtensa_insnbuf insnbuf = xtensa_insnbuf_alloc (isa);
4895 while (frag != NULL)
4896 {
4897 if (frag->tc_frag_data.is_first_loop_insn)
4898 {
4899 int op_size;
4900 addressT frag_addr;
4901 xtensa_format fmt;
4902
4903 xtensa_insnbuf_from_chars
4904 (isa, insnbuf, (unsigned char *) frag->fr_literal, 0);
4905 fmt = xtensa_format_decode (isa, insnbuf);
4906 op_size = xtensa_format_length (isa, fmt);
4907 frag_addr = frag->fr_address % xtensa_fetch_width;
4908
4909 if (frag_addr + op_size > xtensa_fetch_width)
4910 as_warn_where (frag->fr_file, frag->fr_line,
4911 _("unaligned loop: %d bytes at 0x%lx"),
4912 op_size, (long) frag->fr_address);
4913 }
4914 frag = frag->fr_next;
4915 }
4916 xtensa_insnbuf_free (isa, insnbuf);
4917 }
4918 }
4919
4920
4921 static int
4922 xg_apply_fix_value (fixS *fixP, valueT val)
4923 {
4924 xtensa_isa isa = xtensa_default_isa;
4925 static xtensa_insnbuf insnbuf = NULL;
4926 static xtensa_insnbuf slotbuf = NULL;
4927 xtensa_format fmt;
4928 int slot;
4929 bfd_boolean alt_reloc;
4930 xtensa_opcode opcode;
4931 char *const fixpos = fixP->fx_frag->fr_literal + fixP->fx_where;
4932
4933 (void) decode_reloc (fixP->fx_r_type, &slot, &alt_reloc);
4934 if (alt_reloc)
4935 as_fatal (_("unexpected fix"));
4936
4937 if (!insnbuf)
4938 {
4939 insnbuf = xtensa_insnbuf_alloc (isa);
4940 slotbuf = xtensa_insnbuf_alloc (isa);
4941 }
4942
4943 xtensa_insnbuf_from_chars (isa, insnbuf, (unsigned char *) fixpos, 0);
4944 fmt = xtensa_format_decode (isa, insnbuf);
4945 if (fmt == XTENSA_UNDEFINED)
4946 as_fatal (_("undecodable fix"));
4947 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf);
4948 opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf);
4949 if (opcode == XTENSA_UNDEFINED)
4950 as_fatal (_("undecodable fix"));
4951
4952 /* CONST16 immediates are not PC-relative, despite the fact that we
4953 reuse the normal PC-relative operand relocations for the low part
4954 of a CONST16 operand. */
4955 if (opcode == xtensa_const16_opcode)
4956 return 0;
4957
4958 xtensa_insnbuf_set_operand (slotbuf, fmt, slot, opcode,
4959 get_relaxable_immed (opcode), val,
4960 fixP->fx_file, fixP->fx_line);
4961
4962 xtensa_format_set_slot (isa, fmt, slot, insnbuf, slotbuf);
4963 xtensa_insnbuf_to_chars (isa, insnbuf, (unsigned char *) fixpos, 0);
4964
4965 return 1;
4966 }
4967
4968 \f
4969 /* External Functions and Other GAS Hooks. */
4970
4971 const char *
4972 xtensa_target_format (void)
4973 {
4974 return (target_big_endian ? "elf32-xtensa-be" : "elf32-xtensa-le");
4975 }
4976
4977
4978 void
4979 xtensa_file_arch_init (bfd *abfd)
4980 {
4981 bfd_set_private_flags (abfd, 0x100 | 0x200);
4982 }
4983
4984
4985 void
4986 md_number_to_chars (char *buf, valueT val, int n)
4987 {
4988 if (target_big_endian)
4989 number_to_chars_bigendian (buf, val, n);
4990 else
4991 number_to_chars_littleendian (buf, val, n);
4992 }
4993
4994
4995 /* This function is called once, at assembler startup time. It should
4996 set up all the tables, etc. that the MD part of the assembler will
4997 need. */
4998
4999 void
5000 md_begin (void)
5001 {
5002 segT current_section = now_seg;
5003 int current_subsec = now_subseg;
5004 xtensa_isa isa;
5005
5006 xtensa_default_isa = xtensa_isa_init (0, 0);
5007 isa = xtensa_default_isa;
5008
5009 linkrelax = 1;
5010
5011 /* Set up the literal sections. */
5012 memset (&default_lit_sections, 0, sizeof (default_lit_sections));
5013
5014 subseg_set (current_section, current_subsec);
5015
5016 xg_init_vinsn (&cur_vinsn);
5017
5018 xtensa_addi_opcode = xtensa_opcode_lookup (isa, "addi");
5019 xtensa_addmi_opcode = xtensa_opcode_lookup (isa, "addmi");
5020 xtensa_call0_opcode = xtensa_opcode_lookup (isa, "call0");
5021 xtensa_call4_opcode = xtensa_opcode_lookup (isa, "call4");
5022 xtensa_call8_opcode = xtensa_opcode_lookup (isa, "call8");
5023 xtensa_call12_opcode = xtensa_opcode_lookup (isa, "call12");
5024 xtensa_callx0_opcode = xtensa_opcode_lookup (isa, "callx0");
5025 xtensa_callx4_opcode = xtensa_opcode_lookup (isa, "callx4");
5026 xtensa_callx8_opcode = xtensa_opcode_lookup (isa, "callx8");
5027 xtensa_callx12_opcode = xtensa_opcode_lookup (isa, "callx12");
5028 xtensa_const16_opcode = xtensa_opcode_lookup (isa, "const16");
5029 xtensa_entry_opcode = xtensa_opcode_lookup (isa, "entry");
5030 xtensa_extui_opcode = xtensa_opcode_lookup (isa, "extui");
5031 xtensa_movi_opcode = xtensa_opcode_lookup (isa, "movi");
5032 xtensa_movi_n_opcode = xtensa_opcode_lookup (isa, "movi.n");
5033 xtensa_isync_opcode = xtensa_opcode_lookup (isa, "isync");
5034 xtensa_jx_opcode = xtensa_opcode_lookup (isa, "jx");
5035 xtensa_l32r_opcode = xtensa_opcode_lookup (isa, "l32r");
5036 xtensa_loop_opcode = xtensa_opcode_lookup (isa, "loop");
5037 xtensa_loopnez_opcode = xtensa_opcode_lookup (isa, "loopnez");
5038 xtensa_loopgtz_opcode = xtensa_opcode_lookup (isa, "loopgtz");
5039 xtensa_nop_opcode = xtensa_opcode_lookup (isa, "nop");
5040 xtensa_nop_n_opcode = xtensa_opcode_lookup (isa, "nop.n");
5041 xtensa_or_opcode = xtensa_opcode_lookup (isa, "or");
5042 xtensa_ret_opcode = xtensa_opcode_lookup (isa, "ret");
5043 xtensa_ret_n_opcode = xtensa_opcode_lookup (isa, "ret.n");
5044 xtensa_retw_opcode = xtensa_opcode_lookup (isa, "retw");
5045 xtensa_retw_n_opcode = xtensa_opcode_lookup (isa, "retw.n");
5046 xtensa_rsr_lcount_opcode = xtensa_opcode_lookup (isa, "rsr.lcount");
5047 xtensa_waiti_opcode = xtensa_opcode_lookup (isa, "waiti");
5048
5049 init_op_placement_info_table ();
5050
5051 /* Set up the assembly state. */
5052 if (!frag_now->tc_frag_data.is_assembly_state_set)
5053 xtensa_set_frag_assembly_state (frag_now);
5054 }
5055
5056
5057 /* TC_INIT_FIX_DATA hook */
5058
5059 void
5060 xtensa_init_fix_data (fixS *x)
5061 {
5062 x->tc_fix_data.slot = 0;
5063 x->tc_fix_data.X_add_symbol = NULL;
5064 x->tc_fix_data.X_add_number = 0;
5065 }
5066
5067
5068 /* tc_frob_label hook */
5069
5070 void
5071 xtensa_frob_label (symbolS *sym)
5072 {
5073 float freq;
5074
5075 if (cur_vinsn.inside_bundle)
5076 {
5077 as_bad (_("labels are not valid inside bundles"));
5078 return;
5079 }
5080
5081 freq = get_subseg_target_freq (now_seg, now_subseg);
5082
5083 /* Since the label was already attached to a frag associated with the
5084 previous basic block, it now needs to be reset to the current frag. */
5085 symbol_set_frag (sym, frag_now);
5086 S_SET_VALUE (sym, (valueT) frag_now_fix ());
5087
5088 if (generating_literals)
5089 xtensa_add_literal_sym (sym);
5090 else
5091 xtensa_add_insn_label (sym);
5092
5093 if (symbol_get_tc (sym)->is_loop_target)
5094 {
5095 if ((get_last_insn_flags (now_seg, now_subseg)
5096 & FLAG_IS_BAD_LOOPEND) != 0)
5097 as_bad (_("invalid last instruction for a zero-overhead loop"));
5098
5099 xtensa_set_frag_assembly_state (frag_now);
5100 frag_var (rs_machine_dependent, 4, 4, RELAX_LOOP_END,
5101 frag_now->fr_symbol, frag_now->fr_offset, NULL);
5102
5103 xtensa_set_frag_assembly_state (frag_now);
5104 xtensa_move_labels (frag_now, 0);
5105 }
5106
5107 /* No target aligning in the absolute section. */
5108 if (now_seg != absolute_section
5109 && do_align_targets ()
5110 && !is_unaligned_label (sym)
5111 && !generating_literals)
5112 {
5113 xtensa_set_frag_assembly_state (frag_now);
5114
5115 frag_var (rs_machine_dependent,
5116 0, (int) freq,
5117 RELAX_DESIRE_ALIGN_IF_TARGET,
5118 frag_now->fr_symbol, frag_now->fr_offset, NULL);
5119 xtensa_set_frag_assembly_state (frag_now);
5120 xtensa_move_labels (frag_now, 0);
5121 }
5122
5123 /* We need to mark the following properties even if we aren't aligning. */
5124
5125 /* If the label is already known to be a branch target, i.e., a
5126 forward branch, mark the frag accordingly. Backward branches
5127 are handled by xg_add_branch_and_loop_targets. */
5128 if (symbol_get_tc (sym)->is_branch_target)
5129 symbol_get_frag (sym)->tc_frag_data.is_branch_target = TRUE;
5130
5131 /* Loops only go forward, so they can be identified here. */
5132 if (symbol_get_tc (sym)->is_loop_target)
5133 symbol_get_frag (sym)->tc_frag_data.is_loop_target = TRUE;
5134
5135 dwarf2_emit_label (sym);
5136 }
5137
5138
5139 /* tc_unrecognized_line hook */
5140
5141 int
5142 xtensa_unrecognized_line (int ch)
5143 {
5144 switch (ch)
5145 {
5146 case '{' :
5147 if (cur_vinsn.inside_bundle == 0)
5148 {
5149 /* PR8110: Cannot emit line number info inside a FLIX bundle
5150 when using --gstabs. Temporarily disable debug info. */
5151 generate_lineno_debug ();
5152 if (debug_type == DEBUG_STABS)
5153 {
5154 xt_saved_debug_type = debug_type;
5155 debug_type = DEBUG_NONE;
5156 }
5157
5158 cur_vinsn.inside_bundle = 1;
5159 }
5160 else
5161 {
5162 as_bad (_("extra opening brace"));
5163 return 0;
5164 }
5165 break;
5166
5167 case '}' :
5168 if (cur_vinsn.inside_bundle)
5169 finish_vinsn (&cur_vinsn);
5170 else
5171 {
5172 as_bad (_("extra closing brace"));
5173 return 0;
5174 }
5175 break;
5176 default:
5177 as_bad (_("syntax error"));
5178 return 0;
5179 }
5180 return 1;
5181 }
5182
5183
5184 /* md_flush_pending_output hook */
5185
5186 void
5187 xtensa_flush_pending_output (void)
5188 {
5189 /* This line fixes a bug where automatically generated gstabs info
5190 separates a function label from its entry instruction, ending up
5191 with the literal position between the function label and the entry
5192 instruction and crashing code. It only happens with --gstabs and
5193 --text-section-literals, and when several other obscure relaxation
5194 conditions are met. */
5195 if (outputting_stabs_line_debug)
5196 return;
5197
5198 if (cur_vinsn.inside_bundle)
5199 as_bad (_("missing closing brace"));
5200
5201 /* If there is a non-zero instruction fragment, close it. */
5202 if (frag_now_fix () != 0 && frag_now->tc_frag_data.is_insn)
5203 {
5204 frag_wane (frag_now);
5205 frag_new (0);
5206 xtensa_set_frag_assembly_state (frag_now);
5207 }
5208 frag_now->tc_frag_data.is_insn = FALSE;
5209
5210 xtensa_clear_insn_labels ();
5211 }
5212
5213
5214 /* We had an error while parsing an instruction. The string might look
5215 like this: "insn arg1, arg2 }". If so, we need to see the closing
5216 brace and reset some fields. Otherwise, the vinsn never gets closed
5217 and the num_slots field will grow past the end of the array of slots,
5218 and bad things happen. */
5219
5220 static void
5221 error_reset_cur_vinsn (void)
5222 {
5223 if (cur_vinsn.inside_bundle)
5224 {
5225 if (*input_line_pointer == '}'
5226 || *(input_line_pointer - 1) == '}'
5227 || *(input_line_pointer - 2) == '}')
5228 xg_clear_vinsn (&cur_vinsn);
5229 }
5230 }
5231
5232
5233 void
5234 md_assemble (char *str)
5235 {
5236 xtensa_isa isa = xtensa_default_isa;
5237 char *opname;
5238 unsigned opnamelen;
5239 bfd_boolean has_underbar = FALSE;
5240 char *arg_strings[MAX_INSN_ARGS];
5241 int num_args;
5242 TInsn orig_insn; /* Original instruction from the input. */
5243
5244 tinsn_init (&orig_insn);
5245
5246 /* Split off the opcode. */
5247 opnamelen = strspn (str, "abcdefghijklmnopqrstuvwxyz_/0123456789.");
5248 opname = xmalloc (opnamelen + 1);
5249 memcpy (opname, str, opnamelen);
5250 opname[opnamelen] = '\0';
5251
5252 num_args = tokenize_arguments (arg_strings, str + opnamelen);
5253 if (num_args == -1)
5254 {
5255 as_bad (_("syntax error"));
5256 return;
5257 }
5258
5259 if (xg_translate_idioms (&opname, &num_args, arg_strings))
5260 return;
5261
5262 /* Check for an underbar prefix. */
5263 if (*opname == '_')
5264 {
5265 has_underbar = TRUE;
5266 opname += 1;
5267 }
5268
5269 orig_insn.insn_type = ITYPE_INSN;
5270 orig_insn.ntok = 0;
5271 orig_insn.is_specific_opcode = (has_underbar || !use_transform ());
5272
5273 orig_insn.opcode = xtensa_opcode_lookup (isa, opname);
5274 if (orig_insn.opcode == XTENSA_UNDEFINED)
5275 {
5276 xtensa_format fmt = xtensa_format_lookup (isa, opname);
5277 if (fmt == XTENSA_UNDEFINED)
5278 {
5279 as_bad (_("unknown opcode or format name '%s'"), opname);
5280 error_reset_cur_vinsn ();
5281 return;
5282 }
5283 if (!cur_vinsn.inside_bundle)
5284 {
5285 as_bad (_("format names only valid inside bundles"));
5286 error_reset_cur_vinsn ();
5287 return;
5288 }
5289 if (cur_vinsn.format != XTENSA_UNDEFINED)
5290 as_warn (_("multiple formats specified for one bundle; using '%s'"),
5291 opname);
5292 cur_vinsn.format = fmt;
5293 free (has_underbar ? opname - 1 : opname);
5294 error_reset_cur_vinsn ();
5295 return;
5296 }
5297
5298 /* Parse the arguments. */
5299 if (parse_arguments (&orig_insn, num_args, arg_strings))
5300 {
5301 as_bad (_("syntax error"));
5302 error_reset_cur_vinsn ();
5303 return;
5304 }
5305
5306 /* Free the opcode and argument strings, now that they've been parsed. */
5307 free (has_underbar ? opname - 1 : opname);
5308 opname = 0;
5309 while (num_args-- > 0)
5310 free (arg_strings[num_args]);
5311
5312 /* Get expressions for invisible operands. */
5313 if (get_invisible_operands (&orig_insn))
5314 {
5315 error_reset_cur_vinsn ();
5316 return;
5317 }
5318
5319 /* Check for the right number and type of arguments. */
5320 if (tinsn_check_arguments (&orig_insn))
5321 {
5322 error_reset_cur_vinsn ();
5323 return;
5324 }
5325
5326 /* Record the line number for each TInsn, because a FLIX bundle may be
5327 spread across multiple input lines and individual instructions may be
5328 moved around in some cases. */
5329 orig_insn.loc_directive_seen = dwarf2_loc_directive_seen;
5330 dwarf2_where (&orig_insn.debug_line);
5331 dwarf2_consume_line_info ();
5332
5333 xg_add_branch_and_loop_targets (&orig_insn);
5334
5335 /* Check that immediate value for ENTRY is >= 16. */
5336 if (orig_insn.opcode == xtensa_entry_opcode && orig_insn.ntok >= 3)
5337 {
5338 expressionS *exp = &orig_insn.tok[2];
5339 if (exp->X_op == O_constant && exp->X_add_number < 16)
5340 as_warn (_("entry instruction with stack decrement < 16"));
5341 }
5342
5343 /* Finish it off:
5344 assemble_tokens (opcode, tok, ntok);
5345 expand the tokens from the orig_insn into the
5346 stack of instructions that will not expand
5347 unless required at relaxation time. */
5348
5349 if (!cur_vinsn.inside_bundle)
5350 emit_single_op (&orig_insn);
5351 else /* We are inside a bundle. */
5352 {
5353 cur_vinsn.slots[cur_vinsn.num_slots] = orig_insn;
5354 cur_vinsn.num_slots++;
5355 if (*input_line_pointer == '}'
5356 || *(input_line_pointer - 1) == '}'
5357 || *(input_line_pointer - 2) == '}')
5358 finish_vinsn (&cur_vinsn);
5359 }
5360
5361 /* We've just emitted a new instruction so clear the list of labels. */
5362 xtensa_clear_insn_labels ();
5363 }
5364
5365
5366 /* HANDLE_ALIGN hook */
5367
5368 /* For a .align directive, we mark the previous block with the alignment
5369 information. This will be placed in the object file in the
5370 property section corresponding to this section. */
5371
5372 void
5373 xtensa_handle_align (fragS *fragP)
5374 {
5375 if (linkrelax
5376 && ! fragP->tc_frag_data.is_literal
5377 && (fragP->fr_type == rs_align
5378 || fragP->fr_type == rs_align_code)
5379 && fragP->fr_address + fragP->fr_fix > 0
5380 && fragP->fr_offset > 0
5381 && now_seg != bss_section)
5382 {
5383 fragP->tc_frag_data.is_align = TRUE;
5384 fragP->tc_frag_data.alignment = fragP->fr_offset;
5385 }
5386
5387 if (fragP->fr_type == rs_align_test)
5388 {
5389 int count;
5390 count = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
5391 if (count != 0)
5392 as_bad_where (fragP->fr_file, fragP->fr_line,
5393 _("unaligned entry instruction"));
5394 }
5395
5396 if (linkrelax && fragP->fr_type == rs_org)
5397 fragP->fr_subtype = RELAX_ORG;
5398 }
5399
5400
5401 /* TC_FRAG_INIT hook */
5402
5403 void
5404 xtensa_frag_init (fragS *frag)
5405 {
5406 xtensa_set_frag_assembly_state (frag);
5407 }
5408
5409
5410 symbolS *
5411 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
5412 {
5413 return NULL;
5414 }
5415
5416
5417 /* Round up a section size to the appropriate boundary. */
5418
5419 valueT
5420 md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
5421 {
5422 return size; /* Byte alignment is fine. */
5423 }
5424
5425
5426 long
5427 md_pcrel_from (fixS *fixP)
5428 {
5429 char *insn_p;
5430 static xtensa_insnbuf insnbuf = NULL;
5431 static xtensa_insnbuf slotbuf = NULL;
5432 int opnum;
5433 uint32 opnd_value;
5434 xtensa_opcode opcode;
5435 xtensa_format fmt;
5436 int slot;
5437 xtensa_isa isa = xtensa_default_isa;
5438 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
5439 bfd_boolean alt_reloc;
5440
5441 if (fixP->fx_r_type == BFD_RELOC_XTENSA_ASM_EXPAND)
5442 return 0;
5443
5444 if (!insnbuf)
5445 {
5446 insnbuf = xtensa_insnbuf_alloc (isa);
5447 slotbuf = xtensa_insnbuf_alloc (isa);
5448 }
5449
5450 insn_p = &fixP->fx_frag->fr_literal[fixP->fx_where];
5451 xtensa_insnbuf_from_chars (isa, insnbuf, (unsigned char *) insn_p, 0);
5452 fmt = xtensa_format_decode (isa, insnbuf);
5453
5454 if (fmt == XTENSA_UNDEFINED)
5455 as_fatal (_("bad instruction format"));
5456
5457 if (decode_reloc (fixP->fx_r_type, &slot, &alt_reloc) != 0)
5458 as_fatal (_("invalid relocation"));
5459
5460 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf);
5461 opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf);
5462
5463 /* Check for "alternate" relocations (operand not specified). None
5464 of the current uses for these are really PC-relative. */
5465 if (alt_reloc || opcode == xtensa_const16_opcode)
5466 {
5467 if (opcode != xtensa_l32r_opcode
5468 && opcode != xtensa_const16_opcode)
5469 as_fatal (_("invalid relocation for '%s' instruction"),
5470 xtensa_opcode_name (isa, opcode));
5471 return 0;
5472 }
5473
5474 opnum = get_relaxable_immed (opcode);
5475 opnd_value = 0;
5476 if (xtensa_operand_is_PCrelative (isa, opcode, opnum) != 1
5477 || xtensa_operand_do_reloc (isa, opcode, opnum, &opnd_value, addr))
5478 {
5479 as_bad_where (fixP->fx_file,
5480 fixP->fx_line,
5481 _("invalid relocation for operand %d of '%s'"),
5482 opnum, xtensa_opcode_name (isa, opcode));
5483 return 0;
5484 }
5485 return 0 - opnd_value;
5486 }
5487
5488
5489 /* TC_FORCE_RELOCATION hook */
5490
5491 int
5492 xtensa_force_relocation (fixS *fix)
5493 {
5494 switch (fix->fx_r_type)
5495 {
5496 case BFD_RELOC_XTENSA_ASM_EXPAND:
5497 case BFD_RELOC_XTENSA_SLOT0_ALT:
5498 case BFD_RELOC_XTENSA_SLOT1_ALT:
5499 case BFD_RELOC_XTENSA_SLOT2_ALT:
5500 case BFD_RELOC_XTENSA_SLOT3_ALT:
5501 case BFD_RELOC_XTENSA_SLOT4_ALT:
5502 case BFD_RELOC_XTENSA_SLOT5_ALT:
5503 case BFD_RELOC_XTENSA_SLOT6_ALT:
5504 case BFD_RELOC_XTENSA_SLOT7_ALT:
5505 case BFD_RELOC_XTENSA_SLOT8_ALT:
5506 case BFD_RELOC_XTENSA_SLOT9_ALT:
5507 case BFD_RELOC_XTENSA_SLOT10_ALT:
5508 case BFD_RELOC_XTENSA_SLOT11_ALT:
5509 case BFD_RELOC_XTENSA_SLOT12_ALT:
5510 case BFD_RELOC_XTENSA_SLOT13_ALT:
5511 case BFD_RELOC_XTENSA_SLOT14_ALT:
5512 return 1;
5513 default:
5514 break;
5515 }
5516
5517 if (linkrelax && fix->fx_addsy
5518 && relaxable_section (S_GET_SEGMENT (fix->fx_addsy)))
5519 return 1;
5520
5521 return generic_force_reloc (fix);
5522 }
5523
5524
5525 /* TC_VALIDATE_FIX_SUB hook */
5526
5527 int
5528 xtensa_validate_fix_sub (fixS *fix)
5529 {
5530 segT add_symbol_segment, sub_symbol_segment;
5531
5532 /* The difference of two symbols should be resolved by the assembler when
5533 linkrelax is not set. If the linker may relax the section containing
5534 the symbols, then an Xtensa DIFF relocation must be generated so that
5535 the linker knows to adjust the difference value. */
5536 if (!linkrelax || fix->fx_addsy == NULL)
5537 return 0;
5538
5539 /* Make sure both symbols are in the same segment, and that segment is
5540 "normal" and relaxable. If the segment is not "normal", then the
5541 fix is not valid. If the segment is not "relaxable", then the fix
5542 should have been handled earlier. */
5543 add_symbol_segment = S_GET_SEGMENT (fix->fx_addsy);
5544 if (! SEG_NORMAL (add_symbol_segment) ||
5545 ! relaxable_section (add_symbol_segment))
5546 return 0;
5547 sub_symbol_segment = S_GET_SEGMENT (fix->fx_subsy);
5548 return (sub_symbol_segment == add_symbol_segment);
5549 }
5550
5551
5552 /* NO_PSEUDO_DOT hook */
5553
5554 /* This function has nothing to do with pseudo dots, but this is the
5555 nearest macro to where the check needs to take place. FIXME: This
5556 seems wrong. */
5557
5558 bfd_boolean
5559 xtensa_check_inside_bundle (void)
5560 {
5561 if (cur_vinsn.inside_bundle && input_line_pointer[-1] == '.')
5562 as_bad (_("directives are not valid inside bundles"));
5563
5564 /* This function must always return FALSE because it is called via a
5565 macro that has nothing to do with bundling. */
5566 return FALSE;
5567 }
5568
5569
5570 /* md_elf_section_change_hook */
5571
5572 void
5573 xtensa_elf_section_change_hook (void)
5574 {
5575 /* Set up the assembly state. */
5576 if (!frag_now->tc_frag_data.is_assembly_state_set)
5577 xtensa_set_frag_assembly_state (frag_now);
5578 }
5579
5580
5581 /* tc_fix_adjustable hook */
5582
5583 bfd_boolean
5584 xtensa_fix_adjustable (fixS *fixP)
5585 {
5586 /* An offset is not allowed in combination with the difference of two
5587 symbols, but that cannot be easily detected after a local symbol
5588 has been adjusted to a (section+offset) form. Return 0 so that such
5589 an fix will not be adjusted. */
5590 if (fixP->fx_subsy && fixP->fx_addsy && fixP->fx_offset
5591 && relaxable_section (S_GET_SEGMENT (fixP->fx_subsy)))
5592 return 0;
5593
5594 /* We need the symbol name for the VTABLE entries. */
5595 if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
5596 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
5597 return 0;
5598
5599 return 1;
5600 }
5601
5602
5603 /* tc_symbol_new_hook */
5604
5605 symbolS *expr_symbols = NULL;
5606
5607 void
5608 xtensa_symbol_new_hook (symbolS *sym)
5609 {
5610 if (S_GET_SEGMENT (sym) == expr_section)
5611 {
5612 symbol_get_tc (sym)->next_expr_symbol = expr_symbols;
5613 expr_symbols = sym;
5614 }
5615 }
5616
5617
5618
5619 void
5620 md_apply_fix (fixS *fixP, valueT *valP, segT seg)
5621 {
5622 char *const fixpos = fixP->fx_frag->fr_literal + fixP->fx_where;
5623 valueT val = 0;
5624
5625 /* Subtracted symbols are only allowed for a few relocation types, and
5626 unless linkrelax is enabled, they should not make it to this point. */
5627 if (fixP->fx_subsy && !(linkrelax && (fixP->fx_r_type == BFD_RELOC_32
5628 || fixP->fx_r_type == BFD_RELOC_16
5629 || fixP->fx_r_type == BFD_RELOC_8)))
5630 as_bad_where (fixP->fx_file, fixP->fx_line, _("expression too complex"));
5631
5632 switch (fixP->fx_r_type)
5633 {
5634 case BFD_RELOC_32:
5635 case BFD_RELOC_16:
5636 case BFD_RELOC_8:
5637 if (fixP->fx_subsy)
5638 {
5639 switch (fixP->fx_r_type)
5640 {
5641 case BFD_RELOC_8:
5642 fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF8;
5643 break;
5644 case BFD_RELOC_16:
5645 fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF16;
5646 break;
5647 case BFD_RELOC_32:
5648 fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF32;
5649 break;
5650 default:
5651 break;
5652 }
5653
5654 /* An offset is only allowed when it results from adjusting a
5655 local symbol into a section-relative offset. If the offset
5656 came from the original expression, tc_fix_adjustable will have
5657 prevented the fix from being converted to a section-relative
5658 form so that we can flag the error here. */
5659 if (fixP->fx_offset != 0 && !symbol_section_p (fixP->fx_addsy))
5660 as_bad_where (fixP->fx_file, fixP->fx_line,
5661 _("cannot represent subtraction with an offset"));
5662
5663 val = (S_GET_VALUE (fixP->fx_addsy) + fixP->fx_offset
5664 - S_GET_VALUE (fixP->fx_subsy));
5665
5666 /* The difference value gets written out, and the DIFF reloc
5667 identifies the address of the subtracted symbol (i.e., the one
5668 with the lowest address). */
5669 *valP = val;
5670 fixP->fx_offset -= val;
5671 fixP->fx_subsy = NULL;
5672 }
5673 else if (! fixP->fx_addsy)
5674 {
5675 val = *valP;
5676 fixP->fx_done = 1;
5677 }
5678 /* fall through */
5679
5680 case BFD_RELOC_XTENSA_PLT:
5681 md_number_to_chars (fixpos, val, fixP->fx_size);
5682 fixP->fx_no_overflow = 0; /* Use the standard overflow check. */
5683 break;
5684
5685 case BFD_RELOC_XTENSA_SLOT0_OP:
5686 case BFD_RELOC_XTENSA_SLOT1_OP:
5687 case BFD_RELOC_XTENSA_SLOT2_OP:
5688 case BFD_RELOC_XTENSA_SLOT3_OP:
5689 case BFD_RELOC_XTENSA_SLOT4_OP:
5690 case BFD_RELOC_XTENSA_SLOT5_OP:
5691 case BFD_RELOC_XTENSA_SLOT6_OP:
5692 case BFD_RELOC_XTENSA_SLOT7_OP:
5693 case BFD_RELOC_XTENSA_SLOT8_OP:
5694 case BFD_RELOC_XTENSA_SLOT9_OP:
5695 case BFD_RELOC_XTENSA_SLOT10_OP:
5696 case BFD_RELOC_XTENSA_SLOT11_OP:
5697 case BFD_RELOC_XTENSA_SLOT12_OP:
5698 case BFD_RELOC_XTENSA_SLOT13_OP:
5699 case BFD_RELOC_XTENSA_SLOT14_OP:
5700 if (linkrelax)
5701 {
5702 /* Write the tentative value of a PC-relative relocation to a
5703 local symbol into the instruction. The value will be ignored
5704 by the linker, and it makes the object file disassembly
5705 readable when all branch targets are encoded in relocations. */
5706
5707 assert (fixP->fx_addsy);
5708 if (S_GET_SEGMENT (fixP->fx_addsy) == seg
5709 && !S_FORCE_RELOC (fixP->fx_addsy, 1))
5710 {
5711 val = (S_GET_VALUE (fixP->fx_addsy) + fixP->fx_offset
5712 - md_pcrel_from (fixP));
5713 (void) xg_apply_fix_value (fixP, val);
5714 }
5715 }
5716 else if (! fixP->fx_addsy)
5717 {
5718 val = *valP;
5719 if (xg_apply_fix_value (fixP, val))
5720 fixP->fx_done = 1;
5721 }
5722 break;
5723
5724 case BFD_RELOC_XTENSA_ASM_EXPAND:
5725 case BFD_RELOC_XTENSA_SLOT0_ALT:
5726 case BFD_RELOC_XTENSA_SLOT1_ALT:
5727 case BFD_RELOC_XTENSA_SLOT2_ALT:
5728 case BFD_RELOC_XTENSA_SLOT3_ALT:
5729 case BFD_RELOC_XTENSA_SLOT4_ALT:
5730 case BFD_RELOC_XTENSA_SLOT5_ALT:
5731 case BFD_RELOC_XTENSA_SLOT6_ALT:
5732 case BFD_RELOC_XTENSA_SLOT7_ALT:
5733 case BFD_RELOC_XTENSA_SLOT8_ALT:
5734 case BFD_RELOC_XTENSA_SLOT9_ALT:
5735 case BFD_RELOC_XTENSA_SLOT10_ALT:
5736 case BFD_RELOC_XTENSA_SLOT11_ALT:
5737 case BFD_RELOC_XTENSA_SLOT12_ALT:
5738 case BFD_RELOC_XTENSA_SLOT13_ALT:
5739 case BFD_RELOC_XTENSA_SLOT14_ALT:
5740 /* These all need to be resolved at link-time. Do nothing now. */
5741 break;
5742
5743 case BFD_RELOC_VTABLE_INHERIT:
5744 case BFD_RELOC_VTABLE_ENTRY:
5745 fixP->fx_done = 0;
5746 break;
5747
5748 default:
5749 as_bad (_("unhandled local relocation fix %s"),
5750 bfd_get_reloc_code_name (fixP->fx_r_type));
5751 }
5752 }
5753
5754
5755 char *
5756 md_atof (int type, char *litP, int *sizeP)
5757 {
5758 return ieee_md_atof (type, litP, sizeP, target_big_endian);
5759 }
5760
5761
5762 int
5763 md_estimate_size_before_relax (fragS *fragP, segT seg ATTRIBUTE_UNUSED)
5764 {
5765 return total_frag_text_expansion (fragP);
5766 }
5767
5768
5769 /* Translate internal representation of relocation info to BFD target
5770 format. */
5771
5772 arelent *
5773 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
5774 {
5775 arelent *reloc;
5776
5777 reloc = (arelent *) xmalloc (sizeof (arelent));
5778 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
5779 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
5780 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
5781
5782 /* Make sure none of our internal relocations make it this far.
5783 They'd better have been fully resolved by this point. */
5784 assert ((int) fixp->fx_r_type > 0);
5785
5786 reloc->addend = fixp->fx_offset;
5787
5788 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
5789 if (reloc->howto == NULL)
5790 {
5791 as_bad_where (fixp->fx_file, fixp->fx_line,
5792 _("cannot represent `%s' relocation in object file"),
5793 bfd_get_reloc_code_name (fixp->fx_r_type));
5794 free (reloc->sym_ptr_ptr);
5795 free (reloc);
5796 return NULL;
5797 }
5798
5799 if (!fixp->fx_pcrel != !reloc->howto->pc_relative)
5800 as_fatal (_("internal error? cannot generate `%s' relocation"),
5801 bfd_get_reloc_code_name (fixp->fx_r_type));
5802
5803 return reloc;
5804 }
5805
5806 \f
5807 /* Checks for resource conflicts between instructions. */
5808
5809 /* The func unit stuff could be implemented as bit-vectors rather
5810 than the iterative approach here. If it ends up being too
5811 slow, we will switch it. */
5812
5813 resource_table *
5814 new_resource_table (void *data,
5815 int cycles,
5816 int nu,
5817 unit_num_copies_func uncf,
5818 opcode_num_units_func onuf,
5819 opcode_funcUnit_use_unit_func ouuf,
5820 opcode_funcUnit_use_stage_func ousf)
5821 {
5822 int i;
5823 resource_table *rt = (resource_table *) xmalloc (sizeof (resource_table));
5824 rt->data = data;
5825 rt->cycles = cycles;
5826 rt->allocated_cycles = cycles;
5827 rt->num_units = nu;
5828 rt->unit_num_copies = uncf;
5829 rt->opcode_num_units = onuf;
5830 rt->opcode_unit_use = ouuf;
5831 rt->opcode_unit_stage = ousf;
5832
5833 rt->units = (unsigned char **) xcalloc (cycles, sizeof (unsigned char *));
5834 for (i = 0; i < cycles; i++)
5835 rt->units[i] = (unsigned char *) xcalloc (nu, sizeof (unsigned char));
5836
5837 return rt;
5838 }
5839
5840
5841 void
5842 clear_resource_table (resource_table *rt)
5843 {
5844 int i, j;
5845 for (i = 0; i < rt->allocated_cycles; i++)
5846 for (j = 0; j < rt->num_units; j++)
5847 rt->units[i][j] = 0;
5848 }
5849
5850
5851 /* We never shrink it, just fake it into thinking so. */
5852
5853 void
5854 resize_resource_table (resource_table *rt, int cycles)
5855 {
5856 int i, old_cycles;
5857
5858 rt->cycles = cycles;
5859 if (cycles <= rt->allocated_cycles)
5860 return;
5861
5862 old_cycles = rt->allocated_cycles;
5863 rt->allocated_cycles = cycles;
5864
5865 rt->units = xrealloc (rt->units,
5866 rt->allocated_cycles * sizeof (unsigned char *));
5867 for (i = 0; i < old_cycles; i++)
5868 rt->units[i] = xrealloc (rt->units[i],
5869 rt->num_units * sizeof (unsigned char));
5870 for (i = old_cycles; i < cycles; i++)
5871 rt->units[i] = xcalloc (rt->num_units, sizeof (unsigned char));
5872 }
5873
5874
5875 bfd_boolean
5876 resources_available (resource_table *rt, xtensa_opcode opcode, int cycle)
5877 {
5878 int i;
5879 int uses = (rt->opcode_num_units) (rt->data, opcode);
5880
5881 for (i = 0; i < uses; i++)
5882 {
5883 xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i);
5884 int stage = (rt->opcode_unit_stage) (rt->data, opcode, i);
5885 int copies_in_use = rt->units[stage + cycle][unit];
5886 int copies = (rt->unit_num_copies) (rt->data, unit);
5887 if (copies_in_use >= copies)
5888 return FALSE;
5889 }
5890 return TRUE;
5891 }
5892
5893
5894 void
5895 reserve_resources (resource_table *rt, xtensa_opcode opcode, int cycle)
5896 {
5897 int i;
5898 int uses = (rt->opcode_num_units) (rt->data, opcode);
5899
5900 for (i = 0; i < uses; i++)
5901 {
5902 xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i);
5903 int stage = (rt->opcode_unit_stage) (rt->data, opcode, i);
5904 /* Note that this allows resources to be oversubscribed. That's
5905 essential to the way the optional scheduler works.
5906 resources_available reports when a resource is over-subscribed,
5907 so it's easy to tell. */
5908 rt->units[stage + cycle][unit]++;
5909 }
5910 }
5911
5912
5913 void
5914 release_resources (resource_table *rt, xtensa_opcode opcode, int cycle)
5915 {
5916 int i;
5917 int uses = (rt->opcode_num_units) (rt->data, opcode);
5918
5919 for (i = 0; i < uses; i++)
5920 {
5921 xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i);
5922 int stage = (rt->opcode_unit_stage) (rt->data, opcode, i);
5923 assert (rt->units[stage + cycle][unit] > 0);
5924 rt->units[stage + cycle][unit]--;
5925 }
5926 }
5927
5928
5929 /* Wrapper functions make parameterized resource reservation
5930 more convenient. */
5931
5932 int
5933 opcode_funcUnit_use_unit (void *data, xtensa_opcode opcode, int idx)
5934 {
5935 xtensa_funcUnit_use *use = xtensa_opcode_funcUnit_use (data, opcode, idx);
5936 return use->unit;
5937 }
5938
5939
5940 int
5941 opcode_funcUnit_use_stage (void *data, xtensa_opcode opcode, int idx)
5942 {
5943 xtensa_funcUnit_use *use = xtensa_opcode_funcUnit_use (data, opcode, idx);
5944 return use->stage;
5945 }
5946
5947
5948 /* Note that this function does not check issue constraints, but
5949 solely whether the hardware is available to execute the given
5950 instructions together. It also doesn't check if the tinsns
5951 write the same state, or access the same tieports. That is
5952 checked by check_t1_t2_reads_and_writes. */
5953
5954 static bfd_boolean
5955 resources_conflict (vliw_insn *vinsn)
5956 {
5957 int i;
5958 static resource_table *rt = NULL;
5959
5960 /* This is the most common case by far. Optimize it. */
5961 if (vinsn->num_slots == 1)
5962 return FALSE;
5963
5964 if (rt == NULL)
5965 {
5966 xtensa_isa isa = xtensa_default_isa;
5967 rt = new_resource_table
5968 (isa, xtensa_isa_num_pipe_stages (isa),
5969 xtensa_isa_num_funcUnits (isa),
5970 (unit_num_copies_func) xtensa_funcUnit_num_copies,
5971 (opcode_num_units_func) xtensa_opcode_num_funcUnit_uses,
5972 opcode_funcUnit_use_unit,
5973 opcode_funcUnit_use_stage);
5974 }
5975
5976 clear_resource_table (rt);
5977
5978 for (i = 0; i < vinsn->num_slots; i++)
5979 {
5980 if (!resources_available (rt, vinsn->slots[i].opcode, 0))
5981 return TRUE;
5982 reserve_resources (rt, vinsn->slots[i].opcode, 0);
5983 }
5984
5985 return FALSE;
5986 }
5987
5988 \f
5989 /* finish_vinsn, emit_single_op and helper functions. */
5990
5991 static bfd_boolean find_vinsn_conflicts (vliw_insn *);
5992 static xtensa_format xg_find_narrowest_format (vliw_insn *);
5993 static void xg_assemble_vliw_tokens (vliw_insn *);
5994
5995
5996 /* We have reached the end of a bundle; emit into the frag. */
5997
5998 static void
5999 finish_vinsn (vliw_insn *vinsn)
6000 {
6001 IStack slotstack;
6002 int i;
6003 char *file_name;
6004 unsigned line;
6005
6006 if (find_vinsn_conflicts (vinsn))
6007 {
6008 xg_clear_vinsn (vinsn);
6009 return;
6010 }
6011
6012 /* First, find a format that works. */
6013 if (vinsn->format == XTENSA_UNDEFINED)
6014 vinsn->format = xg_find_narrowest_format (vinsn);
6015
6016 if (vinsn->format == XTENSA_UNDEFINED)
6017 {
6018 as_where (&file_name, &line);
6019 as_bad_where (file_name, line,
6020 _("couldn't find a valid instruction format"));
6021 fprintf (stderr, _(" ops were: "));
6022 for (i = 0; i < vinsn->num_slots; i++)
6023 fprintf (stderr, _(" %s;"),
6024 xtensa_opcode_name (xtensa_default_isa,
6025 vinsn->slots[i].opcode));
6026 fprintf (stderr, _("\n"));
6027 xg_clear_vinsn (vinsn);
6028 return;
6029 }
6030
6031 if (vinsn->num_slots
6032 != xtensa_format_num_slots (xtensa_default_isa, vinsn->format))
6033 {
6034 as_bad (_("format '%s' allows %d slots, but there are %d opcodes"),
6035 xtensa_format_name (xtensa_default_isa, vinsn->format),
6036 xtensa_format_num_slots (xtensa_default_isa, vinsn->format),
6037 vinsn->num_slots);
6038 xg_clear_vinsn (vinsn);
6039 return;
6040 }
6041
6042 if (resources_conflict (vinsn))
6043 {
6044 as_where (&file_name, &line);
6045 as_bad_where (file_name, line, _("illegal resource usage in bundle"));
6046 fprintf (stderr, " ops were: ");
6047 for (i = 0; i < vinsn->num_slots; i++)
6048 fprintf (stderr, " %s;",
6049 xtensa_opcode_name (xtensa_default_isa,
6050 vinsn->slots[i].opcode));
6051 fprintf (stderr, "\n");
6052 xg_clear_vinsn (vinsn);
6053 return;
6054 }
6055
6056 for (i = 0; i < vinsn->num_slots; i++)
6057 {
6058 if (vinsn->slots[i].opcode != XTENSA_UNDEFINED)
6059 {
6060 symbolS *lit_sym = NULL;
6061 int j;
6062 bfd_boolean e = FALSE;
6063 bfd_boolean saved_density = density_supported;
6064
6065 /* We don't want to narrow ops inside multi-slot bundles. */
6066 if (vinsn->num_slots > 1)
6067 density_supported = FALSE;
6068
6069 istack_init (&slotstack);
6070 if (vinsn->slots[i].opcode == xtensa_nop_opcode)
6071 {
6072 vinsn->slots[i].opcode =
6073 xtensa_format_slot_nop_opcode (xtensa_default_isa,
6074 vinsn->format, i);
6075 vinsn->slots[i].ntok = 0;
6076 }
6077
6078 if (xg_expand_assembly_insn (&slotstack, &vinsn->slots[i]))
6079 {
6080 e = TRUE;
6081 continue;
6082 }
6083
6084 density_supported = saved_density;
6085
6086 if (e)
6087 {
6088 xg_clear_vinsn (vinsn);
6089 return;
6090 }
6091
6092 for (j = 0; j < slotstack.ninsn; j++)
6093 {
6094 TInsn *insn = &slotstack.insn[j];
6095 if (insn->insn_type == ITYPE_LITERAL)
6096 {
6097 assert (lit_sym == NULL);
6098 lit_sym = xg_assemble_literal (insn);
6099 }
6100 else
6101 {
6102 assert (insn->insn_type == ITYPE_INSN);
6103 if (lit_sym)
6104 xg_resolve_literals (insn, lit_sym);
6105 if (j != slotstack.ninsn - 1)
6106 emit_single_op (insn);
6107 }
6108 }
6109
6110 if (vinsn->num_slots > 1)
6111 {
6112 if (opcode_fits_format_slot
6113 (slotstack.insn[slotstack.ninsn - 1].opcode,
6114 vinsn->format, i))
6115 {
6116 vinsn->slots[i] = slotstack.insn[slotstack.ninsn - 1];
6117 }
6118 else
6119 {
6120 emit_single_op (&slotstack.insn[slotstack.ninsn - 1]);
6121 if (vinsn->format == XTENSA_UNDEFINED)
6122 vinsn->slots[i].opcode = xtensa_nop_opcode;
6123 else
6124 vinsn->slots[i].opcode
6125 = xtensa_format_slot_nop_opcode (xtensa_default_isa,
6126 vinsn->format, i);
6127
6128 vinsn->slots[i].ntok = 0;
6129 }
6130 }
6131 else
6132 {
6133 vinsn->slots[0] = slotstack.insn[slotstack.ninsn - 1];
6134 vinsn->format = XTENSA_UNDEFINED;
6135 }
6136 }
6137 }
6138
6139 /* Now check resource conflicts on the modified bundle. */
6140 if (resources_conflict (vinsn))
6141 {
6142 as_where (&file_name, &line);
6143 as_bad_where (file_name, line, _("illegal resource usage in bundle"));
6144 fprintf (stderr, " ops were: ");
6145 for (i = 0; i < vinsn->num_slots; i++)
6146 fprintf (stderr, " %s;",
6147 xtensa_opcode_name (xtensa_default_isa,
6148 vinsn->slots[i].opcode));
6149 fprintf (stderr, "\n");
6150 xg_clear_vinsn (vinsn);
6151 return;
6152 }
6153
6154 /* First, find a format that works. */
6155 if (vinsn->format == XTENSA_UNDEFINED)
6156 vinsn->format = xg_find_narrowest_format (vinsn);
6157
6158 xg_assemble_vliw_tokens (vinsn);
6159
6160 xg_clear_vinsn (vinsn);
6161 }
6162
6163
6164 /* Given an vliw instruction, what conflicts are there in register
6165 usage and in writes to states and queues?
6166
6167 This function does two things:
6168 1. Reports an error when a vinsn contains illegal combinations
6169 of writes to registers states or queues.
6170 2. Marks individual tinsns as not relaxable if the combination
6171 contains antidependencies.
6172
6173 Job 2 handles things like swap semantics in instructions that need
6174 to be relaxed. For example,
6175
6176 addi a0, a1, 100000
6177
6178 normally would be relaxed to
6179
6180 l32r a0, some_label
6181 add a0, a1, a0
6182
6183 _but_, if the above instruction is bundled with an a0 reader, e.g.,
6184
6185 { addi a0, a1, 10000 ; add a2, a0, a4 ; }
6186
6187 then we can't relax it into
6188
6189 l32r a0, some_label
6190 { add a0, a1, a0 ; add a2, a0, a4 ; }
6191
6192 because the value of a0 is trashed before the second add can read it. */
6193
6194 static char check_t1_t2_reads_and_writes (TInsn *, TInsn *);
6195
6196 static bfd_boolean
6197 find_vinsn_conflicts (vliw_insn *vinsn)
6198 {
6199 int i, j;
6200 int branches = 0;
6201 xtensa_isa isa = xtensa_default_isa;
6202
6203 assert (!past_xtensa_end);
6204
6205 for (i = 0 ; i < vinsn->num_slots; i++)
6206 {
6207 TInsn *op1 = &vinsn->slots[i];
6208 if (op1->is_specific_opcode)
6209 op1->keep_wide = TRUE;
6210 else
6211 op1->keep_wide = FALSE;
6212 }
6213
6214 for (i = 0 ; i < vinsn->num_slots; i++)
6215 {
6216 TInsn *op1 = &vinsn->slots[i];
6217
6218 if (xtensa_opcode_is_branch (isa, op1->opcode) == 1)
6219 branches++;
6220
6221 for (j = 0; j < vinsn->num_slots; j++)
6222 {
6223 if (i != j)
6224 {
6225 TInsn *op2 = &vinsn->slots[j];
6226 char conflict_type = check_t1_t2_reads_and_writes (op1, op2);
6227 switch (conflict_type)
6228 {
6229 case 'c':
6230 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same register"),
6231 xtensa_opcode_name (isa, op1->opcode), i,
6232 xtensa_opcode_name (isa, op2->opcode), j);
6233 return TRUE;
6234 case 'd':
6235 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same state"),
6236 xtensa_opcode_name (isa, op1->opcode), i,
6237 xtensa_opcode_name (isa, op2->opcode), j);
6238 return TRUE;
6239 case 'e':
6240 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same port"),
6241 xtensa_opcode_name (isa, op1->opcode), i,
6242 xtensa_opcode_name (isa, op2->opcode), j);
6243 return TRUE;
6244 case 'f':
6245 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) both have volatile port accesses"),
6246 xtensa_opcode_name (isa, op1->opcode), i,
6247 xtensa_opcode_name (isa, op2->opcode), j);
6248 return TRUE;
6249 default:
6250 /* Everything is OK. */
6251 break;
6252 }
6253 op2->is_specific_opcode = (op2->is_specific_opcode
6254 || conflict_type == 'a');
6255 }
6256 }
6257 }
6258
6259 if (branches > 1)
6260 {
6261 as_bad (_("multiple branches or jumps in the same bundle"));
6262 return TRUE;
6263 }
6264
6265 return FALSE;
6266 }
6267
6268
6269 /* Check how the state used by t1 and t2 relate.
6270 Cases found are:
6271
6272 case A: t1 reads a register t2 writes (an antidependency within a bundle)
6273 case B: no relationship between what is read and written (both could
6274 read the same reg though)
6275 case C: t1 writes a register t2 writes (a register conflict within a
6276 bundle)
6277 case D: t1 writes a state that t2 also writes
6278 case E: t1 writes a tie queue that t2 also writes
6279 case F: two volatile queue accesses
6280 */
6281
6282 static char
6283 check_t1_t2_reads_and_writes (TInsn *t1, TInsn *t2)
6284 {
6285 xtensa_isa isa = xtensa_default_isa;
6286 xtensa_regfile t1_regfile, t2_regfile;
6287 int t1_reg, t2_reg;
6288 int t1_base_reg, t1_last_reg;
6289 int t2_base_reg, t2_last_reg;
6290 char t1_inout, t2_inout;
6291 int i, j;
6292 char conflict = 'b';
6293 int t1_states;
6294 int t2_states;
6295 int t1_interfaces;
6296 int t2_interfaces;
6297 bfd_boolean t1_volatile = FALSE;
6298 bfd_boolean t2_volatile = FALSE;
6299
6300 /* Check registers. */
6301 for (j = 0; j < t2->ntok; j++)
6302 {
6303 if (xtensa_operand_is_register (isa, t2->opcode, j) != 1)
6304 continue;
6305
6306 t2_regfile = xtensa_operand_regfile (isa, t2->opcode, j);
6307 t2_base_reg = t2->tok[j].X_add_number;
6308 t2_last_reg = t2_base_reg + xtensa_operand_num_regs (isa, t2->opcode, j);
6309
6310 for (i = 0; i < t1->ntok; i++)
6311 {
6312 if (xtensa_operand_is_register (isa, t1->opcode, i) != 1)
6313 continue;
6314
6315 t1_regfile = xtensa_operand_regfile (isa, t1->opcode, i);
6316
6317 if (t1_regfile != t2_regfile)
6318 continue;
6319
6320 t1_inout = xtensa_operand_inout (isa, t1->opcode, i);
6321 t2_inout = xtensa_operand_inout (isa, t2->opcode, j);
6322
6323 if (xtensa_operand_is_known_reg (isa, t1->opcode, i) == 0
6324 || xtensa_operand_is_known_reg (isa, t2->opcode, j) == 0)
6325 {
6326 if (t1_inout == 'm' || t1_inout == 'o'
6327 || t2_inout == 'm' || t2_inout == 'o')
6328 {
6329 conflict = 'a';
6330 continue;
6331 }
6332 }
6333
6334 t1_base_reg = t1->tok[i].X_add_number;
6335 t1_last_reg = (t1_base_reg
6336 + xtensa_operand_num_regs (isa, t1->opcode, i));
6337
6338 for (t1_reg = t1_base_reg; t1_reg < t1_last_reg; t1_reg++)
6339 {
6340 for (t2_reg = t2_base_reg; t2_reg < t2_last_reg; t2_reg++)
6341 {
6342 if (t1_reg != t2_reg)
6343 continue;
6344
6345 if (t2_inout == 'i' && (t1_inout == 'm' || t1_inout == 'o'))
6346 {
6347 conflict = 'a';
6348 continue;
6349 }
6350
6351 if (t1_inout == 'i' && (t2_inout == 'm' || t2_inout == 'o'))
6352 {
6353 conflict = 'a';
6354 continue;
6355 }
6356
6357 if (t1_inout != 'i' && t2_inout != 'i')
6358 return 'c';
6359 }
6360 }
6361 }
6362 }
6363
6364 /* Check states. */
6365 t1_states = xtensa_opcode_num_stateOperands (isa, t1->opcode);
6366 t2_states = xtensa_opcode_num_stateOperands (isa, t2->opcode);
6367 for (j = 0; j < t2_states; j++)
6368 {
6369 xtensa_state t2_so = xtensa_stateOperand_state (isa, t2->opcode, j);
6370 t2_inout = xtensa_stateOperand_inout (isa, t2->opcode, j);
6371 for (i = 0; i < t1_states; i++)
6372 {
6373 xtensa_state t1_so = xtensa_stateOperand_state (isa, t1->opcode, i);
6374 t1_inout = xtensa_stateOperand_inout (isa, t1->opcode, i);
6375 if (t1_so != t2_so)
6376 continue;
6377
6378 if (t2_inout == 'i' && (t1_inout == 'm' || t1_inout == 'o'))
6379 {
6380 conflict = 'a';
6381 continue;
6382 }
6383
6384 if (t1_inout == 'i' && (t2_inout == 'm' || t2_inout == 'o'))
6385 {
6386 conflict = 'a';
6387 continue;
6388 }
6389
6390 if (t1_inout != 'i' && t2_inout != 'i')
6391 return 'd';
6392 }
6393 }
6394
6395 /* Check tieports. */
6396 t1_interfaces = xtensa_opcode_num_interfaceOperands (isa, t1->opcode);
6397 t2_interfaces = xtensa_opcode_num_interfaceOperands (isa, t2->opcode);
6398 for (j = 0; j < t2_interfaces; j++)
6399 {
6400 xtensa_interface t2_int
6401 = xtensa_interfaceOperand_interface (isa, t2->opcode, j);
6402 int t2_class = xtensa_interface_class_id (isa, t2_int);
6403
6404 t2_inout = xtensa_interface_inout (isa, t2_int);
6405 if (xtensa_interface_has_side_effect (isa, t2_int) == 1)
6406 t2_volatile = TRUE;
6407
6408 for (i = 0; i < t1_interfaces; i++)
6409 {
6410 xtensa_interface t1_int
6411 = xtensa_interfaceOperand_interface (isa, t1->opcode, j);
6412 int t1_class = xtensa_interface_class_id (isa, t1_int);
6413
6414 t1_inout = xtensa_interface_inout (isa, t1_int);
6415 if (xtensa_interface_has_side_effect (isa, t1_int) == 1)
6416 t1_volatile = TRUE;
6417
6418 if (t1_volatile && t2_volatile && (t1_class == t2_class))
6419 return 'f';
6420
6421 if (t1_int != t2_int)
6422 continue;
6423
6424 if (t2_inout == 'i' && t1_inout == 'o')
6425 {
6426 conflict = 'a';
6427 continue;
6428 }
6429
6430 if (t1_inout == 'i' && t2_inout == 'o')
6431 {
6432 conflict = 'a';
6433 continue;
6434 }
6435
6436 if (t1_inout != 'i' && t2_inout != 'i')
6437 return 'e';
6438 }
6439 }
6440
6441 return conflict;
6442 }
6443
6444
6445 static xtensa_format
6446 xg_find_narrowest_format (vliw_insn *vinsn)
6447 {
6448 /* Right now we assume that the ops within the vinsn are properly
6449 ordered for the slots that the programmer wanted them in. In
6450 other words, we don't rearrange the ops in hopes of finding a
6451 better format. The scheduler handles that. */
6452
6453 xtensa_isa isa = xtensa_default_isa;
6454 xtensa_format format;
6455 vliw_insn v_copy = *vinsn;
6456 xtensa_opcode nop_opcode = xtensa_nop_opcode;
6457
6458 if (vinsn->num_slots == 1)
6459 return xg_get_single_format (vinsn->slots[0].opcode);
6460
6461 for (format = 0; format < xtensa_isa_num_formats (isa); format++)
6462 {
6463 v_copy = *vinsn;
6464 if (xtensa_format_num_slots (isa, format) == v_copy.num_slots)
6465 {
6466 int slot;
6467 int fit = 0;
6468 for (slot = 0; slot < v_copy.num_slots; slot++)
6469 {
6470 if (v_copy.slots[slot].opcode == nop_opcode)
6471 {
6472 v_copy.slots[slot].opcode =
6473 xtensa_format_slot_nop_opcode (isa, format, slot);
6474 v_copy.slots[slot].ntok = 0;
6475 }
6476
6477 if (opcode_fits_format_slot (v_copy.slots[slot].opcode,
6478 format, slot))
6479 fit++;
6480 else if (v_copy.num_slots > 1)
6481 {
6482 TInsn widened;
6483 /* Try the widened version. */
6484 if (!v_copy.slots[slot].keep_wide
6485 && !v_copy.slots[slot].is_specific_opcode
6486 && xg_is_single_relaxable_insn (&v_copy.slots[slot],
6487 &widened, TRUE)
6488 && opcode_fits_format_slot (widened.opcode,
6489 format, slot))
6490 {
6491 v_copy.slots[slot] = widened;
6492 fit++;
6493 }
6494 }
6495 }
6496 if (fit == v_copy.num_slots)
6497 {
6498 *vinsn = v_copy;
6499 xtensa_format_encode (isa, format, vinsn->insnbuf);
6500 vinsn->format = format;
6501 break;
6502 }
6503 }
6504 }
6505
6506 if (format == xtensa_isa_num_formats (isa))
6507 return XTENSA_UNDEFINED;
6508
6509 return format;
6510 }
6511
6512
6513 /* Return the additional space needed in a frag
6514 for possible relaxations of any ops in a VLIW insn.
6515 Also fill out the relaxations that might be required of
6516 each tinsn in the vinsn. */
6517
6518 static int
6519 relaxation_requirements (vliw_insn *vinsn, bfd_boolean *pfinish_frag)
6520 {
6521 bfd_boolean finish_frag = FALSE;
6522 int extra_space = 0;
6523 int slot;
6524
6525 for (slot = 0; slot < vinsn->num_slots; slot++)
6526 {
6527 TInsn *tinsn = &vinsn->slots[slot];
6528 if (!tinsn_has_symbolic_operands (tinsn))
6529 {
6530 /* A narrow instruction could be widened later to help
6531 alignment issues. */
6532 if (xg_is_single_relaxable_insn (tinsn, 0, TRUE)
6533 && !tinsn->is_specific_opcode
6534 && vinsn->num_slots == 1)
6535 {
6536 /* Difference in bytes between narrow and wide insns... */
6537 extra_space += 1;
6538 tinsn->subtype = RELAX_NARROW;
6539 }
6540 }
6541 else
6542 {
6543 if (workaround_b_j_loop_end
6544 && tinsn->opcode == xtensa_jx_opcode
6545 && use_transform ())
6546 {
6547 /* Add 2 of these. */
6548 extra_space += 3; /* for the nop size */
6549 tinsn->subtype = RELAX_ADD_NOP_IF_PRE_LOOP_END;
6550 }
6551
6552 /* Need to assemble it with space for the relocation. */
6553 if (xg_is_relaxable_insn (tinsn, 0)
6554 && !tinsn->is_specific_opcode)
6555 {
6556 int max_size = xg_get_max_insn_widen_size (tinsn->opcode);
6557 int max_literal_size =
6558 xg_get_max_insn_widen_literal_size (tinsn->opcode);
6559
6560 tinsn->literal_space = max_literal_size;
6561
6562 tinsn->subtype = RELAX_IMMED;
6563 extra_space += max_size;
6564 }
6565 else
6566 {
6567 /* A fix record will be added for this instruction prior
6568 to relaxation, so make it end the frag. */
6569 finish_frag = TRUE;
6570 }
6571 }
6572 }
6573 *pfinish_frag = finish_frag;
6574 return extra_space;
6575 }
6576
6577
6578 static void
6579 bundle_tinsn (TInsn *tinsn, vliw_insn *vinsn)
6580 {
6581 xtensa_isa isa = xtensa_default_isa;
6582 int slot, chosen_slot;
6583
6584 vinsn->format = xg_get_single_format (tinsn->opcode);
6585 assert (vinsn->format != XTENSA_UNDEFINED);
6586 vinsn->num_slots = xtensa_format_num_slots (isa, vinsn->format);
6587
6588 chosen_slot = xg_get_single_slot (tinsn->opcode);
6589 for (slot = 0; slot < vinsn->num_slots; slot++)
6590 {
6591 if (slot == chosen_slot)
6592 vinsn->slots[slot] = *tinsn;
6593 else
6594 {
6595 vinsn->slots[slot].opcode =
6596 xtensa_format_slot_nop_opcode (isa, vinsn->format, slot);
6597 vinsn->slots[slot].ntok = 0;
6598 vinsn->slots[slot].insn_type = ITYPE_INSN;
6599 }
6600 }
6601 }
6602
6603
6604 static bfd_boolean
6605 emit_single_op (TInsn *orig_insn)
6606 {
6607 int i;
6608 IStack istack; /* put instructions into here */
6609 symbolS *lit_sym = NULL;
6610 symbolS *label_sym = NULL;
6611
6612 istack_init (&istack);
6613
6614 /* Special-case for "movi aX, foo" which is guaranteed to need relaxing.
6615 Because the scheduling and bundling characteristics of movi and
6616 l32r or const16 are so different, we can do much better if we relax
6617 it prior to scheduling and bundling, rather than after. */
6618 if ((orig_insn->opcode == xtensa_movi_opcode
6619 || orig_insn->opcode == xtensa_movi_n_opcode)
6620 && !cur_vinsn.inside_bundle
6621 && (orig_insn->tok[1].X_op == O_symbol
6622 || orig_insn->tok[1].X_op == O_pltrel)
6623 && !orig_insn->is_specific_opcode && use_transform ())
6624 xg_assembly_relax (&istack, orig_insn, now_seg, frag_now, 0, 1, 0);
6625 else
6626 if (xg_expand_assembly_insn (&istack, orig_insn))
6627 return TRUE;
6628
6629 for (i = 0; i < istack.ninsn; i++)
6630 {
6631 TInsn *insn = &istack.insn[i];
6632 switch (insn->insn_type)
6633 {
6634 case ITYPE_LITERAL:
6635 assert (lit_sym == NULL);
6636 lit_sym = xg_assemble_literal (insn);
6637 break;
6638 case ITYPE_LABEL:
6639 {
6640 static int relaxed_sym_idx = 0;
6641 char *label = xmalloc (strlen (FAKE_LABEL_NAME) + 12);
6642 sprintf (label, "%s_rl_%x", FAKE_LABEL_NAME, relaxed_sym_idx++);
6643 colon (label);
6644 assert (label_sym == NULL);
6645 label_sym = symbol_find_or_make (label);
6646 assert (label_sym);
6647 free (label);
6648 }
6649 break;
6650 case ITYPE_INSN:
6651 {
6652 vliw_insn v;
6653 if (lit_sym)
6654 xg_resolve_literals (insn, lit_sym);
6655 if (label_sym)
6656 xg_resolve_labels (insn, label_sym);
6657 xg_init_vinsn (&v);
6658 bundle_tinsn (insn, &v);
6659 finish_vinsn (&v);
6660 xg_free_vinsn (&v);
6661 }
6662 break;
6663 default:
6664 assert (0);
6665 break;
6666 }
6667 }
6668 return FALSE;
6669 }
6670
6671
6672 static int
6673 total_frag_text_expansion (fragS *fragP)
6674 {
6675 int slot;
6676 int total_expansion = 0;
6677
6678 for (slot = 0; slot < MAX_SLOTS; slot++)
6679 total_expansion += fragP->tc_frag_data.text_expansion[slot];
6680
6681 return total_expansion;
6682 }
6683
6684
6685 /* Emit a vliw instruction to the current fragment. */
6686
6687 static void
6688 xg_assemble_vliw_tokens (vliw_insn *vinsn)
6689 {
6690 bfd_boolean finish_frag;
6691 bfd_boolean is_jump = FALSE;
6692 bfd_boolean is_branch = FALSE;
6693 xtensa_isa isa = xtensa_default_isa;
6694 int insn_size;
6695 int extra_space;
6696 char *f = NULL;
6697 int slot;
6698 struct dwarf2_line_info debug_line;
6699 bfd_boolean loc_directive_seen = FALSE;
6700 TInsn *tinsn;
6701
6702 memset (&debug_line, 0, sizeof (struct dwarf2_line_info));
6703
6704 if (generating_literals)
6705 {
6706 static int reported = 0;
6707 if (reported < 4)
6708 as_bad_where (frag_now->fr_file, frag_now->fr_line,
6709 _("cannot assemble into a literal fragment"));
6710 if (reported == 3)
6711 as_bad (_("..."));
6712 reported++;
6713 return;
6714 }
6715
6716 if (frag_now_fix () != 0
6717 && (! frag_now->tc_frag_data.is_insn
6718 || (vinsn_has_specific_opcodes (vinsn) && use_transform ())
6719 || !use_transform () != frag_now->tc_frag_data.is_no_transform
6720 || (directive_state[directive_longcalls]
6721 != frag_now->tc_frag_data.use_longcalls)
6722 || (directive_state[directive_absolute_literals]
6723 != frag_now->tc_frag_data.use_absolute_literals)))
6724 {
6725 frag_wane (frag_now);
6726 frag_new (0);
6727 xtensa_set_frag_assembly_state (frag_now);
6728 }
6729
6730 if (workaround_a0_b_retw
6731 && vinsn->num_slots == 1
6732 && (get_last_insn_flags (now_seg, now_subseg) & FLAG_IS_A0_WRITER) != 0
6733 && xtensa_opcode_is_branch (isa, vinsn->slots[0].opcode) == 1
6734 && use_transform ())
6735 {
6736 has_a0_b_retw = TRUE;
6737
6738 /* Mark this fragment with the special RELAX_ADD_NOP_IF_A0_B_RETW.
6739 After the first assembly pass we will check all of them and
6740 add a nop if needed. */
6741 frag_now->tc_frag_data.is_insn = TRUE;
6742 frag_var (rs_machine_dependent, 4, 4,
6743 RELAX_ADD_NOP_IF_A0_B_RETW,
6744 frag_now->fr_symbol,
6745 frag_now->fr_offset,
6746 NULL);
6747 xtensa_set_frag_assembly_state (frag_now);
6748 frag_now->tc_frag_data.is_insn = TRUE;
6749 frag_var (rs_machine_dependent, 4, 4,
6750 RELAX_ADD_NOP_IF_A0_B_RETW,
6751 frag_now->fr_symbol,
6752 frag_now->fr_offset,
6753 NULL);
6754 xtensa_set_frag_assembly_state (frag_now);
6755 }
6756
6757 for (slot = 0; slot < vinsn->num_slots; slot++)
6758 {
6759 tinsn = &vinsn->slots[slot];
6760
6761 /* See if the instruction implies an aligned section. */
6762 if (xtensa_opcode_is_loop (isa, tinsn->opcode) == 1)
6763 record_alignment (now_seg, 2);
6764
6765 /* Determine the best line number for debug info. */
6766 if ((tinsn->loc_directive_seen || !loc_directive_seen)
6767 && (tinsn->debug_line.filenum != debug_line.filenum
6768 || tinsn->debug_line.line < debug_line.line
6769 || tinsn->debug_line.column < debug_line.column))
6770 debug_line = tinsn->debug_line;
6771 if (tinsn->loc_directive_seen)
6772 loc_directive_seen = TRUE;
6773 }
6774
6775 /* Special cases for instructions that force an alignment... */
6776 /* None of these opcodes are bundle-able. */
6777 if (xtensa_opcode_is_loop (isa, vinsn->slots[0].opcode) == 1)
6778 {
6779 int max_fill;
6780
6781 /* Remember the symbol that marks the end of the loop in the frag
6782 that marks the start of the loop. This way we can easily find
6783 the end of the loop at the beginning, without adding special code
6784 to mark the loop instructions themselves. */
6785 symbolS *target_sym = NULL;
6786 if (vinsn->slots[0].tok[1].X_op == O_symbol)
6787 target_sym = vinsn->slots[0].tok[1].X_add_symbol;
6788
6789 xtensa_set_frag_assembly_state (frag_now);
6790 frag_now->tc_frag_data.is_insn = TRUE;
6791
6792 max_fill = get_text_align_max_fill_size
6793 (get_text_align_power (xtensa_fetch_width),
6794 TRUE, frag_now->tc_frag_data.is_no_density);
6795
6796 if (use_transform ())
6797 frag_var (rs_machine_dependent, max_fill, max_fill,
6798 RELAX_ALIGN_NEXT_OPCODE, target_sym, 0, NULL);
6799 else
6800 frag_var (rs_machine_dependent, 0, 0,
6801 RELAX_CHECK_ALIGN_NEXT_OPCODE, target_sym, 0, NULL);
6802 xtensa_set_frag_assembly_state (frag_now);
6803 }
6804
6805 if (vinsn->slots[0].opcode == xtensa_entry_opcode
6806 && !vinsn->slots[0].is_specific_opcode)
6807 {
6808 xtensa_mark_literal_pool_location ();
6809 xtensa_move_labels (frag_now, 0);
6810 frag_var (rs_align_test, 1, 1, 0, NULL, 2, NULL);
6811 }
6812
6813 if (vinsn->num_slots == 1)
6814 {
6815 if (workaround_a0_b_retw && use_transform ())
6816 set_last_insn_flags (now_seg, now_subseg, FLAG_IS_A0_WRITER,
6817 is_register_writer (&vinsn->slots[0], "a", 0));
6818
6819 set_last_insn_flags (now_seg, now_subseg, FLAG_IS_BAD_LOOPEND,
6820 is_bad_loopend_opcode (&vinsn->slots[0]));
6821 }
6822 else
6823 set_last_insn_flags (now_seg, now_subseg, FLAG_IS_BAD_LOOPEND, FALSE);
6824
6825 insn_size = xtensa_format_length (isa, vinsn->format);
6826
6827 extra_space = relaxation_requirements (vinsn, &finish_frag);
6828
6829 /* vinsn_to_insnbuf will produce the error. */
6830 if (vinsn->format != XTENSA_UNDEFINED)
6831 {
6832 f = frag_more (insn_size + extra_space);
6833 xtensa_set_frag_assembly_state (frag_now);
6834 frag_now->tc_frag_data.is_insn = TRUE;
6835 }
6836
6837 vinsn_to_insnbuf (vinsn, f, frag_now, FALSE);
6838 if (vinsn->format == XTENSA_UNDEFINED)
6839 return;
6840
6841 xtensa_insnbuf_to_chars (isa, vinsn->insnbuf, (unsigned char *) f, 0);
6842
6843 if (debug_type == DEBUG_DWARF2 || loc_directive_seen)
6844 dwarf2_gen_line_info (frag_now_fix () - (insn_size + extra_space),
6845 &debug_line);
6846
6847 for (slot = 0; slot < vinsn->num_slots; slot++)
6848 {
6849 tinsn = &vinsn->slots[slot];
6850 frag_now->tc_frag_data.slot_subtypes[slot] = tinsn->subtype;
6851 frag_now->tc_frag_data.slot_symbols[slot] = tinsn->symbol;
6852 frag_now->tc_frag_data.slot_offsets[slot] = tinsn->offset;
6853 frag_now->tc_frag_data.literal_frags[slot] = tinsn->literal_frag;
6854 if (tinsn->literal_space != 0)
6855 xg_assemble_literal_space (tinsn->literal_space, slot);
6856
6857 if (tinsn->subtype == RELAX_NARROW)
6858 assert (vinsn->num_slots == 1);
6859 if (xtensa_opcode_is_jump (isa, tinsn->opcode) == 1)
6860 is_jump = TRUE;
6861 if (xtensa_opcode_is_branch (isa, tinsn->opcode) == 1)
6862 is_branch = TRUE;
6863
6864 if (tinsn->subtype || tinsn->symbol || tinsn->offset
6865 || tinsn->literal_frag || is_jump || is_branch)
6866 finish_frag = TRUE;
6867 }
6868
6869 if (vinsn_has_specific_opcodes (vinsn) && use_transform ())
6870 frag_now->tc_frag_data.is_specific_opcode = TRUE;
6871
6872 if (finish_frag)
6873 {
6874 frag_variant (rs_machine_dependent,
6875 extra_space, extra_space, RELAX_SLOTS,
6876 frag_now->fr_symbol, frag_now->fr_offset, f);
6877 xtensa_set_frag_assembly_state (frag_now);
6878 }
6879
6880 /* Special cases for loops:
6881 close_loop_end should be inserted AFTER short_loop.
6882 Make sure that CLOSE loops are processed BEFORE short_loops
6883 when converting them. */
6884
6885 /* "short_loop": Add a NOP if the loop is < 4 bytes. */
6886 if (xtensa_opcode_is_loop (isa, vinsn->slots[0].opcode) == 1
6887 && !vinsn->slots[0].is_specific_opcode)
6888 {
6889 if (workaround_short_loop && use_transform ())
6890 {
6891 maybe_has_short_loop = TRUE;
6892 frag_now->tc_frag_data.is_insn = TRUE;
6893 frag_var (rs_machine_dependent, 4, 4,
6894 RELAX_ADD_NOP_IF_SHORT_LOOP,
6895 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6896 frag_now->tc_frag_data.is_insn = TRUE;
6897 frag_var (rs_machine_dependent, 4, 4,
6898 RELAX_ADD_NOP_IF_SHORT_LOOP,
6899 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6900 }
6901
6902 /* "close_loop_end": Add up to 12 bytes of NOPs to keep a
6903 loop at least 12 bytes away from another loop's end. */
6904 if (workaround_close_loop_end && use_transform ())
6905 {
6906 maybe_has_close_loop_end = TRUE;
6907 frag_now->tc_frag_data.is_insn = TRUE;
6908 frag_var (rs_machine_dependent, 12, 12,
6909 RELAX_ADD_NOP_IF_CLOSE_LOOP_END,
6910 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6911 }
6912 }
6913
6914 if (use_transform ())
6915 {
6916 if (is_jump)
6917 {
6918 assert (finish_frag);
6919 frag_var (rs_machine_dependent,
6920 UNREACHABLE_MAX_WIDTH, UNREACHABLE_MAX_WIDTH,
6921 RELAX_UNREACHABLE,
6922 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6923 xtensa_set_frag_assembly_state (frag_now);
6924 }
6925 else if (is_branch && do_align_targets ())
6926 {
6927 assert (finish_frag);
6928 frag_var (rs_machine_dependent,
6929 UNREACHABLE_MAX_WIDTH, UNREACHABLE_MAX_WIDTH,
6930 RELAX_MAYBE_UNREACHABLE,
6931 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6932 xtensa_set_frag_assembly_state (frag_now);
6933 frag_var (rs_machine_dependent,
6934 0, 0,
6935 RELAX_MAYBE_DESIRE_ALIGN,
6936 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6937 xtensa_set_frag_assembly_state (frag_now);
6938 }
6939 }
6940
6941 /* Now, if the original opcode was a call... */
6942 if (do_align_targets ()
6943 && xtensa_opcode_is_call (isa, vinsn->slots[0].opcode) == 1)
6944 {
6945 float freq = get_subseg_total_freq (now_seg, now_subseg);
6946 frag_now->tc_frag_data.is_insn = TRUE;
6947 frag_var (rs_machine_dependent, 4, (int) freq, RELAX_DESIRE_ALIGN,
6948 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6949 xtensa_set_frag_assembly_state (frag_now);
6950 }
6951
6952 if (vinsn_has_specific_opcodes (vinsn) && use_transform ())
6953 {
6954 frag_wane (frag_now);
6955 frag_new (0);
6956 xtensa_set_frag_assembly_state (frag_now);
6957 }
6958 }
6959
6960 \f
6961 /* xtensa_end and helper functions. */
6962
6963 static void xtensa_cleanup_align_frags (void);
6964 static void xtensa_fix_target_frags (void);
6965 static void xtensa_mark_narrow_branches (void);
6966 static void xtensa_mark_zcl_first_insns (void);
6967 static void xtensa_mark_difference_of_two_symbols (void);
6968 static void xtensa_fix_a0_b_retw_frags (void);
6969 static void xtensa_fix_b_j_loop_end_frags (void);
6970 static void xtensa_fix_close_loop_end_frags (void);
6971 static void xtensa_fix_short_loop_frags (void);
6972 static void xtensa_sanity_check (void);
6973 static void xtensa_add_config_info (void);
6974
6975 void
6976 xtensa_end (void)
6977 {
6978 directive_balance ();
6979 xtensa_flush_pending_output ();
6980
6981 past_xtensa_end = TRUE;
6982
6983 xtensa_move_literals ();
6984
6985 xtensa_reorder_segments ();
6986 xtensa_cleanup_align_frags ();
6987 xtensa_fix_target_frags ();
6988 if (workaround_a0_b_retw && has_a0_b_retw)
6989 xtensa_fix_a0_b_retw_frags ();
6990 if (workaround_b_j_loop_end)
6991 xtensa_fix_b_j_loop_end_frags ();
6992
6993 /* "close_loop_end" should be processed BEFORE "short_loop". */
6994 if (workaround_close_loop_end && maybe_has_close_loop_end)
6995 xtensa_fix_close_loop_end_frags ();
6996
6997 if (workaround_short_loop && maybe_has_short_loop)
6998 xtensa_fix_short_loop_frags ();
6999 if (align_targets)
7000 xtensa_mark_narrow_branches ();
7001 xtensa_mark_zcl_first_insns ();
7002
7003 xtensa_sanity_check ();
7004
7005 xtensa_add_config_info ();
7006 }
7007
7008
7009 static void
7010 xtensa_cleanup_align_frags (void)
7011 {
7012 frchainS *frchP;
7013 asection *s;
7014
7015 for (s = stdoutput->sections; s; s = s->next)
7016 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7017 {
7018 fragS *fragP;
7019 /* Walk over all of the fragments in a subsection. */
7020 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7021 {
7022 if ((fragP->fr_type == rs_align
7023 || fragP->fr_type == rs_align_code
7024 || (fragP->fr_type == rs_machine_dependent
7025 && (fragP->fr_subtype == RELAX_DESIRE_ALIGN
7026 || fragP->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET)))
7027 && fragP->fr_fix == 0)
7028 {
7029 fragS *next = fragP->fr_next;
7030
7031 while (next
7032 && next->fr_fix == 0
7033 && next->fr_type == rs_machine_dependent
7034 && next->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET)
7035 {
7036 frag_wane (next);
7037 next = next->fr_next;
7038 }
7039 }
7040 /* If we don't widen branch targets, then they
7041 will be easier to align. */
7042 if (fragP->tc_frag_data.is_branch_target
7043 && fragP->fr_opcode == fragP->fr_literal
7044 && fragP->fr_type == rs_machine_dependent
7045 && fragP->fr_subtype == RELAX_SLOTS
7046 && fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW)
7047 frag_wane (fragP);
7048 if (fragP->fr_type == rs_machine_dependent
7049 && fragP->fr_subtype == RELAX_UNREACHABLE)
7050 fragP->tc_frag_data.is_unreachable = TRUE;
7051 }
7052 }
7053 }
7054
7055
7056 /* Re-process all of the fragments looking to convert all of the
7057 RELAX_DESIRE_ALIGN_IF_TARGET fragments. If there is a branch
7058 target in the next fragment, convert this to RELAX_DESIRE_ALIGN.
7059 Otherwise, convert to a .fill 0. */
7060
7061 static void
7062 xtensa_fix_target_frags (void)
7063 {
7064 frchainS *frchP;
7065 asection *s;
7066
7067 /* When this routine is called, all of the subsections are still intact
7068 so we walk over subsections instead of sections. */
7069 for (s = stdoutput->sections; s; s = s->next)
7070 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7071 {
7072 fragS *fragP;
7073
7074 /* Walk over all of the fragments in a subsection. */
7075 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7076 {
7077 if (fragP->fr_type == rs_machine_dependent
7078 && fragP->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET)
7079 {
7080 if (next_frag_is_branch_target (fragP))
7081 fragP->fr_subtype = RELAX_DESIRE_ALIGN;
7082 else
7083 frag_wane (fragP);
7084 }
7085 }
7086 }
7087 }
7088
7089
7090 static bfd_boolean is_narrow_branch_guaranteed_in_range (fragS *, TInsn *);
7091
7092 static void
7093 xtensa_mark_narrow_branches (void)
7094 {
7095 frchainS *frchP;
7096 asection *s;
7097
7098 for (s = stdoutput->sections; s; s = s->next)
7099 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7100 {
7101 fragS *fragP;
7102 /* Walk over all of the fragments in a subsection. */
7103 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7104 {
7105 if (fragP->fr_type == rs_machine_dependent
7106 && fragP->fr_subtype == RELAX_SLOTS
7107 && fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED)
7108 {
7109 vliw_insn vinsn;
7110
7111 vinsn_from_chars (&vinsn, fragP->fr_opcode);
7112 tinsn_immed_from_frag (&vinsn.slots[0], fragP, 0);
7113
7114 if (vinsn.num_slots == 1
7115 && xtensa_opcode_is_branch (xtensa_default_isa,
7116 vinsn.slots[0].opcode) == 1
7117 && xg_get_single_size (vinsn.slots[0].opcode) == 2
7118 && is_narrow_branch_guaranteed_in_range (fragP,
7119 &vinsn.slots[0]))
7120 {
7121 fragP->fr_subtype = RELAX_SLOTS;
7122 fragP->tc_frag_data.slot_subtypes[0] = RELAX_NARROW;
7123 fragP->tc_frag_data.is_aligning_branch = 1;
7124 }
7125 }
7126 }
7127 }
7128 }
7129
7130
7131 /* A branch is typically widened only when its target is out of
7132 range. However, we would like to widen them to align a subsequent
7133 branch target when possible.
7134
7135 Because the branch relaxation code is so convoluted, the optimal solution
7136 (combining the two cases) is difficult to get right in all circumstances.
7137 We therefore go with an "almost as good" solution, where we only
7138 use for alignment narrow branches that definitely will not expand to a
7139 jump and a branch. These functions find and mark these cases. */
7140
7141 /* The range in bytes of BNEZ.N and BEQZ.N. The target operand is encoded
7142 as PC + 4 + imm6, where imm6 is a 6-bit immediate ranging from 0 to 63.
7143 We start counting beginning with the frag after the 2-byte branch, so the
7144 maximum offset is (4 - 2) + 63 = 65. */
7145 #define MAX_IMMED6 65
7146
7147 static offsetT unrelaxed_frag_max_size (fragS *);
7148
7149 static bfd_boolean
7150 is_narrow_branch_guaranteed_in_range (fragS *fragP, TInsn *tinsn)
7151 {
7152 const expressionS *expr = &tinsn->tok[1];
7153 symbolS *symbolP = expr->X_add_symbol;
7154 offsetT max_distance = expr->X_add_number;
7155 fragS *target_frag;
7156
7157 if (expr->X_op != O_symbol)
7158 return FALSE;
7159
7160 target_frag = symbol_get_frag (symbolP);
7161
7162 max_distance += (S_GET_VALUE (symbolP) - target_frag->fr_address);
7163 if (is_branch_jmp_to_next (tinsn, fragP))
7164 return FALSE;
7165
7166 /* The branch doesn't branch over it's own frag,
7167 but over the subsequent ones. */
7168 fragP = fragP->fr_next;
7169 while (fragP != NULL && fragP != target_frag && max_distance <= MAX_IMMED6)
7170 {
7171 max_distance += unrelaxed_frag_max_size (fragP);
7172 fragP = fragP->fr_next;
7173 }
7174 if (max_distance <= MAX_IMMED6 && fragP == target_frag)
7175 return TRUE;
7176 return FALSE;
7177 }
7178
7179
7180 static void
7181 xtensa_mark_zcl_first_insns (void)
7182 {
7183 frchainS *frchP;
7184 asection *s;
7185
7186 for (s = stdoutput->sections; s; s = s->next)
7187 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7188 {
7189 fragS *fragP;
7190 /* Walk over all of the fragments in a subsection. */
7191 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7192 {
7193 if (fragP->fr_type == rs_machine_dependent
7194 && (fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE
7195 || fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE))
7196 {
7197 /* Find the loop frag. */
7198 fragS *targ_frag = next_non_empty_frag (fragP);
7199 /* Find the first insn frag. */
7200 targ_frag = next_non_empty_frag (targ_frag);
7201
7202 /* Of course, sometimes (mostly for toy test cases) a
7203 zero-cost loop instruction is the last in a section. */
7204 if (targ_frag)
7205 {
7206 targ_frag->tc_frag_data.is_first_loop_insn = TRUE;
7207 /* Do not widen a frag that is the first instruction of a
7208 zero-cost loop. It makes that loop harder to align. */
7209 if (targ_frag->fr_type == rs_machine_dependent
7210 && targ_frag->fr_subtype == RELAX_SLOTS
7211 && (targ_frag->tc_frag_data.slot_subtypes[0]
7212 == RELAX_NARROW))
7213 {
7214 if (targ_frag->tc_frag_data.is_aligning_branch)
7215 targ_frag->tc_frag_data.slot_subtypes[0] = RELAX_IMMED;
7216 else
7217 {
7218 frag_wane (targ_frag);
7219 targ_frag->tc_frag_data.slot_subtypes[0] = 0;
7220 }
7221 }
7222 }
7223 if (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE)
7224 frag_wane (fragP);
7225 }
7226 }
7227 }
7228 }
7229
7230
7231 /* Some difference-of-symbols expressions make it out to the linker. Some
7232 don't. If one does, then the linker can optimize between the two labels.
7233 If it doesn't, then the linker shouldn't. */
7234
7235 static void
7236 xtensa_mark_difference_of_two_symbols (void)
7237 {
7238 symbolS *expr_sym;
7239
7240 for (expr_sym = expr_symbols; expr_sym;
7241 expr_sym = symbol_get_tc (expr_sym)->next_expr_symbol)
7242 {
7243 expressionS *expr = symbol_get_value_expression (expr_sym);
7244
7245 if (expr->X_op == O_subtract)
7246 {
7247 symbolS *left = expr->X_add_symbol;
7248 symbolS *right = expr->X_op_symbol;
7249
7250 /* Difference of two symbols not in the same section
7251 are handled with relocations in the linker. */
7252 if (S_GET_SEGMENT (left) == S_GET_SEGMENT (right))
7253 {
7254 fragS *start;
7255 fragS *end;
7256
7257 if (symbol_get_frag (left)->fr_address
7258 <= symbol_get_frag (right)->fr_address)
7259 {
7260 start = symbol_get_frag (left);
7261 end = symbol_get_frag (right);
7262 }
7263 else
7264 {
7265 start = symbol_get_frag (right);
7266 end = symbol_get_frag (left);
7267 }
7268 do
7269 {
7270 start->tc_frag_data.is_no_transform = 1;
7271 start = start->fr_next;
7272 }
7273 while (start && start->fr_address < end->fr_address);
7274 }
7275 }
7276 }
7277 }
7278
7279
7280 /* Re-process all of the fragments looking to convert all of the
7281 RELAX_ADD_NOP_IF_A0_B_RETW. If the next instruction is a
7282 conditional branch or a retw/retw.n, convert this frag to one that
7283 will generate a NOP. In any case close it off with a .fill 0. */
7284
7285 static bfd_boolean next_instrs_are_b_retw (fragS *);
7286
7287 static void
7288 xtensa_fix_a0_b_retw_frags (void)
7289 {
7290 frchainS *frchP;
7291 asection *s;
7292
7293 /* When this routine is called, all of the subsections are still intact
7294 so we walk over subsections instead of sections. */
7295 for (s = stdoutput->sections; s; s = s->next)
7296 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7297 {
7298 fragS *fragP;
7299
7300 /* Walk over all of the fragments in a subsection. */
7301 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7302 {
7303 if (fragP->fr_type == rs_machine_dependent
7304 && fragP->fr_subtype == RELAX_ADD_NOP_IF_A0_B_RETW)
7305 {
7306 if (next_instrs_are_b_retw (fragP))
7307 {
7308 if (fragP->tc_frag_data.is_no_transform)
7309 as_bad (_("instruction sequence (write a0, branch, retw) may trigger hardware errata"));
7310 else
7311 relax_frag_add_nop (fragP);
7312 }
7313 frag_wane (fragP);
7314 }
7315 }
7316 }
7317 }
7318
7319
7320 static bfd_boolean
7321 next_instrs_are_b_retw (fragS *fragP)
7322 {
7323 xtensa_opcode opcode;
7324 xtensa_format fmt;
7325 const fragS *next_fragP = next_non_empty_frag (fragP);
7326 static xtensa_insnbuf insnbuf = NULL;
7327 static xtensa_insnbuf slotbuf = NULL;
7328 xtensa_isa isa = xtensa_default_isa;
7329 int offset = 0;
7330 int slot;
7331 bfd_boolean branch_seen = FALSE;
7332
7333 if (!insnbuf)
7334 {
7335 insnbuf = xtensa_insnbuf_alloc (isa);
7336 slotbuf = xtensa_insnbuf_alloc (isa);
7337 }
7338
7339 if (next_fragP == NULL)
7340 return FALSE;
7341
7342 /* Check for the conditional branch. */
7343 xtensa_insnbuf_from_chars
7344 (isa, insnbuf, (unsigned char *) &next_fragP->fr_literal[offset], 0);
7345 fmt = xtensa_format_decode (isa, insnbuf);
7346 if (fmt == XTENSA_UNDEFINED)
7347 return FALSE;
7348
7349 for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++)
7350 {
7351 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf);
7352 opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf);
7353
7354 branch_seen = (branch_seen
7355 || xtensa_opcode_is_branch (isa, opcode) == 1);
7356 }
7357
7358 if (!branch_seen)
7359 return FALSE;
7360
7361 offset += xtensa_format_length (isa, fmt);
7362 if (offset == next_fragP->fr_fix)
7363 {
7364 next_fragP = next_non_empty_frag (next_fragP);
7365 offset = 0;
7366 }
7367
7368 if (next_fragP == NULL)
7369 return FALSE;
7370
7371 /* Check for the retw/retw.n. */
7372 xtensa_insnbuf_from_chars
7373 (isa, insnbuf, (unsigned char *) &next_fragP->fr_literal[offset], 0);
7374 fmt = xtensa_format_decode (isa, insnbuf);
7375
7376 /* Because RETW[.N] is not bundleable, a VLIW bundle here means that we
7377 have no problems. */
7378 if (fmt == XTENSA_UNDEFINED
7379 || xtensa_format_num_slots (isa, fmt) != 1)
7380 return FALSE;
7381
7382 xtensa_format_get_slot (isa, fmt, 0, insnbuf, slotbuf);
7383 opcode = xtensa_opcode_decode (isa, fmt, 0, slotbuf);
7384
7385 if (opcode == xtensa_retw_opcode || opcode == xtensa_retw_n_opcode)
7386 return TRUE;
7387
7388 return FALSE;
7389 }
7390
7391
7392 /* Re-process all of the fragments looking to convert all of the
7393 RELAX_ADD_NOP_IF_PRE_LOOP_END. If there is one instruction and a
7394 loop end label, convert this frag to one that will generate a NOP.
7395 In any case close it off with a .fill 0. */
7396
7397 static bfd_boolean next_instr_is_loop_end (fragS *);
7398
7399 static void
7400 xtensa_fix_b_j_loop_end_frags (void)
7401 {
7402 frchainS *frchP;
7403 asection *s;
7404
7405 /* When this routine is called, all of the subsections are still intact
7406 so we walk over subsections instead of sections. */
7407 for (s = stdoutput->sections; s; s = s->next)
7408 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7409 {
7410 fragS *fragP;
7411
7412 /* Walk over all of the fragments in a subsection. */
7413 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7414 {
7415 if (fragP->fr_type == rs_machine_dependent
7416 && fragP->fr_subtype == RELAX_ADD_NOP_IF_PRE_LOOP_END)
7417 {
7418 if (next_instr_is_loop_end (fragP))
7419 {
7420 if (fragP->tc_frag_data.is_no_transform)
7421 as_bad (_("branching or jumping to a loop end may trigger hardware errata"));
7422 else
7423 relax_frag_add_nop (fragP);
7424 }
7425 frag_wane (fragP);
7426 }
7427 }
7428 }
7429 }
7430
7431
7432 static bfd_boolean
7433 next_instr_is_loop_end (fragS *fragP)
7434 {
7435 const fragS *next_fragP;
7436
7437 if (next_frag_is_loop_target (fragP))
7438 return FALSE;
7439
7440 next_fragP = next_non_empty_frag (fragP);
7441 if (next_fragP == NULL)
7442 return FALSE;
7443
7444 if (!next_frag_is_loop_target (next_fragP))
7445 return FALSE;
7446
7447 /* If the size is >= 3 then there is more than one instruction here.
7448 The hardware bug will not fire. */
7449 if (next_fragP->fr_fix > 3)
7450 return FALSE;
7451
7452 return TRUE;
7453 }
7454
7455
7456 /* Re-process all of the fragments looking to convert all of the
7457 RELAX_ADD_NOP_IF_CLOSE_LOOP_END. If there is an loop end that is
7458 not MY loop's loop end within 12 bytes, add enough nops here to
7459 make it at least 12 bytes away. In any case close it off with a
7460 .fill 0. */
7461
7462 static offsetT min_bytes_to_other_loop_end
7463 (fragS *, fragS *, offsetT);
7464
7465 static void
7466 xtensa_fix_close_loop_end_frags (void)
7467 {
7468 frchainS *frchP;
7469 asection *s;
7470
7471 /* When this routine is called, all of the subsections are still intact
7472 so we walk over subsections instead of sections. */
7473 for (s = stdoutput->sections; s; s = s->next)
7474 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7475 {
7476 fragS *fragP;
7477
7478 fragS *current_target = NULL;
7479
7480 /* Walk over all of the fragments in a subsection. */
7481 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7482 {
7483 if (fragP->fr_type == rs_machine_dependent
7484 && ((fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE)
7485 || (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE)))
7486 current_target = symbol_get_frag (fragP->fr_symbol);
7487
7488 if (current_target
7489 && fragP->fr_type == rs_machine_dependent
7490 && fragP->fr_subtype == RELAX_ADD_NOP_IF_CLOSE_LOOP_END)
7491 {
7492 offsetT min_bytes;
7493 int bytes_added = 0;
7494
7495 #define REQUIRED_LOOP_DIVIDING_BYTES 12
7496 /* Max out at 12. */
7497 min_bytes = min_bytes_to_other_loop_end
7498 (fragP->fr_next, current_target, REQUIRED_LOOP_DIVIDING_BYTES);
7499
7500 if (min_bytes < REQUIRED_LOOP_DIVIDING_BYTES)
7501 {
7502 if (fragP->tc_frag_data.is_no_transform)
7503 as_bad (_("loop end too close to another loop end may trigger hardware errata"));
7504 else
7505 {
7506 while (min_bytes + bytes_added
7507 < REQUIRED_LOOP_DIVIDING_BYTES)
7508 {
7509 int length = 3;
7510
7511 if (fragP->fr_var < length)
7512 as_fatal (_("fr_var %lu < length %d"),
7513 (long) fragP->fr_var, length);
7514 else
7515 {
7516 assemble_nop (length,
7517 fragP->fr_literal + fragP->fr_fix);
7518 fragP->fr_fix += length;
7519 fragP->fr_var -= length;
7520 }
7521 bytes_added += length;
7522 }
7523 }
7524 }
7525 frag_wane (fragP);
7526 }
7527 assert (fragP->fr_type != rs_machine_dependent
7528 || fragP->fr_subtype != RELAX_ADD_NOP_IF_CLOSE_LOOP_END);
7529 }
7530 }
7531 }
7532
7533
7534 static offsetT unrelaxed_frag_min_size (fragS *);
7535
7536 static offsetT
7537 min_bytes_to_other_loop_end (fragS *fragP,
7538 fragS *current_target,
7539 offsetT max_size)
7540 {
7541 offsetT offset = 0;
7542 fragS *current_fragP;
7543
7544 for (current_fragP = fragP;
7545 current_fragP;
7546 current_fragP = current_fragP->fr_next)
7547 {
7548 if (current_fragP->tc_frag_data.is_loop_target
7549 && current_fragP != current_target)
7550 return offset;
7551
7552 offset += unrelaxed_frag_min_size (current_fragP);
7553
7554 if (offset >= max_size)
7555 return max_size;
7556 }
7557 return max_size;
7558 }
7559
7560
7561 static offsetT
7562 unrelaxed_frag_min_size (fragS *fragP)
7563 {
7564 offsetT size = fragP->fr_fix;
7565
7566 /* Add fill size. */
7567 if (fragP->fr_type == rs_fill)
7568 size += fragP->fr_offset;
7569
7570 return size;
7571 }
7572
7573
7574 static offsetT
7575 unrelaxed_frag_max_size (fragS *fragP)
7576 {
7577 offsetT size = fragP->fr_fix;
7578 switch (fragP->fr_type)
7579 {
7580 case 0:
7581 /* Empty frags created by the obstack allocation scheme
7582 end up with type 0. */
7583 break;
7584 case rs_fill:
7585 case rs_org:
7586 case rs_space:
7587 size += fragP->fr_offset;
7588 break;
7589 case rs_align:
7590 case rs_align_code:
7591 case rs_align_test:
7592 case rs_leb128:
7593 case rs_cfa:
7594 case rs_dwarf2dbg:
7595 /* No further adjustments needed. */
7596 break;
7597 case rs_machine_dependent:
7598 if (fragP->fr_subtype != RELAX_DESIRE_ALIGN)
7599 size += fragP->fr_var;
7600 break;
7601 default:
7602 /* We had darn well better know how big it is. */
7603 assert (0);
7604 break;
7605 }
7606
7607 return size;
7608 }
7609
7610
7611 /* Re-process all of the fragments looking to convert all
7612 of the RELAX_ADD_NOP_IF_SHORT_LOOP. If:
7613
7614 A)
7615 1) the instruction size count to the loop end label
7616 is too short (<= 2 instructions),
7617 2) loop has a jump or branch in it
7618
7619 or B)
7620 1) workaround_all_short_loops is TRUE
7621 2) The generating loop was a 'loopgtz' or 'loopnez'
7622 3) the instruction size count to the loop end label is too short
7623 (<= 2 instructions)
7624 then convert this frag (and maybe the next one) to generate a NOP.
7625 In any case close it off with a .fill 0. */
7626
7627 static int count_insns_to_loop_end (fragS *, bfd_boolean, int);
7628 static bfd_boolean branch_before_loop_end (fragS *);
7629
7630 static void
7631 xtensa_fix_short_loop_frags (void)
7632 {
7633 frchainS *frchP;
7634 asection *s;
7635
7636 /* When this routine is called, all of the subsections are still intact
7637 so we walk over subsections instead of sections. */
7638 for (s = stdoutput->sections; s; s = s->next)
7639 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7640 {
7641 fragS *fragP;
7642 fragS *current_target = NULL;
7643 xtensa_opcode current_opcode = XTENSA_UNDEFINED;
7644
7645 /* Walk over all of the fragments in a subsection. */
7646 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7647 {
7648 if (fragP->fr_type == rs_machine_dependent
7649 && ((fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE)
7650 || (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE)))
7651 {
7652 TInsn t_insn;
7653 fragS *loop_frag = next_non_empty_frag (fragP);
7654 tinsn_from_chars (&t_insn, loop_frag->fr_opcode, 0);
7655 current_target = symbol_get_frag (fragP->fr_symbol);
7656 current_opcode = t_insn.opcode;
7657 assert (xtensa_opcode_is_loop (xtensa_default_isa,
7658 current_opcode) == 1);
7659 }
7660
7661 if (fragP->fr_type == rs_machine_dependent
7662 && fragP->fr_subtype == RELAX_ADD_NOP_IF_SHORT_LOOP)
7663 {
7664 if (count_insns_to_loop_end (fragP->fr_next, TRUE, 3) < 3
7665 && (branch_before_loop_end (fragP->fr_next)
7666 || (workaround_all_short_loops
7667 && current_opcode != XTENSA_UNDEFINED
7668 && current_opcode != xtensa_loop_opcode)))
7669 {
7670 if (fragP->tc_frag_data.is_no_transform)
7671 as_bad (_("loop containing less than three instructions may trigger hardware errata"));
7672 else
7673 relax_frag_add_nop (fragP);
7674 }
7675 frag_wane (fragP);
7676 }
7677 }
7678 }
7679 }
7680
7681
7682 static int unrelaxed_frag_min_insn_count (fragS *);
7683
7684 static int
7685 count_insns_to_loop_end (fragS *base_fragP,
7686 bfd_boolean count_relax_add,
7687 int max_count)
7688 {
7689 fragS *fragP = NULL;
7690 int insn_count = 0;
7691
7692 fragP = base_fragP;
7693
7694 for (; fragP && !fragP->tc_frag_data.is_loop_target; fragP = fragP->fr_next)
7695 {
7696 insn_count += unrelaxed_frag_min_insn_count (fragP);
7697 if (insn_count >= max_count)
7698 return max_count;
7699
7700 if (count_relax_add)
7701 {
7702 if (fragP->fr_type == rs_machine_dependent
7703 && fragP->fr_subtype == RELAX_ADD_NOP_IF_SHORT_LOOP)
7704 {
7705 /* In order to add the appropriate number of
7706 NOPs, we count an instruction for downstream
7707 occurrences. */
7708 insn_count++;
7709 if (insn_count >= max_count)
7710 return max_count;
7711 }
7712 }
7713 }
7714 return insn_count;
7715 }
7716
7717
7718 static int
7719 unrelaxed_frag_min_insn_count (fragS *fragP)
7720 {
7721 xtensa_isa isa = xtensa_default_isa;
7722 static xtensa_insnbuf insnbuf = NULL;
7723 int insn_count = 0;
7724 int offset = 0;
7725
7726 if (!fragP->tc_frag_data.is_insn)
7727 return insn_count;
7728
7729 if (!insnbuf)
7730 insnbuf = xtensa_insnbuf_alloc (isa);
7731
7732 /* Decode the fixed instructions. */
7733 while (offset < fragP->fr_fix)
7734 {
7735 xtensa_format fmt;
7736
7737 xtensa_insnbuf_from_chars
7738 (isa, insnbuf, (unsigned char *) fragP->fr_literal + offset, 0);
7739 fmt = xtensa_format_decode (isa, insnbuf);
7740
7741 if (fmt == XTENSA_UNDEFINED)
7742 {
7743 as_fatal (_("undecodable instruction in instruction frag"));
7744 return insn_count;
7745 }
7746 offset += xtensa_format_length (isa, fmt);
7747 insn_count++;
7748 }
7749
7750 return insn_count;
7751 }
7752
7753
7754 static bfd_boolean unrelaxed_frag_has_b_j (fragS *);
7755
7756 static bfd_boolean
7757 branch_before_loop_end (fragS *base_fragP)
7758 {
7759 fragS *fragP;
7760
7761 for (fragP = base_fragP;
7762 fragP && !fragP->tc_frag_data.is_loop_target;
7763 fragP = fragP->fr_next)
7764 {
7765 if (unrelaxed_frag_has_b_j (fragP))
7766 return TRUE;
7767 }
7768 return FALSE;
7769 }
7770
7771
7772 static bfd_boolean
7773 unrelaxed_frag_has_b_j (fragS *fragP)
7774 {
7775 static xtensa_insnbuf insnbuf = NULL;
7776 xtensa_isa isa = xtensa_default_isa;
7777 int offset = 0;
7778
7779 if (!fragP->tc_frag_data.is_insn)
7780 return FALSE;
7781
7782 if (!insnbuf)
7783 insnbuf = xtensa_insnbuf_alloc (isa);
7784
7785 /* Decode the fixed instructions. */
7786 while (offset < fragP->fr_fix)
7787 {
7788 xtensa_format fmt;
7789 int slot;
7790
7791 xtensa_insnbuf_from_chars
7792 (isa, insnbuf, (unsigned char *) fragP->fr_literal + offset, 0);
7793 fmt = xtensa_format_decode (isa, insnbuf);
7794 if (fmt == XTENSA_UNDEFINED)
7795 return FALSE;
7796
7797 for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++)
7798 {
7799 xtensa_opcode opcode =
7800 get_opcode_from_buf (fragP->fr_literal + offset, slot);
7801 if (xtensa_opcode_is_branch (isa, opcode) == 1
7802 || xtensa_opcode_is_jump (isa, opcode) == 1)
7803 return TRUE;
7804 }
7805 offset += xtensa_format_length (isa, fmt);
7806 }
7807 return FALSE;
7808 }
7809
7810
7811 /* Checks to be made after initial assembly but before relaxation. */
7812
7813 static bfd_boolean is_empty_loop (const TInsn *, fragS *);
7814 static bfd_boolean is_local_forward_loop (const TInsn *, fragS *);
7815
7816 static void
7817 xtensa_sanity_check (void)
7818 {
7819 char *file_name;
7820 unsigned line;
7821 frchainS *frchP;
7822 asection *s;
7823
7824 as_where (&file_name, &line);
7825 for (s = stdoutput->sections; s; s = s->next)
7826 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7827 {
7828 fragS *fragP;
7829
7830 /* Walk over all of the fragments in a subsection. */
7831 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7832 {
7833 if (fragP->fr_type == rs_machine_dependent
7834 && fragP->fr_subtype == RELAX_SLOTS
7835 && fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED)
7836 {
7837 static xtensa_insnbuf insnbuf = NULL;
7838 TInsn t_insn;
7839
7840 if (fragP->fr_opcode != NULL)
7841 {
7842 if (!insnbuf)
7843 insnbuf = xtensa_insnbuf_alloc (xtensa_default_isa);
7844 tinsn_from_chars (&t_insn, fragP->fr_opcode, 0);
7845 tinsn_immed_from_frag (&t_insn, fragP, 0);
7846
7847 if (xtensa_opcode_is_loop (xtensa_default_isa,
7848 t_insn.opcode) == 1)
7849 {
7850 if (is_empty_loop (&t_insn, fragP))
7851 {
7852 new_logical_line (fragP->fr_file, fragP->fr_line);
7853 as_bad (_("invalid empty loop"));
7854 }
7855 if (!is_local_forward_loop (&t_insn, fragP))
7856 {
7857 new_logical_line (fragP->fr_file, fragP->fr_line);
7858 as_bad (_("loop target does not follow "
7859 "loop instruction in section"));
7860 }
7861 }
7862 }
7863 }
7864 }
7865 }
7866 new_logical_line (file_name, line);
7867 }
7868
7869
7870 #define LOOP_IMMED_OPN 1
7871
7872 /* Return TRUE if the loop target is the next non-zero fragment. */
7873
7874 static bfd_boolean
7875 is_empty_loop (const TInsn *insn, fragS *fragP)
7876 {
7877 const expressionS *expr;
7878 symbolS *symbolP;
7879 fragS *next_fragP;
7880
7881 if (insn->insn_type != ITYPE_INSN)
7882 return FALSE;
7883
7884 if (xtensa_opcode_is_loop (xtensa_default_isa, insn->opcode) != 1)
7885 return FALSE;
7886
7887 if (insn->ntok <= LOOP_IMMED_OPN)
7888 return FALSE;
7889
7890 expr = &insn->tok[LOOP_IMMED_OPN];
7891
7892 if (expr->X_op != O_symbol)
7893 return FALSE;
7894
7895 symbolP = expr->X_add_symbol;
7896 if (!symbolP)
7897 return FALSE;
7898
7899 if (symbol_get_frag (symbolP) == NULL)
7900 return FALSE;
7901
7902 if (S_GET_VALUE (symbolP) != 0)
7903 return FALSE;
7904
7905 /* Walk through the zero-size fragments from this one. If we find
7906 the target fragment, then this is a zero-size loop. */
7907
7908 for (next_fragP = fragP->fr_next;
7909 next_fragP != NULL;
7910 next_fragP = next_fragP->fr_next)
7911 {
7912 if (next_fragP == symbol_get_frag (symbolP))
7913 return TRUE;
7914 if (next_fragP->fr_fix != 0)
7915 return FALSE;
7916 }
7917 return FALSE;
7918 }
7919
7920
7921 static bfd_boolean
7922 is_local_forward_loop (const TInsn *insn, fragS *fragP)
7923 {
7924 const expressionS *expr;
7925 symbolS *symbolP;
7926 fragS *next_fragP;
7927
7928 if (insn->insn_type != ITYPE_INSN)
7929 return FALSE;
7930
7931 if (xtensa_opcode_is_loop (xtensa_default_isa, insn->opcode) != 1)
7932 return FALSE;
7933
7934 if (insn->ntok <= LOOP_IMMED_OPN)
7935 return FALSE;
7936
7937 expr = &insn->tok[LOOP_IMMED_OPN];
7938
7939 if (expr->X_op != O_symbol)
7940 return FALSE;
7941
7942 symbolP = expr->X_add_symbol;
7943 if (!symbolP)
7944 return FALSE;
7945
7946 if (symbol_get_frag (symbolP) == NULL)
7947 return FALSE;
7948
7949 /* Walk through fragments until we find the target.
7950 If we do not find the target, then this is an invalid loop. */
7951
7952 for (next_fragP = fragP->fr_next;
7953 next_fragP != NULL;
7954 next_fragP = next_fragP->fr_next)
7955 {
7956 if (next_fragP == symbol_get_frag (symbolP))
7957 return TRUE;
7958 }
7959
7960 return FALSE;
7961 }
7962
7963
7964 #define XTINFO_NAME "Xtensa_Info"
7965 #define XTINFO_NAMESZ 12
7966 #define XTINFO_TYPE 1
7967
7968 static void
7969 xtensa_add_config_info (void)
7970 {
7971 asection *info_sec;
7972 char *data, *p;
7973 int sz;
7974
7975 info_sec = subseg_new (".xtensa.info", 0);
7976 bfd_set_section_flags (stdoutput, info_sec, SEC_HAS_CONTENTS | SEC_READONLY);
7977
7978 data = xmalloc (100);
7979 sprintf (data, "USE_ABSOLUTE_LITERALS=%d\nABI=%d\n",
7980 XSHAL_USE_ABSOLUTE_LITERALS, XSHAL_ABI);
7981 sz = strlen (data) + 1;
7982
7983 /* Add enough null terminators to pad to a word boundary. */
7984 do
7985 data[sz++] = 0;
7986 while ((sz & 3) != 0);
7987
7988 /* Follow the standard note section layout:
7989 First write the length of the name string. */
7990 p = frag_more (4);
7991 md_number_to_chars (p, (valueT) XTINFO_NAMESZ, 4);
7992
7993 /* Next comes the length of the "descriptor", i.e., the actual data. */
7994 p = frag_more (4);
7995 md_number_to_chars (p, (valueT) sz, 4);
7996
7997 /* Write the note type. */
7998 p = frag_more (4);
7999 md_number_to_chars (p, (valueT) XTINFO_TYPE, 4);
8000
8001 /* Write the name field. */
8002 p = frag_more (XTINFO_NAMESZ);
8003 memcpy (p, XTINFO_NAME, XTINFO_NAMESZ);
8004
8005 /* Finally, write the descriptor. */
8006 p = frag_more (sz);
8007 memcpy (p, data, sz);
8008
8009 free (data);
8010 }
8011
8012 \f
8013 /* Alignment Functions. */
8014
8015 static int
8016 get_text_align_power (unsigned target_size)
8017 {
8018 if (target_size <= 4)
8019 return 2;
8020 assert (target_size == 8);
8021 return 3;
8022 }
8023
8024
8025 static int
8026 get_text_align_max_fill_size (int align_pow,
8027 bfd_boolean use_nops,
8028 bfd_boolean use_no_density)
8029 {
8030 if (!use_nops)
8031 return (1 << align_pow);
8032 if (use_no_density)
8033 return 3 * (1 << align_pow);
8034
8035 return 1 + (1 << align_pow);
8036 }
8037
8038
8039 /* Calculate the minimum bytes of fill needed at "address" to align a
8040 target instruction of size "target_size" so that it does not cross a
8041 power-of-two boundary specified by "align_pow". If "use_nops" is FALSE,
8042 the fill can be an arbitrary number of bytes. Otherwise, the space must
8043 be filled by NOP instructions. */
8044
8045 static int
8046 get_text_align_fill_size (addressT address,
8047 int align_pow,
8048 int target_size,
8049 bfd_boolean use_nops,
8050 bfd_boolean use_no_density)
8051 {
8052 addressT alignment, fill, fill_limit, fill_step;
8053 bfd_boolean skip_one = FALSE;
8054
8055 alignment = (1 << align_pow);
8056 assert (target_size > 0 && alignment >= (addressT) target_size);
8057
8058 if (!use_nops)
8059 {
8060 fill_limit = alignment;
8061 fill_step = 1;
8062 }
8063 else if (!use_no_density)
8064 {
8065 /* Combine 2- and 3-byte NOPs to fill anything larger than one. */
8066 fill_limit = alignment * 2;
8067 fill_step = 1;
8068 skip_one = TRUE;
8069 }
8070 else
8071 {
8072 /* Fill with 3-byte NOPs -- can only fill multiples of 3. */
8073 fill_limit = alignment * 3;
8074 fill_step = 3;
8075 }
8076
8077 /* Try all fill sizes until finding one that works. */
8078 for (fill = 0; fill < fill_limit; fill += fill_step)
8079 {
8080 if (skip_one && fill == 1)
8081 continue;
8082 if ((address + fill) >> align_pow
8083 == (address + fill + target_size - 1) >> align_pow)
8084 return fill;
8085 }
8086 assert (0);
8087 return 0;
8088 }
8089
8090
8091 static int
8092 branch_align_power (segT sec)
8093 {
8094 /* If the Xtensa processor has a fetch width of 8 bytes, and the section
8095 is aligned to at least an 8-byte boundary, then a branch target need
8096 only fit within an 8-byte aligned block of memory to avoid a stall.
8097 Otherwise, try to fit branch targets within 4-byte aligned blocks
8098 (which may be insufficient, e.g., if the section has no alignment, but
8099 it's good enough). */
8100 if (xtensa_fetch_width == 8)
8101 {
8102 if (get_recorded_alignment (sec) >= 3)
8103 return 3;
8104 }
8105 else
8106 assert (xtensa_fetch_width == 4);
8107
8108 return 2;
8109 }
8110
8111
8112 /* This will assert if it is not possible. */
8113
8114 static int
8115 get_text_align_nop_count (offsetT fill_size, bfd_boolean use_no_density)
8116 {
8117 int count = 0;
8118
8119 if (use_no_density)
8120 {
8121 assert (fill_size % 3 == 0);
8122 return (fill_size / 3);
8123 }
8124
8125 assert (fill_size != 1); /* Bad argument. */
8126
8127 while (fill_size > 1)
8128 {
8129 int insn_size = 3;
8130 if (fill_size == 2 || fill_size == 4)
8131 insn_size = 2;
8132 fill_size -= insn_size;
8133 count++;
8134 }
8135 assert (fill_size != 1); /* Bad algorithm. */
8136 return count;
8137 }
8138
8139
8140 static int
8141 get_text_align_nth_nop_size (offsetT fill_size,
8142 int n,
8143 bfd_boolean use_no_density)
8144 {
8145 int count = 0;
8146
8147 if (use_no_density)
8148 return 3;
8149
8150 assert (fill_size != 1); /* Bad argument. */
8151
8152 while (fill_size > 1)
8153 {
8154 int insn_size = 3;
8155 if (fill_size == 2 || fill_size == 4)
8156 insn_size = 2;
8157 fill_size -= insn_size;
8158 count++;
8159 if (n + 1 == count)
8160 return insn_size;
8161 }
8162 assert (0);
8163 return 0;
8164 }
8165
8166
8167 /* For the given fragment, find the appropriate address
8168 for it to begin at if we are using NOPs to align it. */
8169
8170 static addressT
8171 get_noop_aligned_address (fragS *fragP, addressT address)
8172 {
8173 /* The rule is: get next fragment's FIRST instruction. Find
8174 the smallest number of bytes that need to be added to
8175 ensure that the next fragment's FIRST instruction will fit
8176 in a single word.
8177
8178 E.G., 2 bytes : 0, 1, 2 mod 4
8179 3 bytes: 0, 1 mod 4
8180
8181 If the FIRST instruction MIGHT be relaxed,
8182 assume that it will become a 3-byte instruction.
8183
8184 Note again here that LOOP instructions are not bundleable,
8185 and this relaxation only applies to LOOP opcodes. */
8186
8187 int fill_size = 0;
8188 int first_insn_size;
8189 int loop_insn_size;
8190 addressT pre_opcode_bytes;
8191 int align_power;
8192 fragS *first_insn;
8193 xtensa_opcode opcode;
8194 bfd_boolean is_loop;
8195
8196 assert (fragP->fr_type == rs_machine_dependent);
8197 assert (fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE);
8198
8199 /* Find the loop frag. */
8200 first_insn = next_non_empty_frag (fragP);
8201 /* Now find the first insn frag. */
8202 first_insn = next_non_empty_frag (first_insn);
8203
8204 is_loop = next_frag_opcode_is_loop (fragP, &opcode);
8205 assert (is_loop);
8206 loop_insn_size = xg_get_single_size (opcode);
8207
8208 pre_opcode_bytes = next_frag_pre_opcode_bytes (fragP);
8209 pre_opcode_bytes += loop_insn_size;
8210
8211 /* For loops, the alignment depends on the size of the
8212 instruction following the loop, not the LOOP instruction. */
8213
8214 if (first_insn == NULL)
8215 first_insn_size = xtensa_fetch_width;
8216 else
8217 first_insn_size = get_loop_align_size (frag_format_size (first_insn));
8218
8219 /* If it was 8, then we'll need a larger alignment for the section. */
8220 align_power = get_text_align_power (first_insn_size);
8221 record_alignment (now_seg, align_power);
8222
8223 fill_size = get_text_align_fill_size
8224 (address + pre_opcode_bytes, align_power, first_insn_size, TRUE,
8225 fragP->tc_frag_data.is_no_density);
8226
8227 return address + fill_size;
8228 }
8229
8230
8231 /* 3 mechanisms for relaxing an alignment:
8232
8233 Align to a power of 2.
8234 Align so the next fragment's instruction does not cross a word boundary.
8235 Align the current instruction so that if the next instruction
8236 were 3 bytes, it would not cross a word boundary.
8237
8238 We can align with:
8239
8240 zeros - This is easy; always insert zeros.
8241 nops - 3-byte and 2-byte instructions
8242 2 - 2-byte nop
8243 3 - 3-byte nop
8244 4 - 2 2-byte nops
8245 >=5 : 3-byte instruction + fn (n-3)
8246 widening - widen previous instructions. */
8247
8248 static offsetT
8249 get_aligned_diff (fragS *fragP, addressT address, offsetT *max_diff)
8250 {
8251 addressT target_address, loop_insn_offset;
8252 int target_size;
8253 xtensa_opcode loop_opcode;
8254 bfd_boolean is_loop;
8255 int align_power;
8256 offsetT opt_diff;
8257 offsetT branch_align;
8258
8259 assert (fragP->fr_type == rs_machine_dependent);
8260 switch (fragP->fr_subtype)
8261 {
8262 case RELAX_DESIRE_ALIGN:
8263 target_size = next_frag_format_size (fragP);
8264 if (target_size == XTENSA_UNDEFINED)
8265 target_size = 3;
8266 align_power = branch_align_power (now_seg);
8267 branch_align = 1 << align_power;
8268 /* Don't count on the section alignment being as large as the target. */
8269 if (target_size > branch_align)
8270 target_size = branch_align;
8271 opt_diff = get_text_align_fill_size (address, align_power,
8272 target_size, FALSE, FALSE);
8273
8274 *max_diff = (opt_diff + branch_align
8275 - (target_size + ((address + opt_diff) % branch_align)));
8276 assert (*max_diff >= opt_diff);
8277 return opt_diff;
8278
8279 case RELAX_ALIGN_NEXT_OPCODE:
8280 target_size = get_loop_align_size (next_frag_format_size (fragP));
8281 loop_insn_offset = 0;
8282 is_loop = next_frag_opcode_is_loop (fragP, &loop_opcode);
8283 assert (is_loop);
8284
8285 /* If the loop has been expanded then the LOOP instruction
8286 could be at an offset from this fragment. */
8287 if (next_non_empty_frag(fragP)->tc_frag_data.slot_subtypes[0]
8288 != RELAX_IMMED)
8289 loop_insn_offset = get_expanded_loop_offset (loop_opcode);
8290
8291 /* In an ideal world, which is what we are shooting for here,
8292 we wouldn't need to use any NOPs immediately prior to the
8293 LOOP instruction. If this approach fails, relax_frag_loop_align
8294 will call get_noop_aligned_address. */
8295 target_address =
8296 address + loop_insn_offset + xg_get_single_size (loop_opcode);
8297 align_power = get_text_align_power (target_size),
8298 opt_diff = get_text_align_fill_size (target_address, align_power,
8299 target_size, FALSE, FALSE);
8300
8301 *max_diff = xtensa_fetch_width
8302 - ((target_address + opt_diff) % xtensa_fetch_width)
8303 - target_size + opt_diff;
8304 assert (*max_diff >= opt_diff);
8305 return opt_diff;
8306
8307 default:
8308 break;
8309 }
8310 assert (0);
8311 return 0;
8312 }
8313
8314 \f
8315 /* md_relax_frag Hook and Helper Functions. */
8316
8317 static long relax_frag_loop_align (fragS *, long);
8318 static long relax_frag_for_align (fragS *, long);
8319 static long relax_frag_immed
8320 (segT, fragS *, long, int, xtensa_format, int, int *, bfd_boolean);
8321
8322
8323 /* Return the number of bytes added to this fragment, given that the
8324 input has been stretched already by "stretch". */
8325
8326 long
8327 xtensa_relax_frag (fragS *fragP, long stretch, int *stretched_p)
8328 {
8329 xtensa_isa isa = xtensa_default_isa;
8330 int unreported = fragP->tc_frag_data.unreported_expansion;
8331 long new_stretch = 0;
8332 char *file_name;
8333 unsigned line;
8334 int lit_size;
8335 static xtensa_insnbuf vbuf = NULL;
8336 int slot, num_slots;
8337 xtensa_format fmt;
8338
8339 as_where (&file_name, &line);
8340 new_logical_line (fragP->fr_file, fragP->fr_line);
8341
8342 fragP->tc_frag_data.unreported_expansion = 0;
8343
8344 switch (fragP->fr_subtype)
8345 {
8346 case RELAX_ALIGN_NEXT_OPCODE:
8347 /* Always convert. */
8348 if (fragP->tc_frag_data.relax_seen)
8349 new_stretch = relax_frag_loop_align (fragP, stretch);
8350 break;
8351
8352 case RELAX_LOOP_END:
8353 /* Do nothing. */
8354 break;
8355
8356 case RELAX_LOOP_END_ADD_NOP:
8357 /* Add a NOP and switch to .fill 0. */
8358 new_stretch = relax_frag_add_nop (fragP);
8359 frag_wane (fragP);
8360 break;
8361
8362 case RELAX_DESIRE_ALIGN:
8363 /* Do nothing. The narrowing before this frag will either align
8364 it or not. */
8365 break;
8366
8367 case RELAX_LITERAL:
8368 case RELAX_LITERAL_FINAL:
8369 return 0;
8370
8371 case RELAX_LITERAL_NR:
8372 lit_size = 4;
8373 fragP->fr_subtype = RELAX_LITERAL_FINAL;
8374 assert (unreported == lit_size);
8375 memset (&fragP->fr_literal[fragP->fr_fix], 0, 4);
8376 fragP->fr_var -= lit_size;
8377 fragP->fr_fix += lit_size;
8378 new_stretch = 4;
8379 break;
8380
8381 case RELAX_SLOTS:
8382 if (vbuf == NULL)
8383 vbuf = xtensa_insnbuf_alloc (isa);
8384
8385 xtensa_insnbuf_from_chars
8386 (isa, vbuf, (unsigned char *) fragP->fr_opcode, 0);
8387 fmt = xtensa_format_decode (isa, vbuf);
8388 num_slots = xtensa_format_num_slots (isa, fmt);
8389
8390 for (slot = 0; slot < num_slots; slot++)
8391 {
8392 switch (fragP->tc_frag_data.slot_subtypes[slot])
8393 {
8394 case RELAX_NARROW:
8395 if (fragP->tc_frag_data.relax_seen)
8396 new_stretch += relax_frag_for_align (fragP, stretch);
8397 break;
8398
8399 case RELAX_IMMED:
8400 case RELAX_IMMED_STEP1:
8401 case RELAX_IMMED_STEP2:
8402 case RELAX_IMMED_STEP3:
8403 /* Place the immediate. */
8404 new_stretch += relax_frag_immed
8405 (now_seg, fragP, stretch,
8406 fragP->tc_frag_data.slot_subtypes[slot] - RELAX_IMMED,
8407 fmt, slot, stretched_p, FALSE);
8408 break;
8409
8410 default:
8411 /* This is OK; see the note in xg_assemble_vliw_tokens. */
8412 break;
8413 }
8414 }
8415 break;
8416
8417 case RELAX_LITERAL_POOL_BEGIN:
8418 case RELAX_LITERAL_POOL_END:
8419 case RELAX_MAYBE_UNREACHABLE:
8420 case RELAX_MAYBE_DESIRE_ALIGN:
8421 /* No relaxation required. */
8422 break;
8423
8424 case RELAX_FILL_NOP:
8425 case RELAX_UNREACHABLE:
8426 if (fragP->tc_frag_data.relax_seen)
8427 new_stretch += relax_frag_for_align (fragP, stretch);
8428 break;
8429
8430 default:
8431 as_bad (_("bad relaxation state"));
8432 }
8433
8434 /* Tell gas we need another relaxation pass. */
8435 if (! fragP->tc_frag_data.relax_seen)
8436 {
8437 fragP->tc_frag_data.relax_seen = TRUE;
8438 *stretched_p = 1;
8439 }
8440
8441 new_logical_line (file_name, line);
8442 return new_stretch;
8443 }
8444
8445
8446 static long
8447 relax_frag_loop_align (fragS *fragP, long stretch)
8448 {
8449 addressT old_address, old_next_address, old_size;
8450 addressT new_address, new_next_address, new_size;
8451 addressT growth;
8452
8453 /* All the frags with relax_frag_for_alignment prior to this one in the
8454 section have been done, hopefully eliminating the need for a NOP here.
8455 But, this will put it in if necessary. */
8456
8457 /* Calculate the old address of this fragment and the next fragment. */
8458 old_address = fragP->fr_address - stretch;
8459 old_next_address = (fragP->fr_address - stretch + fragP->fr_fix +
8460 fragP->tc_frag_data.text_expansion[0]);
8461 old_size = old_next_address - old_address;
8462
8463 /* Calculate the new address of this fragment and the next fragment. */
8464 new_address = fragP->fr_address;
8465 new_next_address =
8466 get_noop_aligned_address (fragP, fragP->fr_address + fragP->fr_fix);
8467 new_size = new_next_address - new_address;
8468
8469 growth = new_size - old_size;
8470
8471 /* Fix up the text_expansion field and return the new growth. */
8472 fragP->tc_frag_data.text_expansion[0] += growth;
8473 return growth;
8474 }
8475
8476
8477 /* Add a NOP instruction. */
8478
8479 static long
8480 relax_frag_add_nop (fragS *fragP)
8481 {
8482 char *nop_buf = fragP->fr_literal + fragP->fr_fix;
8483 int length = fragP->tc_frag_data.is_no_density ? 3 : 2;
8484 assemble_nop (length, nop_buf);
8485 fragP->tc_frag_data.is_insn = TRUE;
8486
8487 if (fragP->fr_var < length)
8488 {
8489 as_fatal (_("fr_var (%ld) < length (%d)"), (long) fragP->fr_var, length);
8490 return 0;
8491 }
8492
8493 fragP->fr_fix += length;
8494 fragP->fr_var -= length;
8495 return length;
8496 }
8497
8498
8499 static long future_alignment_required (fragS *, long);
8500
8501 static long
8502 relax_frag_for_align (fragS *fragP, long stretch)
8503 {
8504 /* Overview of the relaxation procedure for alignment:
8505 We can widen with NOPs or by widening instructions or by filling
8506 bytes after jump instructions. Find the opportune places and widen
8507 them if necessary. */
8508
8509 long stretch_me;
8510 long diff;
8511
8512 assert (fragP->fr_subtype == RELAX_FILL_NOP
8513 || fragP->fr_subtype == RELAX_UNREACHABLE
8514 || (fragP->fr_subtype == RELAX_SLOTS
8515 && fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW));
8516
8517 stretch_me = future_alignment_required (fragP, stretch);
8518 diff = stretch_me - fragP->tc_frag_data.text_expansion[0];
8519 if (diff == 0)
8520 return 0;
8521
8522 if (diff < 0)
8523 {
8524 /* We expanded on a previous pass. Can we shrink now? */
8525 long shrink = fragP->tc_frag_data.text_expansion[0] - stretch_me;
8526 if (shrink <= stretch && stretch > 0)
8527 {
8528 fragP->tc_frag_data.text_expansion[0] = stretch_me;
8529 return -shrink;
8530 }
8531 return 0;
8532 }
8533
8534 /* Below here, diff > 0. */
8535 fragP->tc_frag_data.text_expansion[0] = stretch_me;
8536
8537 return diff;
8538 }
8539
8540
8541 /* Return the address of the next frag that should be aligned.
8542
8543 By "address" we mean the address it _would_ be at if there
8544 is no action taken to align it between here and the target frag.
8545 In other words, if no narrows and no fill nops are used between
8546 here and the frag to align, _even_if_ some of the frags we use
8547 to align targets have already expanded on a previous relaxation
8548 pass.
8549
8550 Also, count each frag that may be used to help align the target.
8551
8552 Return 0 if there are no frags left in the chain that need to be
8553 aligned. */
8554
8555 static addressT
8556 find_address_of_next_align_frag (fragS **fragPP,
8557 int *wide_nops,
8558 int *narrow_nops,
8559 int *widens,
8560 bfd_boolean *paddable)
8561 {
8562 fragS *fragP = *fragPP;
8563 addressT address = fragP->fr_address;
8564
8565 /* Do not reset the counts to 0. */
8566
8567 while (fragP)
8568 {
8569 /* Limit this to a small search. */
8570 if (*widens >= (int) xtensa_fetch_width)
8571 {
8572 *fragPP = fragP;
8573 return 0;
8574 }
8575 address += fragP->fr_fix;
8576
8577 if (fragP->fr_type == rs_fill)
8578 address += fragP->fr_offset * fragP->fr_var;
8579 else if (fragP->fr_type == rs_machine_dependent)
8580 {
8581 switch (fragP->fr_subtype)
8582 {
8583 case RELAX_UNREACHABLE:
8584 *paddable = TRUE;
8585 break;
8586
8587 case RELAX_FILL_NOP:
8588 (*wide_nops)++;
8589 if (!fragP->tc_frag_data.is_no_density)
8590 (*narrow_nops)++;
8591 break;
8592
8593 case RELAX_SLOTS:
8594 if (fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW)
8595 {
8596 (*widens)++;
8597 break;
8598 }
8599 address += total_frag_text_expansion (fragP);;
8600 break;
8601
8602 case RELAX_IMMED:
8603 address += fragP->tc_frag_data.text_expansion[0];
8604 break;
8605
8606 case RELAX_ALIGN_NEXT_OPCODE:
8607 case RELAX_DESIRE_ALIGN:
8608 *fragPP = fragP;
8609 return address;
8610
8611 case RELAX_MAYBE_UNREACHABLE:
8612 case RELAX_MAYBE_DESIRE_ALIGN:
8613 /* Do nothing. */
8614 break;
8615
8616 default:
8617 /* Just punt if we don't know the type. */
8618 *fragPP = fragP;
8619 return 0;
8620 }
8621 }
8622 else
8623 {
8624 /* Just punt if we don't know the type. */
8625 *fragPP = fragP;
8626 return 0;
8627 }
8628 fragP = fragP->fr_next;
8629 }
8630
8631 *fragPP = fragP;
8632 return 0;
8633 }
8634
8635
8636 static long bytes_to_stretch (fragS *, int, int, int, int);
8637
8638 static long
8639 future_alignment_required (fragS *fragP, long stretch ATTRIBUTE_UNUSED)
8640 {
8641 fragS *this_frag = fragP;
8642 long address;
8643 int num_widens = 0;
8644 int wide_nops = 0;
8645 int narrow_nops = 0;
8646 bfd_boolean paddable = FALSE;
8647 offsetT local_opt_diff;
8648 offsetT opt_diff;
8649 offsetT max_diff;
8650 int stretch_amount = 0;
8651 int local_stretch_amount;
8652 int global_stretch_amount;
8653
8654 address = find_address_of_next_align_frag
8655 (&fragP, &wide_nops, &narrow_nops, &num_widens, &paddable);
8656
8657 if (!address)
8658 {
8659 if (this_frag->tc_frag_data.is_aligning_branch)
8660 this_frag->tc_frag_data.slot_subtypes[0] = RELAX_IMMED;
8661 else
8662 frag_wane (this_frag);
8663 }
8664 else
8665 {
8666 local_opt_diff = get_aligned_diff (fragP, address, &max_diff);
8667 opt_diff = local_opt_diff;
8668 assert (opt_diff >= 0);
8669 assert (max_diff >= opt_diff);
8670 if (max_diff == 0)
8671 return 0;
8672
8673 if (fragP)
8674 fragP = fragP->fr_next;
8675
8676 while (fragP && opt_diff < max_diff && address)
8677 {
8678 /* We only use these to determine if we can exit early
8679 because there will be plenty of ways to align future
8680 align frags. */
8681 int glob_widens = 0;
8682 int dnn = 0;
8683 int dw = 0;
8684 bfd_boolean glob_pad = 0;
8685 address = find_address_of_next_align_frag
8686 (&fragP, &glob_widens, &dnn, &dw, &glob_pad);
8687 /* If there is a padable portion, then skip. */
8688 if (glob_pad || glob_widens >= (1 << branch_align_power (now_seg)))
8689 address = 0;
8690
8691 if (address)
8692 {
8693 offsetT next_m_diff;
8694 offsetT next_o_diff;
8695
8696 /* Downrange frags haven't had stretch added to them yet. */
8697 address += stretch;
8698
8699 /* The address also includes any text expansion from this
8700 frag in a previous pass, but we don't want that. */
8701 address -= this_frag->tc_frag_data.text_expansion[0];
8702
8703 /* Assume we are going to move at least opt_diff. In
8704 reality, we might not be able to, but assuming that
8705 we will helps catch cases where moving opt_diff pushes
8706 the next target from aligned to unaligned. */
8707 address += opt_diff;
8708
8709 next_o_diff = get_aligned_diff (fragP, address, &next_m_diff);
8710
8711 /* Now cleanup for the adjustments to address. */
8712 next_o_diff += opt_diff;
8713 next_m_diff += opt_diff;
8714 if (next_o_diff <= max_diff && next_o_diff > opt_diff)
8715 opt_diff = next_o_diff;
8716 if (next_m_diff < max_diff)
8717 max_diff = next_m_diff;
8718 fragP = fragP->fr_next;
8719 }
8720 }
8721
8722 /* If there are enough wideners in between, do it. */
8723 if (paddable)
8724 {
8725 if (this_frag->fr_subtype == RELAX_UNREACHABLE)
8726 {
8727 assert (opt_diff <= UNREACHABLE_MAX_WIDTH);
8728 return opt_diff;
8729 }
8730 return 0;
8731 }
8732 local_stretch_amount
8733 = bytes_to_stretch (this_frag, wide_nops, narrow_nops,
8734 num_widens, local_opt_diff);
8735 global_stretch_amount
8736 = bytes_to_stretch (this_frag, wide_nops, narrow_nops,
8737 num_widens, opt_diff);
8738 /* If the condition below is true, then the frag couldn't
8739 stretch the correct amount for the global case, so we just
8740 optimize locally. We'll rely on the subsequent frags to get
8741 the correct alignment in the global case. */
8742 if (global_stretch_amount < local_stretch_amount)
8743 stretch_amount = local_stretch_amount;
8744 else
8745 stretch_amount = global_stretch_amount;
8746
8747 if (this_frag->fr_subtype == RELAX_SLOTS
8748 && this_frag->tc_frag_data.slot_subtypes[0] == RELAX_NARROW)
8749 assert (stretch_amount <= 1);
8750 else if (this_frag->fr_subtype == RELAX_FILL_NOP)
8751 {
8752 if (this_frag->tc_frag_data.is_no_density)
8753 assert (stretch_amount == 3 || stretch_amount == 0);
8754 else
8755 assert (stretch_amount <= 3);
8756 }
8757 }
8758 return stretch_amount;
8759 }
8760
8761
8762 /* The idea: widen everything you can to get a target or loop aligned,
8763 then start using NOPs.
8764
8765 When we must have a NOP, here is a table of how we decide
8766 (so you don't have to fight through the control flow below):
8767
8768 wide_nops = the number of wide NOPs available for aligning
8769 narrow_nops = the number of narrow NOPs available for aligning
8770 (a subset of wide_nops)
8771 widens = the number of narrow instructions that should be widened
8772
8773 Desired wide narrow
8774 Diff nop nop widens
8775 1 0 0 1
8776 2 0 1 0
8777 3a 1 0 0
8778 b 0 1 1 (case 3a makes this case unnecessary)
8779 4a 1 0 1
8780 b 0 2 0
8781 c 0 1 2 (case 4a makes this case unnecessary)
8782 5a 1 0 2
8783 b 1 1 0
8784 c 0 2 1 (case 5b makes this case unnecessary)
8785 6a 2 0 0
8786 b 1 0 3
8787 c 0 1 4 (case 6b makes this case unnecessary)
8788 d 1 1 1 (case 6a makes this case unnecessary)
8789 e 0 2 2 (case 6a makes this case unnecessary)
8790 f 0 3 0 (case 6a makes this case unnecessary)
8791 7a 1 0 4
8792 b 2 0 1
8793 c 1 1 2 (case 7b makes this case unnecessary)
8794 d 0 1 5 (case 7a makes this case unnecessary)
8795 e 0 2 3 (case 7b makes this case unnecessary)
8796 f 0 3 1 (case 7b makes this case unnecessary)
8797 g 1 2 1 (case 7b makes this case unnecessary)
8798 */
8799
8800 static long
8801 bytes_to_stretch (fragS *this_frag,
8802 int wide_nops,
8803 int narrow_nops,
8804 int num_widens,
8805 int desired_diff)
8806 {
8807 int bytes_short = desired_diff - num_widens;
8808
8809 assert (desired_diff >= 0 && desired_diff < 8);
8810 if (desired_diff == 0)
8811 return 0;
8812
8813 assert (wide_nops > 0 || num_widens > 0);
8814
8815 /* Always prefer widening to NOP-filling. */
8816 if (bytes_short < 0)
8817 {
8818 /* There are enough RELAX_NARROW frags after this one
8819 to align the target without widening this frag in any way. */
8820 return 0;
8821 }
8822
8823 if (bytes_short == 0)
8824 {
8825 /* Widen every narrow between here and the align target
8826 and the align target will be properly aligned. */
8827 if (this_frag->fr_subtype == RELAX_FILL_NOP)
8828 return 0;
8829 else
8830 return 1;
8831 }
8832
8833 /* From here we will need at least one NOP to get an alignment.
8834 However, we may not be able to align at all, in which case,
8835 don't widen. */
8836 if (this_frag->fr_subtype == RELAX_FILL_NOP)
8837 {
8838 switch (desired_diff)
8839 {
8840 case 1:
8841 return 0;
8842 case 2:
8843 if (!this_frag->tc_frag_data.is_no_density && narrow_nops == 1)
8844 return 2; /* case 2 */
8845 return 0;
8846 case 3:
8847 if (wide_nops > 1)
8848 return 0;
8849 else
8850 return 3; /* case 3a */
8851 case 4:
8852 if (num_widens >= 1 && wide_nops == 1)
8853 return 3; /* case 4a */
8854 if (!this_frag->tc_frag_data.is_no_density && narrow_nops == 2)
8855 return 2; /* case 4b */
8856 return 0;
8857 case 5:
8858 if (num_widens >= 2 && wide_nops == 1)
8859 return 3; /* case 5a */
8860 /* We will need two nops. Are there enough nops
8861 between here and the align target? */
8862 if (wide_nops < 2 || narrow_nops == 0)
8863 return 0;
8864 /* Are there other nops closer that can serve instead? */
8865 if (wide_nops > 2 && narrow_nops > 1)
8866 return 0;
8867 /* Take the density one first, because there might not be
8868 another density one available. */
8869 if (!this_frag->tc_frag_data.is_no_density)
8870 return 2; /* case 5b narrow */
8871 else
8872 return 3; /* case 5b wide */
8873 return 0;
8874 case 6:
8875 if (wide_nops == 2)
8876 return 3; /* case 6a */
8877 else if (num_widens >= 3 && wide_nops == 1)
8878 return 3; /* case 6b */
8879 return 0;
8880 case 7:
8881 if (wide_nops == 1 && num_widens >= 4)
8882 return 3; /* case 7a */
8883 else if (wide_nops == 2 && num_widens >= 1)
8884 return 3; /* case 7b */
8885 return 0;
8886 default:
8887 assert (0);
8888 }
8889 }
8890 else
8891 {
8892 /* We will need a NOP no matter what, but should we widen
8893 this instruction to help?
8894
8895 This is a RELAX_NARROW frag. */
8896 switch (desired_diff)
8897 {
8898 case 1:
8899 assert (0);
8900 return 0;
8901 case 2:
8902 case 3:
8903 return 0;
8904 case 4:
8905 if (wide_nops >= 1 && num_widens == 1)
8906 return 1; /* case 4a */
8907 return 0;
8908 case 5:
8909 if (wide_nops >= 1 && num_widens == 2)
8910 return 1; /* case 5a */
8911 return 0;
8912 case 6:
8913 if (wide_nops >= 2)
8914 return 0; /* case 6a */
8915 else if (wide_nops >= 1 && num_widens == 3)
8916 return 1; /* case 6b */
8917 return 0;
8918 case 7:
8919 if (wide_nops >= 1 && num_widens == 4)
8920 return 1; /* case 7a */
8921 else if (wide_nops >= 2 && num_widens == 1)
8922 return 1; /* case 7b */
8923 return 0;
8924 default:
8925 assert (0);
8926 return 0;
8927 }
8928 }
8929 assert (0);
8930 return 0;
8931 }
8932
8933
8934 static long
8935 relax_frag_immed (segT segP,
8936 fragS *fragP,
8937 long stretch,
8938 int min_steps,
8939 xtensa_format fmt,
8940 int slot,
8941 int *stretched_p,
8942 bfd_boolean estimate_only)
8943 {
8944 TInsn tinsn;
8945 int old_size;
8946 bfd_boolean negatable_branch = FALSE;
8947 bfd_boolean branch_jmp_to_next = FALSE;
8948 bfd_boolean wide_insn = FALSE;
8949 xtensa_isa isa = xtensa_default_isa;
8950 IStack istack;
8951 offsetT frag_offset;
8952 int num_steps;
8953 fragS *lit_fragP;
8954 int num_text_bytes, num_literal_bytes;
8955 int literal_diff, total_text_diff, this_text_diff, first;
8956
8957 assert (fragP->fr_opcode != NULL);
8958
8959 xg_clear_vinsn (&cur_vinsn);
8960 vinsn_from_chars (&cur_vinsn, fragP->fr_opcode);
8961 if (cur_vinsn.num_slots > 1)
8962 wide_insn = TRUE;
8963
8964 tinsn = cur_vinsn.slots[slot];
8965 tinsn_immed_from_frag (&tinsn, fragP, slot);
8966
8967 if (estimate_only && xtensa_opcode_is_loop (isa, tinsn.opcode) == 1)
8968 return 0;
8969
8970 if (workaround_b_j_loop_end && ! fragP->tc_frag_data.is_no_transform)
8971 branch_jmp_to_next = is_branch_jmp_to_next (&tinsn, fragP);
8972
8973 negatable_branch = (xtensa_opcode_is_branch (isa, tinsn.opcode) == 1);
8974
8975 old_size = xtensa_format_length (isa, fmt);
8976
8977 /* Special case: replace a branch to the next instruction with a NOP.
8978 This is required to work around a hardware bug in T1040.0 and also
8979 serves as an optimization. */
8980
8981 if (branch_jmp_to_next
8982 && ((old_size == 2) || (old_size == 3))
8983 && !next_frag_is_loop_target (fragP))
8984 return 0;
8985
8986 /* Here is the fun stuff: Get the immediate field from this
8987 instruction. If it fits, we are done. If not, find the next
8988 instruction sequence that fits. */
8989
8990 frag_offset = fragP->fr_opcode - fragP->fr_literal;
8991 istack_init (&istack);
8992 num_steps = xg_assembly_relax (&istack, &tinsn, segP, fragP, frag_offset,
8993 min_steps, stretch);
8994 if (num_steps < min_steps)
8995 {
8996 as_fatal (_("internal error: relaxation failed"));
8997 return 0;
8998 }
8999
9000 if (num_steps > RELAX_IMMED_MAXSTEPS)
9001 {
9002 as_fatal (_("internal error: relaxation requires too many steps"));
9003 return 0;
9004 }
9005
9006 fragP->tc_frag_data.slot_subtypes[slot] = (int) RELAX_IMMED + num_steps;
9007
9008 /* Figure out the number of bytes needed. */
9009 lit_fragP = 0;
9010 num_literal_bytes = get_num_stack_literal_bytes (&istack);
9011 literal_diff =
9012 num_literal_bytes - fragP->tc_frag_data.literal_expansion[slot];
9013 first = 0;
9014 while (istack.insn[first].opcode == XTENSA_UNDEFINED)
9015 first++;
9016 num_text_bytes = get_num_stack_text_bytes (&istack);
9017 if (wide_insn)
9018 {
9019 num_text_bytes += old_size;
9020 if (opcode_fits_format_slot (istack.insn[first].opcode, fmt, slot))
9021 num_text_bytes -= xg_get_single_size (istack.insn[first].opcode);
9022 }
9023 total_text_diff = num_text_bytes - old_size;
9024 this_text_diff = total_text_diff - fragP->tc_frag_data.text_expansion[slot];
9025
9026 /* It MUST get larger. If not, we could get an infinite loop. */
9027 assert (num_text_bytes >= 0);
9028 assert (literal_diff >= 0);
9029 assert (total_text_diff >= 0);
9030
9031 fragP->tc_frag_data.text_expansion[slot] = total_text_diff;
9032 fragP->tc_frag_data.literal_expansion[slot] = num_literal_bytes;
9033 assert (fragP->tc_frag_data.text_expansion[slot] >= 0);
9034 assert (fragP->tc_frag_data.literal_expansion[slot] >= 0);
9035
9036 /* Find the associated expandable literal for this. */
9037 if (literal_diff != 0)
9038 {
9039 lit_fragP = fragP->tc_frag_data.literal_frags[slot];
9040 if (lit_fragP)
9041 {
9042 assert (literal_diff == 4);
9043 lit_fragP->tc_frag_data.unreported_expansion += literal_diff;
9044
9045 /* We expect that the literal section state has NOT been
9046 modified yet. */
9047 assert (lit_fragP->fr_type == rs_machine_dependent
9048 && lit_fragP->fr_subtype == RELAX_LITERAL);
9049 lit_fragP->fr_subtype = RELAX_LITERAL_NR;
9050
9051 /* We need to mark this section for another iteration
9052 of relaxation. */
9053 (*stretched_p)++;
9054 }
9055 }
9056
9057 if (negatable_branch && istack.ninsn > 1)
9058 update_next_frag_state (fragP);
9059
9060 return this_text_diff;
9061 }
9062
9063 \f
9064 /* md_convert_frag Hook and Helper Functions. */
9065
9066 static void convert_frag_align_next_opcode (fragS *);
9067 static void convert_frag_narrow (segT, fragS *, xtensa_format, int);
9068 static void convert_frag_fill_nop (fragS *);
9069 static void convert_frag_immed (segT, fragS *, int, xtensa_format, int);
9070
9071 void
9072 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec, fragS *fragp)
9073 {
9074 static xtensa_insnbuf vbuf = NULL;
9075 xtensa_isa isa = xtensa_default_isa;
9076 int slot;
9077 int num_slots;
9078 xtensa_format fmt;
9079 char *file_name;
9080 unsigned line;
9081
9082 as_where (&file_name, &line);
9083 new_logical_line (fragp->fr_file, fragp->fr_line);
9084
9085 switch (fragp->fr_subtype)
9086 {
9087 case RELAX_ALIGN_NEXT_OPCODE:
9088 /* Always convert. */
9089 convert_frag_align_next_opcode (fragp);
9090 break;
9091
9092 case RELAX_DESIRE_ALIGN:
9093 /* Do nothing. If not aligned already, too bad. */
9094 break;
9095
9096 case RELAX_LITERAL:
9097 case RELAX_LITERAL_FINAL:
9098 break;
9099
9100 case RELAX_SLOTS:
9101 if (vbuf == NULL)
9102 vbuf = xtensa_insnbuf_alloc (isa);
9103
9104 xtensa_insnbuf_from_chars
9105 (isa, vbuf, (unsigned char *) fragp->fr_opcode, 0);
9106 fmt = xtensa_format_decode (isa, vbuf);
9107 num_slots = xtensa_format_num_slots (isa, fmt);
9108
9109 for (slot = 0; slot < num_slots; slot++)
9110 {
9111 switch (fragp->tc_frag_data.slot_subtypes[slot])
9112 {
9113 case RELAX_NARROW:
9114 convert_frag_narrow (sec, fragp, fmt, slot);
9115 break;
9116
9117 case RELAX_IMMED:
9118 case RELAX_IMMED_STEP1:
9119 case RELAX_IMMED_STEP2:
9120 case RELAX_IMMED_STEP3:
9121 /* Place the immediate. */
9122 convert_frag_immed
9123 (sec, fragp,
9124 fragp->tc_frag_data.slot_subtypes[slot] - RELAX_IMMED,
9125 fmt, slot);
9126 break;
9127
9128 default:
9129 /* This is OK because some slots could have
9130 relaxations and others have none. */
9131 break;
9132 }
9133 }
9134 break;
9135
9136 case RELAX_UNREACHABLE:
9137 memset (&fragp->fr_literal[fragp->fr_fix], 0, fragp->fr_var);
9138 fragp->fr_fix += fragp->tc_frag_data.text_expansion[0];
9139 fragp->fr_var -= fragp->tc_frag_data.text_expansion[0];
9140 frag_wane (fragp);
9141 break;
9142
9143 case RELAX_MAYBE_UNREACHABLE:
9144 case RELAX_MAYBE_DESIRE_ALIGN:
9145 frag_wane (fragp);
9146 break;
9147
9148 case RELAX_FILL_NOP:
9149 convert_frag_fill_nop (fragp);
9150 break;
9151
9152 case RELAX_LITERAL_NR:
9153 if (use_literal_section)
9154 {
9155 /* This should have been handled during relaxation. When
9156 relaxing a code segment, literals sometimes need to be
9157 added to the corresponding literal segment. If that
9158 literal segment has already been relaxed, then we end up
9159 in this situation. Marking the literal segments as data
9160 would make this happen less often (since GAS always relaxes
9161 code before data), but we could still get into trouble if
9162 there are instructions in a segment that is not marked as
9163 containing code. Until we can implement a better solution,
9164 cheat and adjust the addresses of all the following frags.
9165 This could break subsequent alignments, but the linker's
9166 literal coalescing will do that anyway. */
9167
9168 fragS *f;
9169 fragp->fr_subtype = RELAX_LITERAL_FINAL;
9170 assert (fragp->tc_frag_data.unreported_expansion == 4);
9171 memset (&fragp->fr_literal[fragp->fr_fix], 0, 4);
9172 fragp->fr_var -= 4;
9173 fragp->fr_fix += 4;
9174 for (f = fragp->fr_next; f; f = f->fr_next)
9175 f->fr_address += 4;
9176 }
9177 else
9178 as_bad (_("invalid relaxation fragment result"));
9179 break;
9180 }
9181
9182 fragp->fr_var = 0;
9183 new_logical_line (file_name, line);
9184 }
9185
9186
9187 static void
9188 convert_frag_align_next_opcode (fragS *fragp)
9189 {
9190 char *nop_buf; /* Location for Writing. */
9191 bfd_boolean use_no_density = fragp->tc_frag_data.is_no_density;
9192 addressT aligned_address;
9193 offsetT fill_size;
9194 int nop, nop_count;
9195
9196 aligned_address = get_noop_aligned_address (fragp, fragp->fr_address +
9197 fragp->fr_fix);
9198 fill_size = aligned_address - (fragp->fr_address + fragp->fr_fix);
9199 nop_count = get_text_align_nop_count (fill_size, use_no_density);
9200 nop_buf = fragp->fr_literal + fragp->fr_fix;
9201
9202 for (nop = 0; nop < nop_count; nop++)
9203 {
9204 int nop_size;
9205 nop_size = get_text_align_nth_nop_size (fill_size, nop, use_no_density);
9206
9207 assemble_nop (nop_size, nop_buf);
9208 nop_buf += nop_size;
9209 }
9210
9211 fragp->fr_fix += fill_size;
9212 fragp->fr_var -= fill_size;
9213 }
9214
9215
9216 static void
9217 convert_frag_narrow (segT segP, fragS *fragP, xtensa_format fmt, int slot)
9218 {
9219 TInsn tinsn, single_target;
9220 int size, old_size, diff;
9221 offsetT frag_offset;
9222
9223 assert (slot == 0);
9224 tinsn_from_chars (&tinsn, fragP->fr_opcode, 0);
9225
9226 if (fragP->tc_frag_data.is_aligning_branch == 1)
9227 {
9228 assert (fragP->tc_frag_data.text_expansion[0] == 1
9229 || fragP->tc_frag_data.text_expansion[0] == 0);
9230 convert_frag_immed (segP, fragP, fragP->tc_frag_data.text_expansion[0],
9231 fmt, slot);
9232 return;
9233 }
9234
9235 if (fragP->tc_frag_data.text_expansion[0] == 0)
9236 {
9237 /* No conversion. */
9238 fragP->fr_var = 0;
9239 return;
9240 }
9241
9242 assert (fragP->fr_opcode != NULL);
9243
9244 /* Frags in this relaxation state should only contain
9245 single instruction bundles. */
9246 tinsn_immed_from_frag (&tinsn, fragP, 0);
9247
9248 /* Just convert it to a wide form.... */
9249 size = 0;
9250 old_size = xg_get_single_size (tinsn.opcode);
9251
9252 tinsn_init (&single_target);
9253 frag_offset = fragP->fr_opcode - fragP->fr_literal;
9254
9255 if (! xg_is_single_relaxable_insn (&tinsn, &single_target, FALSE))
9256 {
9257 as_bad (_("unable to widen instruction"));
9258 return;
9259 }
9260
9261 size = xg_get_single_size (single_target.opcode);
9262 xg_emit_insn_to_buf (&single_target, fragP->fr_opcode, fragP,
9263 frag_offset, TRUE);
9264
9265 diff = size - old_size;
9266 assert (diff >= 0);
9267 assert (diff <= fragP->fr_var);
9268 fragP->fr_var -= diff;
9269 fragP->fr_fix += diff;
9270
9271 /* clean it up */
9272 fragP->fr_var = 0;
9273 }
9274
9275
9276 static void
9277 convert_frag_fill_nop (fragS *fragP)
9278 {
9279 char *loc = &fragP->fr_literal[fragP->fr_fix];
9280 int size = fragP->tc_frag_data.text_expansion[0];
9281 assert ((unsigned) size == (fragP->fr_next->fr_address
9282 - fragP->fr_address - fragP->fr_fix));
9283 if (size == 0)
9284 {
9285 /* No conversion. */
9286 fragP->fr_var = 0;
9287 return;
9288 }
9289 assemble_nop (size, loc);
9290 fragP->tc_frag_data.is_insn = TRUE;
9291 fragP->fr_var -= size;
9292 fragP->fr_fix += size;
9293 frag_wane (fragP);
9294 }
9295
9296
9297 static fixS *fix_new_exp_in_seg
9298 (segT, subsegT, fragS *, int, int, expressionS *, int,
9299 bfd_reloc_code_real_type);
9300 static void convert_frag_immed_finish_loop (segT, fragS *, TInsn *);
9301
9302 static void
9303 convert_frag_immed (segT segP,
9304 fragS *fragP,
9305 int min_steps,
9306 xtensa_format fmt,
9307 int slot)
9308 {
9309 char *immed_instr = fragP->fr_opcode;
9310 TInsn orig_tinsn;
9311 bfd_boolean expanded = FALSE;
9312 bfd_boolean branch_jmp_to_next = FALSE;
9313 char *fr_opcode = fragP->fr_opcode;
9314 xtensa_isa isa = xtensa_default_isa;
9315 bfd_boolean wide_insn = FALSE;
9316 int bytes;
9317 bfd_boolean is_loop;
9318
9319 assert (fr_opcode != NULL);
9320
9321 xg_clear_vinsn (&cur_vinsn);
9322
9323 vinsn_from_chars (&cur_vinsn, fr_opcode);
9324 if (cur_vinsn.num_slots > 1)
9325 wide_insn = TRUE;
9326
9327 orig_tinsn = cur_vinsn.slots[slot];
9328 tinsn_immed_from_frag (&orig_tinsn, fragP, slot);
9329
9330 is_loop = xtensa_opcode_is_loop (xtensa_default_isa, orig_tinsn.opcode) == 1;
9331
9332 if (workaround_b_j_loop_end && ! fragP->tc_frag_data.is_no_transform)
9333 branch_jmp_to_next = is_branch_jmp_to_next (&orig_tinsn, fragP);
9334
9335 if (branch_jmp_to_next && !next_frag_is_loop_target (fragP))
9336 {
9337 /* Conversion just inserts a NOP and marks the fix as completed. */
9338 bytes = xtensa_format_length (isa, fmt);
9339 if (bytes >= 4)
9340 {
9341 cur_vinsn.slots[slot].opcode =
9342 xtensa_format_slot_nop_opcode (isa, cur_vinsn.format, slot);
9343 cur_vinsn.slots[slot].ntok = 0;
9344 }
9345 else
9346 {
9347 bytes += fragP->tc_frag_data.text_expansion[0];
9348 assert (bytes == 2 || bytes == 3);
9349 build_nop (&cur_vinsn.slots[0], bytes);
9350 fragP->fr_fix += fragP->tc_frag_data.text_expansion[0];
9351 }
9352 vinsn_to_insnbuf (&cur_vinsn, fr_opcode, frag_now, TRUE);
9353 xtensa_insnbuf_to_chars
9354 (isa, cur_vinsn.insnbuf, (unsigned char *) fr_opcode, 0);
9355 fragP->fr_var = 0;
9356 }
9357 else
9358 {
9359 /* Here is the fun stuff: Get the immediate field from this
9360 instruction. If it fits, we're done. If not, find the next
9361 instruction sequence that fits. */
9362
9363 IStack istack;
9364 int i;
9365 symbolS *lit_sym = NULL;
9366 int total_size = 0;
9367 int target_offset = 0;
9368 int old_size;
9369 int diff;
9370 symbolS *gen_label = NULL;
9371 offsetT frag_offset;
9372 bfd_boolean first = TRUE;
9373 bfd_boolean last_is_jump;
9374
9375 /* It does not fit. Find something that does and
9376 convert immediately. */
9377 frag_offset = fr_opcode - fragP->fr_literal;
9378 istack_init (&istack);
9379 xg_assembly_relax (&istack, &orig_tinsn,
9380 segP, fragP, frag_offset, min_steps, 0);
9381
9382 old_size = xtensa_format_length (isa, fmt);
9383
9384 /* Assemble this right inline. */
9385
9386 /* First, create the mapping from a label name to the REAL label. */
9387 target_offset = 0;
9388 for (i = 0; i < istack.ninsn; i++)
9389 {
9390 TInsn *tinsn = &istack.insn[i];
9391 fragS *lit_frag;
9392
9393 switch (tinsn->insn_type)
9394 {
9395 case ITYPE_LITERAL:
9396 if (lit_sym != NULL)
9397 as_bad (_("multiple literals in expansion"));
9398 /* First find the appropriate space in the literal pool. */
9399 lit_frag = fragP->tc_frag_data.literal_frags[slot];
9400 if (lit_frag == NULL)
9401 as_bad (_("no registered fragment for literal"));
9402 if (tinsn->ntok != 1)
9403 as_bad (_("number of literal tokens != 1"));
9404
9405 /* Set the literal symbol and add a fixup. */
9406 lit_sym = lit_frag->fr_symbol;
9407 break;
9408
9409 case ITYPE_LABEL:
9410 if (align_targets && !is_loop)
9411 {
9412 fragS *unreach = fragP->fr_next;
9413 while (!(unreach->fr_type == rs_machine_dependent
9414 && (unreach->fr_subtype == RELAX_MAYBE_UNREACHABLE
9415 || unreach->fr_subtype == RELAX_UNREACHABLE)))
9416 {
9417 unreach = unreach->fr_next;
9418 }
9419
9420 assert (unreach->fr_type == rs_machine_dependent
9421 && (unreach->fr_subtype == RELAX_MAYBE_UNREACHABLE
9422 || unreach->fr_subtype == RELAX_UNREACHABLE));
9423
9424 target_offset += unreach->tc_frag_data.text_expansion[0];
9425 }
9426 assert (gen_label == NULL);
9427 gen_label = symbol_new (FAKE_LABEL_NAME, now_seg,
9428 fr_opcode - fragP->fr_literal
9429 + target_offset, fragP);
9430 break;
9431
9432 case ITYPE_INSN:
9433 if (first && wide_insn)
9434 {
9435 target_offset += xtensa_format_length (isa, fmt);
9436 first = FALSE;
9437 if (!opcode_fits_format_slot (tinsn->opcode, fmt, slot))
9438 target_offset += xg_get_single_size (tinsn->opcode);
9439 }
9440 else
9441 target_offset += xg_get_single_size (tinsn->opcode);
9442 break;
9443 }
9444 }
9445
9446 total_size = 0;
9447 first = TRUE;
9448 last_is_jump = FALSE;
9449 for (i = 0; i < istack.ninsn; i++)
9450 {
9451 TInsn *tinsn = &istack.insn[i];
9452 fragS *lit_frag;
9453 int size;
9454 segT target_seg;
9455 bfd_reloc_code_real_type reloc_type;
9456
9457 switch (tinsn->insn_type)
9458 {
9459 case ITYPE_LITERAL:
9460 lit_frag = fragP->tc_frag_data.literal_frags[slot];
9461 /* Already checked. */
9462 assert (lit_frag != NULL);
9463 assert (lit_sym != NULL);
9464 assert (tinsn->ntok == 1);
9465 /* Add a fixup. */
9466 target_seg = S_GET_SEGMENT (lit_sym);
9467 assert (target_seg);
9468 reloc_type = map_operator_to_reloc (tinsn->tok[0].X_op);
9469 fix_new_exp_in_seg (target_seg, 0, lit_frag, 0, 4,
9470 &tinsn->tok[0], FALSE, reloc_type);
9471 break;
9472
9473 case ITYPE_LABEL:
9474 break;
9475
9476 case ITYPE_INSN:
9477 xg_resolve_labels (tinsn, gen_label);
9478 xg_resolve_literals (tinsn, lit_sym);
9479 if (wide_insn && first)
9480 {
9481 first = FALSE;
9482 if (opcode_fits_format_slot (tinsn->opcode, fmt, slot))
9483 {
9484 cur_vinsn.slots[slot] = *tinsn;
9485 }
9486 else
9487 {
9488 cur_vinsn.slots[slot].opcode =
9489 xtensa_format_slot_nop_opcode (isa, fmt, slot);
9490 cur_vinsn.slots[slot].ntok = 0;
9491 }
9492 vinsn_to_insnbuf (&cur_vinsn, immed_instr, fragP, TRUE);
9493 xtensa_insnbuf_to_chars (isa, cur_vinsn.insnbuf,
9494 (unsigned char *) immed_instr, 0);
9495 fragP->tc_frag_data.is_insn = TRUE;
9496 size = xtensa_format_length (isa, fmt);
9497 if (!opcode_fits_format_slot (tinsn->opcode, fmt, slot))
9498 {
9499 xg_emit_insn_to_buf
9500 (tinsn, immed_instr + size, fragP,
9501 immed_instr - fragP->fr_literal + size, TRUE);
9502 size += xg_get_single_size (tinsn->opcode);
9503 }
9504 }
9505 else
9506 {
9507 size = xg_get_single_size (tinsn->opcode);
9508 xg_emit_insn_to_buf (tinsn, immed_instr, fragP,
9509 immed_instr - fragP->fr_literal, TRUE);
9510 }
9511 immed_instr += size;
9512 total_size += size;
9513 break;
9514 }
9515 }
9516
9517 diff = total_size - old_size;
9518 assert (diff >= 0);
9519 if (diff != 0)
9520 expanded = TRUE;
9521 assert (diff <= fragP->fr_var);
9522 fragP->fr_var -= diff;
9523 fragP->fr_fix += diff;
9524 }
9525
9526 /* Check for undefined immediates in LOOP instructions. */
9527 if (is_loop)
9528 {
9529 symbolS *sym;
9530 sym = orig_tinsn.tok[1].X_add_symbol;
9531 if (sym != NULL && !S_IS_DEFINED (sym))
9532 {
9533 as_bad (_("unresolved loop target symbol: %s"), S_GET_NAME (sym));
9534 return;
9535 }
9536 sym = orig_tinsn.tok[1].X_op_symbol;
9537 if (sym != NULL && !S_IS_DEFINED (sym))
9538 {
9539 as_bad (_("unresolved loop target symbol: %s"), S_GET_NAME (sym));
9540 return;
9541 }
9542 }
9543
9544 if (expanded && xtensa_opcode_is_loop (isa, orig_tinsn.opcode) == 1)
9545 convert_frag_immed_finish_loop (segP, fragP, &orig_tinsn);
9546
9547 if (expanded && is_direct_call_opcode (orig_tinsn.opcode))
9548 {
9549 /* Add an expansion note on the expanded instruction. */
9550 fix_new_exp_in_seg (now_seg, 0, fragP, fr_opcode - fragP->fr_literal, 4,
9551 &orig_tinsn.tok[0], TRUE,
9552 BFD_RELOC_XTENSA_ASM_EXPAND);
9553 }
9554 }
9555
9556
9557 /* Add a new fix expression into the desired segment. We have to
9558 switch to that segment to do this. */
9559
9560 static fixS *
9561 fix_new_exp_in_seg (segT new_seg,
9562 subsegT new_subseg,
9563 fragS *frag,
9564 int where,
9565 int size,
9566 expressionS *exp,
9567 int pcrel,
9568 bfd_reloc_code_real_type r_type)
9569 {
9570 fixS *new_fix;
9571 segT seg = now_seg;
9572 subsegT subseg = now_subseg;
9573
9574 assert (new_seg != 0);
9575 subseg_set (new_seg, new_subseg);
9576
9577 new_fix = fix_new_exp (frag, where, size, exp, pcrel, r_type);
9578 subseg_set (seg, subseg);
9579 return new_fix;
9580 }
9581
9582
9583 /* Relax a loop instruction so that it can span loop >256 bytes.
9584
9585 loop as, .L1
9586 .L0:
9587 rsr as, LEND
9588 wsr as, LBEG
9589 addi as, as, lo8 (label-.L1)
9590 addmi as, as, mid8 (label-.L1)
9591 wsr as, LEND
9592 isync
9593 rsr as, LCOUNT
9594 addi as, as, 1
9595 .L1:
9596 <<body>>
9597 label:
9598 */
9599
9600 static void
9601 convert_frag_immed_finish_loop (segT segP, fragS *fragP, TInsn *tinsn)
9602 {
9603 TInsn loop_insn;
9604 TInsn addi_insn;
9605 TInsn addmi_insn;
9606 unsigned long target;
9607 static xtensa_insnbuf insnbuf = NULL;
9608 unsigned int loop_length, loop_length_hi, loop_length_lo;
9609 xtensa_isa isa = xtensa_default_isa;
9610 addressT loop_offset;
9611 addressT addi_offset = 9;
9612 addressT addmi_offset = 12;
9613 fragS *next_fragP;
9614 int target_count;
9615
9616 if (!insnbuf)
9617 insnbuf = xtensa_insnbuf_alloc (isa);
9618
9619 /* Get the loop offset. */
9620 loop_offset = get_expanded_loop_offset (tinsn->opcode);
9621
9622 /* Validate that there really is a LOOP at the loop_offset. Because
9623 loops are not bundleable, we can assume that the instruction will be
9624 in slot 0. */
9625 tinsn_from_chars (&loop_insn, fragP->fr_opcode + loop_offset, 0);
9626 tinsn_immed_from_frag (&loop_insn, fragP, 0);
9627
9628 assert (xtensa_opcode_is_loop (isa, loop_insn.opcode) == 1);
9629 addi_offset += loop_offset;
9630 addmi_offset += loop_offset;
9631
9632 assert (tinsn->ntok == 2);
9633 if (tinsn->tok[1].X_op == O_constant)
9634 target = tinsn->tok[1].X_add_number;
9635 else if (tinsn->tok[1].X_op == O_symbol)
9636 {
9637 /* Find the fragment. */
9638 symbolS *sym = tinsn->tok[1].X_add_symbol;
9639 assert (S_GET_SEGMENT (sym) == segP
9640 || S_GET_SEGMENT (sym) == absolute_section);
9641 target = (S_GET_VALUE (sym) + tinsn->tok[1].X_add_number);
9642 }
9643 else
9644 {
9645 as_bad (_("invalid expression evaluation type %d"), tinsn->tok[1].X_op);
9646 target = 0;
9647 }
9648
9649 loop_length = target - (fragP->fr_address + fragP->fr_fix);
9650 loop_length_hi = loop_length & ~0x0ff;
9651 loop_length_lo = loop_length & 0x0ff;
9652 if (loop_length_lo >= 128)
9653 {
9654 loop_length_lo -= 256;
9655 loop_length_hi += 256;
9656 }
9657
9658 /* Because addmi sign-extends the immediate, 'loop_length_hi' can be at most
9659 32512. If the loop is larger than that, then we just fail. */
9660 if (loop_length_hi > 32512)
9661 as_bad_where (fragP->fr_file, fragP->fr_line,
9662 _("loop too long for LOOP instruction"));
9663
9664 tinsn_from_chars (&addi_insn, fragP->fr_opcode + addi_offset, 0);
9665 assert (addi_insn.opcode == xtensa_addi_opcode);
9666
9667 tinsn_from_chars (&addmi_insn, fragP->fr_opcode + addmi_offset, 0);
9668 assert (addmi_insn.opcode == xtensa_addmi_opcode);
9669
9670 set_expr_const (&addi_insn.tok[2], loop_length_lo);
9671 tinsn_to_insnbuf (&addi_insn, insnbuf);
9672
9673 fragP->tc_frag_data.is_insn = TRUE;
9674 xtensa_insnbuf_to_chars
9675 (isa, insnbuf, (unsigned char *) fragP->fr_opcode + addi_offset, 0);
9676
9677 set_expr_const (&addmi_insn.tok[2], loop_length_hi);
9678 tinsn_to_insnbuf (&addmi_insn, insnbuf);
9679 xtensa_insnbuf_to_chars
9680 (isa, insnbuf, (unsigned char *) fragP->fr_opcode + addmi_offset, 0);
9681
9682 /* Walk through all of the frags from here to the loop end
9683 and mark them as no_transform to keep them from being modified
9684 by the linker. If we ever have a relocation for the
9685 addi/addmi of the difference of two symbols we can remove this. */
9686
9687 target_count = 0;
9688 for (next_fragP = fragP; next_fragP != NULL;
9689 next_fragP = next_fragP->fr_next)
9690 {
9691 next_fragP->tc_frag_data.is_no_transform = TRUE;
9692 if (next_fragP->tc_frag_data.is_loop_target)
9693 target_count++;
9694 if (target_count == 2)
9695 break;
9696 }
9697 }
9698
9699 \f
9700 /* A map that keeps information on a per-subsegment basis. This is
9701 maintained during initial assembly, but is invalid once the
9702 subsegments are smashed together. I.E., it cannot be used during
9703 the relaxation. */
9704
9705 typedef struct subseg_map_struct
9706 {
9707 /* the key */
9708 segT seg;
9709 subsegT subseg;
9710
9711 /* the data */
9712 unsigned flags;
9713 float total_freq; /* fall-through + branch target frequency */
9714 float target_freq; /* branch target frequency alone */
9715
9716 struct subseg_map_struct *next;
9717 } subseg_map;
9718
9719
9720 static subseg_map *sseg_map = NULL;
9721
9722 static subseg_map *
9723 get_subseg_info (segT seg, subsegT subseg)
9724 {
9725 subseg_map *subseg_e;
9726
9727 for (subseg_e = sseg_map; subseg_e; subseg_e = subseg_e->next)
9728 {
9729 if (seg == subseg_e->seg && subseg == subseg_e->subseg)
9730 break;
9731 }
9732 return subseg_e;
9733 }
9734
9735
9736 static subseg_map *
9737 add_subseg_info (segT seg, subsegT subseg)
9738 {
9739 subseg_map *subseg_e = (subseg_map *) xmalloc (sizeof (subseg_map));
9740 memset (subseg_e, 0, sizeof (subseg_map));
9741 subseg_e->seg = seg;
9742 subseg_e->subseg = subseg;
9743 subseg_e->flags = 0;
9744 /* Start off considering every branch target very important. */
9745 subseg_e->target_freq = 1.0;
9746 subseg_e->total_freq = 1.0;
9747 subseg_e->next = sseg_map;
9748 sseg_map = subseg_e;
9749 return subseg_e;
9750 }
9751
9752
9753 static unsigned
9754 get_last_insn_flags (segT seg, subsegT subseg)
9755 {
9756 subseg_map *subseg_e = get_subseg_info (seg, subseg);
9757 if (subseg_e)
9758 return subseg_e->flags;
9759 return 0;
9760 }
9761
9762
9763 static void
9764 set_last_insn_flags (segT seg,
9765 subsegT subseg,
9766 unsigned fl,
9767 bfd_boolean val)
9768 {
9769 subseg_map *subseg_e = get_subseg_info (seg, subseg);
9770 if (! subseg_e)
9771 subseg_e = add_subseg_info (seg, subseg);
9772 if (val)
9773 subseg_e->flags |= fl;
9774 else
9775 subseg_e->flags &= ~fl;
9776 }
9777
9778
9779 static float
9780 get_subseg_total_freq (segT seg, subsegT subseg)
9781 {
9782 subseg_map *subseg_e = get_subseg_info (seg, subseg);
9783 if (subseg_e)
9784 return subseg_e->total_freq;
9785 return 1.0;
9786 }
9787
9788
9789 static float
9790 get_subseg_target_freq (segT seg, subsegT subseg)
9791 {
9792 subseg_map *subseg_e = get_subseg_info (seg, subseg);
9793 if (subseg_e)
9794 return subseg_e->target_freq;
9795 return 1.0;
9796 }
9797
9798
9799 static void
9800 set_subseg_freq (segT seg, subsegT subseg, float total_f, float target_f)
9801 {
9802 subseg_map *subseg_e = get_subseg_info (seg, subseg);
9803 if (! subseg_e)
9804 subseg_e = add_subseg_info (seg, subseg);
9805 subseg_e->total_freq = total_f;
9806 subseg_e->target_freq = target_f;
9807 }
9808
9809 \f
9810 /* Segment Lists and emit_state Stuff. */
9811
9812 static void
9813 xtensa_move_seg_list_to_beginning (seg_list *head)
9814 {
9815 head = head->next;
9816 while (head)
9817 {
9818 segT literal_section = head->seg;
9819
9820 /* Move the literal section to the front of the section list. */
9821 assert (literal_section);
9822 if (literal_section != stdoutput->sections)
9823 {
9824 bfd_section_list_remove (stdoutput, literal_section);
9825 bfd_section_list_prepend (stdoutput, literal_section);
9826 }
9827 head = head->next;
9828 }
9829 }
9830
9831
9832 static void mark_literal_frags (seg_list *);
9833
9834 static void
9835 xtensa_move_literals (void)
9836 {
9837 seg_list *segment;
9838 frchainS *frchain_from, *frchain_to;
9839 fragS *search_frag, *next_frag, *last_frag, *literal_pool, *insert_after;
9840 fragS **frag_splice;
9841 emit_state state;
9842 segT dest_seg;
9843 fixS *fix, *next_fix, **fix_splice;
9844 sym_list *lit;
9845
9846 mark_literal_frags (literal_head->next);
9847
9848 if (use_literal_section)
9849 return;
9850
9851 for (segment = literal_head->next; segment; segment = segment->next)
9852 {
9853 /* Keep the literals for .init and .fini in separate sections. */
9854 if (!strcmp (segment_name (segment->seg), INIT_SECTION_NAME)
9855 || !strcmp (segment_name (segment->seg), FINI_SECTION_NAME))
9856 continue;
9857
9858 frchain_from = seg_info (segment->seg)->frchainP;
9859 search_frag = frchain_from->frch_root;
9860 literal_pool = NULL;
9861 frchain_to = NULL;
9862 frag_splice = &(frchain_from->frch_root);
9863
9864 while (!search_frag->tc_frag_data.literal_frag)
9865 {
9866 assert (search_frag->fr_fix == 0
9867 || search_frag->fr_type == rs_align);
9868 search_frag = search_frag->fr_next;
9869 }
9870
9871 assert (search_frag->tc_frag_data.literal_frag->fr_subtype
9872 == RELAX_LITERAL_POOL_BEGIN);
9873 xtensa_switch_section_emit_state (&state, segment->seg, 0);
9874
9875 /* Make sure that all the frags in this series are closed, and
9876 that there is at least one left over of zero-size. This
9877 prevents us from making a segment with an frchain without any
9878 frags in it. */
9879 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
9880 xtensa_set_frag_assembly_state (frag_now);
9881 last_frag = frag_now;
9882 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
9883 xtensa_set_frag_assembly_state (frag_now);
9884
9885 while (search_frag != frag_now)
9886 {
9887 next_frag = search_frag->fr_next;
9888
9889 /* First, move the frag out of the literal section and
9890 to the appropriate place. */
9891 if (search_frag->tc_frag_data.literal_frag)
9892 {
9893 literal_pool = search_frag->tc_frag_data.literal_frag;
9894 assert (literal_pool->fr_subtype == RELAX_LITERAL_POOL_BEGIN);
9895 frchain_to = literal_pool->tc_frag_data.lit_frchain;
9896 assert (frchain_to);
9897 }
9898 insert_after = literal_pool->tc_frag_data.literal_frag;
9899 dest_seg = insert_after->fr_next->tc_frag_data.lit_seg;
9900
9901 *frag_splice = next_frag;
9902 search_frag->fr_next = insert_after->fr_next;
9903 insert_after->fr_next = search_frag;
9904 search_frag->tc_frag_data.lit_seg = dest_seg;
9905 literal_pool->tc_frag_data.literal_frag = search_frag;
9906
9907 /* Now move any fixups associated with this frag to the
9908 right section. */
9909 fix = frchain_from->fix_root;
9910 fix_splice = &(frchain_from->fix_root);
9911 while (fix)
9912 {
9913 next_fix = fix->fx_next;
9914 if (fix->fx_frag == search_frag)
9915 {
9916 *fix_splice = next_fix;
9917 fix->fx_next = frchain_to->fix_root;
9918 frchain_to->fix_root = fix;
9919 if (frchain_to->fix_tail == NULL)
9920 frchain_to->fix_tail = fix;
9921 }
9922 else
9923 fix_splice = &(fix->fx_next);
9924 fix = next_fix;
9925 }
9926 search_frag = next_frag;
9927 }
9928
9929 if (frchain_from->fix_root != NULL)
9930 {
9931 frchain_from = seg_info (segment->seg)->frchainP;
9932 as_warn (_("fixes not all moved from %s"), segment->seg->name);
9933
9934 assert (frchain_from->fix_root == NULL);
9935 }
9936 frchain_from->fix_tail = NULL;
9937 xtensa_restore_emit_state (&state);
9938 }
9939
9940 /* Now fix up the SEGMENT value for all the literal symbols. */
9941 for (lit = literal_syms; lit; lit = lit->next)
9942 {
9943 symbolS *lit_sym = lit->sym;
9944 segT dest_seg = symbol_get_frag (lit_sym)->tc_frag_data.lit_seg;
9945 if (dest_seg)
9946 S_SET_SEGMENT (lit_sym, dest_seg);
9947 }
9948 }
9949
9950
9951 /* Walk over all the frags for segments in a list and mark them as
9952 containing literals. As clunky as this is, we can't rely on frag_var
9953 and frag_variant to get called in all situations. */
9954
9955 static void
9956 mark_literal_frags (seg_list *segment)
9957 {
9958 frchainS *frchain_from;
9959 fragS *search_frag;
9960
9961 while (segment)
9962 {
9963 frchain_from = seg_info (segment->seg)->frchainP;
9964 search_frag = frchain_from->frch_root;
9965 while (search_frag)
9966 {
9967 search_frag->tc_frag_data.is_literal = TRUE;
9968 search_frag = search_frag->fr_next;
9969 }
9970 segment = segment->next;
9971 }
9972 }
9973
9974
9975 static void
9976 xtensa_reorder_seg_list (seg_list *head, segT after)
9977 {
9978 /* Move all of the sections in the section list to come
9979 after "after" in the gnu segment list. */
9980
9981 head = head->next;
9982 while (head)
9983 {
9984 segT literal_section = head->seg;
9985
9986 /* Move the literal section after "after". */
9987 assert (literal_section);
9988 if (literal_section != after)
9989 {
9990 bfd_section_list_remove (stdoutput, literal_section);
9991 bfd_section_list_insert_after (stdoutput, after, literal_section);
9992 }
9993
9994 head = head->next;
9995 }
9996 }
9997
9998
9999 /* Push all the literal segments to the end of the gnu list. */
10000
10001 static void
10002 xtensa_reorder_segments (void)
10003 {
10004 segT sec;
10005 segT last_sec = 0;
10006 int old_count = 0;
10007 int new_count = 0;
10008
10009 for (sec = stdoutput->sections; sec != NULL; sec = sec->next)
10010 {
10011 last_sec = sec;
10012 old_count++;
10013 }
10014
10015 /* Now that we have the last section, push all the literal
10016 sections to the end. */
10017 xtensa_reorder_seg_list (literal_head, last_sec);
10018
10019 /* Now perform the final error check. */
10020 for (sec = stdoutput->sections; sec != NULL; sec = sec->next)
10021 new_count++;
10022 assert (new_count == old_count);
10023 }
10024
10025
10026 /* Change the emit state (seg, subseg, and frag related stuff) to the
10027 correct location. Return a emit_state which can be passed to
10028 xtensa_restore_emit_state to return to current fragment. */
10029
10030 static void
10031 xtensa_switch_to_literal_fragment (emit_state *result)
10032 {
10033 if (directive_state[directive_absolute_literals])
10034 {
10035 segT lit4_seg = cache_literal_section (TRUE);
10036 xtensa_switch_section_emit_state (result, lit4_seg, 0);
10037 }
10038 else
10039 xtensa_switch_to_non_abs_literal_fragment (result);
10040
10041 /* Do a 4-byte align here. */
10042 frag_align (2, 0, 0);
10043 record_alignment (now_seg, 2);
10044 }
10045
10046
10047 static void
10048 xtensa_switch_to_non_abs_literal_fragment (emit_state *result)
10049 {
10050 static bfd_boolean recursive = FALSE;
10051 fragS *pool_location = get_literal_pool_location (now_seg);
10052 segT lit_seg;
10053 bfd_boolean is_init =
10054 (now_seg && !strcmp (segment_name (now_seg), INIT_SECTION_NAME));
10055 bfd_boolean is_fini =
10056 (now_seg && !strcmp (segment_name (now_seg), FINI_SECTION_NAME));
10057
10058 if (pool_location == NULL
10059 && !use_literal_section
10060 && !recursive
10061 && !is_init && ! is_fini)
10062 {
10063 as_bad (_("literal pool location required for text-section-literals; specify with .literal_position"));
10064
10065 /* When we mark a literal pool location, we want to put a frag in
10066 the literal pool that points to it. But to do that, we want to
10067 switch_to_literal_fragment. But literal sections don't have
10068 literal pools, so their location is always null, so we would
10069 recurse forever. This is kind of hacky, but it works. */
10070
10071 recursive = TRUE;
10072 xtensa_mark_literal_pool_location ();
10073 recursive = FALSE;
10074 }
10075
10076 lit_seg = cache_literal_section (FALSE);
10077 xtensa_switch_section_emit_state (result, lit_seg, 0);
10078
10079 if (!use_literal_section
10080 && !is_init && !is_fini
10081 && get_literal_pool_location (now_seg) != pool_location)
10082 {
10083 /* Close whatever frag is there. */
10084 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
10085 xtensa_set_frag_assembly_state (frag_now);
10086 frag_now->tc_frag_data.literal_frag = pool_location;
10087 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
10088 xtensa_set_frag_assembly_state (frag_now);
10089 }
10090 }
10091
10092
10093 /* Call this function before emitting data into the literal section.
10094 This is a helper function for xtensa_switch_to_literal_fragment.
10095 This is similar to a .section new_now_seg subseg. */
10096
10097 static void
10098 xtensa_switch_section_emit_state (emit_state *state,
10099 segT new_now_seg,
10100 subsegT new_now_subseg)
10101 {
10102 state->name = now_seg->name;
10103 state->now_seg = now_seg;
10104 state->now_subseg = now_subseg;
10105 state->generating_literals = generating_literals;
10106 generating_literals++;
10107 subseg_set (new_now_seg, new_now_subseg);
10108 }
10109
10110
10111 /* Use to restore the emitting into the normal place. */
10112
10113 static void
10114 xtensa_restore_emit_state (emit_state *state)
10115 {
10116 generating_literals = state->generating_literals;
10117 subseg_set (state->now_seg, state->now_subseg);
10118 }
10119
10120
10121 /* Predicate function used to look up a section in a particular group. */
10122
10123 static bfd_boolean
10124 match_section_group (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *inf)
10125 {
10126 const char *gname = inf;
10127 const char *group_name = elf_group_name (sec);
10128
10129 return (group_name == gname
10130 || (group_name != NULL
10131 && gname != NULL
10132 && strcmp (group_name, gname) == 0));
10133 }
10134
10135
10136 /* Get the literal section to be used for the current text section.
10137 The result may be cached in the default_lit_sections structure. */
10138
10139 static segT
10140 cache_literal_section (bfd_boolean use_abs_literals)
10141 {
10142 const char *text_name, *group_name = 0;
10143 char *base_name, *name, *suffix;
10144 segT *pcached;
10145 segT seg, current_section;
10146 int current_subsec;
10147 bfd_boolean linkonce = FALSE;
10148
10149 /* Save the current section/subsection. */
10150 current_section = now_seg;
10151 current_subsec = now_subseg;
10152
10153 /* Clear the cached values if they are no longer valid. */
10154 if (now_seg != default_lit_sections.current_text_seg)
10155 {
10156 default_lit_sections.current_text_seg = now_seg;
10157 default_lit_sections.lit_seg = NULL;
10158 default_lit_sections.lit4_seg = NULL;
10159 }
10160
10161 /* Check if the literal section is already cached. */
10162 if (use_abs_literals)
10163 pcached = &default_lit_sections.lit4_seg;
10164 else
10165 pcached = &default_lit_sections.lit_seg;
10166
10167 if (*pcached)
10168 return *pcached;
10169
10170 text_name = default_lit_sections.lit_prefix;
10171 if (! text_name || ! *text_name)
10172 {
10173 text_name = segment_name (current_section);
10174 group_name = elf_group_name (current_section);
10175 linkonce = (current_section->flags & SEC_LINK_ONCE) != 0;
10176 }
10177
10178 base_name = use_abs_literals ? ".lit4" : ".literal";
10179 if (group_name)
10180 {
10181 name = xmalloc (strlen (base_name) + strlen (group_name) + 2);
10182 sprintf (name, "%s.%s", base_name, group_name);
10183 }
10184 else if (strncmp (text_name, ".gnu.linkonce.", linkonce_len) == 0)
10185 {
10186 suffix = strchr (text_name + linkonce_len, '.');
10187
10188 name = xmalloc (linkonce_len + strlen (base_name) + 1
10189 + (suffix ? strlen (suffix) : 0));
10190 strcpy (name, ".gnu.linkonce");
10191 strcat (name, base_name);
10192 if (suffix)
10193 strcat (name, suffix);
10194 linkonce = TRUE;
10195 }
10196 else
10197 {
10198 /* If the section name ends with ".text", then replace that suffix
10199 instead of appending an additional suffix. */
10200 size_t len = strlen (text_name);
10201 if (len >= 5 && strcmp (text_name + len - 5, ".text") == 0)
10202 len -= 5;
10203
10204 name = xmalloc (len + strlen (base_name) + 1);
10205 strcpy (name, text_name);
10206 strcpy (name + len, base_name);
10207 }
10208
10209 /* Canonicalize section names to allow renaming literal sections.
10210 The group name, if any, came from the current text section and
10211 has already been canonicalized. */
10212 name = tc_canonicalize_symbol_name (name);
10213
10214 seg = bfd_get_section_by_name_if (stdoutput, name, match_section_group,
10215 (void *) group_name);
10216 if (! seg)
10217 {
10218 flagword flags;
10219
10220 seg = subseg_force_new (name, 0);
10221
10222 if (! use_abs_literals)
10223 {
10224 /* Add the newly created literal segment to the list. */
10225 seg_list *n = (seg_list *) xmalloc (sizeof (seg_list));
10226 n->seg = seg;
10227 n->next = literal_head->next;
10228 literal_head->next = n;
10229 }
10230
10231 flags = (SEC_HAS_CONTENTS | SEC_READONLY | SEC_ALLOC | SEC_LOAD
10232 | (linkonce ? (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD) : 0)
10233 | (use_abs_literals ? SEC_DATA : SEC_CODE));
10234
10235 elf_group_name (seg) = group_name;
10236
10237 bfd_set_section_flags (stdoutput, seg, flags);
10238 bfd_set_section_alignment (stdoutput, seg, 2);
10239 }
10240
10241 *pcached = seg;
10242 subseg_set (current_section, current_subsec);
10243 return seg;
10244 }
10245
10246 \f
10247 /* Property Tables Stuff. */
10248
10249 #define XTENSA_INSN_SEC_NAME ".xt.insn"
10250 #define XTENSA_LIT_SEC_NAME ".xt.lit"
10251 #define XTENSA_PROP_SEC_NAME ".xt.prop"
10252
10253 typedef bfd_boolean (*frag_predicate) (const fragS *);
10254 typedef void (*frag_flags_fn) (const fragS *, frag_flags *);
10255
10256 static bfd_boolean get_frag_is_literal (const fragS *);
10257 static void xtensa_create_property_segments
10258 (frag_predicate, frag_predicate, const char *, xt_section_type);
10259 static void xtensa_create_xproperty_segments
10260 (frag_flags_fn, const char *, xt_section_type);
10261 static segment_info_type *retrieve_segment_info (segT);
10262 static bfd_boolean section_has_property (segT, frag_predicate);
10263 static bfd_boolean section_has_xproperty (segT, frag_flags_fn);
10264 static void add_xt_block_frags
10265 (segT, segT, xtensa_block_info **, frag_predicate, frag_predicate);
10266 static bfd_boolean xtensa_frag_flags_is_empty (const frag_flags *);
10267 static void xtensa_frag_flags_init (frag_flags *);
10268 static void get_frag_property_flags (const fragS *, frag_flags *);
10269 static bfd_vma frag_flags_to_number (const frag_flags *);
10270 static void add_xt_prop_frags
10271 (segT, segT, xtensa_block_info **, frag_flags_fn);
10272
10273 /* Set up property tables after relaxation. */
10274
10275 void
10276 xtensa_post_relax_hook (void)
10277 {
10278 xtensa_move_seg_list_to_beginning (literal_head);
10279
10280 xtensa_find_unmarked_state_frags ();
10281 xtensa_mark_frags_for_org ();
10282 xtensa_mark_difference_of_two_symbols ();
10283
10284 xtensa_create_property_segments (get_frag_is_literal,
10285 NULL,
10286 XTENSA_LIT_SEC_NAME,
10287 xt_literal_sec);
10288 xtensa_create_xproperty_segments (get_frag_property_flags,
10289 XTENSA_PROP_SEC_NAME,
10290 xt_prop_sec);
10291
10292 if (warn_unaligned_branch_targets)
10293 bfd_map_over_sections (stdoutput, xtensa_find_unaligned_branch_targets, 0);
10294 bfd_map_over_sections (stdoutput, xtensa_find_unaligned_loops, 0);
10295 }
10296
10297
10298 /* This function is only meaningful after xtensa_move_literals. */
10299
10300 static bfd_boolean
10301 get_frag_is_literal (const fragS *fragP)
10302 {
10303 assert (fragP != NULL);
10304 return fragP->tc_frag_data.is_literal;
10305 }
10306
10307
10308 static void
10309 xtensa_create_property_segments (frag_predicate property_function,
10310 frag_predicate end_property_function,
10311 const char *section_name_base,
10312 xt_section_type sec_type)
10313 {
10314 segT *seclist;
10315
10316 /* Walk over all of the current segments.
10317 Walk over each fragment
10318 For each non-empty fragment,
10319 Build a property record (append where possible). */
10320
10321 for (seclist = &stdoutput->sections;
10322 seclist && *seclist;
10323 seclist = &(*seclist)->next)
10324 {
10325 segT sec = *seclist;
10326 flagword flags;
10327
10328 flags = bfd_get_section_flags (stdoutput, sec);
10329 if (flags & SEC_DEBUGGING)
10330 continue;
10331 if (!(flags & SEC_ALLOC))
10332 continue;
10333
10334 if (section_has_property (sec, property_function))
10335 {
10336 segT insn_sec =
10337 xtensa_get_property_section (sec, section_name_base);
10338 segment_info_type *xt_seg_info = retrieve_segment_info (insn_sec);
10339 xtensa_block_info **xt_blocks =
10340 &xt_seg_info->tc_segment_info_data.blocks[sec_type];
10341 /* Walk over all of the frchains here and add new sections. */
10342 add_xt_block_frags (sec, insn_sec, xt_blocks, property_function,
10343 end_property_function);
10344 }
10345 }
10346
10347 /* Now we fill them out.... */
10348
10349 for (seclist = &stdoutput->sections;
10350 seclist && *seclist;
10351 seclist = &(*seclist)->next)
10352 {
10353 segment_info_type *seginfo;
10354 xtensa_block_info *block;
10355 segT sec = *seclist;
10356
10357 seginfo = seg_info (sec);
10358 block = seginfo->tc_segment_info_data.blocks[sec_type];
10359
10360 if (block)
10361 {
10362 xtensa_block_info *cur_block;
10363 /* This is a section with some data. */
10364 int num_recs = 0;
10365 bfd_size_type rec_size;
10366
10367 for (cur_block = block; cur_block; cur_block = cur_block->next)
10368 num_recs++;
10369
10370 rec_size = num_recs * 8;
10371 bfd_set_section_size (stdoutput, sec, rec_size);
10372
10373 /* In order to make this work with the assembler, we have to
10374 build some frags and then build the "fixups" for it. It
10375 would be easier to just set the contents then set the
10376 arlents. */
10377
10378 if (num_recs)
10379 {
10380 /* Allocate a fragment and leak it. */
10381 fragS *fragP;
10382 bfd_size_type frag_size;
10383 fixS *fixes;
10384 frchainS *frchainP;
10385 int i;
10386 char *frag_data;
10387
10388 frag_size = sizeof (fragS) + rec_size;
10389 fragP = (fragS *) xmalloc (frag_size);
10390
10391 memset (fragP, 0, frag_size);
10392 fragP->fr_address = 0;
10393 fragP->fr_next = NULL;
10394 fragP->fr_fix = rec_size;
10395 fragP->fr_var = 0;
10396 fragP->fr_type = rs_fill;
10397 /* The rest are zeros. */
10398
10399 frchainP = seginfo->frchainP;
10400 frchainP->frch_root = fragP;
10401 frchainP->frch_last = fragP;
10402
10403 fixes = (fixS *) xmalloc (sizeof (fixS) * num_recs);
10404 memset (fixes, 0, sizeof (fixS) * num_recs);
10405
10406 seginfo->fix_root = fixes;
10407 seginfo->fix_tail = &fixes[num_recs - 1];
10408 cur_block = block;
10409 frag_data = &fragP->fr_literal[0];
10410 for (i = 0; i < num_recs; i++)
10411 {
10412 fixS *fix = &fixes[i];
10413 assert (cur_block);
10414
10415 /* Write the fixup. */
10416 if (i != num_recs - 1)
10417 fix->fx_next = &fixes[i + 1];
10418 else
10419 fix->fx_next = NULL;
10420 fix->fx_size = 4;
10421 fix->fx_done = 0;
10422 fix->fx_frag = fragP;
10423 fix->fx_where = i * 8;
10424 fix->fx_addsy = section_symbol (cur_block->sec);
10425 fix->fx_offset = cur_block->offset;
10426 fix->fx_r_type = BFD_RELOC_32;
10427 fix->fx_file = "Internal Assembly";
10428 fix->fx_line = 0;
10429
10430 /* Write the length. */
10431 md_number_to_chars (&frag_data[4 + 8 * i],
10432 cur_block->size, 4);
10433 cur_block = cur_block->next;
10434 }
10435 }
10436 }
10437 }
10438 }
10439
10440
10441 static void
10442 xtensa_create_xproperty_segments (frag_flags_fn flag_fn,
10443 const char *section_name_base,
10444 xt_section_type sec_type)
10445 {
10446 segT *seclist;
10447
10448 /* Walk over all of the current segments.
10449 Walk over each fragment.
10450 For each fragment that has instructions,
10451 build an instruction record (append where possible). */
10452
10453 for (seclist = &stdoutput->sections;
10454 seclist && *seclist;
10455 seclist = &(*seclist)->next)
10456 {
10457 segT sec = *seclist;
10458 flagword flags;
10459
10460 flags = bfd_get_section_flags (stdoutput, sec);
10461 if ((flags & SEC_DEBUGGING)
10462 || !(flags & SEC_ALLOC)
10463 || (flags & SEC_MERGE))
10464 continue;
10465
10466 if (section_has_xproperty (sec, flag_fn))
10467 {
10468 segT insn_sec =
10469 xtensa_get_property_section (sec, section_name_base);
10470 segment_info_type *xt_seg_info = retrieve_segment_info (insn_sec);
10471 xtensa_block_info **xt_blocks =
10472 &xt_seg_info->tc_segment_info_data.blocks[sec_type];
10473 /* Walk over all of the frchains here and add new sections. */
10474 add_xt_prop_frags (sec, insn_sec, xt_blocks, flag_fn);
10475 }
10476 }
10477
10478 /* Now we fill them out.... */
10479
10480 for (seclist = &stdoutput->sections;
10481 seclist && *seclist;
10482 seclist = &(*seclist)->next)
10483 {
10484 segment_info_type *seginfo;
10485 xtensa_block_info *block;
10486 segT sec = *seclist;
10487
10488 seginfo = seg_info (sec);
10489 block = seginfo->tc_segment_info_data.blocks[sec_type];
10490
10491 if (block)
10492 {
10493 xtensa_block_info *cur_block;
10494 /* This is a section with some data. */
10495 int num_recs = 0;
10496 bfd_size_type rec_size;
10497
10498 for (cur_block = block; cur_block; cur_block = cur_block->next)
10499 num_recs++;
10500
10501 rec_size = num_recs * (8 + 4);
10502 bfd_set_section_size (stdoutput, sec, rec_size);
10503
10504 /* elf_section_data (sec)->this_hdr.sh_entsize = 12; */
10505
10506 /* In order to make this work with the assembler, we have to build
10507 some frags then build the "fixups" for it. It would be easier to
10508 just set the contents then set the arlents. */
10509
10510 if (num_recs)
10511 {
10512 /* Allocate a fragment and (unfortunately) leak it. */
10513 fragS *fragP;
10514 bfd_size_type frag_size;
10515 fixS *fixes;
10516 frchainS *frchainP;
10517 int i;
10518 char *frag_data;
10519
10520 frag_size = sizeof (fragS) + rec_size;
10521 fragP = (fragS *) xmalloc (frag_size);
10522
10523 memset (fragP, 0, frag_size);
10524 fragP->fr_address = 0;
10525 fragP->fr_next = NULL;
10526 fragP->fr_fix = rec_size;
10527 fragP->fr_var = 0;
10528 fragP->fr_type = rs_fill;
10529 /* The rest are zeros. */
10530
10531 frchainP = seginfo->frchainP;
10532 frchainP->frch_root = fragP;
10533 frchainP->frch_last = fragP;
10534
10535 fixes = (fixS *) xmalloc (sizeof (fixS) * num_recs);
10536 memset (fixes, 0, sizeof (fixS) * num_recs);
10537
10538 seginfo->fix_root = fixes;
10539 seginfo->fix_tail = &fixes[num_recs - 1];
10540 cur_block = block;
10541 frag_data = &fragP->fr_literal[0];
10542 for (i = 0; i < num_recs; i++)
10543 {
10544 fixS *fix = &fixes[i];
10545 assert (cur_block);
10546
10547 /* Write the fixup. */
10548 if (i != num_recs - 1)
10549 fix->fx_next = &fixes[i + 1];
10550 else
10551 fix->fx_next = NULL;
10552 fix->fx_size = 4;
10553 fix->fx_done = 0;
10554 fix->fx_frag = fragP;
10555 fix->fx_where = i * (8 + 4);
10556 fix->fx_addsy = section_symbol (cur_block->sec);
10557 fix->fx_offset = cur_block->offset;
10558 fix->fx_r_type = BFD_RELOC_32;
10559 fix->fx_file = "Internal Assembly";
10560 fix->fx_line = 0;
10561
10562 /* Write the length. */
10563 md_number_to_chars (&frag_data[4 + (8+4) * i],
10564 cur_block->size, 4);
10565 md_number_to_chars (&frag_data[8 + (8+4) * i],
10566 frag_flags_to_number (&cur_block->flags),
10567 4);
10568 cur_block = cur_block->next;
10569 }
10570 }
10571 }
10572 }
10573 }
10574
10575
10576 static segment_info_type *
10577 retrieve_segment_info (segT seg)
10578 {
10579 segment_info_type *seginfo;
10580 seginfo = (segment_info_type *) bfd_get_section_userdata (stdoutput, seg);
10581 if (!seginfo)
10582 {
10583 frchainS *frchainP;
10584
10585 seginfo = (segment_info_type *) xmalloc (sizeof (*seginfo));
10586 memset ((void *) seginfo, 0, sizeof (*seginfo));
10587 seginfo->fix_root = NULL;
10588 seginfo->fix_tail = NULL;
10589 seginfo->bfd_section = seg;
10590 seginfo->sym = 0;
10591 /* We will not be dealing with these, only our special ones. */
10592 bfd_set_section_userdata (stdoutput, seg, (void *) seginfo);
10593
10594 frchainP = (frchainS *) xmalloc (sizeof (frchainS));
10595 frchainP->frch_root = NULL;
10596 frchainP->frch_last = NULL;
10597 frchainP->frch_next = NULL;
10598 frchainP->frch_subseg = 0;
10599 frchainP->fix_root = NULL;
10600 frchainP->fix_tail = NULL;
10601 /* Do not init the objstack. */
10602 /* obstack_begin (&frchainP->frch_obstack, chunksize); */
10603 /* frchainP->frch_frag_now = fragP; */
10604 frchainP->frch_frag_now = NULL;
10605
10606 seginfo->frchainP = frchainP;
10607 }
10608
10609 return seginfo;
10610 }
10611
10612
10613 static bfd_boolean
10614 section_has_property (segT sec, frag_predicate property_function)
10615 {
10616 segment_info_type *seginfo = seg_info (sec);
10617 fragS *fragP;
10618
10619 if (seginfo && seginfo->frchainP)
10620 {
10621 for (fragP = seginfo->frchainP->frch_root; fragP; fragP = fragP->fr_next)
10622 {
10623 if (property_function (fragP)
10624 && (fragP->fr_type != rs_fill || fragP->fr_fix != 0))
10625 return TRUE;
10626 }
10627 }
10628 return FALSE;
10629 }
10630
10631
10632 static bfd_boolean
10633 section_has_xproperty (segT sec, frag_flags_fn property_function)
10634 {
10635 segment_info_type *seginfo = seg_info (sec);
10636 fragS *fragP;
10637
10638 if (seginfo && seginfo->frchainP)
10639 {
10640 for (fragP = seginfo->frchainP->frch_root; fragP; fragP = fragP->fr_next)
10641 {
10642 frag_flags prop_flags;
10643 property_function (fragP, &prop_flags);
10644 if (!xtensa_frag_flags_is_empty (&prop_flags))
10645 return TRUE;
10646 }
10647 }
10648 return FALSE;
10649 }
10650
10651
10652 /* Two types of block sections exist right now: literal and insns. */
10653
10654 static void
10655 add_xt_block_frags (segT sec,
10656 segT xt_block_sec,
10657 xtensa_block_info **xt_block,
10658 frag_predicate property_function,
10659 frag_predicate end_property_function)
10660 {
10661 segment_info_type *seg_info;
10662 segment_info_type *xt_seg_info;
10663 bfd_vma seg_offset;
10664 fragS *fragP;
10665
10666 xt_seg_info = retrieve_segment_info (xt_block_sec);
10667 seg_info = retrieve_segment_info (sec);
10668
10669 /* Build it if needed. */
10670 while (*xt_block != NULL)
10671 xt_block = &(*xt_block)->next;
10672 /* We are either at NULL at the beginning or at the end. */
10673
10674 /* Walk through the frags. */
10675 seg_offset = 0;
10676
10677 if (seg_info->frchainP)
10678 {
10679 for (fragP = seg_info->frchainP->frch_root;
10680 fragP;
10681 fragP = fragP->fr_next)
10682 {
10683 if (property_function (fragP)
10684 && (fragP->fr_type != rs_fill || fragP->fr_fix != 0))
10685 {
10686 if (*xt_block != NULL)
10687 {
10688 if ((*xt_block)->offset + (*xt_block)->size
10689 == fragP->fr_address)
10690 (*xt_block)->size += fragP->fr_fix;
10691 else
10692 xt_block = &((*xt_block)->next);
10693 }
10694 if (*xt_block == NULL)
10695 {
10696 xtensa_block_info *new_block = (xtensa_block_info *)
10697 xmalloc (sizeof (xtensa_block_info));
10698 new_block->sec = sec;
10699 new_block->offset = fragP->fr_address;
10700 new_block->size = fragP->fr_fix;
10701 new_block->next = NULL;
10702 xtensa_frag_flags_init (&new_block->flags);
10703 *xt_block = new_block;
10704 }
10705 if (end_property_function
10706 && end_property_function (fragP))
10707 {
10708 xt_block = &((*xt_block)->next);
10709 }
10710 }
10711 }
10712 }
10713 }
10714
10715
10716 /* Break the encapsulation of add_xt_prop_frags here. */
10717
10718 static bfd_boolean
10719 xtensa_frag_flags_is_empty (const frag_flags *prop_flags)
10720 {
10721 if (prop_flags->is_literal
10722 || prop_flags->is_insn
10723 || prop_flags->is_data
10724 || prop_flags->is_unreachable)
10725 return FALSE;
10726 return TRUE;
10727 }
10728
10729
10730 static void
10731 xtensa_frag_flags_init (frag_flags *prop_flags)
10732 {
10733 memset (prop_flags, 0, sizeof (frag_flags));
10734 }
10735
10736
10737 static void
10738 get_frag_property_flags (const fragS *fragP, frag_flags *prop_flags)
10739 {
10740 xtensa_frag_flags_init (prop_flags);
10741 if (fragP->tc_frag_data.is_literal)
10742 prop_flags->is_literal = TRUE;
10743 if (fragP->tc_frag_data.is_specific_opcode
10744 || fragP->tc_frag_data.is_no_transform)
10745 prop_flags->is_no_transform = TRUE;
10746 if (fragP->tc_frag_data.is_unreachable)
10747 prop_flags->is_unreachable = TRUE;
10748 else if (fragP->tc_frag_data.is_insn)
10749 {
10750 prop_flags->is_insn = TRUE;
10751 if (fragP->tc_frag_data.is_loop_target)
10752 prop_flags->insn.is_loop_target = TRUE;
10753 if (fragP->tc_frag_data.is_branch_target)
10754 prop_flags->insn.is_branch_target = TRUE;
10755 if (fragP->tc_frag_data.is_no_density)
10756 prop_flags->insn.is_no_density = TRUE;
10757 if (fragP->tc_frag_data.use_absolute_literals)
10758 prop_flags->insn.is_abslit = TRUE;
10759 }
10760 if (fragP->tc_frag_data.is_align)
10761 {
10762 prop_flags->is_align = TRUE;
10763 prop_flags->alignment = fragP->tc_frag_data.alignment;
10764 if (xtensa_frag_flags_is_empty (prop_flags))
10765 prop_flags->is_data = TRUE;
10766 }
10767 }
10768
10769
10770 static bfd_vma
10771 frag_flags_to_number (const frag_flags *prop_flags)
10772 {
10773 bfd_vma num = 0;
10774 if (prop_flags->is_literal)
10775 num |= XTENSA_PROP_LITERAL;
10776 if (prop_flags->is_insn)
10777 num |= XTENSA_PROP_INSN;
10778 if (prop_flags->is_data)
10779 num |= XTENSA_PROP_DATA;
10780 if (prop_flags->is_unreachable)
10781 num |= XTENSA_PROP_UNREACHABLE;
10782 if (prop_flags->insn.is_loop_target)
10783 num |= XTENSA_PROP_INSN_LOOP_TARGET;
10784 if (prop_flags->insn.is_branch_target)
10785 {
10786 num |= XTENSA_PROP_INSN_BRANCH_TARGET;
10787 num = SET_XTENSA_PROP_BT_ALIGN (num, prop_flags->insn.bt_align_priority);
10788 }
10789
10790 if (prop_flags->insn.is_no_density)
10791 num |= XTENSA_PROP_INSN_NO_DENSITY;
10792 if (prop_flags->is_no_transform)
10793 num |= XTENSA_PROP_NO_TRANSFORM;
10794 if (prop_flags->insn.is_no_reorder)
10795 num |= XTENSA_PROP_INSN_NO_REORDER;
10796 if (prop_flags->insn.is_abslit)
10797 num |= XTENSA_PROP_INSN_ABSLIT;
10798
10799 if (prop_flags->is_align)
10800 {
10801 num |= XTENSA_PROP_ALIGN;
10802 num = SET_XTENSA_PROP_ALIGNMENT (num, prop_flags->alignment);
10803 }
10804
10805 return num;
10806 }
10807
10808
10809 static bfd_boolean
10810 xtensa_frag_flags_combinable (const frag_flags *prop_flags_1,
10811 const frag_flags *prop_flags_2)
10812 {
10813 /* Cannot combine with an end marker. */
10814
10815 if (prop_flags_1->is_literal != prop_flags_2->is_literal)
10816 return FALSE;
10817 if (prop_flags_1->is_insn != prop_flags_2->is_insn)
10818 return FALSE;
10819 if (prop_flags_1->is_data != prop_flags_2->is_data)
10820 return FALSE;
10821
10822 if (prop_flags_1->is_insn)
10823 {
10824 /* Properties of the beginning of the frag. */
10825 if (prop_flags_2->insn.is_loop_target)
10826 return FALSE;
10827 if (prop_flags_2->insn.is_branch_target)
10828 return FALSE;
10829 if (prop_flags_1->insn.is_no_density !=
10830 prop_flags_2->insn.is_no_density)
10831 return FALSE;
10832 if (prop_flags_1->is_no_transform !=
10833 prop_flags_2->is_no_transform)
10834 return FALSE;
10835 if (prop_flags_1->insn.is_no_reorder !=
10836 prop_flags_2->insn.is_no_reorder)
10837 return FALSE;
10838 if (prop_flags_1->insn.is_abslit !=
10839 prop_flags_2->insn.is_abslit)
10840 return FALSE;
10841 }
10842
10843 if (prop_flags_1->is_align)
10844 return FALSE;
10845
10846 return TRUE;
10847 }
10848
10849
10850 static bfd_vma
10851 xt_block_aligned_size (const xtensa_block_info *xt_block)
10852 {
10853 bfd_vma end_addr;
10854 unsigned align_bits;
10855
10856 if (!xt_block->flags.is_align)
10857 return xt_block->size;
10858
10859 end_addr = xt_block->offset + xt_block->size;
10860 align_bits = xt_block->flags.alignment;
10861 end_addr = ((end_addr + ((1 << align_bits) -1)) >> align_bits) << align_bits;
10862 return end_addr - xt_block->offset;
10863 }
10864
10865
10866 static bfd_boolean
10867 xtensa_xt_block_combine (xtensa_block_info *xt_block,
10868 const xtensa_block_info *xt_block_2)
10869 {
10870 if (xt_block->sec != xt_block_2->sec)
10871 return FALSE;
10872 if (xt_block->offset + xt_block_aligned_size (xt_block)
10873 != xt_block_2->offset)
10874 return FALSE;
10875
10876 if (xt_block_2->size == 0
10877 && (!xt_block_2->flags.is_unreachable
10878 || xt_block->flags.is_unreachable))
10879 {
10880 if (xt_block_2->flags.is_align
10881 && xt_block->flags.is_align)
10882 {
10883 /* Nothing needed. */
10884 if (xt_block->flags.alignment >= xt_block_2->flags.alignment)
10885 return TRUE;
10886 }
10887 else
10888 {
10889 if (xt_block_2->flags.is_align)
10890 {
10891 /* Push alignment to previous entry. */
10892 xt_block->flags.is_align = xt_block_2->flags.is_align;
10893 xt_block->flags.alignment = xt_block_2->flags.alignment;
10894 }
10895 return TRUE;
10896 }
10897 }
10898 if (!xtensa_frag_flags_combinable (&xt_block->flags,
10899 &xt_block_2->flags))
10900 return FALSE;
10901
10902 xt_block->size += xt_block_2->size;
10903
10904 if (xt_block_2->flags.is_align)
10905 {
10906 xt_block->flags.is_align = TRUE;
10907 xt_block->flags.alignment = xt_block_2->flags.alignment;
10908 }
10909
10910 return TRUE;
10911 }
10912
10913
10914 static void
10915 add_xt_prop_frags (segT sec,
10916 segT xt_block_sec,
10917 xtensa_block_info **xt_block,
10918 frag_flags_fn property_function)
10919 {
10920 segment_info_type *seg_info;
10921 segment_info_type *xt_seg_info;
10922 bfd_vma seg_offset;
10923 fragS *fragP;
10924
10925 xt_seg_info = retrieve_segment_info (xt_block_sec);
10926 seg_info = retrieve_segment_info (sec);
10927 /* Build it if needed. */
10928 while (*xt_block != NULL)
10929 {
10930 xt_block = &(*xt_block)->next;
10931 }
10932 /* We are either at NULL at the beginning or at the end. */
10933
10934 /* Walk through the frags. */
10935 seg_offset = 0;
10936
10937 if (seg_info->frchainP)
10938 {
10939 for (fragP = seg_info->frchainP->frch_root; fragP;
10940 fragP = fragP->fr_next)
10941 {
10942 xtensa_block_info tmp_block;
10943 tmp_block.sec = sec;
10944 tmp_block.offset = fragP->fr_address;
10945 tmp_block.size = fragP->fr_fix;
10946 tmp_block.next = NULL;
10947 property_function (fragP, &tmp_block.flags);
10948
10949 if (!xtensa_frag_flags_is_empty (&tmp_block.flags))
10950 /* && fragP->fr_fix != 0) */
10951 {
10952 if ((*xt_block) == NULL
10953 || !xtensa_xt_block_combine (*xt_block, &tmp_block))
10954 {
10955 xtensa_block_info *new_block;
10956 if ((*xt_block) != NULL)
10957 xt_block = &(*xt_block)->next;
10958 new_block = (xtensa_block_info *)
10959 xmalloc (sizeof (xtensa_block_info));
10960 *new_block = tmp_block;
10961 *xt_block = new_block;
10962 }
10963 }
10964 }
10965 }
10966 }
10967
10968 \f
10969 /* op_placement_info_table */
10970
10971 /* op_placement_info makes it easier to determine which
10972 ops can go in which slots. */
10973
10974 static void
10975 init_op_placement_info_table (void)
10976 {
10977 xtensa_isa isa = xtensa_default_isa;
10978 xtensa_insnbuf ibuf = xtensa_insnbuf_alloc (isa);
10979 xtensa_opcode opcode;
10980 xtensa_format fmt;
10981 int slot;
10982 int num_opcodes = xtensa_isa_num_opcodes (isa);
10983
10984 op_placement_table = (op_placement_info_table)
10985 xmalloc (sizeof (op_placement_info) * num_opcodes);
10986 assert (xtensa_isa_num_formats (isa) < MAX_FORMATS);
10987
10988 for (opcode = 0; opcode < num_opcodes; opcode++)
10989 {
10990 op_placement_info *opi = &op_placement_table[opcode];
10991 /* FIXME: Make tinsn allocation dynamic. */
10992 if (xtensa_opcode_num_operands (isa, opcode) >= MAX_INSN_ARGS)
10993 as_fatal (_("too many operands in instruction"));
10994 opi->narrowest = XTENSA_UNDEFINED;
10995 opi->narrowest_size = 0x7F;
10996 opi->narrowest_slot = 0;
10997 opi->formats = 0;
10998 opi->num_formats = 0;
10999 opi->issuef = 0;
11000 for (fmt = 0; fmt < xtensa_isa_num_formats (isa); fmt++)
11001 {
11002 opi->slots[fmt] = 0;
11003 for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++)
11004 {
11005 if (xtensa_opcode_encode (isa, fmt, slot, ibuf, opcode) == 0)
11006 {
11007 int fmt_length = xtensa_format_length (isa, fmt);
11008 opi->issuef++;
11009 set_bit (fmt, opi->formats);
11010 set_bit (slot, opi->slots[fmt]);
11011 if (fmt_length < opi->narrowest_size
11012 || (fmt_length == opi->narrowest_size
11013 && (xtensa_format_num_slots (isa, fmt)
11014 < xtensa_format_num_slots (isa,
11015 opi->narrowest))))
11016 {
11017 opi->narrowest = fmt;
11018 opi->narrowest_size = fmt_length;
11019 opi->narrowest_slot = slot;
11020 }
11021 }
11022 }
11023 if (opi->formats)
11024 opi->num_formats++;
11025 }
11026 }
11027 xtensa_insnbuf_free (isa, ibuf);
11028 }
11029
11030
11031 bfd_boolean
11032 opcode_fits_format_slot (xtensa_opcode opcode, xtensa_format fmt, int slot)
11033 {
11034 return bit_is_set (slot, op_placement_table[opcode].slots[fmt]);
11035 }
11036
11037
11038 /* If the opcode is available in a single slot format, return its size. */
11039
11040 static int
11041 xg_get_single_size (xtensa_opcode opcode)
11042 {
11043 return op_placement_table[opcode].narrowest_size;
11044 }
11045
11046
11047 static xtensa_format
11048 xg_get_single_format (xtensa_opcode opcode)
11049 {
11050 return op_placement_table[opcode].narrowest;
11051 }
11052
11053
11054 static int
11055 xg_get_single_slot (xtensa_opcode opcode)
11056 {
11057 return op_placement_table[opcode].narrowest_slot;
11058 }
11059
11060 \f
11061 /* Instruction Stack Functions (from "xtensa-istack.h"). */
11062
11063 void
11064 istack_init (IStack *stack)
11065 {
11066 memset (stack, 0, sizeof (IStack));
11067 stack->ninsn = 0;
11068 }
11069
11070
11071 bfd_boolean
11072 istack_empty (IStack *stack)
11073 {
11074 return (stack->ninsn == 0);
11075 }
11076
11077
11078 bfd_boolean
11079 istack_full (IStack *stack)
11080 {
11081 return (stack->ninsn == MAX_ISTACK);
11082 }
11083
11084
11085 /* Return a pointer to the top IStack entry.
11086 It is an error to call this if istack_empty () is TRUE. */
11087
11088 TInsn *
11089 istack_top (IStack *stack)
11090 {
11091 int rec = stack->ninsn - 1;
11092 assert (!istack_empty (stack));
11093 return &stack->insn[rec];
11094 }
11095
11096
11097 /* Add a new TInsn to an IStack.
11098 It is an error to call this if istack_full () is TRUE. */
11099
11100 void
11101 istack_push (IStack *stack, TInsn *insn)
11102 {
11103 int rec = stack->ninsn;
11104 assert (!istack_full (stack));
11105 stack->insn[rec] = *insn;
11106 stack->ninsn++;
11107 }
11108
11109
11110 /* Clear space for the next TInsn on the IStack and return a pointer
11111 to it. It is an error to call this if istack_full () is TRUE. */
11112
11113 TInsn *
11114 istack_push_space (IStack *stack)
11115 {
11116 int rec = stack->ninsn;
11117 TInsn *insn;
11118 assert (!istack_full (stack));
11119 insn = &stack->insn[rec];
11120 tinsn_init (insn);
11121 stack->ninsn++;
11122 return insn;
11123 }
11124
11125
11126 /* Remove the last pushed instruction. It is an error to call this if
11127 istack_empty () returns TRUE. */
11128
11129 void
11130 istack_pop (IStack *stack)
11131 {
11132 int rec = stack->ninsn - 1;
11133 assert (!istack_empty (stack));
11134 stack->ninsn--;
11135 tinsn_init (&stack->insn[rec]);
11136 }
11137
11138 \f
11139 /* TInsn functions. */
11140
11141 void
11142 tinsn_init (TInsn *dst)
11143 {
11144 memset (dst, 0, sizeof (TInsn));
11145 }
11146
11147
11148 /* Return TRUE if ANY of the operands in the insn are symbolic. */
11149
11150 static bfd_boolean
11151 tinsn_has_symbolic_operands (const TInsn *insn)
11152 {
11153 int i;
11154 int n = insn->ntok;
11155
11156 assert (insn->insn_type == ITYPE_INSN);
11157
11158 for (i = 0; i < n; ++i)
11159 {
11160 switch (insn->tok[i].X_op)
11161 {
11162 case O_register:
11163 case O_constant:
11164 break;
11165 default:
11166 return TRUE;
11167 }
11168 }
11169 return FALSE;
11170 }
11171
11172
11173 bfd_boolean
11174 tinsn_has_invalid_symbolic_operands (const TInsn *insn)
11175 {
11176 xtensa_isa isa = xtensa_default_isa;
11177 int i;
11178 int n = insn->ntok;
11179
11180 assert (insn->insn_type == ITYPE_INSN);
11181
11182 for (i = 0; i < n; ++i)
11183 {
11184 switch (insn->tok[i].X_op)
11185 {
11186 case O_register:
11187 case O_constant:
11188 break;
11189 case O_big:
11190 case O_illegal:
11191 case O_absent:
11192 /* Errors for these types are caught later. */
11193 break;
11194 case O_hi16:
11195 case O_lo16:
11196 default:
11197 /* Symbolic immediates are only allowed on the last immediate
11198 operand. At this time, CONST16 is the only opcode where we
11199 support non-PC-relative relocations. */
11200 if (i != get_relaxable_immed (insn->opcode)
11201 || (xtensa_operand_is_PCrelative (isa, insn->opcode, i) != 1
11202 && insn->opcode != xtensa_const16_opcode))
11203 {
11204 as_bad (_("invalid symbolic operand"));
11205 return TRUE;
11206 }
11207 }
11208 }
11209 return FALSE;
11210 }
11211
11212
11213 /* For assembly code with complex expressions (e.g. subtraction),
11214 we have to build them in the literal pool so that
11215 their results are calculated correctly after relaxation.
11216 The relaxation only handles expressions that
11217 boil down to SYMBOL + OFFSET. */
11218
11219 static bfd_boolean
11220 tinsn_has_complex_operands (const TInsn *insn)
11221 {
11222 int i;
11223 int n = insn->ntok;
11224 assert (insn->insn_type == ITYPE_INSN);
11225 for (i = 0; i < n; ++i)
11226 {
11227 switch (insn->tok[i].X_op)
11228 {
11229 case O_register:
11230 case O_constant:
11231 case O_symbol:
11232 case O_lo16:
11233 case O_hi16:
11234 break;
11235 default:
11236 return TRUE;
11237 }
11238 }
11239 return FALSE;
11240 }
11241
11242
11243 /* Encode a TInsn opcode and its constant operands into slotbuf.
11244 Return TRUE if there is a symbol in the immediate field. This
11245 function assumes that:
11246 1) The number of operands are correct.
11247 2) The insn_type is ITYPE_INSN.
11248 3) The opcode can be encoded in the specified format and slot.
11249 4) Operands are either O_constant or O_symbol, and all constants fit. */
11250
11251 static bfd_boolean
11252 tinsn_to_slotbuf (xtensa_format fmt,
11253 int slot,
11254 TInsn *tinsn,
11255 xtensa_insnbuf slotbuf)
11256 {
11257 xtensa_isa isa = xtensa_default_isa;
11258 xtensa_opcode opcode = tinsn->opcode;
11259 bfd_boolean has_fixup = FALSE;
11260 int noperands = xtensa_opcode_num_operands (isa, opcode);
11261 int i;
11262
11263 assert (tinsn->insn_type == ITYPE_INSN);
11264 if (noperands != tinsn->ntok)
11265 as_fatal (_("operand number mismatch"));
11266
11267 if (xtensa_opcode_encode (isa, fmt, slot, slotbuf, opcode))
11268 {
11269 as_bad (_("cannot encode opcode \"%s\" in the given format \"%s\""),
11270 xtensa_opcode_name (isa, opcode), xtensa_format_name (isa, fmt));
11271 return FALSE;
11272 }
11273
11274 for (i = 0; i < noperands; i++)
11275 {
11276 expressionS *expr = &tinsn->tok[i];
11277 int rc;
11278 unsigned line;
11279 char *file_name;
11280 uint32 opnd_value;
11281
11282 switch (expr->X_op)
11283 {
11284 case O_register:
11285 if (xtensa_operand_is_visible (isa, opcode, i) == 0)
11286 break;
11287 /* The register number has already been checked in
11288 expression_maybe_register, so we don't need to check here. */
11289 opnd_value = expr->X_add_number;
11290 (void) xtensa_operand_encode (isa, opcode, i, &opnd_value);
11291 rc = xtensa_operand_set_field (isa, opcode, i, fmt, slot, slotbuf,
11292 opnd_value);
11293 if (rc != 0)
11294 as_warn (_("xtensa-isa failure: %s"), xtensa_isa_error_msg (isa));
11295 break;
11296
11297 case O_constant:
11298 if (xtensa_operand_is_visible (isa, opcode, i) == 0)
11299 break;
11300 as_where (&file_name, &line);
11301 /* It is a constant and we called this function
11302 then we have to try to fit it. */
11303 xtensa_insnbuf_set_operand (slotbuf, fmt, slot, opcode, i,
11304 expr->X_add_number, file_name, line);
11305 break;
11306
11307 default:
11308 has_fixup = TRUE;
11309 break;
11310 }
11311 }
11312
11313 return has_fixup;
11314 }
11315
11316
11317 /* Encode a single TInsn into an insnbuf. If the opcode can only be encoded
11318 into a multi-slot instruction, fill the other slots with NOPs.
11319 Return TRUE if there is a symbol in the immediate field. See also the
11320 assumptions listed for tinsn_to_slotbuf. */
11321
11322 static bfd_boolean
11323 tinsn_to_insnbuf (TInsn *tinsn, xtensa_insnbuf insnbuf)
11324 {
11325 static xtensa_insnbuf slotbuf = 0;
11326 static vliw_insn vinsn;
11327 xtensa_isa isa = xtensa_default_isa;
11328 bfd_boolean has_fixup = FALSE;
11329 int i;
11330
11331 if (!slotbuf)
11332 {
11333 slotbuf = xtensa_insnbuf_alloc (isa);
11334 xg_init_vinsn (&vinsn);
11335 }
11336
11337 xg_clear_vinsn (&vinsn);
11338
11339 bundle_tinsn (tinsn, &vinsn);
11340
11341 xtensa_format_encode (isa, vinsn.format, insnbuf);
11342
11343 for (i = 0; i < vinsn.num_slots; i++)
11344 {
11345 /* Only one slot may have a fix-up because the rest contains NOPs. */
11346 has_fixup |=
11347 tinsn_to_slotbuf (vinsn.format, i, &vinsn.slots[i], vinsn.slotbuf[i]);
11348 xtensa_format_set_slot (isa, vinsn.format, i, insnbuf, vinsn.slotbuf[i]);
11349 }
11350
11351 return has_fixup;
11352 }
11353
11354
11355 /* Check the instruction arguments. Return TRUE on failure. */
11356
11357 static bfd_boolean
11358 tinsn_check_arguments (const TInsn *insn)
11359 {
11360 xtensa_isa isa = xtensa_default_isa;
11361 xtensa_opcode opcode = insn->opcode;
11362
11363 if (opcode == XTENSA_UNDEFINED)
11364 {
11365 as_bad (_("invalid opcode"));
11366 return TRUE;
11367 }
11368
11369 if (xtensa_opcode_num_operands (isa, opcode) > insn->ntok)
11370 {
11371 as_bad (_("too few operands"));
11372 return TRUE;
11373 }
11374
11375 if (xtensa_opcode_num_operands (isa, opcode) < insn->ntok)
11376 {
11377 as_bad (_("too many operands"));
11378 return TRUE;
11379 }
11380 return FALSE;
11381 }
11382
11383
11384 /* Load an instruction from its encoded form. */
11385
11386 static void
11387 tinsn_from_chars (TInsn *tinsn, char *f, int slot)
11388 {
11389 vliw_insn vinsn;
11390
11391 xg_init_vinsn (&vinsn);
11392 vinsn_from_chars (&vinsn, f);
11393
11394 *tinsn = vinsn.slots[slot];
11395 xg_free_vinsn (&vinsn);
11396 }
11397
11398
11399 static void
11400 tinsn_from_insnbuf (TInsn *tinsn,
11401 xtensa_insnbuf slotbuf,
11402 xtensa_format fmt,
11403 int slot)
11404 {
11405 int i;
11406 xtensa_isa isa = xtensa_default_isa;
11407
11408 /* Find the immed. */
11409 tinsn_init (tinsn);
11410 tinsn->insn_type = ITYPE_INSN;
11411 tinsn->is_specific_opcode = FALSE; /* must not be specific */
11412 tinsn->opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf);
11413 tinsn->ntok = xtensa_opcode_num_operands (isa, tinsn->opcode);
11414 for (i = 0; i < tinsn->ntok; i++)
11415 {
11416 set_expr_const (&tinsn->tok[i],
11417 xtensa_insnbuf_get_operand (slotbuf, fmt, slot,
11418 tinsn->opcode, i));
11419 }
11420 }
11421
11422
11423 /* Read the value of the relaxable immed from the fr_symbol and fr_offset. */
11424
11425 static void
11426 tinsn_immed_from_frag (TInsn *tinsn, fragS *fragP, int slot)
11427 {
11428 xtensa_opcode opcode = tinsn->opcode;
11429 int opnum;
11430
11431 if (fragP->tc_frag_data.slot_symbols[slot])
11432 {
11433 opnum = get_relaxable_immed (opcode);
11434 assert (opnum >= 0);
11435 set_expr_symbol_offset (&tinsn->tok[opnum],
11436 fragP->tc_frag_data.slot_symbols[slot],
11437 fragP->tc_frag_data.slot_offsets[slot]);
11438 }
11439 }
11440
11441
11442 static int
11443 get_num_stack_text_bytes (IStack *istack)
11444 {
11445 int i;
11446 int text_bytes = 0;
11447
11448 for (i = 0; i < istack->ninsn; i++)
11449 {
11450 TInsn *tinsn = &istack->insn[i];
11451 if (tinsn->insn_type == ITYPE_INSN)
11452 text_bytes += xg_get_single_size (tinsn->opcode);
11453 }
11454 return text_bytes;
11455 }
11456
11457
11458 static int
11459 get_num_stack_literal_bytes (IStack *istack)
11460 {
11461 int i;
11462 int lit_bytes = 0;
11463
11464 for (i = 0; i < istack->ninsn; i++)
11465 {
11466 TInsn *tinsn = &istack->insn[i];
11467 if (tinsn->insn_type == ITYPE_LITERAL && tinsn->ntok == 1)
11468 lit_bytes += 4;
11469 }
11470 return lit_bytes;
11471 }
11472
11473 \f
11474 /* vliw_insn functions. */
11475
11476 static void
11477 xg_init_vinsn (vliw_insn *v)
11478 {
11479 int i;
11480 xtensa_isa isa = xtensa_default_isa;
11481
11482 xg_clear_vinsn (v);
11483
11484 v->insnbuf = xtensa_insnbuf_alloc (isa);
11485 if (v->insnbuf == NULL)
11486 as_fatal (_("out of memory"));
11487
11488 for (i = 0; i < MAX_SLOTS; i++)
11489 {
11490 v->slotbuf[i] = xtensa_insnbuf_alloc (isa);
11491 if (v->slotbuf[i] == NULL)
11492 as_fatal (_("out of memory"));
11493 }
11494 }
11495
11496
11497 static void
11498 xg_clear_vinsn (vliw_insn *v)
11499 {
11500 int i;
11501
11502 memset (v, 0, offsetof (vliw_insn, insnbuf));
11503
11504 v->format = XTENSA_UNDEFINED;
11505 v->num_slots = 0;
11506 v->inside_bundle = FALSE;
11507
11508 if (xt_saved_debug_type != DEBUG_NONE)
11509 debug_type = xt_saved_debug_type;
11510
11511 for (i = 0; i < MAX_SLOTS; i++)
11512 v->slots[i].opcode = XTENSA_UNDEFINED;
11513 }
11514
11515
11516 static bfd_boolean
11517 vinsn_has_specific_opcodes (vliw_insn *v)
11518 {
11519 int i;
11520
11521 for (i = 0; i < v->num_slots; i++)
11522 {
11523 if (v->slots[i].is_specific_opcode)
11524 return TRUE;
11525 }
11526 return FALSE;
11527 }
11528
11529
11530 static void
11531 xg_free_vinsn (vliw_insn *v)
11532 {
11533 int i;
11534 xtensa_insnbuf_free (xtensa_default_isa, v->insnbuf);
11535 for (i = 0; i < MAX_SLOTS; i++)
11536 xtensa_insnbuf_free (xtensa_default_isa, v->slotbuf[i]);
11537 }
11538
11539
11540 /* Encode a vliw_insn into an insnbuf. Return TRUE if there are any symbolic
11541 operands. See also the assumptions listed for tinsn_to_slotbuf. */
11542
11543 static bfd_boolean
11544 vinsn_to_insnbuf (vliw_insn *vinsn,
11545 char *frag_offset,
11546 fragS *fragP,
11547 bfd_boolean record_fixup)
11548 {
11549 xtensa_isa isa = xtensa_default_isa;
11550 xtensa_format fmt = vinsn->format;
11551 xtensa_insnbuf insnbuf = vinsn->insnbuf;
11552 int slot;
11553 bfd_boolean has_fixup = FALSE;
11554
11555 xtensa_format_encode (isa, fmt, insnbuf);
11556
11557 for (slot = 0; slot < vinsn->num_slots; slot++)
11558 {
11559 TInsn *tinsn = &vinsn->slots[slot];
11560 bfd_boolean tinsn_has_fixup =
11561 tinsn_to_slotbuf (vinsn->format, slot, tinsn,
11562 vinsn->slotbuf[slot]);
11563
11564 xtensa_format_set_slot (isa, fmt, slot,
11565 insnbuf, vinsn->slotbuf[slot]);
11566 if (tinsn_has_fixup)
11567 {
11568 int i;
11569 xtensa_opcode opcode = tinsn->opcode;
11570 int noperands = xtensa_opcode_num_operands (isa, opcode);
11571 has_fixup = TRUE;
11572
11573 for (i = 0; i < noperands; i++)
11574 {
11575 expressionS* expr = &tinsn->tok[i];
11576 switch (expr->X_op)
11577 {
11578 case O_symbol:
11579 case O_lo16:
11580 case O_hi16:
11581 if (get_relaxable_immed (opcode) == i)
11582 {
11583 /* Add a fix record for the instruction, except if this
11584 function is being called prior to relaxation, i.e.,
11585 if record_fixup is false, and the instruction might
11586 be relaxed later. */
11587 if (record_fixup
11588 || tinsn->is_specific_opcode
11589 || !xg_is_relaxable_insn (tinsn, 0))
11590 {
11591 xg_add_opcode_fix (tinsn, i, fmt, slot, expr, fragP,
11592 frag_offset - fragP->fr_literal);
11593 }
11594 else
11595 {
11596 if (expr->X_op != O_symbol)
11597 as_bad (_("invalid operand"));
11598 tinsn->symbol = expr->X_add_symbol;
11599 tinsn->offset = expr->X_add_number;
11600 }
11601 }
11602 else
11603 as_bad (_("symbolic operand not allowed"));
11604 break;
11605
11606 case O_constant:
11607 case O_register:
11608 break;
11609
11610 default:
11611 as_bad (_("expression too complex"));
11612 break;
11613 }
11614 }
11615 }
11616 }
11617
11618 return has_fixup;
11619 }
11620
11621
11622 static void
11623 vinsn_from_chars (vliw_insn *vinsn, char *f)
11624 {
11625 static xtensa_insnbuf insnbuf = NULL;
11626 static xtensa_insnbuf slotbuf = NULL;
11627 int i;
11628 xtensa_format fmt;
11629 xtensa_isa isa = xtensa_default_isa;
11630
11631 if (!insnbuf)
11632 {
11633 insnbuf = xtensa_insnbuf_alloc (isa);
11634 slotbuf = xtensa_insnbuf_alloc (isa);
11635 }
11636
11637 xtensa_insnbuf_from_chars (isa, insnbuf, (unsigned char *) f, 0);
11638 fmt = xtensa_format_decode (isa, insnbuf);
11639 if (fmt == XTENSA_UNDEFINED)
11640 as_fatal (_("cannot decode instruction format"));
11641 vinsn->format = fmt;
11642 vinsn->num_slots = xtensa_format_num_slots (isa, fmt);
11643
11644 for (i = 0; i < vinsn->num_slots; i++)
11645 {
11646 TInsn *tinsn = &vinsn->slots[i];
11647 xtensa_format_get_slot (isa, fmt, i, insnbuf, slotbuf);
11648 tinsn_from_insnbuf (tinsn, slotbuf, fmt, i);
11649 }
11650 }
11651
11652 \f
11653 /* Expression utilities. */
11654
11655 /* Return TRUE if the expression is an integer constant. */
11656
11657 bfd_boolean
11658 expr_is_const (const expressionS *s)
11659 {
11660 return (s->X_op == O_constant);
11661 }
11662
11663
11664 /* Get the expression constant.
11665 Calling this is illegal if expr_is_const () returns TRUE. */
11666
11667 offsetT
11668 get_expr_const (const expressionS *s)
11669 {
11670 assert (expr_is_const (s));
11671 return s->X_add_number;
11672 }
11673
11674
11675 /* Set the expression to a constant value. */
11676
11677 void
11678 set_expr_const (expressionS *s, offsetT val)
11679 {
11680 s->X_op = O_constant;
11681 s->X_add_number = val;
11682 s->X_add_symbol = NULL;
11683 s->X_op_symbol = NULL;
11684 }
11685
11686
11687 bfd_boolean
11688 expr_is_register (const expressionS *s)
11689 {
11690 return (s->X_op == O_register);
11691 }
11692
11693
11694 /* Get the expression constant.
11695 Calling this is illegal if expr_is_const () returns TRUE. */
11696
11697 offsetT
11698 get_expr_register (const expressionS *s)
11699 {
11700 assert (expr_is_register (s));
11701 return s->X_add_number;
11702 }
11703
11704
11705 /* Set the expression to a symbol + constant offset. */
11706
11707 void
11708 set_expr_symbol_offset (expressionS *s, symbolS *sym, offsetT offset)
11709 {
11710 s->X_op = O_symbol;
11711 s->X_add_symbol = sym;
11712 s->X_op_symbol = NULL; /* unused */
11713 s->X_add_number = offset;
11714 }
11715
11716
11717 /* Return TRUE if the two expressions are equal. */
11718
11719 bfd_boolean
11720 expr_is_equal (expressionS *s1, expressionS *s2)
11721 {
11722 if (s1->X_op != s2->X_op)
11723 return FALSE;
11724 if (s1->X_add_symbol != s2->X_add_symbol)
11725 return FALSE;
11726 if (s1->X_op_symbol != s2->X_op_symbol)
11727 return FALSE;
11728 if (s1->X_add_number != s2->X_add_number)
11729 return FALSE;
11730 return TRUE;
11731 }
11732
11733
11734 static void
11735 copy_expr (expressionS *dst, const expressionS *src)
11736 {
11737 memcpy (dst, src, sizeof (expressionS));
11738 }
11739
11740 \f
11741 /* Support for the "--rename-section" option. */
11742
11743 struct rename_section_struct
11744 {
11745 char *old_name;
11746 char *new_name;
11747 struct rename_section_struct *next;
11748 };
11749
11750 static struct rename_section_struct *section_rename;
11751
11752
11753 /* Parse the string "oldname=new_name(:oldname2=new_name2)*" and add
11754 entries to the section_rename list. Note: Specifying multiple
11755 renamings separated by colons is not documented and is retained only
11756 for backward compatibility. */
11757
11758 static void
11759 build_section_rename (const char *arg)
11760 {
11761 struct rename_section_struct *r;
11762 char *this_arg = NULL;
11763 char *next_arg = NULL;
11764
11765 for (this_arg = xstrdup (arg); this_arg != NULL; this_arg = next_arg)
11766 {
11767 char *old_name, *new_name;
11768
11769 if (this_arg)
11770 {
11771 next_arg = strchr (this_arg, ':');
11772 if (next_arg)
11773 {
11774 *next_arg = '\0';
11775 next_arg++;
11776 }
11777 }
11778
11779 old_name = this_arg;
11780 new_name = strchr (this_arg, '=');
11781
11782 if (*old_name == '\0')
11783 {
11784 as_warn (_("ignoring extra '-rename-section' delimiter ':'"));
11785 continue;
11786 }
11787 if (!new_name || new_name[1] == '\0')
11788 {
11789 as_warn (_("ignoring invalid '-rename-section' specification: '%s'"),
11790 old_name);
11791 continue;
11792 }
11793 *new_name = '\0';
11794 new_name++;
11795
11796 /* Check for invalid section renaming. */
11797 for (r = section_rename; r != NULL; r = r->next)
11798 {
11799 if (strcmp (r->old_name, old_name) == 0)
11800 as_bad (_("section %s renamed multiple times"), old_name);
11801 if (strcmp (r->new_name, new_name) == 0)
11802 as_bad (_("multiple sections remapped to output section %s"),
11803 new_name);
11804 }
11805
11806 /* Now add it. */
11807 r = (struct rename_section_struct *)
11808 xmalloc (sizeof (struct rename_section_struct));
11809 r->old_name = xstrdup (old_name);
11810 r->new_name = xstrdup (new_name);
11811 r->next = section_rename;
11812 section_rename = r;
11813 }
11814 }
11815
11816
11817 char *
11818 xtensa_section_rename (char *name)
11819 {
11820 struct rename_section_struct *r = section_rename;
11821
11822 for (r = section_rename; r != NULL; r = r->next)
11823 {
11824 if (strcmp (r->old_name, name) == 0)
11825 return r->new_name;
11826 }
11827
11828 return name;
11829 }
This page took 0.286077 seconds and 5 git commands to generate.